diff --git a/Logic/AvailableBaseLayers.ts b/Logic/AvailableBaseLayers.ts
index a8a4fa6..4285aa8 100644
--- a/Logic/AvailableBaseLayers.ts
+++ b/Logic/AvailableBaseLayers.ts
@@ -27,7 +27,9 @@ export default class AvailableBaseLayers {
attribution_url: "https://openStreetMap.org/copyright",
name: "OpenStreetMap",
layer: Basemap.CreateBackgroundLayer("osm", "OpenStreetMap",
- "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "OpenStreetMap", 19, false, false),
+ "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "OpenStreetMap", "https://openStreetMap.org/copyright",
+ 19,
+ false, false),
feature: null,
max_zoom: 19,
min_zoom: 0
@@ -138,26 +140,25 @@ export default class AvailableBaseLayers {
continue;
}
- if (props.id === "carto") {
+ if (props.id === "MAPNIK") {
// Already added by default
continue;
}
if (props.overlay) {
- console.log("Refusing overlay layer ", props.name)
-
continue;
}
if (props.url.toLowerCase().indexOf("apikey") > 0) {
continue;
}
-
- if (props.url.toLowerCase().indexOf("{bbox}") > 0) {
- console.warn("Editor layer index: needs bbox ", props)
+
+ if(props.max_zoom < 19){
+ // We want users to zoom to level 19 when adding a point
+ // If they are on a layer which hasn't enough precision, they can not zoom far enough. This is confusing, so we don't use this layer
continue;
}
-
+
if(props.name === undefined){
console.warn("Editor layer index: name not defined on ", props)
continue
@@ -168,6 +169,7 @@ export default class AvailableBaseLayers {
props.name,
props.url,
props.name,
+ props.license_url,
props.max_zoom,
props.type.toLowerCase() === "wms",
props.type.toLowerCase() === "wmts"
diff --git a/Logic/Leaflet/Basemap.ts b/Logic/Leaflet/Basemap.ts
index 5158e99..1a06dfc 100644
--- a/Logic/Leaflet/Basemap.ts
+++ b/Logic/Leaflet/Basemap.ts
@@ -3,58 +3,13 @@ import {UIEventSource} from "../UIEventSource";
import {UIElement} from "../../UI/UIElement";
-export class BaseLayers {
-
-
- /*public static readonly baseLayers: { name: string, layer: any, id: string } [] = [
-
- {
- id: "aiv-latest",
- name: "Luchtfoto Vlaanderen (recentste door AIV)",
- layer: L.tileLayer("https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&" +
- "LAYER=omwrgbmrvl&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={z}&tileRow={y}&tileCol={x}",
- {
- // omwrgbmrvl
- attribution: 'Luchtfoto\'s van © AIV Vlaanderen (Laatste) © AGIV',
- maxZoom: 22,
- minZoom: 1,
- wmts: true
- })
- },
- BaseLayers.defaultLayer,
- {
- id: "aiv-13-15",
- name: "Luchtfoto Vlaanderen (2013-2015, door AIV)",
- layer: L.tileLayer.wms('https://geoservices.informatievlaanderen.be/raadpleegdiensten/OGW/wms?s',
- {
- maxZoom: 22,
- layers: "OGWRGB13_15VL",
- attribution: "Luchtfoto's van © AIV Vlaanderen (2013-2015) | "
- })
- },
- {
- id:"grb",
- name: "Kaart Grootschalig ReferentieBestand Vlaanderen (GRB) door AIV",
- layer: L.tileLayer("https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=grb_bsk&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={z}&tileCol={x}&tileRow={y}",
- {
- attribution: 'Achtergrond Grootschalig ReferentieBestand(GRB) © AGIV',
- maxZoom: 22,
- minZoom: 1,
- wmts: true
- })
- }
- ]
- ;*/
-
-}
-
// Contains all setup and baselayers for Leaflet stuff
export class Basemap {
public static readonly defaultLayer: { name: string, layer: any, id: string } =
Basemap.CreateBackgroundLayer("osm", "OpenStreetMap", "https://tile.openstreetmap.org/{z}/{x}/{y}.png",
- "OpenStreetMap (ODBL)",
+ "OpenStreetMap (ODBL)", 'https://openstreetmap.org/copyright',
22, false);
// @ts-ignore
@@ -120,37 +75,64 @@ export class Basemap {
});
}
- public static CreateBackgroundLayer(id: string, name: string, url: string, attribution: string,
+ public static CreateBackgroundLayer(id: string, name: string, url: string, attribution: string, attributionUrl: string,
maxZoom: number, isWms: boolean, isWMTS?: boolean) {
url = url.replace("{zoom}", "{z}")
- .replace("{proj}", "EPSG:3857")
- .replace("{width}", "256")
- .replace("{height}", "256")
+ .replace("&BBOX={bbox}", "")
+ .replace("&bbox={bbox}", "");
const subdomainsMatch = url.match(/{switch:[^}]*}/)
- let domains : string[] = [];
+ let domains: string[] = [];
if (subdomainsMatch !== null) {
let domainsStr = subdomainsMatch[0].substr("{switch:".length);
- domainsStr = domainsStr.substr(0, domainsStr.length-1);
+ domainsStr = domainsStr.substr(0, domainsStr.length - 1);
domains = domainsStr.split(",");
url = url.replace(/{switch:[^}]*}/, "{s}")
}
- //geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DHMV_II_SVF_25cm&STYLES=&SRS=EPSG:3857&WIDTH=256&HEIGHT=256
+
if (isWms) {
+ url = url.replace("&SRS={proj}","");
+ url = url.replace("&srs={proj}","");
+ const paramaters = ["format", "layers", "version", "service", "request", "styles", "transparent", "version"];
+ const urlObj = new URL(url);
+
+ const isUpper = urlObj.searchParams["LAYERS"] !== null;
+ const options = {
+ maxZoom: maxZoom ?? 19,
+ attribution: attribution + " | ",
+ subdomains: domains,
+ uppercase: isUpper,
+ transparent: false
+ };
+
+ for (const paramater of paramaters) {
+ let p = paramater;
+ if (isUpper) {
+ p = paramater.toUpperCase();
+ }
+ options[paramater] = urlObj.searchParams.get(p);
+ }
+
+ if(options.transparent === null){
+ options.transparent = false;
+ }
+
+
return {
id: id,
name: name,
- layer: L.tileLayer.wms(url,
- {
- maxZoom: maxZoom ?? 19,
- attribution: attribution + " | ",
- subdomains: domains
- })
+ layer: L.tileLayer.wms(urlObj.protocol+"//"+urlObj.host+urlObj.pathname,
+ options
+ )
}
}
+ if (attributionUrl) {
+ attribution = `${attribution}`;
+ }
+
return {
id: id,
name: name,
diff --git a/README.md b/README.md
index b9876ba..405398e 100644
--- a/README.md
+++ b/README.md
@@ -156,6 +156,9 @@ TODO: erase cookies of third party websites and API's
# Attributions
Data from OpenStreetMap
+
+Background layer selection: curated by https://github.com/osmlab/editor-layer-index
+
Images from Wikipedia/Wikimedia
https://commons.wikimedia.org/wiki/File:Camera_font_awesome.svg
diff --git a/State.ts b/State.ts
index 3620df2..762beb3 100644
--- a/State.ts
+++ b/State.ts
@@ -22,7 +22,7 @@ export class State {
// The singleton of the global state
public static state: State;
- public static vNumber = "0.0.8g";
+ public static vNumber = "0.0.8h";
// The user journey states thresholds when a new feature gets unlocked
public static userJourney = {
diff --git a/UI/Input/ValidatedTextField.ts b/UI/Input/ValidatedTextField.ts
index c8e25b3..ab6510f 100644
--- a/UI/Input/ValidatedTextField.ts
+++ b/UI/Input/ValidatedTextField.ts
@@ -121,7 +121,7 @@ export default class ValidatedTextField {
const blacklistedTrackingParams = [
"fbclid",// Oh god, how I hate the fbclid. Let it burn, burn in hell!
"gclid",
- "cmpid", "agid", "utm", "utm_source"]
+ "cmpid", "agid", "utm", "utm_source","utm_medium"]
for (const dontLike of blacklistedTrackingParams) {
url.searchParams.delete(dontLike)
}
diff --git a/assets/editor-layer-index.json b/assets/editor-layer-index.json
index 2753f1a..4b5e2e4 100644
--- a/assets/editor-layer-index.json
+++ b/assets/editor-layer-index.json
@@ -1,341717 +1 @@
-{
- "features": [
- {
- "geometry": {
- "coordinates": [
- [
- [
- 2.31954,
- 6.55745
- ],
- [
- 2.33645,
- 6.56024
- ],
- [
- 2.36377,
- 6.56211
- ],
- [
- 2.36738,
- 6.56068
- ],
- [
- 2.37777,
- 6.5494
- ],
- [
- 2.37779,
- 6.53485
- ],
- [
- 2.36994,
- 6.49332
- ],
- [
- 2.37038,
- 6.45527
- ],
- [
- 2.36958,
- 6.45269
- ],
- [
- 2.36188,
- 6.44177
- ],
- [
- 2.35392,
- 6.40545
- ],
- [
- 2.36749,
- 6.4015
- ],
- [
- 2.39526,
- 6.40072
- ],
- [
- 2.40128,
- 6.40374
- ],
- [
- 2.40588,
- 6.40341
- ],
- [
- 2.42046,
- 6.39383
- ],
- [
- 2.42485,
- 6.39794
- ],
- [
- 2.42949,
- 6.39887
- ],
- [
- 2.43625,
- 6.39628
- ],
- [
- 2.43958,
- 6.40042
- ],
- [
- 2.44439,
- 6.40189
- ],
- [
- 2.45376,
- 6.39899
- ],
- [
- 2.47145,
- 6.39632
- ],
- [
- 2.48162,
- 6.39106
- ],
- [
- 2.49453,
- 6.3874
- ],
- [
- 2.50893,
- 6.38888
- ],
- [
- 2.50719,
- 6.39229
- ],
- [
- 2.5012,
- 6.39162
- ],
- [
- 2.4963,
- 6.39521
- ],
- [
- 2.4951,
- 6.40123
- ],
- [
- 2.49543,
- 6.40401
- ],
- [
- 2.4983,
- 6.41022
- ],
- [
- 2.50191,
- 6.41282
- ],
- [
- 2.51087,
- 6.41321
- ],
- [
- 2.52219,
- 6.40849
- ],
- [
- 2.53352,
- 6.40517
- ],
- [
- 2.5381,
- 6.40961
- ],
- [
- 2.54111,
- 6.4109
- ],
- [
- 2.54651,
- 6.41099
- ],
- [
- 2.54654,
- 6.40651
- ],
- [
- 2.57639,
- 6.40724
- ],
- [
- 2.57642,
- 6.41177
- ],
- [
- 2.58576,
- 6.41196
- ],
- [
- 2.58868,
- 6.41095
- ],
- [
- 2.60877,
- 6.39414
- ],
- [
- 2.6257,
- 6.39488
- ],
- [
- 2.64555,
- 6.39729
- ],
- [
- 2.65039,
- 6.39339
- ],
- [
- 2.65367,
- 6.36823
- ],
- [
- 2.64312,
- 6.36659
- ],
- [
- 2.61251,
- 6.36289
- ],
- [
- 2.56868,
- 6.3607
- ],
- [
- 2.54683,
- 6.36055
- ],
- [
- 2.54687,
- 6.35546
- ],
- [
- 2.50207,
- 6.35461
- ],
- [
- 2.47064,
- 6.35596
- ],
- [
- 2.46777,
- 6.35203
- ],
- [
- 2.46423,
- 6.3502
- ],
- [
- 2.45254,
- 6.35006
- ],
- [
- 2.45113,
- 6.34813
- ],
- [
- 2.44737,
- 6.34629
- ],
- [
- 2.43757,
- 6.34654
- ],
- [
- 2.43298,
- 6.33841
- ],
- [
- 2.43016,
- 6.33707
- ],
- [
- 2.42245,
- 6.33707
- ],
- [
- 2.39236,
- 6.34115
- ],
- [
- 2.39315,
- 6.34115
- ],
- [
- 2.36528,
- 6.34445
- ],
- [
- 2.35386,
- 6.3453
- ],
- [
- 2.34377,
- 6.34458
- ],
- [
- 2.34094,
- 6.34534
- ],
- [
- 2.31086,
- 6.36567
- ],
- [
- 2.28435,
- 6.37465
- ],
- [
- 2.28147,
- 6.37762
- ],
- [
- 2.27599,
- 6.39517
- ],
- [
- 2.27612,
- 6.3982
- ],
- [
- 2.31529,
- 6.49261
- ],
- [
- 2.3158,
- 6.55307
- ],
- [
- 2.31954,
- 6.55745
- ]
- ],
- [
- [
- 1.69563,
- 6.25076
- ],
- [
- 1.7001,
- 6.24712
- ],
- [
- 1.70418,
- 6.24697
- ],
- [
- 1.75875,
- 6.25836
- ],
- [
- 1.77079,
- 6.25995
- ],
- [
- 1.81712,
- 6.27161
- ],
- [
- 1.84457,
- 6.27657
- ],
- [
- 1.85768,
- 6.27945
- ],
- [
- 1.88843,
- 6.28326
- ],
- [
- 1.90482,
- 6.28595
- ],
- [
- 1.90618,
- 6.29435
- ],
- [
- 1.90083,
- 6.29721
- ],
- [
- 1.89881,
- 6.29954
- ],
- [
- 1.89404,
- 6.30085
- ],
- [
- 1.89048,
- 6.2997
- ],
- [
- 1.88748,
- 6.29636
- ],
- [
- 1.88344,
- 6.29622
- ],
- [
- 1.8697,
- 6.29227
- ],
- [
- 1.8564,
- 6.29198
- ],
- [
- 1.85207,
- 6.28675
- ],
- [
- 1.84991,
- 6.28906
- ],
- [
- 1.84691,
- 6.29203
- ],
- [
- 1.84353,
- 6.29333
- ],
- [
- 1.84041,
- 6.29315
- ],
- [
- 1.83627,
- 6.29129
- ],
- [
- 1.8341,
- 6.28733
- ],
- [
- 1.83417,
- 6.2852
- ],
- [
- 1.8323,
- 6.28456
- ],
- [
- 1.82786,
- 6.28644
- ],
- [
- 1.82182,
- 6.29084
- ],
- [
- 1.81563,
- 6.28998
- ],
- [
- 1.81211,
- 6.29143
- ],
- [
- 1.80758,
- 6.29571
- ],
- [
- 1.80472,
- 6.29693
- ],
- [
- 1.80074,
- 6.2971
- ],
- [
- 1.79776,
- 6.29612
- ],
- [
- 1.79625,
- 6.29492
- ],
- [
- 1.7949,
- 6.28965
- ],
- [
- 1.79641,
- 6.28608
- ],
- [
- 1.80098,
- 6.28338
- ],
- [
- 1.79567,
- 6.28013
- ],
- [
- 1.79156,
- 6.28174
- ],
- [
- 1.78499,
- 6.28122
- ],
- [
- 1.78092,
- 6.27753
- ],
- [
- 1.77588,
- 6.2755
- ],
- [
- 1.76745,
- 6.27696
- ],
- [
- 1.75653,
- 6.27496
- ],
- [
- 1.74833,
- 6.27239
- ],
- [
- 1.74762,
- 6.27726
- ],
- [
- 1.74572,
- 6.27938
- ],
- [
- 1.73948,
- 6.27985
- ],
- [
- 1.7368,
- 6.27761
- ],
- [
- 1.73572,
- 6.27892
- ],
- [
- 1.72902,
- 6.27911
- ],
- [
- 1.72435,
- 6.27422
- ],
- [
- 1.72449,
- 6.26786
- ],
- [
- 1.72556,
- 6.26683
- ],
- [
- 1.69934,
- 6.26159
- ],
- [
- 1.69573,
- 6.25726
- ],
- [
- 1.69563,
- 6.25076
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "best": true,
- "country_code": "BJ",
- "end_date": "2016",
- "id": "Benin_cotonou_pleiade_2016",
- "license_url": "http://taches.francophonelibre.org/project/6",
- "max_zoom": 21,
- "name": "Benin: Cotonou Pleiade 2016",
- "start_date": "2016",
- "type": "tms",
- "url": "https://geoxxx.agrocampus-ouest.fr/owsifl/gwc/service/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Benin:cotonou_pleiade_2016&STYLE=&FORMAT=image/jpeg&tileMatrixSet=EPSG:3857&tileMatrix=EPSG:3857:{zoom}&tileRow={y}&tileCol={x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 1.83975,
- 6.2578
- ],
- [
- 1.83975,
- 7.11427
- ],
- [
- 2.5494,
- 7.11427
- ],
- [
- 2.5494,
- 6.48905
- ],
- [
- 2.49781,
- 6.25806
- ],
- [
- 1.83975,
- 6.2578
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "BJ",
- "description": "Patchy and partly cloudy coverage in usual sources (true color)",
- "end_date": "2015-12-21",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R022_N06_20151221T103009",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Cotonou",
- "start_date": "2015-12-21",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R022_N06_20151221T103009&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -24.75878,
- 14.74814
- ],
- [
- -24.75878,
- 15.09249
- ],
- [
- -24.26706,
- 15.09249
- ],
- [
- -24.26706,
- 14.74814
- ],
- [
- -24.75878,
- 14.74814
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "CV",
- "description": "Image from after the 2014/2015 eruption (true color)",
- "end_date": "2015-12-13",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC82100502015347LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Fogo, Cape Verde",
- "start_date": "2015-12-13",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC82100502015347LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 37.20666,
- -0.26685
- ],
- [
- 37.20666,
- -0.01193
- ],
- [
- 37.56552,
- -0.01193
- ],
- [
- 37.56552,
- -0.26685
- ],
- [
- 37.20666,
- -0.26685
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "KE",
- "description": "Up-to-date image for glacier mapping (true color)",
- "end_date": "2016-06-13",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R092_S02_20160613T075613",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Mount Kenya 2016",
- "start_date": "2016-06-13",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S02_20160613T075613&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 37.24769,
- -3.22921
- ],
- [
- 37.24769,
- -2.96816
- ],
- [
- 37.61581,
- -2.96816
- ],
- [
- 37.61581,
- -3.22921
- ],
- [
- 37.24769,
- -3.22921
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "TZ",
- "description": "Up-to-date image for glacier mapping (true color)",
- "end_date": "2016-08-02",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R092_S05_20160802T075556",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Mount Kilimanjaro 2016",
- "start_date": "2016-08-02",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S05_20160802T075556&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 29.7663,
- 0.20689
- ],
- [
- 29.7663,
- 0.50918
- ],
- [
- 30.0346,
- 0.50918
- ],
- [
- 30.0346,
- 0.20689
- ],
- [
- 29.7663,
- 0.20689
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "UG",
- "description": "Recent image of most of the remaining Rwenzori Mountains glaciers (false color IR)",
- "end_date": "2015-02-09",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81730602015040LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Rwenzori Mountains",
- "start_date": "2015-02-09",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81730602015040LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 29.80514,
- 0.23586
- ],
- [
- 29.80514,
- 0.46709
- ],
- [
- 30.02503,
- 0.46709
- ],
- [
- 30.02503,
- 0.23586
- ],
- [
- 29.80514,
- 0.23586
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "UG",
- "description": "Up-to-date image for glacier mapping (true color)",
- "end_date": "2016-07-02",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R078_N01_20160702T082522",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Rwenzori Mountains 2016",
- "start_date": "2016-07-02",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N01_20160702T082522&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 17.83968,
- -32.79834
- ],
- [
- 17.88935,
- -32.69728
- ],
- [
- 18.00364,
- -32.69822
- ],
- [
- 18.09917,
- -32.74853
- ],
- [
- 18.28987,
- -32.55266
- ],
- [
- 18.29302,
- -32.04871
- ],
- [
- 18.10545,
- -31.6455
- ],
- [
- 17.85293,
- -31.3444
- ],
- [
- 17.548,
- -30.90217
- ],
- [
- 17.40445,
- -30.63747
- ],
- [
- 17.24937,
- -30.39917
- ],
- [
- 16.9937,
- -29.65436
- ],
- [
- 16.7988,
- -29.19437
- ],
- [
- 16.54941,
- -28.84159
- ],
- [
- 16.44987,
- -28.69188
- ],
- [
- 16.4491,
- -28.55158
- ],
- [
- 16.60026,
- -28.48257
- ],
- [
- 16.75141,
- -28.4487
- ],
- [
- 16.74622,
- -28.2459
- ],
- [
- 16.88551,
- -28.04729
- ],
- [
- 16.99295,
- -28.0244
- ],
- [
- 17.05297,
- -28.02571
- ],
- [
- 17.10076,
- -28.03388
- ],
- [
- 17.20115,
- -28.09305
- ],
- [
- 17.20263,
- -28.23284
- ],
- [
- 17.24746,
- -28.23382
- ],
- [
- 17.2508,
- -28.19889
- ],
- [
- 17.35119,
- -28.19759
- ],
- [
- 17.35156,
- -28.24427
- ],
- [
- 17.40158,
- -28.24524
- ],
- [
- 17.41491,
- -28.34898
- ],
- [
- 17.40083,
- -28.548
- ],
- [
- 17.4527,
- -28.54897
- ],
- [
- 17.45121,
- -28.64951
- ],
- [
- 17.49836,
- -28.68721
- ],
- [
- 17.60282,
- -28.683
- ],
- [
- 17.64997,
- -28.69679
- ],
- [
- 17.65259,
- -28.73815
- ],
- [
- 17.80139,
- -28.73815
- ],
- [
- 17.99943,
- -28.75606
- ],
- [
- 18.00027,
- -28.79562
- ],
- [
- 18.15745,
- -28.87181
- ],
- [
- 18.50638,
- -28.87181
- ],
- [
- 18.61536,
- -28.82959
- ],
- [
- 18.90875,
- -28.82775
- ],
- [
- 19.1047,
- -28.94885
- ],
- [
- 19.19691,
- -28.93785
- ],
- [
- 19.24301,
- -28.85162
- ],
- [
- 19.23149,
- -28.80296
- ],
- [
- 19.25873,
- -28.70099
- ],
- [
- 19.44315,
- -28.69732
- ],
- [
- 19.55003,
- -28.49583
- ],
- [
- 19.69673,
- -28.49399
- ],
- [
- 19.69882,
- -28.44794
- ],
- [
- 19.85076,
- -28.44333
- ],
- [
- 19.84971,
- -28.40278
- ],
- [
- 19.99536,
- -28.39909
- ],
- [
- 19.98937,
- -24.74979
- ],
- [
- 20.29167,
- -24.91923
- ],
- [
- 20.47246,
- -25.15017
- ],
- [
- 20.65324,
- -25.45294
- ],
- [
- 20.73326,
- -25.6802
- ],
- [
- 20.8281,
- -25.89635
- ],
- [
- 20.84292,
- -26.21585
- ],
- [
- 20.65028,
- -26.48409
- ],
- [
- 20.65324,
- -26.82049
- ],
- [
- 21.08891,
- -26.84693
- ],
- [
- 21.67277,
- -26.839
- ],
- [
- 21.7765,
- -26.66963
- ],
- [
- 21.97211,
- -26.64314
- ],
- [
- 22.28034,
- -26.32747
- ],
- [
- 22.57078,
- -26.1334
- ],
- [
- 22.77528,
- -25.67752
- ],
- [
- 23.00052,
- -25.27619
- ],
- [
- 23.46583,
- -25.27351
- ],
- [
- 23.88372,
- -25.59737
- ],
- [
- 24.2364,
- -25.6134
- ],
- [
- 24.60391,
- -25.78966
- ],
- [
- 25.1107,
- -25.73894
- ],
- [
- 25.50784,
- -25.68554
- ],
- [
- 25.64418,
- -25.48238
- ],
- [
- 25.84193,
- -24.78054
- ],
- [
- 25.84664,
- -24.75385
- ],
- [
- 26.39285,
- -24.63329
- ],
- [
- 26.47391,
- -24.56533
- ],
- [
- 26.509,
- -24.48424
- ],
- [
- 26.58619,
- -24.40758
- ],
- [
- 26.73006,
- -24.30145
- ],
- [
- 26.85674,
- -24.24995
- ],
- [
- 26.85744,
- -24.10269
- ],
- [
- 26.92155,
- -23.8991
- ],
- [
- 26.93183,
- -23.84619
- ],
- [
- 26.97148,
- -23.69943
- ],
- [
- 27.00061,
- -23.63676
- ],
- [
- 27.0578,
- -23.60526
- ],
- [
- 27.13605,
- -23.52034
- ],
- [
- 27.33396,
- -23.39738
- ],
- [
- 27.51441,
- -23.35939
- ],
- [
- 27.59581,
- -23.20855
- ],
- [
- 27.80986,
- -23.0995
- ],
- [
- 27.88285,
- -23.06205
- ],
- [
- 27.93829,
- -22.94965
- ],
- [
- 28.04076,
- -22.82551
- ],
- [
- 28.20568,
- -22.65529
- ],
- [
- 28.33972,
- -22.56394
- ],
- [
- 28.49061,
- -22.5607
- ],
- [
- 28.61088,
- -22.54002
- ],
- [
- 28.82818,
- -22.45502
- ],
- [
- 28.92853,
- -22.42323
- ],
- [
- 28.95941,
- -22.30901
- ],
- [
- 29.01626,
- -22.20834
- ],
- [
- 29.23241,
- -22.16935
- ],
- [
- 29.35312,
- -22.18429
- ],
- [
- 29.6549,
- -22.11864
- ],
- [
- 29.77771,
- -22.1362
- ],
- [
- 29.9293,
- -22.18494
- ],
- [
- 30.11668,
- -22.28303
- ],
- [
- 30.25634,
- -22.29148
- ],
- [
- 30.30336,
- -22.33952
- ],
- [
- 30.50618,
- -22.30576
- ],
- [
- 30.83743,
- -22.28498
- ],
- [
- 31.00586,
- -22.30771
- ],
- [
- 31.18342,
- -22.32329
- ],
- [
- 31.29306,
- -22.36746
- ],
- [
- 31.56806,
- -23.19034
- ],
- [
- 31.55683,
- -23.44308
- ],
- [
- 31.69311,
- -23.61752
- ],
- [
- 31.71197,
- -23.74114
- ],
- [
- 31.77747,
- -23.88006
- ],
- [
- 31.88863,
- -23.94811
- ],
- [
- 31.91444,
- -24.17467
- ],
- [
- 31.99483,
- -24.30409
- ],
- [
- 32.01667,
- -24.4406
- ],
- [
- 32.00773,
- -24.65366
- ],
- [
- 32.01964,
- -24.91407
- ],
- [
- 32.03552,
- -25.08498
- ],
- [
- 32.01964,
- -25.38214
- ],
- [
- 31.99285,
- -25.44938
- ],
- [
- 31.99979,
- -25.51657
- ],
- [
- 32.00575,
- -25.6079
- ],
- [
- 32.00575,
- -25.66248
- ],
- [
- 31.93627,
- -25.84037
- ],
- [
- 31.98094,
- -25.95465
- ],
- [
- 31.86878,
- -26.00373
- ],
- [
- 31.41621,
- -25.72777
- ],
- [
- 31.32291,
- -25.74386
- ],
- [
- 31.25046,
- -25.82965
- ],
- [
- 31.1393,
- -25.91627
- ],
- [
- 31.11647,
- -25.99124
- ],
- [
- 30.96561,
- -26.26658
- ],
- [
- 30.89217,
- -26.32797
- ],
- [
- 30.85346,
- -26.40356
- ],
- [
- 30.82269,
- -26.44888
- ],
- [
- 30.80226,
- -26.52407
- ],
- [
- 30.80384,
- -26.80821
- ],
- [
- 30.90209,
- -26.78075
- ],
- [
- 30.91003,
- -26.84895
- ],
- [
- 30.98249,
- -26.90826
- ],
- [
- 30.97653,
- -27.00292
- ],
- [
- 31.00344,
- -27.04416
- ],
- [
- 31.15433,
- -27.19804
- ],
- [
- 31.50156,
- -27.31112
- ],
- [
- 31.97002,
- -27.31112
- ],
- [
- 31.97002,
- -27.12047
- ],
- [
- 31.97697,
- -27.05066
- ],
- [
- 32.00025,
- -26.79839
- ],
- [
- 32.10698,
- -26.79846
- ],
- [
- 32.31145,
- -26.84795
- ],
- [
- 32.89999,
- -26.85161
- ],
- [
- 32.88609,
- -26.9817
- ],
- [
- 32.70943,
- -27.47854
- ],
- [
- 32.62407,
- -27.77751
- ],
- [
- 32.5814,
- -28.07479
- ],
- [
- 32.53872,
- -28.2288
- ],
- [
- 32.42756,
- -28.50216
- ],
- [
- 32.36404,
- -28.59457
- ],
- [
- 32.07026,
- -28.84698
- ],
- [
- 31.98788,
- -28.90695
- ],
- [
- 31.77648,
- -28.96949
- ],
- [
- 31.46385,
- -29.28593
- ],
- [
- 31.35963,
- -29.38543
- ],
- [
- 31.16808,
- -29.63074
- ],
- [
- 31.06486,
- -29.78935
- ],
- [
- 31.05345,
- -29.84705
- ],
- [
- 31.06699,
- -29.86403
- ],
- [
- 31.04555,
- -29.9502
- ],
- [
- 30.95186,
- -30.00339
- ],
- [
- 30.86518,
- -30.10241
- ],
- [
- 30.72447,
- -30.3925
- ],
- [
- 30.35563,
- -30.93089
- ],
- [
- 30.09724,
- -31.24583
- ],
- [
- 29.86731,
- -31.43043
- ],
- [
- 29.74094,
- -31.50147
- ],
- [
- 29.48131,
- -31.69787
- ],
- [
- 28.89432,
- -32.28989
- ],
- [
- 28.54971,
- -32.58946
- ],
- [
- 28.14365,
- -32.83207
- ],
- [
- 28.07487,
- -32.94169
- ],
- [
- 27.84509,
- -33.08287
- ],
- [
- 27.3758,
- -33.38607
- ],
- [
- 26.88054,
- -33.6459
- ],
- [
- 26.59169,
- -33.74808
- ],
- [
- 26.45273,
- -33.79358
- ],
- [
- 26.20675,
- -33.75489
- ],
- [
- 26.00779,
- -33.7224
- ],
- [
- 25.80555,
- -33.75243
- ],
- [
- 25.75111,
- -33.80065
- ],
- [
- 25.65291,
- -33.85436
- ],
- [
- 25.65291,
- -33.94698
- ],
- [
- 25.71958,
- -34.00401
- ],
- [
- 25.72028,
- -34.05112
- ],
- [
- 25.55089,
- -34.06315
- ],
- [
- 25.35046,
- -34.05026
- ],
- [
- 25.28106,
- -34.00203
- ],
- [
- 25.04763,
- -33.99946
- ],
- [
- 24.95472,
- -34.00436
- ],
- [
- 24.94966,
- -34.10104
- ],
- [
- 24.87704,
- -34.15065
- ],
- [
- 24.87629,
- -34.20053
- ],
- [
- 24.85326,
- -34.21896
- ],
- [
- 24.76453,
- -34.20179
- ],
- [
- 24.50014,
- -34.20033
- ],
- [
- 24.34867,
- -34.11638
- ],
- [
- 24.19888,
- -34.1019
- ],
- [
- 23.99634,
- -34.05144
- ],
- [
- 23.80175,
- -34.05243
- ],
- [
- 23.74936,
- -34.01119
- ],
- [
- 23.49735,
- -34.00901
- ],
- [
- 23.41552,
- -34.04346
- ],
- [
- 23.41543,
- -34.11404
- ],
- [
- 22.90009,
- -34.0993
- ],
- [
- 22.84124,
- -34.05479
- ],
- [
- 22.64703,
- -34.05026
- ],
- [
- 22.64598,
- -34.00728
- ],
- [
- 22.57002,
- -34.00641
- ],
- [
- 22.50505,
- -34.06459
- ],
- [
- 22.252,
- -34.06459
- ],
- [
- 22.22213,
- -34.10147
- ],
- [
- 22.16212,
- -34.1057
- ],
- [
- 22.17124,
- -34.15218
- ],
- [
- 22.15769,
- -34.21809
- ],
- [
- 22.00156,
- -34.21722
- ],
- [
- 21.9497,
- -34.322
- ],
- [
- 21.86115,
- -34.40071
- ],
- [
- 21.56147,
- -34.40201
- ],
- [
- 21.5468,
- -34.36612
- ],
- [
- 21.50174,
- -34.36699
- ],
- [
- 21.5007,
- -34.40201
- ],
- [
- 21.41949,
- -34.44652
- ],
- [
- 21.19787,
- -34.44782
- ],
- [
- 21.09882,
- -34.39913
- ],
- [
- 21.00337,
- -34.37539
- ],
- [
- 20.89319,
- -34.39971
- ],
- [
- 20.89766,
- -34.4854
- ],
- [
- 20.74468,
- -34.48281
- ],
- [
- 20.5042,
- -34.48626
- ],
- [
- 20.25272,
- -34.70148
- ],
- [
- 20.08035,
- -34.83619
- ],
- [
- 19.99233,
- -34.83791
- ],
- [
- 19.89907,
- -34.82758
- ],
- [
- 19.89383,
- -34.7936
- ],
- [
- 19.5973,
- -34.79618
- ],
- [
- 19.39297,
- -34.64202
- ],
- [
- 19.28771,
- -34.64048
- ],
- [
- 19.28614,
- -34.59866
- ],
- [
- 19.34744,
- -34.52445
- ],
- [
- 19.32853,
- -34.45344
- ],
- [
- 19.098,
- -34.44998
- ],
- [
- 19.07256,
- -34.38024
- ],
- [
- 19.00235,
- -34.35256
- ],
- [
- 18.95206,
- -34.39494
- ],
- [
- 18.7975,
- -34.39364
- ],
- [
- 18.79842,
- -34.10164
- ],
- [
- 18.50175,
- -34.10153
- ],
- [
- 18.49995,
- -34.36169
- ],
- [
- 18.44773,
- -34.362
- ],
- [
- 18.44799,
- -34.35227
- ],
- [
- 18.39744,
- -34.3514
- ],
- [
- 18.39717,
- -34.3023
- ],
- [
- 18.35657,
- -34.30056
- ],
- [
- 18.34793,
- -34.20204
- ],
- [
- 18.29721,
- -34.19503
- ],
- [
- 18.29511,
- -33.99371
- ],
- [
- 18.33745,
- -33.99141
- ],
- [
- 18.34766,
- -33.84924
- ],
- [
- 18.34793,
- -33.78155
- ],
- [
- 18.41247,
- -33.74488
- ],
- [
- 18.36155,
- -33.65016
- ],
- [
- 18.2992,
- -33.58559
- ],
- [
- 18.21668,
- -33.44887
- ],
- [
- 18.13899,
- -33.39741
- ],
- [
- 17.94735,
- -33.16026
- ],
- [
- 17.88552,
- -33.05757
- ],
- [
- 17.84859,
- -32.96685
- ],
- [
- 17.83968,
- -32.85073
- ],
- [
- 17.83968,
- -32.79834
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "best": true,
- "country_code": "ZA",
- "id": "South_Africa-CD_NGI-Aerial",
- "max_zoom": 22,
- "min_zoom": 1,
- "name": "South Africa CD:NGI Aerial",
- "type": "tms",
- "url": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.44866,
- -33.89362
- ],
- [
- 18.44859,
- -33.90264
- ],
- [
- 18.4702,
- -33.90277
- ],
- [
- 18.48139,
- -33.84724
- ],
- [
- 18.44925,
- -33.80107
- ],
- [
- 18.42815,
- -33.73564
- ],
- [
- 18.43914,
- -33.71772
- ],
- [
- 18.40719,
- -33.65899
- ],
- [
- 18.33224,
- -33.57752
- ],
- [
- 18.33245,
- -33.55045
- ],
- [
- 18.354,
- -33.55059
- ],
- [
- 18.35425,
- -33.5236
- ],
- [
- 18.36524,
- -33.52366
- ],
- [
- 18.36503,
- -33.5148
- ],
- [
- 18.37601,
- -33.51477
- ],
- [
- 18.37605,
- -33.5058
- ],
- [
- 18.42966,
- -33.50594
- ],
- [
- 18.4297,
- -33.48785
- ],
- [
- 18.44049,
- -33.48789
- ],
- [
- 18.4406,
- -33.46988
- ],
- [
- 18.49437,
- -33.4701
- ],
- [
- 18.49433,
- -33.47916
- ],
- [
- 18.51583,
- -33.47917
- ],
- [
- 18.51574,
- -33.48819
- ],
- [
- 18.52647,
- -33.4883
- ],
- [
- 18.52632,
- -33.52435
- ],
- [
- 18.54793,
- -33.52443
- ],
- [
- 18.54795,
- -33.51539
- ],
- [
- 18.56937,
- -33.5155
- ],
- [
- 18.56937,
- -33.52448
- ],
- [
- 18.58012,
- -33.52453
- ],
- [
- 18.58007,
- -33.5426
- ],
- [
- 18.59078,
- -33.5426
- ],
- [
- 18.59074,
- -33.56064
- ],
- [
- 18.57995,
- -33.56053
- ],
- [
- 18.57988,
- -33.56962
- ],
- [
- 18.5907,
- -33.56962
- ],
- [
- 18.59065,
- -33.57868
- ],
- [
- 18.62301,
- -33.57873
- ],
- [
- 18.62292,
- -33.58773
- ],
- [
- 18.66597,
- -33.58789
- ],
- [
- 18.66593,
- -33.61493
- ],
- [
- 18.67672,
- -33.61497
- ],
- [
- 18.67658,
- -33.65103
- ],
- [
- 18.6873,
- -33.65102
- ],
- [
- 18.68734,
- -33.66004
- ],
- [
- 18.69807,
- -33.66009
- ],
- [
- 18.69807,
- -33.66907
- ],
- [
- 18.75204,
- -33.66925
- ],
- [
- 18.75208,
- -33.64219
- ],
- [
- 18.77364,
- -33.64225
- ],
- [
- 18.77371,
- -33.63319
- ],
- [
- 18.82746,
- -33.6333
- ],
- [
- 18.82752,
- -33.6603
- ],
- [
- 18.81667,
- -33.66029
- ],
- [
- 18.8166,
- -33.67832
- ],
- [
- 18.80581,
- -33.67831
- ],
- [
- 18.80581,
- -33.70539
- ],
- [
- 18.8274,
- -33.70544
- ],
- [
- 18.82733,
- -33.72347
- ],
- [
- 18.83812,
- -33.72343
- ],
- [
- 18.83804,
- -33.74139
- ],
- [
- 18.81652,
- -33.74137
- ],
- [
- 18.81637,
- -33.79551
- ],
- [
- 18.80559,
- -33.79551
- ],
- [
- 18.80551,
- -33.81357
- ],
- [
- 18.79476,
- -33.81355
- ],
- [
- 18.79472,
- -33.83154
- ],
- [
- 18.77311,
- -33.83152
- ],
- [
- 18.77313,
- -33.84052
- ],
- [
- 18.76236,
- -33.84052
- ],
- [
- 18.76227,
- -33.90359
- ],
- [
- 18.75146,
- -33.90352
- ],
- [
- 18.75108,
- -33.98478
- ],
- [
- 18.76191,
- -33.9848
- ],
- [
- 18.76178,
- -34.02988
- ],
- [
- 18.7726,
- -34.0299
- ],
- [
- 18.77258,
- -34.03891
- ],
- [
- 18.79403,
- -34.03894
- ],
- [
- 18.79388,
- -34.0407
- ],
- [
- 18.79845,
- -34.04119
- ],
- [
- 18.80324,
- -34.04118
- ],
- [
- 18.80341,
- -34.03892
- ],
- [
- 18.81594,
- -34.03897
- ],
- [
- 18.81634,
- -34.02993
- ],
- [
- 18.83798,
- -34.03165
- ],
- [
- 18.838,
- -34.03
- ],
- [
- 18.84842,
- -34.03001
- ],
- [
- 18.84847,
- -34.02185
- ],
- [
- 18.85993,
- -34.02347
- ],
- [
- 18.85986,
- -34.02101
- ],
- [
- 18.86827,
- -34.02208
- ],
- [
- 18.86819,
- -34.02117
- ],
- [
- 18.88546,
- -34.02343
- ],
- [
- 18.88518,
- -34.02132
- ],
- [
- 18.90252,
- -34.02103
- ],
- [
- 18.90258,
- -34.012
- ],
- [
- 18.91342,
- -34.012
- ],
- [
- 18.91348,
- -33.99396
- ],
- [
- 18.94588,
- -33.99403
- ],
- [
- 18.94586,
- -34.0031
- ],
- [
- 18.96743,
- -34.003
- ],
- [
- 18.96747,
- -34.01208
- ],
- [
- 18.97822,
- -34.01208
- ],
- [
- 18.97833,
- -34.02114
- ],
- [
- 18.98914,
- -34.02114
- ],
- [
- 18.98916,
- -34.03913
- ],
- [
- 19.00002,
- -34.03913
- ],
- [
- 19.00002,
- -34.05718
- ],
- [
- 19.01084,
- -34.05725
- ],
- [
- 19.01079,
- -34.08414
- ],
- [
- 19.0,
- -34.08413
- ],
- [
- 19.00002,
- -34.0932
- ],
- [
- 18.98915,
- -34.09317
- ],
- [
- 18.98918,
- -34.1022
- ],
- [
- 18.97832,
- -34.10218
- ],
- [
- 18.97832,
- -34.11123
- ],
- [
- 18.9675,
- -34.11121
- ],
- [
- 18.96749,
- -34.12925
- ],
- [
- 18.9566,
- -34.12924
- ],
- [
- 18.95656,
- -34.13824
- ],
- [
- 18.96742,
- -34.13831
- ],
- [
- 18.96742,
- -34.14732
- ],
- [
- 18.98918,
- -34.1473
- ],
- [
- 18.98918,
- -34.1653
- ],
- [
- 18.97827,
- -34.16529
- ],
- [
- 18.97832,
- -34.17429
- ],
- [
- 18.96742,
- -34.17427
- ],
- [
- 18.96746,
- -34.1833
- ],
- [
- 18.95656,
- -34.18332
- ],
- [
- 18.95656,
- -34.19236
- ],
- [
- 18.94574,
- -34.19232
- ],
- [
- 18.9457,
- -34.20132
- ],
- [
- 18.93487,
- -34.20137
- ],
- [
- 18.93489,
- -34.21933
- ],
- [
- 18.90236,
- -34.21935
- ],
- [
- 18.90176,
- -34.23626
- ],
- [
- 18.88784,
- -34.23735
- ],
- [
- 18.88942,
- -34.25541
- ],
- [
- 18.88059,
- -34.25534
- ],
- [
- 18.87927,
- -34.26443
- ],
- [
- 18.86969,
- -34.26441
- ],
- [
- 18.86971,
- -34.27344
- ],
- [
- 18.83714,
- -34.27342
- ],
- [
- 18.83712,
- -34.26438
- ],
- [
- 18.84802,
- -34.2644
- ],
- [
- 18.84803,
- -34.23739
- ],
- [
- 18.81549,
- -34.21028
- ],
- [
- 18.81565,
- -34.17413
- ],
- [
- 18.85488,
- -34.15627
- ],
- [
- 18.76176,
- -34.08405
- ],
- [
- 18.65337,
- -34.07748
- ],
- [
- 18.47974,
- -34.11012
- ],
- [
- 18.44637,
- -34.13423
- ],
- [
- 18.44445,
- -34.16409
- ],
- [
- 18.436,
- -34.16405
- ],
- [
- 18.43597,
- -34.18202
- ],
- [
- 18.44681,
- -34.18211
- ],
- [
- 18.44673,
- -34.19111
- ],
- [
- 18.46593,
- -34.19121
- ],
- [
- 18.48662,
- -34.24539
- ],
- [
- 18.47889,
- -34.25437
- ],
- [
- 18.486,
- -34.25437
- ],
- [
- 18.46771,
- -34.29941
- ],
- [
- 18.48922,
- -34.34458
- ],
- [
- 18.50011,
- -34.34458
- ],
- [
- 18.49992,
- -34.36262
- ],
- [
- 18.46743,
- -34.36251
- ],
- [
- 18.46737,
- -34.35349
- ],
- [
- 18.3916,
- -34.31707
- ],
- [
- 18.39177,
- -34.29002
- ],
- [
- 18.37016,
- -34.28087
- ],
- [
- 18.37068,
- -34.21789
- ],
- [
- 18.34923,
- -34.18162
- ],
- [
- 18.32747,
- -34.18149
- ],
- [
- 18.32767,
- -34.16346
- ],
- [
- 18.31187,
- -34.15438
- ],
- [
- 18.3114,
- -34.14353
- ],
- [
- 18.32367,
- -34.13469
- ],
- [
- 18.34993,
- -34.10421
- ],
- [
- 18.33932,
- -34.08828
- ],
- [
- 18.36125,
- -34.05972
- ],
- [
- 18.35505,
- -34.05538
- ],
- [
- 18.34275,
- -34.06433
- ],
- [
- 18.32,
- -34.06443
- ],
- [
- 18.29607,
- -34.04513
- ],
- [
- 18.30682,
- -34.02526
- ],
- [
- 18.32877,
- -34.0192
- ],
- [
- 18.32892,
- -34.00125
- ],
- [
- 18.33974,
- -34.00127
- ],
- [
- 18.3398,
- -33.98663
- ],
- [
- 18.36287,
- -33.97351
- ],
- [
- 18.36381,
- -33.92925
- ],
- [
- 18.37262,
- -33.92927
- ],
- [
- 18.37284,
- -33.91776
- ],
- [
- 18.39773,
- -33.89335
- ],
- [
- 18.44866,
- -33.89362
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
- "url": "https://www.capetown.gov.za"
- },
- "country_code": "ZA",
- "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 12cm ground sample distance",
- "end_date": "2015",
- "id": "South_Africa-CapeTown-Aerial-2013",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "City of Cape Town 2013 Aerial",
- "start_date": "2013",
- "type": "tms",
- "url": "https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2013/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.44866,
- -33.89362
- ],
- [
- 18.44859,
- -33.90264
- ],
- [
- 18.4702,
- -33.90277
- ],
- [
- 18.48139,
- -33.84724
- ],
- [
- 18.44925,
- -33.80107
- ],
- [
- 18.42815,
- -33.73564
- ],
- [
- 18.43914,
- -33.71772
- ],
- [
- 18.40719,
- -33.65899
- ],
- [
- 18.33224,
- -33.57752
- ],
- [
- 18.33245,
- -33.55045
- ],
- [
- 18.354,
- -33.55059
- ],
- [
- 18.35425,
- -33.5236
- ],
- [
- 18.36524,
- -33.52366
- ],
- [
- 18.36503,
- -33.5148
- ],
- [
- 18.37601,
- -33.51477
- ],
- [
- 18.37605,
- -33.5058
- ],
- [
- 18.42966,
- -33.50594
- ],
- [
- 18.4297,
- -33.48785
- ],
- [
- 18.44049,
- -33.48789
- ],
- [
- 18.4406,
- -33.46988
- ],
- [
- 18.49437,
- -33.4701
- ],
- [
- 18.49433,
- -33.47916
- ],
- [
- 18.51583,
- -33.47917
- ],
- [
- 18.51574,
- -33.48819
- ],
- [
- 18.52647,
- -33.4883
- ],
- [
- 18.52632,
- -33.52435
- ],
- [
- 18.54793,
- -33.52443
- ],
- [
- 18.54795,
- -33.51539
- ],
- [
- 18.56937,
- -33.5155
- ],
- [
- 18.56937,
- -33.52448
- ],
- [
- 18.58012,
- -33.52453
- ],
- [
- 18.58007,
- -33.5426
- ],
- [
- 18.59078,
- -33.5426
- ],
- [
- 18.59074,
- -33.56064
- ],
- [
- 18.57995,
- -33.56053
- ],
- [
- 18.57988,
- -33.56962
- ],
- [
- 18.5907,
- -33.56962
- ],
- [
- 18.59065,
- -33.57868
- ],
- [
- 18.62301,
- -33.57873
- ],
- [
- 18.62292,
- -33.58773
- ],
- [
- 18.66597,
- -33.58789
- ],
- [
- 18.66593,
- -33.61493
- ],
- [
- 18.67672,
- -33.61497
- ],
- [
- 18.67658,
- -33.65103
- ],
- [
- 18.6873,
- -33.65102
- ],
- [
- 18.68734,
- -33.66004
- ],
- [
- 18.69807,
- -33.66009
- ],
- [
- 18.69807,
- -33.66907
- ],
- [
- 18.75204,
- -33.66925
- ],
- [
- 18.75208,
- -33.64219
- ],
- [
- 18.77364,
- -33.64225
- ],
- [
- 18.77371,
- -33.63319
- ],
- [
- 18.82746,
- -33.6333
- ],
- [
- 18.82752,
- -33.6603
- ],
- [
- 18.81667,
- -33.66029
- ],
- [
- 18.8166,
- -33.67832
- ],
- [
- 18.80581,
- -33.67831
- ],
- [
- 18.80581,
- -33.70539
- ],
- [
- 18.8274,
- -33.70544
- ],
- [
- 18.82733,
- -33.72347
- ],
- [
- 18.83812,
- -33.72343
- ],
- [
- 18.83804,
- -33.74139
- ],
- [
- 18.81652,
- -33.74137
- ],
- [
- 18.81637,
- -33.79551
- ],
- [
- 18.80559,
- -33.79551
- ],
- [
- 18.80551,
- -33.81357
- ],
- [
- 18.79476,
- -33.81355
- ],
- [
- 18.79472,
- -33.83154
- ],
- [
- 18.77311,
- -33.83152
- ],
- [
- 18.77313,
- -33.84052
- ],
- [
- 18.76236,
- -33.84052
- ],
- [
- 18.76227,
- -33.90359
- ],
- [
- 18.75146,
- -33.90352
- ],
- [
- 18.75108,
- -33.98478
- ],
- [
- 18.76191,
- -33.9848
- ],
- [
- 18.76178,
- -34.02988
- ],
- [
- 18.7726,
- -34.0299
- ],
- [
- 18.77258,
- -34.03891
- ],
- [
- 18.79403,
- -34.03894
- ],
- [
- 18.79388,
- -34.0407
- ],
- [
- 18.79845,
- -34.04119
- ],
- [
- 18.80324,
- -34.04118
- ],
- [
- 18.80341,
- -34.03892
- ],
- [
- 18.81594,
- -34.03897
- ],
- [
- 18.81634,
- -34.02993
- ],
- [
- 18.83798,
- -34.03165
- ],
- [
- 18.838,
- -34.03
- ],
- [
- 18.84842,
- -34.03001
- ],
- [
- 18.84847,
- -34.02185
- ],
- [
- 18.85993,
- -34.02347
- ],
- [
- 18.85986,
- -34.02101
- ],
- [
- 18.86827,
- -34.02208
- ],
- [
- 18.86819,
- -34.02117
- ],
- [
- 18.88546,
- -34.02343
- ],
- [
- 18.88518,
- -34.02132
- ],
- [
- 18.90252,
- -34.02103
- ],
- [
- 18.90258,
- -34.012
- ],
- [
- 18.91342,
- -34.012
- ],
- [
- 18.91348,
- -33.99396
- ],
- [
- 18.94588,
- -33.99403
- ],
- [
- 18.94586,
- -34.0031
- ],
- [
- 18.96743,
- -34.003
- ],
- [
- 18.96747,
- -34.01208
- ],
- [
- 18.97822,
- -34.01208
- ],
- [
- 18.97833,
- -34.02114
- ],
- [
- 18.98914,
- -34.02114
- ],
- [
- 18.98916,
- -34.03913
- ],
- [
- 19.00002,
- -34.03913
- ],
- [
- 19.00002,
- -34.05718
- ],
- [
- 19.01084,
- -34.05725
- ],
- [
- 19.01079,
- -34.08414
- ],
- [
- 19.0,
- -34.08413
- ],
- [
- 19.00002,
- -34.0932
- ],
- [
- 18.98915,
- -34.09317
- ],
- [
- 18.98918,
- -34.1022
- ],
- [
- 18.97832,
- -34.10218
- ],
- [
- 18.97832,
- -34.11123
- ],
- [
- 18.9675,
- -34.11121
- ],
- [
- 18.96749,
- -34.12925
- ],
- [
- 18.9566,
- -34.12924
- ],
- [
- 18.95656,
- -34.13824
- ],
- [
- 18.96742,
- -34.13831
- ],
- [
- 18.96742,
- -34.14732
- ],
- [
- 18.98918,
- -34.1473
- ],
- [
- 18.98918,
- -34.1653
- ],
- [
- 18.97827,
- -34.16529
- ],
- [
- 18.97832,
- -34.17429
- ],
- [
- 18.96742,
- -34.17427
- ],
- [
- 18.96746,
- -34.1833
- ],
- [
- 18.95656,
- -34.18332
- ],
- [
- 18.95656,
- -34.19236
- ],
- [
- 18.94574,
- -34.19232
- ],
- [
- 18.9457,
- -34.20132
- ],
- [
- 18.93487,
- -34.20137
- ],
- [
- 18.93489,
- -34.21933
- ],
- [
- 18.90236,
- -34.21935
- ],
- [
- 18.90176,
- -34.23626
- ],
- [
- 18.88784,
- -34.23735
- ],
- [
- 18.88942,
- -34.25541
- ],
- [
- 18.88059,
- -34.25534
- ],
- [
- 18.87927,
- -34.26443
- ],
- [
- 18.86969,
- -34.26441
- ],
- [
- 18.86971,
- -34.27344
- ],
- [
- 18.83714,
- -34.27342
- ],
- [
- 18.83712,
- -34.26438
- ],
- [
- 18.84802,
- -34.2644
- ],
- [
- 18.84803,
- -34.23739
- ],
- [
- 18.81549,
- -34.21028
- ],
- [
- 18.81565,
- -34.17413
- ],
- [
- 18.85488,
- -34.15627
- ],
- [
- 18.76176,
- -34.08405
- ],
- [
- 18.65337,
- -34.07748
- ],
- [
- 18.47974,
- -34.11012
- ],
- [
- 18.44637,
- -34.13423
- ],
- [
- 18.44445,
- -34.16409
- ],
- [
- 18.436,
- -34.16405
- ],
- [
- 18.43597,
- -34.18202
- ],
- [
- 18.44681,
- -34.18211
- ],
- [
- 18.44673,
- -34.19111
- ],
- [
- 18.46593,
- -34.19121
- ],
- [
- 18.48662,
- -34.24539
- ],
- [
- 18.47889,
- -34.25437
- ],
- [
- 18.486,
- -34.25437
- ],
- [
- 18.46771,
- -34.29941
- ],
- [
- 18.48922,
- -34.34458
- ],
- [
- 18.50011,
- -34.34458
- ],
- [
- 18.49992,
- -34.36262
- ],
- [
- 18.46743,
- -34.36251
- ],
- [
- 18.46737,
- -34.35349
- ],
- [
- 18.3916,
- -34.31707
- ],
- [
- 18.39177,
- -34.29002
- ],
- [
- 18.37016,
- -34.28087
- ],
- [
- 18.37068,
- -34.21789
- ],
- [
- 18.34923,
- -34.18162
- ],
- [
- 18.32747,
- -34.18149
- ],
- [
- 18.32767,
- -34.16346
- ],
- [
- 18.31187,
- -34.15438
- ],
- [
- 18.3114,
- -34.14353
- ],
- [
- 18.32367,
- -34.13469
- ],
- [
- 18.34993,
- -34.10421
- ],
- [
- 18.33932,
- -34.08828
- ],
- [
- 18.36125,
- -34.05972
- ],
- [
- 18.35505,
- -34.05538
- ],
- [
- 18.34275,
- -34.06433
- ],
- [
- 18.32,
- -34.06443
- ],
- [
- 18.29607,
- -34.04513
- ],
- [
- 18.30682,
- -34.02526
- ],
- [
- 18.32877,
- -34.0192
- ],
- [
- 18.32892,
- -34.00125
- ],
- [
- 18.33974,
- -34.00127
- ],
- [
- 18.3398,
- -33.98663
- ],
- [
- 18.36287,
- -33.97351
- ],
- [
- 18.36381,
- -33.92925
- ],
- [
- 18.37262,
- -33.92927
- ],
- [
- 18.37284,
- -33.91776
- ],
- [
- 18.39773,
- -33.89335
- ],
- [
- 18.44866,
- -33.89362
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
- "url": "https://www.capetown.gov.za"
- },
- "country_code": "ZA",
- "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance",
- "end_date": "2016",
- "id": "South_Africa-CapeTown-Aerial",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "City of Cape Town 2015 Aerial",
- "start_date": "2015",
- "type": "tms",
- "url": "https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2015/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.35572,
- -34.06348
- ],
- [
- 18.30856,
- -34.14988
- ],
- [
- 18.33655,
- -34.18764
- ],
- [
- 18.39162,
- -34.31413
- ],
- [
- 18.44973,
- -34.35206
- ],
- [
- 18.46768,
- -34.36437
- ],
- [
- 18.50723,
- -34.36336
- ],
- [
- 18.49749,
- -34.34603
- ],
- [
- 18.47559,
- -34.3287
- ],
- [
- 18.47589,
- -34.30558
- ],
- [
- 18.48776,
- -34.23493
- ],
- [
- 18.46646,
- -34.19971
- ],
- [
- 18.44151,
- -34.17606
- ],
- [
- 18.45764,
- -34.13225
- ],
- [
- 18.51574,
- -34.10278
- ],
- [
- 18.65052,
- -34.07582
- ],
- [
- 18.71958,
- -34.07728
- ],
- [
- 18.78742,
- -34.09416
- ],
- [
- 18.85527,
- -34.1604
- ],
- [
- 18.8218,
- -34.17223
- ],
- [
- 18.81328,
- -34.18481
- ],
- [
- 18.8148,
- -34.20343
- ],
- [
- 18.8361,
- -34.23815
- ],
- [
- 18.84401,
- -34.24142
- ],
- [
- 18.84736,
- -34.26053
- ],
- [
- 18.83458,
- -34.26506
- ],
- [
- 18.83214,
- -34.28391
- ],
- [
- 18.87808,
- -34.27637
- ],
- [
- 18.99369,
- -34.16342
- ],
- [
- 19.01316,
- -34.08207
- ],
- [
- 19.01225,
- -34.05334
- ],
- [
- 18.99186,
- -34.01981
- ],
- [
- 18.95292,
- -33.99282
- ],
- [
- 18.91003,
- -33.99207
- ],
- [
- 18.89603,
- -34.01855
- ],
- [
- 18.80355,
- -34.0193
- ],
- [
- 18.80324,
- -34.03746
- ],
- [
- 18.78651,
- -34.03721
- ],
- [
- 18.7859,
- -34.01981
- ],
- [
- 18.764,
- -34.0193
- ],
- [
- 18.76339,
- -33.8421
- ],
- [
- 18.79868,
- -33.84202
- ],
- [
- 18.7986,
- -33.81936
- ],
- [
- 18.82271,
- -33.8193
- ],
- [
- 18.82246,
- -33.74478
- ],
- [
- 18.8423,
- -33.74473
- ],
- [
- 18.84223,
- -33.72326
- ],
- [
- 18.82944,
- -33.72329
- ],
- [
- 18.82938,
- -33.70408
- ],
- [
- 18.80702,
- -33.70413
- ],
- [
- 18.80694,
- -33.67957
- ],
- [
- 18.81842,
- -33.67955
- ],
- [
- 18.81836,
- -33.66202
- ],
- [
- 18.82923,
- -33.662
- ],
- [
- 18.82913,
- -33.63214
- ],
- [
- 18.7506,
- -33.63232
- ],
- [
- 18.75072,
- -33.66656
- ],
- [
- 18.70223,
- -33.66667
- ],
- [
- 18.70217,
- -33.64934
- ],
- [
- 18.67759,
- -33.6494
- ],
- [
- 18.67747,
- -33.61367
- ],
- [
- 18.66782,
- -33.61369
- ],
- [
- 18.66773,
- -33.58722
- ],
- [
- 18.62376,
- -33.58733
- ],
- [
- 18.62373,
- -33.57749
- ],
- [
- 18.59163,
- -33.57756
- ],
- [
- 18.59161,
- -33.56929
- ],
- [
- 18.58033,
- -33.56932
- ],
- [
- 18.5803,
- -33.56088
- ],
- [
- 18.59158,
- -33.56086
- ],
- [
- 18.59151,
- -33.54227
- ],
- [
- 18.58072,
- -33.5423
- ],
- [
- 18.58066,
- -33.52366
- ],
- [
- 18.57027,
- -33.52368
- ],
- [
- 18.57024,
- -33.51513
- ],
- [
- 18.54757,
- -33.51519
- ],
- [
- 18.5476,
- -33.524
- ],
- [
- 18.52671,
- -33.52405
- ],
- [
- 18.52658,
- -33.4876
- ],
- [
- 18.51639,
- -33.48763
- ],
- [
- 18.51633,
- -33.47028
- ],
- [
- 18.42782,
- -33.47049
- ],
- [
- 18.42794,
- -33.5038
- ],
- [
- 18.3618,
- -33.50396
- ],
- [
- 18.36186,
- -33.52233
- ],
- [
- 18.30611,
- -33.52247
- ],
- [
- 18.3062,
- -33.54803
- ],
- [
- 18.30685,
- -33.57209
- ],
- [
- 18.32668,
- -33.58017
- ],
- [
- 18.36546,
- -33.62072
- ],
- [
- 18.4044,
- -33.65061
- ],
- [
- 18.42326,
- -33.69339
- ],
- [
- 18.42721,
- -33.72882
- ],
- [
- 18.4333,
- -33.77284
- ],
- [
- 18.45946,
- -33.82138
- ],
- [
- 18.48076,
- -33.8517
- ],
- [
- 18.47985,
- -33.88303
- ],
- [
- 18.46585,
- -33.89944
- ],
- [
- 18.4552,
- -33.90399
- ],
- [
- 18.43269,
- -33.89389
- ],
- [
- 18.39831,
- -33.8949
- ],
- [
- 18.37458,
- -33.90752
- ],
- [
- 18.36576,
- -33.93378
- ],
- [
- 18.36637,
- -33.96104
- ],
- [
- 18.34994,
- -33.97769
- ],
- [
- 18.33138,
- -33.99081
- ],
- [
- 18.32469,
- -34.02006
- ],
- [
- 18.30126,
- -34.02435
- ],
- [
- 18.30278,
- -34.04956
- ],
- [
- 18.32895,
- -34.06544
- ],
- [
- 18.35572,
- -34.06348
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "City of Cape Town Aerial",
- "url": "http://odp.capetown.gov.za/datasets/aerial-imagery"
- },
- "country_code": "ZA",
- "description": "City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance",
- "end_date": "2017",
- "id": "South_Africa-CapeTown-Aerial-2017",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/africa/za/South_Africa_CapeTown_2017_2018_Aerial_Imagery.pdf",
- "max_zoom": 11,
- "min_zoom": 1,
- "name": "2017 Aerial Imagery from the City of Cape Town",
- "permission_osm": "explicit",
- "start_date": "2017",
- "type": "wmts",
- "url": "https://citymaps.capetown.gov.za/agsext1/rest/services/Aerial_Photography_Cached/AP_2017_Jan/MapServer/WMTS/tile/1.0.0/Aerial_Photography_Cached_AP_2017_Jan/default/default028mm/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.35572,
- -34.06348
- ],
- [
- 18.30856,
- -34.14988
- ],
- [
- 18.33655,
- -34.18764
- ],
- [
- 18.39162,
- -34.31413
- ],
- [
- 18.44973,
- -34.35206
- ],
- [
- 18.46768,
- -34.36437
- ],
- [
- 18.50723,
- -34.36336
- ],
- [
- 18.49749,
- -34.34603
- ],
- [
- 18.47559,
- -34.3287
- ],
- [
- 18.47589,
- -34.30558
- ],
- [
- 18.48776,
- -34.23493
- ],
- [
- 18.46646,
- -34.19971
- ],
- [
- 18.44151,
- -34.17606
- ],
- [
- 18.45764,
- -34.13225
- ],
- [
- 18.51574,
- -34.10278
- ],
- [
- 18.65052,
- -34.07582
- ],
- [
- 18.71958,
- -34.07728
- ],
- [
- 18.78742,
- -34.09416
- ],
- [
- 18.85527,
- -34.1604
- ],
- [
- 18.8218,
- -34.17223
- ],
- [
- 18.81328,
- -34.18481
- ],
- [
- 18.8148,
- -34.20343
- ],
- [
- 18.8361,
- -34.23815
- ],
- [
- 18.84401,
- -34.24142
- ],
- [
- 18.84736,
- -34.26053
- ],
- [
- 18.83458,
- -34.26506
- ],
- [
- 18.83214,
- -34.28391
- ],
- [
- 18.87808,
- -34.27637
- ],
- [
- 18.99369,
- -34.16342
- ],
- [
- 19.01316,
- -34.08207
- ],
- [
- 19.01225,
- -34.05334
- ],
- [
- 18.99186,
- -34.01981
- ],
- [
- 18.95292,
- -33.99282
- ],
- [
- 18.91003,
- -33.99207
- ],
- [
- 18.89603,
- -34.01855
- ],
- [
- 18.80355,
- -34.0193
- ],
- [
- 18.80324,
- -34.03746
- ],
- [
- 18.78651,
- -34.03721
- ],
- [
- 18.7859,
- -34.01981
- ],
- [
- 18.764,
- -34.0193
- ],
- [
- 18.76339,
- -33.8421
- ],
- [
- 18.79868,
- -33.84202
- ],
- [
- 18.7986,
- -33.81936
- ],
- [
- 18.82271,
- -33.8193
- ],
- [
- 18.82246,
- -33.74478
- ],
- [
- 18.8423,
- -33.74473
- ],
- [
- 18.84223,
- -33.72326
- ],
- [
- 18.82944,
- -33.72329
- ],
- [
- 18.82938,
- -33.70408
- ],
- [
- 18.80702,
- -33.70413
- ],
- [
- 18.80694,
- -33.67957
- ],
- [
- 18.81842,
- -33.67955
- ],
- [
- 18.81836,
- -33.66202
- ],
- [
- 18.82923,
- -33.662
- ],
- [
- 18.82913,
- -33.63214
- ],
- [
- 18.7506,
- -33.63232
- ],
- [
- 18.75072,
- -33.66656
- ],
- [
- 18.70223,
- -33.66667
- ],
- [
- 18.70217,
- -33.64934
- ],
- [
- 18.67759,
- -33.6494
- ],
- [
- 18.67747,
- -33.61367
- ],
- [
- 18.66782,
- -33.61369
- ],
- [
- 18.66773,
- -33.58722
- ],
- [
- 18.62376,
- -33.58733
- ],
- [
- 18.62373,
- -33.57749
- ],
- [
- 18.59163,
- -33.57756
- ],
- [
- 18.59161,
- -33.56929
- ],
- [
- 18.58033,
- -33.56932
- ],
- [
- 18.5803,
- -33.56088
- ],
- [
- 18.59158,
- -33.56086
- ],
- [
- 18.59151,
- -33.54227
- ],
- [
- 18.58072,
- -33.5423
- ],
- [
- 18.58066,
- -33.52366
- ],
- [
- 18.57027,
- -33.52368
- ],
- [
- 18.57024,
- -33.51513
- ],
- [
- 18.54757,
- -33.51519
- ],
- [
- 18.5476,
- -33.524
- ],
- [
- 18.52671,
- -33.52405
- ],
- [
- 18.52658,
- -33.4876
- ],
- [
- 18.51639,
- -33.48763
- ],
- [
- 18.51633,
- -33.47028
- ],
- [
- 18.42782,
- -33.47049
- ],
- [
- 18.42794,
- -33.5038
- ],
- [
- 18.3618,
- -33.50396
- ],
- [
- 18.36186,
- -33.52233
- ],
- [
- 18.30611,
- -33.52247
- ],
- [
- 18.3062,
- -33.54803
- ],
- [
- 18.30685,
- -33.57209
- ],
- [
- 18.32668,
- -33.58017
- ],
- [
- 18.36546,
- -33.62072
- ],
- [
- 18.4044,
- -33.65061
- ],
- [
- 18.42326,
- -33.69339
- ],
- [
- 18.42721,
- -33.72882
- ],
- [
- 18.4333,
- -33.77284
- ],
- [
- 18.45946,
- -33.82138
- ],
- [
- 18.48076,
- -33.8517
- ],
- [
- 18.47985,
- -33.88303
- ],
- [
- 18.46585,
- -33.89944
- ],
- [
- 18.4552,
- -33.90399
- ],
- [
- 18.43269,
- -33.89389
- ],
- [
- 18.39831,
- -33.8949
- ],
- [
- 18.37458,
- -33.90752
- ],
- [
- 18.36576,
- -33.93378
- ],
- [
- 18.36637,
- -33.96104
- ],
- [
- 18.34994,
- -33.97769
- ],
- [
- 18.33138,
- -33.99081
- ],
- [
- 18.32469,
- -34.02006
- ],
- [
- 18.30126,
- -34.02435
- ],
- [
- 18.30278,
- -34.04956
- ],
- [
- 18.32895,
- -34.06544
- ],
- [
- 18.35572,
- -34.06348
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "City of Cape Town Aerial",
- "url": "http://odp.capetown.gov.za/datasets/aerial-imagery"
- },
- "best": true,
- "country_code": "ZA",
- "description": "City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance.",
- "end_date": "2018",
- "id": "South_Africa-CapeTown-Aerial-2018",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/africa/za/South_Africa_CapeTown_2017_2018_Aerial_Imagery.pdf",
- "max_zoom": 11,
- "min_zoom": 1,
- "name": "2018 Aerial Imagery from the City of Cape Town",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://www.capetown.gov.za/General/Privacy",
- "start_date": "2018",
- "type": "tms",
- "url": "https://citymaps.capetown.gov.za/agsext1/rest/services/Aerial_Photography_Cached/AP_2018_Feb/MapServer/WMTS/tile/1.0.0/Aerial_Photography_Cached_AP_2018_Feb/default/default028mm/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 156.96951,
- -84.50098
- ],
- [
- 154.50858,
- -84.46255
- ],
- [
- 154.50858,
- -82.60681
- ],
- [
- 175.46774,
- -82.58505
- ],
- [
- 177.00583,
- -83.52807
- ],
- [
- 177.00583,
- -84.19262
- ],
- [
- 171.93839,
- -84.34633
- ],
- [
- 166.83798,
- -84.4437
- ],
- [
- 161.67029,
- -84.50045
- ],
- [
- 156.96951,
- -84.50098
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AQ",
- "description": "Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)",
- "end_date": "2016-02-04",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC80281222016035LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 10,
- "name": "imagico.de: Southern Transantarctic Mountains",
- "start_date": "2016-02-04",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC80281222016035LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -53.20922,
- -84.12525
- ],
- [
- -60.61538,
- -83.78609
- ],
- [
- -60.61538,
- -82.29969
- ],
- [
- -48.72405,
- -82.29987
- ],
- [
- -44.52178,
- -82.43683
- ],
- [
- -44.51354,
- -84.12525
- ],
- [
- -53.20922,
- -84.12525
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AQ",
- "description": "Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)",
- "end_date": "2016-02-02",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81511242016033LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 10,
- "name": "imagico.de: Pensacola Mountains",
- "start_date": "2016-02-02",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81511242016033LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -56.13476,
- -61.63472
- ],
- [
- -56.13476,
- -61.19936
- ],
- [
- -55.83264,
- -60.84015
- ],
- [
- -53.72343,
- -60.83982
- ],
- [
- -53.72343,
- -61.63472
- ],
- [
- -56.13476,
- -61.63472
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AQ",
- "description": "Fairly clear up-to-date image for updating glacier edges (true color)",
- "end_date": "2016-01-09",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R009_S61_20160109",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Elephant Island/Clarence Island",
- "start_date": "2016-01-09",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R009_S61_20160109&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 96.1197,
- -67.6542
- ],
- [
- 96.1201,
- -67.1899
- ],
- [
- 98.7331,
- -65.044
- ],
- [
- 105.1028,
- -65.044
- ],
- [
- 105.1028,
- -65.7224
- ],
- [
- 103.3017,
- -67.6542
- ],
- [
- 96.1197,
- -67.6542
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AQ",
- "description": "Largest ice free area at the East Antarctic coast - shows considerable amounts of non-permanent ice. (true color)",
- "end_date": "2017-02-23",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R017_S67_20170223T022551",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Bunger Hills",
- "start_date": "2017-02-23",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R017_S67_20170223T022551&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 162.9125,
- -78.4514
- ],
- [
- 162.6595,
- -78.4257
- ],
- [
- 159.2712,
- -77.6013
- ],
- [
- 159.2712,
- -77.4108
- ],
- [
- 164.157,
- -76.477
- ],
- [
- 169.7813,
- -76.4764
- ],
- [
- 169.7813,
- -78.4514
- ],
- [
- 162.9125,
- -78.4514
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AQ",
- "description": "Up-to-date late season image - not ice minimum, be careful with distinguishing sea ice from ice shelves. (true color)",
- "end_date": "2017-02-14",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R042_S78_20170214T202521",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: McMurdo Sound and Dry Valleys",
- "start_date": "2017-02-14",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R042_S78_20170214T202521&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 45.4547,
- -68.5091
- ],
- [
- 45.4547,
- -67.5724
- ],
- [
- 49.7155,
- -65.7176
- ],
- [
- 59.2693,
- -65.7176
- ],
- [
- 67.3735,
- -67.3449
- ],
- [
- 67.3735,
- -68.2581
- ],
- [
- 67.088,
- -68.5091
- ],
- [
- 45.4547,
- -68.5091
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AQ",
- "description": "Sentinel-2 images of Enderby Land and Kemp Coast (true color)",
- "end_date": "2017-03-27",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-enderby",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Enderby Land and Kemp Coast",
- "start_date": "2017-01-25",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=enderby&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -62.7282,
- -68.9652
- ],
- [
- -64.0489,
- -68.7318
- ],
- [
- -64.0486,
- -68.5373
- ],
- [
- -60.8845,
- -65.9399
- ],
- [
- -59.9187,
- -65.9389
- ],
- [
- -59.1088,
- -66.0775
- ],
- [
- -59.1088,
- -68.8359
- ],
- [
- -59.2544,
- -68.9652
- ],
- [
- -62.7282,
- -68.9652
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AQ",
- "description": "For updating the ice edge after the 2017 iceberg calving (true color)",
- "end_date": "2018-01-06",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-larsen_2018",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Larsen C ice shelf after calving",
- "start_date": "2018-01-06",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=larsen_2018&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 92.10238,
- 20.81356
- ],
- [
- 93.56905,
- 24.09755
- ],
- [
- 94.1733,
- 23.92695
- ],
- [
- 95.19503,
- 26.70727
- ],
- [
- 96.75509,
- 27.52867
- ],
- [
- 97.58456,
- 28.5806
- ],
- [
- 98.73812,
- 27.51405
- ],
- [
- 98.74362,
- 25.87992
- ],
- [
- 97.67794,
- 24.75774
- ],
- [
- 97.96359,
- 24.04238
- ],
- [
- 98.82052,
- 24.16272
- ],
- [
- 99.52364,
- 22.95934
- ],
- [
- 100.36959,
- 21.50514
- ],
- [
- 101.79232,
- 22.48305
- ],
- [
- 105.36288,
- 23.33311
- ],
- [
- 106.81857,
- 22.84801
- ],
- [
- 108.19735,
- 21.36197
- ],
- [
- 107.43895,
- 18.85398
- ],
- [
- 117.14537,
- 7.46562
- ],
- [
- 119.6173,
- 5.28754
- ],
- [
- 118.12315,
- 4.05023
- ],
- [
- 117.25523,
- 4.36249
- ],
- [
- 115.86546,
- 4.34606
- ],
- [
- 115.50841,
- 3.02498
- ],
- [
- 114.5526,
- 1.5101
- ],
- [
- 113.54186,
- 1.25748
- ],
- [
- 112.96507,
- 1.5705
- ],
- [
- 112.24547,
- 1.5101
- ],
- [
- 111.67418,
- 1.01583
- ],
- [
- 110.4547,
- 0.90049
- ],
- [
- 109.49889,
- 1.9219
- ],
- [
- 103.22569,
- 1.12568
- ],
- [
- 100.46263,
- 3.23889
- ],
- [
- 97.6721,
- 8.05888
- ],
- [
- 93.89281,
- 15.93987
- ],
- [
- 92.10238,
- 20.81356
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© osm-tools.org & OpenStreetMap contributors, CC-BY-SA",
- "url": "https://www.osm-tools.org"
- },
- "country_code": "ZZ",
- "id": "osm-cambodia_laos_thailand_vietnam-bilingual",
- "max_zoom": 20,
- "name": "Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tile.osm-tools.org/osm/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 136.4226,
- -4.2853
- ],
- [
- 136.4226,
- -3.6447
- ],
- [
- 137.7971,
- -3.6447
- ],
- [
- 137.7971,
- -4.2853
- ],
- [
- 136.4226,
- -4.2853
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "ID",
- "description": "Older image of the Sudirman Range with no fresh snow showing glacier extent (true color)",
- "end_date": "2015-10-13",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81030632015286LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Sudirman Range 2015",
- "start_date": "2015-10-13",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81030632015286LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 120.84382,
- -3.59545
- ],
- [
- 120.84382,
- -3.15985
- ],
- [
- 120.98184,
- -2.51468
- ],
- [
- 122.62618,
- -2.51468
- ],
- [
- 122.62618,
- -3.00215
- ],
- [
- 122.5007,
- -3.59545
- ],
- [
- 120.84382,
- -3.59545
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "ID",
- "description": "Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail (true color)",
- "end_date": "2013-09-27",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81130622013270LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Southeastern Sulawesi",
- "start_date": "2013-09-27",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81130622013270LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 114.36,
- 2.02846
- ],
- [
- 113.53448,
- 2.03
- ],
- [
- 113.53619,
- 3.07077
- ],
- [
- 114.76512,
- 3.06751
- ],
- [
- 114.76254,
- 2.08816
- ],
- [
- 114.36,
- 2.02846
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "ID",
- "description": "Missing in older pre-2011 images (true color)",
- "end_date": "2014-03-16",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81190582014075LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Bakun Reservoir",
- "start_date": "2014-03-16",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81190582014075LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 104.00155,
- -8e-05
- ],
- [
- 104.00137,
- 1.45099
- ],
- [
- 104.91015,
- 1.45116
- ],
- [
- 104.91015,
- -8e-05
- ],
- [
- 104.00155,
- -8e-05
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "ID",
- "description": "Missing Islands in OSM (true color)",
- "end_date": "2016",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81250592016107LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Batam",
- "start_date": "2014",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81250592016107LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 136.8044,
- -4.2585
- ],
- [
- 136.8044,
- -3.7836
- ],
- [
- 137.7701,
- -3.7836
- ],
- [
- 137.7701,
- -4.2585
- ],
- [
- 136.8044,
- -4.2585
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "ID",
- "description": "Cloud free image of the Sudirman Range but with fresh snow (true color)",
- "end_date": "2016-08-12",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R088_S05_20160812T011732",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Sudirman Range 2016",
- "start_date": "2016-08-12",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R088_S05_20160812T011732&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 34.64563,
- 32.92073
- ],
- [
- 34.98374,
- 33.13352
- ],
- [
- 35.15662,
- 33.09994
- ],
- [
- 35.31781,
- 33.11463
- ],
- [
- 35.36541,
- 33.06285
- ],
- [
- 35.46229,
- 33.09994
- ],
- [
- 35.51741,
- 33.12652
- ],
- [
- 35.5266,
- 33.21531
- ],
- [
- 35.53893,
- 33.25442
- ],
- [
- 35.56446,
- 33.2969
- ],
- [
- 35.61264,
- 33.27918
- ],
- [
- 35.67429,
- 33.30627
- ],
- [
- 35.70785,
- 33.34269
- ],
- [
- 35.75363,
- 33.35091
- ],
- [
- 35.81509,
- 33.3392
- ],
- [
- 35.91531,
- 32.9406
- ],
- [
- 35.80834,
- 32.772
- ],
- [
- 35.77835,
- 32.72446
- ],
- [
- 35.59491,
- 32.62828
- ],
- [
- 35.5729,
- 32.36541
- ],
- [
- 35.59461,
- 32.21856
- ],
- [
- 35.55452,
- 32.02901
- ],
- [
- 35.57225,
- 31.75415
- ],
- [
- 35.48771,
- 31.41951
- ],
- [
- 35.4209,
- 31.25116
- ],
- [
- 35.47936,
- 31.1783
- ],
- [
- 35.42771,
- 30.95172
- ],
- [
- 35.3321,
- 30.77107
- ],
- [
- 35.20709,
- 30.53307
- ],
- [
- 35.17202,
- 30.11204
- ],
- [
- 35.07514,
- 29.83713
- ],
- [
- 35.02336,
- 29.64569
- ],
- [
- 34.93992,
- 29.39946
- ],
- [
- 34.89517,
- 29.37711
- ],
- [
- 34.84785,
- 29.59084
- ],
- [
- 34.69667,
- 30.10714
- ],
- [
- 34.52423,
- 30.40912
- ],
- [
- 34.48879,
- 30.64515
- ],
- [
- 34.07929,
- 31.52265
- ],
- [
- 34.64563,
- 32.92073
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.",
- "url": "https://israelhiking.osm.org.il/"
- },
- "country_code": "IL",
- "description": "Israel Hiking map",
- "icon": "https://israelhiking.osm.org.il/content/favicons/favicon.ico",
- "id": "Israel_Hiking",
- "max_zoom": 16,
- "min_zoom": 7,
- "name": "Israel Hiking",
- "type": "tms",
- "url": "https://israelhiking.osm.org.il/Tiles/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 34.64563,
- 32.92073
- ],
- [
- 34.98374,
- 33.13352
- ],
- [
- 35.15662,
- 33.09994
- ],
- [
- 35.31781,
- 33.11463
- ],
- [
- 35.36541,
- 33.06285
- ],
- [
- 35.46229,
- 33.09994
- ],
- [
- 35.51741,
- 33.12652
- ],
- [
- 35.5266,
- 33.21531
- ],
- [
- 35.53893,
- 33.25442
- ],
- [
- 35.56446,
- 33.2969
- ],
- [
- 35.61264,
- 33.27918
- ],
- [
- 35.67429,
- 33.30627
- ],
- [
- 35.70785,
- 33.34269
- ],
- [
- 35.75363,
- 33.35091
- ],
- [
- 35.81509,
- 33.3392
- ],
- [
- 35.91531,
- 32.9406
- ],
- [
- 35.80834,
- 32.772
- ],
- [
- 35.77835,
- 32.72446
- ],
- [
- 35.59491,
- 32.62828
- ],
- [
- 35.5729,
- 32.36541
- ],
- [
- 35.59461,
- 32.21856
- ],
- [
- 35.55452,
- 32.02901
- ],
- [
- 35.57225,
- 31.75415
- ],
- [
- 35.48771,
- 31.41951
- ],
- [
- 35.4209,
- 31.25116
- ],
- [
- 35.47936,
- 31.1783
- ],
- [
- 35.42771,
- 30.95172
- ],
- [
- 35.3321,
- 30.77107
- ],
- [
- 35.20709,
- 30.53307
- ],
- [
- 35.17202,
- 30.11204
- ],
- [
- 35.07514,
- 29.83713
- ],
- [
- 35.02336,
- 29.64569
- ],
- [
- 34.93992,
- 29.39946
- ],
- [
- 34.89517,
- 29.37711
- ],
- [
- 34.84785,
- 29.59084
- ],
- [
- 34.69667,
- 30.10714
- ],
- [
- 34.52423,
- 30.40912
- ],
- [
- 34.48879,
- 30.64515
- ],
- [
- 34.07929,
- 31.52265
- ],
- [
- 34.64563,
- 32.92073
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.",
- "url": "https://israelhiking.osm.org.il/"
- },
- "country_code": "IL",
- "description": "Israel MTB map",
- "icon": "https://israelhiking.osm.org.il/content/favicons/favicon.ico",
- "id": "Israel_MTB",
- "max_zoom": 16,
- "min_zoom": 7,
- "name": "Israel MTB",
- "type": "tms",
- "url": "https://israelhiking.osm.org.il/MTBTiles/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 67.9684,
- 22.36265
- ],
- [
- 67.86231,
- 22.38392
- ],
- [
- 67.86231,
- 24.88693
- ],
- [
- 71.48986,
- 24.88693
- ],
- [
- 71.48986,
- 22.36265
- ],
- [
- 67.9684,
- 22.36265
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "IN",
- "description": "Land/water distinction difficult to properly map based on Bing/Mapbox images (false color IR)",
- "end_date": "2015",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81510432015030LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Rann of Kutch",
- "start_date": "2015",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81510432015030LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.88867,
- 45.67548
- ],
- [
- 140.71289,
- 45.41388
- ],
- [
- 141.04248,
- 43.80282
- ],
- [
- 139.96582,
- 43.35714
- ],
- [
- 138.99902,
- 42.01665
- ],
- [
- 139.04297,
- 41.26129
- ],
- [
- 137.5708,
- 38.58253
- ],
- [
- 132.69287,
- 36.86204
- ],
- [
- 130.84717,
- 34.93999
- ],
- [
- 129.74854,
- 34.994
- ],
- [
- 129.02344,
- 34.56086
- ],
- [
- 128.36426,
- 33.21112
- ],
- [
- 127.90283,
- 31.87756
- ],
- [
- 128.4082,
- 29.89781
- ],
- [
- 125.8374,
- 26.78485
- ],
- [
- 123.33252,
- 25.0657
- ],
- [
- 122.58545,
- 24.42715
- ],
- [
- 123.53027,
- 23.44309
- ],
- [
- 125.88135,
- 24.10665
- ],
- [
- 129.96826,
- 26.31311
- ],
- [
- 132.1875,
- 30.20211
- ],
- [
- 134.42871,
- 32.43561
- ],
- [
- 136.82373,
- 33.28462
- ],
- [
- 137.85645,
- 34.21634
- ],
- [
- 138.64746,
- 33.24788
- ],
- [
- 138.58154,
- 32.00808
- ],
- [
- 139.6582,
- 28.67131
- ],
- [
- 141.65771,
- 29.66896
- ],
- [
- 142.0752,
- 32.06396
- ],
- [
- 141.21826,
- 33.37641
- ],
- [
- 141.56982,
- 35.44277
- ],
- [
- 141.43799,
- 36.52729
- ],
- [
- 142.82227,
- 39.16414
- ],
- [
- 143.04199,
- 40.89691
- ],
- [
- 145.92041,
- 42.40723
- ],
- [
- 146.18408,
- 43.03678
- ],
- [
- 145.74463,
- 43.54855
- ],
- [
- 145.32715,
- 43.67582
- ],
- [
- 145.30518,
- 43.91372
- ],
- [
- 145.61279,
- 44.2452
- ],
- [
- 145.41504,
- 44.62175
- ],
- [
- 144.38232,
- 44.52784
- ],
- [
- 142.31689,
- 45.53714
- ],
- [
- 141.3501,
- 45.70618
- ],
- [
- 140.88867,
- 45.67548
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "GSI KIBAN 2500",
- "url": "https://aginfo.cgk.affrc.go.jp/mapprv/tou.html.ja"
- },
- "country_code": "JP",
- "description": "GSI Kiban 2500 via aginfo.cgk.affrc.go.jp. Good for tracing, but a bit older.",
- "i18n": true,
- "id": "finds.jp_KBN_2500",
- "license_url": "https://wiki.openstreetmap.org/wiki/GSI_KIBAN",
- "max_zoom": 20,
- "min_zoom": 15,
- "name": "Japan GSI KIBAN 2500",
- "type": "tms",
- "url": "https://aginfo.cgk.affrc.go.jp/ws/tmc/1.0.0/KBN2500FN-900913-L/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 141.85547,
- 44.64912
- ],
- [
- 140.22949,
- 43.9691
- ],
- [
- 138.95508,
- 41.80408
- ],
- [
- 139.48242,
- 40.17887
- ],
- [
- 138.86719,
- 38.30718
- ],
- [
- 136.31836,
- 37.19533
- ],
- [
- 132.14355,
- 35.13788
- ],
- [
- 128.93555,
- 33.35806
- ],
- [
- 129.50684,
- 32.4727
- ],
- [
- 129.77051,
- 31.69078
- ],
- [
- 130.20996,
- 30.90223
- ],
- [
- 131.2207,
- 30.78904
- ],
- [
- 131.66016,
- 32.32428
- ],
- [
- 132.71484,
- 32.87959
- ],
- [
- 133.76953,
- 33.17434
- ],
- [
- 136.75781,
- 33.87042
- ],
- [
- 139.30664,
- 35.06597
- ],
- [
- 140.88867,
- 35.17381
- ],
- [
- 141.15234,
- 36.5626
- ],
- [
- 142.11914,
- 39.94344
- ],
- [
- 141.76758,
- 42.68243
- ],
- [
- 141.85547,
- 44.64912
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "GSI Japan",
- "url": "https://maps.gsi.go.jp/help/use.html"
- },
- "country_code": "JP",
- "description": "Japan GSI Standard Map. Widely covered.",
- "i18n": true,
- "id": "gsi.go.jp_std_map",
- "license_url": "https://wiki.openstreetmap.org/wiki/GSImaps",
- "max_zoom": 18,
- "min_zoom": 5,
- "name": "Japan GSI Standard Map",
- "type": "tms",
- "url": "https://cyberjapandata.gsi.go.jp/xyz/std/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.88867,
- 45.67548
- ],
- [
- 140.71289,
- 45.41388
- ],
- [
- 141.04248,
- 43.80282
- ],
- [
- 139.96582,
- 43.35714
- ],
- [
- 138.99902,
- 42.01665
- ],
- [
- 139.04297,
- 41.26129
- ],
- [
- 137.5708,
- 38.58253
- ],
- [
- 132.69287,
- 36.86204
- ],
- [
- 130.84717,
- 34.93999
- ],
- [
- 129.74854,
- 34.994
- ],
- [
- 129.02344,
- 34.56086
- ],
- [
- 128.36426,
- 33.21112
- ],
- [
- 127.90283,
- 31.87756
- ],
- [
- 128.4082,
- 29.89781
- ],
- [
- 125.8374,
- 26.78485
- ],
- [
- 123.33252,
- 25.0657
- ],
- [
- 122.58545,
- 24.42715
- ],
- [
- 123.53027,
- 23.44309
- ],
- [
- 125.88135,
- 24.10665
- ],
- [
- 129.96826,
- 26.31311
- ],
- [
- 132.1875,
- 30.20211
- ],
- [
- 134.42871,
- 32.43561
- ],
- [
- 136.82373,
- 33.28462
- ],
- [
- 137.85645,
- 34.21634
- ],
- [
- 138.64746,
- 33.24788
- ],
- [
- 138.58154,
- 32.00808
- ],
- [
- 139.6582,
- 28.67131
- ],
- [
- 141.65771,
- 29.66896
- ],
- [
- 142.0752,
- 32.06396
- ],
- [
- 141.21826,
- 33.37641
- ],
- [
- 141.56982,
- 35.44277
- ],
- [
- 141.43799,
- 36.52729
- ],
- [
- 142.82227,
- 39.16414
- ],
- [
- 143.04199,
- 40.89691
- ],
- [
- 145.92041,
- 42.40723
- ],
- [
- 146.18408,
- 43.03678
- ],
- [
- 145.74463,
- 43.54855
- ],
- [
- 145.32715,
- 43.67582
- ],
- [
- 145.30518,
- 43.91372
- ],
- [
- 145.61279,
- 44.2452
- ],
- [
- 145.41504,
- 44.62175
- ],
- [
- 144.38232,
- 44.52784
- ],
- [
- 142.31689,
- 45.53714
- ],
- [
- 141.3501,
- 45.70618
- ],
- [
- 140.88867,
- 45.67548
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "GSI Japan",
- "url": "https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html"
- },
- "country_code": "JP",
- "description": "Japan GSI airphoto Imagery. Not fully orthorectified, but a bit newer and/or differently covered than GSI ortho Imagery.",
- "i18n": true,
- "id": "gsi.go.jp_airphoto",
- "license_url": "https://maps.gsi.go.jp/development/ichiran.html#airphoto",
- "max_zoom": 18,
- "min_zoom": 14,
- "name": "Japan GSI airphoto Imagery",
- "type": "tms",
- "url": "https://cyberjapandata.gsi.go.jp/xyz/airphoto/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.88867,
- 45.67548
- ],
- [
- 140.71289,
- 45.41388
- ],
- [
- 141.04248,
- 43.80282
- ],
- [
- 139.96582,
- 43.35714
- ],
- [
- 138.99902,
- 42.01665
- ],
- [
- 139.04297,
- 41.26129
- ],
- [
- 137.5708,
- 38.58253
- ],
- [
- 132.69287,
- 36.86204
- ],
- [
- 130.84717,
- 34.93999
- ],
- [
- 129.74854,
- 34.994
- ],
- [
- 129.02344,
- 34.56086
- ],
- [
- 128.36426,
- 33.21112
- ],
- [
- 127.90283,
- 31.87756
- ],
- [
- 128.4082,
- 29.89781
- ],
- [
- 125.8374,
- 26.78485
- ],
- [
- 123.33252,
- 25.0657
- ],
- [
- 122.58545,
- 24.42715
- ],
- [
- 123.53027,
- 23.44309
- ],
- [
- 125.88135,
- 24.10665
- ],
- [
- 129.96826,
- 26.31311
- ],
- [
- 132.1875,
- 30.20211
- ],
- [
- 134.42871,
- 32.43561
- ],
- [
- 136.82373,
- 33.28462
- ],
- [
- 137.85645,
- 34.21634
- ],
- [
- 138.64746,
- 33.24788
- ],
- [
- 138.58154,
- 32.00808
- ],
- [
- 139.6582,
- 28.67131
- ],
- [
- 141.65771,
- 29.66896
- ],
- [
- 142.0752,
- 32.06396
- ],
- [
- 141.21826,
- 33.37641
- ],
- [
- 141.56982,
- 35.44277
- ],
- [
- 141.43799,
- 36.52729
- ],
- [
- 142.82227,
- 39.16414
- ],
- [
- 143.04199,
- 40.89691
- ],
- [
- 145.92041,
- 42.40723
- ],
- [
- 146.18408,
- 43.03678
- ],
- [
- 145.74463,
- 43.54855
- ],
- [
- 145.32715,
- 43.67582
- ],
- [
- 145.30518,
- 43.91372
- ],
- [
- 145.61279,
- 44.2452
- ],
- [
- 145.41504,
- 44.62175
- ],
- [
- 144.38232,
- 44.52784
- ],
- [
- 142.31689,
- 45.53714
- ],
- [
- 141.3501,
- 45.70618
- ],
- [
- 140.88867,
- 45.67548
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "GSI Japan seamless photo",
- "url": "https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html"
- },
- "country_code": "JP",
- "description": "Japan GSI seamlessphoto Imagery. The collection of latest imageries of GSI ortho, airphoto, post disaster and others.",
- "i18n": true,
- "id": "gsi.go.jp_seamlessphoto",
- "license_url": "https://maps.gsi.go.jp/development/ichiran.html#seamlessphoto",
- "max_zoom": 18,
- "min_zoom": 14,
- "name": "Japan GSI seamlessphoto Imagery",
- "type": "tms",
- "url": "https://cyberjapandata.gsi.go.jp/xyz/seamlessphoto/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 58.049,
- 43.2623
- ],
- [
- 58.049,
- 46.7334
- ],
- [
- 58.096,
- 46.8645
- ],
- [
- 61.5524,
- 46.8629
- ],
- [
- 61.5524,
- 46.3896
- ],
- [
- 61.4685,
- 45.3544
- ],
- [
- 60.6267,
- 43.2623
- ],
- [
- 58.049,
- 43.2623
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "KZ",
- "description": "Water and wetland extents, dams etc. (true color)",
- "end_date": "2016-09-09",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-aral1",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Aral Sea (low water level)",
- "start_date": "2016-09-09",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=aral1&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 58.049,
- 43.2623
- ],
- [
- 58.049,
- 46.7189
- ],
- [
- 58.1014,
- 46.8645
- ],
- [
- 61.5524,
- 46.8629
- ],
- [
- 61.5524,
- 46.3896
- ],
- [
- 61.4675,
- 45.3416
- ],
- [
- 60.6317,
- 43.2623
- ],
- [
- 58.049,
- 43.2623
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "KZ",
- "description": "Water and wetland extents, dams etc. - some remaining winter ice in the north (true color)",
- "end_date": "2016-03-03",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-aral2",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Aral Sea (high water level)",
- "start_date": "2016-03-03",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=aral2&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 51.0243,
- 45.0729
- ],
- [
- 51.0243,
- 46.569
- ],
- [
- 52.4259,
- 46.5687
- ],
- [
- 53.6471,
- 46.3177
- ],
- [
- 53.6474,
- 45.0729
- ],
- [
- 51.0243,
- 45.0729
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "KZ",
- "description": "Coastal contruction and Kashagan oil field in Kazakhstan in May 2018 (true color)",
- "end_date": "2018-05-16",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-caspian_2018",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Northeast Caspian Sea 2018",
- "start_date": "2018-05-16",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=caspian_2018&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 79.01779,
- 8.82757
- ],
- [
- 79.01402,
- 9.64678
- ],
- [
- 80.17642,
- 9.65042
- ],
- [
- 80.17728,
- 8.8313
- ],
- [
- 79.01779,
- 8.82757
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "LK",
- "description": "Supplementing incomplete coverage in other sources (true color)",
- "end_date": "2016-03-27",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R119_N09_20160327T050917",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Adams Bridge",
- "start_date": "2016-03-27",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R119_N09_20160327T050917&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 121.11444,
- 14.5407
- ],
- [
- 121.11236,
- 14.54131
- ],
- [
- 121.10965,
- 14.54186
- ],
- [
- 121.10884,
- 14.54093
- ],
- [
- 121.10824,
- 14.53808
- ],
- [
- 121.10841,
- 14.53675
- ],
- [
- 121.1079,
- 14.53542
- ],
- [
- 121.10779,
- 14.53295
- ],
- [
- 121.10792,
- 14.5312
- ],
- [
- 121.1089,
- 14.53069
- ],
- [
- 121.11431,
- 14.53035
- ],
- [
- 121.1153,
- 14.53085
- ],
- [
- 121.11541,
- 14.53166
- ],
- [
- 121.11528,
- 14.53388
- ],
- [
- 121.1145,
- 14.53395
- ],
- [
- 121.1138,
- 14.53366
- ],
- [
- 121.1135,
- 14.5343
- ],
- [
- 121.11435,
- 14.53631
- ],
- [
- 121.11457,
- 14.53796
- ],
- [
- 121.11472,
- 14.53901
- ],
- [
- 121.11459,
- 14.53985
- ],
- [
- 121.11444,
- 14.5407
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "best": true,
- "country_code": "PH",
- "id": "Arenda_OAM",
- "max_zoom": 22,
- "min_zoom": 16,
- "name": "Lupang Arenda, Taytay Drone Imagery",
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://tiles.openaerialmap.org/5d25d7bf161a790005c03e6e/0/5d25d7bf161a790005c03e6f/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 120.33659,
- 15.98577
- ],
- [
- 120.44599,
- 15.984
- ],
- [
- 120.44613,
- 15.97446
- ],
- [
- 120.47646,
- 15.97459
- ],
- [
- 120.59425,
- 15.94683
- ],
- [
- 120.59806,
- 16.09079
- ],
- [
- 120.59654,
- 16.198
- ],
- [
- 120.36854,
- 16.21853
- ],
- [
- 120.34758,
- 16.04231
- ],
- [
- 120.33659,
- 15.98577
- ]
- ],
- [
- [
- 120.8268,
- 15.3658
- ],
- [
- 121.2684,
- 15.2602
- ],
- [
- 121.2699,
- 14.7025
- ],
- [
- 120.695,
- 14.8423
- ],
- [
- 120.8268,
- 15.3658
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "PH",
- "id": "Pangasinan_Bulacan_HiRes",
- "max_zoom": 19,
- "min_zoom": 12,
- "name": "Pangasinán/Bulacan (Philippines HiRes)",
- "type": "tms",
- "url": "https://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 75.98364,
- 34.97851
- ],
- [
- 73.96164,
- 35.36957
- ],
- [
- 74.44281,
- 37.09391
- ],
- [
- 76.50601,
- 36.70267
- ],
- [
- 75.98364,
- 34.97851
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "PK",
- "description": "Represents approximately minimum snow cover so can be well used for glacier mapping (true color)",
- "end_date": "2013-10-09",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81490352013282LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Western Karakoram",
- "start_date": "2013-10-09",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81490352013282LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 34.49022,
- 31.59487
- ],
- [
- 34.49339,
- 31.59263
- ],
- [
- 34.5678,
- 31.5401
- ],
- [
- 34.5653,
- 31.53226
- ],
- [
- 34.55613,
- 31.52552
- ],
- [
- 34.54729,
- 31.5121
- ],
- [
- 34.53011,
- 31.5066
- ],
- [
- 34.5255,
- 31.50251
- ],
- [
- 34.51369,
- 31.50067
- ],
- [
- 34.505,
- 31.49543
- ],
- [
- 34.4887,
- 31.48263
- ],
- [
- 34.48532,
- 31.48028
- ],
- [
- 34.47962,
- 31.47778
- ],
- [
- 34.47471,
- 31.47207
- ],
- [
- 34.4674,
- 31.46448
- ],
- [
- 34.46576,
- 31.46275
- ],
- [
- 34.45308,
- 31.45139
- ],
- [
- 34.44585,
- 31.4441
- ],
- [
- 34.44216,
- 31.44327
- ],
- [
- 34.43798,
- 31.44112
- ],
- [
- 34.43226,
- 31.43458
- ],
- [
- 34.43164,
- 31.43265
- ],
- [
- 34.4268,
- 31.42804
- ],
- [
- 34.42211,
- 31.42437
- ],
- [
- 34.41326,
- 31.41862
- ],
- [
- 34.41329,
- 31.41758
- ],
- [
- 34.41174,
- 31.41604
- ],
- [
- 34.40918,
- 31.41542
- ],
- [
- 34.4067,
- 31.41295
- ],
- [
- 34.40506,
- 31.41295
- ],
- [
- 34.40197,
- 31.4112
- ],
- [
- 34.40134,
- 31.40986
- ],
- [
- 34.39492,
- 31.40391
- ],
- [
- 34.39351,
- 31.40113
- ],
- [
- 34.38824,
- 31.39599
- ],
- [
- 34.38037,
- 31.38951
- ],
- [
- 34.38074,
- 31.38791
- ],
- [
- 34.37407,
- 31.37915
- ],
- [
- 34.37338,
- 31.37422
- ],
- [
- 34.37159,
- 31.37209
- ],
- [
- 34.37214,
- 31.37093
- ],
- [
- 34.37158,
- 31.36972
- ],
- [
- 34.3704,
- 31.36909
- ],
- [
- 34.36827,
- 31.36992
- ],
- [
- 34.36685,
- 31.36914
- ],
- [
- 34.36497,
- 31.36137
- ],
- [
- 34.37438,
- 31.30609
- ],
- [
- 34.36708,
- 31.29074
- ],
- [
- 34.34339,
- 31.27846
- ],
- [
- 34.33119,
- 31.26149
- ],
- [
- 34.31931,
- 31.25317
- ],
- [
- 34.29093,
- 31.24009
- ],
- [
- 34.26762,
- 31.21894
- ],
- [
- 34.25915,
- 31.22131
- ],
- [
- 34.231,
- 31.26295
- ],
- [
- 34.21113,
- 31.32157
- ],
- [
- 34.2434,
- 31.34554
- ],
- [
- 34.29954,
- 31.39629
- ],
- [
- 34.34172,
- 31.43251
- ],
- [
- 34.36439,
- 31.45715
- ],
- [
- 34.41099,
- 31.50162
- ],
- [
- 34.42619,
- 31.52686
- ],
- [
- 34.44463,
- 31.54193
- ],
- [
- 34.49022,
- 31.59487
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Copyright CNES 2014, Distribution Airbus Defence and Space",
- "url": "https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip"
- },
- "country_code": "PS",
- "end_date": "2014-07-06",
- "id": "gaza_pleiades_20140706_nir",
- "max_zoom": 22,
- "name": "Gaza Strip - Pléiades - 2014/07/06 (NIR)",
- "start_date": "2014-07-06",
- "type": "tms",
- "url": "https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706_nir/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 34.49022,
- 31.59487
- ],
- [
- 34.49339,
- 31.59263
- ],
- [
- 34.5678,
- 31.5401
- ],
- [
- 34.5653,
- 31.53226
- ],
- [
- 34.55613,
- 31.52552
- ],
- [
- 34.54729,
- 31.5121
- ],
- [
- 34.53011,
- 31.5066
- ],
- [
- 34.5255,
- 31.50251
- ],
- [
- 34.51369,
- 31.50067
- ],
- [
- 34.505,
- 31.49543
- ],
- [
- 34.4887,
- 31.48263
- ],
- [
- 34.48532,
- 31.48028
- ],
- [
- 34.47962,
- 31.47778
- ],
- [
- 34.47471,
- 31.47207
- ],
- [
- 34.4674,
- 31.46448
- ],
- [
- 34.46576,
- 31.46275
- ],
- [
- 34.45308,
- 31.45139
- ],
- [
- 34.44585,
- 31.4441
- ],
- [
- 34.44216,
- 31.44327
- ],
- [
- 34.43798,
- 31.44112
- ],
- [
- 34.43226,
- 31.43458
- ],
- [
- 34.43164,
- 31.43265
- ],
- [
- 34.4268,
- 31.42804
- ],
- [
- 34.42211,
- 31.42437
- ],
- [
- 34.41326,
- 31.41862
- ],
- [
- 34.41329,
- 31.41758
- ],
- [
- 34.41174,
- 31.41604
- ],
- [
- 34.40918,
- 31.41542
- ],
- [
- 34.4067,
- 31.41295
- ],
- [
- 34.40506,
- 31.41295
- ],
- [
- 34.40197,
- 31.4112
- ],
- [
- 34.40134,
- 31.40986
- ],
- [
- 34.39492,
- 31.40391
- ],
- [
- 34.39351,
- 31.40113
- ],
- [
- 34.38824,
- 31.39599
- ],
- [
- 34.38037,
- 31.38951
- ],
- [
- 34.38074,
- 31.38791
- ],
- [
- 34.37407,
- 31.37915
- ],
- [
- 34.37338,
- 31.37422
- ],
- [
- 34.37159,
- 31.37209
- ],
- [
- 34.37214,
- 31.37093
- ],
- [
- 34.37158,
- 31.36972
- ],
- [
- 34.3704,
- 31.36909
- ],
- [
- 34.36827,
- 31.36992
- ],
- [
- 34.36685,
- 31.36914
- ],
- [
- 34.36497,
- 31.36137
- ],
- [
- 34.37438,
- 31.30609
- ],
- [
- 34.36708,
- 31.29074
- ],
- [
- 34.34339,
- 31.27846
- ],
- [
- 34.33119,
- 31.26149
- ],
- [
- 34.31931,
- 31.25317
- ],
- [
- 34.29093,
- 31.24009
- ],
- [
- 34.26762,
- 31.21894
- ],
- [
- 34.25915,
- 31.22131
- ],
- [
- 34.231,
- 31.26295
- ],
- [
- 34.21113,
- 31.32157
- ],
- [
- 34.2434,
- 31.34554
- ],
- [
- 34.29954,
- 31.39629
- ],
- [
- 34.34172,
- 31.43251
- ],
- [
- 34.36439,
- 31.45715
- ],
- [
- 34.41099,
- 31.50162
- ],
- [
- 34.42619,
- 31.52686
- ],
- [
- 34.44463,
- 31.54193
- ],
- [
- 34.49022,
- 31.59487
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Copyright CNES 2014, Distribution Airbus Defence and Space",
- "url": "https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip"
- },
- "country_code": "PS",
- "end_date": "2014-07-06",
- "id": "gaza_pleiades_20140706",
- "max_zoom": 22,
- "name": "Gaza Strip - Pléiades - 2014/07/06",
- "start_date": "2014-07-06",
- "type": "tms",
- "url": "https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.27848,
- 70.11174
- ],
- [
- 30.77568,
- 69.82379
- ],
- [
- 30.88567,
- 69.60134
- ],
- [
- 30.07925,
- 69.70996
- ],
- [
- 30.01001,
- 69.47197
- ],
- [
- 28.36758,
- 68.92939
- ],
- [
- 28.68857,
- 68.8165
- ],
- [
- 28.38412,
- 68.5494
- ],
- [
- 28.61946,
- 68.15368
- ],
- [
- 29.29281,
- 68.02793
- ],
- [
- 29.92133,
- 67.63731
- ],
- [
- 28.98188,
- 66.93578
- ],
- [
- 30.06695,
- 65.74475
- ],
- [
- 29.67942,
- 65.66431
- ],
- [
- 29.56488,
- 64.90444
- ],
- [
- 30.49199,
- 64.10354
- ],
- [
- 29.93021,
- 63.72835
- ],
- [
- 31.49568,
- 62.90009
- ],
- [
- 31.11931,
- 62.48988
- ],
- [
- 29.20748,
- 61.31401
- ],
- [
- 27.4862,
- 60.30133
- ],
- [
- 26.39009,
- 59.92985
- ],
- [
- 26.91914,
- 59.57938
- ],
- [
- 27.82954,
- 59.53154
- ],
- [
- 28.12685,
- 59.36757
- ],
- [
- 27.30915,
- 58.80412
- ],
- [
- 27.63487,
- 57.89748
- ],
- [
- 27.26678,
- 57.58119
- ],
- [
- 27.80667,
- 57.26726
- ],
- [
- 27.60984,
- 56.82296
- ],
- [
- 27.84829,
- 56.81343
- ],
- [
- 28.30397,
- 56.00917
- ],
- [
- 29.30575,
- 55.93635
- ],
- [
- 29.49395,
- 55.65306
- ],
- [
- 30.23792,
- 55.81532
- ],
- [
- 30.88151,
- 55.57085
- ],
- [
- 30.71476,
- 54.77384
- ],
- [
- 31.10248,
- 54.61217
- ],
- [
- 31.28732,
- 54.20322
- ],
- [
- 31.80737,
- 54.02874
- ],
- [
- 31.73503,
- 53.7526
- ],
- [
- 32.3069,
- 53.70644
- ],
- [
- 32.6811,
- 53.40566
- ],
- [
- 32.0986,
- 53.12929
- ],
- [
- 31.38296,
- 53.25917
- ],
- [
- 31.20669,
- 53.06964
- ],
- [
- 31.75549,
- 52.06822
- ],
- [
- 32.09497,
- 51.98266
- ],
- [
- 32.44809,
- 52.27175
- ],
- [
- 32.89863,
- 52.19427
- ],
- [
- 33.78861,
- 52.31255
- ],
- [
- 34.35746,
- 51.79404
- ],
- [
- 34.03453,
- 51.68698
- ],
- [
- 34.19268,
- 51.23231
- ],
- [
- 35.07328,
- 51.16195
- ],
- [
- 35.59275,
- 50.31192
- ],
- [
- 36.07715,
- 50.39531
- ],
- [
- 36.64995,
- 50.16646
- ],
- [
- 37.41356,
- 50.38116
- ],
- [
- 38.01555,
- 49.85233
- ],
- [
- 38.28829,
- 50.02419
- ],
- [
- 38.92585,
- 49.74657
- ],
- [
- 39.17134,
- 49.81935
- ],
- [
- 39.79514,
- 49.50784
- ],
- [
- 39.99489,
- 49.54761
- ],
- [
- 40.1341,
- 49.31827
- ],
- [
- 39.62763,
- 49.06151
- ],
- [
- 39.61548,
- 48.58986
- ],
- [
- 39.8875,
- 48.22399
- ],
- [
- 39.71582,
- 47.88397
- ],
- [
- 38.87402,
- 47.9262
- ],
- [
- 38.32055,
- 47.6572
- ],
- [
- 38.23594,
- 46.98468
- ],
- [
- 37.41553,
- 46.76322
- ],
- [
- 36.64303,
- 45.68821
- ],
- [
- 35.78323,
- 45.6953
- ],
- [
- 35.5479,
- 45.57771
- ],
- [
- 35.25239,
- 45.8388
- ],
- [
- 34.95522,
- 45.81513
- ],
- [
- 34.64487,
- 46.03539
- ],
- [
- 33.64373,
- 46.28118
- ],
- [
- 33.50204,
- 46.05619
- ],
- [
- 32.29008,
- 45.63796
- ],
- [
- 32.24215,
- 45.18556
- ],
- [
- 33.1961,
- 44.89718
- ],
- [
- 33.08447,
- 44.45073
- ],
- [
- 33.73338,
- 44.13411
- ],
- [
- 34.25741,
- 44.18416
- ],
- [
- 34.75216,
- 44.53336
- ],
- [
- 35.19419,
- 44.54824
- ],
- [
- 35.63792,
- 44.77878
- ],
- [
- 36.82653,
- 44.86342
- ],
- [
- 37.30884,
- 44.50028
- ],
- [
- 38.58442,
- 44.07787
- ],
- [
- 39.77181,
- 43.19436
- ],
- [
- 40.14963,
- 43.51766
- ],
- [
- 40.65366,
- 43.50114
- ],
- [
- 41.61549,
- 43.17233
- ],
- [
- 42.84302,
- 43.12009
- ],
- [
- 43.93197,
- 42.50111
- ],
- [
- 44.57483,
- 42.69518
- ],
- [
- 44.81052,
- 42.56385
- ],
- [
- 44.92369,
- 42.69655
- ],
- [
- 45.12851,
- 42.6547
- ],
- [
- 45.32356,
- 42.47483
- ],
- [
- 45.70059,
- 42.42948
- ],
- [
- 45.56284,
- 42.25334
- ],
- [
- 45.77294,
- 42.05502
- ],
- [
- 46.72213,
- 41.77576
- ],
- [
- 47.24051,
- 41.28804
- ],
- [
- 47.77601,
- 41.1355
- ],
- [
- 48.86453,
- 41.95753
- ],
- [
- 47.84597,
- 43.11901
- ],
- [
- 48.1644,
- 44.09189
- ],
- [
- 47.8084,
- 44.24603
- ],
- [
- 47.78865,
- 44.65814
- ],
- [
- 47.37386,
- 44.72613
- ],
- [
- 47.64786,
- 45.15848
- ],
- [
- 48.27987,
- 45.40203
- ],
- [
- 48.86567,
- 45.38544
- ],
- [
- 49.93666,
- 46.04634
- ],
- [
- 48.62393,
- 46.65237
- ],
- [
- 49.04755,
- 46.75114
- ],
- [
- 48.23329,
- 47.7388
- ],
- [
- 47.41085,
- 47.8885
- ],
- [
- 47.23594,
- 47.80066
- ],
- [
- 47.15755,
- 48.3071
- ],
- [
- 46.59034,
- 48.46934
- ],
- [
- 47.09872,
- 49.14378
- ],
- [
- 46.85039,
- 49.38503
- ],
- [
- 46.94498,
- 49.81672
- ],
- [
- 47.38377,
- 50.05208
- ],
- [
- 47.36594,
- 50.27447
- ],
- [
- 47.59166,
- 50.40748
- ],
- [
- 48.4479,
- 49.75097
- ],
- [
- 48.76092,
- 49.87291
- ],
- [
- 48.95297,
- 50.02451
- ],
- [
- 48.71294,
- 50.54935
- ],
- [
- 49.45624,
- 50.81043
- ],
- [
- 49.46337,
- 51.05153
- ],
- [
- 50.38884,
- 51.28291
- ],
- [
- 50.62893,
- 51.56545
- ],
- [
- 51.23949,
- 51.62827
- ],
- [
- 51.26264,
- 51.44307
- ],
- [
- 51.63571,
- 51.40443
- ],
- [
- 52.31873,
- 51.68726
- ],
- [
- 52.54097,
- 51.40815
- ],
- [
- 53.53716,
- 51.3739
- ],
- [
- 54.42749,
- 50.80938
- ],
- [
- 54.54151,
- 50.47668
- ],
- [
- 54.78157,
- 50.61327
- ],
- [
- 54.65958,
- 50.97017
- ],
- [
- 55.71887,
- 50.49804
- ],
- [
- 56.51267,
- 51.00062
- ],
- [
- 57.16343,
- 51.04051
- ],
- [
- 57.50648,
- 50.82501
- ],
- [
- 57.79196,
- 50.87955
- ],
- [
- 57.81701,
- 51.06097
- ],
- [
- 58.29841,
- 51.09797
- ],
- [
- 58.63651,
- 50.76234
- ],
- [
- 59.40752,
- 50.5865
- ],
- [
- 59.50366,
- 50.44446
- ],
- [
- 59.83658,
- 50.49067
- ],
- [
- 60.14419,
- 50.78129
- ],
- [
- 60.30811,
- 50.62164
- ],
- [
- 60.82497,
- 50.60673
- ],
- [
- 61.4775,
- 50.76372
- ],
- [
- 61.73371,
- 51.27975
- ],
- [
- 60.9563,
- 51.66168
- ],
- [
- 60.48638,
- 51.69575
- ],
- [
- 60.55461,
- 51.83352
- ],
- [
- 60.19803,
- 51.9389
- ],
- [
- 61.10595,
- 52.3143
- ],
- [
- 60.7726,
- 52.69768
- ],
- [
- 61.16093,
- 52.94651
- ],
- [
- 62.0233,
- 52.89914
- ],
- [
- 62.19602,
- 53.05015
- ],
- [
- 61.70444,
- 53.30797
- ],
- [
- 61.23391,
- 53.34354
- ],
- [
- 61.64179,
- 53.52702
- ],
- [
- 61.11265,
- 53.6706
- ],
- [
- 61.32252,
- 54.02155
- ],
- [
- 61.93821,
- 53.8984
- ],
- [
- 62.3479,
- 53.98152
- ],
- [
- 62.5166,
- 53.86345
- ],
- [
- 62.63738,
- 54.02574
- ],
- [
- 63.23851,
- 54.14052
- ],
- [
- 64.95391,
- 54.36365
- ],
- [
- 65.23567,
- 54.28547
- ],
- [
- 65.27782,
- 54.4981
- ],
- [
- 65.55275,
- 54.58507
- ],
- [
- 68.24901,
- 54.92079
- ],
- [
- 68.30415,
- 55.13647
- ],
- [
- 68.64694,
- 55.15331
- ],
- [
- 68.77505,
- 55.31655
- ],
- [
- 69.02836,
- 55.23811
- ],
- [
- 69.03674,
- 55.37045
- ],
- [
- 70.20063,
- 55.09731
- ],
- [
- 70.76852,
- 55.23043
- ],
- [
- 71.17515,
- 54.64735
- ],
- [
- 71.15395,
- 54.37672
- ],
- [
- 70.94941,
- 54.34494
- ],
- [
- 71.09352,
- 54.08826
- ],
- [
- 71.73271,
- 54.05468
- ],
- [
- 71.79116,
- 54.19184
- ],
- [
- 72.19242,
- 54.0773
- ],
- [
- 72.26859,
- 54.18256
- ],
- [
- 72.51375,
- 53.85759
- ],
- [
- 72.71928,
- 54.07208
- ],
- [
- 72.92642,
- 54.04317
- ],
- [
- 73.39994,
- 53.89362
- ],
- [
- 73.19241,
- 53.55241
- ],
- [
- 73.44144,
- 53.385
- ],
- [
- 73.93355,
- 53.59363
- ],
- [
- 74.40758,
- 53.40888
- ],
- [
- 74.50614,
- 53.6269
- ],
- [
- 75.07475,
- 53.74859
- ],
- [
- 75.47389,
- 54.04444
- ],
- [
- 76.74415,
- 54.34325
- ],
- [
- 76.69981,
- 54.20269
- ],
- [
- 76.40203,
- 54.19956
- ],
- [
- 76.46503,
- 53.9997
- ],
- [
- 77.87975,
- 53.24298
- ],
- [
- 80.05173,
- 50.69358
- ],
- [
- 80.51988,
- 50.93412
- ],
- [
- 80.70717,
- 51.25352
- ],
- [
- 81.10698,
- 51.13065
- ],
- [
- 81.01967,
- 50.91674
- ],
- [
- 81.35919,
- 50.92006
- ],
- [
- 81.45208,
- 50.70372
- ],
- [
- 82.56112,
- 50.69488
- ],
- [
- 82.78288,
- 50.86773
- ],
- [
- 83.39428,
- 50.95179
- ],
- [
- 83.89711,
- 50.76756
- ],
- [
- 84.31094,
- 50.17701
- ],
- [
- 84.94911,
- 50.02382
- ],
- [
- 85.23928,
- 49.54103
- ],
- [
- 86.21145,
- 49.41643
- ],
- [
- 86.58109,
- 49.66593
- ],
- [
- 87.42123,
- 49.02101
- ],
- [
- 88.00845,
- 49.13609
- ],
- [
- 88.23826,
- 49.42432
- ],
- [
- 89.15498,
- 49.4515
- ],
- [
- 89.75596,
- 49.69343
- ],
- [
- 89.69338,
- 49.88559
- ],
- [
- 92.36371,
- 50.79781
- ],
- [
- 92.63326,
- 50.6551
- ],
- [
- 92.96927,
- 50.74261
- ],
- [
- 93.11647,
- 50.53637
- ],
- [
- 94.23916,
- 50.53319
- ],
- [
- 94.60536,
- 49.98558
- ],
- [
- 95.52948,
- 49.85375
- ],
- [
- 95.85203,
- 49.98876
- ],
- [
- 97.33491,
- 49.70385
- ],
- [
- 97.91491,
- 49.88112
- ],
- [
- 98.35058,
- 50.29995
- ],
- [
- 98.37164,
- 50.52891
- ],
- [
- 97.90421,
- 51.01184
- ],
- [
- 98.08842,
- 51.40432
- ],
- [
- 98.78829,
- 51.82535
- ],
- [
- 98.9223,
- 52.09636
- ],
- [
- 99.85793,
- 51.71593
- ],
- [
- 102.0795,
- 51.31954
- ],
- [
- 102.2659,
- 50.64856
- ],
- [
- 103.2692,
- 50.14192
- ],
- [
- 104.1506,
- 50.09528
- ],
- [
- 105.3358,
- 50.42247
- ],
- [
- 105.9772,
- 50.36646
- ],
- [
- 106.6131,
- 50.2864
- ],
- [
- 107.2216,
- 49.94051
- ],
- [
- 107.8674,
- 49.88297
- ],
- [
- 107.9188,
- 49.62664
- ],
- [
- 108.5228,
- 49.27065
- ],
- [
- 110.8318,
- 49.13151
- ],
- [
- 112.8329,
- 49.46813
- ],
- [
- 114.3339,
- 50.22572
- ],
- [
- 115.5053,
- 49.85507
- ],
- [
- 116.2382,
- 49.97786
- ],
- [
- 117.8774,
- 49.45985
- ],
- [
- 119.321,
- 50.07283
- ],
- [
- 119.3404,
- 50.57032
- ],
- [
- 120.0956,
- 51.59387
- ],
- [
- 120.7452,
- 51.96097
- ],
- [
- 120.7613,
- 52.57697
- ],
- [
- 120.0884,
- 52.63744
- ],
- [
- 120.1049,
- 52.73635
- ],
- [
- 120.8901,
- 53.23289
- ],
- [
- 123.6187,
- 53.48627
- ],
- [
- 124.8532,
- 53.05015
- ],
- [
- 125.1487,
- 53.15071
- ],
- [
- 125.5857,
- 53.02373
- ],
- [
- 126.4815,
- 52.10319
- ],
- [
- 126.8733,
- 51.03162
- ],
- [
- 127.2297,
- 50.71578
- ],
- [
- 127.2872,
- 50.30199
- ],
- [
- 127.5453,
- 50.18689
- ],
- [
- 127.5004,
- 49.77009
- ],
- [
- 127.8411,
- 49.52235
- ],
- [
- 128.5465,
- 49.54902
- ],
- [
- 129.0795,
- 49.30177
- ],
- [
- 129.4759,
- 49.37681
- ],
- [
- 130.1979,
- 48.82225
- ],
- [
- 130.5595,
- 48.8049
- ],
- [
- 130.4748,
- 48.59328
- ],
- [
- 130.7561,
- 48.30394
- ],
- [
- 130.6074,
- 48.07632
- ],
- [
- 130.9676,
- 47.65113
- ],
- [
- 132.568,
- 47.66682
- ],
- [
- 133.0785,
- 48.05274
- ],
- [
- 134.6858,
- 48.35052
- ],
- [
- 134.4936,
- 47.98576
- ],
- [
- 134.7102,
- 47.72819
- ],
- [
- 134.1255,
- 47.3412
- ],
- [
- 133.8315,
- 46.29377
- ],
- [
- 133.1504,
- 45.54089
- ],
- [
- 133.0559,
- 45.14931
- ],
- [
- 131.8762,
- 45.39202
- ],
- [
- 131.4421,
- 45.02841
- ],
- [
- 130.9201,
- 44.88378
- ],
- [
- 131.2381,
- 44.08007
- ],
- [
- 131.2402,
- 43.41428
- ],
- [
- 131.0517,
- 42.97433
- ],
- [
- 130.3442,
- 42.73033
- ],
- [
- 130.8987,
- 42.12396
- ],
- [
- 133.2675,
- 39.96882
- ],
- [
- 141.1205,
- 45.96801
- ],
- [
- 146.0519,
- 43.12595
- ],
- [
- 180.0,
- 35.61404
- ],
- [
- 180.0,
- 83.83133
- ],
- [
- 37.2795,
- 83.81215
- ],
- [
- 31.27848,
- 70.11174
- ]
- ],
- [
- [
- -180.0,
- 72.2916
- ],
- [
- -180.0,
- 72.29053
- ],
- [
- -180.0,
- 62.26134
- ],
- [
- -173.832,
- 63.31249
- ],
- [
- -169.0297,
- 65.48511
- ],
- [
- -168.976,
- 65.98378
- ],
- [
- -168.9764,
- 66.01591
- ],
- [
- -175.445,
- 71.5095
- ],
- [
- -180.0,
- 72.2916
- ]
- ],
- [
- [
- 22.7962,
- 54.35926
- ],
- [
- 22.89215,
- 54.81546
- ],
- [
- 22.59123,
- 55.07575
- ],
- [
- 22.07676,
- 55.03107
- ],
- [
- 20.65365,
- 55.3899
- ],
- [
- 20.39793,
- 55.18633
- ],
- [
- 19.72775,
- 55.10661
- ],
- [
- 19.40837,
- 54.61169
- ],
- [
- 19.64733,
- 54.44727
- ],
- [
- 20.63083,
- 54.3604
- ],
- [
- 22.7962,
- 54.35926
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "IRS",
- "url": "http://irs.gis-lab.info"
- },
- "country_code": "RU",
- "id": "ScanEx-IRS",
- "name": "ScanEx IRS",
- "type": "scanex",
- "url": "IRS"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.27848,
- 70.11174
- ],
- [
- 30.77568,
- 69.82379
- ],
- [
- 30.88567,
- 69.60134
- ],
- [
- 30.07925,
- 69.70996
- ],
- [
- 30.01001,
- 69.47197
- ],
- [
- 28.36758,
- 68.92939
- ],
- [
- 28.68857,
- 68.8165
- ],
- [
- 28.38412,
- 68.5494
- ],
- [
- 28.61946,
- 68.15368
- ],
- [
- 29.29281,
- 68.02793
- ],
- [
- 29.92133,
- 67.63731
- ],
- [
- 28.98188,
- 66.93578
- ],
- [
- 30.06695,
- 65.74475
- ],
- [
- 29.67942,
- 65.66431
- ],
- [
- 29.56488,
- 64.90444
- ],
- [
- 30.49199,
- 64.10354
- ],
- [
- 29.93021,
- 63.72835
- ],
- [
- 31.49568,
- 62.90009
- ],
- [
- 31.11931,
- 62.48988
- ],
- [
- 29.20748,
- 61.31401
- ],
- [
- 27.4862,
- 60.30133
- ],
- [
- 26.39009,
- 59.92985
- ],
- [
- 26.91914,
- 59.57938
- ],
- [
- 27.82954,
- 59.53154
- ],
- [
- 28.12685,
- 59.36757
- ],
- [
- 27.30915,
- 58.80412
- ],
- [
- 27.63487,
- 57.89748
- ],
- [
- 27.26678,
- 57.58119
- ],
- [
- 27.80667,
- 57.26726
- ],
- [
- 27.60984,
- 56.82296
- ],
- [
- 27.84829,
- 56.81343
- ],
- [
- 28.30397,
- 56.00917
- ],
- [
- 29.30575,
- 55.93635
- ],
- [
- 29.49395,
- 55.65306
- ],
- [
- 30.23792,
- 55.81532
- ],
- [
- 30.88151,
- 55.57085
- ],
- [
- 30.71476,
- 54.77384
- ],
- [
- 31.10248,
- 54.61217
- ],
- [
- 31.28732,
- 54.20322
- ],
- [
- 31.80737,
- 54.02874
- ],
- [
- 31.73503,
- 53.7526
- ],
- [
- 32.3069,
- 53.70644
- ],
- [
- 32.6811,
- 53.40566
- ],
- [
- 32.0986,
- 53.12929
- ],
- [
- 31.38296,
- 53.25917
- ],
- [
- 31.20669,
- 53.06964
- ],
- [
- 31.75549,
- 52.06822
- ],
- [
- 32.09497,
- 51.98266
- ],
- [
- 32.44809,
- 52.27175
- ],
- [
- 32.89863,
- 52.19427
- ],
- [
- 33.78861,
- 52.31255
- ],
- [
- 34.35746,
- 51.79404
- ],
- [
- 34.03453,
- 51.68698
- ],
- [
- 34.19268,
- 51.23231
- ],
- [
- 35.07328,
- 51.16195
- ],
- [
- 35.59275,
- 50.31192
- ],
- [
- 36.07715,
- 50.39531
- ],
- [
- 36.64995,
- 50.16646
- ],
- [
- 37.41356,
- 50.38116
- ],
- [
- 38.01555,
- 49.85233
- ],
- [
- 38.28829,
- 50.02419
- ],
- [
- 38.92585,
- 49.74657
- ],
- [
- 39.17134,
- 49.81935
- ],
- [
- 39.79514,
- 49.50784
- ],
- [
- 39.99489,
- 49.54761
- ],
- [
- 40.1341,
- 49.31827
- ],
- [
- 39.62763,
- 49.06151
- ],
- [
- 39.61548,
- 48.58986
- ],
- [
- 39.8875,
- 48.22399
- ],
- [
- 39.71582,
- 47.88397
- ],
- [
- 38.87402,
- 47.9262
- ],
- [
- 38.32055,
- 47.6572
- ],
- [
- 38.23594,
- 46.98468
- ],
- [
- 37.41553,
- 46.76322
- ],
- [
- 36.64303,
- 45.68821
- ],
- [
- 35.78323,
- 45.6953
- ],
- [
- 35.5479,
- 45.57771
- ],
- [
- 35.25239,
- 45.8388
- ],
- [
- 34.95522,
- 45.81513
- ],
- [
- 34.64487,
- 46.03539
- ],
- [
- 33.64373,
- 46.28118
- ],
- [
- 33.50204,
- 46.05619
- ],
- [
- 32.29008,
- 45.63796
- ],
- [
- 32.24215,
- 45.18556
- ],
- [
- 33.1961,
- 44.89718
- ],
- [
- 33.08447,
- 44.45073
- ],
- [
- 33.73338,
- 44.13411
- ],
- [
- 34.25741,
- 44.18416
- ],
- [
- 34.75216,
- 44.53336
- ],
- [
- 35.19419,
- 44.54824
- ],
- [
- 35.63792,
- 44.77878
- ],
- [
- 36.82653,
- 44.86342
- ],
- [
- 37.30884,
- 44.50028
- ],
- [
- 38.58442,
- 44.07787
- ],
- [
- 39.77181,
- 43.19436
- ],
- [
- 40.14963,
- 43.51766
- ],
- [
- 40.65366,
- 43.50114
- ],
- [
- 41.61549,
- 43.17233
- ],
- [
- 42.84302,
- 43.12009
- ],
- [
- 43.93197,
- 42.50111
- ],
- [
- 44.57483,
- 42.69518
- ],
- [
- 44.81052,
- 42.56385
- ],
- [
- 44.92369,
- 42.69655
- ],
- [
- 45.12851,
- 42.6547
- ],
- [
- 45.32356,
- 42.47483
- ],
- [
- 45.70059,
- 42.42948
- ],
- [
- 45.56284,
- 42.25334
- ],
- [
- 45.77294,
- 42.05502
- ],
- [
- 46.72213,
- 41.77576
- ],
- [
- 47.24051,
- 41.28804
- ],
- [
- 47.77601,
- 41.1355
- ],
- [
- 48.86453,
- 41.95753
- ],
- [
- 47.84597,
- 43.11901
- ],
- [
- 48.1644,
- 44.09189
- ],
- [
- 47.8084,
- 44.24603
- ],
- [
- 47.78865,
- 44.65814
- ],
- [
- 47.37386,
- 44.72613
- ],
- [
- 47.64786,
- 45.15848
- ],
- [
- 48.27987,
- 45.40203
- ],
- [
- 48.86567,
- 45.38544
- ],
- [
- 49.93666,
- 46.04634
- ],
- [
- 48.62393,
- 46.65237
- ],
- [
- 49.04755,
- 46.75114
- ],
- [
- 48.23329,
- 47.7388
- ],
- [
- 47.41085,
- 47.8885
- ],
- [
- 47.23594,
- 47.80066
- ],
- [
- 47.15755,
- 48.3071
- ],
- [
- 46.59034,
- 48.46934
- ],
- [
- 47.09872,
- 49.14378
- ],
- [
- 46.85039,
- 49.38503
- ],
- [
- 46.94498,
- 49.81672
- ],
- [
- 47.38377,
- 50.05208
- ],
- [
- 47.36594,
- 50.27447
- ],
- [
- 47.59166,
- 50.40748
- ],
- [
- 48.4479,
- 49.75097
- ],
- [
- 48.76092,
- 49.87291
- ],
- [
- 48.95297,
- 50.02451
- ],
- [
- 48.71294,
- 50.54935
- ],
- [
- 49.45624,
- 50.81043
- ],
- [
- 49.46337,
- 51.05153
- ],
- [
- 50.38884,
- 51.28291
- ],
- [
- 50.62893,
- 51.56545
- ],
- [
- 51.23949,
- 51.62827
- ],
- [
- 51.26264,
- 51.44307
- ],
- [
- 51.63571,
- 51.40443
- ],
- [
- 52.31873,
- 51.68726
- ],
- [
- 52.54097,
- 51.40815
- ],
- [
- 53.53716,
- 51.3739
- ],
- [
- 54.42749,
- 50.80938
- ],
- [
- 54.54151,
- 50.47668
- ],
- [
- 54.78157,
- 50.61327
- ],
- [
- 54.65958,
- 50.97017
- ],
- [
- 55.71887,
- 50.49804
- ],
- [
- 56.51267,
- 51.00062
- ],
- [
- 57.16343,
- 51.04051
- ],
- [
- 57.50648,
- 50.82501
- ],
- [
- 57.79196,
- 50.87955
- ],
- [
- 57.81701,
- 51.06097
- ],
- [
- 58.29841,
- 51.09797
- ],
- [
- 58.63651,
- 50.76234
- ],
- [
- 59.40752,
- 50.5865
- ],
- [
- 59.50366,
- 50.44446
- ],
- [
- 59.83658,
- 50.49067
- ],
- [
- 60.14419,
- 50.78129
- ],
- [
- 60.30811,
- 50.62164
- ],
- [
- 60.82497,
- 50.60673
- ],
- [
- 61.4775,
- 50.76372
- ],
- [
- 61.73371,
- 51.27975
- ],
- [
- 60.9563,
- 51.66168
- ],
- [
- 60.48638,
- 51.69575
- ],
- [
- 60.55461,
- 51.83352
- ],
- [
- 60.19803,
- 51.9389
- ],
- [
- 61.10595,
- 52.3143
- ],
- [
- 60.7726,
- 52.69768
- ],
- [
- 61.16093,
- 52.94651
- ],
- [
- 62.0233,
- 52.89914
- ],
- [
- 62.19602,
- 53.05015
- ],
- [
- 61.70444,
- 53.30797
- ],
- [
- 61.23391,
- 53.34354
- ],
- [
- 61.64179,
- 53.52702
- ],
- [
- 61.11265,
- 53.6706
- ],
- [
- 61.32252,
- 54.02155
- ],
- [
- 61.93821,
- 53.8984
- ],
- [
- 62.3479,
- 53.98152
- ],
- [
- 62.5166,
- 53.86345
- ],
- [
- 62.63738,
- 54.02574
- ],
- [
- 63.23851,
- 54.14052
- ],
- [
- 64.95391,
- 54.36365
- ],
- [
- 65.23567,
- 54.28547
- ],
- [
- 65.27782,
- 54.4981
- ],
- [
- 65.55275,
- 54.58507
- ],
- [
- 68.24901,
- 54.92079
- ],
- [
- 68.30415,
- 55.13647
- ],
- [
- 68.64694,
- 55.15331
- ],
- [
- 68.77505,
- 55.31655
- ],
- [
- 69.02836,
- 55.23811
- ],
- [
- 69.03674,
- 55.37045
- ],
- [
- 70.20063,
- 55.09731
- ],
- [
- 70.76852,
- 55.23043
- ],
- [
- 71.17515,
- 54.64735
- ],
- [
- 71.15395,
- 54.37672
- ],
- [
- 70.94941,
- 54.34494
- ],
- [
- 71.09352,
- 54.08826
- ],
- [
- 71.73271,
- 54.05468
- ],
- [
- 71.79116,
- 54.19184
- ],
- [
- 72.19242,
- 54.0773
- ],
- [
- 72.26859,
- 54.18256
- ],
- [
- 72.51375,
- 53.85759
- ],
- [
- 72.71928,
- 54.07208
- ],
- [
- 72.92642,
- 54.04317
- ],
- [
- 73.39994,
- 53.89362
- ],
- [
- 73.19241,
- 53.55241
- ],
- [
- 73.44144,
- 53.385
- ],
- [
- 73.93355,
- 53.59363
- ],
- [
- 74.40758,
- 53.40888
- ],
- [
- 74.50614,
- 53.6269
- ],
- [
- 75.07475,
- 53.74859
- ],
- [
- 75.47389,
- 54.04444
- ],
- [
- 76.74415,
- 54.34325
- ],
- [
- 76.69981,
- 54.20269
- ],
- [
- 76.40203,
- 54.19956
- ],
- [
- 76.46503,
- 53.9997
- ],
- [
- 77.87975,
- 53.24298
- ],
- [
- 80.05173,
- 50.69358
- ],
- [
- 80.51988,
- 50.93412
- ],
- [
- 80.70717,
- 51.25352
- ],
- [
- 81.10698,
- 51.13065
- ],
- [
- 81.01967,
- 50.91674
- ],
- [
- 81.35919,
- 50.92006
- ],
- [
- 81.45208,
- 50.70372
- ],
- [
- 82.56112,
- 50.69488
- ],
- [
- 82.78288,
- 50.86773
- ],
- [
- 83.39428,
- 50.95179
- ],
- [
- 83.89711,
- 50.76756
- ],
- [
- 84.31094,
- 50.17701
- ],
- [
- 84.94911,
- 50.02382
- ],
- [
- 85.23928,
- 49.54103
- ],
- [
- 86.21145,
- 49.41643
- ],
- [
- 86.58109,
- 49.66593
- ],
- [
- 87.42123,
- 49.02101
- ],
- [
- 88.00845,
- 49.13609
- ],
- [
- 88.23826,
- 49.42432
- ],
- [
- 89.15498,
- 49.4515
- ],
- [
- 89.75596,
- 49.69343
- ],
- [
- 89.69338,
- 49.88559
- ],
- [
- 92.36371,
- 50.79781
- ],
- [
- 92.63326,
- 50.6551
- ],
- [
- 92.96927,
- 50.74261
- ],
- [
- 93.11647,
- 50.53637
- ],
- [
- 94.23916,
- 50.53319
- ],
- [
- 94.60536,
- 49.98558
- ],
- [
- 95.52948,
- 49.85375
- ],
- [
- 95.85203,
- 49.98876
- ],
- [
- 97.33491,
- 49.70385
- ],
- [
- 97.91491,
- 49.88112
- ],
- [
- 98.35058,
- 50.29995
- ],
- [
- 98.37164,
- 50.52891
- ],
- [
- 97.90421,
- 51.01184
- ],
- [
- 98.08842,
- 51.40432
- ],
- [
- 98.78829,
- 51.82535
- ],
- [
- 98.9223,
- 52.09636
- ],
- [
- 99.85793,
- 51.71593
- ],
- [
- 102.0795,
- 51.31954
- ],
- [
- 102.2659,
- 50.64856
- ],
- [
- 103.2692,
- 50.14192
- ],
- [
- 104.1506,
- 50.09528
- ],
- [
- 105.3358,
- 50.42247
- ],
- [
- 105.9772,
- 50.36646
- ],
- [
- 106.6131,
- 50.2864
- ],
- [
- 107.2216,
- 49.94051
- ],
- [
- 107.8674,
- 49.88297
- ],
- [
- 107.9188,
- 49.62664
- ],
- [
- 108.5228,
- 49.27065
- ],
- [
- 110.8318,
- 49.13151
- ],
- [
- 112.8329,
- 49.46813
- ],
- [
- 114.3339,
- 50.22572
- ],
- [
- 115.5053,
- 49.85507
- ],
- [
- 116.2382,
- 49.97786
- ],
- [
- 117.8774,
- 49.45985
- ],
- [
- 119.321,
- 50.07283
- ],
- [
- 119.3404,
- 50.57032
- ],
- [
- 120.0956,
- 51.59387
- ],
- [
- 120.7452,
- 51.96097
- ],
- [
- 120.7613,
- 52.57697
- ],
- [
- 120.0884,
- 52.63744
- ],
- [
- 120.1049,
- 52.73635
- ],
- [
- 120.8901,
- 53.23289
- ],
- [
- 123.6187,
- 53.48627
- ],
- [
- 124.8532,
- 53.05015
- ],
- [
- 125.1487,
- 53.15071
- ],
- [
- 125.5857,
- 53.02373
- ],
- [
- 126.4815,
- 52.10319
- ],
- [
- 126.8733,
- 51.03162
- ],
- [
- 127.2297,
- 50.71578
- ],
- [
- 127.2872,
- 50.30199
- ],
- [
- 127.5453,
- 50.18689
- ],
- [
- 127.5004,
- 49.77009
- ],
- [
- 127.8411,
- 49.52235
- ],
- [
- 128.5465,
- 49.54902
- ],
- [
- 129.0795,
- 49.30177
- ],
- [
- 129.4759,
- 49.37681
- ],
- [
- 130.1979,
- 48.82225
- ],
- [
- 130.5595,
- 48.8049
- ],
- [
- 130.4748,
- 48.59328
- ],
- [
- 130.7561,
- 48.30394
- ],
- [
- 130.6074,
- 48.07632
- ],
- [
- 130.9676,
- 47.65113
- ],
- [
- 132.568,
- 47.66682
- ],
- [
- 133.0785,
- 48.05274
- ],
- [
- 134.6858,
- 48.35052
- ],
- [
- 134.4936,
- 47.98576
- ],
- [
- 134.7102,
- 47.72819
- ],
- [
- 134.1255,
- 47.3412
- ],
- [
- 133.8315,
- 46.29377
- ],
- [
- 133.1504,
- 45.54089
- ],
- [
- 133.0559,
- 45.14931
- ],
- [
- 131.8762,
- 45.39202
- ],
- [
- 131.4421,
- 45.02841
- ],
- [
- 130.9201,
- 44.88378
- ],
- [
- 131.2381,
- 44.08007
- ],
- [
- 131.2402,
- 43.41428
- ],
- [
- 131.0517,
- 42.97433
- ],
- [
- 130.3442,
- 42.73033
- ],
- [
- 130.8987,
- 42.12396
- ],
- [
- 133.2675,
- 39.96882
- ],
- [
- 141.1205,
- 45.96801
- ],
- [
- 146.0519,
- 43.12595
- ],
- [
- 180.0,
- 35.61404
- ],
- [
- 180.0,
- 83.83133
- ],
- [
- 37.2795,
- 83.81215
- ],
- [
- 31.27848,
- 70.11174
- ]
- ],
- [
- [
- -180.0,
- 72.2916
- ],
- [
- -180.0,
- 72.29053
- ],
- [
- -180.0,
- 62.26134
- ],
- [
- -173.832,
- 63.31249
- ],
- [
- -169.0297,
- 65.48511
- ],
- [
- -168.976,
- 65.98378
- ],
- [
- -168.9764,
- 66.01591
- ],
- [
- -175.445,
- 71.5095
- ],
- [
- -180.0,
- 72.2916
- ]
- ],
- [
- [
- 22.7962,
- 54.35926
- ],
- [
- 22.89215,
- 54.81546
- ],
- [
- 22.59123,
- 55.07575
- ],
- [
- 22.07676,
- 55.03107
- ],
- [
- 20.65365,
- 55.3899
- ],
- [
- 20.39793,
- 55.18633
- ],
- [
- 19.72775,
- 55.10661
- ],
- [
- 19.40837,
- 54.61169
- ],
- [
- 19.64733,
- 54.44727
- ],
- [
- 20.63083,
- 54.3604
- ],
- [
- 22.7962,
- 54.35926
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "IRS",
- "url": "http://irs.gis-lab.info"
- },
- "country_code": "RU",
- "id": "ScanEx-SPOT",
- "name": "ScanEx SPOT",
- "type": "scanex",
- "url": "SPOT"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 126.36143,
- 51.37553
- ],
- [
- 126.34804,
- 52.33932
- ],
- [
- 128.60762,
- 52.3409
- ],
- [
- 128.61174,
- 51.37553
- ],
- [
- 126.36143,
- 51.37553
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "RU",
- "description": "Recent image showing newest features (true color)",
- "end_date": "2016-06-23",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R089_N52_20160623T024048",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Vostochny Cosmodrome",
- "start_date": "2016-06-23",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20160623T024048&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 103.564,
- 1.189
- ],
- [
- 103.7453,
- 1.12465
- ],
- [
- 104.1284,
- 1.28255
- ],
- [
- 104.08035,
- 1.3457
- ],
- [
- 104.1229,
- 1.49123
- ],
- [
- 103.6615,
- 1.49123
- ],
- [
- 103.564,
- 1.189
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "©OneMap Singapore ODL v1.0",
- "url": "https://www.onemap.sg/legal/opendatalicence.html"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3414"
- ],
- "country_code": "SG",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png",
- "id": "Singapore-Landlot",
- "license_url": "https://www.onemap.sg/legal/opendatalicence.html",
- "name": "Singapore Landlot",
- "type": "wms",
- "url": "https://mapservices.onemap.sg/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=singapore_landlot_wmts&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 103.564,
- 1.189
- ],
- [
- 103.7453,
- 1.12465
- ],
- [
- 104.1284,
- 1.28255
- ],
- [
- 104.08035,
- 1.3457
- ],
- [
- 104.1229,
- 1.49123
- ],
- [
- 103.6615,
- 1.49123
- ],
- [
- 103.564,
- 1.189
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "©OneMap Singapore ODL v1.0",
- "url": "https://www.onemap.sg/legal/opendatalicence.html"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3414"
- ],
- "country_code": "SG",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png",
- "id": "Singapore-OneMap",
- "license_url": "https://www.onemap.sg/legal/opendatalicence.html",
- "name": "Singapore OneMap",
- "type": "wms",
- "url": "https://mapservices.onemap.sg/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=singapore_3414_wms&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 121.2237,
- 25.76997
- ],
- [
- 122.2251,
- 26.60305
- ],
- [
- 122.9312,
- 22.57058
- ],
- [
- 120.6771,
- 20.72799
- ],
- [
- 118.2509,
- 23.26265
- ],
- [
- 118.3036,
- 23.30751
- ],
- [
- 118.1978,
- 24.34453
- ],
- [
- 118.1036,
- 24.36172
- ],
- [
- 118.2283,
- 24.49486
- ],
- [
- 118.4416,
- 24.55302
- ],
- [
- 118.6024,
- 24.46068
- ],
- [
- 120.0474,
- 25.38843
- ],
- [
- 119.8935,
- 25.78169
- ],
- [
- 119.787,
- 26.2048
- ],
- [
- 120.4578,
- 26.53253
- ],
- [
- 121.2237,
- 25.76997
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
- "url": "https://maps.nlsc.gov.tw"
- },
- "country_code": "TW",
- "description": "The emap from Taiwan National Land Surveying and Mapping Center",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png",
- "id": "NLSC-EMAP5",
- "license_url": "https://data.gov.tw/license",
- "max_zoom": 15,
- "name": "NLSC General Map with Contour line",
- "start_date": "2015",
- "type": "tms",
- "url": "https://wmts.nlsc.gov.tw/wmts/EMAP5_OPENDATA/default/EPSG:3857/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 121.2237,
- 25.76997
- ],
- [
- 122.2251,
- 26.60305
- ],
- [
- 122.9312,
- 22.57058
- ],
- [
- 120.6771,
- 20.72799
- ],
- [
- 118.2509,
- 23.26265
- ],
- [
- 118.3036,
- 23.30751
- ],
- [
- 118.1978,
- 24.34453
- ],
- [
- 118.1036,
- 24.36172
- ],
- [
- 118.2283,
- 24.49486
- ],
- [
- 118.4416,
- 24.55302
- ],
- [
- 118.6024,
- 24.46068
- ],
- [
- 120.0474,
- 25.38843
- ],
- [
- 119.8935,
- 25.78169
- ],
- [
- 119.787,
- 26.2048
- ],
- [
- 120.4578,
- 26.53253
- ],
- [
- 121.2237,
- 25.76997
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
- "url": "https://maps.nlsc.gov.tw/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3826",
- "EPSG:3825"
- ],
- "country_code": "TW",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png",
- "id": "TW_NLSC_WMS_LANDSECT",
- "license_url": "https://github.com/osmlab/editor-layer-index/pull/255#issuecomment-266776138",
- "name": "Taiwan Land-Section Data",
- "type": "wms",
- "url": "https://wms.nlsc.gov.tw/wms?VERSION=1.1.1&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=LANDSECT&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 121.2237,
- 25.76997
- ],
- [
- 122.2251,
- 26.60305
- ],
- [
- 122.9312,
- 22.57058
- ],
- [
- 120.6771,
- 20.72799
- ],
- [
- 118.2509,
- 23.26265
- ],
- [
- 118.3036,
- 23.30751
- ],
- [
- 118.1978,
- 24.34453
- ],
- [
- 118.1036,
- 24.36172
- ],
- [
- 118.2283,
- 24.49486
- ],
- [
- 118.4416,
- 24.55302
- ],
- [
- 118.6024,
- 24.46068
- ],
- [
- 120.0474,
- 25.38843
- ],
- [
- 119.8935,
- 25.78169
- ],
- [
- 119.787,
- 26.2048
- ],
- [
- 120.4578,
- 26.53253
- ],
- [
- 121.2237,
- 25.76997
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
- "url": "https://maps.nlsc.gov.tw/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3826",
- "EPSG:3825"
- ],
- "country_code": "TW",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png",
- "id": "TW_NLSC_WMS_Village",
- "license_url": "https://github.com/osmlab/editor-layer-index/pull/255#issuecomment-266776138",
- "name": "Taiwan Village Boundaries",
- "type": "wms",
- "url": "https://wms.nlsc.gov.tw/wms?VERSION=1.1.1&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Village&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 121.2237,
- 25.76997
- ],
- [
- 122.2251,
- 26.60305
- ],
- [
- 122.9312,
- 22.57058
- ],
- [
- 120.6771,
- 20.72799
- ],
- [
- 118.2509,
- 23.26265
- ],
- [
- 118.3036,
- 23.30751
- ],
- [
- 118.1978,
- 24.34453
- ],
- [
- 118.1036,
- 24.36172
- ],
- [
- 118.2283,
- 24.49486
- ],
- [
- 118.4416,
- 24.55302
- ],
- [
- 118.6024,
- 24.46068
- ],
- [
- 120.0474,
- 25.38843
- ],
- [
- 119.8935,
- 25.78169
- ],
- [
- 119.787,
- 26.2048
- ],
- [
- 120.4578,
- 26.53253
- ],
- [
- 121.2237,
- 25.76997
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
- "url": "https://maps.nlsc.gov.tw/"
- },
- "country_code": "TW",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png",
- "id": "TW_NLSC_WMS_EMAP6",
- "license_url": "https://github.com/osmlab/editor-layer-index/pull/255#issuecomment-266776138",
- "max_zoom": 15,
- "name": "Taiwan e-Map Open Data",
- "type": "tms",
- "url": "https://wmts.nlsc.gov.tw/wmts/EMAP6_OPENDATA/default/GoogleMapsCompatible/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 23.64258,
- 50.62507
- ],
- [
- 21.56616,
- 51.21377
- ],
- [
- 14.34815,
- 51.21377
- ],
- [
- 11.83227,
- 50.41202
- ],
- [
- 11.84051,
- 47.80209
- ],
- [
- 10.30243,
- 47.80024
- ],
- [
- 8.60229,
- 47.94211
- ],
- [
- 6.88293,
- 47.58764
- ],
- [
- 5.59753,
- 46.29761
- ],
- [
- 6.86096,
- 44.20387
- ],
- [
- 7.55859,
- 43.56447
- ],
- [
- 9.2395,
- 43.56447
- ],
- [
- 10.18433,
- 42.19597
- ],
- [
- 13.64502,
- 40.40513
- ],
- [
- 21.10474,
- 40.63897
- ],
- [
- 23.64258,
- 41.16211
- ],
- [
- 26.12549,
- 41.16211
- ],
- [
- 28.2019,
- 41.86956
- ],
- [
- 29.94873,
- 45.24395
- ],
- [
- 26.99341,
- 48.35625
- ],
- [
- 23.64258,
- 50.62507
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM",
- "url": "https://www.freemap.sk/?layers=X"
- },
- "country_code": "ZZ",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png",
- "id": "Freemap.sk-Outdoor",
- "max_zoom": 19,
- "min_zoom": 6,
- "name": "Freemap.sk Outdoor",
- "type": "tms",
- "url": "https://outdoor.tiles.freemap.sk/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 27.53173,
- 60.21799
- ],
- [
- 31.35496,
- 62.51233
- ],
- [
- 31.63513,
- 62.90773
- ],
- [
- 30.09154,
- 64.91889
- ],
- [
- 30.21239,
- 65.87473
- ],
- [
- 29.13573,
- 66.90422
- ],
- [
- 30.19041,
- 67.67609
- ],
- [
- 28.70726,
- 68.42748
- ],
- [
- 29.02587,
- 68.9505
- ],
- [
- 31.04735,
- 69.53452
- ],
- [
- 31.78344,
- 70.44784
- ],
- [
- 28.32274,
- 71.32192
- ],
- [
- 23.76342,
- 71.29023
- ],
- [
- 17.1826,
- 69.99806
- ],
- [
- 12.10691,
- 68.01581
- ],
- [
- 9.97556,
- 64.85828
- ],
- [
- 4.13084,
- 61.95963
- ],
- [
- 4.57029,
- 59.00664
- ],
- [
- 6.21826,
- 57.95859
- ],
- [
- 8.14086,
- 57.8506
- ],
- [
- 10.41502,
- 58.75682
- ],
- [
- 12.63702,
- 56.0383
- ],
- [
- 12.7716,
- 55.25095
- ],
- [
- 14.2932,
- 55.19769
- ],
- [
- 18.58886,
- 56.84297
- ],
- [
- 20.69823,
- 59.3444
- ],
- [
- 27.53173,
- 60.21799
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kelkkareitit.fi",
- "url": "https://kelkkareitit.fi/"
- },
- "country_code": "XN",
- "description": "Kelkkareitit.fi snowmobile trails from OSM (Nordic coverage)",
- "i18n": true,
- "icon": "https://kelkkareitit.fi/img/favicon.png",
- "id": "kelkkareitit",
- "max_zoom": 18,
- "min_zoom": 3,
- "name": "Nordic snowmobile overlay",
- "overlay": true,
- "type": "tms",
- "url": "https://tiles.kelkkareitit.fi/kelkkareitit/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 46.63155,
- 67.66223
- ],
- [
- 45.04952,
- 68.32091
- ],
- [
- 45.66475,
- 67.07035
- ],
- [
- 44.47823,
- 65.58881
- ],
- [
- 42.4128,
- 66.12799
- ],
- [
- 41.09444,
- 65.47961
- ],
- [
- 38.1501,
- 63.61054
- ],
- [
- 36.21651,
- 63.66908
- ],
- [
- 33.93135,
- 64.5894
- ],
- [
- 33.71163,
- 65.94952
- ],
- [
- 32.1296,
- 66.79486
- ],
- [
- 31.90987,
- 67.37658
- ],
- [
- 34.81026,
- 66.77754
- ],
- [
- 38.85323,
- 66.26987
- ],
- [
- 40.78682,
- 66.88128
- ],
- [
- 40.43526,
- 67.57857
- ],
- [
- 35.20577,
- 69.00836
- ],
- [
- 30.15206,
- 69.53714
- ],
- [
- 27.51534,
- 70.18764
- ],
- [
- 23.56026,
- 69.76635
- ],
- [
- 20.83565,
- 69.33648
- ],
- [
- 18.81417,
- 68.80275
- ],
- [
- 14.7712,
- 66.62109
- ],
- [
- 12.39815,
- 64.03702
- ],
- [
- 10.9919,
- 63.07826
- ],
- [
- 7.60811,
- 62.169
- ],
- [
- 7.95967,
- 61.18923
- ],
- [
- 6.64131,
- 58.84036
- ],
- [
- 7.87178,
- 58.5435
- ],
- [
- 10.72823,
- 60.30889
- ],
- [
- 13.27706,
- 56.75683
- ],
- [
- 13.27706,
- 55.60741
- ],
- [
- 14.41963,
- 56.44234
- ],
- [
- 15.56221,
- 56.66034
- ],
- [
- 15.91378,
- 58.9312
- ],
- [
- 18.37471,
- 59.87064
- ],
- [
- 16.66085,
- 60.80572
- ],
- [
- 16.79268,
- 62.59679
- ],
- [
- 19.16573,
- 63.78579
- ],
- [
- 20.44014,
- 64.05625
- ],
- [
- 20.96749,
- 64.49495
- ],
- [
- 20.35225,
- 64.94533
- ],
- [
- 22.28585,
- 66.21676
- ],
- [
- 25.88936,
- 65.66136
- ],
- [
- 25.84542,
- 64.75858
- ],
- [
- 24.92256,
- 64.5894
- ],
- [
- 21.71456,
- 62.85856
- ],
- [
- 21.7585,
- 60.91271
- ],
- [
- 23.64815,
- 60.19988
- ],
- [
- 28.57003,
- 60.97674
- ],
- [
- 30.6794,
- 62.08682
- ],
- [
- 34.50264,
- 63.09815
- ],
- [
- 36.17256,
- 62.53605
- ],
- [
- 36.96358,
- 61.23156
- ],
- [
- 31.11885,
- 59.62711
- ],
- [
- 24.35128,
- 59.08958
- ],
- [
- 24.52706,
- 56.92508
- ],
- [
- 23.60421,
- 56.66034
- ],
- [
- 22.32979,
- 57.49624
- ],
- [
- 21.89034,
- 55.05749
- ],
- [
- 19.38546,
- 54.03798
- ],
- [
- 17.56911,
- 54.65691
- ],
- [
- 14.02413,
- 53.38779
- ],
- [
- 12.73512,
- 54.19675
- ],
- [
- 11.21163,
- 53.79209
- ],
- [
- 10.28517,
- 54.19675
- ],
- [
- 9.27443,
- 54.75213
- ],
- [
- 9.39528,
- 55.59441
- ],
- [
- 9.94185,
- 56.51458
- ],
- [
- 8.40376,
- 56.38403
- ],
- [
- 8.89351,
- 54.87459
- ],
- [
- 9.86769,
- 53.56862
- ],
- [
- 9.02535,
- 52.973
- ],
- [
- 6.70723,
- 53.18419
- ],
- [
- 4.35616,
- 51.10132
- ],
- [
- -0.08232,
- 49.21531
- ],
- [
- -1.42265,
- 48.46332
- ],
- [
- -3.44413,
- 48.37582
- ],
- [
- -0.87333,
- 46.32175
- ],
- [
- -0.65361,
- 45.34196
- ],
- [
- -1.33476,
- 43.23465
- ],
- [
- -2.80693,
- 43.12249
- ],
- [
- -7.70683,
- 43.41049
- ],
- [
- -8.6956,
- 43.13852
- ],
- [
- -8.36601,
- 42.31535
- ],
- [
- -8.95927,
- 39.0506
- ],
- [
- -8.4539,
- 38.43364
- ],
- [
- -8.56376,
- 37.39357
- ],
- [
- -6.74003,
- 37.55051
- ],
- [
- -5.61943,
- 36.39194
- ],
- [
- -4.23515,
- 36.99098
- ],
- [
- -2.36747,
- 36.99098
- ],
- [
- -0.30204,
- 38.8113
- ],
- [
- -0.67558,
- 39.62838
- ],
- [
- 0.7087,
- 41.28343
- ],
- [
- 2.92794,
- 41.98956
- ],
- [
- 2.77413,
- 43.18661
- ],
- [
- 3.98262,
- 43.79236
- ],
- [
- 6.11397,
- 43.25066
- ],
- [
- 8.64083,
- 44.67398
- ],
- [
- 10.39864,
- 44.18757
- ],
- [
- 10.83809,
- 43.13852
- ],
- [
- 13.10128,
- 41.49773
- ],
- [
- 13.67256,
- 41.61283
- ],
- [
- 16.00167,
- 40.06699
- ],
- [
- 16.3752,
- 39.15291
- ],
- [
- 16.33126,
- 40.10061
- ],
- [
- 16.90255,
- 40.71963
- ],
- [
- 17.89131,
- 40.43592
- ],
- [
- 15.86983,
- 41.39891
- ],
- [
- 15.60616,
- 41.77689
- ],
- [
- 14.46358,
- 42.05485
- ],
- [
- 13.62862,
- 42.76864
- ],
- [
- 13.34297,
- 43.4424
- ],
- [
- 11.9587,
- 44.25056
- ],
- [
- 11.98067,
- 45.52699
- ],
- [
- 13.47481,
- 45.89522
- ],
- [
- 15.07881,
- 45.2028
- ],
- [
- 16.28731,
- 43.87162
- ],
- [
- 19.89083,
- 42.03853
- ],
- [
- 19.71505,
- 40.48608
- ],
- [
- 20.81368,
- 39.425
- ],
- [
- 21.40694,
- 38.5712
- ],
- [
- 22.82418,
- 38.55402
- ],
- [
- 22.34078,
- 38.93105
- ],
- [
- 22.64839,
- 39.69604
- ],
- [
- 22.26387,
- 40.64465
- ],
- [
- 25.0544,
- 41.10983
- ],
- [
- 27.04293,
- 40.76125
- ],
- [
- 27.8669,
- 41.46481
- ],
- [
- 27.31758,
- 42.51002
- ],
- [
- 27.46041,
- 43.39452
- ],
- [
- 29.20723,
- 45.00118
- ],
- [
- 30.58052,
- 46.70734
- ],
- [
- 32.07466,
- 47.06774
- ],
- [
- 33.12935,
- 46.30658
- ],
- [
- 34.78829,
- 46.40515
- ],
- [
- 38.22701,
- 47.40342
- ],
- [
- 39.44649,
- 47.35134
- ],
- [
- 39.44649,
- 46.88784
- ],
- [
- 38.34786,
- 46.48842
- ],
- [
- 38.76534,
- 46.02505
- ],
- [
- 37.46895,
- 45.10983
- ],
- [
- 40.61104,
- 43.55397
- ],
- [
- 41.84151,
- 42.66371
- ],
- [
- 41.91841,
- 41.57174
- ],
- [
- 40.11666,
- 40.70297
- ],
- [
- 38.20504,
- 40.80284
- ],
- [
- 36.0627,
- 41.24214
- ],
- [
- 34.7773,
- 41.83422
- ],
- [
- 33.07442,
- 41.80147
- ],
- [
- 31.03096,
- 40.92747
- ],
- [
- 29.35005,
- 41.06843
- ],
- [
- 30.15206,
- 40.75293
- ],
- [
- 29.04244,
- 40.26847
- ],
- [
- 26.8232,
- 40.26847
- ],
- [
- 26.28487,
- 39.56912
- ],
- [
- 27.10884,
- 39.75519
- ],
- [
- 27.21871,
- 38.77705
- ],
- [
- 27.50435,
- 37.57664
- ],
- [
- 28.33931,
- 37.16628
- ],
- [
- 29.66866,
- 36.46266
- ],
- [
- 30.6025,
- 36.94709
- ],
- [
- 31.78902,
- 36.82407
- ],
- [
- 32.66793,
- 36.25917
- ],
- [
- 33.85445,
- 36.48033
- ],
- [
- 34.90914,
- 37.00853
- ],
- [
- 36.3044,
- 37.0173
- ],
- [
- 36.24947,
- 36.47149
- ],
- [
- 36.00777,
- 36.26803
- ],
- [
- 35.96382,
- 35.59194
- ],
- [
- 32.72286,
- 34.39496
- ],
- [
- 30.34981,
- 36.17053
- ],
- [
- 28.41622,
- 36.06403
- ],
- [
- 25.69161,
- 34.52178
- ],
- [
- 23.67012,
- 34.64841
- ],
- [
- 20.00069,
- 38.14908
- ],
- [
- 19.06685,
- 40.41083
- ],
- [
- 19.29756,
- 41.78509
- ],
- [
- 15.59517,
- 42.98602
- ],
- [
- 12.95845,
- 45.41142
- ],
- [
- 12.63985,
- 45.25696
- ],
- [
- 12.6838,
- 44.40774
- ],
- [
- 14.00215,
- 43.64149
- ],
- [
- 15.07881,
- 42.16081
- ],
- [
- 16.2983,
- 42.52622
- ],
- [
- 16.32027,
- 41.79328
- ],
- [
- 18.60543,
- 40.53619
- ],
- [
- 18.61641,
- 39.68759
- ],
- [
- 14.61739,
- 35.52938
- ],
- [
- 12.4421,
- 35.26967
- ],
- [
- 11.56319,
- 36.97343
- ],
- [
- 11.89278,
- 38.42503
- ],
- [
- 13.21114,
- 38.9396
- ],
- [
- 15.63912,
- 39.32309
- ],
- [
- 9.79439,
- 42.22593
- ],
- [
- 10.0251,
- 38.69135
- ],
- [
- 7.56417,
- 38.8113
- ],
- [
- 7.89376,
- 42.46141
- ],
- [
- 9.71749,
- 43.65739
- ],
- [
- 8.78365,
- 44.18757
- ],
- [
- 6.37764,
- 42.77671
- ],
- [
- 4.04854,
- 43.25866
- ],
- [
- 3.36739,
- 41.43187
- ],
- [
- 4.85054,
- 39.72985
- ],
- [
- -0.54374,
- 37.4808
- ],
- [
- -2.11479,
- 36.49799
- ],
- [
- -5.68535,
- 35.82388
- ],
- [
- -9.45366,
- 36.80648
- ],
- [
- -16.52885,
- 31.89324
- ],
- [
- -18.08891,
- 32.85819
- ],
- [
- -10.31059,
- 36.91197
- ],
- [
- -25.20805,
- 36.43615
- ],
- [
- -29.95414,
- 39.29759
- ],
- [
- -9.47563,
- 37.03485
- ],
- [
- -10.04692,
- 39.54371
- ],
- [
- -9.38774,
- 43.26666
- ],
- [
- -8.06938,
- 44.0061
- ],
- [
- -1.96098,
- 43.66534
- ],
- [
- -1.73027,
- 45.96399
- ],
- [
- -5.27885,
- 48.09042
- ],
- [
- -5.65239,
- 48.81903
- ],
- [
- -1.82914,
- 50.20279
- ],
- [
- -6.83891,
- 49.62268
- ],
- [
- -6.06987,
- 51.90145
- ],
- [
- -10.15678,
- 51.12202
- ],
- [
- -10.96977,
- 51.96919
- ],
- [
- -10.53032,
- 54.48077
- ],
- [
- -7.82768,
- 55.88567
- ],
- [
- -8.97026,
- 57.93632
- ],
- [
- -7.74099,
- 62.30725
- ],
- [
- -25.09819,
- 63.56656
- ],
- [
- -24.44725,
- 67.1899
- ],
- [
- -14.13383,
- 66.92869
- ],
- [
- -9.78325,
- 71.08717
- ],
- [
- -6.9268,
- 71.63489
- ],
- [
- -13.14506,
- 67.08319
- ],
- [
- -12.61772,
- 63.17261
- ],
- [
- -5.16899,
- 62.60184
- ],
- [
- -8.02543,
- 58.37684
- ],
- [
- -0.04936,
- 61.28967
- ],
- [
- -0.99418,
- 59.61044
- ],
- [
- -2.48832,
- 58.13407
- ],
- [
- -0.88432,
- 57.64353
- ],
- [
- -1.5435,
- 56.21698
- ],
- [
- 1.0273,
- 53.42054
- ],
- [
- 2.58736,
- 52.69424
- ],
- [
- 2.6313,
- 51.72486
- ],
- [
- 4.41109,
- 53.70764
- ],
- [
- 7.42134,
- 54.18611
- ],
- [
- 7.50923,
- 56.96703
- ],
- [
- 10.71724,
- 58.26145
- ],
- [
- 10.36568,
- 58.81193
- ],
- [
- 7.31148,
- 57.49033
- ],
- [
- 4.96041,
- 58.36532
- ],
- [
- 4.12545,
- 59.71033
- ],
- [
- 4.30123,
- 62.14334
- ],
- [
- 7.35543,
- 63.60566
- ],
- [
- 10.03609,
- 65.18156
- ],
- [
- 11.39839,
- 67.63299
- ],
- [
- 14.40865,
- 69.3326
- ],
- [
- 21.72554,
- 71.02297
- ],
- [
- 8.69576,
- 79.22832
- ],
- [
- 30.73433,
- 79.09611
- ],
- [
- 22.12105,
- 71.41906
- ],
- [
- 30.82222,
- 71.12986
- ],
- [
- 41.8525,
- 67.72478
- ],
- [
- 41.89644,
- 66.91146
- ],
- [
- 43.52242,
- 67.0318
- ],
- [
- 42.4897,
- 68.86225
- ],
- [
- 44.35738,
- 68.86225
- ],
- [
- 46.73043,
- 68.43023
- ],
- [
- 46.63155,
- 67.66223
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA",
- "url": "https://tools.geofabrik.de/osmi/"
- },
- "country_code": "EU",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png",
- "id": "OSM_Inspector-Boundaries",
- "max_zoom": 18,
- "name": "OSM Inspector: Coastline (EU)",
- "overlay": true,
- "type": "wms_endpoint",
- "url": "https://tools.geofabrik.de/osmi/views/boundaries/wxs?service=wms&request=getCapabilities"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.73762,
- 41.30154
- ],
- [
- 19.88628,
- 41.27213
- ],
- [
- 19.86877,
- 41.38582
- ],
- [
- 19.68338,
- 41.3732
- ],
- [
- 19.73762,
- 41.30154
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Data provided by the Muncipality of Tirana hosted by Open Labs",
- "url": "https://geoportal.openlabs.cc/"
- },
- "country_code": "AL",
- "description": "Bus stops & lines provided by the Muncipality of Tirana hosted by Open Labs",
- "end_date": "2017",
- "id": "openlabs-geoportal-public-transport",
- "license_url": "https://cloud.openlabs.cc/s/3lzVn1ZzUEMifHq#pdfviewer",
- "max_zoom": 21,
- "name": "Municipality of Tirana - Public Transport (Open Labs GeoPortal) (overlay)",
- "overlay": true,
- "start_date": "2017",
- "type": "tms",
- "url": "https://geoportal.openlabs.cc/mapcache/tms/1.0.0/public-transport@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.70226,
- 41.1404
- ],
- [
- 19.77573,
- 41.11868
- ],
- [
- 19.86431,
- 41.12126
- ],
- [
- 20.24986,
- 41.3495
- ],
- [
- 20.03082,
- 41.41184
- ],
- [
- 19.92577,
- 41.5204
- ],
- [
- 19.88869,
- 41.50755
- ],
- [
- 19.88937,
- 41.42265
- ],
- [
- 19.81659,
- 41.46177
- ],
- [
- 19.7335,
- 41.43037
- ],
- [
- 19.74174,
- 41.37887
- ],
- [
- 19.65797,
- 41.37475
- ],
- [
- 19.57214,
- 41.24322
- ],
- [
- 19.61815,
- 41.22567
- ],
- [
- 19.67171,
- 41.22722
- ],
- [
- 19.70226,
- 41.1404
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Data provided by the Muncipality of Tirana hosted by Open Labs",
- "url": "https://geoportal.openlabs.cc"
- },
- "country_code": "AL",
- "description": "Streets & Builings provided by the Muncipality of Tirana hosted by Open Labs",
- "end_date": "2017",
- "id": "openlabs-geoportal-tirana",
- "license_url": "https://cloud.openlabs.cc/s/3lzVn1ZzUEMifHq#pdfviewer",
- "max_zoom": 21,
- "name": "Municipality of Tirana (Open Labs GeoPortal)",
- "start_date": "2017",
- "type": "tms",
- "url": "https://geoportal.openlabs.cc/mapcache/tms/1.0.0/tirana@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.11233,
- 42.15316
- ],
- [
- 19.08426,
- 43.08074
- ],
- [
- 20.63299,
- 43.09603
- ],
- [
- 20.63788,
- 42.16779
- ],
- [
- 19.11233,
- 42.15316
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AL",
- "description": "Late summer imagery where usual sources are severely limited by clouds and snow (true color)",
- "end_date": "2015-08-31",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R136_N41_20150831T093006",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Prokletije Mountains",
- "start_date": "2015-08-31",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R136_N41_20150831T093006&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.50733,
- 46.99293
- ],
- [
- 16.28342,
- 46.99293
- ],
- [
- 16.13584,
- 46.8713
- ],
- [
- 15.98317,
- 46.81909
- ],
- [
- 16.04933,
- 46.65517
- ],
- [
- 15.86104,
- 46.71801
- ],
- [
- 15.75926,
- 46.69009
- ],
- [
- 15.56079,
- 46.67962
- ],
- [
- 15.57606,
- 46.63421
- ],
- [
- 15.47937,
- 46.60276
- ],
- [
- 15.43357,
- 46.65168
- ],
- [
- 15.22493,
- 46.63421
- ],
- [
- 15.04682,
- 46.64819
- ],
- [
- 14.99084,
- 46.58877
- ],
- [
- 14.9603,
- 46.62373
- ],
- [
- 14.85344,
- 46.60276
- ],
- [
- 14.83308,
- 46.50127
- ],
- [
- 14.75166,
- 46.49776
- ],
- [
- 14.68041,
- 46.43818
- ],
- [
- 14.61426,
- 46.43818
- ],
- [
- 14.57864,
- 46.37853
- ],
- [
- 14.44124,
- 46.43116
- ],
- [
- 14.16135,
- 46.42766
- ],
- [
- 14.12573,
- 46.47674
- ],
- [
- 14.01886,
- 46.47674
- ],
- [
- 13.91199,
- 46.52578
- ],
- [
- 13.82548,
- 46.50477
- ],
- [
- 13.44381,
- 46.56078
- ],
- [
- 13.30641,
- 46.55028
- ],
- [
- 13.1283,
- 46.58877
- ],
- [
- 12.84332,
- 46.61324
- ],
- [
- 12.72628,
- 46.6412
- ],
- [
- 12.51255,
- 46.66565
- ],
- [
- 12.35988,
- 46.70405
- ],
- [
- 12.36497,
- 46.77032
- ],
- [
- 12.28863,
- 46.77729
- ],
- [
- 12.27337,
- 46.88522
- ],
- [
- 12.20721,
- 46.87478
- ],
- [
- 12.13088,
- 46.90261
- ],
- [
- 12.11561,
- 46.99987
- ],
- [
- 12.25301,
- 47.06577
- ],
- [
- 12.2123,
- 47.0935
- ],
- [
- 11.9833,
- 47.04497
- ],
- [
- 11.73394,
- 46.96168
- ],
- [
- 11.63217,
- 47.01028
- ],
- [
- 11.54057,
- 46.97557
- ],
- [
- 11.49986,
- 47.00681
- ],
- [
- 11.41843,
- 46.96515
- ],
- [
- 11.25559,
- 46.97557
- ],
- [
- 11.1131,
- 46.91304
- ],
- [
- 11.04185,
- 46.76335
- ],
- [
- 10.88919,
- 46.75986
- ],
- [
- 10.74161,
- 46.78426
- ],
- [
- 10.70599,
- 46.86435
- ],
- [
- 10.57877,
- 46.83998
- ],
- [
- 10.45663,
- 46.85043
- ],
- [
- 10.47699,
- 46.92694
- ],
- [
- 10.38539,
- 46.98946
- ],
- [
- 10.23272,
- 46.86435
- ],
- [
- 10.12076,
- 46.83302
- ],
- [
- 9.86632,
- 46.94084
- ],
- [
- 9.90194,
- 47.00334
- ],
- [
- 9.68312,
- 47.05884
- ],
- [
- 9.61188,
- 47.03804
- ],
- [
- 9.63223,
- 47.12813
- ],
- [
- 9.58134,
- 47.1662
- ],
- [
- 9.54063,
- 47.26644
- ],
- [
- 9.60679,
- 47.34926
- ],
- [
- 9.67294,
- 47.36994
- ],
- [
- 9.64241,
- 47.44571
- ],
- [
- 9.56608,
- 47.48011
- ],
- [
- 9.71365,
- 47.52824
- ],
- [
- 9.7849,
- 47.59692
- ],
- [
- 9.83579,
- 47.54542
- ],
- [
- 9.94774,
- 47.53855
- ],
- [
- 10.09023,
- 47.44915
- ],
- [
- 10.11059,
- 47.36649
- ],
- [
- 10.2429,
- 47.38717
- ],
- [
- 10.18692,
- 47.2699
- ],
- [
- 10.32432,
- 47.29751
- ],
- [
- 10.48208,
- 47.44915
- ],
- [
- 10.43119,
- 47.48699
- ],
- [
- 10.44137,
- 47.59005
- ],
- [
- 10.48717,
- 47.55229
- ],
- [
- 10.54823,
- 47.53511
- ],
- [
- 10.59912,
- 47.56602
- ],
- [
- 10.75688,
- 47.53168
- ],
- [
- 10.88919,
- 47.54542
- ],
- [
- 10.94008,
- 47.48699
- ],
- [
- 10.99605,
- 47.39061
- ],
- [
- 11.23523,
- 47.44227
- ],
- [
- 11.28103,
- 47.3975
- ],
- [
- 11.42352,
- 47.51449
- ],
- [
- 11.57619,
- 47.50762
- ],
- [
- 11.60672,
- 47.59005
- ],
- [
- 11.83572,
- 47.58662
- ],
- [
- 12.00366,
- 47.62436
- ],
- [
- 12.20721,
- 47.60378
- ],
- [
- 12.16141,
- 47.69634
- ],
- [
- 12.2581,
- 47.74427
- ],
- [
- 12.25301,
- 47.67921
- ],
- [
- 12.43112,
- 47.71004
- ],
- [
- 12.49219,
- 47.63122
- ],
- [
- 12.56852,
- 47.62779
- ],
- [
- 12.62959,
- 47.68949
- ],
- [
- 12.77208,
- 47.66893
- ],
- [
- 12.83315,
- 47.54198
- ],
- [
- 12.97564,
- 47.47323
- ],
- [
- 13.04179,
- 47.49387
- ],
- [
- 13.0367,
- 47.55572
- ],
- [
- 13.09777,
- 47.64151
- ],
- [
- 13.03161,
- 47.71004
- ],
- [
- 12.90439,
- 47.72031
- ],
- [
- 13.00617,
- 47.84683
- ],
- [
- 12.9451,
- 47.93555
- ],
- [
- 12.86368,
- 47.95941
- ],
- [
- 12.86368,
- 48.00369
- ],
- [
- 12.75172,
- 48.09894
- ],
- [
- 12.87386,
- 48.21097
- ],
- [
- 12.96037,
- 48.21097
- ],
- [
- 13.04179,
- 48.2652
- ],
- [
- 13.18428,
- 48.29907
- ],
- [
- 13.26061,
- 48.2923
- ],
- [
- 13.39801,
- 48.35659
- ],
- [
- 13.44381,
- 48.41742
- ],
- [
- 13.43872,
- 48.55234
- ],
- [
- 13.50997,
- 48.58601
- ],
- [
- 13.61175,
- 48.57255
- ],
- [
- 13.72879,
- 48.5119
- ],
- [
- 13.78477,
- 48.57255
- ],
- [
- 13.82039,
- 48.62639
- ],
- [
- 13.79495,
- 48.71713
- ],
- [
- 13.85093,
- 48.77417
- ],
- [
- 14.05957,
- 48.66338
- ],
- [
- 14.01377,
- 48.63312
- ],
- [
- 14.07484,
- 48.59274
- ],
- [
- 14.21733,
- 48.59611
- ],
- [
- 14.3649,
- 48.54897
- ],
- [
- 14.46668,
- 48.64993
- ],
- [
- 14.55828,
- 48.59611
- ],
- [
- 14.59899,
- 48.62639
- ],
- [
- 14.72113,
- 48.57591
- ],
- [
- 14.72113,
- 48.6869
- ],
- [
- 14.8229,
- 48.7272
- ],
- [
- 14.81782,
- 48.77753
- ],
- [
- 14.96472,
- 48.78518
- ],
- [
- 14.98936,
- 49.01266
- ],
- [
- 15.14859,
- 48.99503
- ],
- [
- 15.19439,
- 48.93155
- ],
- [
- 15.30635,
- 48.98501
- ],
- [
- 15.39286,
- 48.98501
- ],
- [
- 15.48446,
- 48.92821
- ],
- [
- 15.74908,
- 48.8546
- ],
- [
- 15.84068,
- 48.88807
- ],
- [
- 16.00862,
- 48.78088
- ],
- [
- 16.20708,
- 48.73391
- ],
- [
- 16.39537,
- 48.73727
- ],
- [
- 16.49206,
- 48.81105
- ],
- [
- 16.69053,
- 48.77417
- ],
- [
- 16.7058,
- 48.73391
- ],
- [
- 16.89917,
- 48.71377
- ],
- [
- 16.97551,
- 48.51527
- ],
- [
- 16.84828,
- 48.45118
- ],
- [
- 16.85337,
- 48.34644
- ],
- [
- 16.95515,
- 48.25165
- ],
- [
- 16.99077,
- 48.1499
- ],
- [
- 17.09255,
- 48.13971
- ],
- [
- 17.08237,
- 48.02412
- ],
- [
- 17.17397,
- 48.02071
- ],
- [
- 17.08237,
- 47.87414
- ],
- [
- 16.98568,
- 47.86732
- ],
- [
- 17.08237,
- 47.80925
- ],
- [
- 17.09255,
- 47.70319
- ],
- [
- 16.74142,
- 47.67921
- ],
- [
- 16.7058,
- 47.75112
- ],
- [
- 16.53786,
- 47.75454
- ],
- [
- 16.54804,
- 47.70662
- ],
- [
- 16.42082,
- 47.66893
- ],
- [
- 16.57348,
- 47.6175
- ],
- [
- 16.67017,
- 47.63122
- ],
- [
- 16.71088,
- 47.53855
- ],
- [
- 16.66,
- 47.44915
- ],
- [
- 16.54295,
- 47.39406
- ],
- [
- 16.46153,
- 47.39406
- ],
- [
- 16.49206,
- 47.2768
- ],
- [
- 16.42591,
- 47.19733
- ],
- [
- 16.47171,
- 47.1489
- ],
- [
- 16.54804,
- 47.1489
- ],
- [
- 16.47679,
- 47.07964
- ],
- [
- 16.52768,
- 47.05884
- ],
- [
- 16.50733,
- 46.99293
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "basemap.at",
- "url": "https://basemap.at"
- },
- "category": "map",
- "country_code": "AT",
- "description": "Basemap of Austria, based on government data.",
- "i18n": true,
- "icon": "https://www.basemap.at/images/logo_basemap.jpg",
- "id": "basemap.at",
- "license_url": "https://basemap.at/#sec-nutzung",
- "max_zoom": 19,
- "name": "basemap.at",
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.50733,
- 46.99293
- ],
- [
- 16.28342,
- 46.99293
- ],
- [
- 16.13584,
- 46.8713
- ],
- [
- 15.98317,
- 46.81909
- ],
- [
- 16.04933,
- 46.65517
- ],
- [
- 15.86104,
- 46.71801
- ],
- [
- 15.75926,
- 46.69009
- ],
- [
- 15.56079,
- 46.67962
- ],
- [
- 15.57606,
- 46.63421
- ],
- [
- 15.47937,
- 46.60276
- ],
- [
- 15.43357,
- 46.65168
- ],
- [
- 15.22493,
- 46.63421
- ],
- [
- 15.04682,
- 46.64819
- ],
- [
- 14.99084,
- 46.58877
- ],
- [
- 14.9603,
- 46.62373
- ],
- [
- 14.85344,
- 46.60276
- ],
- [
- 14.83308,
- 46.50127
- ],
- [
- 14.75166,
- 46.49776
- ],
- [
- 14.68041,
- 46.43818
- ],
- [
- 14.61426,
- 46.43818
- ],
- [
- 14.57864,
- 46.37853
- ],
- [
- 14.44124,
- 46.43116
- ],
- [
- 14.16135,
- 46.42766
- ],
- [
- 14.12573,
- 46.47674
- ],
- [
- 14.01886,
- 46.47674
- ],
- [
- 13.91199,
- 46.52578
- ],
- [
- 13.82548,
- 46.50477
- ],
- [
- 13.44381,
- 46.56078
- ],
- [
- 13.30641,
- 46.55028
- ],
- [
- 13.1283,
- 46.58877
- ],
- [
- 12.84332,
- 46.61324
- ],
- [
- 12.72628,
- 46.6412
- ],
- [
- 12.51255,
- 46.66565
- ],
- [
- 12.35988,
- 46.70405
- ],
- [
- 12.36497,
- 46.77032
- ],
- [
- 12.28863,
- 46.77729
- ],
- [
- 12.27337,
- 46.88522
- ],
- [
- 12.20721,
- 46.87478
- ],
- [
- 12.13088,
- 46.90261
- ],
- [
- 12.11561,
- 46.99987
- ],
- [
- 12.25301,
- 47.06577
- ],
- [
- 12.2123,
- 47.0935
- ],
- [
- 11.9833,
- 47.04497
- ],
- [
- 11.73394,
- 46.96168
- ],
- [
- 11.63217,
- 47.01028
- ],
- [
- 11.54057,
- 46.97557
- ],
- [
- 11.49986,
- 47.00681
- ],
- [
- 11.41843,
- 46.96515
- ],
- [
- 11.25559,
- 46.97557
- ],
- [
- 11.1131,
- 46.91304
- ],
- [
- 11.04185,
- 46.76335
- ],
- [
- 10.88919,
- 46.75986
- ],
- [
- 10.74161,
- 46.78426
- ],
- [
- 10.70599,
- 46.86435
- ],
- [
- 10.57877,
- 46.83998
- ],
- [
- 10.45663,
- 46.85043
- ],
- [
- 10.47699,
- 46.92694
- ],
- [
- 10.38539,
- 46.98946
- ],
- [
- 10.23272,
- 46.86435
- ],
- [
- 10.12076,
- 46.83302
- ],
- [
- 9.86632,
- 46.94084
- ],
- [
- 9.90194,
- 47.00334
- ],
- [
- 9.68312,
- 47.05884
- ],
- [
- 9.61188,
- 47.03804
- ],
- [
- 9.63223,
- 47.12813
- ],
- [
- 9.58134,
- 47.1662
- ],
- [
- 9.54063,
- 47.26644
- ],
- [
- 9.60679,
- 47.34926
- ],
- [
- 9.67294,
- 47.36994
- ],
- [
- 9.64241,
- 47.44571
- ],
- [
- 9.56608,
- 47.48011
- ],
- [
- 9.71365,
- 47.52824
- ],
- [
- 9.7849,
- 47.59692
- ],
- [
- 9.83579,
- 47.54542
- ],
- [
- 9.94774,
- 47.53855
- ],
- [
- 10.09023,
- 47.44915
- ],
- [
- 10.11059,
- 47.36649
- ],
- [
- 10.2429,
- 47.38717
- ],
- [
- 10.18692,
- 47.2699
- ],
- [
- 10.32432,
- 47.29751
- ],
- [
- 10.48208,
- 47.44915
- ],
- [
- 10.43119,
- 47.48699
- ],
- [
- 10.44137,
- 47.59005
- ],
- [
- 10.48717,
- 47.55229
- ],
- [
- 10.54823,
- 47.53511
- ],
- [
- 10.59912,
- 47.56602
- ],
- [
- 10.75688,
- 47.53168
- ],
- [
- 10.88919,
- 47.54542
- ],
- [
- 10.94008,
- 47.48699
- ],
- [
- 10.99605,
- 47.39061
- ],
- [
- 11.23523,
- 47.44227
- ],
- [
- 11.28103,
- 47.3975
- ],
- [
- 11.42352,
- 47.51449
- ],
- [
- 11.57619,
- 47.50762
- ],
- [
- 11.60672,
- 47.59005
- ],
- [
- 11.83572,
- 47.58662
- ],
- [
- 12.00366,
- 47.62436
- ],
- [
- 12.20721,
- 47.60378
- ],
- [
- 12.16141,
- 47.69634
- ],
- [
- 12.2581,
- 47.74427
- ],
- [
- 12.25301,
- 47.67921
- ],
- [
- 12.43112,
- 47.71004
- ],
- [
- 12.49219,
- 47.63122
- ],
- [
- 12.56852,
- 47.62779
- ],
- [
- 12.62959,
- 47.68949
- ],
- [
- 12.77208,
- 47.66893
- ],
- [
- 12.83315,
- 47.54198
- ],
- [
- 12.97564,
- 47.47323
- ],
- [
- 13.04179,
- 47.49387
- ],
- [
- 13.0367,
- 47.55572
- ],
- [
- 13.09777,
- 47.64151
- ],
- [
- 13.03161,
- 47.71004
- ],
- [
- 12.90439,
- 47.72031
- ],
- [
- 13.00617,
- 47.84683
- ],
- [
- 12.9451,
- 47.93555
- ],
- [
- 12.86368,
- 47.95941
- ],
- [
- 12.86368,
- 48.00369
- ],
- [
- 12.75172,
- 48.09894
- ],
- [
- 12.87386,
- 48.21097
- ],
- [
- 12.96037,
- 48.21097
- ],
- [
- 13.04179,
- 48.2652
- ],
- [
- 13.18428,
- 48.29907
- ],
- [
- 13.26061,
- 48.2923
- ],
- [
- 13.39801,
- 48.35659
- ],
- [
- 13.44381,
- 48.41742
- ],
- [
- 13.43872,
- 48.55234
- ],
- [
- 13.50997,
- 48.58601
- ],
- [
- 13.61175,
- 48.57255
- ],
- [
- 13.72879,
- 48.5119
- ],
- [
- 13.78477,
- 48.57255
- ],
- [
- 13.82039,
- 48.62639
- ],
- [
- 13.79495,
- 48.71713
- ],
- [
- 13.85093,
- 48.77417
- ],
- [
- 14.05957,
- 48.66338
- ],
- [
- 14.01377,
- 48.63312
- ],
- [
- 14.07484,
- 48.59274
- ],
- [
- 14.21733,
- 48.59611
- ],
- [
- 14.3649,
- 48.54897
- ],
- [
- 14.46668,
- 48.64993
- ],
- [
- 14.55828,
- 48.59611
- ],
- [
- 14.59899,
- 48.62639
- ],
- [
- 14.72113,
- 48.57591
- ],
- [
- 14.72113,
- 48.6869
- ],
- [
- 14.8229,
- 48.7272
- ],
- [
- 14.81782,
- 48.77753
- ],
- [
- 14.96472,
- 48.78518
- ],
- [
- 14.98936,
- 49.01266
- ],
- [
- 15.14859,
- 48.99503
- ],
- [
- 15.19439,
- 48.93155
- ],
- [
- 15.30635,
- 48.98501
- ],
- [
- 15.39286,
- 48.98501
- ],
- [
- 15.48446,
- 48.92821
- ],
- [
- 15.74908,
- 48.8546
- ],
- [
- 15.84068,
- 48.88807
- ],
- [
- 16.00862,
- 48.78088
- ],
- [
- 16.20708,
- 48.73391
- ],
- [
- 16.39537,
- 48.73727
- ],
- [
- 16.49206,
- 48.81105
- ],
- [
- 16.69053,
- 48.77417
- ],
- [
- 16.7058,
- 48.73391
- ],
- [
- 16.89917,
- 48.71377
- ],
- [
- 16.97551,
- 48.51527
- ],
- [
- 16.84828,
- 48.45118
- ],
- [
- 16.85337,
- 48.34644
- ],
- [
- 16.95515,
- 48.25165
- ],
- [
- 16.99077,
- 48.1499
- ],
- [
- 17.09255,
- 48.13971
- ],
- [
- 17.08237,
- 48.02412
- ],
- [
- 17.17397,
- 48.02071
- ],
- [
- 17.08237,
- 47.87414
- ],
- [
- 16.98568,
- 47.86732
- ],
- [
- 17.08237,
- 47.80925
- ],
- [
- 17.09255,
- 47.70319
- ],
- [
- 16.74142,
- 47.67921
- ],
- [
- 16.7058,
- 47.75112
- ],
- [
- 16.53786,
- 47.75454
- ],
- [
- 16.54804,
- 47.70662
- ],
- [
- 16.42082,
- 47.66893
- ],
- [
- 16.57348,
- 47.6175
- ],
- [
- 16.67017,
- 47.63122
- ],
- [
- 16.71088,
- 47.53855
- ],
- [
- 16.66,
- 47.44915
- ],
- [
- 16.54295,
- 47.39406
- ],
- [
- 16.46153,
- 47.39406
- ],
- [
- 16.49206,
- 47.2768
- ],
- [
- 16.42591,
- 47.19733
- ],
- [
- 16.47171,
- 47.1489
- ],
- [
- 16.54804,
- 47.1489
- ],
- [
- 16.47679,
- 47.07964
- ],
- [
- 16.52768,
- 47.05884
- ],
- [
- 16.50733,
- 46.99293
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "basemap.at",
- "url": "https://basemap.at"
- },
- "best": true,
- "category": "photo",
- "country_code": "AT",
- "description": "Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.",
- "i18n": true,
- "icon": "https://www.basemap.at/images/logo_basemap.jpg",
- "id": "basemap.at-orthofoto",
- "license_url": "https://basemap.at/#sec-nutzung",
- "max_zoom": 19,
- "name": "basemap.at Orthofoto",
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.50733,
- 46.99293
- ],
- [
- 16.28342,
- 46.99293
- ],
- [
- 16.13584,
- 46.8713
- ],
- [
- 15.98317,
- 46.81909
- ],
- [
- 16.04933,
- 46.65517
- ],
- [
- 15.86104,
- 46.71801
- ],
- [
- 15.75926,
- 46.69009
- ],
- [
- 15.56079,
- 46.67962
- ],
- [
- 15.57606,
- 46.63421
- ],
- [
- 15.47937,
- 46.60276
- ],
- [
- 15.43357,
- 46.65168
- ],
- [
- 15.22493,
- 46.63421
- ],
- [
- 15.04682,
- 46.64819
- ],
- [
- 14.99084,
- 46.58877
- ],
- [
- 14.9603,
- 46.62373
- ],
- [
- 14.85344,
- 46.60276
- ],
- [
- 14.83308,
- 46.50127
- ],
- [
- 14.75166,
- 46.49776
- ],
- [
- 14.68041,
- 46.43818
- ],
- [
- 14.61426,
- 46.43818
- ],
- [
- 14.57864,
- 46.37853
- ],
- [
- 14.44124,
- 46.43116
- ],
- [
- 14.16135,
- 46.42766
- ],
- [
- 14.12573,
- 46.47674
- ],
- [
- 14.01886,
- 46.47674
- ],
- [
- 13.91199,
- 46.52578
- ],
- [
- 13.82548,
- 46.50477
- ],
- [
- 13.44381,
- 46.56078
- ],
- [
- 13.30641,
- 46.55028
- ],
- [
- 13.1283,
- 46.58877
- ],
- [
- 12.84332,
- 46.61324
- ],
- [
- 12.72628,
- 46.6412
- ],
- [
- 12.51255,
- 46.66565
- ],
- [
- 12.35988,
- 46.70405
- ],
- [
- 12.36497,
- 46.77032
- ],
- [
- 12.28863,
- 46.77729
- ],
- [
- 12.27337,
- 46.88522
- ],
- [
- 12.20721,
- 46.87478
- ],
- [
- 12.13088,
- 46.90261
- ],
- [
- 12.11561,
- 46.99987
- ],
- [
- 12.25301,
- 47.06577
- ],
- [
- 12.2123,
- 47.0935
- ],
- [
- 11.9833,
- 47.04497
- ],
- [
- 11.73394,
- 46.96168
- ],
- [
- 11.63217,
- 47.01028
- ],
- [
- 11.54057,
- 46.97557
- ],
- [
- 11.49986,
- 47.00681
- ],
- [
- 11.41843,
- 46.96515
- ],
- [
- 11.25559,
- 46.97557
- ],
- [
- 11.1131,
- 46.91304
- ],
- [
- 11.04185,
- 46.76335
- ],
- [
- 10.88919,
- 46.75986
- ],
- [
- 10.74161,
- 46.78426
- ],
- [
- 10.70599,
- 46.86435
- ],
- [
- 10.57877,
- 46.83998
- ],
- [
- 10.45663,
- 46.85043
- ],
- [
- 10.47699,
- 46.92694
- ],
- [
- 10.38539,
- 46.98946
- ],
- [
- 10.23272,
- 46.86435
- ],
- [
- 10.12076,
- 46.83302
- ],
- [
- 9.86632,
- 46.94084
- ],
- [
- 9.90194,
- 47.00334
- ],
- [
- 9.68312,
- 47.05884
- ],
- [
- 9.61188,
- 47.03804
- ],
- [
- 9.63223,
- 47.12813
- ],
- [
- 9.58134,
- 47.1662
- ],
- [
- 9.54063,
- 47.26644
- ],
- [
- 9.60679,
- 47.34926
- ],
- [
- 9.67294,
- 47.36994
- ],
- [
- 9.64241,
- 47.44571
- ],
- [
- 9.56608,
- 47.48011
- ],
- [
- 9.71365,
- 47.52824
- ],
- [
- 9.7849,
- 47.59692
- ],
- [
- 9.83579,
- 47.54542
- ],
- [
- 9.94774,
- 47.53855
- ],
- [
- 10.09023,
- 47.44915
- ],
- [
- 10.11059,
- 47.36649
- ],
- [
- 10.2429,
- 47.38717
- ],
- [
- 10.18692,
- 47.2699
- ],
- [
- 10.32432,
- 47.29751
- ],
- [
- 10.48208,
- 47.44915
- ],
- [
- 10.43119,
- 47.48699
- ],
- [
- 10.44137,
- 47.59005
- ],
- [
- 10.48717,
- 47.55229
- ],
- [
- 10.54823,
- 47.53511
- ],
- [
- 10.59912,
- 47.56602
- ],
- [
- 10.75688,
- 47.53168
- ],
- [
- 10.88919,
- 47.54542
- ],
- [
- 10.94008,
- 47.48699
- ],
- [
- 10.99605,
- 47.39061
- ],
- [
- 11.23523,
- 47.44227
- ],
- [
- 11.28103,
- 47.3975
- ],
- [
- 11.42352,
- 47.51449
- ],
- [
- 11.57619,
- 47.50762
- ],
- [
- 11.60672,
- 47.59005
- ],
- [
- 11.83572,
- 47.58662
- ],
- [
- 12.00366,
- 47.62436
- ],
- [
- 12.20721,
- 47.60378
- ],
- [
- 12.16141,
- 47.69634
- ],
- [
- 12.2581,
- 47.74427
- ],
- [
- 12.25301,
- 47.67921
- ],
- [
- 12.43112,
- 47.71004
- ],
- [
- 12.49219,
- 47.63122
- ],
- [
- 12.56852,
- 47.62779
- ],
- [
- 12.62959,
- 47.68949
- ],
- [
- 12.77208,
- 47.66893
- ],
- [
- 12.83315,
- 47.54198
- ],
- [
- 12.97564,
- 47.47323
- ],
- [
- 13.04179,
- 47.49387
- ],
- [
- 13.0367,
- 47.55572
- ],
- [
- 13.09777,
- 47.64151
- ],
- [
- 13.03161,
- 47.71004
- ],
- [
- 12.90439,
- 47.72031
- ],
- [
- 13.00617,
- 47.84683
- ],
- [
- 12.9451,
- 47.93555
- ],
- [
- 12.86368,
- 47.95941
- ],
- [
- 12.86368,
- 48.00369
- ],
- [
- 12.75172,
- 48.09894
- ],
- [
- 12.87386,
- 48.21097
- ],
- [
- 12.96037,
- 48.21097
- ],
- [
- 13.04179,
- 48.2652
- ],
- [
- 13.18428,
- 48.29907
- ],
- [
- 13.26061,
- 48.2923
- ],
- [
- 13.39801,
- 48.35659
- ],
- [
- 13.44381,
- 48.41742
- ],
- [
- 13.43872,
- 48.55234
- ],
- [
- 13.50997,
- 48.58601
- ],
- [
- 13.61175,
- 48.57255
- ],
- [
- 13.72879,
- 48.5119
- ],
- [
- 13.78477,
- 48.57255
- ],
- [
- 13.82039,
- 48.62639
- ],
- [
- 13.79495,
- 48.71713
- ],
- [
- 13.85093,
- 48.77417
- ],
- [
- 14.05957,
- 48.66338
- ],
- [
- 14.01377,
- 48.63312
- ],
- [
- 14.07484,
- 48.59274
- ],
- [
- 14.21733,
- 48.59611
- ],
- [
- 14.3649,
- 48.54897
- ],
- [
- 14.46668,
- 48.64993
- ],
- [
- 14.55828,
- 48.59611
- ],
- [
- 14.59899,
- 48.62639
- ],
- [
- 14.72113,
- 48.57591
- ],
- [
- 14.72113,
- 48.6869
- ],
- [
- 14.8229,
- 48.7272
- ],
- [
- 14.81782,
- 48.77753
- ],
- [
- 14.96472,
- 48.78518
- ],
- [
- 14.98936,
- 49.01266
- ],
- [
- 15.14859,
- 48.99503
- ],
- [
- 15.19439,
- 48.93155
- ],
- [
- 15.30635,
- 48.98501
- ],
- [
- 15.39286,
- 48.98501
- ],
- [
- 15.48446,
- 48.92821
- ],
- [
- 15.74908,
- 48.8546
- ],
- [
- 15.84068,
- 48.88807
- ],
- [
- 16.00862,
- 48.78088
- ],
- [
- 16.20708,
- 48.73391
- ],
- [
- 16.39537,
- 48.73727
- ],
- [
- 16.49206,
- 48.81105
- ],
- [
- 16.69053,
- 48.77417
- ],
- [
- 16.7058,
- 48.73391
- ],
- [
- 16.89917,
- 48.71377
- ],
- [
- 16.97551,
- 48.51527
- ],
- [
- 16.84828,
- 48.45118
- ],
- [
- 16.85337,
- 48.34644
- ],
- [
- 16.95515,
- 48.25165
- ],
- [
- 16.99077,
- 48.1499
- ],
- [
- 17.09255,
- 48.13971
- ],
- [
- 17.08237,
- 48.02412
- ],
- [
- 17.17397,
- 48.02071
- ],
- [
- 17.08237,
- 47.87414
- ],
- [
- 16.98568,
- 47.86732
- ],
- [
- 17.08237,
- 47.80925
- ],
- [
- 17.09255,
- 47.70319
- ],
- [
- 16.74142,
- 47.67921
- ],
- [
- 16.7058,
- 47.75112
- ],
- [
- 16.53786,
- 47.75454
- ],
- [
- 16.54804,
- 47.70662
- ],
- [
- 16.42082,
- 47.66893
- ],
- [
- 16.57348,
- 47.6175
- ],
- [
- 16.67017,
- 47.63122
- ],
- [
- 16.71088,
- 47.53855
- ],
- [
- 16.66,
- 47.44915
- ],
- [
- 16.54295,
- 47.39406
- ],
- [
- 16.46153,
- 47.39406
- ],
- [
- 16.49206,
- 47.2768
- ],
- [
- 16.42591,
- 47.19733
- ],
- [
- 16.47171,
- 47.1489
- ],
- [
- 16.54804,
- 47.1489
- ],
- [
- 16.47679,
- 47.07964
- ],
- [
- 16.52768,
- 47.05884
- ],
- [
- 16.50733,
- 46.99293
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "geoimage.at",
- "url": "http://geoimage.at"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:31254",
- "EPSG:31255",
- "EPSG:31256",
- "EPSG:31257",
- "EPSG:31258",
- "EPSG:31259",
- "EPSG:31287",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:3416",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:900913"
- ],
- "category": "photo",
- "country_code": "AT",
- "description": "Aktuelle Digitale Orthophotos des LFRZ aus gemeinsamen Befliegungen mit den Landesregierungen",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/GeoimageatMaxRes.png",
- "id": "geoimage.at",
- "license_url": "http://www.geoimage.at/geoimage/geodatendienste",
- "name": "Geoimage.at MaxRes",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://www.bmlrt.gv.at/datenschutzinformationen.html",
- "type": "wms",
- "url": "https://gis.bmlfuw.gv.at/wmsgw/?key=4d80de696cd562a63ce463a58a61488d&service=WMS&LAYERS=Luftbild&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "tiris.tirol.gv.at",
- "url": "https://tiris.tirol.gv.at"
- },
- "available_projections": [
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:31254",
- "EPSG:31255",
- "EPSG:31256",
- "EPSG:31257",
- "EPSG:31258",
- "EPSG:31259",
- "EPSG:31287",
- "EPSG:32632",
- "EPSG:32633"
- ],
- "category": "elevation",
- "country_code": "AT",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif",
- "id": "tirol.gv.at-contourlines",
- "license_url": "https://www.tirol.gv.at/data/datenkatalog/geographie-und-planung/gelaende-tirol",
- "min_zoom": 15,
- "name": "Tiris: contour lines",
- "overlay": true,
- "permission_osm": "explicit",
- "type": "wms",
- "url": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Hoehenschichtlinien_20m&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "tiris.tirol.gv.at",
- "url": "https://tiris.tirol.gv.at"
- },
- "available_projections": [
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:31254",
- "EPSG:31255",
- "EPSG:31256",
- "EPSG:31257",
- "EPSG:31258",
- "EPSG:31259",
- "EPSG:31287",
- "EPSG:32632",
- "EPSG:32633"
- ],
- "category": "elevation",
- "country_code": "AT",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif",
- "id": "tirol.gv.at-DGM",
- "license_url": "https://www.tirol.gv.at/data/datenkatalog/geographie-und-planung/gelaende-tirol",
- "name": "Tiris: DGM (Terrain model)",
- "permission_osm": "explicit",
- "type": "wms",
- "url": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Schummerung_Gelaendemodell&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "tiris.tirol.gv.at",
- "url": "https://tiris.tirol.gv.at"
- },
- "available_projections": [
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:31254",
- "EPSG:31255",
- "EPSG:31256",
- "EPSG:31257",
- "EPSG:31258",
- "EPSG:31259",
- "EPSG:31287",
- "EPSG:32632",
- "EPSG:32633"
- ],
- "category": "elevation",
- "country_code": "AT",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif",
- "id": "tirol.gv.at-DOM",
- "license_url": "https://www.tirol.gv.at/data/datenkatalog/geographie-und-planung/gelaende-tirol",
- "name": "Tiris: DOM (Surface model)",
- "permission_osm": "explicit",
- "type": "wms",
- "url": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Schummerung_Oberflaechenmodell&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "tiris.tirol.gv.at",
- "url": "https://tiris.tirol.gv.at"
- },
- "available_projections": [
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:31254",
- "EPSG:31255",
- "EPSG:31256",
- "EPSG:31257",
- "EPSG:31258",
- "EPSG:31259",
- "EPSG:31287",
- "EPSG:32632",
- "EPSG:32633"
- ],
- "category": "photo",
- "country_code": "AT",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif",
- "id": "tirol.gv.at-orthofoto",
- "license_url": "https://www.data.gv.at/katalog/dataset/35691b6c-9ed7-4517-b4b3-688b0569729a",
- "name": "Tiris: orthophoto",
- "permission_osm": "explicit",
- "type": "wms",
- "url": "https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Aktuell_RGB&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "tiris.tirol.gv.at",
- "url": "https://tiris.tirol.gv.at"
- },
- "available_projections": [
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:31254",
- "EPSG:31255",
- "EPSG:31256",
- "EPSG:31257",
- "EPSG:31258",
- "EPSG:31259",
- "EPSG:31287",
- "EPSG:32632",
- "EPSG:32633"
- ],
- "country_code": "AT",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif",
- "id": "tirol.gv.at-orthofoto-cir",
- "license_url": "https://www.data.gv.at/katalog/dataset/35691b6c-9ed7-4517-b4b3-688b0569729a",
- "name": "Tiris: orthophoto infrared",
- "permission_osm": "explicit",
- "type": "wms",
- "url": "https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Aktuell_CIR&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.54475,
- 48.17286
- ],
- [
- 16.54103,
- 48.17657
- ],
- [
- 16.54978,
- 48.17675
- ],
- [
- 16.54665,
- 48.17162
- ],
- [
- 16.55629,
- 48.16171
- ],
- [
- 16.55567,
- 48.16446
- ],
- [
- 16.56161,
- 48.16037
- ],
- [
- 16.57306,
- 48.16319
- ],
- [
- 16.57603,
- 48.13522
- ],
- [
- 16.54301,
- 48.14333
- ],
- [
- 16.51377,
- 48.15893
- ],
- [
- 16.4777,
- 48.15744
- ],
- [
- 16.45536,
- 48.13951
- ],
- [
- 16.43313,
- 48.13788
- ],
- [
- 16.43701,
- 48.11994
- ],
- [
- 16.42291,
- 48.12306
- ],
- [
- 16.4083,
- 48.11791
- ],
- [
- 16.40511,
- 48.12198
- ],
- [
- 16.3246,
- 48.13779
- ],
- [
- 16.31181,
- 48.11945
- ],
- [
- 16.29806,
- 48.12896
- ],
- [
- 16.2711,
- 48.13385
- ],
- [
- 16.23607,
- 48.13001
- ],
- [
- 16.2189,
- 48.12377
- ],
- [
- 16.2181,
- 48.12807
- ],
- [
- 16.23861,
- 48.13205
- ],
- [
- 16.23843,
- 48.13716
- ],
- [
- 16.22081,
- 48.13555
- ],
- [
- 16.20986,
- 48.14762
- ],
- [
- 16.22321,
- 48.15318
- ],
- [
- 16.19798,
- 48.15454
- ],
- [
- 16.19619,
- 48.16396
- ],
- [
- 16.18183,
- 48.17112
- ],
- [
- 16.19981,
- 48.18616
- ],
- [
- 16.20739,
- 48.20235
- ],
- [
- 16.20194,
- 48.20479
- ],
- [
- 16.20962,
- 48.20963
- ],
- [
- 16.1976,
- 48.21479
- ],
- [
- 16.19778,
- 48.22288
- ],
- [
- 16.18517,
- 48.2232
- ],
- [
- 16.19911,
- 48.22858
- ],
- [
- 16.19251,
- 48.23671
- ],
- [
- 16.20677,
- 48.26483
- ],
- [
- 16.24105,
- 48.24837
- ],
- [
- 16.24154,
- 48.23832
- ],
- [
- 16.25662,
- 48.23988
- ],
- [
- 16.27043,
- 48.25193
- ],
- [
- 16.26406,
- 48.25492
- ],
- [
- 16.28556,
- 48.25832
- ],
- [
- 16.29412,
- 48.26395
- ],
- [
- 16.28617,
- 48.2667
- ],
- [
- 16.28901,
- 48.27051
- ],
- [
- 16.32741,
- 48.27721
- ],
- [
- 16.34813,
- 48.29048
- ],
- [
- 16.35351,
- 48.28369
- ],
- [
- 16.3706,
- 48.2817
- ],
- [
- 16.36714,
- 48.28685
- ],
- [
- 16.37787,
- 48.28832
- ],
- [
- 16.37557,
- 48.29592
- ],
- [
- 16.37982,
- 48.30201
- ],
- [
- 16.38536,
- 48.30146
- ],
- [
- 16.38043,
- 48.31507
- ],
- [
- 16.39518,
- 48.32257
- ],
- [
- 16.39412,
- 48.31926
- ],
- [
- 16.40287,
- 48.31676
- ],
- [
- 16.41682,
- 48.32253
- ],
- [
- 16.43803,
- 48.31628
- ],
- [
- 16.44041,
- 48.29192
- ],
- [
- 16.47547,
- 48.27501
- ],
- [
- 16.48123,
- 48.27343
- ],
- [
- 16.4835,
- 48.27971
- ],
- [
- 16.48132,
- 48.29351
- ],
- [
- 16.49645,
- 48.29249
- ],
- [
- 16.51491,
- 48.28554
- ],
- [
- 16.5067,
- 48.2736
- ],
- [
- 16.51285,
- 48.26784
- ],
- [
- 16.53263,
- 48.2621
- ],
- [
- 16.54697,
- 48.263
- ],
- [
- 16.53941,
- 48.24284
- ],
- [
- 16.55274,
- 48.239
- ],
- [
- 16.53627,
- 48.20044
- ],
- [
- 16.54184,
- 48.18206
- ],
- [
- 16.53631,
- 48.17755
- ],
- [
- 16.54475,
- 48.17286
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Stadt Wien",
- "url": "https://data.wien.gv.at"
- },
- "category": "map",
- "country_code": "AT",
- "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif",
- "id": "wien.gv.at-labels",
- "max_zoom": 19,
- "min_zoom": 12,
- "name": "Vienna: Beschriftungen (annotations)",
- "overlay": true,
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://maps.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.54475,
- 48.17286
- ],
- [
- 16.54103,
- 48.17657
- ],
- [
- 16.54978,
- 48.17675
- ],
- [
- 16.54665,
- 48.17162
- ],
- [
- 16.55629,
- 48.16171
- ],
- [
- 16.55567,
- 48.16446
- ],
- [
- 16.56161,
- 48.16037
- ],
- [
- 16.57306,
- 48.16319
- ],
- [
- 16.57603,
- 48.13522
- ],
- [
- 16.54301,
- 48.14333
- ],
- [
- 16.51377,
- 48.15893
- ],
- [
- 16.4777,
- 48.15744
- ],
- [
- 16.45536,
- 48.13951
- ],
- [
- 16.43313,
- 48.13788
- ],
- [
- 16.43701,
- 48.11994
- ],
- [
- 16.42291,
- 48.12306
- ],
- [
- 16.4083,
- 48.11791
- ],
- [
- 16.40511,
- 48.12198
- ],
- [
- 16.3246,
- 48.13779
- ],
- [
- 16.31181,
- 48.11945
- ],
- [
- 16.29806,
- 48.12896
- ],
- [
- 16.2711,
- 48.13385
- ],
- [
- 16.23607,
- 48.13001
- ],
- [
- 16.2189,
- 48.12377
- ],
- [
- 16.2181,
- 48.12807
- ],
- [
- 16.23861,
- 48.13205
- ],
- [
- 16.23843,
- 48.13716
- ],
- [
- 16.22081,
- 48.13555
- ],
- [
- 16.20986,
- 48.14762
- ],
- [
- 16.22321,
- 48.15318
- ],
- [
- 16.19798,
- 48.15454
- ],
- [
- 16.19619,
- 48.16396
- ],
- [
- 16.18183,
- 48.17112
- ],
- [
- 16.19981,
- 48.18616
- ],
- [
- 16.20739,
- 48.20235
- ],
- [
- 16.20194,
- 48.20479
- ],
- [
- 16.20962,
- 48.20963
- ],
- [
- 16.1976,
- 48.21479
- ],
- [
- 16.19778,
- 48.22288
- ],
- [
- 16.18517,
- 48.2232
- ],
- [
- 16.19911,
- 48.22858
- ],
- [
- 16.19251,
- 48.23671
- ],
- [
- 16.20677,
- 48.26483
- ],
- [
- 16.24105,
- 48.24837
- ],
- [
- 16.24154,
- 48.23832
- ],
- [
- 16.25662,
- 48.23988
- ],
- [
- 16.27043,
- 48.25193
- ],
- [
- 16.26406,
- 48.25492
- ],
- [
- 16.28556,
- 48.25832
- ],
- [
- 16.29412,
- 48.26395
- ],
- [
- 16.28617,
- 48.2667
- ],
- [
- 16.28901,
- 48.27051
- ],
- [
- 16.32741,
- 48.27721
- ],
- [
- 16.34813,
- 48.29048
- ],
- [
- 16.35351,
- 48.28369
- ],
- [
- 16.3706,
- 48.2817
- ],
- [
- 16.36714,
- 48.28685
- ],
- [
- 16.37787,
- 48.28832
- ],
- [
- 16.37557,
- 48.29592
- ],
- [
- 16.37982,
- 48.30201
- ],
- [
- 16.38536,
- 48.30146
- ],
- [
- 16.38043,
- 48.31507
- ],
- [
- 16.39518,
- 48.32257
- ],
- [
- 16.39412,
- 48.31926
- ],
- [
- 16.40287,
- 48.31676
- ],
- [
- 16.41682,
- 48.32253
- ],
- [
- 16.43803,
- 48.31628
- ],
- [
- 16.44041,
- 48.29192
- ],
- [
- 16.47547,
- 48.27501
- ],
- [
- 16.48123,
- 48.27343
- ],
- [
- 16.4835,
- 48.27971
- ],
- [
- 16.48132,
- 48.29351
- ],
- [
- 16.49645,
- 48.29249
- ],
- [
- 16.51491,
- 48.28554
- ],
- [
- 16.5067,
- 48.2736
- ],
- [
- 16.51285,
- 48.26784
- ],
- [
- 16.53263,
- 48.2621
- ],
- [
- 16.54697,
- 48.263
- ],
- [
- 16.53941,
- 48.24284
- ],
- [
- 16.55274,
- 48.239
- ],
- [
- 16.53627,
- 48.20044
- ],
- [
- 16.54184,
- 48.18206
- ],
- [
- 16.53631,
- 48.17755
- ],
- [
- 16.54475,
- 48.17286
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Stadt Wien",
- "url": "https://data.wien.gv.at"
- },
- "category": "map",
- "country_code": "AT",
- "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif",
- "id": "wien.gv.at-gp",
- "max_zoom": 19,
- "min_zoom": 10,
- "name": "Vienna: Mehrzweckkarte (general purpose)",
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://maps.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.14995,
- 48.10832
- ],
- [
- 16.14989,
- 48.33315
- ],
- [
- 16.61873,
- 48.33296
- ],
- [
- 16.61749,
- 48.10813
- ],
- [
- 16.46644,
- 48.10819
- ],
- [
- 16.46644,
- 48.10744
- ],
- [
- 16.18104,
- 48.10756
- ],
- [
- 16.18104,
- 48.10831
- ],
- [
- 16.14995,
- 48.10832
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Stadt Wien",
- "url": "https://data.wien.gv.at"
- },
- "category": "photo",
- "country_code": "AT",
- "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif",
- "id": "wien.gv.at-aerial_image",
- "max_zoom": 19,
- "min_zoom": 10,
- "name": "Vienna: Orthofoto (aerial image)",
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://maps.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.96805,
- 47.54631
- ],
- [
- 9.96809,
- 47.54627
- ],
- [
- 9.97125,
- 47.54425
- ],
- [
- 9.96484,
- 47.53803
- ],
- [
- 9.9684,
- 47.52802
- ],
- [
- 9.96526,
- 47.52089
- ],
- [
- 9.99569,
- 47.50278
- ],
- [
- 9.98736,
- 47.49847
- ],
- [
- 10.00076,
- 47.48211
- ],
- [
- 10.02301,
- 47.48411
- ],
- [
- 10.03743,
- 47.48918
- ],
- [
- 10.04477,
- 47.48762
- ],
- [
- 10.05413,
- 47.47589
- ],
- [
- 10.05347,
- 47.46686
- ],
- [
- 10.06468,
- 47.46364
- ],
- [
- 10.06999,
- 47.45595
- ],
- [
- 10.08057,
- 47.45536
- ],
- [
- 10.08857,
- 47.46029
- ],
- [
- 10.09164,
- 47.45893
- ],
- [
- 10.09385,
- 47.44046
- ],
- [
- 10.10559,
- 47.42872
- ],
- [
- 10.09374,
- 47.41688
- ],
- [
- 10.07418,
- 47.41472
- ],
- [
- 10.06914,
- 47.41018
- ],
- [
- 10.08624,
- 47.39952
- ],
- [
- 10.08284,
- 47.39381
- ],
- [
- 10.09984,
- 47.35476
- ],
- [
- 10.11934,
- 47.37561
- ],
- [
- 10.14169,
- 47.36718
- ],
- [
- 10.16587,
- 47.36887
- ],
- [
- 10.16958,
- 47.3713
- ],
- [
- 10.1694,
- 47.38583
- ],
- [
- 10.1813,
- 47.38725
- ],
- [
- 10.18185,
- 47.39243
- ],
- [
- 10.19508,
- 47.38935
- ],
- [
- 10.19988,
- 47.38334
- ],
- [
- 10.21259,
- 47.38039
- ],
- [
- 10.22705,
- 47.38889
- ],
- [
- 10.23619,
- 47.38192
- ],
- [
- 10.23168,
- 47.37897
- ],
- [
- 10.23716,
- 47.37357
- ],
- [
- 10.21699,
- 47.35436
- ],
- [
- 10.2171,
- 47.34988
- ],
- [
- 10.20424,
- 47.33675
- ],
- [
- 10.20742,
- 47.33232
- ],
- [
- 10.19951,
- 47.32646
- ],
- [
- 10.21113,
- 47.31898
- ],
- [
- 10.21597,
- 47.31106
- ],
- [
- 10.21236,
- 47.31122
- ],
- [
- 10.19913,
- 47.29754
- ],
- [
- 10.18964,
- 47.29394
- ],
- [
- 10.17961,
- 47.29603
- ],
- [
- 10.17208,
- 47.27908
- ],
- [
- 10.17404,
- 47.27025
- ],
- [
- 10.17834,
- 47.27011
- ],
- [
- 10.17449,
- 47.2637
- ],
- [
- 10.21884,
- 47.25533
- ],
- [
- 10.22343,
- 47.24983
- ],
- [
- 10.21087,
- 47.2478
- ],
- [
- 10.19776,
- 47.23666
- ],
- [
- 10.20791,
- 47.2328
- ],
- [
- 10.21428,
- 47.21684
- ],
- [
- 10.21269,
- 47.20432
- ],
- [
- 10.19963,
- 47.19539
- ],
- [
- 10.19951,
- 47.18525
- ],
- [
- 10.21151,
- 47.17124
- ],
- [
- 10.2092,
- 47.16537
- ],
- [
- 10.20851,
- 47.15948
- ],
- [
- 10.21321,
- 47.1577
- ],
- [
- 10.2222,
- 47.15323
- ],
- [
- 10.22166,
- 47.14925
- ],
- [
- 10.21481,
- 47.14352
- ],
- [
- 10.20333,
- 47.14215
- ],
- [
- 10.20887,
- 47.13164
- ],
- [
- 10.18629,
- 47.12886
- ],
- [
- 10.18652,
- 47.11946
- ],
- [
- 10.17288,
- 47.12033
- ],
- [
- 10.16299,
- 47.11361
- ],
- [
- 10.15766,
- 47.11426
- ],
- [
- 10.15442,
- 47.10578
- ],
- [
- 10.13243,
- 47.08122
- ],
- [
- 10.13459,
- 47.06392
- ],
- [
- 10.15085,
- 47.06184
- ],
- [
- 10.15693,
- 47.04883
- ],
- [
- 10.14418,
- 47.03355
- ],
- [
- 10.12326,
- 47.02209
- ],
- [
- 10.13284,
- 47.01204
- ],
- [
- 10.15447,
- 47.00545
- ],
- [
- 10.15961,
- 46.99882
- ],
- [
- 10.15442,
- 46.99299
- ],
- [
- 10.16001,
- 46.984
- ],
- [
- 10.14463,
- 46.98301
- ],
- [
- 10.13492,
- 46.96584
- ],
- [
- 10.13501,
- 46.95483
- ],
- [
- 10.12684,
- 46.9435
- ],
- [
- 10.09772,
- 46.92676
- ],
- [
- 10.09954,
- 46.91712
- ],
- [
- 10.10921,
- 46.90834
- ],
- [
- 10.10908,
- 46.89431
- ],
- [
- 10.12497,
- 46.88014
- ],
- [
- 10.14147,
- 46.87468
- ],
- [
- 10.13967,
- 46.86217
- ],
- [
- 10.14506,
- 46.8511
- ],
- [
- 10.13941,
- 46.84738
- ],
- [
- 10.12309,
- 46.84848
- ],
- [
- 10.11912,
- 46.84417
- ],
- [
- 10.10518,
- 46.8409
- ],
- [
- 10.09195,
- 46.85143
- ],
- [
- 10.09265,
- 46.85818
- ],
- [
- 10.08712,
- 46.86128
- ],
- [
- 10.05488,
- 46.8617
- ],
- [
- 10.0509,
- 46.86442
- ],
- [
- 10.05192,
- 46.87405
- ],
- [
- 10.03891,
- 46.88611
- ],
- [
- 10.03221,
- 46.88802
- ],
- [
- 10.01782,
- 46.90161
- ],
- [
- 10.00494,
- 46.89889
- ],
- [
- 9.98243,
- 46.9062
- ],
- [
- 9.97793,
- 46.91603
- ],
- [
- 9.96657,
- 46.91222
- ],
- [
- 9.95907,
- 46.91602
- ],
- [
- 9.94612,
- 46.91235
- ],
- [
- 9.93758,
- 46.91324
- ],
- [
- 9.92153,
- 46.91882
- ],
- [
- 9.91231,
- 46.92606
- ],
- [
- 9.90632,
- 46.9253
- ],
- [
- 9.89449,
- 46.93164
- ],
- [
- 9.87613,
- 46.93463
- ],
- [
- 9.88071,
- 46.94011
- ],
- [
- 9.87657,
- 46.94071
- ],
- [
- 9.87488,
- 46.95039
- ],
- [
- 9.87872,
- 46.95707
- ],
- [
- 9.87073,
- 46.96321
- ],
- [
- 9.88482,
- 46.98546
- ],
- [
- 9.8923,
- 46.99036
- ],
- [
- 9.88878,
- 47.00072
- ],
- [
- 9.8707,
- 47.00965
- ],
- [
- 9.87115,
- 47.01306
- ],
- [
- 9.88035,
- 47.01722
- ],
- [
- 9.87779,
- 47.02055
- ],
- [
- 9.85974,
- 47.02321
- ],
- [
- 9.85273,
- 47.01641
- ],
- [
- 9.83612,
- 47.01253
- ],
- [
- 9.82353,
- 47.01986
- ],
- [
- 9.80756,
- 47.02356
- ],
- [
- 9.78491,
- 47.03849
- ],
- [
- 9.74808,
- 47.03692
- ],
- [
- 9.74185,
- 47.04268
- ],
- [
- 9.71821,
- 47.04337
- ],
- [
- 9.70701,
- 47.04805
- ],
- [
- 9.7076,
- 47.05381
- ],
- [
- 9.69756,
- 47.05239
- ],
- [
- 9.68392,
- 47.05765
- ],
- [
- 9.68184,
- 47.0621
- ],
- [
- 9.67743,
- 47.06141
- ],
- [
- 9.65821,
- 47.05818
- ],
- [
- 9.64506,
- 47.05978
- ],
- [
- 9.64158,
- 47.05598
- ],
- [
- 9.63654,
- 47.0517
- ],
- [
- 9.62633,
- 47.05133
- ],
- [
- 9.60705,
- 47.06077
- ],
- [
- 9.6134,
- 47.0695
- ],
- [
- 9.61153,
- 47.0794
- ],
- [
- 9.61869,
- 47.07817
- ],
- [
- 9.62339,
- 47.08258
- ],
- [
- 9.63346,
- 47.08344
- ],
- [
- 9.63564,
- 47.09553
- ],
- [
- 9.62858,
- 47.10756
- ],
- [
- 9.62083,
- 47.11032
- ],
- [
- 9.63503,
- 47.12813
- ],
- [
- 9.62467,
- 47.13265
- ],
- [
- 9.62258,
- 47.14135
- ],
- [
- 9.62587,
- 47.1459
- ],
- [
- 9.62059,
- 47.15164
- ],
- [
- 9.6089,
- 47.14775
- ],
- [
- 9.59679,
- 47.16294
- ],
- [
- 9.57946,
- 47.17116
- ],
- [
- 9.56456,
- 47.17029
- ],
- [
- 9.57302,
- 47.1756
- ],
- [
- 9.57259,
- 47.19079
- ],
- [
- 9.58032,
- 47.19578
- ],
- [
- 9.58477,
- 47.20532
- ],
- [
- 9.5687,
- 47.21968
- ],
- [
- 9.55851,
- 47.22416
- ],
- [
- 9.55176,
- 47.22377
- ],
- [
- 9.56679,
- 47.24288
- ],
- [
- 9.53073,
- 47.27058
- ],
- [
- 9.54619,
- 47.28005
- ],
- [
- 9.55634,
- 47.29829
- ],
- [
- 9.58805,
- 47.3173
- ],
- [
- 9.59966,
- 47.3455
- ],
- [
- 9.61073,
- 47.35571
- ],
- [
- 9.62446,
- 47.36615
- ],
- [
- 9.65876,
- 47.36946
- ],
- [
- 9.67255,
- 47.38021
- ],
- [
- 9.67311,
- 47.39194
- ],
- [
- 9.65162,
- 47.40463
- ],
- [
- 9.64551,
- 47.4312
- ],
- [
- 9.64512,
- 47.4378
- ],
- [
- 9.65799,
- 47.44779
- ],
- [
- 9.65898,
- 47.4522
- ],
- [
- 9.62234,
- 47.45747
- ],
- [
- 9.60904,
- 47.47054
- ],
- [
- 9.60292,
- 47.46198
- ],
- [
- 9.59514,
- 47.46331
- ],
- [
- 9.58217,
- 47.48276
- ],
- [
- 9.5622,
- 47.49592
- ],
- [
- 9.55057,
- 47.53718
- ],
- [
- 9.5827,
- 47.53592
- ],
- [
- 9.60465,
- 47.52952
- ],
- [
- 9.73478,
- 47.53396
- ],
- [
- 9.73517,
- 47.54661
- ],
- [
- 9.74164,
- 47.55499
- ],
- [
- 9.7471,
- 47.55569
- ],
- [
- 9.74337,
- 47.55867
- ],
- [
- 9.75207,
- 47.56747
- ],
- [
- 9.74806,
- 47.57052
- ],
- [
- 9.75632,
- 47.57262
- ],
- [
- 9.75633,
- 47.57963
- ],
- [
- 9.76197,
- 47.58096
- ],
- [
- 9.76553,
- 47.58912
- ],
- [
- 9.76933,
- 47.58739
- ],
- [
- 9.77697,
- 47.59544
- ],
- [
- 9.79151,
- 47.59352
- ],
- [
- 9.79999,
- 47.59611
- ],
- [
- 9.81414,
- 47.58807
- ],
- [
- 9.82381,
- 47.5871
- ],
- [
- 9.82728,
- 47.57997
- ],
- [
- 9.82079,
- 47.57076
- ],
- [
- 9.82562,
- 47.55922
- ],
- [
- 9.8171,
- 47.55333
- ],
- [
- 9.81579,
- 47.54767
- ],
- [
- 9.85023,
- 47.54164
- ],
- [
- 9.85839,
- 47.53388
- ],
- [
- 9.87451,
- 47.52854
- ],
- [
- 9.87804,
- 47.53876
- ],
- [
- 9.87515,
- 47.54343
- ],
- [
- 9.88125,
- 47.54814
- ],
- [
- 9.8891,
- 47.54399
- ],
- [
- 9.89935,
- 47.54475
- ],
- [
- 9.90666,
- 47.54217
- ],
- [
- 9.91358,
- 47.53255
- ],
- [
- 9.92189,
- 47.52964
- ],
- [
- 9.93352,
- 47.53265
- ],
- [
- 9.94108,
- 47.53822
- ],
- [
- 9.9637,
- 47.53472
- ],
- [
- 9.95883,
- 47.54313
- ],
- [
- 9.96318,
- 47.54229
- ],
- [
- 9.96805,
- 47.54631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
- "url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:31254",
- "EPSG:31284",
- "EPSG:32632",
- "EPSG:25832",
- "EPSG:21781"
- ],
- "category": "elevation",
- "country_code": "AT",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png",
- "id": "vogis.cnv.at-DGM",
- "license_url": "http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm",
- "name": "VoGIS: DGM (Terrain model)",
- "permission_osm": "explicit",
- "type": "wms",
- "url": "https://vogis.cnv.at/mapserver/mapserv?map=i_hoehen_und_gelaende_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=schummerung_50cm_terrain&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.96805,
- 47.54631
- ],
- [
- 9.96809,
- 47.54627
- ],
- [
- 9.97125,
- 47.54425
- ],
- [
- 9.96484,
- 47.53803
- ],
- [
- 9.9684,
- 47.52802
- ],
- [
- 9.96526,
- 47.52089
- ],
- [
- 9.99569,
- 47.50278
- ],
- [
- 9.98736,
- 47.49847
- ],
- [
- 10.00076,
- 47.48211
- ],
- [
- 10.02301,
- 47.48411
- ],
- [
- 10.03743,
- 47.48918
- ],
- [
- 10.04477,
- 47.48762
- ],
- [
- 10.05413,
- 47.47589
- ],
- [
- 10.05347,
- 47.46686
- ],
- [
- 10.06468,
- 47.46364
- ],
- [
- 10.06999,
- 47.45595
- ],
- [
- 10.08057,
- 47.45536
- ],
- [
- 10.08857,
- 47.46029
- ],
- [
- 10.09164,
- 47.45893
- ],
- [
- 10.09385,
- 47.44046
- ],
- [
- 10.10559,
- 47.42872
- ],
- [
- 10.09374,
- 47.41688
- ],
- [
- 10.07418,
- 47.41472
- ],
- [
- 10.06914,
- 47.41018
- ],
- [
- 10.08624,
- 47.39952
- ],
- [
- 10.08284,
- 47.39381
- ],
- [
- 10.09984,
- 47.35476
- ],
- [
- 10.11934,
- 47.37561
- ],
- [
- 10.14169,
- 47.36718
- ],
- [
- 10.16587,
- 47.36887
- ],
- [
- 10.16958,
- 47.3713
- ],
- [
- 10.1694,
- 47.38583
- ],
- [
- 10.1813,
- 47.38725
- ],
- [
- 10.18185,
- 47.39243
- ],
- [
- 10.19508,
- 47.38935
- ],
- [
- 10.19988,
- 47.38334
- ],
- [
- 10.21259,
- 47.38039
- ],
- [
- 10.22705,
- 47.38889
- ],
- [
- 10.23619,
- 47.38192
- ],
- [
- 10.23168,
- 47.37897
- ],
- [
- 10.23716,
- 47.37357
- ],
- [
- 10.21699,
- 47.35436
- ],
- [
- 10.2171,
- 47.34988
- ],
- [
- 10.20424,
- 47.33675
- ],
- [
- 10.20742,
- 47.33232
- ],
- [
- 10.19951,
- 47.32646
- ],
- [
- 10.21113,
- 47.31898
- ],
- [
- 10.21597,
- 47.31106
- ],
- [
- 10.21236,
- 47.31122
- ],
- [
- 10.19913,
- 47.29754
- ],
- [
- 10.18964,
- 47.29394
- ],
- [
- 10.17961,
- 47.29603
- ],
- [
- 10.17208,
- 47.27908
- ],
- [
- 10.17404,
- 47.27025
- ],
- [
- 10.17834,
- 47.27011
- ],
- [
- 10.17449,
- 47.2637
- ],
- [
- 10.21884,
- 47.25533
- ],
- [
- 10.22343,
- 47.24983
- ],
- [
- 10.21087,
- 47.2478
- ],
- [
- 10.19776,
- 47.23666
- ],
- [
- 10.20791,
- 47.2328
- ],
- [
- 10.21428,
- 47.21684
- ],
- [
- 10.21269,
- 47.20432
- ],
- [
- 10.19963,
- 47.19539
- ],
- [
- 10.19951,
- 47.18525
- ],
- [
- 10.21151,
- 47.17124
- ],
- [
- 10.2092,
- 47.16537
- ],
- [
- 10.20851,
- 47.15948
- ],
- [
- 10.21321,
- 47.1577
- ],
- [
- 10.2222,
- 47.15323
- ],
- [
- 10.22166,
- 47.14925
- ],
- [
- 10.21481,
- 47.14352
- ],
- [
- 10.20333,
- 47.14215
- ],
- [
- 10.20887,
- 47.13164
- ],
- [
- 10.18629,
- 47.12886
- ],
- [
- 10.18652,
- 47.11946
- ],
- [
- 10.17288,
- 47.12033
- ],
- [
- 10.16299,
- 47.11361
- ],
- [
- 10.15766,
- 47.11426
- ],
- [
- 10.15442,
- 47.10578
- ],
- [
- 10.13243,
- 47.08122
- ],
- [
- 10.13459,
- 47.06392
- ],
- [
- 10.15085,
- 47.06184
- ],
- [
- 10.15693,
- 47.04883
- ],
- [
- 10.14418,
- 47.03355
- ],
- [
- 10.12326,
- 47.02209
- ],
- [
- 10.13284,
- 47.01204
- ],
- [
- 10.15447,
- 47.00545
- ],
- [
- 10.15961,
- 46.99882
- ],
- [
- 10.15442,
- 46.99299
- ],
- [
- 10.16001,
- 46.984
- ],
- [
- 10.14463,
- 46.98301
- ],
- [
- 10.13492,
- 46.96584
- ],
- [
- 10.13501,
- 46.95483
- ],
- [
- 10.12684,
- 46.9435
- ],
- [
- 10.09772,
- 46.92676
- ],
- [
- 10.09954,
- 46.91712
- ],
- [
- 10.10921,
- 46.90834
- ],
- [
- 10.10908,
- 46.89431
- ],
- [
- 10.12497,
- 46.88014
- ],
- [
- 10.14147,
- 46.87468
- ],
- [
- 10.13967,
- 46.86217
- ],
- [
- 10.14506,
- 46.8511
- ],
- [
- 10.13941,
- 46.84738
- ],
- [
- 10.12309,
- 46.84848
- ],
- [
- 10.11912,
- 46.84417
- ],
- [
- 10.10518,
- 46.8409
- ],
- [
- 10.09195,
- 46.85143
- ],
- [
- 10.09265,
- 46.85818
- ],
- [
- 10.08712,
- 46.86128
- ],
- [
- 10.05488,
- 46.8617
- ],
- [
- 10.0509,
- 46.86442
- ],
- [
- 10.05192,
- 46.87405
- ],
- [
- 10.03891,
- 46.88611
- ],
- [
- 10.03221,
- 46.88802
- ],
- [
- 10.01782,
- 46.90161
- ],
- [
- 10.00494,
- 46.89889
- ],
- [
- 9.98243,
- 46.9062
- ],
- [
- 9.97793,
- 46.91603
- ],
- [
- 9.96657,
- 46.91222
- ],
- [
- 9.95907,
- 46.91602
- ],
- [
- 9.94612,
- 46.91235
- ],
- [
- 9.93758,
- 46.91324
- ],
- [
- 9.92153,
- 46.91882
- ],
- [
- 9.91231,
- 46.92606
- ],
- [
- 9.90632,
- 46.9253
- ],
- [
- 9.89449,
- 46.93164
- ],
- [
- 9.87613,
- 46.93463
- ],
- [
- 9.88071,
- 46.94011
- ],
- [
- 9.87657,
- 46.94071
- ],
- [
- 9.87488,
- 46.95039
- ],
- [
- 9.87872,
- 46.95707
- ],
- [
- 9.87073,
- 46.96321
- ],
- [
- 9.88482,
- 46.98546
- ],
- [
- 9.8923,
- 46.99036
- ],
- [
- 9.88878,
- 47.00072
- ],
- [
- 9.8707,
- 47.00965
- ],
- [
- 9.87115,
- 47.01306
- ],
- [
- 9.88035,
- 47.01722
- ],
- [
- 9.87779,
- 47.02055
- ],
- [
- 9.85974,
- 47.02321
- ],
- [
- 9.85273,
- 47.01641
- ],
- [
- 9.83612,
- 47.01253
- ],
- [
- 9.82353,
- 47.01986
- ],
- [
- 9.80756,
- 47.02356
- ],
- [
- 9.78491,
- 47.03849
- ],
- [
- 9.74808,
- 47.03692
- ],
- [
- 9.74185,
- 47.04268
- ],
- [
- 9.71821,
- 47.04337
- ],
- [
- 9.70701,
- 47.04805
- ],
- [
- 9.7076,
- 47.05381
- ],
- [
- 9.69756,
- 47.05239
- ],
- [
- 9.68392,
- 47.05765
- ],
- [
- 9.68184,
- 47.0621
- ],
- [
- 9.67743,
- 47.06141
- ],
- [
- 9.65821,
- 47.05818
- ],
- [
- 9.64506,
- 47.05978
- ],
- [
- 9.64158,
- 47.05598
- ],
- [
- 9.63654,
- 47.0517
- ],
- [
- 9.62633,
- 47.05133
- ],
- [
- 9.60705,
- 47.06077
- ],
- [
- 9.6134,
- 47.0695
- ],
- [
- 9.61153,
- 47.0794
- ],
- [
- 9.61869,
- 47.07817
- ],
- [
- 9.62339,
- 47.08258
- ],
- [
- 9.63346,
- 47.08344
- ],
- [
- 9.63564,
- 47.09553
- ],
- [
- 9.62858,
- 47.10756
- ],
- [
- 9.62083,
- 47.11032
- ],
- [
- 9.63503,
- 47.12813
- ],
- [
- 9.62467,
- 47.13265
- ],
- [
- 9.62258,
- 47.14135
- ],
- [
- 9.62587,
- 47.1459
- ],
- [
- 9.62059,
- 47.15164
- ],
- [
- 9.6089,
- 47.14775
- ],
- [
- 9.59679,
- 47.16294
- ],
- [
- 9.57946,
- 47.17116
- ],
- [
- 9.56456,
- 47.17029
- ],
- [
- 9.57302,
- 47.1756
- ],
- [
- 9.57259,
- 47.19079
- ],
- [
- 9.58032,
- 47.19578
- ],
- [
- 9.58477,
- 47.20532
- ],
- [
- 9.5687,
- 47.21968
- ],
- [
- 9.55851,
- 47.22416
- ],
- [
- 9.55176,
- 47.22377
- ],
- [
- 9.56679,
- 47.24288
- ],
- [
- 9.53073,
- 47.27058
- ],
- [
- 9.54619,
- 47.28005
- ],
- [
- 9.55634,
- 47.29829
- ],
- [
- 9.58805,
- 47.3173
- ],
- [
- 9.59966,
- 47.3455
- ],
- [
- 9.61073,
- 47.35571
- ],
- [
- 9.62446,
- 47.36615
- ],
- [
- 9.65876,
- 47.36946
- ],
- [
- 9.67255,
- 47.38021
- ],
- [
- 9.67311,
- 47.39194
- ],
- [
- 9.65162,
- 47.40463
- ],
- [
- 9.64551,
- 47.4312
- ],
- [
- 9.64512,
- 47.4378
- ],
- [
- 9.65799,
- 47.44779
- ],
- [
- 9.65898,
- 47.4522
- ],
- [
- 9.62234,
- 47.45747
- ],
- [
- 9.60904,
- 47.47054
- ],
- [
- 9.60292,
- 47.46198
- ],
- [
- 9.59514,
- 47.46331
- ],
- [
- 9.58217,
- 47.48276
- ],
- [
- 9.5622,
- 47.49592
- ],
- [
- 9.55057,
- 47.53718
- ],
- [
- 9.5827,
- 47.53592
- ],
- [
- 9.60465,
- 47.52952
- ],
- [
- 9.73478,
- 47.53396
- ],
- [
- 9.73517,
- 47.54661
- ],
- [
- 9.74164,
- 47.55499
- ],
- [
- 9.7471,
- 47.55569
- ],
- [
- 9.74337,
- 47.55867
- ],
- [
- 9.75207,
- 47.56747
- ],
- [
- 9.74806,
- 47.57052
- ],
- [
- 9.75632,
- 47.57262
- ],
- [
- 9.75633,
- 47.57963
- ],
- [
- 9.76197,
- 47.58096
- ],
- [
- 9.76553,
- 47.58912
- ],
- [
- 9.76933,
- 47.58739
- ],
- [
- 9.77697,
- 47.59544
- ],
- [
- 9.79151,
- 47.59352
- ],
- [
- 9.79999,
- 47.59611
- ],
- [
- 9.81414,
- 47.58807
- ],
- [
- 9.82381,
- 47.5871
- ],
- [
- 9.82728,
- 47.57997
- ],
- [
- 9.82079,
- 47.57076
- ],
- [
- 9.82562,
- 47.55922
- ],
- [
- 9.8171,
- 47.55333
- ],
- [
- 9.81579,
- 47.54767
- ],
- [
- 9.85023,
- 47.54164
- ],
- [
- 9.85839,
- 47.53388
- ],
- [
- 9.87451,
- 47.52854
- ],
- [
- 9.87804,
- 47.53876
- ],
- [
- 9.87515,
- 47.54343
- ],
- [
- 9.88125,
- 47.54814
- ],
- [
- 9.8891,
- 47.54399
- ],
- [
- 9.89935,
- 47.54475
- ],
- [
- 9.90666,
- 47.54217
- ],
- [
- 9.91358,
- 47.53255
- ],
- [
- 9.92189,
- 47.52964
- ],
- [
- 9.93352,
- 47.53265
- ],
- [
- 9.94108,
- 47.53822
- ],
- [
- 9.9637,
- 47.53472
- ],
- [
- 9.95883,
- 47.54313
- ],
- [
- 9.96318,
- 47.54229
- ],
- [
- 9.96805,
- 47.54631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
- "url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:31254",
- "EPSG:31284",
- "EPSG:32632",
- "EPSG:25832",
- "EPSG:21781"
- ],
- "category": "elevation",
- "country_code": "AT",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png",
- "id": "vogis.cnv.at-DOM",
- "license_url": "http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm",
- "name": "VoGIS: DOM (Surface model)",
- "permission_osm": "explicit",
- "type": "wms",
- "url": "https://vogis.cnv.at/mapserver/mapserv?map=i_hoehen_und_gelaende_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=schummerung_50cm_surface&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.54367,
- 47.48479
- ],
- [
- 9.61451,
- 47.45058
- ],
- [
- 9.61359,
- 47.38272
- ],
- [
- 9.44246,
- 47.24798
- ],
- [
- 9.44614,
- 47.096
- ],
- [
- 9.42866,
- 47.08911
- ],
- [
- 9.42498,
- 47.01513
- ],
- [
- 9.85281,
- 47.00196
- ],
- [
- 9.85741,
- 46.89896
- ],
- [
- 9.9669,
- 46.88952
- ],
- [
- 10.04511,
- 46.8499
- ],
- [
- 10.15828,
- 46.83353
- ],
- [
- 10.1592,
- 46.89204
- ],
- [
- 10.14718,
- 46.89248
- ],
- [
- 10.15115,
- 46.94331
- ],
- [
- 10.16317,
- 46.94287
- ],
- [
- 10.1647,
- 46.96238
- ],
- [
- 10.17852,
- 46.96681
- ],
- [
- 10.17576,
- 47.10351
- ],
- [
- 10.22912,
- 47.10226
- ],
- [
- 10.22084,
- 47.24361
- ],
- [
- 10.26133,
- 47.41261
- ],
- [
- 10.12423,
- 47.40576
- ],
- [
- 10.09387,
- 47.47795
- ],
- [
- 10.00462,
- 47.50717
- ],
- [
- 9.98622,
- 47.56121
- ],
- [
- 9.84361,
- 47.56245
- ],
- [
- 9.84085,
- 47.60714
- ],
- [
- 9.53999,
- 47.60652
- ],
- [
- 9.54367,
- 47.48479
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
- "url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:31254",
- "EPSG:31284",
- "EPSG:32632",
- "EPSG:25832",
- "EPSG:21781"
- ],
- "category": "historicphoto",
- "country_code": "AT",
- "end_date": "2012",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png",
- "id": "vogis.cnv.at-ef2012_12cm",
- "license_url": "http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm",
- "name": "VoGIS: Echtfarbenbild 2012 (12cm)",
- "permission_osm": "explicit",
- "start_date": "2012",
- "type": "wms",
- "url": "https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2012_12cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.54367,
- 47.48479
- ],
- [
- 9.61451,
- 47.45058
- ],
- [
- 9.61359,
- 47.38272
- ],
- [
- 9.44246,
- 47.24798
- ],
- [
- 9.44614,
- 47.096
- ],
- [
- 9.42866,
- 47.08911
- ],
- [
- 9.42498,
- 47.01513
- ],
- [
- 9.85281,
- 47.00196
- ],
- [
- 9.85741,
- 46.89896
- ],
- [
- 9.9669,
- 46.88952
- ],
- [
- 10.04511,
- 46.8499
- ],
- [
- 10.15828,
- 46.83353
- ],
- [
- 10.1592,
- 46.89204
- ],
- [
- 10.14718,
- 46.89248
- ],
- [
- 10.15115,
- 46.94331
- ],
- [
- 10.16317,
- 46.94287
- ],
- [
- 10.1647,
- 46.96238
- ],
- [
- 10.17852,
- 46.96681
- ],
- [
- 10.17576,
- 47.10351
- ],
- [
- 10.22912,
- 47.10226
- ],
- [
- 10.22084,
- 47.24361
- ],
- [
- 10.26133,
- 47.41261
- ],
- [
- 10.12423,
- 47.40576
- ],
- [
- 10.09387,
- 47.47795
- ],
- [
- 10.00462,
- 47.50717
- ],
- [
- 9.98622,
- 47.56121
- ],
- [
- 9.84361,
- 47.56245
- ],
- [
- 9.84085,
- 47.60714
- ],
- [
- 9.53999,
- 47.60652
- ],
- [
- 9.54367,
- 47.48479
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
- "url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:31254",
- "EPSG:31284",
- "EPSG:32632",
- "EPSG:25832",
- "EPSG:21781"
- ],
- "category": "historicphoto",
- "country_code": "AT",
- "end_date": "2015",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png",
- "id": "vogis.cnv.at-ef2015_10cm",
- "license_url": "http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm",
- "name": "VoGIS: Echtfarbenbild 2015 (10cm)",
- "permission_osm": "explicit",
- "start_date": "2015",
- "type": "wms",
- "url": "https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2015_10cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.54367,
- 47.48479
- ],
- [
- 9.61451,
- 47.45058
- ],
- [
- 9.61359,
- 47.38272
- ],
- [
- 9.44246,
- 47.24798
- ],
- [
- 9.44614,
- 47.096
- ],
- [
- 9.42866,
- 47.08911
- ],
- [
- 9.42498,
- 47.01513
- ],
- [
- 9.85281,
- 47.00196
- ],
- [
- 9.85741,
- 46.89896
- ],
- [
- 9.9669,
- 46.88952
- ],
- [
- 10.04511,
- 46.8499
- ],
- [
- 10.15828,
- 46.83353
- ],
- [
- 10.1592,
- 46.89204
- ],
- [
- 10.14718,
- 46.89248
- ],
- [
- 10.15115,
- 46.94331
- ],
- [
- 10.16317,
- 46.94287
- ],
- [
- 10.1647,
- 46.96238
- ],
- [
- 10.17852,
- 46.96681
- ],
- [
- 10.17576,
- 47.10351
- ],
- [
- 10.22912,
- 47.10226
- ],
- [
- 10.22084,
- 47.24361
- ],
- [
- 10.26133,
- 47.41261
- ],
- [
- 10.12423,
- 47.40576
- ],
- [
- 10.09387,
- 47.47795
- ],
- [
- 10.00462,
- 47.50717
- ],
- [
- 9.98622,
- 47.56121
- ],
- [
- 9.84361,
- 47.56245
- ],
- [
- 9.84085,
- 47.60714
- ],
- [
- 9.53999,
- 47.60652
- ],
- [
- 9.54367,
- 47.48479
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
- "url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:31254",
- "EPSG:31284",
- "EPSG:32632",
- "EPSG:25832",
- "EPSG:21781"
- ],
- "category": "photo",
- "country_code": "AT",
- "end_date": "2018",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png",
- "id": "vogis.cnv.at-ef2018_10cm",
- "license_url": "http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm",
- "name": "VoGIS: Echtfarbenbild 2018 (10cm)",
- "permission_osm": "explicit",
- "start_date": "2018",
- "type": "wms",
- "url": "https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2018_10cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.17039,
- 46.82979
- ],
- [
- 10.17108,
- 46.93644
- ],
- [
- 10.18413,
- 46.94113
- ],
- [
- 10.1855,
- 47.10157
- ],
- [
- 10.23906,
- 47.10437
- ],
- [
- 10.24283,
- 47.15611
- ],
- [
- 10.25691,
- 47.18704
- ],
- [
- 10.24558,
- 47.27597
- ],
- [
- 10.25313,
- 47.32347
- ],
- [
- 10.26893,
- 47.32626
- ],
- [
- 10.26446,
- 47.41102
- ],
- [
- 10.13194,
- 47.4087
- ],
- [
- 10.13434,
- 47.46107
- ],
- [
- 10.11752,
- 47.46153
- ],
- [
- 10.11889,
- 47.47337
- ],
- [
- 10.08731,
- 47.47429
- ],
- [
- 10.08491,
- 47.50724
- ],
- [
- 10.06843,
- 47.507
- ],
- [
- 10.0674,
- 47.5215
- ],
- [
- 10.02345,
- 47.52428
- ],
- [
- 10.00079,
- 47.57943
- ],
- [
- 9.84904,
- 47.57757
- ],
- [
- 9.85042,
- 47.61462
- ],
- [
- 9.72751,
- 47.61277
- ],
- [
- 9.7203,
- 47.59089
- ],
- [
- 9.70347,
- 47.58915
- ],
- [
- 9.70313,
- 47.54491
- ],
- [
- 9.68219,
- 47.54491
- ],
- [
- 9.68047,
- 47.55348
- ],
- [
- 9.56391,
- 47.54931
- ],
- [
- 9.56202,
- 47.53958
- ],
- [
- 9.55172,
- 47.53958
- ],
- [
- 9.55172,
- 47.53402
- ],
- [
- 9.52168,
- 47.53471
- ],
- [
- 9.52701,
- 47.30497
- ],
- [
- 9.50503,
- 47.30264
- ],
- [
- 9.50091,
- 47.23368
- ],
- [
- 9.52357,
- 47.23228
- ],
- [
- 9.52426,
- 47.16557
- ],
- [
- 9.54486,
- 47.16405
- ],
- [
- 9.54383,
- 47.15448
- ],
- [
- 9.57232,
- 47.15401
- ],
- [
- 9.57026,
- 47.12809
- ],
- [
- 9.59018,
- 47.12867
- ],
- [
- 9.59189,
- 47.10029
- ],
- [
- 9.57232,
- 47.10017
- ],
- [
- 9.57713,
- 47.02861
- ],
- [
- 9.72407,
- 47.03048
- ],
- [
- 9.72304,
- 47.01749
- ],
- [
- 9.77454,
- 47.01562
- ],
- [
- 9.77626,
- 47.00555
- ],
- [
- 9.79274,
- 47.00391
- ],
- [
- 9.7948,
- 46.99127
- ],
- [
- 9.83874,
- 46.99314
- ],
- [
- 9.84012,
- 46.90349
- ],
- [
- 9.89024,
- 46.90725
- ],
- [
- 9.88543,
- 46.88707
- ],
- [
- 9.95925,
- 46.89141
- ],
- [
- 9.962,
- 46.87675
- ],
- [
- 10.0001,
- 46.87862
- ],
- [
- 9.99667,
- 46.85715
- ],
- [
- 10.01864,
- 46.85656
- ],
- [
- 10.02345,
- 46.83073
- ],
- [
- 10.17039,
- 46.82979
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
- "url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:31254",
- "EPSG:31284",
- "EPSG:32632",
- "EPSG:25832",
- "EPSG:21781"
- ],
- "category": "historicphoto",
- "country_code": "AT",
- "end_date": "2015",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png",
- "id": "vogis.cnv.at-wi2015_20cm",
- "license_url": "http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm",
- "name": "VoGIS: Echtfarbenbild Winter 2015 (20cm)",
- "permission_osm": "explicit",
- "start_date": "2015",
- "type": "wms",
- "url": "https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=wi2015_20cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.96805,
- 47.54631
- ],
- [
- 9.96809,
- 47.54627
- ],
- [
- 9.97125,
- 47.54425
- ],
- [
- 9.96484,
- 47.53803
- ],
- [
- 9.9684,
- 47.52802
- ],
- [
- 9.96526,
- 47.52089
- ],
- [
- 9.99569,
- 47.50278
- ],
- [
- 9.98736,
- 47.49847
- ],
- [
- 10.00076,
- 47.48211
- ],
- [
- 10.02301,
- 47.48411
- ],
- [
- 10.03743,
- 47.48918
- ],
- [
- 10.04477,
- 47.48762
- ],
- [
- 10.05413,
- 47.47589
- ],
- [
- 10.05347,
- 47.46686
- ],
- [
- 10.06468,
- 47.46364
- ],
- [
- 10.06999,
- 47.45595
- ],
- [
- 10.08057,
- 47.45536
- ],
- [
- 10.08857,
- 47.46029
- ],
- [
- 10.09164,
- 47.45893
- ],
- [
- 10.09385,
- 47.44046
- ],
- [
- 10.10559,
- 47.42872
- ],
- [
- 10.09374,
- 47.41688
- ],
- [
- 10.07418,
- 47.41472
- ],
- [
- 10.06914,
- 47.41018
- ],
- [
- 10.08624,
- 47.39952
- ],
- [
- 10.08284,
- 47.39381
- ],
- [
- 10.09984,
- 47.35476
- ],
- [
- 10.11934,
- 47.37561
- ],
- [
- 10.14169,
- 47.36718
- ],
- [
- 10.16587,
- 47.36887
- ],
- [
- 10.16958,
- 47.3713
- ],
- [
- 10.1694,
- 47.38583
- ],
- [
- 10.1813,
- 47.38725
- ],
- [
- 10.18185,
- 47.39243
- ],
- [
- 10.19508,
- 47.38935
- ],
- [
- 10.19988,
- 47.38334
- ],
- [
- 10.21259,
- 47.38039
- ],
- [
- 10.22705,
- 47.38889
- ],
- [
- 10.23619,
- 47.38192
- ],
- [
- 10.23168,
- 47.37897
- ],
- [
- 10.23716,
- 47.37357
- ],
- [
- 10.21699,
- 47.35436
- ],
- [
- 10.2171,
- 47.34988
- ],
- [
- 10.20424,
- 47.33675
- ],
- [
- 10.20742,
- 47.33232
- ],
- [
- 10.19951,
- 47.32646
- ],
- [
- 10.21113,
- 47.31898
- ],
- [
- 10.21597,
- 47.31106
- ],
- [
- 10.21236,
- 47.31122
- ],
- [
- 10.19913,
- 47.29754
- ],
- [
- 10.18964,
- 47.29394
- ],
- [
- 10.17961,
- 47.29603
- ],
- [
- 10.17208,
- 47.27908
- ],
- [
- 10.17404,
- 47.27025
- ],
- [
- 10.17834,
- 47.27011
- ],
- [
- 10.17449,
- 47.2637
- ],
- [
- 10.21884,
- 47.25533
- ],
- [
- 10.22343,
- 47.24983
- ],
- [
- 10.21087,
- 47.2478
- ],
- [
- 10.19776,
- 47.23666
- ],
- [
- 10.20791,
- 47.2328
- ],
- [
- 10.21428,
- 47.21684
- ],
- [
- 10.21269,
- 47.20432
- ],
- [
- 10.19963,
- 47.19539
- ],
- [
- 10.19951,
- 47.18525
- ],
- [
- 10.21151,
- 47.17124
- ],
- [
- 10.2092,
- 47.16537
- ],
- [
- 10.20851,
- 47.15948
- ],
- [
- 10.21321,
- 47.1577
- ],
- [
- 10.2222,
- 47.15323
- ],
- [
- 10.22166,
- 47.14925
- ],
- [
- 10.21481,
- 47.14352
- ],
- [
- 10.20333,
- 47.14215
- ],
- [
- 10.20887,
- 47.13164
- ],
- [
- 10.18629,
- 47.12886
- ],
- [
- 10.18652,
- 47.11946
- ],
- [
- 10.17288,
- 47.12033
- ],
- [
- 10.16299,
- 47.11361
- ],
- [
- 10.15766,
- 47.11426
- ],
- [
- 10.15442,
- 47.10578
- ],
- [
- 10.13243,
- 47.08122
- ],
- [
- 10.13459,
- 47.06392
- ],
- [
- 10.15085,
- 47.06184
- ],
- [
- 10.15693,
- 47.04883
- ],
- [
- 10.14418,
- 47.03355
- ],
- [
- 10.12326,
- 47.02209
- ],
- [
- 10.13284,
- 47.01204
- ],
- [
- 10.15447,
- 47.00545
- ],
- [
- 10.15961,
- 46.99882
- ],
- [
- 10.15442,
- 46.99299
- ],
- [
- 10.16001,
- 46.984
- ],
- [
- 10.14463,
- 46.98301
- ],
- [
- 10.13492,
- 46.96584
- ],
- [
- 10.13501,
- 46.95483
- ],
- [
- 10.12684,
- 46.9435
- ],
- [
- 10.09772,
- 46.92676
- ],
- [
- 10.09954,
- 46.91712
- ],
- [
- 10.10921,
- 46.90834
- ],
- [
- 10.10908,
- 46.89431
- ],
- [
- 10.12497,
- 46.88014
- ],
- [
- 10.14147,
- 46.87468
- ],
- [
- 10.13967,
- 46.86217
- ],
- [
- 10.14506,
- 46.8511
- ],
- [
- 10.13941,
- 46.84738
- ],
- [
- 10.12309,
- 46.84848
- ],
- [
- 10.11912,
- 46.84417
- ],
- [
- 10.10518,
- 46.8409
- ],
- [
- 10.09195,
- 46.85143
- ],
- [
- 10.09265,
- 46.85818
- ],
- [
- 10.08712,
- 46.86128
- ],
- [
- 10.05488,
- 46.8617
- ],
- [
- 10.0509,
- 46.86442
- ],
- [
- 10.05192,
- 46.87405
- ],
- [
- 10.03891,
- 46.88611
- ],
- [
- 10.03221,
- 46.88802
- ],
- [
- 10.01782,
- 46.90161
- ],
- [
- 10.00494,
- 46.89889
- ],
- [
- 9.98243,
- 46.9062
- ],
- [
- 9.97793,
- 46.91603
- ],
- [
- 9.96657,
- 46.91222
- ],
- [
- 9.95907,
- 46.91602
- ],
- [
- 9.94612,
- 46.91235
- ],
- [
- 9.93758,
- 46.91324
- ],
- [
- 9.92153,
- 46.91882
- ],
- [
- 9.91231,
- 46.92606
- ],
- [
- 9.90632,
- 46.9253
- ],
- [
- 9.89449,
- 46.93164
- ],
- [
- 9.87613,
- 46.93463
- ],
- [
- 9.88071,
- 46.94011
- ],
- [
- 9.87657,
- 46.94071
- ],
- [
- 9.87488,
- 46.95039
- ],
- [
- 9.87872,
- 46.95707
- ],
- [
- 9.87073,
- 46.96321
- ],
- [
- 9.88482,
- 46.98546
- ],
- [
- 9.8923,
- 46.99036
- ],
- [
- 9.88878,
- 47.00072
- ],
- [
- 9.8707,
- 47.00965
- ],
- [
- 9.87115,
- 47.01306
- ],
- [
- 9.88035,
- 47.01722
- ],
- [
- 9.87779,
- 47.02055
- ],
- [
- 9.85974,
- 47.02321
- ],
- [
- 9.85273,
- 47.01641
- ],
- [
- 9.83612,
- 47.01253
- ],
- [
- 9.82353,
- 47.01986
- ],
- [
- 9.80756,
- 47.02356
- ],
- [
- 9.78491,
- 47.03849
- ],
- [
- 9.74808,
- 47.03692
- ],
- [
- 9.74185,
- 47.04268
- ],
- [
- 9.71821,
- 47.04337
- ],
- [
- 9.70701,
- 47.04805
- ],
- [
- 9.7076,
- 47.05381
- ],
- [
- 9.69756,
- 47.05239
- ],
- [
- 9.68392,
- 47.05765
- ],
- [
- 9.68184,
- 47.0621
- ],
- [
- 9.67743,
- 47.06141
- ],
- [
- 9.65821,
- 47.05818
- ],
- [
- 9.64506,
- 47.05978
- ],
- [
- 9.64158,
- 47.05598
- ],
- [
- 9.63654,
- 47.0517
- ],
- [
- 9.62633,
- 47.05133
- ],
- [
- 9.60705,
- 47.06077
- ],
- [
- 9.6134,
- 47.0695
- ],
- [
- 9.61153,
- 47.0794
- ],
- [
- 9.61869,
- 47.07817
- ],
- [
- 9.62339,
- 47.08258
- ],
- [
- 9.63346,
- 47.08344
- ],
- [
- 9.63564,
- 47.09553
- ],
- [
- 9.62858,
- 47.10756
- ],
- [
- 9.62083,
- 47.11032
- ],
- [
- 9.63503,
- 47.12813
- ],
- [
- 9.62467,
- 47.13265
- ],
- [
- 9.62258,
- 47.14135
- ],
- [
- 9.62587,
- 47.1459
- ],
- [
- 9.62059,
- 47.15164
- ],
- [
- 9.6089,
- 47.14775
- ],
- [
- 9.59679,
- 47.16294
- ],
- [
- 9.57946,
- 47.17116
- ],
- [
- 9.56456,
- 47.17029
- ],
- [
- 9.57302,
- 47.1756
- ],
- [
- 9.57259,
- 47.19079
- ],
- [
- 9.58032,
- 47.19578
- ],
- [
- 9.58477,
- 47.20532
- ],
- [
- 9.5687,
- 47.21968
- ],
- [
- 9.55851,
- 47.22416
- ],
- [
- 9.55176,
- 47.22377
- ],
- [
- 9.56679,
- 47.24288
- ],
- [
- 9.53073,
- 47.27058
- ],
- [
- 9.54619,
- 47.28005
- ],
- [
- 9.55634,
- 47.29829
- ],
- [
- 9.58805,
- 47.3173
- ],
- [
- 9.59966,
- 47.3455
- ],
- [
- 9.61073,
- 47.35571
- ],
- [
- 9.62446,
- 47.36615
- ],
- [
- 9.65876,
- 47.36946
- ],
- [
- 9.67255,
- 47.38021
- ],
- [
- 9.67311,
- 47.39194
- ],
- [
- 9.65162,
- 47.40463
- ],
- [
- 9.64551,
- 47.4312
- ],
- [
- 9.64512,
- 47.4378
- ],
- [
- 9.65799,
- 47.44779
- ],
- [
- 9.65898,
- 47.4522
- ],
- [
- 9.62234,
- 47.45747
- ],
- [
- 9.60904,
- 47.47054
- ],
- [
- 9.60292,
- 47.46198
- ],
- [
- 9.59514,
- 47.46331
- ],
- [
- 9.58217,
- 47.48276
- ],
- [
- 9.5622,
- 47.49592
- ],
- [
- 9.55057,
- 47.53718
- ],
- [
- 9.5827,
- 47.53592
- ],
- [
- 9.60465,
- 47.52952
- ],
- [
- 9.73478,
- 47.53396
- ],
- [
- 9.73517,
- 47.54661
- ],
- [
- 9.74164,
- 47.55499
- ],
- [
- 9.7471,
- 47.55569
- ],
- [
- 9.74337,
- 47.55867
- ],
- [
- 9.75207,
- 47.56747
- ],
- [
- 9.74806,
- 47.57052
- ],
- [
- 9.75632,
- 47.57262
- ],
- [
- 9.75633,
- 47.57963
- ],
- [
- 9.76197,
- 47.58096
- ],
- [
- 9.76553,
- 47.58912
- ],
- [
- 9.76933,
- 47.58739
- ],
- [
- 9.77697,
- 47.59544
- ],
- [
- 9.79151,
- 47.59352
- ],
- [
- 9.79999,
- 47.59611
- ],
- [
- 9.81414,
- 47.58807
- ],
- [
- 9.82381,
- 47.5871
- ],
- [
- 9.82728,
- 47.57997
- ],
- [
- 9.82079,
- 47.57076
- ],
- [
- 9.82562,
- 47.55922
- ],
- [
- 9.8171,
- 47.55333
- ],
- [
- 9.81579,
- 47.54767
- ],
- [
- 9.85023,
- 47.54164
- ],
- [
- 9.85839,
- 47.53388
- ],
- [
- 9.87451,
- 47.52854
- ],
- [
- 9.87804,
- 47.53876
- ],
- [
- 9.87515,
- 47.54343
- ],
- [
- 9.88125,
- 47.54814
- ],
- [
- 9.8891,
- 47.54399
- ],
- [
- 9.89935,
- 47.54475
- ],
- [
- 9.90666,
- 47.54217
- ],
- [
- 9.91358,
- 47.53255
- ],
- [
- 9.92189,
- 47.52964
- ],
- [
- 9.93352,
- 47.53265
- ],
- [
- 9.94108,
- 47.53822
- ],
- [
- 9.9637,
- 47.53472
- ],
- [
- 9.95883,
- 47.54313
- ],
- [
- 9.96318,
- 47.54229
- ],
- [
- 9.96805,
- 47.54631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
- "url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:31254",
- "EPSG:31284",
- "EPSG:32632",
- "EPSG:25832",
- "EPSG:21781"
- ],
- "category": "map",
- "country_code": "AT",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png",
- "id": "vogis.cnv.at-flaechenwidmung_wms",
- "license_url": "http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm",
- "name": "VoGIS: Flächenwidmungsplan",
- "type": "wms_endpoint",
- "url": "https://vogis.cnv.at/mapserver/mapserv?map=i_flaechenwidmung_v_wms.map"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.96805,
- 47.54631
- ],
- [
- 9.96809,
- 47.54627
- ],
- [
- 9.97125,
- 47.54425
- ],
- [
- 9.96484,
- 47.53803
- ],
- [
- 9.9684,
- 47.52802
- ],
- [
- 9.96526,
- 47.52089
- ],
- [
- 9.99569,
- 47.50278
- ],
- [
- 9.98736,
- 47.49847
- ],
- [
- 10.00076,
- 47.48211
- ],
- [
- 10.02301,
- 47.48411
- ],
- [
- 10.03743,
- 47.48918
- ],
- [
- 10.04477,
- 47.48762
- ],
- [
- 10.05413,
- 47.47589
- ],
- [
- 10.05347,
- 47.46686
- ],
- [
- 10.06468,
- 47.46364
- ],
- [
- 10.06999,
- 47.45595
- ],
- [
- 10.08057,
- 47.45536
- ],
- [
- 10.08857,
- 47.46029
- ],
- [
- 10.09164,
- 47.45893
- ],
- [
- 10.09385,
- 47.44046
- ],
- [
- 10.10559,
- 47.42872
- ],
- [
- 10.09374,
- 47.41688
- ],
- [
- 10.07418,
- 47.41472
- ],
- [
- 10.06914,
- 47.41018
- ],
- [
- 10.08624,
- 47.39952
- ],
- [
- 10.08284,
- 47.39381
- ],
- [
- 10.09984,
- 47.35476
- ],
- [
- 10.11934,
- 47.37561
- ],
- [
- 10.14169,
- 47.36718
- ],
- [
- 10.16587,
- 47.36887
- ],
- [
- 10.16958,
- 47.3713
- ],
- [
- 10.1694,
- 47.38583
- ],
- [
- 10.1813,
- 47.38725
- ],
- [
- 10.18185,
- 47.39243
- ],
- [
- 10.19508,
- 47.38935
- ],
- [
- 10.19988,
- 47.38334
- ],
- [
- 10.21259,
- 47.38039
- ],
- [
- 10.22705,
- 47.38889
- ],
- [
- 10.23619,
- 47.38192
- ],
- [
- 10.23168,
- 47.37897
- ],
- [
- 10.23716,
- 47.37357
- ],
- [
- 10.21699,
- 47.35436
- ],
- [
- 10.2171,
- 47.34988
- ],
- [
- 10.20424,
- 47.33675
- ],
- [
- 10.20742,
- 47.33232
- ],
- [
- 10.19951,
- 47.32646
- ],
- [
- 10.21113,
- 47.31898
- ],
- [
- 10.21597,
- 47.31106
- ],
- [
- 10.21236,
- 47.31122
- ],
- [
- 10.19913,
- 47.29754
- ],
- [
- 10.18964,
- 47.29394
- ],
- [
- 10.17961,
- 47.29603
- ],
- [
- 10.17208,
- 47.27908
- ],
- [
- 10.17404,
- 47.27025
- ],
- [
- 10.17834,
- 47.27011
- ],
- [
- 10.17449,
- 47.2637
- ],
- [
- 10.21884,
- 47.25533
- ],
- [
- 10.22343,
- 47.24983
- ],
- [
- 10.21087,
- 47.2478
- ],
- [
- 10.19776,
- 47.23666
- ],
- [
- 10.20791,
- 47.2328
- ],
- [
- 10.21428,
- 47.21684
- ],
- [
- 10.21269,
- 47.20432
- ],
- [
- 10.19963,
- 47.19539
- ],
- [
- 10.19951,
- 47.18525
- ],
- [
- 10.21151,
- 47.17124
- ],
- [
- 10.2092,
- 47.16537
- ],
- [
- 10.20851,
- 47.15948
- ],
- [
- 10.21321,
- 47.1577
- ],
- [
- 10.2222,
- 47.15323
- ],
- [
- 10.22166,
- 47.14925
- ],
- [
- 10.21481,
- 47.14352
- ],
- [
- 10.20333,
- 47.14215
- ],
- [
- 10.20887,
- 47.13164
- ],
- [
- 10.18629,
- 47.12886
- ],
- [
- 10.18652,
- 47.11946
- ],
- [
- 10.17288,
- 47.12033
- ],
- [
- 10.16299,
- 47.11361
- ],
- [
- 10.15766,
- 47.11426
- ],
- [
- 10.15442,
- 47.10578
- ],
- [
- 10.13243,
- 47.08122
- ],
- [
- 10.13459,
- 47.06392
- ],
- [
- 10.15085,
- 47.06184
- ],
- [
- 10.15693,
- 47.04883
- ],
- [
- 10.14418,
- 47.03355
- ],
- [
- 10.12326,
- 47.02209
- ],
- [
- 10.13284,
- 47.01204
- ],
- [
- 10.15447,
- 47.00545
- ],
- [
- 10.15961,
- 46.99882
- ],
- [
- 10.15442,
- 46.99299
- ],
- [
- 10.16001,
- 46.984
- ],
- [
- 10.14463,
- 46.98301
- ],
- [
- 10.13492,
- 46.96584
- ],
- [
- 10.13501,
- 46.95483
- ],
- [
- 10.12684,
- 46.9435
- ],
- [
- 10.09772,
- 46.92676
- ],
- [
- 10.09954,
- 46.91712
- ],
- [
- 10.10921,
- 46.90834
- ],
- [
- 10.10908,
- 46.89431
- ],
- [
- 10.12497,
- 46.88014
- ],
- [
- 10.14147,
- 46.87468
- ],
- [
- 10.13967,
- 46.86217
- ],
- [
- 10.14506,
- 46.8511
- ],
- [
- 10.13941,
- 46.84738
- ],
- [
- 10.12309,
- 46.84848
- ],
- [
- 10.11912,
- 46.84417
- ],
- [
- 10.10518,
- 46.8409
- ],
- [
- 10.09195,
- 46.85143
- ],
- [
- 10.09265,
- 46.85818
- ],
- [
- 10.08712,
- 46.86128
- ],
- [
- 10.05488,
- 46.8617
- ],
- [
- 10.0509,
- 46.86442
- ],
- [
- 10.05192,
- 46.87405
- ],
- [
- 10.03891,
- 46.88611
- ],
- [
- 10.03221,
- 46.88802
- ],
- [
- 10.01782,
- 46.90161
- ],
- [
- 10.00494,
- 46.89889
- ],
- [
- 9.98243,
- 46.9062
- ],
- [
- 9.97793,
- 46.91603
- ],
- [
- 9.96657,
- 46.91222
- ],
- [
- 9.95907,
- 46.91602
- ],
- [
- 9.94612,
- 46.91235
- ],
- [
- 9.93758,
- 46.91324
- ],
- [
- 9.92153,
- 46.91882
- ],
- [
- 9.91231,
- 46.92606
- ],
- [
- 9.90632,
- 46.9253
- ],
- [
- 9.89449,
- 46.93164
- ],
- [
- 9.87613,
- 46.93463
- ],
- [
- 9.88071,
- 46.94011
- ],
- [
- 9.87657,
- 46.94071
- ],
- [
- 9.87488,
- 46.95039
- ],
- [
- 9.87872,
- 46.95707
- ],
- [
- 9.87073,
- 46.96321
- ],
- [
- 9.88482,
- 46.98546
- ],
- [
- 9.8923,
- 46.99036
- ],
- [
- 9.88878,
- 47.00072
- ],
- [
- 9.8707,
- 47.00965
- ],
- [
- 9.87115,
- 47.01306
- ],
- [
- 9.88035,
- 47.01722
- ],
- [
- 9.87779,
- 47.02055
- ],
- [
- 9.85974,
- 47.02321
- ],
- [
- 9.85273,
- 47.01641
- ],
- [
- 9.83612,
- 47.01253
- ],
- [
- 9.82353,
- 47.01986
- ],
- [
- 9.80756,
- 47.02356
- ],
- [
- 9.78491,
- 47.03849
- ],
- [
- 9.74808,
- 47.03692
- ],
- [
- 9.74185,
- 47.04268
- ],
- [
- 9.71821,
- 47.04337
- ],
- [
- 9.70701,
- 47.04805
- ],
- [
- 9.7076,
- 47.05381
- ],
- [
- 9.69756,
- 47.05239
- ],
- [
- 9.68392,
- 47.05765
- ],
- [
- 9.68184,
- 47.0621
- ],
- [
- 9.67743,
- 47.06141
- ],
- [
- 9.65821,
- 47.05818
- ],
- [
- 9.64506,
- 47.05978
- ],
- [
- 9.64158,
- 47.05598
- ],
- [
- 9.63654,
- 47.0517
- ],
- [
- 9.62633,
- 47.05133
- ],
- [
- 9.60705,
- 47.06077
- ],
- [
- 9.6134,
- 47.0695
- ],
- [
- 9.61153,
- 47.0794
- ],
- [
- 9.61869,
- 47.07817
- ],
- [
- 9.62339,
- 47.08258
- ],
- [
- 9.63346,
- 47.08344
- ],
- [
- 9.63564,
- 47.09553
- ],
- [
- 9.62858,
- 47.10756
- ],
- [
- 9.62083,
- 47.11032
- ],
- [
- 9.63503,
- 47.12813
- ],
- [
- 9.62467,
- 47.13265
- ],
- [
- 9.62258,
- 47.14135
- ],
- [
- 9.62587,
- 47.1459
- ],
- [
- 9.62059,
- 47.15164
- ],
- [
- 9.6089,
- 47.14775
- ],
- [
- 9.59679,
- 47.16294
- ],
- [
- 9.57946,
- 47.17116
- ],
- [
- 9.56456,
- 47.17029
- ],
- [
- 9.57302,
- 47.1756
- ],
- [
- 9.57259,
- 47.19079
- ],
- [
- 9.58032,
- 47.19578
- ],
- [
- 9.58477,
- 47.20532
- ],
- [
- 9.5687,
- 47.21968
- ],
- [
- 9.55851,
- 47.22416
- ],
- [
- 9.55176,
- 47.22377
- ],
- [
- 9.56679,
- 47.24288
- ],
- [
- 9.53073,
- 47.27058
- ],
- [
- 9.54619,
- 47.28005
- ],
- [
- 9.55634,
- 47.29829
- ],
- [
- 9.58805,
- 47.3173
- ],
- [
- 9.59966,
- 47.3455
- ],
- [
- 9.61073,
- 47.35571
- ],
- [
- 9.62446,
- 47.36615
- ],
- [
- 9.65876,
- 47.36946
- ],
- [
- 9.67255,
- 47.38021
- ],
- [
- 9.67311,
- 47.39194
- ],
- [
- 9.65162,
- 47.40463
- ],
- [
- 9.64551,
- 47.4312
- ],
- [
- 9.64512,
- 47.4378
- ],
- [
- 9.65799,
- 47.44779
- ],
- [
- 9.65898,
- 47.4522
- ],
- [
- 9.62234,
- 47.45747
- ],
- [
- 9.60904,
- 47.47054
- ],
- [
- 9.60292,
- 47.46198
- ],
- [
- 9.59514,
- 47.46331
- ],
- [
- 9.58217,
- 47.48276
- ],
- [
- 9.5622,
- 47.49592
- ],
- [
- 9.55057,
- 47.53718
- ],
- [
- 9.5827,
- 47.53592
- ],
- [
- 9.60465,
- 47.52952
- ],
- [
- 9.73478,
- 47.53396
- ],
- [
- 9.73517,
- 47.54661
- ],
- [
- 9.74164,
- 47.55499
- ],
- [
- 9.7471,
- 47.55569
- ],
- [
- 9.74337,
- 47.55867
- ],
- [
- 9.75207,
- 47.56747
- ],
- [
- 9.74806,
- 47.57052
- ],
- [
- 9.75632,
- 47.57262
- ],
- [
- 9.75633,
- 47.57963
- ],
- [
- 9.76197,
- 47.58096
- ],
- [
- 9.76553,
- 47.58912
- ],
- [
- 9.76933,
- 47.58739
- ],
- [
- 9.77697,
- 47.59544
- ],
- [
- 9.79151,
- 47.59352
- ],
- [
- 9.79999,
- 47.59611
- ],
- [
- 9.81414,
- 47.58807
- ],
- [
- 9.82381,
- 47.5871
- ],
- [
- 9.82728,
- 47.57997
- ],
- [
- 9.82079,
- 47.57076
- ],
- [
- 9.82562,
- 47.55922
- ],
- [
- 9.8171,
- 47.55333
- ],
- [
- 9.81579,
- 47.54767
- ],
- [
- 9.85023,
- 47.54164
- ],
- [
- 9.85839,
- 47.53388
- ],
- [
- 9.87451,
- 47.52854
- ],
- [
- 9.87804,
- 47.53876
- ],
- [
- 9.87515,
- 47.54343
- ],
- [
- 9.88125,
- 47.54814
- ],
- [
- 9.8891,
- 47.54399
- ],
- [
- 9.89935,
- 47.54475
- ],
- [
- 9.90666,
- 47.54217
- ],
- [
- 9.91358,
- 47.53255
- ],
- [
- 9.92189,
- 47.52964
- ],
- [
- 9.93352,
- 47.53265
- ],
- [
- 9.94108,
- 47.53822
- ],
- [
- 9.9637,
- 47.53472
- ],
- [
- 9.95883,
- 47.54313
- ],
- [
- 9.96318,
- 47.54229
- ],
- [
- 9.96805,
- 47.54631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
- "url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:31254",
- "EPSG:31284",
- "EPSG:32632",
- "EPSG:25832",
- "EPSG:21781"
- ],
- "category": "photo",
- "country_code": "AT",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png",
- "id": "vogis.cnv.at-luftbilder_wms",
- "license_url": "http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm",
- "name": "VoGIS: Luftbilder",
- "type": "wms_endpoint",
- "url": "https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.50733,
- 46.99293
- ],
- [
- 16.28342,
- 46.99293
- ],
- [
- 16.13584,
- 46.8713
- ],
- [
- 15.98317,
- 46.81909
- ],
- [
- 16.04933,
- 46.65517
- ],
- [
- 15.86104,
- 46.71801
- ],
- [
- 15.75926,
- 46.69009
- ],
- [
- 15.56079,
- 46.67962
- ],
- [
- 15.57606,
- 46.63421
- ],
- [
- 15.47937,
- 46.60276
- ],
- [
- 15.43357,
- 46.65168
- ],
- [
- 15.22493,
- 46.63421
- ],
- [
- 15.04682,
- 46.64819
- ],
- [
- 14.99084,
- 46.58877
- ],
- [
- 14.9603,
- 46.62373
- ],
- [
- 14.85344,
- 46.60276
- ],
- [
- 14.83308,
- 46.50127
- ],
- [
- 14.75166,
- 46.49776
- ],
- [
- 14.68041,
- 46.43818
- ],
- [
- 14.61426,
- 46.43818
- ],
- [
- 14.57864,
- 46.37853
- ],
- [
- 14.44124,
- 46.43116
- ],
- [
- 14.16135,
- 46.42766
- ],
- [
- 14.12573,
- 46.47674
- ],
- [
- 14.01886,
- 46.47674
- ],
- [
- 13.91199,
- 46.52578
- ],
- [
- 13.82548,
- 46.50477
- ],
- [
- 13.44381,
- 46.56078
- ],
- [
- 13.30641,
- 46.55028
- ],
- [
- 13.1283,
- 46.58877
- ],
- [
- 12.84332,
- 46.61324
- ],
- [
- 12.72628,
- 46.6412
- ],
- [
- 12.51255,
- 46.66565
- ],
- [
- 12.35988,
- 46.70405
- ],
- [
- 12.36497,
- 46.77032
- ],
- [
- 12.28863,
- 46.77729
- ],
- [
- 12.27337,
- 46.88522
- ],
- [
- 12.20721,
- 46.87478
- ],
- [
- 12.13088,
- 46.90261
- ],
- [
- 12.11561,
- 46.99987
- ],
- [
- 12.25301,
- 47.06577
- ],
- [
- 12.2123,
- 47.0935
- ],
- [
- 11.9833,
- 47.04497
- ],
- [
- 11.73394,
- 46.96168
- ],
- [
- 11.63217,
- 47.01028
- ],
- [
- 11.54057,
- 46.97557
- ],
- [
- 11.49986,
- 47.00681
- ],
- [
- 11.41843,
- 46.96515
- ],
- [
- 11.25559,
- 46.97557
- ],
- [
- 11.1131,
- 46.91304
- ],
- [
- 11.04185,
- 46.76335
- ],
- [
- 10.88919,
- 46.75986
- ],
- [
- 10.74161,
- 46.78426
- ],
- [
- 10.70599,
- 46.86435
- ],
- [
- 10.57877,
- 46.83998
- ],
- [
- 10.45663,
- 46.85043
- ],
- [
- 10.47699,
- 46.92694
- ],
- [
- 10.38539,
- 46.98946
- ],
- [
- 10.23272,
- 46.86435
- ],
- [
- 10.12076,
- 46.83302
- ],
- [
- 9.86632,
- 46.94084
- ],
- [
- 9.90194,
- 47.00334
- ],
- [
- 9.68312,
- 47.05884
- ],
- [
- 9.61188,
- 47.03804
- ],
- [
- 9.63223,
- 47.12813
- ],
- [
- 9.58134,
- 47.1662
- ],
- [
- 9.54063,
- 47.26644
- ],
- [
- 9.60679,
- 47.34926
- ],
- [
- 9.67294,
- 47.36994
- ],
- [
- 9.64241,
- 47.44571
- ],
- [
- 9.56608,
- 47.48011
- ],
- [
- 9.71365,
- 47.52824
- ],
- [
- 9.7849,
- 47.59692
- ],
- [
- 9.83579,
- 47.54542
- ],
- [
- 9.94774,
- 47.53855
- ],
- [
- 10.09023,
- 47.44915
- ],
- [
- 10.11059,
- 47.36649
- ],
- [
- 10.2429,
- 47.38717
- ],
- [
- 10.18692,
- 47.2699
- ],
- [
- 10.32432,
- 47.29751
- ],
- [
- 10.48208,
- 47.44915
- ],
- [
- 10.43119,
- 47.48699
- ],
- [
- 10.44137,
- 47.59005
- ],
- [
- 10.48717,
- 47.55229
- ],
- [
- 10.54823,
- 47.53511
- ],
- [
- 10.59912,
- 47.56602
- ],
- [
- 10.75688,
- 47.53168
- ],
- [
- 10.88919,
- 47.54542
- ],
- [
- 10.94008,
- 47.48699
- ],
- [
- 10.99605,
- 47.39061
- ],
- [
- 11.23523,
- 47.44227
- ],
- [
- 11.28103,
- 47.3975
- ],
- [
- 11.42352,
- 47.51449
- ],
- [
- 11.57619,
- 47.50762
- ],
- [
- 11.60672,
- 47.59005
- ],
- [
- 11.83572,
- 47.58662
- ],
- [
- 12.00366,
- 47.62436
- ],
- [
- 12.20721,
- 47.60378
- ],
- [
- 12.16141,
- 47.69634
- ],
- [
- 12.2581,
- 47.74427
- ],
- [
- 12.25301,
- 47.67921
- ],
- [
- 12.43112,
- 47.71004
- ],
- [
- 12.49219,
- 47.63122
- ],
- [
- 12.56852,
- 47.62779
- ],
- [
- 12.62959,
- 47.68949
- ],
- [
- 12.77208,
- 47.66893
- ],
- [
- 12.83315,
- 47.54198
- ],
- [
- 12.97564,
- 47.47323
- ],
- [
- 13.04179,
- 47.49387
- ],
- [
- 13.0367,
- 47.55572
- ],
- [
- 13.09777,
- 47.64151
- ],
- [
- 13.03161,
- 47.71004
- ],
- [
- 12.90439,
- 47.72031
- ],
- [
- 13.00617,
- 47.84683
- ],
- [
- 12.9451,
- 47.93555
- ],
- [
- 12.86368,
- 47.95941
- ],
- [
- 12.86368,
- 48.00369
- ],
- [
- 12.75172,
- 48.09894
- ],
- [
- 12.87386,
- 48.21097
- ],
- [
- 12.96037,
- 48.21097
- ],
- [
- 13.04179,
- 48.2652
- ],
- [
- 13.18428,
- 48.29907
- ],
- [
- 13.26061,
- 48.2923
- ],
- [
- 13.39801,
- 48.35659
- ],
- [
- 13.44381,
- 48.41742
- ],
- [
- 13.43872,
- 48.55234
- ],
- [
- 13.50997,
- 48.58601
- ],
- [
- 13.61175,
- 48.57255
- ],
- [
- 13.72879,
- 48.5119
- ],
- [
- 13.78477,
- 48.57255
- ],
- [
- 13.82039,
- 48.62639
- ],
- [
- 13.79495,
- 48.71713
- ],
- [
- 13.85093,
- 48.77417
- ],
- [
- 14.05957,
- 48.66338
- ],
- [
- 14.01377,
- 48.63312
- ],
- [
- 14.07484,
- 48.59274
- ],
- [
- 14.21733,
- 48.59611
- ],
- [
- 14.3649,
- 48.54897
- ],
- [
- 14.46668,
- 48.64993
- ],
- [
- 14.55828,
- 48.59611
- ],
- [
- 14.59899,
- 48.62639
- ],
- [
- 14.72113,
- 48.57591
- ],
- [
- 14.72113,
- 48.6869
- ],
- [
- 14.8229,
- 48.7272
- ],
- [
- 14.81782,
- 48.77753
- ],
- [
- 14.96472,
- 48.78518
- ],
- [
- 14.98936,
- 49.01266
- ],
- [
- 15.14859,
- 48.99503
- ],
- [
- 15.19439,
- 48.93155
- ],
- [
- 15.30635,
- 48.98501
- ],
- [
- 15.39286,
- 48.98501
- ],
- [
- 15.48446,
- 48.92821
- ],
- [
- 15.74908,
- 48.8546
- ],
- [
- 15.84068,
- 48.88807
- ],
- [
- 16.00862,
- 48.78088
- ],
- [
- 16.20708,
- 48.73391
- ],
- [
- 16.39537,
- 48.73727
- ],
- [
- 16.49206,
- 48.81105
- ],
- [
- 16.69053,
- 48.77417
- ],
- [
- 16.7058,
- 48.73391
- ],
- [
- 16.89917,
- 48.71377
- ],
- [
- 16.97551,
- 48.51527
- ],
- [
- 16.84828,
- 48.45118
- ],
- [
- 16.85337,
- 48.34644
- ],
- [
- 16.95515,
- 48.25165
- ],
- [
- 16.99077,
- 48.1499
- ],
- [
- 17.09255,
- 48.13971
- ],
- [
- 17.08237,
- 48.02412
- ],
- [
- 17.17397,
- 48.02071
- ],
- [
- 17.08237,
- 47.87414
- ],
- [
- 16.98568,
- 47.86732
- ],
- [
- 17.08237,
- 47.80925
- ],
- [
- 17.09255,
- 47.70319
- ],
- [
- 16.74142,
- 47.67921
- ],
- [
- 16.7058,
- 47.75112
- ],
- [
- 16.53786,
- 47.75454
- ],
- [
- 16.54804,
- 47.70662
- ],
- [
- 16.42082,
- 47.66893
- ],
- [
- 16.57348,
- 47.6175
- ],
- [
- 16.67017,
- 47.63122
- ],
- [
- 16.71088,
- 47.53855
- ],
- [
- 16.66,
- 47.44915
- ],
- [
- 16.54295,
- 47.39406
- ],
- [
- 16.46153,
- 47.39406
- ],
- [
- 16.49206,
- 47.2768
- ],
- [
- 16.42591,
- 47.19733
- ],
- [
- 16.47171,
- 47.1489
- ],
- [
- 16.54804,
- 47.1489
- ],
- [
- 16.47679,
- 47.07964
- ],
- [
- 16.52768,
- 47.05884
- ],
- [
- 16.50733,
- 46.99293
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "basemap.at",
- "url": "https://basemap.at"
- },
- "category": "map",
- "country_code": "AT",
- "description": "Annotation overlay provided by basemap.at.",
- "i18n": true,
- "icon": "https://www.basemap.at/images/logo_basemap.jpg",
- "id": "basemap.at-overlay",
- "license_url": "https://basemap.at/#sec-nutzung",
- "max_zoom": 19,
- "name": "basemap.at Overlay",
- "overlay": true,
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmapoverlay/normal/google3857/{zoom}/{y}/{x}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.98494,
- 50.70723
- ],
- [
- 5.98494,
- 50.7672
- ],
- [
- 5.91079,
- 50.82275
- ],
- [
- 5.75561,
- 50.83533
- ],
- [
- 5.75423,
- 50.86264
- ],
- [
- 5.8332,
- 50.93323
- ],
- [
- 5.85517,
- 51.02661
- ],
- [
- 5.90941,
- 51.07754
- ],
- [
- 5.91216,
- 51.18225
- ],
- [
- 5.87851,
- 51.20807
- ],
- [
- 5.77414,
- 51.23689
- ],
- [
- 5.68419,
- 51.24075
- ],
- [
- 5.62308,
- 51.26998
- ],
- [
- 5.62308,
- 51.29789
- ],
- [
- 5.54,
- 51.34724
- ],
- [
- 5.4473,
- 51.34853
- ],
- [
- 5.39855,
- 51.32107
- ],
- [
- 5.31203,
- 51.32322
- ],
- [
- 5.26671,
- 51.36182
- ],
- [
- 5.19942,
- 51.37254
- ],
- [
- 5.18294,
- 51.39611
- ],
- [
- 5.15891,
- 51.4924
- ],
- [
- 5.08338,
- 51.53086
- ],
- [
- 5.03257,
- 51.53983
- ],
- [
- 4.95566,
- 51.50522
- ],
- [
- 4.90142,
- 51.50565
- ],
- [
- 4.83825,
- 51.54367
- ],
- [
- 4.77096,
- 51.55862
- ],
- [
- 4.7119,
- 51.54709
- ],
- [
- 4.64049,
- 51.49667
- ],
- [
- 4.6144,
- 51.4971
- ],
- [
- 4.56565,
- 51.53171
- ],
- [
- 4.48256,
- 51.53043
- ],
- [
- 4.42626,
- 51.52189
- ],
- [
- 4.3006,
- 51.46974
- ],
- [
- 4.29511,
- 51.42566
- ],
- [
- 4.18113,
- 51.42437
- ],
- [
- 4.13718,
- 51.39525
- ],
- [
- 4.13856,
- 51.35067
- ],
- [
- 4.05204,
- 51.30047
- ],
- [
- 3.93325,
- 51.27298
- ],
- [
- 3.86527,
- 51.27084
- ],
- [
- 3.86321,
- 51.29016
- ],
- [
- 3.76296,
- 51.32407
- ],
- [
- 3.59336,
- 51.35925
- ],
- [
- 3.47732,
- 51.33137
- ],
- [
- 3.42582,
- 51.39739
- ],
- [
- 3.23562,
- 51.35153
- ],
- [
- 3.226,
- 51.36568
- ],
- [
- 3.17794,
- 51.36182
- ],
- [
- 3.16009,
- 51.33223
- ],
- [
- 3.06258,
- 51.30219
- ],
- [
- 2.75084,
- 51.1702
- ],
- [
- 2.47001,
- 51.07452
- ],
- [
- 2.49267,
- 50.99378
- ],
- [
- 2.53112,
- 50.95573
- ],
- [
- 2.50915,
- 50.91159
- ],
- [
- 2.53043,
- 50.82145
- ],
- [
- 2.5991,
- 50.76416
- ],
- [
- 2.66501,
- 50.76459
- ],
- [
- 2.77007,
- 50.66677
- ],
- [
- 2.8971,
- 50.65894
- ],
- [
- 2.99186,
- 50.72549
- ],
- [
- 3.11339,
- 50.72636
- ],
- [
- 3.23699,
- 50.70592
- ],
- [
- 3.36265,
- 50.6585
- ],
- [
- 3.47114,
- 50.70201
- ],
- [
- 3.63936,
- 50.66721
- ],
- [
- 3.69842,
- 50.68156
- ],
- [
- 3.72794,
- 50.71245
- ],
- [
- 3.81858,
- 50.68418
- ],
- [
- 3.87488,
- 50.64152
- ],
- [
- 4.09255,
- 50.64283
- ],
- [
- 4.15023,
- 50.66329
- ],
- [
- 4.20653,
- 50.64413
- ],
- [
- 4.31365,
- 50.64283
- ],
- [
- 4.45235,
- 50.68766
- ],
- [
- 4.53475,
- 50.67808
- ],
- [
- 4.61303,
- 50.69549
- ],
- [
- 4.67689,
- 50.69592
- ],
- [
- 4.72701,
- 50.73201
- ],
- [
- 4.78057,
- 50.73201
- ],
- [
- 4.79979,
- 50.71288
- ],
- [
- 4.86228,
- 50.71288
- ],
- [
- 4.88563,
- 50.69549
- ],
- [
- 4.96116,
- 50.69549
- ],
- [
- 5.03119,
- 50.65763
- ],
- [
- 5.10741,
- 50.65023
- ],
- [
- 5.2008,
- 50.64892
- ],
- [
- 5.23581,
- 50.66546
- ],
- [
- 5.32508,
- 50.6659
- ],
- [
- 5.36696,
- 50.682
- ],
- [
- 5.42121,
- 50.66416
- ],
- [
- 5.52215,
- 50.6746
- ],
- [
- 5.6224,
- 50.72418
- ],
- [
- 5.67527,
- 50.69853
- ],
- [
- 5.73981,
- 50.69723
- ],
- [
- 5.77277,
- 50.67199
- ],
- [
- 5.8126,
- 50.66024
- ],
- [
- 5.90804,
- 50.65981
- ],
- [
- 5.98494,
- 50.70723
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© agentschap Informatie Vlaanderen"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:31370",
- "EPSG:3812",
- "EPSG:3043",
- "EPSG:32631",
- "EPSG:25831",
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2015",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png",
- "id": "AGIV10cm",
- "license_url": "https://download.agiv.be/Producten/Detail?id=1209&title=Orthofotomozaiek_grootschalig_winteropnamen_kleur_2013_2015_Vlaanderen",
- "name": "AIV Flanders 2013-2015 aerial imagery 10cm",
- "start_date": "2013",
- "type": "wms",
- "url": "https://geoservices.informatievlaanderen.be/raadpleegdiensten/OGW/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OGWRGB13_15VL&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.40434,
- 50.78177
- ],
- [
- 4.45538,
- 50.79328
- ],
- [
- 4.40268,
- 50.8961
- ],
- [
- 4.331,
- 50.90094
- ],
- [
- 4.27142,
- 50.82002
- ],
- [
- 4.30648,
- 50.81244
- ],
- [
- 4.36348,
- 50.77251
- ],
- [
- 4.40434,
- 50.78177
- ],
- [
- 4.43104,
- 50.73831
- ],
- [
- 4.31859,
- 50.72022
- ],
- [
- 4.29031,
- 50.69402
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 3.95877,
- 50.68947
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 3.89113,
- 50.74333
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.54139,
- 50.73377
- ],
- [
- 3.54062,
- 50.76307
- ],
- [
- 3.46005,
- 50.76556
- ],
- [
- 3.3522,
- 50.70614
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.15329,
- 50.78564
- ],
- [
- 3.02008,
- 50.77312
- ],
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.91648,
- 50.75356
- ],
- [
- 2.85476,
- 50.75745
- ],
- [
- 2.86521,
- 50.70565
- ],
- [
- 2.78473,
- 50.7369
- ],
- [
- 2.713,
- 50.81534
- ],
- [
- 2.63518,
- 50.8129
- ],
- [
- 2.59909,
- 50.85306
- ],
- [
- 2.59031,
- 50.91893
- ],
- [
- 2.63262,
- 50.94575
- ],
- [
- 2.57372,
- 51.00842
- ],
- [
- 2.54165,
- 51.09345
- ],
- [
- 3.15582,
- 51.32714
- ],
- [
- 3.18307,
- 51.37128
- ],
- [
- 3.23443,
- 51.34669
- ],
- [
- 3.36356,
- 51.37228
- ],
- [
- 3.38101,
- 51.27446
- ],
- [
- 3.44201,
- 51.24313
- ],
- [
- 3.52759,
- 51.24604
- ],
- [
- 3.51511,
- 51.28753
- ],
- [
- 3.58984,
- 51.30577
- ],
- [
- 3.7783,
- 51.26235
- ],
- [
- 3.79088,
- 51.21429
- ],
- [
- 3.92412,
- 51.21938
- ],
- [
- 4.16613,
- 51.2929
- ],
- [
- 4.26163,
- 51.37647
- ],
- [
- 4.42065,
- 51.36473
- ],
- [
- 4.39108,
- 51.45149
- ],
- [
- 4.54747,
- 51.48571
- ],
- [
- 4.53541,
- 51.42303
- ],
- [
- 4.64953,
- 51.42758
- ],
- [
- 4.76359,
- 51.5088
- ],
- [
- 4.84188,
- 51.48074
- ],
- [
- 4.8383,
- 51.42174
- ],
- [
- 4.89366,
- 51.41698
- ],
- [
- 4.92785,
- 51.39544
- ],
- [
- 5.02894,
- 51.48789
- ],
- [
- 5.08018,
- 51.46948
- ],
- [
- 5.10202,
- 51.42892
- ],
- [
- 5.07117,
- 51.3935
- ],
- [
- 5.13109,
- 51.35137
- ],
- [
- 5.13448,
- 51.31547
- ],
- [
- 5.20031,
- 51.32172
- ],
- [
- 5.24189,
- 51.30534
- ],
- [
- 5.23036,
- 51.26436
- ],
- [
- 5.34828,
- 51.27492
- ],
- [
- 5.41741,
- 51.26229
- ],
- [
- 5.4863,
- 51.30197
- ],
- [
- 5.5556,
- 51.26986
- ],
- [
- 5.56045,
- 51.22233
- ],
- [
- 5.76027,
- 51.18505
- ],
- [
- 5.85578,
- 51.14463
- ],
- [
- 5.75909,
- 51.03588
- ],
- [
- 5.72665,
- 50.91307
- ],
- [
- 5.64522,
- 50.8372
- ],
- [
- 5.68732,
- 50.804
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.41196,
- 50.72368
- ],
- [
- 5.38908,
- 50.74775
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.05642,
- 50.71567
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 4.90869,
- 50.76968
- ],
- [
- 4.83106,
- 50.77028
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.65486,
- 50.7552
- ],
- [
- 4.62021,
- 50.74348
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.49455,
- 50.75679
- ],
- [
- 4.43104,
- 50.73831
- ],
- [
- 4.40434,
- 50.78177
- ]
- ],
- [
- [
- 5.67393,
- 50.75373
- ],
- [
- 5.88438,
- 50.70114
- ],
- [
- 5.94172,
- 50.76524
- ],
- [
- 5.76662,
- 50.78761
- ],
- [
- 5.67393,
- 50.75373
- ]
- ],
- [
- [
- 4.91171,
- 51.43492
- ],
- [
- 4.93711,
- 51.42614
- ],
- [
- 4.95891,
- 51.45471
- ],
- [
- 4.92801,
- 51.46049
- ],
- [
- 4.91171,
- 51.43492
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© agentschap Informatie Vlaanderen"
- },
- "best": false,
- "category": "map",
- "country_code": "BE",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png",
- "id": "AGIVFlandersGRB",
- "license_url": "https://www.agiv.be/~/media/agiv/producten/grb/documenten/grb%20open%20data%20licentie.pdf",
- "max_zoom": 21,
- "name": "AIV Flanders GRB",
- "type": "tms",
- "url": "https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=grb_bsk&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.7737,
- 50.79368
- ],
- [
- 4.8379,
- 50.75916
- ],
- [
- 4.92511,
- 50.73483
- ],
- [
- 4.98862,
- 50.76264
- ],
- [
- 5.036,
- 50.73527
- ],
- [
- 5.0645,
- 50.69875
- ],
- [
- 5.1644,
- 50.69005
- ],
- [
- 5.19393,
- 50.71179
- ],
- [
- 5.3086,
- 50.71245
- ],
- [
- 5.36422,
- 50.74396
- ],
- [
- 5.43391,
- 50.70766
- ],
- [
- 5.54378,
- 50.74396
- ],
- [
- 5.61141,
- 50.73527
- ],
- [
- 5.71166,
- 50.73505
- ],
- [
- 5.77105,
- 50.74092
- ],
- [
- 5.81946,
- 50.70484
- ],
- [
- 5.89568,
- 50.70614
- ],
- [
- 5.9204,
- 50.72831
- ],
- [
- 5.91971,
- 50.74504
- ],
- [
- 5.89843,
- 50.77675
- ],
- [
- 5.81569,
- 50.76351
- ],
- [
- 5.77517,
- 50.79216
- ],
- [
- 5.69552,
- 50.79737
- ],
- [
- 5.69072,
- 50.82319
- ],
- [
- 5.66325,
- 50.82904
- ],
- [
- 5.65467,
- 50.86481
- ],
- [
- 5.72368,
- 50.9012
- ],
- [
- 5.77174,
- 50.95443
- ],
- [
- 5.75114,
- 50.97368
- ],
- [
- 5.78273,
- 51.00048
- ],
- [
- 5.78032,
- 51.0523
- ],
- [
- 5.80848,
- 51.05338
- ],
- [
- 5.80951,
- 51.07668
- ],
- [
- 5.84315,
- 51.09372
- ],
- [
- 5.84418,
- 51.1101
- ],
- [
- 5.82599,
- 51.11851
- ],
- [
- 5.86959,
- 51.14953
- ],
- [
- 5.8277,
- 51.17365
- ],
- [
- 5.792,
- 51.16891
- ],
- [
- 5.7738,
- 51.19344
- ],
- [
- 5.666,
- 51.1928
- ],
- [
- 5.64059,
- 51.21065
- ],
- [
- 5.5709,
- 51.22829
- ],
- [
- 5.56231,
- 51.27535
- ],
- [
- 5.49811,
- 51.30605
- ],
- [
- 5.47099,
- 51.30219
- ],
- [
- 5.45794,
- 51.2893
- ],
- [
- 5.43048,
- 51.28823
- ],
- [
- 5.41434,
- 51.27363
- ],
- [
- 5.36593,
- 51.282
- ],
- [
- 5.33641,
- 51.28265
- ],
- [
- 5.32577,
- 51.26718
- ],
- [
- 5.24337,
- 51.27406
- ],
- [
- 5.24989,
- 51.31335
- ],
- [
- 5.20972,
- 51.32794
- ],
- [
- 5.14174,
- 51.31914
- ],
- [
- 5.14209,
- 51.35367
- ],
- [
- 5.08647,
- 51.39482
- ],
- [
- 5.11565,
- 51.43615
- ],
- [
- 5.08853,
- 51.47508
- ],
- [
- 5.05214,
- 51.47636
- ],
- [
- 5.04561,
- 51.4939
- ],
- [
- 5.02364,
- 51.4939
- ],
- [
- 5.01609,
- 51.48663
- ],
- [
- 4.82966,
- 51.48663
- ],
- [
- 4.83001,
- 51.50009
- ],
- [
- 4.76855,
- 51.51099
- ],
- [
- 4.74727,
- 51.50394
- ],
- [
- 4.658,
- 51.4492
- ],
- [
- 4.65663,
- 51.43144
- ],
- [
- 4.53956,
- 51.43379
- ],
- [
- 4.55466,
- 51.48171
- ],
- [
- 4.5296,
- 51.48748
- ],
- [
- 4.46368,
- 51.48235
- ],
- [
- 4.37167,
- 51.45562
- ],
- [
- 4.37751,
- 51.40553
- ],
- [
- 4.4139,
- 51.37511
- ],
- [
- 4.39776,
- 51.36118
- ],
- [
- 4.34798,
- 51.36675
- ],
- [
- 4.34627,
- 51.38497
- ],
- [
- 4.20344,
- 51.38111
- ],
- [
- 4.2213,
- 51.3511
- ],
- [
- 4.15641,
- 51.29832
- ],
- [
- 4.05101,
- 51.25193
- ],
- [
- 4.00638,
- 51.25279
- ],
- [
- 3.95144,
- 51.22205
- ],
- [
- 3.88484,
- 51.22936
- ],
- [
- 3.81926,
- 51.21797
- ],
- [
- 3.80038,
- 51.22872
- ],
- [
- 3.80107,
- 51.26074
- ],
- [
- 3.74442,
- 51.28007
- ],
- [
- 3.63593,
- 51.29746
- ],
- [
- 3.58615,
- 51.31378
- ],
- [
- 3.5065,
- 51.28308
- ],
- [
- 3.51371,
- 51.25021
- ],
- [
- 3.43921,
- 51.25064
- ],
- [
- 3.39766,
- 51.27513
- ],
- [
- 3.37329,
- 51.31678
- ],
- [
- 3.39114,
- 51.34274
- ],
- [
- 3.3623,
- 51.37961
- ],
- [
- 3.24283,
- 51.35474
- ],
- [
- 3.20266,
- 51.37039
- ],
- [
- 3.15631,
- 51.35196
- ],
- [
- 3.14223,
- 51.33051
- ],
- [
- 2.53318,
- 51.09092
- ],
- [
- 2.56476,
- 50.9968
- ],
- [
- 2.61832,
- 50.9527
- ],
- [
- 2.57781,
- 50.91852
- ],
- [
- 2.5936,
- 50.88431
- ],
- [
- 2.58948,
- 50.85051
- ],
- [
- 2.6245,
- 50.80757
- ],
- [
- 2.71033,
- 50.8054
- ],
- [
- 2.78449,
- 50.71853
- ],
- [
- 2.87375,
- 50.69983
- ],
- [
- 2.86483,
- 50.74765
- ],
- [
- 2.92525,
- 50.75156
- ],
- [
- 2.97263,
- 50.77024
- ],
- [
- 2.97332,
- 50.79889
- ],
- [
- 3.00078,
- 50.79759
- ],
- [
- 3.01383,
- 50.76676
- ],
- [
- 3.09863,
- 50.76611
- ],
- [
- 3.13537,
- 50.78196
- ],
- [
- 3.16832,
- 50.75004
- ],
- [
- 3.30428,
- 50.74613
- ],
- [
- 3.31561,
- 50.71484
- ],
- [
- 3.3678,
- 50.70179
- ],
- [
- 3.44848,
- 50.75091
- ],
- [
- 3.53293,
- 50.75156
- ],
- [
- 3.53328,
- 50.72549
- ],
- [
- 3.63902,
- 50.7131
- ],
- [
- 3.69086,
- 50.7672
- ],
- [
- 3.75163,
- 50.76177
- ],
- [
- 3.7712,
- 50.73874
- ],
- [
- 3.87729,
- 50.73983
- ],
- [
- 3.87969,
- 50.70418
- ],
- [
- 3.9202,
- 50.68352
- ],
- [
- 3.99951,
- 50.682
- ],
- [
- 4.06749,
- 50.68961
- ],
- [
- 4.16018,
- 50.72049
- ],
- [
- 4.17632,
- 50.70331
- ],
- [
- 4.24739,
- 50.68222
- ],
- [
- 4.31708,
- 50.69418
- ],
- [
- 4.31846,
- 50.70962
- ],
- [
- 4.38403,
- 50.71027
- ],
- [
- 4.38437,
- 50.72353
- ],
- [
- 4.47226,
- 50.74743
- ],
- [
- 4.52617,
- 50.71853
- ],
- [
- 4.55226,
- 50.73766
- ],
- [
- 4.64908,
- 50.73722
- ],
- [
- 4.6532,
- 50.78717
- ],
- [
- 4.72426,
- 50.78218
- ],
- [
- 4.73731,
- 50.79585
- ],
- [
- 4.7737,
- 50.79368
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© agentschap Informatie Vlaanderen"
- },
- "best": true,
- "category": "photo",
- "country_code": "BE",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png",
- "id": "AGIV",
- "license_url": "https://download.agiv.be/Producten/Detail?id=1545&title=Orthofotomozaiek_middenschalig_winteropnamen_kleur_meest_recent_Vlaanderen_2016_04",
- "max_zoom": 21,
- "name": "AIV Flanders most recent aerial imagery",
- "type": "tms",
- "url": "https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=omwrgbmrvl&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.98494,
- 50.70723
- ],
- [
- 5.98494,
- 50.7672
- ],
- [
- 5.91079,
- 50.82275
- ],
- [
- 5.75561,
- 50.83533
- ],
- [
- 5.75423,
- 50.86264
- ],
- [
- 5.8332,
- 50.93323
- ],
- [
- 5.85517,
- 51.02661
- ],
- [
- 5.90941,
- 51.07754
- ],
- [
- 5.91216,
- 51.18225
- ],
- [
- 5.87851,
- 51.20807
- ],
- [
- 5.77414,
- 51.23689
- ],
- [
- 5.68419,
- 51.24075
- ],
- [
- 5.62308,
- 51.26998
- ],
- [
- 5.62308,
- 51.29789
- ],
- [
- 5.54,
- 51.34724
- ],
- [
- 5.4473,
- 51.34853
- ],
- [
- 5.39855,
- 51.32107
- ],
- [
- 5.31203,
- 51.32322
- ],
- [
- 5.26671,
- 51.36182
- ],
- [
- 5.19942,
- 51.37254
- ],
- [
- 5.18294,
- 51.39611
- ],
- [
- 5.15891,
- 51.4924
- ],
- [
- 5.08338,
- 51.53086
- ],
- [
- 5.03257,
- 51.53983
- ],
- [
- 4.95566,
- 51.50522
- ],
- [
- 4.90142,
- 51.50565
- ],
- [
- 4.83825,
- 51.54367
- ],
- [
- 4.77096,
- 51.55862
- ],
- [
- 4.7119,
- 51.54709
- ],
- [
- 4.64049,
- 51.49667
- ],
- [
- 4.6144,
- 51.4971
- ],
- [
- 4.56565,
- 51.53171
- ],
- [
- 4.48256,
- 51.53043
- ],
- [
- 4.42626,
- 51.52189
- ],
- [
- 4.3006,
- 51.46974
- ],
- [
- 4.29511,
- 51.42566
- ],
- [
- 4.18113,
- 51.42437
- ],
- [
- 4.13718,
- 51.39525
- ],
- [
- 4.13856,
- 51.35067
- ],
- [
- 4.05204,
- 51.30047
- ],
- [
- 3.93325,
- 51.27298
- ],
- [
- 3.86527,
- 51.27084
- ],
- [
- 3.86321,
- 51.29016
- ],
- [
- 3.76296,
- 51.32407
- ],
- [
- 3.59336,
- 51.35925
- ],
- [
- 3.47732,
- 51.33137
- ],
- [
- 3.42582,
- 51.39739
- ],
- [
- 3.23562,
- 51.35153
- ],
- [
- 3.226,
- 51.36568
- ],
- [
- 3.17794,
- 51.36182
- ],
- [
- 3.16009,
- 51.33223
- ],
- [
- 3.06258,
- 51.30219
- ],
- [
- 2.75084,
- 51.1702
- ],
- [
- 2.47001,
- 51.07452
- ],
- [
- 2.49267,
- 50.99378
- ],
- [
- 2.53112,
- 50.95573
- ],
- [
- 2.50915,
- 50.91159
- ],
- [
- 2.53043,
- 50.82145
- ],
- [
- 2.5991,
- 50.76416
- ],
- [
- 2.66501,
- 50.76459
- ],
- [
- 2.77007,
- 50.66677
- ],
- [
- 2.8971,
- 50.65894
- ],
- [
- 2.99186,
- 50.72549
- ],
- [
- 3.11339,
- 50.72636
- ],
- [
- 3.23699,
- 50.70592
- ],
- [
- 3.36265,
- 50.6585
- ],
- [
- 3.47114,
- 50.70201
- ],
- [
- 3.63936,
- 50.66721
- ],
- [
- 3.69842,
- 50.68156
- ],
- [
- 3.72794,
- 50.71245
- ],
- [
- 3.81858,
- 50.68418
- ],
- [
- 3.87488,
- 50.64152
- ],
- [
- 4.09255,
- 50.64283
- ],
- [
- 4.15023,
- 50.66329
- ],
- [
- 4.20653,
- 50.64413
- ],
- [
- 4.31365,
- 50.64283
- ],
- [
- 4.45235,
- 50.68766
- ],
- [
- 4.53475,
- 50.67808
- ],
- [
- 4.61303,
- 50.69549
- ],
- [
- 4.67689,
- 50.69592
- ],
- [
- 4.72701,
- 50.73201
- ],
- [
- 4.78057,
- 50.73201
- ],
- [
- 4.79979,
- 50.71288
- ],
- [
- 4.86228,
- 50.71288
- ],
- [
- 4.88563,
- 50.69549
- ],
- [
- 4.96116,
- 50.69549
- ],
- [
- 5.03119,
- 50.65763
- ],
- [
- 5.10741,
- 50.65023
- ],
- [
- 5.2008,
- 50.64892
- ],
- [
- 5.23581,
- 50.66546
- ],
- [
- 5.32508,
- 50.6659
- ],
- [
- 5.36696,
- 50.682
- ],
- [
- 5.42121,
- 50.66416
- ],
- [
- 5.52215,
- 50.6746
- ],
- [
- 5.6224,
- 50.72418
- ],
- [
- 5.67527,
- 50.69853
- ],
- [
- 5.73981,
- 50.69723
- ],
- [
- 5.77277,
- 50.67199
- ],
- [
- 5.8126,
- 50.66024
- ],
- [
- 5.90804,
- 50.65981
- ],
- [
- 5.98494,
- 50.70723
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© agentschap Informatie Vlaanderen"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:31370",
- "EPSG:3812",
- "EPSG:3043",
- "EPSG:32631",
- "EPSG:25831",
- "EPSG:3857"
- ],
- "category": "elevation",
- "country_code": "BE",
- "end_date": "2015",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-laaryer-index/sources/europe/be/AIV.png",
- "id": "AIV_DHMV_II_HILL_25cm",
- "license_url": "https://www.geopunt.be/catalogus/datasetfolder/be2276f8-21fa-4e51-b4bc-c79eaf8bab81",
- "name": "AIV Digitaal Hoogtemodel Vlaanderen II, multidirectionale hillshade 0,25 m",
- "start_date": "2013",
- "type": "wms",
- "url": "https://geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DHMV_II_HILL_25cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.98494,
- 50.70723
- ],
- [
- 5.98494,
- 50.7672
- ],
- [
- 5.91079,
- 50.82275
- ],
- [
- 5.75561,
- 50.83533
- ],
- [
- 5.75423,
- 50.86264
- ],
- [
- 5.8332,
- 50.93323
- ],
- [
- 5.85517,
- 51.02661
- ],
- [
- 5.90941,
- 51.07754
- ],
- [
- 5.91216,
- 51.18225
- ],
- [
- 5.87851,
- 51.20807
- ],
- [
- 5.77414,
- 51.23689
- ],
- [
- 5.68419,
- 51.24075
- ],
- [
- 5.62308,
- 51.26998
- ],
- [
- 5.62308,
- 51.29789
- ],
- [
- 5.54,
- 51.34724
- ],
- [
- 5.4473,
- 51.34853
- ],
- [
- 5.39855,
- 51.32107
- ],
- [
- 5.31203,
- 51.32322
- ],
- [
- 5.26671,
- 51.36182
- ],
- [
- 5.19942,
- 51.37254
- ],
- [
- 5.18294,
- 51.39611
- ],
- [
- 5.15891,
- 51.4924
- ],
- [
- 5.08338,
- 51.53086
- ],
- [
- 5.03257,
- 51.53983
- ],
- [
- 4.95566,
- 51.50522
- ],
- [
- 4.90142,
- 51.50565
- ],
- [
- 4.83825,
- 51.54367
- ],
- [
- 4.77096,
- 51.55862
- ],
- [
- 4.7119,
- 51.54709
- ],
- [
- 4.64049,
- 51.49667
- ],
- [
- 4.6144,
- 51.4971
- ],
- [
- 4.56565,
- 51.53171
- ],
- [
- 4.48256,
- 51.53043
- ],
- [
- 4.42626,
- 51.52189
- ],
- [
- 4.3006,
- 51.46974
- ],
- [
- 4.29511,
- 51.42566
- ],
- [
- 4.18113,
- 51.42437
- ],
- [
- 4.13718,
- 51.39525
- ],
- [
- 4.13856,
- 51.35067
- ],
- [
- 4.05204,
- 51.30047
- ],
- [
- 3.93325,
- 51.27298
- ],
- [
- 3.86527,
- 51.27084
- ],
- [
- 3.86321,
- 51.29016
- ],
- [
- 3.76296,
- 51.32407
- ],
- [
- 3.59336,
- 51.35925
- ],
- [
- 3.47732,
- 51.33137
- ],
- [
- 3.42582,
- 51.39739
- ],
- [
- 3.23562,
- 51.35153
- ],
- [
- 3.226,
- 51.36568
- ],
- [
- 3.17794,
- 51.36182
- ],
- [
- 3.16009,
- 51.33223
- ],
- [
- 3.06258,
- 51.30219
- ],
- [
- 2.75084,
- 51.1702
- ],
- [
- 2.47001,
- 51.07452
- ],
- [
- 2.49267,
- 50.99378
- ],
- [
- 2.53112,
- 50.95573
- ],
- [
- 2.50915,
- 50.91159
- ],
- [
- 2.53043,
- 50.82145
- ],
- [
- 2.5991,
- 50.76416
- ],
- [
- 2.66501,
- 50.76459
- ],
- [
- 2.77007,
- 50.66677
- ],
- [
- 2.8971,
- 50.65894
- ],
- [
- 2.99186,
- 50.72549
- ],
- [
- 3.11339,
- 50.72636
- ],
- [
- 3.23699,
- 50.70592
- ],
- [
- 3.36265,
- 50.6585
- ],
- [
- 3.47114,
- 50.70201
- ],
- [
- 3.63936,
- 50.66721
- ],
- [
- 3.69842,
- 50.68156
- ],
- [
- 3.72794,
- 50.71245
- ],
- [
- 3.81858,
- 50.68418
- ],
- [
- 3.87488,
- 50.64152
- ],
- [
- 4.09255,
- 50.64283
- ],
- [
- 4.15023,
- 50.66329
- ],
- [
- 4.20653,
- 50.64413
- ],
- [
- 4.31365,
- 50.64283
- ],
- [
- 4.45235,
- 50.68766
- ],
- [
- 4.53475,
- 50.67808
- ],
- [
- 4.61303,
- 50.69549
- ],
- [
- 4.67689,
- 50.69592
- ],
- [
- 4.72701,
- 50.73201
- ],
- [
- 4.78057,
- 50.73201
- ],
- [
- 4.79979,
- 50.71288
- ],
- [
- 4.86228,
- 50.71288
- ],
- [
- 4.88563,
- 50.69549
- ],
- [
- 4.96116,
- 50.69549
- ],
- [
- 5.03119,
- 50.65763
- ],
- [
- 5.10741,
- 50.65023
- ],
- [
- 5.2008,
- 50.64892
- ],
- [
- 5.23581,
- 50.66546
- ],
- [
- 5.32508,
- 50.6659
- ],
- [
- 5.36696,
- 50.682
- ],
- [
- 5.42121,
- 50.66416
- ],
- [
- 5.52215,
- 50.6746
- ],
- [
- 5.6224,
- 50.72418
- ],
- [
- 5.67527,
- 50.69853
- ],
- [
- 5.73981,
- 50.69723
- ],
- [
- 5.77277,
- 50.67199
- ],
- [
- 5.8126,
- 50.66024
- ],
- [
- 5.90804,
- 50.65981
- ],
- [
- 5.98494,
- 50.70723
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© agentschap Informatie Vlaanderen"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:31370",
- "EPSG:3812",
- "EPSG:3043",
- "EPSG:32631",
- "EPSG:25831",
- "EPSG:3857"
- ],
- "category": "elevation",
- "country_code": "BE",
- "end_date": "2015",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png",
- "id": "AIV_DHMV_II_SVF_25cm",
- "license_url": "https://www.geopunt.be/catalogus/datasetfolder/07dcd02f-eb0a-4247-95d1-155bb1129b3b",
- "name": "AIV Digitaal Hoogtemodel Vlaanderen II, Skyview factor 0,25 m",
- "start_date": "2013",
- "type": "wms",
- "url": "https://geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DHMV_II_SVF_25cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.47007,
- 49.49196
- ],
- [
- 5.44409,
- 49.51409
- ],
- [
- 5.46213,
- 49.53677
- ],
- [
- 5.43766,
- 49.54766
- ],
- [
- 5.42566,
- 49.59145
- ],
- [
- 5.40775,
- 49.60448
- ],
- [
- 5.35207,
- 49.62396
- ],
- [
- 5.34232,
- 49.61192
- ],
- [
- 5.30544,
- 49.60645
- ],
- [
- 5.3026,
- 49.63608
- ],
- [
- 5.32535,
- 49.6575
- ],
- [
- 5.27025,
- 49.68827
- ],
- [
- 5.24458,
- 49.67985
- ],
- [
- 5.16215,
- 49.6918
- ],
- [
- 5.16164,
- 49.71172
- ],
- [
- 5.12622,
- 49.70442
- ],
- [
- 5.09058,
- 49.75946
- ],
- [
- 5.06262,
- 49.75724
- ],
- [
- 5.01261,
- 49.77534
- ],
- [
- 4.9921,
- 49.79533
- ],
- [
- 4.95485,
- 49.79586
- ],
- [
- 4.94404,
- 49.78583
- ],
- [
- 4.90589,
- 49.78055
- ],
- [
- 4.84827,
- 49.78972
- ],
- [
- 4.86599,
- 49.81918
- ],
- [
- 4.84266,
- 49.86913
- ],
- [
- 4.85659,
- 49.86973
- ],
- [
- 4.87961,
- 49.91078
- ],
- [
- 4.84433,
- 49.94482
- ],
- [
- 4.78844,
- 49.95381
- ],
- [
- 4.78535,
- 49.97018
- ],
- [
- 4.79004,
- 49.98569
- ],
- [
- 4.81194,
- 49.99563
- ],
- [
- 4.81579,
- 50.02853
- ],
- [
- 4.83599,
- 50.04069
- ],
- [
- 4.82339,
- 50.04664
- ],
- [
- 4.81641,
- 50.06702
- ],
- [
- 4.83456,
- 50.06856
- ],
- [
- 4.83709,
- 50.09442
- ],
- [
- 4.84472,
- 50.10023
- ],
- [
- 4.85447,
- 50.1029
- ],
- [
- 4.866,
- 50.09623
- ],
- [
- 4.86587,
- 50.12038
- ],
- [
- 4.8776,
- 50.13223
- ],
- [
- 4.89443,
- 50.13779
- ],
- [
- 4.88043,
- 50.1403
- ],
- [
- 4.87725,
- 50.15205
- ],
- [
- 4.8529,
- 50.15168
- ],
- [
- 4.83169,
- 50.1526
- ],
- [
- 4.82334,
- 50.15923
- ],
- [
- 4.78067,
- 50.14092
- ],
- [
- 4.76486,
- 50.13634
- ],
- [
- 4.75217,
- 50.11158
- ],
- [
- 4.71293,
- 50.09598
- ],
- [
- 4.70278,
- 50.09336
- ],
- [
- 4.68851,
- 50.06595
- ],
- [
- 4.70309,
- 50.05587
- ],
- [
- 4.68731,
- 50.01802
- ],
- [
- 4.69495,
- 49.99662
- ],
- [
- 4.69461,
- 49.99504
- ],
- [
- 4.63074,
- 49.98584
- ],
- [
- 4.58965,
- 49.98336
- ],
- [
- 4.55981,
- 49.96757
- ],
- [
- 4.54315,
- 49.9679
- ],
- [
- 4.52365,
- 49.94973
- ],
- [
- 4.51156,
- 49.94579
- ],
- [
- 4.47953,
- 49.94584
- ],
- [
- 4.44588,
- 49.93656
- ],
- [
- 4.40593,
- 49.94785
- ],
- [
- 4.39149,
- 49.94697
- ],
- [
- 4.38072,
- 49.95088
- ],
- [
- 4.34921,
- 49.95202
- ],
- [
- 4.3137,
- 49.96541
- ],
- [
- 4.19616,
- 49.9536
- ],
- [
- 4.19304,
- 49.95746
- ],
- [
- 4.19582,
- 49.96629
- ],
- [
- 4.13704,
- 49.97691
- ],
- [
- 4.15996,
- 49.99544
- ],
- [
- 4.13683,
- 50.00786
- ],
- [
- 4.13272,
- 50.01973
- ],
- [
- 4.16174,
- 50.05032
- ],
- [
- 4.17458,
- 50.04772
- ],
- [
- 4.22857,
- 50.06873
- ],
- [
- 4.19529,
- 50.10571
- ],
- [
- 4.19766,
- 50.12037
- ],
- [
- 4.19566,
- 50.13394
- ],
- [
- 4.15448,
- 50.12716
- ],
- [
- 4.13656,
- 50.12909
- ],
- [
- 4.12568,
- 50.13511
- ],
- [
- 4.13677,
- 50.15213
- ],
- [
- 4.14989,
- 50.1647
- ],
- [
- 4.14686,
- 50.17314
- ],
- [
- 4.15567,
- 50.19785
- ],
- [
- 4.14799,
- 50.21344
- ],
- [
- 4.15979,
- 50.21579
- ],
- [
- 4.19179,
- 50.24106
- ],
- [
- 4.21836,
- 50.25492
- ],
- [
- 4.20676,
- 50.27068
- ],
- [
- 4.17487,
- 50.27492
- ],
- [
- 4.16567,
- 50.28779
- ],
- [
- 4.155,
- 50.27742
- ],
- [
- 4.16937,
- 50.26848
- ],
- [
- 4.16851,
- 50.25626
- ],
- [
- 4.13426,
- 50.25572
- ],
- [
- 4.13228,
- 50.26754
- ],
- [
- 4.12086,
- 50.27276
- ],
- [
- 4.12139,
- 50.29732
- ],
- [
- 4.10928,
- 50.30112
- ],
- [
- 4.0977,
- 50.31201
- ],
- [
- 4.08017,
- 50.30809
- ],
- [
- 4.07339,
- 50.31754
- ],
- [
- 4.03817,
- 50.33987
- ],
- [
- 4.02738,
- 50.35491
- ],
- [
- 3.98611,
- 50.34137
- ],
- [
- 3.96482,
- 50.34012
- ],
- [
- 3.96355,
- 50.34742
- ],
- [
- 3.90223,
- 50.3257
- ],
- [
- 3.88419,
- 50.32554
- ],
- [
- 3.88429,
- 50.33511
- ],
- [
- 3.85645,
- 50.34099
- ],
- [
- 3.84244,
- 50.35243
- ],
- [
- 3.81321,
- 50.34251
- ],
- [
- 3.80551,
- 50.35098
- ],
- [
- 3.74124,
- 50.34624
- ],
- [
- 3.73556,
- 50.32532
- ],
- [
- 3.73175,
- 50.30705
- ],
- [
- 3.70911,
- 50.3021
- ],
- [
- 3.68231,
- 50.31988
- ],
- [
- 3.66397,
- 50.34724
- ],
- [
- 3.65542,
- 50.37075
- ],
- [
- 3.66788,
- 50.38597
- ],
- [
- 3.67276,
- 50.40227
- ],
- [
- 3.66777,
- 50.42262
- ],
- [
- 3.66743,
- 50.43635
- ],
- [
- 3.65685,
- 50.4464
- ],
- [
- 3.66129,
- 50.45399
- ],
- [
- 3.64419,
- 50.4618
- ],
- [
- 3.6099,
- 50.4935
- ],
- [
- 3.58162,
- 50.48917
- ],
- [
- 3.56897,
- 50.4982
- ],
- [
- 3.49868,
- 50.48577
- ],
- [
- 3.49448,
- 50.49918
- ],
- [
- 3.51582,
- 50.52075
- ],
- [
- 3.4742,
- 50.53204
- ],
- [
- 3.44739,
- 50.50415
- ],
- [
- 3.43663,
- 50.5083
- ],
- [
- 3.42736,
- 50.50327
- ],
- [
- 3.37405,
- 50.48993
- ],
- [
- 3.35949,
- 50.50325
- ],
- [
- 3.32767,
- 50.50732
- ],
- [
- 3.31872,
- 50.51788
- ],
- [
- 3.30319,
- 50.51966
- ],
- [
- 3.28718,
- 50.52552
- ],
- [
- 3.27549,
- 50.53872
- ],
- [
- 3.27524,
- 50.59381
- ],
- [
- 3.25497,
- 50.62115
- ],
- [
- 3.24349,
- 50.64031
- ],
- [
- 3.23893,
- 50.65864
- ],
- [
- 3.24019,
- 50.67023
- ],
- [
- 3.26029,
- 50.67692
- ],
- [
- 3.25131,
- 50.69091
- ],
- [
- 3.25881,
- 50.69312
- ],
- [
- 3.24518,
- 50.71225
- ],
- [
- 3.23779,
- 50.71086
- ],
- [
- 3.22148,
- 50.70958
- ],
- [
- 3.20498,
- 50.71072
- ],
- [
- 3.18953,
- 50.72603
- ],
- [
- 3.19445,
- 50.7316
- ],
- [
- 3.14457,
- 50.78871
- ],
- [
- 3.12547,
- 50.78553
- ],
- [
- 3.11348,
- 50.79278
- ],
- [
- 3.10455,
- 50.78042
- ],
- [
- 3.08585,
- 50.77064
- ],
- [
- 3.05758,
- 50.77987
- ],
- [
- 3.04064,
- 50.77484
- ],
- [
- 3.03691,
- 50.77003
- ],
- [
- 3.02927,
- 50.76813
- ],
- [
- 3.01945,
- 50.77263
- ],
- [
- 2.99536,
- 50.76043
- ],
- [
- 2.96822,
- 50.74763
- ],
- [
- 2.9557,
- 50.75181
- ],
- [
- 2.93962,
- 50.74441
- ],
- [
- 2.94602,
- 50.73167
- ],
- [
- 2.9349,
- 50.72822
- ],
- [
- 2.92939,
- 50.70786
- ],
- [
- 2.92206,
- 50.70224
- ],
- [
- 2.91184,
- 50.70267
- ],
- [
- 2.91281,
- 50.69463
- ],
- [
- 2.90742,
- 50.69209
- ],
- [
- 2.90017,
- 50.69202
- ],
- [
- 2.88533,
- 50.70547
- ],
- [
- 2.87992,
- 50.70199
- ],
- [
- 2.86855,
- 50.70242
- ],
- [
- 2.84646,
- 50.72043
- ],
- [
- 2.81843,
- 50.71386
- ],
- [
- 2.78869,
- 50.72508
- ],
- [
- 2.77811,
- 50.74686
- ],
- [
- 2.76469,
- 50.75397
- ],
- [
- 2.75409,
- 50.76251
- ],
- [
- 2.75922,
- 50.77052
- ],
- [
- 2.73745,
- 50.77967
- ],
- [
- 2.7236,
- 50.79079
- ],
- [
- 2.71636,
- 50.8123
- ],
- [
- 2.6788,
- 50.81207
- ],
- [
- 2.67057,
- 50.81562
- ],
- [
- 2.63543,
- 50.80987
- ],
- [
- 2.61055,
- 50.84419
- ],
- [
- 2.59427,
- 50.84743
- ],
- [
- 2.60628,
- 50.86565
- ],
- [
- 2.60151,
- 50.90993
- ],
- [
- 2.58525,
- 50.91825
- ],
- [
- 2.62479,
- 50.94743
- ],
- [
- 2.62148,
- 50.95406
- ],
- [
- 2.60263,
- 50.98638
- ],
- [
- 2.56946,
- 51.00113
- ],
- [
- 2.55892,
- 51.06596
- ],
- [
- 2.34072,
- 51.31453
- ],
- [
- 3.01078,
- 51.59839
- ],
- [
- 3.32658,
- 51.43728
- ],
- [
- 3.37581,
- 51.3584
- ],
- [
- 3.38739,
- 51.33392
- ],
- [
- 3.36094,
- 51.31523
- ],
- [
- 3.3789,
- 51.30251
- ],
- [
- 3.36832,
- 51.29778
- ],
- [
- 3.38177,
- 51.28732
- ],
- [
- 3.38342,
- 51.27485
- ],
- [
- 3.38922,
- 51.27329
- ],
- [
- 3.41852,
- 51.25984
- ],
- [
- 3.43471,
- 51.24621
- ],
- [
- 3.45031,
- 51.24219
- ],
- [
- 3.527,
- 51.24651
- ],
- [
- 3.51433,
- 51.28799
- ],
- [
- 3.54179,
- 51.29123
- ],
- [
- 3.56145,
- 51.29637
- ],
- [
- 3.57559,
- 51.29428
- ],
- [
- 3.58905,
- 51.30652
- ],
- [
- 3.63839,
- 51.29078
- ],
- [
- 3.6582,
- 51.29056
- ],
- [
- 3.69139,
- 51.28043
- ],
- [
- 3.71763,
- 51.27428
- ],
- [
- 3.77605,
- 51.26777
- ],
- [
- 3.79652,
- 51.25635
- ],
- [
- 3.79031,
- 51.24163
- ],
- [
- 3.78934,
- 51.22711
- ],
- [
- 3.79294,
- 51.21546
- ],
- [
- 3.85827,
- 51.21334
- ],
- [
- 3.88901,
- 51.22423
- ],
- [
- 3.89467,
- 51.21743
- ],
- [
- 3.88782,
- 51.20283
- ],
- [
- 3.91256,
- 51.20837
- ],
- [
- 3.91482,
- 51.21509
- ],
- [
- 3.9281,
- 51.22508
- ],
- [
- 3.93751,
- 51.2174
- ],
- [
- 3.95603,
- 51.22117
- ],
- [
- 4.01551,
- 51.24825
- ],
- [
- 4.0551,
- 51.24402
- ],
- [
- 4.1651,
- 51.2938
- ],
- [
- 4.23804,
- 51.35274
- ],
- [
- 4.21772,
- 51.36206
- ],
- [
- 4.21546,
- 51.37487
- ],
- [
- 4.33535,
- 51.37775
- ],
- [
- 4.34197,
- 51.36012
- ],
- [
- 4.38556,
- 51.35574
- ],
- [
- 4.39906,
- 51.35785
- ],
- [
- 4.42462,
- 51.3668
- ],
- [
- 4.42309,
- 51.37577
- ],
- [
- 4.38147,
- 51.41805
- ],
- [
- 4.39426,
- 51.44251
- ],
- [
- 4.37771,
- 51.44595
- ],
- [
- 4.38055,
- 51.45075
- ],
- [
- 4.4768,
- 51.47912
- ],
- [
- 4.53739,
- 51.48358
- ],
- [
- 4.54967,
- 51.47364
- ],
- [
- 4.53097,
- 51.44965
- ],
- [
- 4.53758,
- 51.42456
- ],
- [
- 4.57427,
- 51.43404
- ],
- [
- 4.6431,
- 51.42478
- ],
- [
- 4.64951,
- 51.42741
- ],
- [
- 4.66744,
- 51.42777
- ],
- [
- 4.66465,
- 51.44625
- ],
- [
- 4.69115,
- 51.45283
- ],
- [
- 4.70175,
- 51.46691
- ],
- [
- 4.72792,
- 51.48435
- ],
- [
- 4.74476,
- 51.48977
- ],
- [
- 4.74945,
- 51.49905
- ],
- [
- 4.75827,
- 51.50302
- ],
- [
- 4.7766,
- 51.50625
- ],
- [
- 4.81666,
- 51.49552
- ],
- [
- 4.82318,
- 51.48441
- ],
- [
- 4.84355,
- 51.48177
- ],
- [
- 4.83884,
- 51.46588
- ],
- [
- 4.84529,
- 51.45817
- ],
- [
- 4.82521,
- 51.44674
- ],
- [
- 4.83103,
- 51.42488
- ],
- [
- 4.88072,
- 51.4166
- ],
- [
- 4.91431,
- 51.45952
- ],
- [
- 4.95767,
- 51.4548
- ],
- [
- 4.94134,
- 51.42928
- ],
- [
- 4.93775,
- 51.40655
- ],
- [
- 4.96007,
- 51.42194
- ],
- [
- 4.99955,
- 51.44324
- ],
- [
- 5.00816,
- 51.47134
- ],
- [
- 5.01937,
- 51.48074
- ],
- [
- 5.03235,
- 51.48827
- ],
- [
- 5.04093,
- 51.4876
- ],
- [
- 5.04722,
- 51.47217
- ],
- [
- 5.08032,
- 51.47226
- ],
- [
- 5.10643,
- 51.43135
- ],
- [
- 5.0727,
- 51.39365
- ],
- [
- 5.11662,
- 51.36118
- ],
- [
- 5.13225,
- 51.3472
- ],
- [
- 5.13581,
- 51.31594
- ],
- [
- 5.15592,
- 51.31278
- ],
- [
- 5.20039,
- 51.32325
- ],
- [
- 5.24326,
- 51.3057
- ],
- [
- 5.22742,
- 51.26844
- ],
- [
- 5.238,
- 51.26255
- ],
- [
- 5.26216,
- 51.26778
- ],
- [
- 5.335,
- 51.26474
- ],
- [
- 5.34493,
- 51.27681
- ],
- [
- 5.41551,
- 51.2639
- ],
- [
- 5.44065,
- 51.28246
- ],
- [
- 5.48215,
- 51.30064
- ],
- [
- 5.51628,
- 51.29599
- ],
- [
- 5.55816,
- 51.26613
- ],
- [
- 5.56283,
- 51.22287
- ],
- [
- 5.65253,
- 51.19899
- ],
- [
- 5.65947,
- 51.19052
- ],
- [
- 5.71011,
- 51.18671
- ],
- [
- 5.74598,
- 51.19455
- ],
- [
- 5.76873,
- 51.18843
- ],
- [
- 5.78118,
- 51.18082
- ],
- [
- 5.78447,
- 51.15925
- ],
- [
- 5.82594,
- 51.16827
- ],
- [
- 5.85709,
- 51.14477
- ],
- [
- 5.83976,
- 51.12993
- ],
- [
- 5.81435,
- 51.11524
- ],
- [
- 5.83555,
- 51.10842
- ],
- [
- 5.8338,
- 51.09577
- ],
- [
- 5.82291,
- 51.09124
- ],
- [
- 5.8119,
- 51.0943
- ],
- [
- 5.79816,
- 51.09023
- ],
- [
- 5.80612,
- 51.07955
- ],
- [
- 5.80458,
- 51.05888
- ],
- [
- 5.77731,
- 51.05804
- ],
- [
- 5.76027,
- 51.03223
- ],
- [
- 5.77383,
- 51.02859
- ],
- [
- 5.77829,
- 51.02399
- ],
- [
- 5.76759,
- 51.00526
- ],
- [
- 5.76846,
- 50.9985
- ],
- [
- 5.76419,
- 50.99502
- ],
- [
- 5.74816,
- 50.98087
- ],
- [
- 5.72174,
- 50.96128
- ],
- [
- 5.73469,
- 50.95683
- ],
- [
- 5.7426,
- 50.96113
- ],
- [
- 5.74604,
- 50.96209
- ],
- [
- 5.75617,
- 50.95898
- ],
- [
- 5.76011,
- 50.95227
- ],
- [
- 5.73223,
- 50.9221
- ],
- [
- 5.72625,
- 50.9059
- ],
- [
- 5.70051,
- 50.90955
- ],
- [
- 5.69711,
- 50.8958
- ],
- [
- 5.68051,
- 50.88068
- ],
- [
- 5.64516,
- 50.86533
- ],
- [
- 5.64337,
- 50.84974
- ],
- [
- 5.64049,
- 50.84701
- ],
- [
- 5.64576,
- 50.83961
- ],
- [
- 5.64567,
- 50.83789
- ],
- [
- 5.65094,
- 50.83431
- ],
- [
- 5.65568,
- 50.82591
- ],
- [
- 5.70296,
- 50.80821
- ],
- [
- 5.69338,
- 50.79687
- ],
- [
- 5.70259,
- 50.78396
- ],
- [
- 5.69204,
- 50.75629
- ],
- [
- 5.7218,
- 50.76538
- ],
- [
- 5.73762,
- 50.75842
- ],
- [
- 5.73912,
- 50.76522
- ],
- [
- 5.76476,
- 50.7837
- ],
- [
- 5.77748,
- 50.78344
- ],
- [
- 5.78519,
- 50.7684
- ],
- [
- 5.7927,
- 50.77138
- ],
- [
- 5.80759,
- 50.75681
- ],
- [
- 5.84525,
- 50.76609
- ],
- [
- 5.84901,
- 50.75975
- ],
- [
- 5.88667,
- 50.77108
- ],
- [
- 5.89689,
- 50.75501
- ],
- [
- 5.95896,
- 50.76308
- ],
- [
- 6.02001,
- 50.75521
- ],
- [
- 6.04208,
- 50.74557
- ],
- [
- 6.03953,
- 50.7295
- ],
- [
- 6.11623,
- 50.72364
- ],
- [
- 6.1491,
- 50.68465
- ],
- [
- 6.16312,
- 50.67169
- ],
- [
- 6.17755,
- 50.65576
- ],
- [
- 6.18715,
- 50.6505
- ],
- [
- 6.18348,
- 50.6457
- ],
- [
- 6.18205,
- 50.63583
- ],
- [
- 6.26822,
- 50.62829
- ],
- [
- 6.27251,
- 50.62033
- ],
- [
- 6.24102,
- 50.58657
- ],
- [
- 6.22795,
- 50.58535
- ],
- [
- 6.18304,
- 50.55597
- ],
- [
- 6.1833,
- 50.54646
- ],
- [
- 6.19789,
- 50.53715
- ],
- [
- 6.22586,
- 50.49832
- ],
- [
- 6.26954,
- 50.50961
- ],
- [
- 6.35349,
- 50.49244
- ],
- [
- 6.34706,
- 50.46422
- ],
- [
- 6.37423,
- 50.45989
- ],
- [
- 6.3825,
- 50.43975
- ],
- [
- 6.37408,
- 50.40637
- ],
- [
- 6.35129,
- 50.38206
- ],
- [
- 6.40305,
- 50.34866
- ],
- [
- 6.41162,
- 50.32769
- ],
- [
- 6.40783,
- 50.31893
- ],
- [
- 6.38558,
- 50.31658
- ],
- [
- 6.36388,
- 50.30021
- ],
- [
- 6.32792,
- 50.3186
- ],
- [
- 6.31289,
- 50.31636
- ],
- [
- 6.29335,
- 50.2909
- ],
- [
- 6.29547,
- 50.27422
- ],
- [
- 6.28111,
- 50.26236
- ],
- [
- 6.23624,
- 50.25692
- ],
- [
- 6.21151,
- 50.24816
- ],
- [
- 6.1981,
- 50.23275
- ],
- [
- 6.18166,
- 50.23125
- ],
- [
- 6.1789,
- 50.22147
- ],
- [
- 6.19337,
- 50.20761
- ],
- [
- 6.19683,
- 50.17988
- ],
- [
- 6.15231,
- 50.16841
- ],
- [
- 6.15923,
- 50.14002
- ],
- [
- 6.13978,
- 50.12527
- ],
- [
- 6.10856,
- 50.1326
- ],
- [
- 6.11273,
- 50.16093
- ],
- [
- 6.10156,
- 50.16551
- ],
- [
- 6.08452,
- 50.16697
- ],
- [
- 6.0821,
- 50.15275
- ],
- [
- 6.06344,
- 50.14834
- ],
- [
- 6.03055,
- 50.15829
- ],
- [
- 6.02136,
- 50.17685
- ],
- [
- 5.96932,
- 50.16795
- ],
- [
- 5.96515,
- 50.12813
- ],
- [
- 5.90347,
- 50.11172
- ],
- [
- 5.89064,
- 50.07554
- ],
- [
- 5.86237,
- 50.06368
- ],
- [
- 5.8749,
- 50.04624
- ],
- [
- 5.86392,
- 50.02594
- ],
- [
- 5.82586,
- 50.00934
- ],
- [
- 5.82665,
- 50.00135
- ],
- [
- 5.8448,
- 49.99123
- ],
- [
- 5.83952,
- 49.9756
- ],
- [
- 5.80883,
- 49.95773
- ],
- [
- 5.78215,
- 49.957
- ],
- [
- 5.76822,
- 49.91307
- ],
- [
- 5.74481,
- 49.89975
- ],
- [
- 5.78087,
- 49.88794
- ],
- [
- 5.78897,
- 49.87213
- ],
- [
- 5.77636,
- 49.86265
- ],
- [
- 5.75667,
- 49.8703
- ],
- [
- 5.76191,
- 49.85693
- ],
- [
- 5.75803,
- 49.84287
- ],
- [
- 5.74291,
- 49.83555
- ],
- [
- 5.75151,
- 49.81985
- ],
- [
- 5.75473,
- 49.79514
- ],
- [
- 5.7909,
- 49.79765
- ],
- [
- 5.8179,
- 49.75977
- ],
- [
- 5.83544,
- 49.74713
- ],
- [
- 5.82702,
- 49.72616
- ],
- [
- 5.86996,
- 49.72777
- ],
- [
- 5.88817,
- 49.70952
- ],
- [
- 5.86372,
- 49.68213
- ],
- [
- 5.91262,
- 49.66488
- ],
- [
- 5.90382,
- 49.65192
- ],
- [
- 5.90876,
- 49.63876
- ],
- [
- 5.89899,
- 49.63401
- ],
- [
- 5.89117,
- 49.63469
- ],
- [
- 5.87663,
- 49.60771
- ],
- [
- 5.84953,
- 49.59399
- ],
- [
- 5.87403,
- 49.58991
- ],
- [
- 5.8736,
- 49.57435
- ],
- [
- 5.84053,
- 49.55222
- ],
- [
- 5.82582,
- 49.54931
- ],
- [
- 5.81858,
- 49.5461
- ],
- [
- 5.79504,
- 49.55029
- ],
- [
- 5.77149,
- 49.55832
- ],
- [
- 5.76226,
- 49.554
- ],
- [
- 5.76126,
- 49.53952
- ],
- [
- 5.74792,
- 49.53452
- ],
- [
- 5.73009,
- 49.53954
- ],
- [
- 5.6987,
- 49.53744
- ],
- [
- 5.66008,
- 49.55039
- ],
- [
- 5.64371,
- 49.54565
- ],
- [
- 5.6228,
- 49.5283
- ],
- [
- 5.62589,
- 49.51698
- ],
- [
- 5.61175,
- 49.50102
- ],
- [
- 5.59116,
- 49.51734
- ],
- [
- 5.55638,
- 49.52373
- ],
- [
- 5.54257,
- 49.5105
- ],
- [
- 5.47007,
- 49.49196
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6",
- "url": "https://openstreetmap.org/"
- },
- "category": "osmbasedmap",
- "country_code": "BE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
- "id": "osmbe-nl",
- "license_url": "https://github.com/jbelien/openstreetmap-carto-be/wiki/Tile-Usage-Policy",
- "max_zoom": 18,
- "name": "OpenStreetMap (Belgian Style - Dutch)",
- "type": "tms",
- "url": "https://tile.openstreetmap.be/osmbe-nl/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.47007,
- 49.49196
- ],
- [
- 5.44409,
- 49.51409
- ],
- [
- 5.46213,
- 49.53677
- ],
- [
- 5.43766,
- 49.54766
- ],
- [
- 5.42566,
- 49.59145
- ],
- [
- 5.40775,
- 49.60448
- ],
- [
- 5.35207,
- 49.62396
- ],
- [
- 5.34232,
- 49.61192
- ],
- [
- 5.30544,
- 49.60645
- ],
- [
- 5.3026,
- 49.63608
- ],
- [
- 5.32535,
- 49.6575
- ],
- [
- 5.27025,
- 49.68827
- ],
- [
- 5.24458,
- 49.67985
- ],
- [
- 5.16215,
- 49.6918
- ],
- [
- 5.16164,
- 49.71172
- ],
- [
- 5.12622,
- 49.70442
- ],
- [
- 5.09058,
- 49.75946
- ],
- [
- 5.06262,
- 49.75724
- ],
- [
- 5.01261,
- 49.77534
- ],
- [
- 4.9921,
- 49.79533
- ],
- [
- 4.95485,
- 49.79586
- ],
- [
- 4.94404,
- 49.78583
- ],
- [
- 4.90589,
- 49.78055
- ],
- [
- 4.84827,
- 49.78972
- ],
- [
- 4.86599,
- 49.81918
- ],
- [
- 4.84266,
- 49.86913
- ],
- [
- 4.85659,
- 49.86973
- ],
- [
- 4.87961,
- 49.91078
- ],
- [
- 4.84433,
- 49.94482
- ],
- [
- 4.78844,
- 49.95381
- ],
- [
- 4.78535,
- 49.97018
- ],
- [
- 4.79004,
- 49.98569
- ],
- [
- 4.81194,
- 49.99563
- ],
- [
- 4.81579,
- 50.02853
- ],
- [
- 4.83599,
- 50.04069
- ],
- [
- 4.82339,
- 50.04664
- ],
- [
- 4.81641,
- 50.06702
- ],
- [
- 4.83456,
- 50.06856
- ],
- [
- 4.83709,
- 50.09442
- ],
- [
- 4.84472,
- 50.10023
- ],
- [
- 4.85447,
- 50.1029
- ],
- [
- 4.866,
- 50.09623
- ],
- [
- 4.86587,
- 50.12038
- ],
- [
- 4.8776,
- 50.13223
- ],
- [
- 4.89443,
- 50.13779
- ],
- [
- 4.88043,
- 50.1403
- ],
- [
- 4.87725,
- 50.15205
- ],
- [
- 4.8529,
- 50.15168
- ],
- [
- 4.83169,
- 50.1526
- ],
- [
- 4.82334,
- 50.15923
- ],
- [
- 4.78067,
- 50.14092
- ],
- [
- 4.76486,
- 50.13634
- ],
- [
- 4.75217,
- 50.11158
- ],
- [
- 4.71293,
- 50.09598
- ],
- [
- 4.70278,
- 50.09336
- ],
- [
- 4.68851,
- 50.06595
- ],
- [
- 4.70309,
- 50.05587
- ],
- [
- 4.68731,
- 50.01802
- ],
- [
- 4.69495,
- 49.99662
- ],
- [
- 4.69461,
- 49.99504
- ],
- [
- 4.63074,
- 49.98584
- ],
- [
- 4.58965,
- 49.98336
- ],
- [
- 4.55981,
- 49.96757
- ],
- [
- 4.54315,
- 49.9679
- ],
- [
- 4.52365,
- 49.94973
- ],
- [
- 4.51156,
- 49.94579
- ],
- [
- 4.47953,
- 49.94584
- ],
- [
- 4.44588,
- 49.93656
- ],
- [
- 4.40593,
- 49.94785
- ],
- [
- 4.39149,
- 49.94697
- ],
- [
- 4.38072,
- 49.95088
- ],
- [
- 4.34921,
- 49.95202
- ],
- [
- 4.3137,
- 49.96541
- ],
- [
- 4.19616,
- 49.9536
- ],
- [
- 4.19304,
- 49.95746
- ],
- [
- 4.19582,
- 49.96629
- ],
- [
- 4.13704,
- 49.97691
- ],
- [
- 4.15996,
- 49.99544
- ],
- [
- 4.13683,
- 50.00786
- ],
- [
- 4.13272,
- 50.01973
- ],
- [
- 4.16174,
- 50.05032
- ],
- [
- 4.17458,
- 50.04772
- ],
- [
- 4.22857,
- 50.06873
- ],
- [
- 4.19529,
- 50.10571
- ],
- [
- 4.19766,
- 50.12037
- ],
- [
- 4.19566,
- 50.13394
- ],
- [
- 4.15448,
- 50.12716
- ],
- [
- 4.13656,
- 50.12909
- ],
- [
- 4.12568,
- 50.13511
- ],
- [
- 4.13677,
- 50.15213
- ],
- [
- 4.14989,
- 50.1647
- ],
- [
- 4.14686,
- 50.17314
- ],
- [
- 4.15567,
- 50.19785
- ],
- [
- 4.14799,
- 50.21344
- ],
- [
- 4.15979,
- 50.21579
- ],
- [
- 4.19179,
- 50.24106
- ],
- [
- 4.21836,
- 50.25492
- ],
- [
- 4.20676,
- 50.27068
- ],
- [
- 4.17487,
- 50.27492
- ],
- [
- 4.16567,
- 50.28779
- ],
- [
- 4.155,
- 50.27742
- ],
- [
- 4.16937,
- 50.26848
- ],
- [
- 4.16851,
- 50.25626
- ],
- [
- 4.13426,
- 50.25572
- ],
- [
- 4.13228,
- 50.26754
- ],
- [
- 4.12086,
- 50.27276
- ],
- [
- 4.12139,
- 50.29732
- ],
- [
- 4.10928,
- 50.30112
- ],
- [
- 4.0977,
- 50.31201
- ],
- [
- 4.08017,
- 50.30809
- ],
- [
- 4.07339,
- 50.31754
- ],
- [
- 4.03817,
- 50.33987
- ],
- [
- 4.02738,
- 50.35491
- ],
- [
- 3.98611,
- 50.34137
- ],
- [
- 3.96482,
- 50.34012
- ],
- [
- 3.96355,
- 50.34742
- ],
- [
- 3.90223,
- 50.3257
- ],
- [
- 3.88419,
- 50.32554
- ],
- [
- 3.88429,
- 50.33511
- ],
- [
- 3.85645,
- 50.34099
- ],
- [
- 3.84244,
- 50.35243
- ],
- [
- 3.81321,
- 50.34251
- ],
- [
- 3.80551,
- 50.35098
- ],
- [
- 3.74124,
- 50.34624
- ],
- [
- 3.73556,
- 50.32532
- ],
- [
- 3.73175,
- 50.30705
- ],
- [
- 3.70911,
- 50.3021
- ],
- [
- 3.68231,
- 50.31988
- ],
- [
- 3.66397,
- 50.34724
- ],
- [
- 3.65542,
- 50.37075
- ],
- [
- 3.66788,
- 50.38597
- ],
- [
- 3.67276,
- 50.40227
- ],
- [
- 3.66777,
- 50.42262
- ],
- [
- 3.66743,
- 50.43635
- ],
- [
- 3.65685,
- 50.4464
- ],
- [
- 3.66129,
- 50.45399
- ],
- [
- 3.64419,
- 50.4618
- ],
- [
- 3.6099,
- 50.4935
- ],
- [
- 3.58162,
- 50.48917
- ],
- [
- 3.56897,
- 50.4982
- ],
- [
- 3.49868,
- 50.48577
- ],
- [
- 3.49448,
- 50.49918
- ],
- [
- 3.51582,
- 50.52075
- ],
- [
- 3.4742,
- 50.53204
- ],
- [
- 3.44739,
- 50.50415
- ],
- [
- 3.43663,
- 50.5083
- ],
- [
- 3.42736,
- 50.50327
- ],
- [
- 3.37405,
- 50.48993
- ],
- [
- 3.35949,
- 50.50325
- ],
- [
- 3.32767,
- 50.50732
- ],
- [
- 3.31872,
- 50.51788
- ],
- [
- 3.30319,
- 50.51966
- ],
- [
- 3.28718,
- 50.52552
- ],
- [
- 3.27549,
- 50.53872
- ],
- [
- 3.27524,
- 50.59381
- ],
- [
- 3.25497,
- 50.62115
- ],
- [
- 3.24349,
- 50.64031
- ],
- [
- 3.23893,
- 50.65864
- ],
- [
- 3.24019,
- 50.67023
- ],
- [
- 3.26029,
- 50.67692
- ],
- [
- 3.25131,
- 50.69091
- ],
- [
- 3.25881,
- 50.69312
- ],
- [
- 3.24518,
- 50.71225
- ],
- [
- 3.23779,
- 50.71086
- ],
- [
- 3.22148,
- 50.70958
- ],
- [
- 3.20498,
- 50.71072
- ],
- [
- 3.18953,
- 50.72603
- ],
- [
- 3.19445,
- 50.7316
- ],
- [
- 3.14457,
- 50.78871
- ],
- [
- 3.12547,
- 50.78553
- ],
- [
- 3.11348,
- 50.79278
- ],
- [
- 3.10455,
- 50.78042
- ],
- [
- 3.08585,
- 50.77064
- ],
- [
- 3.05758,
- 50.77987
- ],
- [
- 3.04064,
- 50.77484
- ],
- [
- 3.03691,
- 50.77003
- ],
- [
- 3.02927,
- 50.76813
- ],
- [
- 3.01945,
- 50.77263
- ],
- [
- 2.99536,
- 50.76043
- ],
- [
- 2.96822,
- 50.74763
- ],
- [
- 2.9557,
- 50.75181
- ],
- [
- 2.93962,
- 50.74441
- ],
- [
- 2.94602,
- 50.73167
- ],
- [
- 2.9349,
- 50.72822
- ],
- [
- 2.92939,
- 50.70786
- ],
- [
- 2.92206,
- 50.70224
- ],
- [
- 2.91184,
- 50.70267
- ],
- [
- 2.91281,
- 50.69463
- ],
- [
- 2.90742,
- 50.69209
- ],
- [
- 2.90017,
- 50.69202
- ],
- [
- 2.88533,
- 50.70547
- ],
- [
- 2.87992,
- 50.70199
- ],
- [
- 2.86855,
- 50.70242
- ],
- [
- 2.84646,
- 50.72043
- ],
- [
- 2.81843,
- 50.71386
- ],
- [
- 2.78869,
- 50.72508
- ],
- [
- 2.77811,
- 50.74686
- ],
- [
- 2.76469,
- 50.75397
- ],
- [
- 2.75409,
- 50.76251
- ],
- [
- 2.75922,
- 50.77052
- ],
- [
- 2.73745,
- 50.77967
- ],
- [
- 2.7236,
- 50.79079
- ],
- [
- 2.71636,
- 50.8123
- ],
- [
- 2.6788,
- 50.81207
- ],
- [
- 2.67057,
- 50.81562
- ],
- [
- 2.63543,
- 50.80987
- ],
- [
- 2.61055,
- 50.84419
- ],
- [
- 2.59427,
- 50.84743
- ],
- [
- 2.60628,
- 50.86565
- ],
- [
- 2.60151,
- 50.90993
- ],
- [
- 2.58525,
- 50.91825
- ],
- [
- 2.62479,
- 50.94743
- ],
- [
- 2.62148,
- 50.95406
- ],
- [
- 2.60263,
- 50.98638
- ],
- [
- 2.56946,
- 51.00113
- ],
- [
- 2.55892,
- 51.06596
- ],
- [
- 2.34072,
- 51.31453
- ],
- [
- 3.01078,
- 51.59839
- ],
- [
- 3.32658,
- 51.43728
- ],
- [
- 3.37581,
- 51.3584
- ],
- [
- 3.38739,
- 51.33392
- ],
- [
- 3.36094,
- 51.31523
- ],
- [
- 3.3789,
- 51.30251
- ],
- [
- 3.36832,
- 51.29778
- ],
- [
- 3.38177,
- 51.28732
- ],
- [
- 3.38342,
- 51.27485
- ],
- [
- 3.38922,
- 51.27329
- ],
- [
- 3.41852,
- 51.25984
- ],
- [
- 3.43471,
- 51.24621
- ],
- [
- 3.45031,
- 51.24219
- ],
- [
- 3.527,
- 51.24651
- ],
- [
- 3.51433,
- 51.28799
- ],
- [
- 3.54179,
- 51.29123
- ],
- [
- 3.56145,
- 51.29637
- ],
- [
- 3.57559,
- 51.29428
- ],
- [
- 3.58905,
- 51.30652
- ],
- [
- 3.63839,
- 51.29078
- ],
- [
- 3.6582,
- 51.29056
- ],
- [
- 3.69139,
- 51.28043
- ],
- [
- 3.71763,
- 51.27428
- ],
- [
- 3.77605,
- 51.26777
- ],
- [
- 3.79652,
- 51.25635
- ],
- [
- 3.79031,
- 51.24163
- ],
- [
- 3.78934,
- 51.22711
- ],
- [
- 3.79294,
- 51.21546
- ],
- [
- 3.85827,
- 51.21334
- ],
- [
- 3.88901,
- 51.22423
- ],
- [
- 3.89467,
- 51.21743
- ],
- [
- 3.88782,
- 51.20283
- ],
- [
- 3.91256,
- 51.20837
- ],
- [
- 3.91482,
- 51.21509
- ],
- [
- 3.9281,
- 51.22508
- ],
- [
- 3.93751,
- 51.2174
- ],
- [
- 3.95603,
- 51.22117
- ],
- [
- 4.01551,
- 51.24825
- ],
- [
- 4.0551,
- 51.24402
- ],
- [
- 4.1651,
- 51.2938
- ],
- [
- 4.23804,
- 51.35274
- ],
- [
- 4.21772,
- 51.36206
- ],
- [
- 4.21546,
- 51.37487
- ],
- [
- 4.33535,
- 51.37775
- ],
- [
- 4.34197,
- 51.36012
- ],
- [
- 4.38556,
- 51.35574
- ],
- [
- 4.39906,
- 51.35785
- ],
- [
- 4.42462,
- 51.3668
- ],
- [
- 4.42309,
- 51.37577
- ],
- [
- 4.38147,
- 51.41805
- ],
- [
- 4.39426,
- 51.44251
- ],
- [
- 4.37771,
- 51.44595
- ],
- [
- 4.38055,
- 51.45075
- ],
- [
- 4.4768,
- 51.47912
- ],
- [
- 4.53739,
- 51.48358
- ],
- [
- 4.54967,
- 51.47364
- ],
- [
- 4.53097,
- 51.44965
- ],
- [
- 4.53758,
- 51.42456
- ],
- [
- 4.57427,
- 51.43404
- ],
- [
- 4.6431,
- 51.42478
- ],
- [
- 4.64951,
- 51.42741
- ],
- [
- 4.66744,
- 51.42777
- ],
- [
- 4.66465,
- 51.44625
- ],
- [
- 4.69115,
- 51.45283
- ],
- [
- 4.70175,
- 51.46691
- ],
- [
- 4.72792,
- 51.48435
- ],
- [
- 4.74476,
- 51.48977
- ],
- [
- 4.74945,
- 51.49905
- ],
- [
- 4.75827,
- 51.50302
- ],
- [
- 4.7766,
- 51.50625
- ],
- [
- 4.81666,
- 51.49552
- ],
- [
- 4.82318,
- 51.48441
- ],
- [
- 4.84355,
- 51.48177
- ],
- [
- 4.83884,
- 51.46588
- ],
- [
- 4.84529,
- 51.45817
- ],
- [
- 4.82521,
- 51.44674
- ],
- [
- 4.83103,
- 51.42488
- ],
- [
- 4.88072,
- 51.4166
- ],
- [
- 4.91431,
- 51.45952
- ],
- [
- 4.95767,
- 51.4548
- ],
- [
- 4.94134,
- 51.42928
- ],
- [
- 4.93775,
- 51.40655
- ],
- [
- 4.96007,
- 51.42194
- ],
- [
- 4.99955,
- 51.44324
- ],
- [
- 5.00816,
- 51.47134
- ],
- [
- 5.01937,
- 51.48074
- ],
- [
- 5.03235,
- 51.48827
- ],
- [
- 5.04093,
- 51.4876
- ],
- [
- 5.04722,
- 51.47217
- ],
- [
- 5.08032,
- 51.47226
- ],
- [
- 5.10643,
- 51.43135
- ],
- [
- 5.0727,
- 51.39365
- ],
- [
- 5.11662,
- 51.36118
- ],
- [
- 5.13225,
- 51.3472
- ],
- [
- 5.13581,
- 51.31594
- ],
- [
- 5.15592,
- 51.31278
- ],
- [
- 5.20039,
- 51.32325
- ],
- [
- 5.24326,
- 51.3057
- ],
- [
- 5.22742,
- 51.26844
- ],
- [
- 5.238,
- 51.26255
- ],
- [
- 5.26216,
- 51.26778
- ],
- [
- 5.335,
- 51.26474
- ],
- [
- 5.34493,
- 51.27681
- ],
- [
- 5.41551,
- 51.2639
- ],
- [
- 5.44065,
- 51.28246
- ],
- [
- 5.48215,
- 51.30064
- ],
- [
- 5.51628,
- 51.29599
- ],
- [
- 5.55816,
- 51.26613
- ],
- [
- 5.56283,
- 51.22287
- ],
- [
- 5.65253,
- 51.19899
- ],
- [
- 5.65947,
- 51.19052
- ],
- [
- 5.71011,
- 51.18671
- ],
- [
- 5.74598,
- 51.19455
- ],
- [
- 5.76873,
- 51.18843
- ],
- [
- 5.78118,
- 51.18082
- ],
- [
- 5.78447,
- 51.15925
- ],
- [
- 5.82594,
- 51.16827
- ],
- [
- 5.85709,
- 51.14477
- ],
- [
- 5.83976,
- 51.12993
- ],
- [
- 5.81435,
- 51.11524
- ],
- [
- 5.83555,
- 51.10842
- ],
- [
- 5.8338,
- 51.09577
- ],
- [
- 5.82291,
- 51.09124
- ],
- [
- 5.8119,
- 51.0943
- ],
- [
- 5.79816,
- 51.09023
- ],
- [
- 5.80612,
- 51.07955
- ],
- [
- 5.80458,
- 51.05888
- ],
- [
- 5.77731,
- 51.05804
- ],
- [
- 5.76027,
- 51.03223
- ],
- [
- 5.77383,
- 51.02859
- ],
- [
- 5.77829,
- 51.02399
- ],
- [
- 5.76759,
- 51.00526
- ],
- [
- 5.76846,
- 50.9985
- ],
- [
- 5.76419,
- 50.99502
- ],
- [
- 5.74816,
- 50.98087
- ],
- [
- 5.72174,
- 50.96128
- ],
- [
- 5.73469,
- 50.95683
- ],
- [
- 5.7426,
- 50.96113
- ],
- [
- 5.74604,
- 50.96209
- ],
- [
- 5.75617,
- 50.95898
- ],
- [
- 5.76011,
- 50.95227
- ],
- [
- 5.73223,
- 50.9221
- ],
- [
- 5.72625,
- 50.9059
- ],
- [
- 5.70051,
- 50.90955
- ],
- [
- 5.69711,
- 50.8958
- ],
- [
- 5.68051,
- 50.88068
- ],
- [
- 5.64516,
- 50.86533
- ],
- [
- 5.64337,
- 50.84974
- ],
- [
- 5.64049,
- 50.84701
- ],
- [
- 5.64576,
- 50.83961
- ],
- [
- 5.64567,
- 50.83789
- ],
- [
- 5.65094,
- 50.83431
- ],
- [
- 5.65568,
- 50.82591
- ],
- [
- 5.70296,
- 50.80821
- ],
- [
- 5.69338,
- 50.79687
- ],
- [
- 5.70259,
- 50.78396
- ],
- [
- 5.69204,
- 50.75629
- ],
- [
- 5.7218,
- 50.76538
- ],
- [
- 5.73762,
- 50.75842
- ],
- [
- 5.73912,
- 50.76522
- ],
- [
- 5.76476,
- 50.7837
- ],
- [
- 5.77748,
- 50.78344
- ],
- [
- 5.78519,
- 50.7684
- ],
- [
- 5.7927,
- 50.77138
- ],
- [
- 5.80759,
- 50.75681
- ],
- [
- 5.84525,
- 50.76609
- ],
- [
- 5.84901,
- 50.75975
- ],
- [
- 5.88667,
- 50.77108
- ],
- [
- 5.89689,
- 50.75501
- ],
- [
- 5.95896,
- 50.76308
- ],
- [
- 6.02001,
- 50.75521
- ],
- [
- 6.04208,
- 50.74557
- ],
- [
- 6.03953,
- 50.7295
- ],
- [
- 6.11623,
- 50.72364
- ],
- [
- 6.1491,
- 50.68465
- ],
- [
- 6.16312,
- 50.67169
- ],
- [
- 6.17755,
- 50.65576
- ],
- [
- 6.18715,
- 50.6505
- ],
- [
- 6.18348,
- 50.6457
- ],
- [
- 6.18205,
- 50.63583
- ],
- [
- 6.26822,
- 50.62829
- ],
- [
- 6.27251,
- 50.62033
- ],
- [
- 6.24102,
- 50.58657
- ],
- [
- 6.22795,
- 50.58535
- ],
- [
- 6.18304,
- 50.55597
- ],
- [
- 6.1833,
- 50.54646
- ],
- [
- 6.19789,
- 50.53715
- ],
- [
- 6.22586,
- 50.49832
- ],
- [
- 6.26954,
- 50.50961
- ],
- [
- 6.35349,
- 50.49244
- ],
- [
- 6.34706,
- 50.46422
- ],
- [
- 6.37423,
- 50.45989
- ],
- [
- 6.3825,
- 50.43975
- ],
- [
- 6.37408,
- 50.40637
- ],
- [
- 6.35129,
- 50.38206
- ],
- [
- 6.40305,
- 50.34866
- ],
- [
- 6.41162,
- 50.32769
- ],
- [
- 6.40783,
- 50.31893
- ],
- [
- 6.38558,
- 50.31658
- ],
- [
- 6.36388,
- 50.30021
- ],
- [
- 6.32792,
- 50.3186
- ],
- [
- 6.31289,
- 50.31636
- ],
- [
- 6.29335,
- 50.2909
- ],
- [
- 6.29547,
- 50.27422
- ],
- [
- 6.28111,
- 50.26236
- ],
- [
- 6.23624,
- 50.25692
- ],
- [
- 6.21151,
- 50.24816
- ],
- [
- 6.1981,
- 50.23275
- ],
- [
- 6.18166,
- 50.23125
- ],
- [
- 6.1789,
- 50.22147
- ],
- [
- 6.19337,
- 50.20761
- ],
- [
- 6.19683,
- 50.17988
- ],
- [
- 6.15231,
- 50.16841
- ],
- [
- 6.15923,
- 50.14002
- ],
- [
- 6.13978,
- 50.12527
- ],
- [
- 6.10856,
- 50.1326
- ],
- [
- 6.11273,
- 50.16093
- ],
- [
- 6.10156,
- 50.16551
- ],
- [
- 6.08452,
- 50.16697
- ],
- [
- 6.0821,
- 50.15275
- ],
- [
- 6.06344,
- 50.14834
- ],
- [
- 6.03055,
- 50.15829
- ],
- [
- 6.02136,
- 50.17685
- ],
- [
- 5.96932,
- 50.16795
- ],
- [
- 5.96515,
- 50.12813
- ],
- [
- 5.90347,
- 50.11172
- ],
- [
- 5.89064,
- 50.07554
- ],
- [
- 5.86237,
- 50.06368
- ],
- [
- 5.8749,
- 50.04624
- ],
- [
- 5.86392,
- 50.02594
- ],
- [
- 5.82586,
- 50.00934
- ],
- [
- 5.82665,
- 50.00135
- ],
- [
- 5.8448,
- 49.99123
- ],
- [
- 5.83952,
- 49.9756
- ],
- [
- 5.80883,
- 49.95773
- ],
- [
- 5.78215,
- 49.957
- ],
- [
- 5.76822,
- 49.91307
- ],
- [
- 5.74481,
- 49.89975
- ],
- [
- 5.78087,
- 49.88794
- ],
- [
- 5.78897,
- 49.87213
- ],
- [
- 5.77636,
- 49.86265
- ],
- [
- 5.75667,
- 49.8703
- ],
- [
- 5.76191,
- 49.85693
- ],
- [
- 5.75803,
- 49.84287
- ],
- [
- 5.74291,
- 49.83555
- ],
- [
- 5.75151,
- 49.81985
- ],
- [
- 5.75473,
- 49.79514
- ],
- [
- 5.7909,
- 49.79765
- ],
- [
- 5.8179,
- 49.75977
- ],
- [
- 5.83544,
- 49.74713
- ],
- [
- 5.82702,
- 49.72616
- ],
- [
- 5.86996,
- 49.72777
- ],
- [
- 5.88817,
- 49.70952
- ],
- [
- 5.86372,
- 49.68213
- ],
- [
- 5.91262,
- 49.66488
- ],
- [
- 5.90382,
- 49.65192
- ],
- [
- 5.90876,
- 49.63876
- ],
- [
- 5.89899,
- 49.63401
- ],
- [
- 5.89117,
- 49.63469
- ],
- [
- 5.87663,
- 49.60771
- ],
- [
- 5.84953,
- 49.59399
- ],
- [
- 5.87403,
- 49.58991
- ],
- [
- 5.8736,
- 49.57435
- ],
- [
- 5.84053,
- 49.55222
- ],
- [
- 5.82582,
- 49.54931
- ],
- [
- 5.81858,
- 49.5461
- ],
- [
- 5.79504,
- 49.55029
- ],
- [
- 5.77149,
- 49.55832
- ],
- [
- 5.76226,
- 49.554
- ],
- [
- 5.76126,
- 49.53952
- ],
- [
- 5.74792,
- 49.53452
- ],
- [
- 5.73009,
- 49.53954
- ],
- [
- 5.6987,
- 49.53744
- ],
- [
- 5.66008,
- 49.55039
- ],
- [
- 5.64371,
- 49.54565
- ],
- [
- 5.6228,
- 49.5283
- ],
- [
- 5.62589,
- 49.51698
- ],
- [
- 5.61175,
- 49.50102
- ],
- [
- 5.59116,
- 49.51734
- ],
- [
- 5.55638,
- 49.52373
- ],
- [
- 5.54257,
- 49.5105
- ],
- [
- 5.47007,
- 49.49196
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6",
- "url": "https://openstreetmap.org/"
- },
- "category": "osmbasedmap",
- "country_code": "BE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
- "id": "osmbe-fr",
- "license_url": "https://github.com/jbelien/openstreetmap-carto-be/wiki/Tile-Usage-Policy",
- "max_zoom": 18,
- "name": "OpenStreetMap (Belgian Style - French)",
- "type": "tms",
- "url": "https://tile.openstreetmap.be/osmbe-fr/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.47007,
- 49.49196
- ],
- [
- 5.44409,
- 49.51409
- ],
- [
- 5.46213,
- 49.53677
- ],
- [
- 5.43766,
- 49.54766
- ],
- [
- 5.42566,
- 49.59145
- ],
- [
- 5.40775,
- 49.60448
- ],
- [
- 5.35207,
- 49.62396
- ],
- [
- 5.34232,
- 49.61192
- ],
- [
- 5.30544,
- 49.60645
- ],
- [
- 5.3026,
- 49.63608
- ],
- [
- 5.32535,
- 49.6575
- ],
- [
- 5.27025,
- 49.68827
- ],
- [
- 5.24458,
- 49.67985
- ],
- [
- 5.16215,
- 49.6918
- ],
- [
- 5.16164,
- 49.71172
- ],
- [
- 5.12622,
- 49.70442
- ],
- [
- 5.09058,
- 49.75946
- ],
- [
- 5.06262,
- 49.75724
- ],
- [
- 5.01261,
- 49.77534
- ],
- [
- 4.9921,
- 49.79533
- ],
- [
- 4.95485,
- 49.79586
- ],
- [
- 4.94404,
- 49.78583
- ],
- [
- 4.90589,
- 49.78055
- ],
- [
- 4.84827,
- 49.78972
- ],
- [
- 4.86599,
- 49.81918
- ],
- [
- 4.84266,
- 49.86913
- ],
- [
- 4.85659,
- 49.86973
- ],
- [
- 4.87961,
- 49.91078
- ],
- [
- 4.84433,
- 49.94482
- ],
- [
- 4.78844,
- 49.95381
- ],
- [
- 4.78535,
- 49.97018
- ],
- [
- 4.79004,
- 49.98569
- ],
- [
- 4.81194,
- 49.99563
- ],
- [
- 4.81579,
- 50.02853
- ],
- [
- 4.83599,
- 50.04069
- ],
- [
- 4.82339,
- 50.04664
- ],
- [
- 4.81641,
- 50.06702
- ],
- [
- 4.83456,
- 50.06856
- ],
- [
- 4.83709,
- 50.09442
- ],
- [
- 4.84472,
- 50.10023
- ],
- [
- 4.85447,
- 50.1029
- ],
- [
- 4.866,
- 50.09623
- ],
- [
- 4.86587,
- 50.12038
- ],
- [
- 4.8776,
- 50.13223
- ],
- [
- 4.89443,
- 50.13779
- ],
- [
- 4.88043,
- 50.1403
- ],
- [
- 4.87725,
- 50.15205
- ],
- [
- 4.8529,
- 50.15168
- ],
- [
- 4.83169,
- 50.1526
- ],
- [
- 4.82334,
- 50.15923
- ],
- [
- 4.78067,
- 50.14092
- ],
- [
- 4.76486,
- 50.13634
- ],
- [
- 4.75217,
- 50.11158
- ],
- [
- 4.71293,
- 50.09598
- ],
- [
- 4.70278,
- 50.09336
- ],
- [
- 4.68851,
- 50.06595
- ],
- [
- 4.70309,
- 50.05587
- ],
- [
- 4.68731,
- 50.01802
- ],
- [
- 4.69495,
- 49.99662
- ],
- [
- 4.69461,
- 49.99504
- ],
- [
- 4.63074,
- 49.98584
- ],
- [
- 4.58965,
- 49.98336
- ],
- [
- 4.55981,
- 49.96757
- ],
- [
- 4.54315,
- 49.9679
- ],
- [
- 4.52365,
- 49.94973
- ],
- [
- 4.51156,
- 49.94579
- ],
- [
- 4.47953,
- 49.94584
- ],
- [
- 4.44588,
- 49.93656
- ],
- [
- 4.40593,
- 49.94785
- ],
- [
- 4.39149,
- 49.94697
- ],
- [
- 4.38072,
- 49.95088
- ],
- [
- 4.34921,
- 49.95202
- ],
- [
- 4.3137,
- 49.96541
- ],
- [
- 4.19616,
- 49.9536
- ],
- [
- 4.19304,
- 49.95746
- ],
- [
- 4.19582,
- 49.96629
- ],
- [
- 4.13704,
- 49.97691
- ],
- [
- 4.15996,
- 49.99544
- ],
- [
- 4.13683,
- 50.00786
- ],
- [
- 4.13272,
- 50.01973
- ],
- [
- 4.16174,
- 50.05032
- ],
- [
- 4.17458,
- 50.04772
- ],
- [
- 4.22857,
- 50.06873
- ],
- [
- 4.19529,
- 50.10571
- ],
- [
- 4.19766,
- 50.12037
- ],
- [
- 4.19566,
- 50.13394
- ],
- [
- 4.15448,
- 50.12716
- ],
- [
- 4.13656,
- 50.12909
- ],
- [
- 4.12568,
- 50.13511
- ],
- [
- 4.13677,
- 50.15213
- ],
- [
- 4.14989,
- 50.1647
- ],
- [
- 4.14686,
- 50.17314
- ],
- [
- 4.15567,
- 50.19785
- ],
- [
- 4.14799,
- 50.21344
- ],
- [
- 4.15979,
- 50.21579
- ],
- [
- 4.19179,
- 50.24106
- ],
- [
- 4.21836,
- 50.25492
- ],
- [
- 4.20676,
- 50.27068
- ],
- [
- 4.17487,
- 50.27492
- ],
- [
- 4.16567,
- 50.28779
- ],
- [
- 4.155,
- 50.27742
- ],
- [
- 4.16937,
- 50.26848
- ],
- [
- 4.16851,
- 50.25626
- ],
- [
- 4.13426,
- 50.25572
- ],
- [
- 4.13228,
- 50.26754
- ],
- [
- 4.12086,
- 50.27276
- ],
- [
- 4.12139,
- 50.29732
- ],
- [
- 4.10928,
- 50.30112
- ],
- [
- 4.0977,
- 50.31201
- ],
- [
- 4.08017,
- 50.30809
- ],
- [
- 4.07339,
- 50.31754
- ],
- [
- 4.03817,
- 50.33987
- ],
- [
- 4.02738,
- 50.35491
- ],
- [
- 3.98611,
- 50.34137
- ],
- [
- 3.96482,
- 50.34012
- ],
- [
- 3.96355,
- 50.34742
- ],
- [
- 3.90223,
- 50.3257
- ],
- [
- 3.88419,
- 50.32554
- ],
- [
- 3.88429,
- 50.33511
- ],
- [
- 3.85645,
- 50.34099
- ],
- [
- 3.84244,
- 50.35243
- ],
- [
- 3.81321,
- 50.34251
- ],
- [
- 3.80551,
- 50.35098
- ],
- [
- 3.74124,
- 50.34624
- ],
- [
- 3.73556,
- 50.32532
- ],
- [
- 3.73175,
- 50.30705
- ],
- [
- 3.70911,
- 50.3021
- ],
- [
- 3.68231,
- 50.31988
- ],
- [
- 3.66397,
- 50.34724
- ],
- [
- 3.65542,
- 50.37075
- ],
- [
- 3.66788,
- 50.38597
- ],
- [
- 3.67276,
- 50.40227
- ],
- [
- 3.66777,
- 50.42262
- ],
- [
- 3.66743,
- 50.43635
- ],
- [
- 3.65685,
- 50.4464
- ],
- [
- 3.66129,
- 50.45399
- ],
- [
- 3.64419,
- 50.4618
- ],
- [
- 3.6099,
- 50.4935
- ],
- [
- 3.58162,
- 50.48917
- ],
- [
- 3.56897,
- 50.4982
- ],
- [
- 3.49868,
- 50.48577
- ],
- [
- 3.49448,
- 50.49918
- ],
- [
- 3.51582,
- 50.52075
- ],
- [
- 3.4742,
- 50.53204
- ],
- [
- 3.44739,
- 50.50415
- ],
- [
- 3.43663,
- 50.5083
- ],
- [
- 3.42736,
- 50.50327
- ],
- [
- 3.37405,
- 50.48993
- ],
- [
- 3.35949,
- 50.50325
- ],
- [
- 3.32767,
- 50.50732
- ],
- [
- 3.31872,
- 50.51788
- ],
- [
- 3.30319,
- 50.51966
- ],
- [
- 3.28718,
- 50.52552
- ],
- [
- 3.27549,
- 50.53872
- ],
- [
- 3.27524,
- 50.59381
- ],
- [
- 3.25497,
- 50.62115
- ],
- [
- 3.24349,
- 50.64031
- ],
- [
- 3.23893,
- 50.65864
- ],
- [
- 3.24019,
- 50.67023
- ],
- [
- 3.26029,
- 50.67692
- ],
- [
- 3.25131,
- 50.69091
- ],
- [
- 3.25881,
- 50.69312
- ],
- [
- 3.24518,
- 50.71225
- ],
- [
- 3.23779,
- 50.71086
- ],
- [
- 3.22148,
- 50.70958
- ],
- [
- 3.20498,
- 50.71072
- ],
- [
- 3.18953,
- 50.72603
- ],
- [
- 3.19445,
- 50.7316
- ],
- [
- 3.14457,
- 50.78871
- ],
- [
- 3.12547,
- 50.78553
- ],
- [
- 3.11348,
- 50.79278
- ],
- [
- 3.10455,
- 50.78042
- ],
- [
- 3.08585,
- 50.77064
- ],
- [
- 3.05758,
- 50.77987
- ],
- [
- 3.04064,
- 50.77484
- ],
- [
- 3.03691,
- 50.77003
- ],
- [
- 3.02927,
- 50.76813
- ],
- [
- 3.01945,
- 50.77263
- ],
- [
- 2.99536,
- 50.76043
- ],
- [
- 2.96822,
- 50.74763
- ],
- [
- 2.9557,
- 50.75181
- ],
- [
- 2.93962,
- 50.74441
- ],
- [
- 2.94602,
- 50.73167
- ],
- [
- 2.9349,
- 50.72822
- ],
- [
- 2.92939,
- 50.70786
- ],
- [
- 2.92206,
- 50.70224
- ],
- [
- 2.91184,
- 50.70267
- ],
- [
- 2.91281,
- 50.69463
- ],
- [
- 2.90742,
- 50.69209
- ],
- [
- 2.90017,
- 50.69202
- ],
- [
- 2.88533,
- 50.70547
- ],
- [
- 2.87992,
- 50.70199
- ],
- [
- 2.86855,
- 50.70242
- ],
- [
- 2.84646,
- 50.72043
- ],
- [
- 2.81843,
- 50.71386
- ],
- [
- 2.78869,
- 50.72508
- ],
- [
- 2.77811,
- 50.74686
- ],
- [
- 2.76469,
- 50.75397
- ],
- [
- 2.75409,
- 50.76251
- ],
- [
- 2.75922,
- 50.77052
- ],
- [
- 2.73745,
- 50.77967
- ],
- [
- 2.7236,
- 50.79079
- ],
- [
- 2.71636,
- 50.8123
- ],
- [
- 2.6788,
- 50.81207
- ],
- [
- 2.67057,
- 50.81562
- ],
- [
- 2.63543,
- 50.80987
- ],
- [
- 2.61055,
- 50.84419
- ],
- [
- 2.59427,
- 50.84743
- ],
- [
- 2.60628,
- 50.86565
- ],
- [
- 2.60151,
- 50.90993
- ],
- [
- 2.58525,
- 50.91825
- ],
- [
- 2.62479,
- 50.94743
- ],
- [
- 2.62148,
- 50.95406
- ],
- [
- 2.60263,
- 50.98638
- ],
- [
- 2.56946,
- 51.00113
- ],
- [
- 2.55892,
- 51.06596
- ],
- [
- 2.34072,
- 51.31453
- ],
- [
- 3.01078,
- 51.59839
- ],
- [
- 3.32658,
- 51.43728
- ],
- [
- 3.37581,
- 51.3584
- ],
- [
- 3.38739,
- 51.33392
- ],
- [
- 3.36094,
- 51.31523
- ],
- [
- 3.3789,
- 51.30251
- ],
- [
- 3.36832,
- 51.29778
- ],
- [
- 3.38177,
- 51.28732
- ],
- [
- 3.38342,
- 51.27485
- ],
- [
- 3.38922,
- 51.27329
- ],
- [
- 3.41852,
- 51.25984
- ],
- [
- 3.43471,
- 51.24621
- ],
- [
- 3.45031,
- 51.24219
- ],
- [
- 3.527,
- 51.24651
- ],
- [
- 3.51433,
- 51.28799
- ],
- [
- 3.54179,
- 51.29123
- ],
- [
- 3.56145,
- 51.29637
- ],
- [
- 3.57559,
- 51.29428
- ],
- [
- 3.58905,
- 51.30652
- ],
- [
- 3.63839,
- 51.29078
- ],
- [
- 3.6582,
- 51.29056
- ],
- [
- 3.69139,
- 51.28043
- ],
- [
- 3.71763,
- 51.27428
- ],
- [
- 3.77605,
- 51.26777
- ],
- [
- 3.79652,
- 51.25635
- ],
- [
- 3.79031,
- 51.24163
- ],
- [
- 3.78934,
- 51.22711
- ],
- [
- 3.79294,
- 51.21546
- ],
- [
- 3.85827,
- 51.21334
- ],
- [
- 3.88901,
- 51.22423
- ],
- [
- 3.89467,
- 51.21743
- ],
- [
- 3.88782,
- 51.20283
- ],
- [
- 3.91256,
- 51.20837
- ],
- [
- 3.91482,
- 51.21509
- ],
- [
- 3.9281,
- 51.22508
- ],
- [
- 3.93751,
- 51.2174
- ],
- [
- 3.95603,
- 51.22117
- ],
- [
- 4.01551,
- 51.24825
- ],
- [
- 4.0551,
- 51.24402
- ],
- [
- 4.1651,
- 51.2938
- ],
- [
- 4.23804,
- 51.35274
- ],
- [
- 4.21772,
- 51.36206
- ],
- [
- 4.21546,
- 51.37487
- ],
- [
- 4.33535,
- 51.37775
- ],
- [
- 4.34197,
- 51.36012
- ],
- [
- 4.38556,
- 51.35574
- ],
- [
- 4.39906,
- 51.35785
- ],
- [
- 4.42462,
- 51.3668
- ],
- [
- 4.42309,
- 51.37577
- ],
- [
- 4.38147,
- 51.41805
- ],
- [
- 4.39426,
- 51.44251
- ],
- [
- 4.37771,
- 51.44595
- ],
- [
- 4.38055,
- 51.45075
- ],
- [
- 4.4768,
- 51.47912
- ],
- [
- 4.53739,
- 51.48358
- ],
- [
- 4.54967,
- 51.47364
- ],
- [
- 4.53097,
- 51.44965
- ],
- [
- 4.53758,
- 51.42456
- ],
- [
- 4.57427,
- 51.43404
- ],
- [
- 4.6431,
- 51.42478
- ],
- [
- 4.64951,
- 51.42741
- ],
- [
- 4.66744,
- 51.42777
- ],
- [
- 4.66465,
- 51.44625
- ],
- [
- 4.69115,
- 51.45283
- ],
- [
- 4.70175,
- 51.46691
- ],
- [
- 4.72792,
- 51.48435
- ],
- [
- 4.74476,
- 51.48977
- ],
- [
- 4.74945,
- 51.49905
- ],
- [
- 4.75827,
- 51.50302
- ],
- [
- 4.7766,
- 51.50625
- ],
- [
- 4.81666,
- 51.49552
- ],
- [
- 4.82318,
- 51.48441
- ],
- [
- 4.84355,
- 51.48177
- ],
- [
- 4.83884,
- 51.46588
- ],
- [
- 4.84529,
- 51.45817
- ],
- [
- 4.82521,
- 51.44674
- ],
- [
- 4.83103,
- 51.42488
- ],
- [
- 4.88072,
- 51.4166
- ],
- [
- 4.91431,
- 51.45952
- ],
- [
- 4.95767,
- 51.4548
- ],
- [
- 4.94134,
- 51.42928
- ],
- [
- 4.93775,
- 51.40655
- ],
- [
- 4.96007,
- 51.42194
- ],
- [
- 4.99955,
- 51.44324
- ],
- [
- 5.00816,
- 51.47134
- ],
- [
- 5.01937,
- 51.48074
- ],
- [
- 5.03235,
- 51.48827
- ],
- [
- 5.04093,
- 51.4876
- ],
- [
- 5.04722,
- 51.47217
- ],
- [
- 5.08032,
- 51.47226
- ],
- [
- 5.10643,
- 51.43135
- ],
- [
- 5.0727,
- 51.39365
- ],
- [
- 5.11662,
- 51.36118
- ],
- [
- 5.13225,
- 51.3472
- ],
- [
- 5.13581,
- 51.31594
- ],
- [
- 5.15592,
- 51.31278
- ],
- [
- 5.20039,
- 51.32325
- ],
- [
- 5.24326,
- 51.3057
- ],
- [
- 5.22742,
- 51.26844
- ],
- [
- 5.238,
- 51.26255
- ],
- [
- 5.26216,
- 51.26778
- ],
- [
- 5.335,
- 51.26474
- ],
- [
- 5.34493,
- 51.27681
- ],
- [
- 5.41551,
- 51.2639
- ],
- [
- 5.44065,
- 51.28246
- ],
- [
- 5.48215,
- 51.30064
- ],
- [
- 5.51628,
- 51.29599
- ],
- [
- 5.55816,
- 51.26613
- ],
- [
- 5.56283,
- 51.22287
- ],
- [
- 5.65253,
- 51.19899
- ],
- [
- 5.65947,
- 51.19052
- ],
- [
- 5.71011,
- 51.18671
- ],
- [
- 5.74598,
- 51.19455
- ],
- [
- 5.76873,
- 51.18843
- ],
- [
- 5.78118,
- 51.18082
- ],
- [
- 5.78447,
- 51.15925
- ],
- [
- 5.82594,
- 51.16827
- ],
- [
- 5.85709,
- 51.14477
- ],
- [
- 5.83976,
- 51.12993
- ],
- [
- 5.81435,
- 51.11524
- ],
- [
- 5.83555,
- 51.10842
- ],
- [
- 5.8338,
- 51.09577
- ],
- [
- 5.82291,
- 51.09124
- ],
- [
- 5.8119,
- 51.0943
- ],
- [
- 5.79816,
- 51.09023
- ],
- [
- 5.80612,
- 51.07955
- ],
- [
- 5.80458,
- 51.05888
- ],
- [
- 5.77731,
- 51.05804
- ],
- [
- 5.76027,
- 51.03223
- ],
- [
- 5.77383,
- 51.02859
- ],
- [
- 5.77829,
- 51.02399
- ],
- [
- 5.76759,
- 51.00526
- ],
- [
- 5.76846,
- 50.9985
- ],
- [
- 5.76419,
- 50.99502
- ],
- [
- 5.74816,
- 50.98087
- ],
- [
- 5.72174,
- 50.96128
- ],
- [
- 5.73469,
- 50.95683
- ],
- [
- 5.7426,
- 50.96113
- ],
- [
- 5.74604,
- 50.96209
- ],
- [
- 5.75617,
- 50.95898
- ],
- [
- 5.76011,
- 50.95227
- ],
- [
- 5.73223,
- 50.9221
- ],
- [
- 5.72625,
- 50.9059
- ],
- [
- 5.70051,
- 50.90955
- ],
- [
- 5.69711,
- 50.8958
- ],
- [
- 5.68051,
- 50.88068
- ],
- [
- 5.64516,
- 50.86533
- ],
- [
- 5.64337,
- 50.84974
- ],
- [
- 5.64049,
- 50.84701
- ],
- [
- 5.64576,
- 50.83961
- ],
- [
- 5.64567,
- 50.83789
- ],
- [
- 5.65094,
- 50.83431
- ],
- [
- 5.65568,
- 50.82591
- ],
- [
- 5.70296,
- 50.80821
- ],
- [
- 5.69338,
- 50.79687
- ],
- [
- 5.70259,
- 50.78396
- ],
- [
- 5.69204,
- 50.75629
- ],
- [
- 5.7218,
- 50.76538
- ],
- [
- 5.73762,
- 50.75842
- ],
- [
- 5.73912,
- 50.76522
- ],
- [
- 5.76476,
- 50.7837
- ],
- [
- 5.77748,
- 50.78344
- ],
- [
- 5.78519,
- 50.7684
- ],
- [
- 5.7927,
- 50.77138
- ],
- [
- 5.80759,
- 50.75681
- ],
- [
- 5.84525,
- 50.76609
- ],
- [
- 5.84901,
- 50.75975
- ],
- [
- 5.88667,
- 50.77108
- ],
- [
- 5.89689,
- 50.75501
- ],
- [
- 5.95896,
- 50.76308
- ],
- [
- 6.02001,
- 50.75521
- ],
- [
- 6.04208,
- 50.74557
- ],
- [
- 6.03953,
- 50.7295
- ],
- [
- 6.11623,
- 50.72364
- ],
- [
- 6.1491,
- 50.68465
- ],
- [
- 6.16312,
- 50.67169
- ],
- [
- 6.17755,
- 50.65576
- ],
- [
- 6.18715,
- 50.6505
- ],
- [
- 6.18348,
- 50.6457
- ],
- [
- 6.18205,
- 50.63583
- ],
- [
- 6.26822,
- 50.62829
- ],
- [
- 6.27251,
- 50.62033
- ],
- [
- 6.24102,
- 50.58657
- ],
- [
- 6.22795,
- 50.58535
- ],
- [
- 6.18304,
- 50.55597
- ],
- [
- 6.1833,
- 50.54646
- ],
- [
- 6.19789,
- 50.53715
- ],
- [
- 6.22586,
- 50.49832
- ],
- [
- 6.26954,
- 50.50961
- ],
- [
- 6.35349,
- 50.49244
- ],
- [
- 6.34706,
- 50.46422
- ],
- [
- 6.37423,
- 50.45989
- ],
- [
- 6.3825,
- 50.43975
- ],
- [
- 6.37408,
- 50.40637
- ],
- [
- 6.35129,
- 50.38206
- ],
- [
- 6.40305,
- 50.34866
- ],
- [
- 6.41162,
- 50.32769
- ],
- [
- 6.40783,
- 50.31893
- ],
- [
- 6.38558,
- 50.31658
- ],
- [
- 6.36388,
- 50.30021
- ],
- [
- 6.32792,
- 50.3186
- ],
- [
- 6.31289,
- 50.31636
- ],
- [
- 6.29335,
- 50.2909
- ],
- [
- 6.29547,
- 50.27422
- ],
- [
- 6.28111,
- 50.26236
- ],
- [
- 6.23624,
- 50.25692
- ],
- [
- 6.21151,
- 50.24816
- ],
- [
- 6.1981,
- 50.23275
- ],
- [
- 6.18166,
- 50.23125
- ],
- [
- 6.1789,
- 50.22147
- ],
- [
- 6.19337,
- 50.20761
- ],
- [
- 6.19683,
- 50.17988
- ],
- [
- 6.15231,
- 50.16841
- ],
- [
- 6.15923,
- 50.14002
- ],
- [
- 6.13978,
- 50.12527
- ],
- [
- 6.10856,
- 50.1326
- ],
- [
- 6.11273,
- 50.16093
- ],
- [
- 6.10156,
- 50.16551
- ],
- [
- 6.08452,
- 50.16697
- ],
- [
- 6.0821,
- 50.15275
- ],
- [
- 6.06344,
- 50.14834
- ],
- [
- 6.03055,
- 50.15829
- ],
- [
- 6.02136,
- 50.17685
- ],
- [
- 5.96932,
- 50.16795
- ],
- [
- 5.96515,
- 50.12813
- ],
- [
- 5.90347,
- 50.11172
- ],
- [
- 5.89064,
- 50.07554
- ],
- [
- 5.86237,
- 50.06368
- ],
- [
- 5.8749,
- 50.04624
- ],
- [
- 5.86392,
- 50.02594
- ],
- [
- 5.82586,
- 50.00934
- ],
- [
- 5.82665,
- 50.00135
- ],
- [
- 5.8448,
- 49.99123
- ],
- [
- 5.83952,
- 49.9756
- ],
- [
- 5.80883,
- 49.95773
- ],
- [
- 5.78215,
- 49.957
- ],
- [
- 5.76822,
- 49.91307
- ],
- [
- 5.74481,
- 49.89975
- ],
- [
- 5.78087,
- 49.88794
- ],
- [
- 5.78897,
- 49.87213
- ],
- [
- 5.77636,
- 49.86265
- ],
- [
- 5.75667,
- 49.8703
- ],
- [
- 5.76191,
- 49.85693
- ],
- [
- 5.75803,
- 49.84287
- ],
- [
- 5.74291,
- 49.83555
- ],
- [
- 5.75151,
- 49.81985
- ],
- [
- 5.75473,
- 49.79514
- ],
- [
- 5.7909,
- 49.79765
- ],
- [
- 5.8179,
- 49.75977
- ],
- [
- 5.83544,
- 49.74713
- ],
- [
- 5.82702,
- 49.72616
- ],
- [
- 5.86996,
- 49.72777
- ],
- [
- 5.88817,
- 49.70952
- ],
- [
- 5.86372,
- 49.68213
- ],
- [
- 5.91262,
- 49.66488
- ],
- [
- 5.90382,
- 49.65192
- ],
- [
- 5.90876,
- 49.63876
- ],
- [
- 5.89899,
- 49.63401
- ],
- [
- 5.89117,
- 49.63469
- ],
- [
- 5.87663,
- 49.60771
- ],
- [
- 5.84953,
- 49.59399
- ],
- [
- 5.87403,
- 49.58991
- ],
- [
- 5.8736,
- 49.57435
- ],
- [
- 5.84053,
- 49.55222
- ],
- [
- 5.82582,
- 49.54931
- ],
- [
- 5.81858,
- 49.5461
- ],
- [
- 5.79504,
- 49.55029
- ],
- [
- 5.77149,
- 49.55832
- ],
- [
- 5.76226,
- 49.554
- ],
- [
- 5.76126,
- 49.53952
- ],
- [
- 5.74792,
- 49.53452
- ],
- [
- 5.73009,
- 49.53954
- ],
- [
- 5.6987,
- 49.53744
- ],
- [
- 5.66008,
- 49.55039
- ],
- [
- 5.64371,
- 49.54565
- ],
- [
- 5.6228,
- 49.5283
- ],
- [
- 5.62589,
- 49.51698
- ],
- [
- 5.61175,
- 49.50102
- ],
- [
- 5.59116,
- 49.51734
- ],
- [
- 5.55638,
- 49.52373
- ],
- [
- 5.54257,
- 49.5105
- ],
- [
- 5.47007,
- 49.49196
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6",
- "url": "https://openstreetmap.org/"
- },
- "category": "osmbasedmap",
- "country_code": "BE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
- "id": "osmbe",
- "license_url": "https://github.com/jbelien/openstreetmap-carto-be/wiki/Tile-Usage-Policy",
- "max_zoom": 18,
- "name": "OpenStreetMap (Belgian Style)",
- "type": "tms",
- "url": "https://tile.openstreetmap.be/osmbe/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ],
- [
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.93719,
- 50.79361
- ],
- [
- 2.96,
- 50.7735
- ],
- [
- 2.92247,
- 50.75729
- ],
- [
- 2.84203,
- 50.75153
- ],
- [
- 2.86315,
- 50.70826
- ],
- [
- 2.91065,
- 50.69409
- ],
- [
- 2.94001,
- 50.74543
- ],
- [
- 3.02932,
- 50.77896
- ],
- [
- 2.99943,
- 50.81035
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:31370",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "best": true,
- "category": "photo",
- "country_code": "BE",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png",
- "id": "SPW_ORTHO_LAST",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf",
- "name": "SPW(allonie) most recent aerial imagery",
- "type": "wms",
- "url": "https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_LAST/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ],
- [
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.93719,
- 50.79361
- ],
- [
- 2.96,
- 50.7735
- ],
- [
- 2.92247,
- 50.75729
- ],
- [
- 2.84203,
- 50.75153
- ],
- [
- 2.86315,
- 50.70826
- ],
- [
- 2.91065,
- 50.69409
- ],
- [
- 2.94001,
- 50.74543
- ],
- [
- 3.02932,
- 50.77896
- ],
- [
- 2.99943,
- 50.81035
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:31370",
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2010",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png",
- "id": "SPW2009",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf",
- "name": "SPW(allonie) 2009-2010 aerial imagery",
- "start_date": "2009",
- "type": "wms",
- "url": "https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2009_2010/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ],
- [
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.93719,
- 50.79361
- ],
- [
- 2.96,
- 50.7735
- ],
- [
- 2.92247,
- 50.75729
- ],
- [
- 2.84203,
- 50.75153
- ],
- [
- 2.86315,
- 50.70826
- ],
- [
- 2.91065,
- 50.69409
- ],
- [
- 2.94001,
- 50.74543
- ],
- [
- 3.02932,
- 50.77896
- ],
- [
- 2.99943,
- 50.81035
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:31370",
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2013",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png",
- "id": "SPW2012",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf",
- "name": "SPW(allonie) 2012-2013 aerial imagery",
- "start_date": "2012",
- "type": "wms",
- "url": "https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2012_2013/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ],
- [
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.93719,
- 50.79361
- ],
- [
- 2.96,
- 50.7735
- ],
- [
- 2.92247,
- 50.75729
- ],
- [
- 2.84203,
- 50.75153
- ],
- [
- 2.86315,
- 50.70826
- ],
- [
- 2.91065,
- 50.69409
- ],
- [
- 2.94001,
- 50.74543
- ],
- [
- 3.02932,
- 50.77896
- ],
- [
- 2.99943,
- 50.81035
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:31370",
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2015",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png",
- "id": "SPW2015",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf",
- "name": "SPW(allonie) 2015 aerial imagery",
- "start_date": "2015",
- "type": "wms",
- "url": "https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2015/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ],
- [
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.93719,
- 50.79361
- ],
- [
- 2.96,
- 50.7735
- ],
- [
- 2.92247,
- 50.75729
- ],
- [
- 2.84203,
- 50.75153
- ],
- [
- 2.86315,
- 50.70826
- ],
- [
- 2.91065,
- 50.69409
- ],
- [
- 2.94001,
- 50.74543
- ],
- [
- 3.02932,
- 50.77896
- ],
- [
- 2.99943,
- 50.81035
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:31370",
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2016",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png",
- "id": "SPW2016",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf",
- "name": "SPW(allonie) 2016 aerial imagery",
- "start_date": "2016",
- "type": "wms",
- "url": "https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2016/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ],
- [
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.93719,
- 50.79361
- ],
- [
- 2.96,
- 50.7735
- ],
- [
- 2.92247,
- 50.75729
- ],
- [
- 2.84203,
- 50.75153
- ],
- [
- 2.86315,
- 50.70826
- ],
- [
- 2.91065,
- 50.69409
- ],
- [
- 2.94001,
- 50.74543
- ],
- [
- 3.02932,
- 50.77896
- ],
- [
- 2.99943,
- 50.81035
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:31370",
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2018",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png",
- "id": "SPW2018",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf",
- "name": "SPW(allonie) 2018 aerial imagery",
- "privacy_policy_url": "http://geoportail.wallonie.be/vie-privee.html",
- "start_date": "2018",
- "type": "wms",
- "url": "https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2018/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ],
- [
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.93719,
- 50.79361
- ],
- [
- 2.96,
- 50.7735
- ],
- [
- 2.92247,
- 50.75729
- ],
- [
- 2.84203,
- 50.75153
- ],
- [
- 2.86315,
- 50.70826
- ],
- [
- 2.91065,
- 50.69409
- ],
- [
- 2.94001,
- 50.74543
- ],
- [
- 3.02932,
- 50.77896
- ],
- [
- 2.99943,
- 50.81035
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "CRS:84",
- "EPSG:102100",
- "EPSG:31370",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "BE",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png",
- "id": "SPW_PICC",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf",
- "name": "SPW(allonie) PICC numerical imagery",
- "privacy_policy_url": "https://geoportail.wallonie.be/vie-privee.html",
- "type": "wms",
- "url": "https://geoservices.wallonie.be/arcgis/services/TOPOGRAPHIE/PICC_VDIFF/MapServer/WmsServer?SERVICE=WMS&TRANSPARENT=FALSE&STYLES=&LAYERS=1,3,4,5,7,9,10,11,12,14,15,16,17,19,20,21,23,24,25,26,27,28,29&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ],
- [
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.93719,
- 50.79361
- ],
- [
- 2.96,
- 50.7735
- ],
- [
- 2.92247,
- 50.75729
- ],
- [
- 2.84203,
- 50.75153
- ],
- [
- 2.86315,
- 50.70826
- ],
- [
- 2.91065,
- 50.69409
- ],
- [
- 2.94001,
- 50.74543
- ],
- [
- 3.02932,
- 50.77896
- ],
- [
- 2.99943,
- 50.81035
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:31370",
- "EPSG:3857"
- ],
- "category": "elevation",
- "country_code": "BE",
- "end_date": "2014",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png",
- "id": "SPWrelief2014",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf",
- "name": "SPW(allonie) shaded relief",
- "start_date": "2013",
- "type": "wms",
- "url": "https://geoservices.wallonie.be/arcgis/services/RELIEF/WALLONIE_MNT_2013_2014_HILLSHADE/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.40236,
- 49.50688
- ],
- [
- 5.81984,
- 49.54253
- ],
- [
- 6.1714,
- 49.62089
- ],
- [
- 5.85829,
- 49.68846
- ],
- [
- 5.7704,
- 49.85343
- ],
- [
- 5.894,
- 50.11832
- ],
- [
- 6.15492,
- 50.13593
- ],
- [
- 6.39662,
- 50.36775
- ],
- [
- 6.28126,
- 50.46576
- ],
- [
- 6.11372,
- 50.7933
- ],
- [
- 5.72646,
- 50.77941
- ],
- [
- 5.70998,
- 50.85229
- ],
- [
- 5.61385,
- 50.80024
- ],
- [
- 5.46278,
- 50.79677
- ],
- [
- 5.21284,
- 50.70119
- ],
- [
- 4.94917,
- 50.80371
- ],
- [
- 4.75966,
- 50.80718
- ],
- [
- 4.72121,
- 50.88869
- ],
- [
- 4.60585,
- 50.77941
- ],
- [
- 4.48775,
- 50.85749
- ],
- [
- 4.36964,
- 50.85056
- ],
- [
- 4.15266,
- 50.72728
- ],
- [
- 3.59236,
- 50.76725
- ],
- [
- 3.29848,
- 50.76377
- ],
- [
- 3.04579,
- 50.80024
- ],
- [
- 2.86177,
- 50.72728
- ],
- [
- 2.89748,
- 50.68553
- ],
- [
- 3.0815,
- 50.76725
- ],
- [
- 3.19685,
- 50.68031
- ],
- [
- 3.28749,
- 50.52691
- ],
- [
- 3.67201,
- 50.47625
- ],
- [
- 3.68574,
- 50.31692
- ],
- [
- 3.99062,
- 50.27305
- ],
- [
- 4.14992,
- 50.17465
- ],
- [
- 4.24055,
- 50.08661
- ],
- [
- 4.15266,
- 49.99842
- ],
- [
- 4.18562,
- 49.96486
- ],
- [
- 4.55366,
- 49.94542
- ],
- [
- 4.69923,
- 50.03372
- ],
- [
- 4.81184,
- 50.0919
- ],
- [
- 4.84206,
- 50.01607
- ],
- [
- 4.86677,
- 49.90475
- ],
- [
- 4.85854,
- 49.80382
- ],
- [
- 5.08925,
- 49.7648
- ],
- [
- 5.34743,
- 49.60843
- ],
- [
- 5.40236,
- 49.50688
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "other",
- "country_code": "BE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png",
- "id": "TEClines",
- "license_url": "https://www.infotec.be/fr-be/minformer/opendata.aspx",
- "name": "TEC bus lines",
- "overlay": true,
- "type": "wms",
- "url": "https://geodata.tec-wl.be/arcgis/services/Lignes/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.40236,
- 49.50688
- ],
- [
- 5.81984,
- 49.54253
- ],
- [
- 6.1714,
- 49.62089
- ],
- [
- 5.85829,
- 49.68846
- ],
- [
- 5.7704,
- 49.85343
- ],
- [
- 5.894,
- 50.11832
- ],
- [
- 6.15492,
- 50.13593
- ],
- [
- 6.39662,
- 50.36775
- ],
- [
- 6.28126,
- 50.46576
- ],
- [
- 6.11372,
- 50.7933
- ],
- [
- 5.72646,
- 50.77941
- ],
- [
- 5.70998,
- 50.85229
- ],
- [
- 5.61385,
- 50.80024
- ],
- [
- 5.46278,
- 50.79677
- ],
- [
- 5.21284,
- 50.70119
- ],
- [
- 4.94917,
- 50.80371
- ],
- [
- 4.75966,
- 50.80718
- ],
- [
- 4.72121,
- 50.88869
- ],
- [
- 4.60585,
- 50.77941
- ],
- [
- 4.48775,
- 50.85749
- ],
- [
- 4.36964,
- 50.85056
- ],
- [
- 4.15266,
- 50.72728
- ],
- [
- 3.59236,
- 50.76725
- ],
- [
- 3.29848,
- 50.76377
- ],
- [
- 3.04579,
- 50.80024
- ],
- [
- 2.86177,
- 50.72728
- ],
- [
- 2.89748,
- 50.68553
- ],
- [
- 3.0815,
- 50.76725
- ],
- [
- 3.19685,
- 50.68031
- ],
- [
- 3.28749,
- 50.52691
- ],
- [
- 3.67201,
- 50.47625
- ],
- [
- 3.68574,
- 50.31692
- ],
- [
- 3.99062,
- 50.27305
- ],
- [
- 4.14992,
- 50.17465
- ],
- [
- 4.24055,
- 50.08661
- ],
- [
- 4.15266,
- 49.99842
- ],
- [
- 4.18562,
- 49.96486
- ],
- [
- 4.55366,
- 49.94542
- ],
- [
- 4.69923,
- 50.03372
- ],
- [
- 4.81184,
- 50.0919
- ],
- [
- 4.84206,
- 50.01607
- ],
- [
- 4.86677,
- 49.90475
- ],
- [
- 4.85854,
- 49.80382
- ],
- [
- 5.08925,
- 49.7648
- ],
- [
- 5.34743,
- 49.60843
- ],
- [
- 5.40236,
- 49.50688
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "other",
- "country_code": "BE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png",
- "id": "TECstops",
- "license_url": "https://www.infotec.be/fr-be/minformer/opendata.aspx",
- "name": "TEC bus stops",
- "overlay": true,
- "type": "wms",
- "url": "https://geodata.tec-wl.be/arcgis/services/Poteaux/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.4347,
- 50.77647
- ],
- [
- 4.45427,
- 50.78367
- ],
- [
- 4.4635,
- 50.78798
- ],
- [
- 4.48273,
- 50.79313
- ],
- [
- 4.44715,
- 50.80821
- ],
- [
- 4.44831,
- 50.81147
- ],
- [
- 4.45788,
- 50.81646
- ],
- [
- 4.45466,
- 50.81838
- ],
- [
- 4.4768,
- 50.82036
- ],
- [
- 4.46552,
- 50.83549
- ],
- [
- 4.46835,
- 50.83744
- ],
- [
- 4.46037,
- 50.85218
- ],
- [
- 4.44578,
- 50.85522
- ],
- [
- 4.44466,
- 50.85809
- ],
- [
- 4.43891,
- 50.86042
- ],
- [
- 4.43719,
- 50.85868
- ],
- [
- 4.42612,
- 50.86296
- ],
- [
- 4.42037,
- 50.86789
- ],
- [
- 4.42973,
- 50.87764
- ],
- [
- 4.43736,
- 50.87867
- ],
- [
- 4.42681,
- 50.89026
- ],
- [
- 4.43307,
- 50.89464
- ],
- [
- 4.42277,
- 50.90298
- ],
- [
- 4.41187,
- 50.90753
- ],
- [
- 4.41376,
- 50.91159
- ],
- [
- 4.4032,
- 50.91381
- ],
- [
- 4.38758,
- 50.9098
- ],
- [
- 4.37771,
- 50.89713
- ],
- [
- 4.36303,
- 50.90119
- ],
- [
- 4.34183,
- 50.9026
- ],
- [
- 4.33093,
- 50.90119
- ],
- [
- 4.31651,
- 50.89389
- ],
- [
- 4.3057,
- 50.8908
- ],
- [
- 4.29334,
- 50.88847
- ],
- [
- 4.29428,
- 50.88658
- ],
- [
- 4.29737,
- 50.8849
- ],
- [
- 4.29918,
- 50.87975
- ],
- [
- 4.28587,
- 50.87201
- ],
- [
- 4.27858,
- 50.86556
- ],
- [
- 4.28064,
- 50.85944
- ],
- [
- 4.28999,
- 50.85625
- ],
- [
- 4.28304,
- 50.85354
- ],
- [
- 4.28793,
- 50.84833
- ],
- [
- 4.28291,
- 50.8479
- ],
- [
- 4.28158,
- 50.83785
- ],
- [
- 4.27399,
- 50.8392
- ],
- [
- 4.27184,
- 50.8363
- ],
- [
- 4.25793,
- 50.83571
- ],
- [
- 4.2545,
- 50.83289
- ],
- [
- 4.25523,
- 50.82839
- ],
- [
- 4.2509,
- 50.82419
- ],
- [
- 4.24382,
- 50.81928
- ],
- [
- 4.2566,
- 50.81743
- ],
- [
- 4.25995,
- 50.81106
- ],
- [
- 4.27274,
- 50.81212
- ],
- [
- 4.2757,
- 50.81087
- ],
- [
- 4.27708,
- 50.80835
- ],
- [
- 4.28454,
- 50.80732
- ],
- [
- 4.29274,
- 50.80911
- ],
- [
- 4.2951,
- 50.80881
- ],
- [
- 4.30162,
- 50.81299
- ],
- [
- 4.3066,
- 50.81239
- ],
- [
- 4.30205,
- 50.80445
- ],
- [
- 4.30501,
- 50.7987
- ],
- [
- 4.31527,
- 50.79661
- ],
- [
- 4.31845,
- 50.79403
- ],
- [
- 4.3193,
- 50.78722
- ],
- [
- 4.32201,
- 50.7832
- ],
- [
- 4.33089,
- 50.7758
- ],
- [
- 4.3408,
- 50.77354
- ],
- [
- 4.34677,
- 50.77574
- ],
- [
- 4.3551,
- 50.77354
- ],
- [
- 4.36527,
- 50.77284
- ],
- [
- 4.38243,
- 50.76917
- ],
- [
- 4.38303,
- 50.76375
- ],
- [
- 4.43312,
- 50.77802
- ],
- [
- 4.4347,
- 50.77647
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "EPSG:31370",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "best": false,
- "category": "map",
- "country_code": "BE",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "UrbisAdmFR",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "UrbisAdm FR",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisFR&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.4347,
- 50.77647
- ],
- [
- 4.45427,
- 50.78367
- ],
- [
- 4.4635,
- 50.78798
- ],
- [
- 4.48273,
- 50.79313
- ],
- [
- 4.44715,
- 50.80821
- ],
- [
- 4.44831,
- 50.81147
- ],
- [
- 4.45788,
- 50.81646
- ],
- [
- 4.45466,
- 50.81838
- ],
- [
- 4.4768,
- 50.82036
- ],
- [
- 4.46552,
- 50.83549
- ],
- [
- 4.46835,
- 50.83744
- ],
- [
- 4.46037,
- 50.85218
- ],
- [
- 4.44578,
- 50.85522
- ],
- [
- 4.44466,
- 50.85809
- ],
- [
- 4.43891,
- 50.86042
- ],
- [
- 4.43719,
- 50.85868
- ],
- [
- 4.42612,
- 50.86296
- ],
- [
- 4.42037,
- 50.86789
- ],
- [
- 4.42973,
- 50.87764
- ],
- [
- 4.43736,
- 50.87867
- ],
- [
- 4.42681,
- 50.89026
- ],
- [
- 4.43307,
- 50.89464
- ],
- [
- 4.42277,
- 50.90298
- ],
- [
- 4.41187,
- 50.90753
- ],
- [
- 4.41376,
- 50.91159
- ],
- [
- 4.4032,
- 50.91381
- ],
- [
- 4.38758,
- 50.9098
- ],
- [
- 4.37771,
- 50.89713
- ],
- [
- 4.36303,
- 50.90119
- ],
- [
- 4.34183,
- 50.9026
- ],
- [
- 4.33093,
- 50.90119
- ],
- [
- 4.31651,
- 50.89389
- ],
- [
- 4.3057,
- 50.8908
- ],
- [
- 4.29334,
- 50.88847
- ],
- [
- 4.29428,
- 50.88658
- ],
- [
- 4.29737,
- 50.8849
- ],
- [
- 4.29918,
- 50.87975
- ],
- [
- 4.28587,
- 50.87201
- ],
- [
- 4.27858,
- 50.86556
- ],
- [
- 4.28064,
- 50.85944
- ],
- [
- 4.28999,
- 50.85625
- ],
- [
- 4.28304,
- 50.85354
- ],
- [
- 4.28793,
- 50.84833
- ],
- [
- 4.28291,
- 50.8479
- ],
- [
- 4.28158,
- 50.83785
- ],
- [
- 4.27399,
- 50.8392
- ],
- [
- 4.27184,
- 50.8363
- ],
- [
- 4.25793,
- 50.83571
- ],
- [
- 4.2545,
- 50.83289
- ],
- [
- 4.25523,
- 50.82839
- ],
- [
- 4.2509,
- 50.82419
- ],
- [
- 4.24382,
- 50.81928
- ],
- [
- 4.2566,
- 50.81743
- ],
- [
- 4.25995,
- 50.81106
- ],
- [
- 4.27274,
- 50.81212
- ],
- [
- 4.2757,
- 50.81087
- ],
- [
- 4.27708,
- 50.80835
- ],
- [
- 4.28454,
- 50.80732
- ],
- [
- 4.29274,
- 50.80911
- ],
- [
- 4.2951,
- 50.80881
- ],
- [
- 4.30162,
- 50.81299
- ],
- [
- 4.3066,
- 50.81239
- ],
- [
- 4.30205,
- 50.80445
- ],
- [
- 4.30501,
- 50.7987
- ],
- [
- 4.31527,
- 50.79661
- ],
- [
- 4.31845,
- 50.79403
- ],
- [
- 4.3193,
- 50.78722
- ],
- [
- 4.32201,
- 50.7832
- ],
- [
- 4.33089,
- 50.7758
- ],
- [
- 4.3408,
- 50.77354
- ],
- [
- 4.34677,
- 50.77574
- ],
- [
- 4.3551,
- 50.77354
- ],
- [
- 4.36527,
- 50.77284
- ],
- [
- 4.38243,
- 50.76917
- ],
- [
- 4.38303,
- 50.76375
- ],
- [
- 4.43312,
- 50.77802
- ],
- [
- 4.4347,
- 50.77647
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "category": "map",
- "country_code": "BE",
- "end_date": "2013",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "URBISfr2013",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "URBISfr numerical imagery (2013)",
- "start_date": "2013",
- "type": "wms",
- "url": "https://gis.irisnet.be/arcgis/rest/services/basemap/urbisFR/MapServer/export?f=image&format=png8&transparent=False&SRS={proj}&bboxSR=3857&imageSR=3857&bbox={bbox}&size={width},{height}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.4347,
- 50.77647
- ],
- [
- 4.45427,
- 50.78367
- ],
- [
- 4.4635,
- 50.78798
- ],
- [
- 4.48273,
- 50.79313
- ],
- [
- 4.44715,
- 50.80821
- ],
- [
- 4.44831,
- 50.81147
- ],
- [
- 4.45788,
- 50.81646
- ],
- [
- 4.45466,
- 50.81838
- ],
- [
- 4.4768,
- 50.82036
- ],
- [
- 4.46552,
- 50.83549
- ],
- [
- 4.46835,
- 50.83744
- ],
- [
- 4.46037,
- 50.85218
- ],
- [
- 4.44578,
- 50.85522
- ],
- [
- 4.44466,
- 50.85809
- ],
- [
- 4.43891,
- 50.86042
- ],
- [
- 4.43719,
- 50.85868
- ],
- [
- 4.42612,
- 50.86296
- ],
- [
- 4.42037,
- 50.86789
- ],
- [
- 4.42973,
- 50.87764
- ],
- [
- 4.43736,
- 50.87867
- ],
- [
- 4.42681,
- 50.89026
- ],
- [
- 4.43307,
- 50.89464
- ],
- [
- 4.42277,
- 50.90298
- ],
- [
- 4.41187,
- 50.90753
- ],
- [
- 4.41376,
- 50.91159
- ],
- [
- 4.4032,
- 50.91381
- ],
- [
- 4.38758,
- 50.9098
- ],
- [
- 4.37771,
- 50.89713
- ],
- [
- 4.36303,
- 50.90119
- ],
- [
- 4.34183,
- 50.9026
- ],
- [
- 4.33093,
- 50.90119
- ],
- [
- 4.31651,
- 50.89389
- ],
- [
- 4.3057,
- 50.8908
- ],
- [
- 4.29334,
- 50.88847
- ],
- [
- 4.29428,
- 50.88658
- ],
- [
- 4.29737,
- 50.8849
- ],
- [
- 4.29918,
- 50.87975
- ],
- [
- 4.28587,
- 50.87201
- ],
- [
- 4.27858,
- 50.86556
- ],
- [
- 4.28064,
- 50.85944
- ],
- [
- 4.28999,
- 50.85625
- ],
- [
- 4.28304,
- 50.85354
- ],
- [
- 4.28793,
- 50.84833
- ],
- [
- 4.28291,
- 50.8479
- ],
- [
- 4.28158,
- 50.83785
- ],
- [
- 4.27399,
- 50.8392
- ],
- [
- 4.27184,
- 50.8363
- ],
- [
- 4.25793,
- 50.83571
- ],
- [
- 4.2545,
- 50.83289
- ],
- [
- 4.25523,
- 50.82839
- ],
- [
- 4.2509,
- 50.82419
- ],
- [
- 4.24382,
- 50.81928
- ],
- [
- 4.2566,
- 50.81743
- ],
- [
- 4.25995,
- 50.81106
- ],
- [
- 4.27274,
- 50.81212
- ],
- [
- 4.2757,
- 50.81087
- ],
- [
- 4.27708,
- 50.80835
- ],
- [
- 4.28454,
- 50.80732
- ],
- [
- 4.29274,
- 50.80911
- ],
- [
- 4.2951,
- 50.80881
- ],
- [
- 4.30162,
- 50.81299
- ],
- [
- 4.3066,
- 50.81239
- ],
- [
- 4.30205,
- 50.80445
- ],
- [
- 4.30501,
- 50.7987
- ],
- [
- 4.31527,
- 50.79661
- ],
- [
- 4.31845,
- 50.79403
- ],
- [
- 4.3193,
- 50.78722
- ],
- [
- 4.32201,
- 50.7832
- ],
- [
- 4.33089,
- 50.7758
- ],
- [
- 4.3408,
- 50.77354
- ],
- [
- 4.34677,
- 50.77574
- ],
- [
- 4.3551,
- 50.77354
- ],
- [
- 4.36527,
- 50.77284
- ],
- [
- 4.38243,
- 50.76917
- ],
- [
- 4.38303,
- 50.76375
- ],
- [
- 4.43312,
- 50.77802
- ],
- [
- 4.4347,
- 50.77647
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "EPSG:31370",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "best": false,
- "category": "map",
- "country_code": "BE",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "UrbisAdmNL",
- "license_url": "https://cibg.brussels/nl/onze-oplossingen/urbis-solutions/urbis-open-data-licentie",
- "name": "UrbisAdm NL",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisNL&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.4347,
- 50.77647
- ],
- [
- 4.45427,
- 50.78367
- ],
- [
- 4.4635,
- 50.78798
- ],
- [
- 4.48273,
- 50.79313
- ],
- [
- 4.44715,
- 50.80821
- ],
- [
- 4.44831,
- 50.81147
- ],
- [
- 4.45788,
- 50.81646
- ],
- [
- 4.45466,
- 50.81838
- ],
- [
- 4.4768,
- 50.82036
- ],
- [
- 4.46552,
- 50.83549
- ],
- [
- 4.46835,
- 50.83744
- ],
- [
- 4.46037,
- 50.85218
- ],
- [
- 4.44578,
- 50.85522
- ],
- [
- 4.44466,
- 50.85809
- ],
- [
- 4.43891,
- 50.86042
- ],
- [
- 4.43719,
- 50.85868
- ],
- [
- 4.42612,
- 50.86296
- ],
- [
- 4.42037,
- 50.86789
- ],
- [
- 4.42973,
- 50.87764
- ],
- [
- 4.43736,
- 50.87867
- ],
- [
- 4.42681,
- 50.89026
- ],
- [
- 4.43307,
- 50.89464
- ],
- [
- 4.42277,
- 50.90298
- ],
- [
- 4.41187,
- 50.90753
- ],
- [
- 4.41376,
- 50.91159
- ],
- [
- 4.4032,
- 50.91381
- ],
- [
- 4.38758,
- 50.9098
- ],
- [
- 4.37771,
- 50.89713
- ],
- [
- 4.36303,
- 50.90119
- ],
- [
- 4.34183,
- 50.9026
- ],
- [
- 4.33093,
- 50.90119
- ],
- [
- 4.31651,
- 50.89389
- ],
- [
- 4.3057,
- 50.8908
- ],
- [
- 4.29334,
- 50.88847
- ],
- [
- 4.29428,
- 50.88658
- ],
- [
- 4.29737,
- 50.8849
- ],
- [
- 4.29918,
- 50.87975
- ],
- [
- 4.28587,
- 50.87201
- ],
- [
- 4.27858,
- 50.86556
- ],
- [
- 4.28064,
- 50.85944
- ],
- [
- 4.28999,
- 50.85625
- ],
- [
- 4.28304,
- 50.85354
- ],
- [
- 4.28793,
- 50.84833
- ],
- [
- 4.28291,
- 50.8479
- ],
- [
- 4.28158,
- 50.83785
- ],
- [
- 4.27399,
- 50.8392
- ],
- [
- 4.27184,
- 50.8363
- ],
- [
- 4.25793,
- 50.83571
- ],
- [
- 4.2545,
- 50.83289
- ],
- [
- 4.25523,
- 50.82839
- ],
- [
- 4.2509,
- 50.82419
- ],
- [
- 4.24382,
- 50.81928
- ],
- [
- 4.2566,
- 50.81743
- ],
- [
- 4.25995,
- 50.81106
- ],
- [
- 4.27274,
- 50.81212
- ],
- [
- 4.2757,
- 50.81087
- ],
- [
- 4.27708,
- 50.80835
- ],
- [
- 4.28454,
- 50.80732
- ],
- [
- 4.29274,
- 50.80911
- ],
- [
- 4.2951,
- 50.80881
- ],
- [
- 4.30162,
- 50.81299
- ],
- [
- 4.3066,
- 50.81239
- ],
- [
- 4.30205,
- 50.80445
- ],
- [
- 4.30501,
- 50.7987
- ],
- [
- 4.31527,
- 50.79661
- ],
- [
- 4.31845,
- 50.79403
- ],
- [
- 4.3193,
- 50.78722
- ],
- [
- 4.32201,
- 50.7832
- ],
- [
- 4.33089,
- 50.7758
- ],
- [
- 4.3408,
- 50.77354
- ],
- [
- 4.34677,
- 50.77574
- ],
- [
- 4.3551,
- 50.77354
- ],
- [
- 4.36527,
- 50.77284
- ],
- [
- 4.38243,
- 50.76917
- ],
- [
- 4.38303,
- 50.76375
- ],
- [
- 4.43312,
- 50.77802
- ],
- [
- 4.4347,
- 50.77647
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "category": "map",
- "country_code": "BE",
- "end_date": "2013",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "URBISnl2013",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "URBISnl numerical imagery (2013)",
- "start_date": "2013",
- "type": "wms",
- "url": "https://gis.irisnet.be/arcgis/rest/services/basemap/urbisNL/MapServer/export?f=image&format=png8&transparent=False&SRS={proj}&bboxSR=3857&imageSR=3857&bbox={bbox}&size={width},{height}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2009",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "URBIS2009",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "URBIS 2009 aerial imagery",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "start_date": "2009",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2009&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2012",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "URBIS2012",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "URBIS 2012 aerial imagery",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "start_date": "2012",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2012&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.4001,
- 50.76373
- ],
- [
- 4.43093,
- 50.77254
- ],
- [
- 4.43586,
- 50.77237
- ],
- [
- 4.46549,
- 50.78373
- ],
- [
- 4.48189,
- 50.78835
- ],
- [
- 4.48269,
- 50.79849
- ],
- [
- 4.46363,
- 50.80686
- ],
- [
- 4.46407,
- 50.81546
- ],
- [
- 4.48204,
- 50.81699
- ],
- [
- 4.48103,
- 50.82343
- ],
- [
- 4.47465,
- 50.83505
- ],
- [
- 4.47403,
- 50.84587
- ],
- [
- 4.46712,
- 50.85447
- ],
- [
- 4.45257,
- 50.85797
- ],
- [
- 4.45017,
- 50.86151
- ],
- [
- 4.42968,
- 50.86764
- ],
- [
- 4.43423,
- 50.87384
- ],
- [
- 4.44147,
- 50.87513
- ],
- [
- 4.44381,
- 50.88004
- ],
- [
- 4.43534,
- 50.88977
- ],
- [
- 4.43968,
- 50.89475
- ],
- [
- 4.43287,
- 50.90363
- ],
- [
- 4.42096,
- 50.90917
- ],
- [
- 4.42023,
- 50.91387
- ],
- [
- 4.38315,
- 50.91381
- ],
- [
- 4.37879,
- 50.90637
- ],
- [
- 4.37334,
- 50.90289
- ],
- [
- 4.36241,
- 50.906
- ],
- [
- 4.34824,
- 50.90611
- ],
- [
- 4.33955,
- 50.90685
- ],
- [
- 4.32771,
- 50.90515
- ],
- [
- 4.31471,
- 50.89842
- ],
- [
- 4.30413,
- 50.89498
- ],
- [
- 4.2871,
- 50.89192
- ],
- [
- 4.28725,
- 50.88532
- ],
- [
- 4.29293,
- 50.88265
- ],
- [
- 4.27948,
- 50.8736
- ],
- [
- 4.27347,
- 50.86822
- ],
- [
- 4.27364,
- 50.85871
- ],
- [
- 4.27688,
- 50.85575
- ],
- [
- 4.27644,
- 50.84376
- ],
- [
- 4.26664,
- 50.8405
- ],
- [
- 4.25488,
- 50.83992
- ],
- [
- 4.24755,
- 50.83453
- ],
- [
- 4.24799,
- 50.82866
- ],
- [
- 4.24357,
- 50.82599
- ],
- [
- 4.24376,
- 50.81356
- ],
- [
- 4.25233,
- 50.81268
- ],
- [
- 4.25649,
- 50.80711
- ],
- [
- 4.27025,
- 50.8073
- ],
- [
- 4.27222,
- 50.80537
- ],
- [
- 4.28414,
- 50.80241
- ],
- [
- 4.28885,
- 50.80434
- ],
- [
- 4.29544,
- 50.8043
- ],
- [
- 4.30046,
- 50.79506
- ],
- [
- 4.31076,
- 50.79299
- ],
- [
- 4.31444,
- 50.78372
- ],
- [
- 4.32628,
- 50.77221
- ],
- [
- 4.34194,
- 50.76891
- ],
- [
- 4.34474,
- 50.77029
- ],
- [
- 4.37535,
- 50.76577
- ],
- [
- 4.3755,
- 50.76381
- ],
- [
- 4.4001,
- 50.76373
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2014",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "URBIS2014",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "URBIS 2014 aerial imagery",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "start_date": "2014",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2014&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2015",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "URBIS2015",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "URBIS 2015 aerial imagery",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "start_date": "2015",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2015&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:31370",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "best": false,
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2016",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "UrbISOrtho2016",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "UrbIS-Ortho 2016",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "start_date": "2016",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2016&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:31370",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2017",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "UrbISOrtho2017",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "UrbIS-Ortho 2017",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "start_date": "2017",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2017&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:31370",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "BE",
- "end_date": "2018",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "UrbISOrtho2018",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "UrbIS-Ortho 2018",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "start_date": "2018",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2018&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:31370",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "best": true,
- "category": "photo",
- "country_code": "BE",
- "end_date": "2019",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png",
- "id": "UrbISOrtho2019",
- "license_url": "https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf",
- "name": "UrbIS-Ortho 2019",
- "privacy_policy_url": "https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website",
- "start_date": "2019",
- "type": "wms",
- "url": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2019&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 23.80811,
- 41.58488
- ],
- [
- 22.99238,
- 41.60195
- ],
- [
- 23.01186,
- 42.29984
- ],
- [
- 23.99402,
- 42.28339
- ],
- [
- 23.96561,
- 41.58488
- ],
- [
- 23.80811,
- 41.58488
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "BY",
- "description": "Late summer imagery where usual sources are severely limited by clouds and snow (true color)",
- "end_date": "2015-08-28",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R093_N41_20150828T092005",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Rila and Pirin Mountains",
- "start_date": "2015-08-28",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N41_20150828T092005&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.54,
- 46.86
- ],
- [
- 7.54,
- 46.85
- ],
- [
- 7.5,
- 46.85
- ],
- [
- 7.5,
- 46.86
- ],
- [
- 7.45,
- 46.86
- ],
- [
- 7.45,
- 46.85
- ],
- [
- 7.42,
- 46.85
- ],
- [
- 7.42,
- 46.86
- ],
- [
- 7.43,
- 46.86
- ],
- [
- 7.43,
- 46.87
- ],
- [
- 7.41,
- 46.87
- ],
- [
- 7.41,
- 46.88
- ],
- [
- 7.4,
- 46.88
- ],
- [
- 7.4,
- 46.87
- ],
- [
- 7.39,
- 46.87
- ],
- [
- 7.39,
- 46.86
- ],
- [
- 7.35,
- 46.86
- ],
- [
- 7.35,
- 46.88
- ],
- [
- 7.34,
- 46.88
- ],
- [
- 7.34,
- 46.89
- ],
- [
- 7.29,
- 46.89
- ],
- [
- 7.29,
- 46.88
- ],
- [
- 7.27,
- 46.88
- ],
- [
- 7.27,
- 46.89
- ],
- [
- 7.25,
- 46.89
- ],
- [
- 7.25,
- 46.91
- ],
- [
- 7.23,
- 46.91
- ],
- [
- 7.23,
- 46.93
- ],
- [
- 7.24,
- 46.93
- ],
- [
- 7.24,
- 46.94
- ],
- [
- 7.23,
- 46.94
- ],
- [
- 7.23,
- 46.96
- ],
- [
- 7.24,
- 46.96
- ],
- [
- 7.24,
- 46.97
- ],
- [
- 7.25,
- 46.97
- ],
- [
- 7.25,
- 46.98
- ],
- [
- 7.27,
- 46.98
- ],
- [
- 7.27,
- 46.99
- ],
- [
- 7.28,
- 46.99
- ],
- [
- 7.28,
- 47.0
- ],
- [
- 7.29,
- 47.0
- ],
- [
- 7.29,
- 47.01
- ],
- [
- 7.32,
- 47.01
- ],
- [
- 7.32,
- 47.02
- ],
- [
- 7.37,
- 47.02
- ],
- [
- 7.37,
- 47.03
- ],
- [
- 7.4,
- 47.03
- ],
- [
- 7.4,
- 47.04
- ],
- [
- 7.44,
- 47.04
- ],
- [
- 7.44,
- 47.05
- ],
- [
- 7.47,
- 47.05
- ],
- [
- 7.47,
- 47.04
- ],
- [
- 7.49,
- 47.04
- ],
- [
- 7.49,
- 47.03
- ],
- [
- 7.48,
- 47.03
- ],
- [
- 7.48,
- 47.01
- ],
- [
- 7.54,
- 47.01
- ],
- [
- 7.54,
- 46.99
- ],
- [
- 7.55,
- 46.99
- ],
- [
- 7.55,
- 46.96
- ],
- [
- 7.52,
- 46.96
- ],
- [
- 7.52,
- 46.95
- ],
- [
- 7.53,
- 46.95
- ],
- [
- 7.53,
- 46.92
- ],
- [
- 7.52,
- 46.92
- ],
- [
- 7.52,
- 46.91
- ],
- [
- 7.53,
- 46.91
- ],
- [
- 7.53,
- 46.9
- ],
- [
- 7.54,
- 46.9
- ],
- [
- 7.54,
- 46.88
- ],
- [
- 7.55,
- 46.88
- ],
- [
- 7.55,
- 46.86
- ],
- [
- 7.54,
- 46.86
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Amtliche Vermessung farbig WMTS, OpenData.swiss, Geoinformation Stadt Bern"
- },
- "category": "map",
- "country_code": "CH",
- "description": "Amtliche Vermessung farbig WMTS",
- "id": "Bern-AmtlicheVermessung",
- "license_url": "https://opendata.swiss/de/terms-of-use/",
- "name": "Amtliche Vermessung farbig WMTS, OpenData.swiss, Geoinformation Stadt Bern",
- "privacy_policy_url": "https://www.bern.ch/disclaimer#datenschutz",
- "type": "wmts",
- "url": "https://map.bern.ch/arcgis/rest/services/AV_farbig/MapServer/WMTS?"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.3807,
- 47.00952
- ],
- [
- 7.38073,
- 47.02301
- ],
- [
- 7.43853,
- 47.02303
- ],
- [
- 7.43865,
- 47.01408
- ],
- [
- 7.45174,
- 47.014
- ],
- [
- 7.45172,
- 47.00503
- ],
- [
- 7.54111,
- 47.005
- ],
- [
- 7.54111,
- 46.99873
- ],
- [
- 7.54378,
- 46.99871
- ],
- [
- 7.54375,
- 46.98696
- ],
- [
- 7.55682,
- 46.987
- ],
- [
- 7.55685,
- 46.96003
- ],
- [
- 7.51744,
- 46.96001
- ],
- [
- 7.51744,
- 46.95108
- ],
- [
- 7.53051,
- 46.95106
- ],
- [
- 7.53051,
- 46.92407
- ],
- [
- 7.51741,
- 46.92405
- ],
- [
- 7.51738,
- 46.91505
- ],
- [
- 7.53042,
- 46.91507
- ],
- [
- 7.53048,
- 46.9061
- ],
- [
- 7.54358,
- 46.90602
- ],
- [
- 7.54358,
- 46.87905
- ],
- [
- 7.55659,
- 46.87903
- ],
- [
- 7.55662,
- 46.8611
- ],
- [
- 7.54349,
- 46.86104
- ],
- [
- 7.5434,
- 46.85212
- ],
- [
- 7.49095,
- 46.85212
- ],
- [
- 7.49107,
- 46.87907
- ],
- [
- 7.47794,
- 46.87909
- ],
- [
- 7.47797,
- 46.89707
- ],
- [
- 7.45168,
- 46.89713
- ],
- [
- 7.45171,
- 46.88808
- ],
- [
- 7.43855,
- 46.88814
- ],
- [
- 7.43858,
- 46.87015
- ],
- [
- 7.41233,
- 46.87015
- ],
- [
- 7.41236,
- 46.87907
- ],
- [
- 7.39917,
- 46.87911
- ],
- [
- 7.3992,
- 46.86108
- ],
- [
- 7.38613,
- 46.86114
- ],
- [
- 7.3861,
- 46.85218
- ],
- [
- 7.373,
- 46.85216
- ],
- [
- 7.37303,
- 46.86112
- ],
- [
- 7.34677,
- 46.8611
- ],
- [
- 7.3468,
- 46.88808
- ],
- [
- 7.25488,
- 46.88796
- ],
- [
- 7.25485,
- 46.90596
- ],
- [
- 7.24172,
- 46.90592
- ],
- [
- 7.24169,
- 46.91497
- ],
- [
- 7.22856,
- 46.91493
- ],
- [
- 7.22833,
- 46.96887
- ],
- [
- 7.24146,
- 46.96891
- ],
- [
- 7.24149,
- 46.98688
- ],
- [
- 7.26769,
- 46.98694
- ],
- [
- 7.26777,
- 46.99593
- ],
- [
- 7.28078,
- 46.99595
- ],
- [
- 7.2809,
- 47.0094
- ],
- [
- 7.3807,
- 47.00952
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Orthophoto 2012, Vermessungsamt Stadt Bern"
- },
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2012",
- "id": "Bern-2012",
- "license_url": "https://wiki.openstreetmap.org/wiki/Bern#Orthofotos",
- "max_zoom": 19,
- "min_zoom": 14,
- "name": "Stadt Bern 10cm/25cm (2012)",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2012",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/bern2012/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.66713,
- 46.83358
- ],
- [
- 6.66313,
- 46.83833
- ],
- [
- 6.67213,
- 46.84191
- ],
- [
- 6.6749,
- 46.84226
- ],
- [
- 6.67843,
- 46.83807
- ],
- [
- 6.66713,
- 46.83358
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Bonvillars - Orthophoto technique 2013",
- "url": "https://osmdata.asitvd.ch/"
- },
- "category": "photo",
- "country_code": "CH",
- "end_date": "2013",
- "id": "Bonvillars-2013",
- "max_zoom": 20,
- "min_zoom": 14,
- "name": "Bonvillars Orthophoto 2013",
- "privacy_policy_url": "https://www.asitvd.ch/tarifs-conditions.html",
- "start_date": "2013",
- "type": "tms",
- "url": "https://osmdata.asitvd.ch/tiles/bonvillars2013/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.79478,
- 46.57542
- ],
- [
- 6.79949,
- 46.57407
- ],
- [
- 6.80256,
- 46.57491
- ],
- [
- 6.80336,
- 46.57687
- ],
- [
- 6.80427,
- 46.57664
- ],
- [
- 6.80489,
- 46.57792
- ],
- [
- 6.80794,
- 46.57761
- ],
- [
- 6.8094,
- 46.57885
- ],
- [
- 6.81084,
- 46.57896
- ],
- [
- 6.81322,
- 46.57823
- ],
- [
- 6.81153,
- 46.58099
- ],
- [
- 6.8142,
- 46.58396
- ],
- [
- 6.81411,
- 46.58567
- ],
- [
- 6.8206,
- 46.58368
- ],
- [
- 6.82371,
- 46.57747
- ],
- [
- 6.82693,
- 46.57796
- ],
- [
- 6.82927,
- 46.57637
- ],
- [
- 6.83485,
- 46.57533
- ],
- [
- 6.83744,
- 46.57677
- ],
- [
- 6.83691,
- 46.57748
- ],
- [
- 6.83982,
- 46.57896
- ],
- [
- 6.84239,
- 46.58244
- ],
- [
- 6.84532,
- 46.58276
- ],
- [
- 6.84644,
- 46.58394
- ],
- [
- 6.84857,
- 46.58331
- ],
- [
- 6.85087,
- 46.58113
- ],
- [
- 6.85262,
- 46.58197
- ],
- [
- 6.85996,
- 46.57987
- ],
- [
- 6.86554,
- 46.57725
- ],
- [
- 6.86507,
- 46.57623
- ],
- [
- 6.8679,
- 46.57515
- ],
- [
- 6.87446,
- 46.56497
- ],
- [
- 6.8845,
- 46.56195
- ],
- [
- 6.88686,
- 46.56341
- ],
- [
- 6.89214,
- 46.5679
- ],
- [
- 6.89918,
- 46.56671
- ],
- [
- 6.89885,
- 46.56499
- ],
- [
- 6.89393,
- 46.55991
- ],
- [
- 6.88822,
- 46.55815
- ],
- [
- 6.86839,
- 46.54164
- ],
- [
- 6.86498,
- 46.53896
- ],
- [
- 6.86015,
- 46.53597
- ],
- [
- 6.85563,
- 46.54086
- ],
- [
- 6.85501,
- 46.54144
- ],
- [
- 6.85087,
- 46.54111
- ],
- [
- 6.8407,
- 46.53819
- ],
- [
- 6.83032,
- 46.53744
- ],
- [
- 6.82783,
- 46.54298
- ],
- [
- 6.82553,
- 46.54357
- ],
- [
- 6.81278,
- 46.52707
- ],
- [
- 6.81088,
- 46.52513
- ],
- [
- 6.81534,
- 46.52139
- ],
- [
- 6.8181,
- 46.5165
- ],
- [
- 6.82263,
- 46.51411
- ],
- [
- 6.82429,
- 46.51207
- ],
- [
- 6.83034,
- 46.51246
- ],
- [
- 6.83239,
- 46.50544
- ],
- [
- 6.83503,
- 46.50231
- ],
- [
- 6.84126,
- 46.49706
- ],
- [
- 6.84294,
- 46.49632
- ],
- [
- 6.84554,
- 46.49667
- ],
- [
- 6.84775,
- 46.49369
- ],
- [
- 6.84891,
- 46.49337
- ],
- [
- 6.85729,
- 46.49305
- ],
- [
- 6.86276,
- 46.49384
- ],
- [
- 6.86634,
- 46.50079
- ],
- [
- 6.87244,
- 46.50431
- ],
- [
- 6.88168,
- 46.51257
- ],
- [
- 6.8967,
- 46.52044
- ],
- [
- 6.89773,
- 46.52005
- ],
- [
- 6.89711,
- 46.51766
- ],
- [
- 6.89767,
- 46.51483
- ],
- [
- 6.89522,
- 46.51079
- ],
- [
- 6.89572,
- 46.50773
- ],
- [
- 6.89974,
- 46.51039
- ],
- [
- 6.90142,
- 46.51233
- ],
- [
- 6.92517,
- 46.50769
- ],
- [
- 6.92759,
- 46.50467
- ],
- [
- 6.93363,
- 46.50167
- ],
- [
- 6.93674,
- 46.50096
- ],
- [
- 6.95614,
- 46.49949
- ],
- [
- 6.97239,
- 46.48879
- ],
- [
- 6.97581,
- 46.4784
- ],
- [
- 6.97783,
- 46.47289
- ],
- [
- 6.97815,
- 46.46833
- ],
- [
- 6.97906,
- 46.46107
- ],
- [
- 6.98016,
- 46.45896
- ],
- [
- 6.99212,
- 46.44891
- ],
- [
- 6.98361,
- 46.43873
- ],
- [
- 6.98394,
- 46.43799
- ],
- [
- 6.98746,
- 46.43794
- ],
- [
- 7.01786,
- 46.44707
- ],
- [
- 7.02103,
- 46.45729
- ],
- [
- 7.06583,
- 46.48904
- ],
- [
- 7.0724,
- 46.4864
- ],
- [
- 7.10037,
- 46.48699
- ],
- [
- 7.12279,
- 46.49869
- ],
- [
- 7.1264,
- 46.50317
- ],
- [
- 7.13096,
- 46.50466
- ],
- [
- 7.13624,
- 46.50861
- ],
- [
- 7.13704,
- 46.51308
- ],
- [
- 7.14005,
- 46.51688
- ],
- [
- 7.14044,
- 46.51988
- ],
- [
- 7.14318,
- 46.52183
- ],
- [
- 7.1437,
- 46.52475
- ],
- [
- 7.1453,
- 46.52701
- ],
- [
- 7.14835,
- 46.52846
- ],
- [
- 7.15834,
- 46.52681
- ],
- [
- 7.16346,
- 46.52855
- ],
- [
- 7.16709,
- 46.53101
- ],
- [
- 7.18234,
- 46.53837
- ],
- [
- 7.19218,
- 46.54656
- ],
- [
- 7.20081,
- 46.54169
- ],
- [
- 7.20108,
- 46.543
- ],
- [
- 7.20765,
- 46.53291
- ],
- [
- 7.21417,
- 46.53762
- ],
- [
- 7.21811,
- 46.54211
- ],
- [
- 7.22171,
- 46.54481
- ],
- [
- 7.22311,
- 46.5476
- ],
- [
- 7.22543,
- 46.54923
- ],
- [
- 7.2322,
- 46.55123
- ],
- [
- 7.23614,
- 46.554
- ],
- [
- 7.24047,
- 46.55424
- ],
- [
- 7.24705,
- 46.55623
- ],
- [
- 7.25574,
- 46.56029
- ],
- [
- 7.26385,
- 46.56752
- ],
- [
- 7.2681,
- 46.57369
- ],
- [
- 7.28136,
- 46.58411
- ],
- [
- 7.2992,
- 46.5791
- ],
- [
- 7.30805,
- 46.58132
- ],
- [
- 7.31254,
- 46.58917
- ],
- [
- 7.3207,
- 46.59183
- ],
- [
- 7.31479,
- 46.60042
- ],
- [
- 7.3162,
- 46.60937
- ],
- [
- 7.31826,
- 46.61615
- ],
- [
- 7.3178,
- 46.61856
- ],
- [
- 7.31213,
- 46.6217
- ],
- [
- 7.31327,
- 46.63662
- ],
- [
- 7.32284,
- 46.63731
- ],
- [
- 7.32684,
- 46.63873
- ],
- [
- 7.32975,
- 46.64171
- ],
- [
- 7.32787,
- 46.64616
- ],
- [
- 7.321,
- 46.65465
- ],
- [
- 7.32345,
- 46.65526
- ],
- [
- 7.32914,
- 46.65459
- ],
- [
- 7.33116,
- 46.65522
- ],
- [
- 7.33403,
- 46.65471
- ],
- [
- 7.34549,
- 46.6553
- ],
- [
- 7.34756,
- 46.65307
- ],
- [
- 7.35063,
- 46.65164
- ],
- [
- 7.35079,
- 46.64799
- ],
- [
- 7.35456,
- 46.64669
- ],
- [
- 7.3558,
- 46.64533
- ],
- [
- 7.35528,
- 46.64193
- ],
- [
- 7.35714,
- 46.63927
- ],
- [
- 7.35877,
- 46.64418
- ],
- [
- 7.36209,
- 46.64683
- ],
- [
- 7.36229,
- 46.64791
- ],
- [
- 7.36608,
- 46.64898
- ],
- [
- 7.37747,
- 46.65636
- ],
- [
- 7.36933,
- 46.65564
- ],
- [
- 7.36953,
- 46.65748
- ],
- [
- 7.37103,
- 46.65907
- ],
- [
- 7.37083,
- 46.66085
- ],
- [
- 7.37187,
- 46.66283
- ],
- [
- 7.37122,
- 46.66375
- ],
- [
- 7.37252,
- 46.66757
- ],
- [
- 7.37108,
- 46.66942
- ],
- [
- 7.37649,
- 46.67503
- ],
- [
- 7.37293,
- 46.68012
- ],
- [
- 7.37777,
- 46.68357
- ],
- [
- 7.37587,
- 46.68645
- ],
- [
- 7.376,
- 46.6878
- ],
- [
- 7.38027,
- 46.69018
- ],
- [
- 7.37693,
- 46.69272
- ],
- [
- 7.3686,
- 46.69265
- ],
- [
- 7.3649,
- 46.69505
- ],
- [
- 7.36261,
- 46.69928
- ],
- [
- 7.3598,
- 46.69802
- ],
- [
- 7.34598,
- 46.69895
- ],
- [
- 7.34604,
- 46.7019
- ],
- [
- 7.34939,
- 46.70555
- ],
- [
- 7.35037,
- 46.70874
- ],
- [
- 7.35021,
- 46.71119
- ],
- [
- 7.34903,
- 46.71249
- ],
- [
- 7.34065,
- 46.71464
- ],
- [
- 7.33277,
- 46.71491
- ],
- [
- 7.32868,
- 46.71641
- ],
- [
- 7.31011,
- 46.71815
- ],
- [
- 7.30785,
- 46.71717
- ],
- [
- 7.30002,
- 46.72247
- ],
- [
- 7.29683,
- 46.72737
- ],
- [
- 7.29685,
- 46.73565
- ],
- [
- 7.29834,
- 46.74013
- ],
- [
- 7.30304,
- 46.74517
- ],
- [
- 7.30454,
- 46.74816
- ],
- [
- 7.30486,
- 46.75026
- ],
- [
- 7.30335,
- 46.7514
- ],
- [
- 7.30309,
- 46.75261
- ],
- [
- 7.30359,
- 46.75919
- ],
- [
- 7.29987,
- 46.76375
- ],
- [
- 7.29881,
- 46.76513
- ],
- [
- 7.29307,
- 46.77136
- ],
- [
- 7.29532,
- 46.77537
- ],
- [
- 7.29639,
- 46.77729
- ],
- [
- 7.30081,
- 46.77905
- ],
- [
- 7.30053,
- 46.78064
- ],
- [
- 7.30113,
- 46.78134
- ],
- [
- 7.30447,
- 46.78321
- ],
- [
- 7.30447,
- 46.78415
- ],
- [
- 7.30207,
- 46.78638
- ],
- [
- 7.30351,
- 46.78887
- ],
- [
- 7.30201,
- 46.79079
- ],
- [
- 7.30159,
- 46.79283
- ],
- [
- 7.30732,
- 46.79872
- ],
- [
- 7.31044,
- 46.80823
- ],
- [
- 7.31537,
- 46.81246
- ],
- [
- 7.32028,
- 46.8149
- ],
- [
- 7.32047,
- 46.81564
- ],
- [
- 7.32072,
- 46.82011
- ],
- [
- 7.31981,
- 46.82515
- ],
- [
- 7.32891,
- 46.829
- ],
- [
- 7.3302,
- 46.82968
- ],
- [
- 7.33123,
- 46.83177
- ],
- [
- 7.33103,
- 46.8328
- ],
- [
- 7.32926,
- 46.83563
- ],
- [
- 7.32333,
- 46.84041
- ],
- [
- 7.30755,
- 46.84704
- ],
- [
- 7.30775,
- 46.84808
- ],
- [
- 7.30613,
- 46.84999
- ],
- [
- 7.31207,
- 46.85557
- ],
- [
- 7.31351,
- 46.85936
- ],
- [
- 7.31739,
- 46.8606
- ],
- [
- 7.32087,
- 46.86154
- ],
- [
- 7.32576,
- 46.85681
- ],
- [
- 7.323,
- 46.85476
- ],
- [
- 7.32603,
- 46.85163
- ],
- [
- 7.33181,
- 46.8512
- ],
- [
- 7.33536,
- 46.85043
- ],
- [
- 7.33678,
- 46.84979
- ],
- [
- 7.33821,
- 46.84946
- ],
- [
- 7.34726,
- 46.85375
- ],
- [
- 7.34934,
- 46.85331
- ],
- [
- 7.35167,
- 46.85502
- ],
- [
- 7.35444,
- 46.85875
- ],
- [
- 7.35772,
- 46.86065
- ],
- [
- 7.35925,
- 46.86311
- ],
- [
- 7.35794,
- 46.86513
- ],
- [
- 7.35838,
- 46.8688
- ],
- [
- 7.35738,
- 46.8701
- ],
- [
- 7.35386,
- 46.87129
- ],
- [
- 7.35253,
- 46.87555
- ],
- [
- 7.35339,
- 46.88676
- ],
- [
- 7.34843,
- 46.88934
- ],
- [
- 7.32573,
- 46.89373
- ],
- [
- 7.30935,
- 46.89152
- ],
- [
- 7.29618,
- 46.89377
- ],
- [
- 7.28938,
- 46.89377
- ],
- [
- 7.28639,
- 46.89269
- ],
- [
- 7.28245,
- 46.8898
- ],
- [
- 7.2802,
- 46.8896
- ],
- [
- 7.27259,
- 46.89249
- ],
- [
- 7.26634,
- 46.89361
- ],
- [
- 7.25931,
- 46.89797
- ],
- [
- 7.24433,
- 46.90037
- ],
- [
- 7.24314,
- 46.89792
- ],
- [
- 7.23633,
- 46.89809
- ],
- [
- 7.23203,
- 46.90029
- ],
- [
- 7.2309,
- 46.9024
- ],
- [
- 7.23032,
- 46.90394
- ],
- [
- 7.22351,
- 46.90276
- ],
- [
- 7.21755,
- 46.89735
- ],
- [
- 7.21244,
- 46.90173
- ],
- [
- 7.2088,
- 46.9026
- ],
- [
- 7.20781,
- 46.90913
- ],
- [
- 7.20578,
- 46.91477
- ],
- [
- 7.20692,
- 46.92481
- ],
- [
- 7.2111,
- 46.92527
- ],
- [
- 7.21854,
- 46.92434
- ],
- [
- 7.2342,
- 46.92939
- ],
- [
- 7.23411,
- 46.93669
- ],
- [
- 7.23477,
- 46.93827
- ],
- [
- 7.2302,
- 46.93995
- ],
- [
- 7.2282,
- 46.93881
- ],
- [
- 7.22555,
- 46.93633
- ],
- [
- 7.2174,
- 46.93307
- ],
- [
- 7.2093,
- 46.93334
- ],
- [
- 7.20823,
- 46.93323
- ],
- [
- 7.2058,
- 46.94023
- ],
- [
- 7.2055,
- 46.94112
- ],
- [
- 7.20951,
- 46.94188
- ],
- [
- 7.21027,
- 46.94302
- ],
- [
- 7.21044,
- 46.94569
- ],
- [
- 7.21011,
- 46.94781
- ],
- [
- 7.20885,
- 46.95435
- ],
- [
- 7.21102,
- 46.95652
- ],
- [
- 7.20838,
- 46.95768
- ],
- [
- 7.20742,
- 46.95967
- ],
- [
- 7.19764,
- 46.96065
- ],
- [
- 7.19459,
- 46.96135
- ],
- [
- 7.19463,
- 46.9629
- ],
- [
- 7.19552,
- 46.96416
- ],
- [
- 7.19633,
- 46.96365
- ],
- [
- 7.19794,
- 46.96445
- ],
- [
- 7.1993,
- 46.9638
- ],
- [
- 7.20646,
- 46.96413
- ],
- [
- 7.20745,
- 46.96751
- ],
- [
- 7.21422,
- 46.96692
- ],
- [
- 7.21467,
- 46.97133
- ],
- [
- 7.21739,
- 46.97147
- ],
- [
- 7.21686,
- 46.97271
- ],
- [
- 7.22247,
- 46.97454
- ],
- [
- 7.22163,
- 46.97556
- ],
- [
- 7.22821,
- 46.97836
- ],
- [
- 7.23569,
- 46.98456
- ],
- [
- 7.23486,
- 46.98675
- ],
- [
- 7.22594,
- 46.9924
- ],
- [
- 7.22625,
- 46.99868
- ],
- [
- 7.22575,
- 46.99915
- ],
- [
- 7.21779,
- 47.00641
- ],
- [
- 7.21299,
- 47.0068
- ],
- [
- 7.09058,
- 46.978
- ],
- [
- 7.03295,
- 46.98265
- ],
- [
- 6.73785,
- 46.81195
- ],
- [
- 6.73908,
- 46.71021
- ],
- [
- 6.81908,
- 46.65533
- ],
- [
- 6.82741,
- 46.65982
- ],
- [
- 6.82089,
- 46.65179
- ],
- [
- 6.81729,
- 46.64923
- ],
- [
- 6.81851,
- 46.6478
- ],
- [
- 6.81458,
- 46.64747
- ],
- [
- 6.81344,
- 46.64953
- ],
- [
- 6.81194,
- 46.6492
- ],
- [
- 6.81081,
- 46.65038
- ],
- [
- 6.80674,
- 46.65059
- ],
- [
- 6.80203,
- 46.64889
- ],
- [
- 6.79891,
- 46.64914
- ],
- [
- 6.79879,
- 46.64781
- ],
- [
- 6.80367,
- 46.64567
- ],
- [
- 6.80325,
- 46.6448
- ],
- [
- 6.8038,
- 46.64451
- ],
- [
- 6.80321,
- 46.64376
- ],
- [
- 6.80171,
- 46.64421
- ],
- [
- 6.79895,
- 46.63959
- ],
- [
- 6.79692,
- 46.63314
- ],
- [
- 6.79838,
- 46.63016
- ],
- [
- 6.80043,
- 46.62991
- ],
- [
- 6.80065,
- 46.62843
- ],
- [
- 6.80172,
- 46.62854
- ],
- [
- 6.80228,
- 46.62775
- ],
- [
- 6.80197,
- 46.62507
- ],
- [
- 6.80355,
- 46.62124
- ],
- [
- 6.80244,
- 46.61877
- ],
- [
- 6.80296,
- 46.61615
- ],
- [
- 6.80185,
- 46.61555
- ],
- [
- 6.80389,
- 46.60903
- ],
- [
- 6.80239,
- 46.60142
- ],
- [
- 6.79833,
- 46.59986
- ],
- [
- 6.8002,
- 46.59362
- ],
- [
- 6.80124,
- 46.5925
- ],
- [
- 6.79848,
- 46.58616
- ],
- [
- 6.79948,
- 46.58559
- ],
- [
- 6.79894,
- 46.58205
- ],
- [
- 6.79611,
- 46.57932
- ],
- [
- 6.79626,
- 46.57728
- ],
- [
- 6.79478,
- 46.57542
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Canton Fribourg 2016 'orthophoto technique'"
- },
- "best": false,
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2016",
- "id": "CTFRIBOURG2016",
- "license_url": "https://www.geocat.ch/geonetwork/srv/fre/catalog.search#/metadata/9c059550-1cf7-4338-aa51-f39474a67639",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "Canton Fribourg 2016",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2016",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/fribourg_2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.6703,
- 46.2143
- ],
- [
- 6.1123,
- 46.5677
- ],
- [
- 6.2941,
- 46.57
- ],
- [
- 6.5293,
- 46.4609
- ],
- [
- 6.577,
- 46.3643
- ],
- [
- 6.5509,
- 46.0711
- ],
- [
- 6.4452,
- 45.9382
- ],
- [
- 6.3702,
- 45.9234
- ],
- [
- 5.7294,
- 45.9575
- ],
- [
- 5.6805,
- 46.0223
- ],
- [
- 5.6805,
- 46.0223
- ],
- [
- 5.6703,
- 46.2143
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Système d'information du territoire à Genève (SITG)"
- },
- "available_projections": [
- "EPSG:2056",
- "CRS:84",
- "EPSG:4326"
- ],
- "best": false,
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2014",
- "id": "Geneve-dsm-2014",
- "license_url": "https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf",
- "name": "Canton de Génève, MNA RELIEF OMBRE SURFACE 2014 (SITG)",
- "privacy_policy_url": "https://ge.ch/sitg/conditions-utilisation",
- "start_date": "2014",
- "type": "wms",
- "url": "https://ge.ch/sitgags2/services/RASTER/MNA_RELIEF_SURFACE/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.6703,
- 46.2143
- ],
- [
- 6.1123,
- 46.5677
- ],
- [
- 6.2941,
- 46.57
- ],
- [
- 6.5293,
- 46.4609
- ],
- [
- 6.577,
- 46.3643
- ],
- [
- 6.5509,
- 46.0711
- ],
- [
- 6.4452,
- 45.9382
- ],
- [
- 6.3702,
- 45.9234
- ],
- [
- 5.7294,
- 45.9575
- ],
- [
- 5.6805,
- 46.0223
- ],
- [
- 5.6805,
- 46.0223
- ],
- [
- 5.6703,
- 46.2143
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Système d'information du territoire à Genève (SITG)"
- },
- "available_projections": [
- "EPSG:2056",
- "CRS:84",
- "EPSG:4326"
- ],
- "best": false,
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2014",
- "id": "Geneve-dtm-2014",
- "license_url": "https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf",
- "name": "Canton de Génève, MNA RELIEF OMBRE TERRAIN 2014 (SITG)",
- "privacy_policy_url": "https://ge.ch/sitg/conditions-utilisation",
- "start_date": "2014",
- "type": "wms",
- "url": "https://ge.ch/sitgags2/services/RASTER/MNA_RELIEF_TERRAIN/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.12,
- 46.12
- ],
- [
- 6.08,
- 46.12
- ],
- [
- 6.08,
- 46.14
- ],
- [
- 6.06,
- 46.14
- ],
- [
- 6.06,
- 46.12
- ],
- [
- 5.94,
- 46.12
- ],
- [
- 5.94,
- 46.16
- ],
- [
- 5.96,
- 46.16
- ],
- [
- 5.96,
- 46.18
- ],
- [
- 5.94,
- 46.18
- ],
- [
- 5.94,
- 46.22
- ],
- [
- 5.96,
- 46.22
- ],
- [
- 5.96,
- 46.24
- ],
- [
- 6.02,
- 46.24
- ],
- [
- 6.02,
- 46.26
- ],
- [
- 6.08,
- 46.26
- ],
- [
- 6.08,
- 46.3
- ],
- [
- 6.1,
- 46.3
- ],
- [
- 6.1,
- 46.34
- ],
- [
- 6.14,
- 46.34
- ],
- [
- 6.14,
- 46.32
- ],
- [
- 6.16,
- 46.32
- ],
- [
- 6.16,
- 46.38
- ],
- [
- 6.22,
- 46.38
- ],
- [
- 6.22,
- 46.36
- ],
- [
- 6.26,
- 46.36
- ],
- [
- 6.26,
- 46.28
- ],
- [
- 6.32,
- 46.28
- ],
- [
- 6.32,
- 46.22
- ],
- [
- 6.3,
- 46.22
- ],
- [
- 6.3,
- 46.2
- ],
- [
- 6.26,
- 46.2
- ],
- [
- 6.26,
- 46.18
- ],
- [
- 6.22,
- 46.18
- ],
- [
- 6.22,
- 46.16
- ],
- [
- 6.2,
- 46.16
- ],
- [
- 6.2,
- 46.14
- ],
- [
- 6.16,
- 46.14
- ],
- [
- 6.16,
- 46.12
- ],
- [
- 6.12,
- 46.12
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Système d'information du territoire à Genève (SITG)"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "CRS:84"
- ],
- "best": false,
- "category": "photo",
- "country_code": "CH",
- "end_date": "2016",
- "id": "Geneve-orthophoto-2016",
- "license_url": "https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf",
- "name": "Canton de Génève, Orthophoto 2016 (5cm) (SITG)",
- "privacy_policy_url": "https://ge.ch/sitg/conditions-utilisation",
- "start_date": "2016",
- "type": "wms",
- "url": "https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2016/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.6703,
- 46.2143
- ],
- [
- 6.1123,
- 46.5677
- ],
- [
- 6.2941,
- 46.57
- ],
- [
- 6.5293,
- 46.4609
- ],
- [
- 6.577,
- 46.3643
- ],
- [
- 6.5509,
- 46.0711
- ],
- [
- 6.4452,
- 45.9382
- ],
- [
- 6.3702,
- 45.9234
- ],
- [
- 5.7294,
- 45.9575
- ],
- [
- 5.6805,
- 46.0223
- ],
- [
- 5.6805,
- 46.0223
- ],
- [
- 5.6703,
- 46.2143
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Système d'information du territoire à Genève (SITG)"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:3857",
- "EPSG:102110",
- "EPSG:2154",
- "EPSG:102100",
- "EPSG:4326",
- "CRS:84"
- ],
- "best": false,
- "category": "photo",
- "country_code": "CH",
- "end_date": "2018",
- "id": "Geneve-orthophoto-2018",
- "license_url": "https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf",
- "name": "Canton de Génève, Orthophoto 2018 (20cm) (SITG)",
- "privacy_policy_url": "https://ge.ch/sitg/conditions-utilisation",
- "start_date": "2018",
- "type": "wms",
- "url": "https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2018/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.12,
- 46.12
- ],
- [
- 6.08,
- 46.12
- ],
- [
- 6.08,
- 46.14
- ],
- [
- 6.06,
- 46.14
- ],
- [
- 6.06,
- 46.12
- ],
- [
- 5.94,
- 46.12
- ],
- [
- 5.94,
- 46.16
- ],
- [
- 5.96,
- 46.16
- ],
- [
- 5.96,
- 46.18
- ],
- [
- 5.94,
- 46.18
- ],
- [
- 5.94,
- 46.22
- ],
- [
- 5.96,
- 46.22
- ],
- [
- 5.96,
- 46.24
- ],
- [
- 6.02,
- 46.24
- ],
- [
- 6.02,
- 46.26
- ],
- [
- 6.08,
- 46.26
- ],
- [
- 6.08,
- 46.3
- ],
- [
- 6.1,
- 46.3
- ],
- [
- 6.1,
- 46.34
- ],
- [
- 6.14,
- 46.34
- ],
- [
- 6.14,
- 46.32
- ],
- [
- 6.16,
- 46.32
- ],
- [
- 6.16,
- 46.38
- ],
- [
- 6.22,
- 46.38
- ],
- [
- 6.22,
- 46.36
- ],
- [
- 6.26,
- 46.36
- ],
- [
- 6.26,
- 46.28
- ],
- [
- 6.32,
- 46.28
- ],
- [
- 6.32,
- 46.22
- ],
- [
- 6.3,
- 46.22
- ],
- [
- 6.3,
- 46.2
- ],
- [
- 6.26,
- 46.2
- ],
- [
- 6.26,
- 46.18
- ],
- [
- 6.22,
- 46.18
- ],
- [
- 6.22,
- 46.16
- ],
- [
- 6.2,
- 46.16
- ],
- [
- 6.2,
- 46.14
- ],
- [
- 6.16,
- 46.14
- ],
- [
- 6.16,
- 46.12
- ],
- [
- 6.12,
- 46.12
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Système d'information du territoire à Genève (SITG)"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:2056",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "end_date": "2019",
- "id": "Geneve-orthophoto-2019",
- "license_url": "https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf",
- "name": "Canton de Génève, Orthophoto 2019 (5cm) (SITG)",
- "privacy_policy_url": "https://ge.ch/sitg/conditions-utilisation",
- "start_date": "2019",
- "type": "wms",
- "url": "https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2019/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.02235,
- 46.42856
- ],
- [
- 7.0224,
- 46.42045
- ],
- [
- 7.02176,
- 46.41955
- ],
- [
- 7.02225,
- 46.41954
- ],
- [
- 7.02161,
- 46.41749
- ],
- [
- 7.02242,
- 46.4174
- ],
- [
- 7.02242,
- 46.41681
- ],
- [
- 7.02113,
- 46.41443
- ],
- [
- 7.02164,
- 46.41259
- ],
- [
- 7.0216,
- 46.41188
- ],
- [
- 7.01918,
- 46.41055
- ],
- [
- 7.01896,
- 46.41004
- ],
- [
- 7.01757,
- 46.40826
- ],
- [
- 7.01426,
- 46.40696
- ],
- [
- 7.00948,
- 46.40695
- ],
- [
- 7.00952,
- 46.40451
- ],
- [
- 7.00368,
- 46.40153
- ],
- [
- 6.97052,
- 46.40139
- ],
- [
- 6.97056,
- 46.39354
- ],
- [
- 6.96507,
- 46.38333
- ],
- [
- 6.89379,
- 46.383
- ],
- [
- 6.89327,
- 46.39209
- ],
- [
- 6.8968,
- 46.4
- ],
- [
- 6.89678,
- 46.40097
- ],
- [
- 6.89395,
- 46.401
- ],
- [
- 6.89768,
- 46.40888
- ],
- [
- 6.89246,
- 46.41386
- ],
- [
- 6.89237,
- 46.41807
- ],
- [
- 6.8949,
- 46.4193
- ],
- [
- 6.89285,
- 46.41948
- ],
- [
- 6.89395,
- 46.42312
- ],
- [
- 6.89225,
- 46.42339
- ],
- [
- 6.89219,
- 46.42802
- ],
- [
- 6.88743,
- 46.428
- ],
- [
- 6.87652,
- 46.43163
- ],
- [
- 6.86624,
- 46.43633
- ],
- [
- 6.84003,
- 46.44591
- ],
- [
- 6.83504,
- 46.44934
- ],
- [
- 6.827,
- 46.45204
- ],
- [
- 6.82695,
- 46.45379
- ],
- [
- 6.81953,
- 46.45655
- ],
- [
- 6.80361,
- 46.45993
- ],
- [
- 6.78775,
- 46.46253
- ],
- [
- 6.78697,
- 46.5246
- ],
- [
- 6.82604,
- 46.5248
- ],
- [
- 6.82609,
- 46.52662
- ],
- [
- 6.83907,
- 46.5267
- ],
- [
- 6.83888,
- 46.55006
- ],
- [
- 6.90658,
- 46.55042
- ],
- [
- 6.912,
- 46.54301
- ],
- [
- 6.91083,
- 46.53983
- ],
- [
- 6.90979,
- 46.53512
- ],
- [
- 6.90931,
- 46.53517
- ],
- [
- 6.90867,
- 46.53373
- ],
- [
- 6.91195,
- 46.53297
- ],
- [
- 6.91335,
- 46.53604
- ],
- [
- 6.9268,
- 46.53364
- ],
- [
- 6.92723,
- 46.5349
- ],
- [
- 6.93714,
- 46.53311
- ],
- [
- 6.93691,
- 46.5327
- ],
- [
- 6.94028,
- 46.53196
- ],
- [
- 6.94164,
- 46.53477
- ],
- [
- 6.94309,
- 46.53455
- ],
- [
- 6.94345,
- 46.53528
- ],
- [
- 6.95641,
- 46.53003
- ],
- [
- 6.95632,
- 46.52733
- ],
- [
- 6.95111,
- 46.52725
- ],
- [
- 6.95301,
- 46.52611
- ],
- [
- 6.94341,
- 46.52605
- ],
- [
- 6.94343,
- 46.52546
- ],
- [
- 7.01629,
- 46.52568
- ],
- [
- 7.02158,
- 46.52211
- ],
- [
- 7.02196,
- 46.47355
- ],
- [
- 7.07099,
- 46.47368
- ],
- [
- 7.07402,
- 46.4719
- ],
- [
- 7.07383,
- 46.4326
- ],
- [
- 7.05947,
- 46.43233
- ],
- [
- 7.05278,
- 46.42879
- ],
- [
- 7.02235,
- 46.42856
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Cartoriviera",
- "url": "https://map.cartoriviera.ch/?baselayer_ref=orthos_2012_mobile&baselayer_opacity=100"
- },
- "category": "photo",
- "country_code": "CH",
- "end_date": "2012",
- "id": "Cartoriviera-2012",
- "max_zoom": 20,
- "min_zoom": 14,
- "name": "Cartoriviera - Orthophoto 2012",
- "privacy_policy_url": "https://www.asitvd.ch/tarifs-conditions.html",
- "start_date": "2012",
- "type": "tms",
- "url": "https://osmdata.asitvd.ch/tiles/cartoriviera2012/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.62313,
- 46.82339
- ],
- [
- 6.62899,
- 46.82484
- ],
- [
- 6.62882,
- 46.82674
- ],
- [
- 6.62531,
- 46.83274
- ],
- [
- 6.62382,
- 46.83317
- ],
- [
- 6.61839,
- 46.83194
- ],
- [
- 6.62313,
- 46.82339
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Fiez - Orthophoto technique 2013",
- "url": "https://osmdata.asitvd.ch/"
- },
- "category": "photo",
- "country_code": "CH",
- "end_date": "2013",
- "id": "Fiez-2013",
- "max_zoom": 20,
- "min_zoom": 14,
- "name": "Fiez Orthophoto 2013",
- "privacy_policy_url": "https://www.asitvd.ch/tarifs-conditions.html",
- "start_date": "2013",
- "type": "tms",
- "url": "https://osmdata.asitvd.ch/tiles/fiez2013/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.09602,
- 47.57882
- ],
- [
- 8.10323,
- 47.57879
- ],
- [
- 8.10323,
- 47.58583
- ],
- [
- 8.10591,
- 47.58732
- ],
- [
- 8.11019,
- 47.58878
- ],
- [
- 8.11589,
- 47.5893
- ],
- [
- 8.12168,
- 47.58916
- ],
- [
- 8.12546,
- 47.58873
- ],
- [
- 8.12959,
- 47.58888
- ],
- [
- 8.13023,
- 47.59122
- ],
- [
- 8.132,
- 47.59358
- ],
- [
- 8.13506,
- 47.59546
- ],
- [
- 8.13831,
- 47.59698
- ],
- [
- 8.14161,
- 47.59939
- ],
- [
- 8.14534,
- 47.60076
- ],
- [
- 8.14961,
- 47.60144
- ],
- [
- 8.15438,
- 47.60127
- ],
- [
- 8.15751,
- 47.60063
- ],
- [
- 8.16119,
- 47.59914
- ],
- [
- 8.16255,
- 47.59976
- ],
- [
- 8.16438,
- 47.60148
- ],
- [
- 8.16653,
- 47.60399
- ],
- [
- 8.17087,
- 47.60673
- ],
- [
- 8.17608,
- 47.60838
- ],
- [
- 8.17912,
- 47.60868
- ],
- [
- 8.18153,
- 47.6118
- ],
- [
- 8.18304,
- 47.61489
- ],
- [
- 8.18498,
- 47.6176
- ],
- [
- 8.18953,
- 47.62151
- ],
- [
- 8.19212,
- 47.62321
- ],
- [
- 8.22261,
- 47.623
- ],
- [
- 8.22561,
- 47.6212
- ],
- [
- 8.22849,
- 47.61842
- ],
- [
- 8.22959,
- 47.61621
- ],
- [
- 8.23008,
- 47.61501
- ],
- [
- 8.23261,
- 47.61686
- ],
- [
- 8.23657,
- 47.61803
- ],
- [
- 8.24,
- 47.61835
- ],
- [
- 8.24351,
- 47.61783
- ],
- [
- 8.24749,
- 47.61877
- ],
- [
- 8.25066,
- 47.61988
- ],
- [
- 8.25708,
- 47.6208
- ],
- [
- 8.26104,
- 47.62069
- ],
- [
- 8.26491,
- 47.61935
- ],
- [
- 8.26732,
- 47.61769
- ],
- [
- 8.26902,
- 47.61531
- ],
- [
- 8.27579,
- 47.61702
- ],
- [
- 8.28106,
- 47.61707
- ],
- [
- 8.28772,
- 47.61626
- ],
- [
- 8.29421,
- 47.61442
- ],
- [
- 8.29947,
- 47.61221
- ],
- [
- 8.30311,
- 47.60977
- ],
- [
- 8.30287,
- 47.59447
- ],
- [
- 8.30438,
- 47.59227
- ],
- [
- 8.30591,
- 47.59109
- ],
- [
- 8.30791,
- 47.59019
- ],
- [
- 8.31236,
- 47.58917
- ],
- [
- 8.31655,
- 47.58713
- ],
- [
- 8.32049,
- 47.58436
- ],
- [
- 8.32598,
- 47.57888
- ],
- [
- 8.32864,
- 47.57716
- ],
- [
- 8.33219,
- 47.57604
- ],
- [
- 8.33902,
- 47.57577
- ],
- [
- 8.34702,
- 47.57628
- ],
- [
- 8.35962,
- 47.57552
- ],
- [
- 8.36475,
- 47.57436
- ],
- [
- 8.37207,
- 47.57377
- ],
- [
- 8.38002,
- 47.57233
- ],
- [
- 8.38194,
- 47.57496
- ],
- [
- 8.38387,
- 47.57686
- ],
- [
- 8.38879,
- 47.58027
- ],
- [
- 8.39232,
- 47.58174
- ],
- [
- 8.39611,
- 47.58247
- ],
- [
- 8.40013,
- 47.58255
- ],
- [
- 8.40432,
- 47.58158
- ],
- [
- 8.41158,
- 47.57928
- ],
- [
- 8.418,
- 47.57602
- ],
- [
- 8.42381,
- 47.57452
- ],
- [
- 8.43039,
- 47.57228
- ],
- [
- 8.43275,
- 47.57035
- ],
- [
- 8.4336,
- 47.56849
- ],
- [
- 8.43353,
- 47.56669
- ],
- [
- 8.4319,
- 47.56444
- ],
- [
- 8.4286,
- 47.56217
- ],
- [
- 8.42575,
- 47.56121
- ],
- [
- 8.4259,
- 47.55854
- ],
- [
- 8.42498,
- 47.55624
- ],
- [
- 8.42353,
- 47.55469
- ],
- [
- 8.42296,
- 47.5537
- ],
- [
- 8.4246,
- 47.5517
- ],
- [
- 8.42492,
- 47.54981
- ],
- [
- 8.42434,
- 47.54836
- ],
- [
- 8.42539,
- 47.54679
- ],
- [
- 8.425,
- 47.54418
- ],
- [
- 8.4233,
- 47.5422
- ],
- [
- 8.421,
- 47.54106
- ],
- [
- 8.41832,
- 47.54049
- ],
- [
- 8.41551,
- 47.54062
- ],
- [
- 8.4139,
- 47.53924
- ],
- [
- 8.41283,
- 47.5372
- ],
- [
- 8.41194,
- 47.53626
- ],
- [
- 8.41241,
- 47.53415
- ],
- [
- 8.41185,
- 47.53237
- ],
- [
- 8.41117,
- 47.53158
- ],
- [
- 8.40143,
- 47.53169
- ],
- [
- 8.40124,
- 47.52443
- ],
- [
- 8.39936,
- 47.5222
- ],
- [
- 8.39666,
- 47.52082
- ],
- [
- 8.39385,
- 47.51988
- ],
- [
- 8.39085,
- 47.51973
- ],
- [
- 8.38877,
- 47.52014
- ],
- [
- 8.38809,
- 47.5146
- ],
- [
- 8.38551,
- 47.51075
- ],
- [
- 8.38366,
- 47.50944
- ],
- [
- 8.36776,
- 47.50953
- ],
- [
- 8.36739,
- 47.48709
- ],
- [
- 8.3751,
- 47.48689
- ],
- [
- 8.37889,
- 47.4853
- ],
- [
- 8.38196,
- 47.48188
- ],
- [
- 8.38184,
- 47.47521
- ],
- [
- 8.38328,
- 47.47192
- ],
- [
- 8.38244,
- 47.46879
- ],
- [
- 8.37943,
- 47.46643
- ],
- [
- 8.37751,
- 47.4659
- ],
- [
- 8.37787,
- 47.46496
- ],
- [
- 8.38238,
- 47.46423
- ],
- [
- 8.38671,
- 47.46097
- ],
- [
- 8.39171,
- 47.45743
- ],
- [
- 8.39315,
- 47.45349
- ],
- [
- 8.39514,
- 47.45031
- ],
- [
- 8.39418,
- 47.44722
- ],
- [
- 8.39171,
- 47.44535
- ],
- [
- 8.3896,
- 47.44449
- ],
- [
- 8.38996,
- 47.44339
- ],
- [
- 8.39111,
- 47.4416
- ],
- [
- 8.39213,
- 47.43924
- ],
- [
- 8.39339,
- 47.4359
- ],
- [
- 8.39249,
- 47.43411
- ],
- [
- 8.39369,
- 47.43143
- ],
- [
- 8.39568,
- 47.42854
- ],
- [
- 8.39959,
- 47.42463
- ],
- [
- 8.39953,
- 47.41954
- ],
- [
- 8.449,
- 47.41897
- ],
- [
- 8.45369,
- 47.41233
- ],
- [
- 8.45369,
- 47.40451
- ],
- [
- 8.44858,
- 47.39649
- ],
- [
- 8.40362,
- 47.39685
- ],
- [
- 8.40483,
- 47.39392
- ],
- [
- 8.4029,
- 47.38903
- ],
- [
- 8.4035,
- 47.38553
- ],
- [
- 8.40314,
- 47.38304
- ],
- [
- 8.40483,
- 47.37905
- ],
- [
- 8.40844,
- 47.37575
- ],
- [
- 8.41379,
- 47.37338
- ],
- [
- 8.4159,
- 47.37016
- ],
- [
- 8.41584,
- 47.36539
- ],
- [
- 8.4144,
- 47.36327
- ],
- [
- 8.41494,
- 47.35912
- ],
- [
- 8.41722,
- 47.35573
- ],
- [
- 8.41632,
- 47.35231
- ],
- [
- 8.41355,
- 47.34913
- ],
- [
- 8.41367,
- 47.34688
- ],
- [
- 8.41476,
- 47.3448
- ],
- [
- 8.41885,
- 47.34244
- ],
- [
- 8.42264,
- 47.34052
- ],
- [
- 8.42469,
- 47.33718
- ],
- [
- 8.42421,
- 47.33163
- ],
- [
- 8.42914,
- 47.33286
- ],
- [
- 8.4351,
- 47.33192
- ],
- [
- 8.43763,
- 47.33281
- ],
- [
- 8.44328,
- 47.33506
- ],
- [
- 8.44527,
- 47.33746
- ],
- [
- 8.45213,
- 47.3402
- ],
- [
- 8.45761,
- 47.33975
- ],
- [
- 8.46212,
- 47.33649
- ],
- [
- 8.46278,
- 47.33322
- ],
- [
- 8.46043,
- 47.32829
- ],
- [
- 8.45797,
- 47.32457
- ],
- [
- 8.45556,
- 47.32005
- ],
- [
- 8.44918,
- 47.31495
- ],
- [
- 8.44713,
- 47.31217
- ],
- [
- 8.44021,
- 47.30948
- ],
- [
- 8.43624,
- 47.29817
- ],
- [
- 8.43311,
- 47.29593
- ],
- [
- 8.42806,
- 47.29397
- ],
- [
- 8.42318,
- 47.29001
- ],
- [
- 8.41656,
- 47.28789
- ],
- [
- 8.41024,
- 47.28728
- ],
- [
- 8.4035,
- 47.28409
- ],
- [
- 8.40188,
- 47.2805
- ],
- [
- 8.40862,
- 47.27593
- ],
- [
- 8.41066,
- 47.2716
- ],
- [
- 8.40892,
- 47.26613
- ],
- [
- 8.41235,
- 47.2618
- ],
- [
- 8.41235,
- 47.25873
- ],
- [
- 8.41109,
- 47.25608
- ],
- [
- 8.41698,
- 47.25142
- ],
- [
- 8.41885,
- 47.2475
- ],
- [
- 8.41801,
- 47.24305
- ],
- [
- 8.4144,
- 47.23904
- ],
- [
- 8.41373,
- 47.23565
- ],
- [
- 8.4106,
- 47.23226
- ],
- [
- 8.40435,
- 47.22797
- ],
- [
- 8.40296,
- 47.2256
- ],
- [
- 8.40398,
- 47.22127
- ],
- [
- 8.40856,
- 47.21718
- ],
- [
- 8.40928,
- 47.21326
- ],
- [
- 8.40844,
- 47.20945
- ],
- [
- 8.41012,
- 47.20258
- ],
- [
- 8.41319,
- 47.19678
- ],
- [
- 8.41271,
- 47.1924
- ],
- [
- 8.4088,
- 47.18799
- ],
- [
- 8.40814,
- 47.18475
- ],
- [
- 8.4091,
- 47.1812
- ],
- [
- 8.41518,
- 47.17915
- ],
- [
- 8.41915,
- 47.17563
- ],
- [
- 8.42294,
- 47.16553
- ],
- [
- 8.42294,
- 47.15747
- ],
- [
- 8.42011,
- 47.15325
- ],
- [
- 8.42246,
- 47.14838
- ],
- [
- 8.42276,
- 47.14392
- ],
- [
- 8.42053,
- 47.13954
- ],
- [
- 8.41584,
- 47.13524
- ],
- [
- 8.40898,
- 47.13274
- ],
- [
- 8.40386,
- 47.13201
- ],
- [
- 8.40116,
- 47.13258
- ],
- [
- 8.39532,
- 47.1327
- ],
- [
- 8.38437,
- 47.1345
- ],
- [
- 8.37895,
- 47.13385
- ],
- [
- 8.37245,
- 47.13442
- ],
- [
- 8.36908,
- 47.13659
- ],
- [
- 8.368,
- 47.13876
- ],
- [
- 8.35656,
- 47.14228
- ],
- [
- 8.35409,
- 47.14564
- ],
- [
- 8.35331,
- 47.14916
- ],
- [
- 8.3506,
- 47.15161
- ],
- [
- 8.3503,
- 47.15419
- ],
- [
- 8.34772,
- 47.15669
- ],
- [
- 8.34561,
- 47.15923
- ],
- [
- 8.34086,
- 47.16164
- ],
- [
- 8.33935,
- 47.16512
- ],
- [
- 8.3373,
- 47.16896
- ],
- [
- 8.33315,
- 47.17154
- ],
- [
- 8.33261,
- 47.17351
- ],
- [
- 8.33062,
- 47.17792
- ],
- [
- 8.33002,
- 47.18717
- ],
- [
- 8.32924,
- 47.18786
- ],
- [
- 8.32936,
- 47.19494
- ],
- [
- 8.32292,
- 47.19514
- ],
- [
- 8.32148,
- 47.19854
- ],
- [
- 8.32196,
- 47.20115
- ],
- [
- 8.31835,
- 47.21043
- ],
- [
- 8.31413,
- 47.21178
- ],
- [
- 8.31089,
- 47.2153
- ],
- [
- 8.31107,
- 47.21857
- ],
- [
- 8.31221,
- 47.2198
- ],
- [
- 8.30884,
- 47.22433
- ],
- [
- 8.30932,
- 47.22646
- ],
- [
- 8.30715,
- 47.23042
- ],
- [
- 8.30727,
- 47.2321
- ],
- [
- 8.30595,
- 47.23582
- ],
- [
- 8.30607,
- 47.23949
- ],
- [
- 8.30378,
- 47.24366
- ],
- [
- 8.30144,
- 47.24677
- ],
- [
- 8.29554,
- 47.24836
- ],
- [
- 8.29187,
- 47.25293
- ],
- [
- 8.28814,
- 47.25869
- ],
- [
- 8.28766,
- 47.26143
- ],
- [
- 8.28627,
- 47.26519
- ],
- [
- 8.28723,
- 47.26805
- ],
- [
- 8.28838,
- 47.26964
- ],
- [
- 8.2823,
- 47.27478
- ],
- [
- 8.27718,
- 47.27576
- ],
- [
- 8.27273,
- 47.27531
- ],
- [
- 8.26749,
- 47.27593
- ],
- [
- 8.26533,
- 47.27719
- ],
- [
- 8.2616,
- 47.27695
- ],
- [
- 8.25793,
- 47.27781
- ],
- [
- 8.25576,
- 47.27887
- ],
- [
- 8.25317,
- 47.27678
- ],
- [
- 8.25034,
- 47.27548
- ],
- [
- 8.2501,
- 47.27348
- ],
- [
- 8.24956,
- 47.27017
- ],
- [
- 8.24559,
- 47.26715
- ],
- [
- 8.24095,
- 47.26678
- ],
- [
- 8.23452,
- 47.26727
- ],
- [
- 8.23145,
- 47.26278
- ],
- [
- 8.2309,
- 47.25931
- ],
- [
- 8.22663,
- 47.24942
- ],
- [
- 8.222,
- 47.24713
- ],
- [
- 8.21526,
- 47.24431
- ],
- [
- 8.21363,
- 47.24203
- ],
- [
- 8.21309,
- 47.23602
- ],
- [
- 8.21123,
- 47.23246
- ],
- [
- 8.21285,
- 47.22548
- ],
- [
- 8.21117,
- 47.22266
- ],
- [
- 8.20689,
- 47.22053
- ],
- [
- 8.19762,
- 47.22065
- ],
- [
- 8.19149,
- 47.21861
- ],
- [
- 8.16976,
- 47.21865
- ],
- [
- 8.16543,
- 47.22315
- ],
- [
- 8.16085,
- 47.22405
- ],
- [
- 8.15351,
- 47.2294
- ],
- [
- 8.15171,
- 47.2332
- ],
- [
- 8.14822,
- 47.23647
- ],
- [
- 8.14798,
- 47.241
- ],
- [
- 8.14635,
- 47.24203
- ],
- [
- 8.13823,
- 47.24166
- ],
- [
- 8.13558,
- 47.23941
- ],
- [
- 8.12673,
- 47.23606
- ],
- [
- 8.1218,
- 47.23631
- ],
- [
- 8.11614,
- 47.23872
- ],
- [
- 8.10675,
- 47.23945
- ],
- [
- 8.10266,
- 47.24113
- ],
- [
- 8.09983,
- 47.24436
- ],
- [
- 8.09766,
- 47.2493
- ],
- [
- 8.09797,
- 47.25069
- ],
- [
- 8.09339,
- 47.25567
- ],
- [
- 8.08852,
- 47.2569
- ],
- [
- 8.08485,
- 47.25583
- ],
- [
- 8.08323,
- 47.25405
- ],
- [
- 8.07995,
- 47.25246
- ],
- [
- 8.0769,
- 47.25054
- ],
- [
- 8.06854,
- 47.24284
- ],
- [
- 8.06325,
- 47.24098
- ],
- [
- 8.05134,
- 47.23865
- ],
- [
- 8.04857,
- 47.23886
- ],
- [
- 8.03575,
- 47.23747
- ],
- [
- 8.0322,
- 47.23555
- ],
- [
- 8.02714,
- 47.23534
- ],
- [
- 8.01139,
- 47.23967
- ],
- [
- 8.00927,
- 47.24116
- ],
- [
- 8.00791,
- 47.24312
- ],
- [
- 8.00783,
- 47.24821
- ],
- [
- 8.00857,
- 47.25042
- ],
- [
- 8.0084,
- 47.25769
- ],
- [
- 8.00712,
- 47.25922
- ],
- [
- 8.00299,
- 47.26162
- ],
- [
- 8.00052,
- 47.26486
- ],
- [
- 7.99759,
- 47.26789
- ],
- [
- 7.99627,
- 47.27271
- ],
- [
- 7.99474,
- 47.27369
- ],
- [
- 7.98993,
- 47.27121
- ],
- [
- 7.97278,
- 47.26907
- ],
- [
- 7.96857,
- 47.27008
- ],
- [
- 7.96737,
- 47.27098
- ],
- [
- 7.95861,
- 47.27112
- ],
- [
- 7.9601,
- 47.26748
- ],
- [
- 7.96274,
- 47.26396
- ],
- [
- 7.96576,
- 47.26171
- ],
- [
- 7.96699,
- 47.25879
- ],
- [
- 7.96695,
- 47.25001
- ],
- [
- 7.95963,
- 47.24582
- ],
- [
- 7.95112,
- 47.23918
- ],
- [
- 7.94469,
- 47.236
- ],
- [
- 7.93733,
- 47.23106
- ],
- [
- 7.93405,
- 47.23051
- ],
- [
- 7.9298,
- 47.23077
- ],
- [
- 7.9178,
- 47.23305
- ],
- [
- 7.90784,
- 47.23837
- ],
- [
- 7.89793,
- 47.2377
- ],
- [
- 7.8695,
- 47.23207
- ],
- [
- 7.85478,
- 47.22719
- ],
- [
- 7.85137,
- 47.22713
- ],
- [
- 7.83958,
- 47.22947
- ],
- [
- 7.83584,
- 47.22976
- ],
- [
- 7.83082,
- 47.23259
- ],
- [
- 7.82707,
- 47.23505
- ],
- [
- 7.82431,
- 47.23831
- ],
- [
- 7.82129,
- 47.24042
- ],
- [
- 7.82014,
- 47.24264
- ],
- [
- 7.81822,
- 47.24562
- ],
- [
- 7.81771,
- 47.24917
- ],
- [
- 7.81822,
- 47.25082
- ],
- [
- 7.81835,
- 47.25371
- ],
- [
- 7.81988,
- 47.25587
- ],
- [
- 7.82116,
- 47.2568
- ],
- [
- 7.82112,
- 47.25778
- ],
- [
- 7.8192,
- 47.26058
- ],
- [
- 7.81912,
- 47.26154
- ],
- [
- 7.81686,
- 47.26486
- ],
- [
- 7.8175,
- 47.26731
- ],
- [
- 7.81958,
- 47.26982
- ],
- [
- 7.82439,
- 47.27158
- ],
- [
- 7.82805,
- 47.2721
- ],
- [
- 7.83592,
- 47.27837
- ],
- [
- 7.83707,
- 47.28342
- ],
- [
- 7.84005,
- 47.2872
- ],
- [
- 7.84201,
- 47.29067
- ],
- [
- 7.84588,
- 47.29427
- ],
- [
- 7.84763,
- 47.2982
- ],
- [
- 7.85137,
- 47.30299
- ],
- [
- 7.8529,
- 47.30741
- ],
- [
- 7.85571,
- 47.31032
- ],
- [
- 7.86065,
- 47.31254
- ],
- [
- 7.86422,
- 47.31349
- ],
- [
- 7.87018,
- 47.31672
- ],
- [
- 7.87631,
- 47.31736
- ],
- [
- 7.88082,
- 47.31716
- ],
- [
- 7.88337,
- 47.31667
- ],
- [
- 7.88588,
- 47.31941
- ],
- [
- 7.88886,
- 47.32131
- ],
- [
- 7.88805,
- 47.32443
- ],
- [
- 7.88907,
- 47.3287
- ],
- [
- 7.8915,
- 47.33262
- ],
- [
- 7.8978,
- 47.34014
- ],
- [
- 7.9001,
- 47.34156
- ],
- [
- 7.90005,
- 47.3432
- ],
- [
- 7.90222,
- 47.34557
- ],
- [
- 7.90635,
- 47.34704
- ],
- [
- 7.90963,
- 47.34735
- ],
- [
- 7.91359,
- 47.34626
- ],
- [
- 7.91618,
- 47.34456
- ],
- [
- 7.91699,
- 47.34303
- ],
- [
- 7.92401,
- 47.33899
- ],
- [
- 7.93839,
- 47.33792
- ],
- [
- 7.94929,
- 47.33784
- ],
- [
- 7.95431,
- 47.33596
- ],
- [
- 7.95593,
- 47.33317
- ],
- [
- 7.95691,
- 47.32968
- ],
- [
- 7.95571,
- 47.32535
- ],
- [
- 7.96993,
- 47.32797
- ],
- [
- 7.97308,
- 47.33017
- ],
- [
- 7.98333,
- 47.33432
- ],
- [
- 7.98563,
- 47.33692
- ],
- [
- 7.98954,
- 47.33818
- ],
- [
- 7.99248,
- 47.33827
- ],
- [
- 7.99784,
- 47.34017
- ],
- [
- 7.99635,
- 47.34257
- ],
- [
- 7.99601,
- 47.34588
- ],
- [
- 7.99733,
- 47.34859
- ],
- [
- 8.00116,
- 47.35081
- ],
- [
- 8.00137,
- 47.3569
- ],
- [
- 8.00261,
- 47.3577
- ],
- [
- 8.00418,
- 47.36044
- ],
- [
- 8.00976,
- 47.36419
- ],
- [
- 8.01125,
- 47.36598
- ],
- [
- 8.01746,
- 47.36926
- ],
- [
- 8.01912,
- 47.37157
- ],
- [
- 8.0198,
- 47.37376
- ],
- [
- 8.02023,
- 47.37598
- ],
- [
- 8.02172,
- 47.37837
- ],
- [
- 8.02193,
- 47.38093
- ],
- [
- 8.02282,
- 47.38286
- ],
- [
- 8.02078,
- 47.38857
- ],
- [
- 8.01606,
- 47.38929
- ],
- [
- 8.01265,
- 47.38897
- ],
- [
- 8.00772,
- 47.39012
- ],
- [
- 8.00367,
- 47.39205
- ],
- [
- 8.00163,
- 47.39479
- ],
- [
- 8.00155,
- 47.39998
- ],
- [
- 8.00023,
- 47.40306
- ],
- [
- 7.99801,
- 47.40453
- ],
- [
- 7.99261,
- 47.40551
- ],
- [
- 7.98776,
- 47.40637
- ],
- [
- 7.98418,
- 47.40839
- ],
- [
- 7.98027,
- 47.4081
- ],
- [
- 7.9732,
- 47.41127
- ],
- [
- 7.96963,
- 47.41383
- ],
- [
- 7.95695,
- 47.41893
- ],
- [
- 7.95529,
- 47.4218
- ],
- [
- 7.95593,
- 47.42402
- ],
- [
- 7.95746,
- 47.42621
- ],
- [
- 7.96274,
- 47.42828
- ],
- [
- 7.97746,
- 47.43254
- ],
- [
- 7.97567,
- 47.43732
- ],
- [
- 7.97614,
- 47.44138
- ],
- [
- 7.97431,
- 47.44368
- ],
- [
- 7.95129,
- 47.45111
- ],
- [
- 7.94861,
- 47.4539
- ],
- [
- 7.94818,
- 47.4566
- ],
- [
- 7.94678,
- 47.45755
- ],
- [
- 7.94039,
- 47.45669
- ],
- [
- 7.93588,
- 47.45738
- ],
- [
- 7.93631,
- 47.47625
- ],
- [
- 7.9318,
- 47.47605
- ],
- [
- 7.92469,
- 47.47717
- ],
- [
- 7.91571,
- 47.47743
- ],
- [
- 7.90903,
- 47.47947
- ],
- [
- 7.90316,
- 47.47967
- ],
- [
- 7.90295,
- 47.48965
- ],
- [
- 7.8969,
- 47.4898
- ],
- [
- 7.8918,
- 47.49405
- ],
- [
- 7.89086,
- 47.49765
- ],
- [
- 7.8878,
- 47.49931
- ],
- [
- 7.88631,
- 47.5023
- ],
- [
- 7.87999,
- 47.50397
- ],
- [
- 7.87403,
- 47.50787
- ],
- [
- 7.86994,
- 47.50944
- ],
- [
- 7.87006,
- 47.51239
- ],
- [
- 7.86435,
- 47.51245
- ],
- [
- 7.85851,
- 47.51543
- ],
- [
- 7.8558,
- 47.51854
- ],
- [
- 7.85625,
- 47.52147
- ],
- [
- 7.8549,
- 47.52474
- ],
- [
- 7.85183,
- 47.5285
- ],
- [
- 7.84647,
- 47.52714
- ],
- [
- 7.84148,
- 47.52777
- ],
- [
- 7.8413,
- 47.52406
- ],
- [
- 7.84015,
- 47.51587
- ],
- [
- 7.83943,
- 47.51259
- ],
- [
- 7.83688,
- 47.51256
- ],
- [
- 7.83679,
- 47.51049
- ],
- [
- 7.83352,
- 47.50949
- ],
- [
- 7.83156,
- 47.50765
- ],
- [
- 7.82981,
- 47.50552
- ],
- [
- 7.82522,
- 47.50354
- ],
- [
- 7.82049,
- 47.5004
- ],
- [
- 7.81475,
- 47.49491
- ],
- [
- 7.81181,
- 47.49261
- ],
- [
- 7.80645,
- 47.4914
- ],
- [
- 7.80403,
- 47.49146
- ],
- [
- 7.80049,
- 47.49014
- ],
- [
- 7.77977,
- 47.49028
- ],
- [
- 7.77871,
- 47.49304
- ],
- [
- 7.7796,
- 47.496
- ],
- [
- 7.78386,
- 47.5004
- ],
- [
- 7.78203,
- 47.50368
- ],
- [
- 7.78088,
- 47.5073
- ],
- [
- 7.78109,
- 47.51018
- ],
- [
- 7.77977,
- 47.51265
- ],
- [
- 7.77969,
- 47.51529
- ],
- [
- 7.77045,
- 47.51802
- ],
- [
- 7.75905,
- 47.52003
- ],
- [
- 7.75266,
- 47.52009
- ],
- [
- 7.74781,
- 47.51957
- ],
- [
- 7.73368,
- 47.52291
- ],
- [
- 7.72781,
- 47.52719
- ],
- [
- 7.71985,
- 47.52978
- ],
- [
- 7.71262,
- 47.53095
- ],
- [
- 7.70764,
- 47.5344
- ],
- [
- 7.70551,
- 47.53917
- ],
- [
- 7.70696,
- 47.54279
- ],
- [
- 7.71415,
- 47.54627
- ],
- [
- 7.72245,
- 47.54756
- ],
- [
- 7.749,
- 47.54977
- ],
- [
- 7.75428,
- 47.55339
- ],
- [
- 7.76654,
- 47.55615
- ],
- [
- 7.77168,
- 47.55761
- ],
- [
- 7.78007,
- 47.55836
- ],
- [
- 7.78577,
- 47.55982
- ],
- [
- 7.7902,
- 47.5616
- ],
- [
- 7.79398,
- 47.56634
- ],
- [
- 7.80492,
- 47.57237
- ],
- [
- 7.80611,
- 47.57989
- ],
- [
- 7.81173,
- 47.58954
- ],
- [
- 7.81577,
- 47.59218
- ],
- [
- 7.82211,
- 47.59352
- ],
- [
- 7.83645,
- 47.59163
- ],
- [
- 7.83952,
- 47.59045
- ],
- [
- 7.84305,
- 47.58778
- ],
- [
- 7.84875,
- 47.58899
- ],
- [
- 7.85624,
- 47.59189
- ],
- [
- 7.86488,
- 47.59393
- ],
- [
- 7.87126,
- 47.5943
- ],
- [
- 7.87726,
- 47.59367
- ],
- [
- 7.88535,
- 47.59424
- ],
- [
- 7.89343,
- 47.59301
- ],
- [
- 7.90109,
- 47.58976
- ],
- [
- 7.90833,
- 47.58514
- ],
- [
- 7.91386,
- 47.57923
- ],
- [
- 7.91867,
- 47.57194
- ],
- [
- 7.91956,
- 47.56772
- ],
- [
- 7.91875,
- 47.56433
- ],
- [
- 7.9156,
- 47.56008
- ],
- [
- 7.91577,
- 47.55715
- ],
- [
- 7.91841,
- 47.55405
- ],
- [
- 7.92126,
- 47.55261
- ],
- [
- 7.92552,
- 47.55227
- ],
- [
- 7.93471,
- 47.55221
- ],
- [
- 7.9405,
- 47.55078
- ],
- [
- 7.94326,
- 47.54968
- ],
- [
- 7.94356,
- 47.55052
- ],
- [
- 7.94458,
- 47.55589
- ],
- [
- 7.94841,
- 47.55979
- ],
- [
- 7.95394,
- 47.56229
- ],
- [
- 7.96003,
- 47.56333
- ],
- [
- 7.96577,
- 47.56272
- ],
- [
- 7.97203,
- 47.5612
- ],
- [
- 7.97833,
- 47.56057
- ],
- [
- 7.98624,
- 47.56094
- ],
- [
- 7.99718,
- 47.56212
- ],
- [
- 8.0045,
- 47.56137
- ],
- [
- 8.01114,
- 47.55974
- ],
- [
- 8.01641,
- 47.55701
- ],
- [
- 8.02046,
- 47.55574
- ],
- [
- 8.0262,
- 47.55741
- ],
- [
- 8.03799,
- 47.55876
- ],
- [
- 8.04254,
- 47.56028
- ],
- [
- 8.0485,
- 47.56333
- ],
- [
- 8.05454,
- 47.56798
- ],
- [
- 8.05931,
- 47.56921
- ],
- [
- 8.0622,
- 47.56895
- ],
- [
- 8.06693,
- 47.57002
- ],
- [
- 8.07242,
- 47.56973
- ],
- [
- 8.07739,
- 47.56795
- ],
- [
- 8.08182,
- 47.56436
- ],
- [
- 8.08522,
- 47.56281
- ],
- [
- 8.08791,
- 47.56298
- ],
- [
- 8.09259,
- 47.56559
- ],
- [
- 8.09395,
- 47.56809
- ],
- [
- 8.09484,
- 47.57587
- ],
- [
- 8.09602,
- 47.57882
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "AGIS OF2014"
- },
- "best": false,
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2014",
- "id": "Aargau-AGIS-2014",
- "license_url": "https://wiki.openstreetmap.org/wiki/Switzerland/AGIS",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "Kanton Aargau 25cm (AGIS 2014)",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2014",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/AGIS2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.70438,
- 47.55794
- ],
- [
- 7.77076,
- 47.55772
- ],
- [
- 7.77103,
- 47.58025
- ],
- [
- 7.80408,
- 47.58017
- ],
- [
- 7.80433,
- 47.60248
- ],
- [
- 7.93713,
- 47.60217
- ],
- [
- 7.93703,
- 47.57962
- ],
- [
- 8.00374,
- 47.57917
- ],
- [
- 8.00338,
- 47.55687
- ],
- [
- 8.0364,
- 47.55665
- ],
- [
- 8.03681,
- 47.57928
- ],
- [
- 8.10313,
- 47.57881
- ],
- [
- 8.10387,
- 47.60112
- ],
- [
- 8.17011,
- 47.60086
- ],
- [
- 8.17036,
- 47.6235
- ],
- [
- 8.30311,
- 47.62235
- ],
- [
- 8.30305,
- 47.59988
- ],
- [
- 8.3362,
- 47.59927
- ],
- [
- 8.33585,
- 47.5771
- ],
- [
- 8.36913,
- 47.57694
- ],
- [
- 8.36943,
- 47.59931
- ],
- [
- 8.43564,
- 47.59877
- ],
- [
- 8.43454,
- 47.53133
- ],
- [
- 8.40144,
- 47.53162
- ],
- [
- 8.40096,
- 47.50926
- ],
- [
- 8.3678,
- 47.50959
- ],
- [
- 8.3675,
- 47.48698
- ],
- [
- 8.40042,
- 47.48666
- ],
- [
- 8.39939,
- 47.41929
- ],
- [
- 8.46558,
- 47.4187
- ],
- [
- 8.46515,
- 47.39647
- ],
- [
- 8.43206,
- 47.39654
- ],
- [
- 8.43125,
- 47.3516
- ],
- [
- 8.46434,
- 47.35128
- ],
- [
- 8.46327,
- 47.28387
- ],
- [
- 8.42997,
- 47.28421
- ],
- [
- 8.42714,
- 47.12676
- ],
- [
- 8.3293,
- 47.12753
- ],
- [
- 8.32937,
- 47.13007
- ],
- [
- 8.32833,
- 47.13007
- ],
- [
- 8.3285,
- 47.14529
- ],
- [
- 8.3294,
- 47.19502
- ],
- [
- 8.2964,
- 47.19526
- ],
- [
- 8.29714,
- 47.24022
- ],
- [
- 8.2641,
- 47.24046
- ],
- [
- 8.26446,
- 47.26297
- ],
- [
- 8.23141,
- 47.26316
- ],
- [
- 8.23075,
- 47.21822
- ],
- [
- 8.09886,
- 47.21912
- ],
- [
- 8.09874,
- 47.24135
- ],
- [
- 8.066,
- 47.24176
- ],
- [
- 8.06552,
- 47.2192
- ],
- [
- 7.99993,
- 47.21952
- ],
- [
- 8.00003,
- 47.26433
- ],
- [
- 7.96735,
- 47.26462
- ],
- [
- 7.96675,
- 47.21961
- ],
- [
- 7.80153,
- 47.22029
- ],
- [
- 7.80244,
- 47.28791
- ],
- [
- 7.83518,
- 47.28772
- ],
- [
- 7.83543,
- 47.31017
- ],
- [
- 7.86837,
- 47.31017
- ],
- [
- 7.86885,
- 47.35542
- ],
- [
- 8.00097,
- 47.3543
- ],
- [
- 8.00156,
- 47.39928
- ],
- [
- 7.9353,
- 47.39976
- ],
- [
- 7.93607,
- 47.46716
- ],
- [
- 7.90278,
- 47.46729
- ],
- [
- 7.90303,
- 47.48981
- ],
- [
- 7.86987,
- 47.48998
- ],
- [
- 7.86993,
- 47.5125
- ],
- [
- 7.83689,
- 47.51258
- ],
- [
- 7.83665,
- 47.4901
- ],
- [
- 7.77027,
- 47.49026
- ],
- [
- 7.77045,
- 47.51274
- ],
- [
- 7.70452,
- 47.51307
- ],
- [
- 7.70438,
- 47.55794
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "AGIS OF2016"
- },
- "best": false,
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2016",
- "id": "Aargau-AGIS-2016",
- "license_url": "https://wiki.openstreetmap.org/wiki/Switzerland/AGIS",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "Kanton Aargau 25cm (AGIS 2016)",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2016",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/AGIS2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.70438,
- 47.55794
- ],
- [
- 7.77076,
- 47.55772
- ],
- [
- 7.77103,
- 47.58025
- ],
- [
- 7.80408,
- 47.58017
- ],
- [
- 7.80433,
- 47.60248
- ],
- [
- 7.93713,
- 47.60217
- ],
- [
- 7.93703,
- 47.57962
- ],
- [
- 8.00374,
- 47.57917
- ],
- [
- 8.00338,
- 47.55687
- ],
- [
- 8.0364,
- 47.55665
- ],
- [
- 8.03681,
- 47.57928
- ],
- [
- 8.10313,
- 47.57881
- ],
- [
- 8.10387,
- 47.60112
- ],
- [
- 8.17011,
- 47.60086
- ],
- [
- 8.17036,
- 47.6235
- ],
- [
- 8.30311,
- 47.62235
- ],
- [
- 8.30305,
- 47.59988
- ],
- [
- 8.3362,
- 47.59927
- ],
- [
- 8.33585,
- 47.5771
- ],
- [
- 8.36913,
- 47.57694
- ],
- [
- 8.36943,
- 47.59931
- ],
- [
- 8.43564,
- 47.59877
- ],
- [
- 8.43454,
- 47.53133
- ],
- [
- 8.40144,
- 47.53162
- ],
- [
- 8.40096,
- 47.50926
- ],
- [
- 8.3678,
- 47.50959
- ],
- [
- 8.3675,
- 47.48698
- ],
- [
- 8.40042,
- 47.48666
- ],
- [
- 8.39939,
- 47.41929
- ],
- [
- 8.46558,
- 47.4187
- ],
- [
- 8.46515,
- 47.39647
- ],
- [
- 8.43206,
- 47.39654
- ],
- [
- 8.43125,
- 47.3516
- ],
- [
- 8.46434,
- 47.35128
- ],
- [
- 8.46327,
- 47.28387
- ],
- [
- 8.42997,
- 47.28421
- ],
- [
- 8.42714,
- 47.12676
- ],
- [
- 8.3293,
- 47.12753
- ],
- [
- 8.32937,
- 47.13007
- ],
- [
- 8.32833,
- 47.13007
- ],
- [
- 8.3285,
- 47.14529
- ],
- [
- 8.3294,
- 47.19502
- ],
- [
- 8.2964,
- 47.19526
- ],
- [
- 8.29714,
- 47.24022
- ],
- [
- 8.2641,
- 47.24046
- ],
- [
- 8.26446,
- 47.26297
- ],
- [
- 8.23141,
- 47.26316
- ],
- [
- 8.23075,
- 47.21822
- ],
- [
- 8.09886,
- 47.21912
- ],
- [
- 8.09874,
- 47.24135
- ],
- [
- 8.066,
- 47.24176
- ],
- [
- 8.06552,
- 47.2192
- ],
- [
- 7.99993,
- 47.21952
- ],
- [
- 8.00003,
- 47.26433
- ],
- [
- 7.96735,
- 47.26462
- ],
- [
- 7.96675,
- 47.21961
- ],
- [
- 7.80153,
- 47.22029
- ],
- [
- 7.80244,
- 47.28791
- ],
- [
- 7.83518,
- 47.28772
- ],
- [
- 7.83543,
- 47.31017
- ],
- [
- 7.86837,
- 47.31017
- ],
- [
- 7.86885,
- 47.35542
- ],
- [
- 8.00097,
- 47.3543
- ],
- [
- 8.00156,
- 47.39928
- ],
- [
- 7.9353,
- 47.39976
- ],
- [
- 7.93607,
- 47.46716
- ],
- [
- 7.90278,
- 47.46729
- ],
- [
- 7.90303,
- 47.48981
- ],
- [
- 7.86987,
- 47.48998
- ],
- [
- 7.86993,
- 47.5125
- ],
- [
- 7.83689,
- 47.51258
- ],
- [
- 7.83665,
- 47.4901
- ],
- [
- 7.77027,
- 47.49026
- ],
- [
- 7.77045,
- 47.51274
- ],
- [
- 7.70452,
- 47.51307
- ],
- [
- 7.70438,
- 47.55794
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "AGIS OF2017"
- },
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2017",
- "id": "Aargau-AGIS-2017",
- "license_url": "https://wiki.openstreetmap.org/wiki/Switzerland/AGIS",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "Kanton Aargau 25cm (AGIS 2017)",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2017",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/AGIS2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.70438,
- 47.55794
- ],
- [
- 7.77076,
- 47.55772
- ],
- [
- 7.77103,
- 47.58025
- ],
- [
- 7.80408,
- 47.58017
- ],
- [
- 7.80433,
- 47.60248
- ],
- [
- 7.93713,
- 47.60217
- ],
- [
- 7.93703,
- 47.57962
- ],
- [
- 8.00374,
- 47.57917
- ],
- [
- 8.00338,
- 47.55687
- ],
- [
- 8.0364,
- 47.55665
- ],
- [
- 8.03681,
- 47.57928
- ],
- [
- 8.10313,
- 47.57881
- ],
- [
- 8.10387,
- 47.60112
- ],
- [
- 8.17011,
- 47.60086
- ],
- [
- 8.17036,
- 47.6235
- ],
- [
- 8.30311,
- 47.62235
- ],
- [
- 8.30305,
- 47.59988
- ],
- [
- 8.3362,
- 47.59927
- ],
- [
- 8.33585,
- 47.5771
- ],
- [
- 8.36913,
- 47.57694
- ],
- [
- 8.36943,
- 47.59931
- ],
- [
- 8.43564,
- 47.59877
- ],
- [
- 8.43454,
- 47.53133
- ],
- [
- 8.40144,
- 47.53162
- ],
- [
- 8.40096,
- 47.50926
- ],
- [
- 8.3678,
- 47.50959
- ],
- [
- 8.3675,
- 47.48698
- ],
- [
- 8.40042,
- 47.48666
- ],
- [
- 8.39939,
- 47.41929
- ],
- [
- 8.46558,
- 47.4187
- ],
- [
- 8.46515,
- 47.39647
- ],
- [
- 8.43206,
- 47.39654
- ],
- [
- 8.43125,
- 47.3516
- ],
- [
- 8.46434,
- 47.35128
- ],
- [
- 8.46327,
- 47.28387
- ],
- [
- 8.42997,
- 47.28421
- ],
- [
- 8.42714,
- 47.12676
- ],
- [
- 8.3293,
- 47.12753
- ],
- [
- 8.32937,
- 47.13007
- ],
- [
- 8.32833,
- 47.13007
- ],
- [
- 8.3285,
- 47.14529
- ],
- [
- 8.3294,
- 47.19502
- ],
- [
- 8.2964,
- 47.19526
- ],
- [
- 8.29714,
- 47.24022
- ],
- [
- 8.2641,
- 47.24046
- ],
- [
- 8.26446,
- 47.26297
- ],
- [
- 8.23141,
- 47.26316
- ],
- [
- 8.23075,
- 47.21822
- ],
- [
- 8.09886,
- 47.21912
- ],
- [
- 8.09874,
- 47.24135
- ],
- [
- 8.066,
- 47.24176
- ],
- [
- 8.06552,
- 47.2192
- ],
- [
- 7.99993,
- 47.21952
- ],
- [
- 8.00003,
- 47.26433
- ],
- [
- 7.96735,
- 47.26462
- ],
- [
- 7.96675,
- 47.21961
- ],
- [
- 7.80153,
- 47.22029
- ],
- [
- 7.80244,
- 47.28791
- ],
- [
- 7.83518,
- 47.28772
- ],
- [
- 7.83543,
- 47.31017
- ],
- [
- 7.86837,
- 47.31017
- ],
- [
- 7.86885,
- 47.35542
- ],
- [
- 8.00097,
- 47.3543
- ],
- [
- 8.00156,
- 47.39928
- ],
- [
- 7.9353,
- 47.39976
- ],
- [
- 7.93607,
- 47.46716
- ],
- [
- 7.90278,
- 47.46729
- ],
- [
- 7.90303,
- 47.48981
- ],
- [
- 7.86987,
- 47.48998
- ],
- [
- 7.86993,
- 47.5125
- ],
- [
- 7.83689,
- 47.51258
- ],
- [
- 7.83665,
- 47.4901
- ],
- [
- 7.77027,
- 47.49026
- ],
- [
- 7.77045,
- 47.51274
- ],
- [
- 7.70452,
- 47.51307
- ],
- [
- 7.70438,
- 47.55794
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "AGIS OF2019"
- },
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2019",
- "id": "Aargau-AGIS-2019",
- "license_url": "https://wiki.openstreetmap.org/wiki/Switzerland/AGIS",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "Kanton Aargau 25cm (AGIS 2019)",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2019",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/AGIS2019/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.70438,
- 47.55794
- ],
- [
- 7.77076,
- 47.55772
- ],
- [
- 7.77103,
- 47.58025
- ],
- [
- 7.80408,
- 47.58017
- ],
- [
- 7.80433,
- 47.60248
- ],
- [
- 7.93713,
- 47.60217
- ],
- [
- 7.93703,
- 47.57962
- ],
- [
- 8.00374,
- 47.57917
- ],
- [
- 8.00338,
- 47.55687
- ],
- [
- 8.0364,
- 47.55665
- ],
- [
- 8.03681,
- 47.57928
- ],
- [
- 8.10313,
- 47.57881
- ],
- [
- 8.10387,
- 47.60112
- ],
- [
- 8.17011,
- 47.60086
- ],
- [
- 8.17036,
- 47.6235
- ],
- [
- 8.30311,
- 47.62235
- ],
- [
- 8.30305,
- 47.59988
- ],
- [
- 8.3362,
- 47.59927
- ],
- [
- 8.33585,
- 47.5771
- ],
- [
- 8.36913,
- 47.57694
- ],
- [
- 8.36943,
- 47.59931
- ],
- [
- 8.43564,
- 47.59877
- ],
- [
- 8.43454,
- 47.53133
- ],
- [
- 8.40144,
- 47.53162
- ],
- [
- 8.40096,
- 47.50926
- ],
- [
- 8.3678,
- 47.50959
- ],
- [
- 8.3675,
- 47.48698
- ],
- [
- 8.40042,
- 47.48666
- ],
- [
- 8.39939,
- 47.41929
- ],
- [
- 8.46558,
- 47.4187
- ],
- [
- 8.46515,
- 47.39647
- ],
- [
- 8.43206,
- 47.39654
- ],
- [
- 8.43125,
- 47.3516
- ],
- [
- 8.46434,
- 47.35128
- ],
- [
- 8.46327,
- 47.28387
- ],
- [
- 8.42997,
- 47.28421
- ],
- [
- 8.42714,
- 47.12676
- ],
- [
- 8.3293,
- 47.12753
- ],
- [
- 8.32937,
- 47.13007
- ],
- [
- 8.32833,
- 47.13007
- ],
- [
- 8.3285,
- 47.14529
- ],
- [
- 8.3294,
- 47.19502
- ],
- [
- 8.2964,
- 47.19526
- ],
- [
- 8.29714,
- 47.24022
- ],
- [
- 8.2641,
- 47.24046
- ],
- [
- 8.26446,
- 47.26297
- ],
- [
- 8.23141,
- 47.26316
- ],
- [
- 8.23075,
- 47.21822
- ],
- [
- 8.09886,
- 47.21912
- ],
- [
- 8.09874,
- 47.24135
- ],
- [
- 8.066,
- 47.24176
- ],
- [
- 8.06552,
- 47.2192
- ],
- [
- 7.99993,
- 47.21952
- ],
- [
- 8.00003,
- 47.26433
- ],
- [
- 7.96735,
- 47.26462
- ],
- [
- 7.96675,
- 47.21961
- ],
- [
- 7.80153,
- 47.22029
- ],
- [
- 7.80244,
- 47.28791
- ],
- [
- 7.83518,
- 47.28772
- ],
- [
- 7.83543,
- 47.31017
- ],
- [
- 7.86837,
- 47.31017
- ],
- [
- 7.86885,
- 47.35542
- ],
- [
- 8.00097,
- 47.3543
- ],
- [
- 8.00156,
- 47.39928
- ],
- [
- 7.9353,
- 47.39976
- ],
- [
- 7.93607,
- 47.46716
- ],
- [
- 7.90278,
- 47.46729
- ],
- [
- 7.90303,
- 47.48981
- ],
- [
- 7.86987,
- 47.48998
- ],
- [
- 7.86993,
- 47.5125
- ],
- [
- 7.83689,
- 47.51258
- ],
- [
- 7.83665,
- 47.4901
- ],
- [
- 7.77027,
- 47.49026
- ],
- [
- 7.77045,
- 47.51274
- ],
- [
- 7.70452,
- 47.51307
- ],
- [
- 7.70438,
- 47.55794
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "AGIS 2014 50cm DTM/Hillshade"
- },
- "best": true,
- "category": "elevation",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "id": "Aargau-AGIS-2014-Hillshade",
- "license_url": "https://wiki.openstreetmap.org/wiki/Switzerland/AGIS",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "Kanton Aargau 50cm DTM/Hillshade",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2014",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/AGIS2014HILLSHADE/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.37028,
- 47.41368
- ],
- [
- 7.35758,
- 47.41508
- ],
- [
- 7.35792,
- 47.41827
- ],
- [
- 7.35354,
- 47.41961
- ],
- [
- 7.34488,
- 47.42402
- ],
- [
- 7.33973,
- 47.42971
- ],
- [
- 7.33269,
- 47.43024
- ],
- [
- 7.32685,
- 47.43192
- ],
- [
- 7.32528,
- 47.43489
- ],
- [
- 7.3305,
- 47.44176
- ],
- [
- 7.33899,
- 47.44109
- ],
- [
- 7.34496,
- 47.43608
- ],
- [
- 7.35266,
- 47.43436
- ],
- [
- 7.3812,
- 47.43208
- ],
- [
- 7.37599,
- 47.41431
- ],
- [
- 7.37815,
- 47.414
- ],
- [
- 7.38204,
- 47.41331
- ],
- [
- 7.38839,
- 47.41398
- ],
- [
- 7.41371,
- 47.41093
- ],
- [
- 7.42074,
- 47.4111
- ],
- [
- 7.42748,
- 47.41448
- ],
- [
- 7.43811,
- 47.41274
- ],
- [
- 7.4484,
- 47.41507
- ],
- [
- 7.45558,
- 47.42792
- ],
- [
- 7.45062,
- 47.43534
- ],
- [
- 7.43784,
- 47.44632
- ],
- [
- 7.42542,
- 47.44328
- ],
- [
- 7.4209,
- 47.44594
- ],
- [
- 7.42242,
- 47.45072
- ],
- [
- 7.4288,
- 47.45388
- ],
- [
- 7.43003,
- 47.45949
- ],
- [
- 7.44577,
- 47.46197
- ],
- [
- 7.44717,
- 47.45696
- ],
- [
- 7.45651,
- 47.44926
- ],
- [
- 7.49236,
- 47.45897
- ],
- [
- 7.53068,
- 47.46119
- ],
- [
- 7.52745,
- 47.47391
- ],
- [
- 7.53633,
- 47.48383
- ],
- [
- 7.53623,
- 47.49105
- ],
- [
- 7.5326,
- 47.49097
- ],
- [
- 7.53179,
- 47.4974
- ],
- [
- 7.52004,
- 47.49678
- ],
- [
- 7.51223,
- 47.49892
- ],
- [
- 7.50935,
- 47.50888
- ],
- [
- 7.49908,
- 47.51628
- ],
- [
- 7.49787,
- 47.52125
- ],
- [
- 7.50228,
- 47.51491
- ],
- [
- 7.51746,
- 47.51728
- ],
- [
- 7.5222,
- 47.51409
- ],
- [
- 7.53096,
- 47.52905
- ],
- [
- 7.51935,
- 47.53472
- ],
- [
- 7.51075,
- 47.52899
- ],
- [
- 7.5023,
- 47.5284
- ],
- [
- 7.49804,
- 47.53615
- ],
- [
- 7.50545,
- 47.54438
- ],
- [
- 7.51676,
- 47.54541
- ],
- [
- 7.52732,
- 47.55278
- ],
- [
- 7.55466,
- 47.56437
- ],
- [
- 7.56458,
- 47.55704
- ],
- [
- 7.56124,
- 47.55172
- ],
- [
- 7.55875,
- 47.55235
- ],
- [
- 7.55588,
- 47.54434
- ],
- [
- 7.56479,
- 47.54569
- ],
- [
- 7.58726,
- 47.5419
- ],
- [
- 7.58269,
- 47.53247
- ],
- [
- 7.58948,
- 47.52792
- ],
- [
- 7.59025,
- 47.51979
- ],
- [
- 7.59478,
- 47.51929
- ],
- [
- 7.61378,
- 47.53925
- ],
- [
- 7.6223,
- 47.53977
- ],
- [
- 7.62285,
- 47.55004
- ],
- [
- 7.61774,
- 47.55437
- ],
- [
- 7.61762,
- 47.55865
- ],
- [
- 7.63273,
- 47.56149
- ],
- [
- 7.63997,
- 47.55816
- ],
- [
- 7.649,
- 47.5483
- ],
- [
- 7.66131,
- 47.54483
- ],
- [
- 7.66586,
- 47.53746
- ],
- [
- 7.67467,
- 47.53375
- ],
- [
- 7.69494,
- 47.5325
- ],
- [
- 7.71347,
- 47.53978
- ],
- [
- 7.71596,
- 47.53582
- ],
- [
- 7.72362,
- 47.53675
- ],
- [
- 7.72716,
- 47.53293
- ],
- [
- 7.73322,
- 47.53275
- ],
- [
- 7.73797,
- 47.52732
- ],
- [
- 7.74902,
- 47.52498
- ],
- [
- 7.75786,
- 47.52605
- ],
- [
- 7.78763,
- 47.52012
- ],
- [
- 7.79014,
- 47.51864
- ],
- [
- 7.78887,
- 47.50683
- ],
- [
- 7.7928,
- 47.50068
- ],
- [
- 7.78663,
- 47.49312
- ],
- [
- 7.79889,
- 47.49565
- ],
- [
- 7.79816,
- 47.4994
- ],
- [
- 7.7994,
- 47.49748
- ],
- [
- 7.80742,
- 47.49714
- ],
- [
- 7.81471,
- 47.5048
- ],
- [
- 7.83198,
- 47.51474
- ],
- [
- 7.83321,
- 47.53382
- ],
- [
- 7.84653,
- 47.53266
- ],
- [
- 7.85233,
- 47.53524
- ],
- [
- 7.86257,
- 47.52692
- ],
- [
- 7.86396,
- 47.51931
- ],
- [
- 7.87666,
- 47.52269
- ],
- [
- 7.87567,
- 47.51319
- ],
- [
- 7.89399,
- 47.50606
- ],
- [
- 7.90477,
- 47.49218
- ],
- [
- 7.90482,
- 47.48491
- ],
- [
- 7.93329,
- 47.48141
- ],
- [
- 7.94702,
- 47.48489
- ],
- [
- 7.94003,
- 47.46202
- ],
- [
- 7.94885,
- 47.46378
- ],
- [
- 7.95761,
- 47.45881
- ],
- [
- 7.95785,
- 47.45128
- ],
- [
- 7.94678,
- 47.44319
- ],
- [
- 7.95003,
- 47.43172
- ],
- [
- 7.96183,
- 47.42183
- ],
- [
- 7.95657,
- 47.41968
- ],
- [
- 7.95504,
- 47.41561
- ],
- [
- 7.94839,
- 47.41627
- ],
- [
- 7.93493,
- 47.41177
- ],
- [
- 7.93672,
- 47.40806
- ],
- [
- 7.93266,
- 47.40527
- ],
- [
- 7.90974,
- 47.39852
- ],
- [
- 7.89022,
- 47.40714
- ],
- [
- 7.88333,
- 47.4061
- ],
- [
- 7.88344,
- 47.4012
- ],
- [
- 7.8777,
- 47.40126
- ],
- [
- 7.86914,
- 47.39551
- ],
- [
- 7.87943,
- 47.38799
- ],
- [
- 7.87881,
- 47.38351
- ],
- [
- 7.86265,
- 47.38198
- ],
- [
- 7.84012,
- 47.37476
- ],
- [
- 7.83055,
- 47.36512
- ],
- [
- 7.80217,
- 47.3611
- ],
- [
- 7.79637,
- 47.35347
- ],
- [
- 7.79356,
- 47.33905
- ],
- [
- 7.78529,
- 47.33788
- ],
- [
- 7.76896,
- 47.33891
- ],
- [
- 7.76642,
- 47.34273
- ],
- [
- 7.75152,
- 47.34433
- ],
- [
- 7.73415,
- 47.35776
- ],
- [
- 7.72791,
- 47.36886
- ],
- [
- 7.70195,
- 47.37245
- ],
- [
- 7.6442,
- 47.36721
- ],
- [
- 7.64176,
- 47.38047
- ],
- [
- 7.63558,
- 47.38059
- ],
- [
- 7.63332,
- 47.38291
- ],
- [
- 7.63331,
- 47.38534
- ],
- [
- 7.63725,
- 47.38607
- ],
- [
- 7.63272,
- 47.41003
- ],
- [
- 7.66405,
- 47.41002
- ],
- [
- 7.6798,
- 47.41751
- ],
- [
- 7.68658,
- 47.43366
- ],
- [
- 7.68297,
- 47.43872
- ],
- [
- 7.68485,
- 47.44784
- ],
- [
- 7.69227,
- 47.45421
- ],
- [
- 7.69883,
- 47.45586
- ],
- [
- 7.69993,
- 47.46191
- ],
- [
- 7.70988,
- 47.46938
- ],
- [
- 7.69976,
- 47.48063
- ],
- [
- 7.66833,
- 47.48635
- ],
- [
- 7.66612,
- 47.49687
- ],
- [
- 7.65217,
- 47.49581
- ],
- [
- 7.64865,
- 47.49183
- ],
- [
- 7.65539,
- 47.49021
- ],
- [
- 7.65051,
- 47.48826
- ],
- [
- 7.65593,
- 47.48739
- ],
- [
- 7.64442,
- 47.48564
- ],
- [
- 7.64097,
- 47.48273
- ],
- [
- 7.6073,
- 47.4894
- ],
- [
- 7.60885,
- 47.48353
- ],
- [
- 7.60563,
- 47.47936
- ],
- [
- 7.60815,
- 47.47521
- ],
- [
- 7.60449,
- 47.47045
- ],
- [
- 7.61887,
- 47.46745
- ],
- [
- 7.62607,
- 47.46291
- ],
- [
- 7.62217,
- 47.46195
- ],
- [
- 7.61646,
- 47.44523
- ],
- [
- 7.6158,
- 47.43275
- ],
- [
- 7.59207,
- 47.43271
- ],
- [
- 7.58121,
- 47.42878
- ],
- [
- 7.57842,
- 47.43491
- ],
- [
- 7.5689,
- 47.4369
- ],
- [
- 7.5683,
- 47.42233
- ],
- [
- 7.58074,
- 47.4147
- ],
- [
- 7.52524,
- 47.41163
- ],
- [
- 7.53117,
- 47.40353
- ],
- [
- 7.51862,
- 47.38822
- ],
- [
- 7.5113,
- 47.38974
- ],
- [
- 7.50226,
- 47.38481
- ],
- [
- 7.49233,
- 47.38523
- ],
- [
- 7.47841,
- 47.39056
- ],
- [
- 7.47747,
- 47.40128
- ],
- [
- 7.46448,
- 47.40251
- ],
- [
- 7.46092,
- 47.40068
- ],
- [
- 7.45002,
- 47.40393
- ],
- [
- 7.44951,
- 47.39976
- ],
- [
- 7.4434,
- 47.40231
- ],
- [
- 7.44131,
- 47.40018
- ],
- [
- 7.44357,
- 47.3889
- ],
- [
- 7.43732,
- 47.38089
- ],
- [
- 7.41169,
- 47.38057
- ],
- [
- 7.41628,
- 47.38479
- ],
- [
- 7.41449,
- 47.3943
- ],
- [
- 7.39894,
- 47.39684
- ],
- [
- 7.39592,
- 47.40338
- ],
- [
- 7.38869,
- 47.40302
- ],
- [
- 7.38405,
- 47.41236
- ],
- [
- 7.37968,
- 47.41281
- ],
- [
- 7.37584,
- 47.41401
- ],
- [
- 7.37028,
- 47.41368
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geodaten des Kantons Basel-Landschaft 2015",
- "url": "https://www.geo.bl.ch/fileadmin/user_upload/Geodaten/Nutzungsbedingungen_GBD_BL_V3p2.pdf"
- },
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2015",
- "id": "Basel-Landschaft-2015",
- "max_zoom": 21,
- "min_zoom": 18,
- "name": "Kanton Basel-Landschaft 10cm (2015)",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2015",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/KTBASELLANDSCHAFT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.492,
- 47.4817
- ],
- [
- 7.492,
- 47.6342
- ],
- [
- 7.784,
- 47.6342
- ],
- [
- 7.784,
- 47.4817
- ],
- [
- 7.492,
- 47.4817
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Basel-Stadt OF 2015"
- },
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2015",
- "id": "KTBASELSTADT2015",
- "max_zoom": 21,
- "min_zoom": 8,
- "name": "Kanton Basel-Stadt 2015",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2015",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/KTBASELSTADT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.38726,
- 47.10908
- ],
- [
- 8.38983,
- 47.25303
- ],
- [
- 8.42944,
- 47.25265
- ],
- [
- 8.42894,
- 47.22567
- ],
- [
- 8.60057,
- 47.22407
- ],
- [
- 8.60037,
- 47.21507
- ],
- [
- 8.61357,
- 47.21495
- ],
- [
- 8.61338,
- 47.20594
- ],
- [
- 8.62658,
- 47.20582
- ],
- [
- 8.62618,
- 47.18783
- ],
- [
- 8.63934,
- 47.18769
- ],
- [
- 8.63914,
- 47.1787
- ],
- [
- 8.66555,
- 47.17844
- ],
- [
- 8.66534,
- 47.16943
- ],
- [
- 8.7049,
- 47.16899
- ],
- [
- 8.70427,
- 47.14203
- ],
- [
- 8.69105,
- 47.14215
- ],
- [
- 8.69046,
- 47.11516
- ],
- [
- 8.67731,
- 47.1153
- ],
- [
- 8.67706,
- 47.10634
- ],
- [
- 8.66389,
- 47.10647
- ],
- [
- 8.66371,
- 47.0975
- ],
- [
- 8.65052,
- 47.09761
- ],
- [
- 8.65031,
- 47.08863
- ],
- [
- 8.59764,
- 47.08915
- ],
- [
- 8.59746,
- 47.08015
- ],
- [
- 8.49204,
- 47.0812
- ],
- [
- 8.49245,
- 47.09917
- ],
- [
- 8.43969,
- 47.09967
- ],
- [
- 8.43996,
- 47.10863
- ],
- [
- 8.38726,
- 47.10908
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "GIS Kanton Zug"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "CRS:84",
- "EPSG:21781",
- "EPSG:2056"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "description": "Ausdehnung: ganzer Kanton Aufloesung: 10cm per Pixel Bildflug: 1.4.2011",
- "end_date": "2011",
- "id": "Zug-2011",
- "license_url": "https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms",
- "min_zoom": 10,
- "name": "Kanton Zug 2011",
- "privacy_policy_url": "https://www.zg.ch/datenschutzerklaerung",
- "start_date": "2011",
- "type": "wms",
- "url": "https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2011_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.41093,
- 47.16521
- ],
- [
- 8.40759,
- 47.16918
- ],
- [
- 8.40754,
- 47.23725
- ],
- [
- 8.419,
- 47.23722
- ],
- [
- 8.42336,
- 47.22958
- ],
- [
- 8.43891,
- 47.22945
- ],
- [
- 8.48056,
- 47.2125
- ],
- [
- 8.5294,
- 47.22688
- ],
- [
- 8.57951,
- 47.22275
- ],
- [
- 8.57946,
- 47.17083
- ],
- [
- 8.57535,
- 47.14926
- ],
- [
- 8.56428,
- 47.14944
- ],
- [
- 8.53594,
- 47.15205
- ],
- [
- 8.50658,
- 47.15268
- ],
- [
- 8.50686,
- 47.162
- ],
- [
- 8.44723,
- 47.16256
- ],
- [
- 8.41093,
- 47.16521
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "GIS Kanton Zug"
- },
- "available_projections": [
- "EPSG:21781",
- "EPSG:2056",
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "description": "Orthofoto fuer den Nordteil des Kantons Zug. Geflogen am 20.04.2016. 10cm Aufloesung per Pixel. Abdeckung: Gemeinden Cham, Steinhausen und Baar, sowie Teile von Zug Befliegung vor Laubaustrieb, ohne Schneeabdeckung.",
- "end_date": "2016",
- "id": "Zug-2016",
- "license_url": "https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms",
- "min_zoom": 10,
- "name": "Kanton Zug Nord 2016",
- "privacy_policy_url": "https://www.zg.ch/datenschutzerklaerung",
- "start_date": "2016",
- "type": "wms",
- "url": "https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2016_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.50052,
- 47.11291
- ],
- [
- 8.49638,
- 47.11761
- ],
- [
- 8.49451,
- 47.12364
- ],
- [
- 8.49538,
- 47.12653
- ],
- [
- 8.50462,
- 47.13724
- ],
- [
- 8.50322,
- 47.13933
- ],
- [
- 8.50466,
- 47.14722
- ],
- [
- 8.51099,
- 47.15916
- ],
- [
- 8.56415,
- 47.15299
- ],
- [
- 8.5652,
- 47.14929
- ],
- [
- 8.54924,
- 47.13843
- ],
- [
- 8.55098,
- 47.12132
- ],
- [
- 8.50052,
- 47.11291
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "GIS Kanton Zug"
- },
- "available_projections": [
- "EPSG:21781",
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:2056",
- "CRS:84"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "description": "Orthofoto fuer den Suedteil der Gemeinde Zug. Geflogen per Drohne an mehreren Tagen Anfangs April 2018. 10cm Aufloesung per Pixel. Abdeckung: Suedteil der Gemeinde Zug Befliegung vor Laubaustrieb, ohne Schneeabdeckung.",
- "end_date": "2018",
- "id": "Zug-2018",
- "license_url": "https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms",
- "name": "Kanton Zug Gemeinde Zug Süd 2018",
- "privacy_policy_url": "https://www.zg.ch/datenschutzerklaerung",
- "start_date": "2018",
- "type": "wms",
- "url": "https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2018_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.49387,
- 47.11529
- ],
- [
- 8.5121,
- 47.13373
- ],
- [
- 8.55582,
- 47.129
- ],
- [
- 8.58655,
- 47.07954
- ],
- [
- 8.57399,
- 47.07633
- ],
- [
- 8.51862,
- 47.08507
- ],
- [
- 8.51862,
- 47.08507
- ],
- [
- 8.51839,
- 47.08532
- ],
- [
- 8.49387,
- 47.11529
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "GIS Kanton Zug"
- },
- "available_projections": [
- "EPSG:3857",
- "CRS:84",
- "EPSG:4326",
- "EPSG:21781",
- "EPSG:2056"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "description": "Orthofoto für das Gebiet von Walchwil und Zug (Alpli). Die Befliegung für das genannte Orthofoto fand am 29. März 2019 statt.",
- "end_date": "2019",
- "id": "Zug-2019-wms",
- "license_url": "https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms",
- "min_zoom": 10,
- "name": "Kanton Zug (Walchwil und Zug (Alpli)) 2019",
- "privacy_policy_url": "https://www.zg.ch/datenschutzerklaerung",
- "start_date": "2019",
- "type": "wms",
- "url": "https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2019_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.82526,
- 47.07901
- ],
- [
- 7.28497,
- 46.74221
- ],
- [
- 7.06335,
- 46.27329
- ],
- [
- 8.20129,
- 46.43975
- ],
- [
- 8.44334,
- 46.59001
- ],
- [
- 8.47595,
- 46.76315
- ],
- [
- 8.41244,
- 46.79841
- ],
- [
- 8.13984,
- 46.7869
- ],
- [
- 7.96543,
- 46.80687
- ],
- [
- 7.90089,
- 46.8914
- ],
- [
- 7.97676,
- 47.00414
- ],
- [
- 7.88784,
- 47.05609
- ],
- [
- 7.90363,
- 47.17665
- ],
- [
- 7.81952,
- 47.29413
- ],
- [
- 7.55859,
- 47.33231
- ],
- [
- 7.16583,
- 47.31183
- ],
- [
- 6.82388,
- 47.18131
- ],
- [
- 6.82526,
- 47.07901
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Digitales Oberflächenmodell LIDAR 50cm © Amt für Wald des Kantons Bern"
- },
- "available_projections": [
- "EPSG:21781",
- "EPSG:3857",
- "EPSG:2056",
- "EPSG:4326",
- "EPSG:102100",
- "CRS:84"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2015",
- "id": "Bern-dsm-hillshade-2015",
- "license_url": "http://files.be.ch/bve/agi/geoportal/geo/nutzungsbedingungen/agi_dv_nutzungsbedingungen.pdf",
- "min_zoom": 8,
- "name": "Kanton Bern, Digitales Oberflaechenmodell 50cm, Relief",
- "privacy_policy_url": "http://www.geo.apps.be.ch/de/rechtliches.html",
- "start_date": "2015",
- "type": "wms",
- "url": "https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WMSServer?LAYERS=GEODB.LDOM50CM_LORELIEF_STANDARD&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.82526,
- 47.07901
- ],
- [
- 7.28497,
- 46.74221
- ],
- [
- 7.06335,
- 46.27329
- ],
- [
- 8.20129,
- 46.43975
- ],
- [
- 8.44334,
- 46.59001
- ],
- [
- 8.47595,
- 46.76315
- ],
- [
- 8.41244,
- 46.79841
- ],
- [
- 8.13984,
- 46.7869
- ],
- [
- 7.96543,
- 46.80687
- ],
- [
- 7.90089,
- 46.8914
- ],
- [
- 7.97676,
- 47.00414
- ],
- [
- 7.88784,
- 47.05609
- ],
- [
- 7.90363,
- 47.17665
- ],
- [
- 7.81952,
- 47.29413
- ],
- [
- 7.55859,
- 47.33231
- ],
- [
- 7.16583,
- 47.31183
- ],
- [
- 6.82388,
- 47.18131
- ],
- [
- 6.82526,
- 47.07901
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Digitales Terrainmodell LIDAR 50cm © Amt für Wald des Kantons Bern"
- },
- "available_projections": [
- "EPSG:21781",
- "EPSG:3857",
- "EPSG:2056",
- "EPSG:4326",
- "EPSG:102100",
- "CRS:84"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2015",
- "id": "Bern-dtm-hillshade-2015",
- "license_url": "http://files.be.ch/bve/agi/geoportal/geo/nutzungsbedingungen/agi_dv_nutzungsbedingungen.pdf",
- "min_zoom": 8,
- "name": "Kanton Bern, Digitales Terrainmodell 50cm, Relief",
- "privacy_policy_url": "http://www.geo.apps.be.ch/de/rechtliches.html",
- "start_date": "2015",
- "type": "wms",
- "url": "https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WMSServer?LAYERS=GEODB.LDTM50CM_LTRELIEF_STANDARD&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.6,
- 47.56
- ],
- [
- 8.6,
- 47.52
- ],
- [
- 8.52,
- 47.52
- ],
- [
- 8.52,
- 47.6
- ],
- [
- 8.44,
- 47.6
- ],
- [
- 8.44,
- 47.64
- ],
- [
- 8.36,
- 47.64
- ],
- [
- 8.36,
- 47.72
- ],
- [
- 8.4,
- 47.72
- ],
- [
- 8.4,
- 47.76
- ],
- [
- 8.44,
- 47.76
- ],
- [
- 8.44,
- 47.8
- ],
- [
- 8.52,
- 47.8
- ],
- [
- 8.52,
- 47.84
- ],
- [
- 8.68,
- 47.84
- ],
- [
- 8.68,
- 47.8
- ],
- [
- 8.76,
- 47.8
- ],
- [
- 8.76,
- 47.76
- ],
- [
- 8.88,
- 47.76
- ],
- [
- 8.88,
- 47.72
- ],
- [
- 8.92,
- 47.72
- ],
- [
- 8.92,
- 47.64
- ],
- [
- 8.76,
- 47.64
- ],
- [
- 8.76,
- 47.68
- ],
- [
- 8.68,
- 47.68
- ],
- [
- 8.68,
- 47.64
- ],
- [
- 8.64,
- 47.64
- ],
- [
- 8.64,
- 47.56
- ],
- [
- 8.6,
- 47.56
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Schaffhausen, Relief 2013"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:21781"
- ],
- "best": false,
- "category": "elevation",
- "country_code": "CH",
- "default": false,
- "end_date": "2013",
- "i18n": false,
- "id": "Kanton-Schaffhausen-DSM-2013",
- "license_url": "https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Volkswirtschaftsdepartement/Amt-f-r-Geoinformation-252309-DE.html",
- "min_zoom": 10,
- "name": "Kanton Schaffhausen, Relief 2013",
- "privacy_policy_url": "https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Regierung/Staatskanzlei/Impressum/Datenschutz-1711122-DE.html",
- "start_date": "2013",
- "type": "wms",
- "url": "https://wms.geo.sh.ch/raster?LAYERS=Relief_2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.6,
- 47.56
- ],
- [
- 8.6,
- 47.52
- ],
- [
- 8.52,
- 47.52
- ],
- [
- 8.52,
- 47.6
- ],
- [
- 8.44,
- 47.6
- ],
- [
- 8.44,
- 47.64
- ],
- [
- 8.36,
- 47.64
- ],
- [
- 8.36,
- 47.72
- ],
- [
- 8.4,
- 47.72
- ],
- [
- 8.4,
- 47.76
- ],
- [
- 8.44,
- 47.76
- ],
- [
- 8.44,
- 47.8
- ],
- [
- 8.52,
- 47.8
- ],
- [
- 8.52,
- 47.84
- ],
- [
- 8.68,
- 47.84
- ],
- [
- 8.68,
- 47.8
- ],
- [
- 8.76,
- 47.8
- ],
- [
- 8.76,
- 47.76
- ],
- [
- 8.88,
- 47.76
- ],
- [
- 8.88,
- 47.72
- ],
- [
- 8.92,
- 47.72
- ],
- [
- 8.92,
- 47.64
- ],
- [
- 8.76,
- 47.64
- ],
- [
- 8.76,
- 47.68
- ],
- [
- 8.68,
- 47.68
- ],
- [
- 8.68,
- 47.64
- ],
- [
- 8.64,
- 47.64
- ],
- [
- 8.64,
- 47.56
- ],
- [
- 8.6,
- 47.56
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Schaffhausen, Luftbild 2013"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:21781"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "default": false,
- "end_date": "2013",
- "i18n": false,
- "id": "Kanton-Schaffhausen-Luftbild-2013",
- "license_url": "https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Volkswirtschaftsdepartement/Amt-f-r-Geoinformation-252309-DE.html",
- "min_zoom": 10,
- "name": "Kanton Schaffhausen, Luftbild 2013",
- "privacy_policy_url": "https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Regierung/Staatskanzlei/Impressum/Datenschutz-1711122-DE.html",
- "start_date": "2013",
- "type": "wms",
- "url": "https://wms.geo.sh.ch/raster?LAYERS=Luftbild_2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.48,
- 47.1
- ],
- [
- 7.48,
- 47.06
- ],
- [
- 7.42,
- 47.06
- ],
- [
- 7.42,
- 47.08
- ],
- [
- 7.36,
- 47.08
- ],
- [
- 7.36,
- 47.18
- ],
- [
- 7.34,
- 47.18
- ],
- [
- 7.34,
- 47.2
- ],
- [
- 7.32,
- 47.2
- ],
- [
- 7.32,
- 47.24
- ],
- [
- 7.4,
- 47.24
- ],
- [
- 7.4,
- 47.26
- ],
- [
- 7.42,
- 47.26
- ],
- [
- 7.42,
- 47.28
- ],
- [
- 7.46,
- 47.28
- ],
- [
- 7.46,
- 47.3
- ],
- [
- 7.52,
- 47.3
- ],
- [
- 7.52,
- 47.32
- ],
- [
- 7.54,
- 47.32
- ],
- [
- 7.54,
- 47.34
- ],
- [
- 7.52,
- 47.34
- ],
- [
- 7.52,
- 47.36
- ],
- [
- 7.42,
- 47.36
- ],
- [
- 7.42,
- 47.4
- ],
- [
- 7.36,
- 47.4
- ],
- [
- 7.36,
- 47.44
- ],
- [
- 7.38,
- 47.44
- ],
- [
- 7.38,
- 47.46
- ],
- [
- 7.4,
- 47.46
- ],
- [
- 7.4,
- 47.5
- ],
- [
- 7.42,
- 47.5
- ],
- [
- 7.42,
- 47.52
- ],
- [
- 7.46,
- 47.52
- ],
- [
- 7.46,
- 47.5
- ],
- [
- 7.5,
- 47.5
- ],
- [
- 7.5,
- 47.52
- ],
- [
- 7.54,
- 47.52
- ],
- [
- 7.54,
- 47.5
- ],
- [
- 7.56,
- 47.5
- ],
- [
- 7.56,
- 47.48
- ],
- [
- 7.54,
- 47.48
- ],
- [
- 7.54,
- 47.44
- ],
- [
- 7.48,
- 47.44
- ],
- [
- 7.48,
- 47.42
- ],
- [
- 7.5,
- 47.42
- ],
- [
- 7.5,
- 47.4
- ],
- [
- 7.52,
- 47.4
- ],
- [
- 7.52,
- 47.42
- ],
- [
- 7.56,
- 47.42
- ],
- [
- 7.56,
- 47.46
- ],
- [
- 7.58,
- 47.46
- ],
- [
- 7.58,
- 47.44
- ],
- [
- 7.6,
- 47.44
- ],
- [
- 7.6,
- 47.5
- ],
- [
- 7.64,
- 47.5
- ],
- [
- 7.64,
- 47.52
- ],
- [
- 7.68,
- 47.52
- ],
- [
- 7.68,
- 47.5
- ],
- [
- 7.72,
- 47.5
- ],
- [
- 7.72,
- 47.44
- ],
- [
- 7.7,
- 47.44
- ],
- [
- 7.7,
- 47.4
- ],
- [
- 7.66,
- 47.4
- ],
- [
- 7.66,
- 47.38
- ],
- [
- 7.74,
- 47.38
- ],
- [
- 7.74,
- 47.36
- ],
- [
- 7.78,
- 47.36
- ],
- [
- 7.78,
- 47.38
- ],
- [
- 7.84,
- 47.38
- ],
- [
- 7.84,
- 47.4
- ],
- [
- 7.86,
- 47.4
- ],
- [
- 7.86,
- 47.42
- ],
- [
- 7.94,
- 47.42
- ],
- [
- 7.94,
- 47.48
- ],
- [
- 7.98,
- 47.48
- ],
- [
- 7.98,
- 47.46
- ],
- [
- 8.0,
- 47.46
- ],
- [
- 8.0,
- 47.42
- ],
- [
- 8.04,
- 47.42
- ],
- [
- 8.04,
- 47.34
- ],
- [
- 8.02,
- 47.34
- ],
- [
- 8.02,
- 47.32
- ],
- [
- 7.98,
- 47.32
- ],
- [
- 7.98,
- 47.3
- ],
- [
- 7.94,
- 47.3
- ],
- [
- 7.94,
- 47.32
- ],
- [
- 7.92,
- 47.32
- ],
- [
- 7.92,
- 47.3
- ],
- [
- 7.88,
- 47.3
- ],
- [
- 7.88,
- 47.28
- ],
- [
- 7.86,
- 47.28
- ],
- [
- 7.86,
- 47.26
- ],
- [
- 7.84,
- 47.26
- ],
- [
- 7.84,
- 47.24
- ],
- [
- 7.72,
- 47.24
- ],
- [
- 7.72,
- 47.26
- ],
- [
- 7.68,
- 47.26
- ],
- [
- 7.68,
- 47.28
- ],
- [
- 7.66,
- 47.28
- ],
- [
- 7.66,
- 47.26
- ],
- [
- 7.62,
- 47.26
- ],
- [
- 7.62,
- 47.24
- ],
- [
- 7.66,
- 47.24
- ],
- [
- 7.66,
- 47.22
- ],
- [
- 7.68,
- 47.22
- ],
- [
- 7.68,
- 47.2
- ],
- [
- 7.7,
- 47.2
- ],
- [
- 7.7,
- 47.18
- ],
- [
- 7.72,
- 47.18
- ],
- [
- 7.72,
- 47.14
- ],
- [
- 7.54,
- 47.14
- ],
- [
- 7.54,
- 47.12
- ],
- [
- 7.52,
- 47.12
- ],
- [
- 7.52,
- 47.1
- ],
- [
- 7.48,
- 47.1
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "DOM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:3857",
- "EPSG:21781",
- "CRS:84"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2014",
- "id": "Solothurn-sogis2014-dom-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, DOM Relief 2014 50cm",
- "privacy_policy_url": "https://www.so.ch/rechtliches/",
- "start_date": "2014",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dom_relief&FORMAT=image/jpeg&CRS={proj}&STYLES=&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.6909,
- 47.56247
- ],
- [
- 7.69077,
- 47.54008
- ],
- [
- 7.67786,
- 47.54008
- ],
- [
- 7.67788,
- 47.54458
- ],
- [
- 7.67138,
- 47.5446
- ],
- [
- 7.67142,
- 47.54897
- ],
- [
- 7.66481,
- 47.54906
- ],
- [
- 7.66477,
- 47.55349
- ],
- [
- 7.65816,
- 47.55364
- ],
- [
- 7.65824,
- 47.55801
- ],
- [
- 7.65146,
- 47.5581
- ],
- [
- 7.65146,
- 47.56258
- ],
- [
- 7.64503,
- 47.56264
- ],
- [
- 7.64498,
- 47.56707
- ],
- [
- 7.61121,
- 47.56716
- ],
- [
- 7.61112,
- 47.5627
- ],
- [
- 7.6046,
- 47.56264
- ],
- [
- 7.60464,
- 47.549
- ],
- [
- 7.61099,
- 47.54886
- ],
- [
- 7.61117,
- 47.54468
- ],
- [
- 7.60456,
- 47.54468
- ],
- [
- 7.60447,
- 47.54019
- ],
- [
- 7.59833,
- 47.54017
- ],
- [
- 7.59846,
- 47.54917
- ],
- [
- 7.57859,
- 47.54915
- ],
- [
- 7.57855,
- 47.55366
- ],
- [
- 7.57181,
- 47.55369
- ],
- [
- 7.57185,
- 47.56719
- ],
- [
- 7.56516,
- 47.56719
- ],
- [
- 7.5652,
- 47.57173
- ],
- [
- 7.54487,
- 47.57173
- ],
- [
- 7.54478,
- 47.56728
- ],
- [
- 7.53808,
- 47.56725
- ],
- [
- 7.53812,
- 47.56276
- ],
- [
- 7.52487,
- 47.56274
- ],
- [
- 7.52491,
- 47.55827
- ],
- [
- 7.5182,
- 47.55825
- ],
- [
- 7.51812,
- 47.55385
- ],
- [
- 7.49821,
- 47.55381
- ],
- [
- 7.49817,
- 47.54933
- ],
- [
- 7.49154,
- 47.54935
- ],
- [
- 7.49158,
- 47.54054
- ],
- [
- 7.48489,
- 47.54054
- ],
- [
- 7.48487,
- 47.53123
- ],
- [
- 7.49169,
- 47.53123
- ],
- [
- 7.49171,
- 47.52692
- ],
- [
- 7.48497,
- 47.52692
- ],
- [
- 7.48495,
- 47.51771
- ],
- [
- 7.4915,
- 47.51769
- ],
- [
- 7.4915,
- 47.50868
- ],
- [
- 7.49808,
- 47.50865
- ],
- [
- 7.4981,
- 47.49083
- ],
- [
- 7.49154,
- 47.49085
- ],
- [
- 7.49154,
- 47.48635
- ],
- [
- 7.4848,
- 47.48635
- ],
- [
- 7.4848,
- 47.48189
- ],
- [
- 7.47178,
- 47.48192
- ],
- [
- 7.47173,
- 47.48638
- ],
- [
- 7.46523,
- 47.48641
- ],
- [
- 7.46523,
- 47.49089
- ],
- [
- 7.45225,
- 47.49096
- ],
- [
- 7.45216,
- 47.49528
- ],
- [
- 7.4456,
- 47.49546
- ],
- [
- 7.44551,
- 47.49995
- ],
- [
- 7.42519,
- 47.50003
- ],
- [
- 7.42511,
- 47.49109
- ],
- [
- 7.41845,
- 47.49098
- ],
- [
- 7.41843,
- 47.47707
- ],
- [
- 7.43822,
- 47.4771
- ],
- [
- 7.43834,
- 47.47263
- ],
- [
- 7.44491,
- 47.47263
- ],
- [
- 7.44495,
- 47.46849
- ],
- [
- 7.42521,
- 47.46849
- ],
- [
- 7.42521,
- 47.46396
- ],
- [
- 7.4186,
- 47.46399
- ],
- [
- 7.41848,
- 47.45496
- ],
- [
- 7.41204,
- 47.45491
- ],
- [
- 7.41187,
- 47.44594
- ],
- [
- 7.40517,
- 47.446
- ],
- [
- 7.40513,
- 47.44144
- ],
- [
- 7.39873,
- 47.44147
- ],
- [
- 7.39856,
- 47.43697
- ],
- [
- 7.38586,
- 47.43688
- ],
- [
- 7.38577,
- 47.44135
- ],
- [
- 7.35256,
- 47.44144
- ],
- [
- 7.35256,
- 47.44588
- ],
- [
- 7.33943,
- 47.44594
- ],
- [
- 7.33943,
- 47.4505
- ],
- [
- 7.32582,
- 47.45041
- ],
- [
- 7.32569,
- 47.44585
- ],
- [
- 7.31921,
- 47.44585
- ],
- [
- 7.31908,
- 47.44144
- ],
- [
- 7.31243,
- 47.44135
- ],
- [
- 7.31243,
- 47.43212
- ],
- [
- 7.31904,
- 47.43209
- ],
- [
- 7.31904,
- 47.42318
- ],
- [
- 7.3323,
- 47.42309
- ],
- [
- 7.3323,
- 47.41859
- ],
- [
- 7.33887,
- 47.41856
- ],
- [
- 7.33895,
- 47.41415
- ],
- [
- 7.34556,
- 47.41409
- ],
- [
- 7.34569,
- 47.40959
- ],
- [
- 7.35882,
- 47.40962
- ],
- [
- 7.35891,
- 47.40518
- ],
- [
- 7.37856,
- 47.40512
- ],
- [
- 7.37856,
- 47.39617
- ],
- [
- 7.392,
- 47.39611
- ],
- [
- 7.392,
- 47.39167
- ],
- [
- 7.39856,
- 47.39161
- ],
- [
- 7.39865,
- 47.38713
- ],
- [
- 7.40517,
- 47.38713
- ],
- [
- 7.40517,
- 47.38298
- ],
- [
- 7.39865,
- 47.3831
- ],
- [
- 7.39861,
- 47.37819
- ],
- [
- 7.40513,
- 47.37813
- ],
- [
- 7.40517,
- 47.37371
- ],
- [
- 7.45143,
- 47.37371
- ],
- [
- 7.45156,
- 47.36906
- ],
- [
- 7.5177,
- 47.36918
- ],
- [
- 7.5177,
- 47.36022
- ],
- [
- 7.531,
- 47.36016
- ],
- [
- 7.531,
- 47.34673
- ],
- [
- 7.54422,
- 47.34662
- ],
- [
- 7.54417,
- 47.3422
- ],
- [
- 7.55078,
- 47.34214
- ],
- [
- 7.55078,
- 47.33775
- ],
- [
- 7.55761,
- 47.33776
- ],
- [
- 7.55763,
- 47.33327
- ],
- [
- 7.56423,
- 47.33325
- ],
- [
- 7.56422,
- 47.32874
- ],
- [
- 7.5774,
- 47.32872
- ],
- [
- 7.57744,
- 47.32421
- ],
- [
- 7.59086,
- 47.32418
- ],
- [
- 7.59088,
- 47.32871
- ],
- [
- 7.61739,
- 47.32858
- ],
- [
- 7.61743,
- 47.33312
- ],
- [
- 7.68961,
- 47.33295
- ],
- [
- 7.68961,
- 47.3285
- ],
- [
- 7.69627,
- 47.32835
- ],
- [
- 7.69644,
- 47.32393
- ],
- [
- 7.7165,
- 47.3238
- ],
- [
- 7.71661,
- 47.32835
- ],
- [
- 7.72322,
- 47.32838
- ],
- [
- 7.72326,
- 47.33289
- ],
- [
- 7.72978,
- 47.33283
- ],
- [
- 7.72991,
- 47.33734
- ],
- [
- 7.75596,
- 47.33725
- ],
- [
- 7.756,
- 47.33272
- ],
- [
- 7.80289,
- 47.33258
- ],
- [
- 7.8031,
- 47.35061
- ],
- [
- 7.80971,
- 47.3507
- ],
- [
- 7.80971,
- 47.35503
- ],
- [
- 7.82945,
- 47.35492
- ],
- [
- 7.82958,
- 47.3596
- ],
- [
- 7.84276,
- 47.35945
- ],
- [
- 7.8428,
- 47.36838
- ],
- [
- 7.85602,
- 47.36835
- ],
- [
- 7.85619,
- 47.37285
- ],
- [
- 7.87606,
- 47.37282
- ],
- [
- 7.87606,
- 47.37727
- ],
- [
- 7.88932,
- 47.37727
- ],
- [
- 7.88954,
- 47.39517
- ],
- [
- 7.9022,
- 47.39523
- ],
- [
- 7.9022,
- 47.39067
- ],
- [
- 7.91584,
- 47.39061
- ],
- [
- 7.91597,
- 47.39511
- ],
- [
- 7.93571,
- 47.39502
- ],
- [
- 7.93584,
- 47.39955
- ],
- [
- 7.94254,
- 47.39964
- ],
- [
- 7.94262,
- 47.40397
- ],
- [
- 7.94923,
- 47.40406
- ],
- [
- 7.94919,
- 47.4085
- ],
- [
- 7.96241,
- 47.4085
- ],
- [
- 7.96245,
- 47.41294
- ],
- [
- 7.96897,
- 47.41294
- ],
- [
- 7.96906,
- 47.42183
- ],
- [
- 7.98906,
- 47.42174
- ],
- [
- 7.98931,
- 47.44909
- ],
- [
- 7.9827,
- 47.44915
- ],
- [
- 7.98275,
- 47.45808
- ],
- [
- 7.97627,
- 47.45811
- ],
- [
- 7.97618,
- 47.46264
- ],
- [
- 7.96962,
- 47.46273
- ],
- [
- 7.96949,
- 47.46717
- ],
- [
- 7.9564,
- 47.46737
- ],
- [
- 7.95644,
- 47.48967
- ],
- [
- 7.94996,
- 47.48973
- ],
- [
- 7.94987,
- 47.49417
- ],
- [
- 7.94292,
- 47.4942
- ],
- [
- 7.94292,
- 47.48979
- ],
- [
- 7.91683,
- 47.48993
- ],
- [
- 7.91674,
- 47.49884
- ],
- [
- 7.91022,
- 47.49895
- ],
- [
- 7.91026,
- 47.50791
- ],
- [
- 7.90374,
- 47.50797
- ],
- [
- 7.9037,
- 47.5124
- ],
- [
- 7.89048,
- 47.51237
- ],
- [
- 7.89044,
- 47.51701
- ],
- [
- 7.88374,
- 47.51707
- ],
- [
- 7.88378,
- 47.5304
- ],
- [
- 7.87055,
- 47.53047
- ],
- [
- 7.87052,
- 47.53491
- ],
- [
- 7.86393,
- 47.53496
- ],
- [
- 7.86391,
- 47.53943
- ],
- [
- 7.85734,
- 47.53948
- ],
- [
- 7.85737,
- 47.54405
- ],
- [
- 7.84396,
- 47.54406
- ],
- [
- 7.84379,
- 47.53963
- ],
- [
- 7.82381,
- 47.5396
- ],
- [
- 7.8237,
- 47.51716
- ],
- [
- 7.81669,
- 47.51726
- ],
- [
- 7.81658,
- 47.51275
- ],
- [
- 7.80358,
- 47.51277
- ],
- [
- 7.80349,
- 47.50826
- ],
- [
- 7.79718,
- 47.50829
- ],
- [
- 7.79729,
- 47.52626
- ],
- [
- 7.78399,
- 47.52632
- ],
- [
- 7.78403,
- 47.53082
- ],
- [
- 7.76416,
- 47.53089
- ],
- [
- 7.76427,
- 47.55335
- ],
- [
- 7.751,
- 47.55339
- ],
- [
- 7.75103,
- 47.55786
- ],
- [
- 7.70448,
- 47.55796
- ],
- [
- 7.70448,
- 47.56244
- ],
- [
- 7.6909,
- 47.56247
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Kanton Solothurn, DSM Relief 2018, WMS Solothurn (SOGIS)"
- },
- "available_projections": [
- "EPSG:21781",
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:2056"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2018",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png",
- "id": "Solothurn-sogis2018-dsm-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, DSM Relief 2018",
- "privacy_policy_url": "https://www.so.ch/rechtliches/",
- "start_date": "2018",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.bl.agi.lidar_2018.dsm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.96884,
- 47.4311
- ],
- [
- 7.96882,
- 47.42646
- ],
- [
- 7.98205,
- 47.42644
- ],
- [
- 7.98204,
- 47.42202
- ],
- [
- 7.99533,
- 47.42199
- ],
- [
- 7.99531,
- 47.41748
- ],
- [
- 8.00832,
- 47.41746
- ],
- [
- 8.0083,
- 47.41292
- ],
- [
- 8.01506,
- 47.41291
- ],
- [
- 8.01504,
- 47.40836
- ],
- [
- 8.02168,
- 47.40835
- ],
- [
- 8.02166,
- 47.40377
- ],
- [
- 8.03466,
- 47.40375
- ],
- [
- 8.03462,
- 47.39481
- ],
- [
- 8.0411,
- 47.3948
- ],
- [
- 8.041,
- 47.36778
- ],
- [
- 8.03449,
- 47.36779
- ],
- [
- 8.03445,
- 47.35883
- ],
- [
- 8.02772,
- 47.35884
- ],
- [
- 8.02771,
- 47.35434
- ],
- [
- 8.021,
- 47.35435
- ],
- [
- 8.02095,
- 47.34092
- ],
- [
- 8.01415,
- 47.34093
- ],
- [
- 8.01412,
- 47.33199
- ],
- [
- 8.00755,
- 47.332
- ],
- [
- 8.00754,
- 47.32743
- ],
- [
- 7.99438,
- 47.32746
- ],
- [
- 7.99436,
- 47.32308
- ],
- [
- 7.98747,
- 47.3231
- ],
- [
- 7.98745,
- 47.31858
- ],
- [
- 7.98086,
- 47.31859
- ],
- [
- 7.98084,
- 47.31424
- ],
- [
- 7.95446,
- 47.31428
- ],
- [
- 7.95444,
- 47.30972
- ],
- [
- 7.94125,
- 47.30975
- ],
- [
- 7.94126,
- 47.31419
- ],
- [
- 7.9347,
- 47.3142
- ],
- [
- 7.93475,
- 47.32781
- ],
- [
- 7.90823,
- 47.32786
- ],
- [
- 7.90818,
- 47.31445
- ],
- [
- 7.90154,
- 47.31446
- ],
- [
- 7.9015,
- 47.30548
- ],
- [
- 7.87494,
- 47.30553
- ],
- [
- 7.87493,
- 47.30106
- ],
- [
- 7.86842,
- 47.30107
- ],
- [
- 7.86839,
- 47.29218
- ],
- [
- 7.8617,
- 47.29219
- ],
- [
- 7.86166,
- 47.28304
- ],
- [
- 7.85501,
- 47.28305
- ],
- [
- 7.85496,
- 47.26965
- ],
- [
- 7.84831,
- 47.26966
- ],
- [
- 7.8483,
- 47.26521
- ],
- [
- 7.84167,
- 47.26522
- ],
- [
- 7.84165,
- 47.26077
- ],
- [
- 7.82842,
- 47.26079
- ],
- [
- 7.8284,
- 47.25628
- ],
- [
- 7.79535,
- 47.25634
- ],
- [
- 7.79533,
- 47.2519
- ],
- [
- 7.78854,
- 47.25191
- ],
- [
- 7.78852,
- 47.24743
- ],
- [
- 7.78209,
- 47.24744
- ],
- [
- 7.78211,
- 47.25192
- ],
- [
- 7.72279,
- 47.25202
- ],
- [
- 7.7228,
- 47.2566
- ],
- [
- 7.71619,
- 47.25661
- ],
- [
- 7.71623,
- 47.26558
- ],
- [
- 7.70303,
- 47.26561
- ],
- [
- 7.70306,
- 47.27463
- ],
- [
- 7.69643,
- 47.27465
- ],
- [
- 7.69645,
- 47.27905
- ],
- [
- 7.68982,
- 47.27906
- ],
- [
- 7.68984,
- 47.28368
- ],
- [
- 7.67636,
- 47.2837
- ],
- [
- 7.67634,
- 47.27905
- ],
- [
- 7.65688,
- 47.27908
- ],
- [
- 7.65686,
- 47.2747
- ],
- [
- 7.60392,
- 47.27479
- ],
- [
- 7.60387,
- 47.26134
- ],
- [
- 7.61049,
- 47.26133
- ],
- [
- 7.61044,
- 47.24784
- ],
- [
- 7.61702,
- 47.24782
- ],
- [
- 7.617,
- 47.24319
- ],
- [
- 7.62354,
- 47.24318
- ],
- [
- 7.62351,
- 47.23435
- ],
- [
- 7.64994,
- 47.23431
- ],
- [
- 7.64992,
- 47.22978
- ],
- [
- 7.64992,
- 47.22981
- ],
- [
- 7.65658,
- 47.2298
- ],
- [
- 7.65652,
- 47.2118
- ],
- [
- 7.66306,
- 47.21178
- ],
- [
- 7.66304,
- 47.20728
- ],
- [
- 7.66959,
- 47.20727
- ],
- [
- 7.66958,
- 47.20272
- ],
- [
- 7.67622,
- 47.20271
- ],
- [
- 7.6762,
- 47.19821
- ],
- [
- 7.68278,
- 47.1982
- ],
- [
- 7.68275,
- 47.1892
- ],
- [
- 7.68933,
- 47.18919
- ],
- [
- 7.68927,
- 47.17123
- ],
- [
- 7.70242,
- 47.17121
- ],
- [
- 7.70241,
- 47.16664
- ],
- [
- 7.70885,
- 47.16663
- ],
- [
- 7.7088,
- 47.15309
- ],
- [
- 7.70236,
- 47.1531
- ],
- [
- 7.70234,
- 47.14872
- ],
- [
- 7.69576,
- 47.14873
- ],
- [
- 7.69574,
- 47.14423
- ],
- [
- 7.68239,
- 47.14425
- ],
- [
- 7.68241,
- 47.14875
- ],
- [
- 7.66276,
- 47.14879
- ],
- [
- 7.66274,
- 47.14415
- ],
- [
- 7.59682,
- 47.14426
- ],
- [
- 7.59681,
- 47.13996
- ],
- [
- 7.5769,
- 47.13999
- ],
- [
- 7.57693,
- 47.14904
- ],
- [
- 7.57042,
- 47.14905
- ],
- [
- 7.57045,
- 47.15793
- ],
- [
- 7.55736,
- 47.15795
- ],
- [
- 7.55734,
- 47.15346
- ],
- [
- 7.53764,
- 47.1535
- ],
- [
- 7.53759,
- 47.13991
- ],
- [
- 7.53099,
- 47.13993
- ],
- [
- 7.53097,
- 47.1355
- ],
- [
- 7.52431,
- 47.13551
- ],
- [
- 7.52426,
- 47.12195
- ],
- [
- 7.51768,
- 47.12197
- ],
- [
- 7.51766,
- 47.11748
- ],
- [
- 7.50465,
- 47.11751
- ],
- [
- 7.50463,
- 47.11297
- ],
- [
- 7.49809,
- 47.11298
- ],
- [
- 7.49807,
- 47.10842
- ],
- [
- 7.48487,
- 47.10844
- ],
- [
- 7.48486,
- 47.10402
- ],
- [
- 7.47822,
- 47.10403
- ],
- [
- 7.47818,
- 47.09491
- ],
- [
- 7.4847,
- 47.0949
- ],
- [
- 7.48465,
- 47.08143
- ],
- [
- 7.47814,
- 47.08144
- ],
- [
- 7.47811,
- 47.07246
- ],
- [
- 7.46496,
- 47.07248
- ],
- [
- 7.46494,
- 47.06801
- ],
- [
- 7.43186,
- 47.06807
- ],
- [
- 7.43187,
- 47.07237
- ],
- [
- 7.42546,
- 47.07238
- ],
- [
- 7.42553,
- 47.09039
- ],
- [
- 7.4124,
- 47.09041
- ],
- [
- 7.41239,
- 47.08598
- ],
- [
- 7.37955,
- 47.08603
- ],
- [
- 7.37956,
- 47.09022
- ],
- [
- 7.37282,
- 47.09023
- ],
- [
- 7.37286,
- 47.09945
- ],
- [
- 7.36617,
- 47.09946
- ],
- [
- 7.3662,
- 47.10834
- ],
- [
- 7.35955,
- 47.10835
- ],
- [
- 7.35961,
- 47.12663
- ],
- [
- 7.36606,
- 47.12662
- ],
- [
- 7.36608,
- 47.13104
- ],
- [
- 7.39904,
- 47.13098
- ],
- [
- 7.39902,
- 47.12657
- ],
- [
- 7.41894,
- 47.12654
- ],
- [
- 7.41896,
- 47.1307
- ],
- [
- 7.41223,
- 47.13072
- ],
- [
- 7.41228,
- 47.14473
- ],
- [
- 7.41885,
- 47.14472
- ],
- [
- 7.41887,
- 47.14902
- ],
- [
- 7.43181,
- 47.14899
- ],
- [
- 7.43184,
- 47.15807
- ],
- [
- 7.43859,
- 47.15805
- ],
- [
- 7.43861,
- 47.16233
- ],
- [
- 7.46496,
- 47.16228
- ],
- [
- 7.46494,
- 47.15801
- ],
- [
- 7.47164,
- 47.158
- ],
- [
- 7.47165,
- 47.16227
- ],
- [
- 7.478,
- 47.16226
- ],
- [
- 7.47801,
- 47.16695
- ],
- [
- 7.47148,
- 47.16696
- ],
- [
- 7.4715,
- 47.17148
- ],
- [
- 7.46487,
- 47.17149
- ],
- [
- 7.46489,
- 47.17589
- ],
- [
- 7.45184,
- 47.17591
- ],
- [
- 7.45183,
- 47.17151
- ],
- [
- 7.43871,
- 47.17153
- ],
- [
- 7.43869,
- 47.16701
- ],
- [
- 7.42551,
- 47.16703
- ],
- [
- 7.42547,
- 47.15795
- ],
- [
- 7.41887,
- 47.15796
- ],
- [
- 7.41885,
- 47.15342
- ],
- [
- 7.37264,
- 47.15349
- ],
- [
- 7.37274,
- 47.18038
- ],
- [
- 7.3659,
- 47.1804
- ],
- [
- 7.36592,
- 47.18494
- ],
- [
- 7.34629,
- 47.18498
- ],
- [
- 7.34632,
- 47.19374
- ],
- [
- 7.33955,
- 47.19375
- ],
- [
- 7.33958,
- 47.20289
- ],
- [
- 7.33304,
- 47.2029
- ],
- [
- 7.33312,
- 47.22548
- ],
- [
- 7.35273,
- 47.22544
- ],
- [
- 7.35275,
- 47.22993
- ],
- [
- 7.36595,
- 47.2299
- ],
- [
- 7.36597,
- 47.23453
- ],
- [
- 7.37912,
- 47.23451
- ],
- [
- 7.37913,
- 47.23895
- ],
- [
- 7.39234,
- 47.23892
- ],
- [
- 7.39236,
- 47.24347
- ],
- [
- 7.4056,
- 47.24345
- ],
- [
- 7.40565,
- 47.25694
- ],
- [
- 7.41228,
- 47.25693
- ],
- [
- 7.4123,
- 47.2614
- ],
- [
- 7.42542,
- 47.26138
- ],
- [
- 7.42543,
- 47.26592
- ],
- [
- 7.43187,
- 47.26591
- ],
- [
- 7.43189,
- 47.27042
- ],
- [
- 7.4583,
- 47.27038
- ],
- [
- 7.45832,
- 47.27492
- ],
- [
- 7.46506,
- 47.27491
- ],
- [
- 7.4651,
- 47.28387
- ],
- [
- 7.47169,
- 47.28385
- ],
- [
- 7.47171,
- 47.28847
- ],
- [
- 7.47832,
- 47.28846
- ],
- [
- 7.47834,
- 47.29293
- ],
- [
- 7.49152,
- 47.29291
- ],
- [
- 7.49154,
- 47.29737
- ],
- [
- 7.51134,
- 47.29734
- ],
- [
- 7.51135,
- 47.30184
- ],
- [
- 7.53122,
- 47.3018
- ],
- [
- 7.53125,
- 47.31073
- ],
- [
- 7.53782,
- 47.31072
- ],
- [
- 7.53787,
- 47.32429
- ],
- [
- 7.55104,
- 47.32427
- ],
- [
- 7.55106,
- 47.32882
- ],
- [
- 7.56434,
- 47.3288
- ],
- [
- 7.56437,
- 47.33783
- ],
- [
- 7.57086,
- 47.33782
- ],
- [
- 7.57087,
- 47.3423
- ],
- [
- 7.57765,
- 47.34229
- ],
- [
- 7.57764,
- 47.33783
- ],
- [
- 7.59081,
- 47.33781
- ],
- [
- 7.59083,
- 47.34227
- ],
- [
- 7.59743,
- 47.34226
- ],
- [
- 7.59741,
- 47.33781
- ],
- [
- 7.60407,
- 47.3378
- ],
- [
- 7.60409,
- 47.34225
- ],
- [
- 7.69661,
- 47.3421
- ],
- [
- 7.6966,
- 47.33761
- ],
- [
- 7.70993,
- 47.33759
- ],
- [
- 7.70995,
- 47.34208
- ],
- [
- 7.72322,
- 47.34206
- ],
- [
- 7.72324,
- 47.34657
- ],
- [
- 7.73643,
- 47.34655
- ],
- [
- 7.73645,
- 47.35093
- ],
- [
- 7.77622,
- 47.35087
- ],
- [
- 7.77621,
- 47.34642
- ],
- [
- 7.78269,
- 47.34641
- ],
- [
- 7.78272,
- 47.35523
- ],
- [
- 7.78936,
- 47.35522
- ],
- [
- 7.7894,
- 47.36427
- ],
- [
- 7.79613,
- 47.36426
- ],
- [
- 7.79615,
- 47.36877
- ],
- [
- 7.82248,
- 47.36873
- ],
- [
- 7.82249,
- 47.37319
- ],
- [
- 7.82926,
- 47.37318
- ],
- [
- 7.82929,
- 47.38217
- ],
- [
- 7.84261,
- 47.38215
- ],
- [
- 7.84262,
- 47.38661
- ],
- [
- 7.86243,
- 47.38658
- ],
- [
- 7.8625,
- 47.40454
- ],
- [
- 7.86917,
- 47.40453
- ],
- [
- 7.86919,
- 47.40901
- ],
- [
- 7.87587,
- 47.409
- ],
- [
- 7.87589,
- 47.41351
- ],
- [
- 7.90231,
- 47.41347
- ],
- [
- 7.90229,
- 47.4089
- ],
- [
- 7.92225,
- 47.40887
- ],
- [
- 7.92228,
- 47.4177
- ],
- [
- 7.93556,
- 47.41768
- ],
- [
- 7.93558,
- 47.42211
- ],
- [
- 7.94882,
- 47.42209
- ],
- [
- 7.94884,
- 47.42664
- ],
- [
- 7.95552,
- 47.42663
- ],
- [
- 7.95553,
- 47.43112
- ],
- [
- 7.96884,
- 47.4311
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Solothurn, DSM Relief 2019, WMS Solothurn (SOGIS)"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:2056",
- "EPSG:4326",
- "EPSG:21781"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2019",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png",
- "id": "Solothurn-sogis2019-dsm-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, DSM Relief 2019",
- "privacy_policy_url": "https://www.asitvd.ch/tarifs-conditions.html",
- "start_date": "2019",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2019.dsm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.48,
- 47.1
- ],
- [
- 7.48,
- 47.06
- ],
- [
- 7.42,
- 47.06
- ],
- [
- 7.42,
- 47.08
- ],
- [
- 7.36,
- 47.08
- ],
- [
- 7.36,
- 47.18
- ],
- [
- 7.34,
- 47.18
- ],
- [
- 7.34,
- 47.2
- ],
- [
- 7.32,
- 47.2
- ],
- [
- 7.32,
- 47.24
- ],
- [
- 7.4,
- 47.24
- ],
- [
- 7.4,
- 47.26
- ],
- [
- 7.42,
- 47.26
- ],
- [
- 7.42,
- 47.28
- ],
- [
- 7.46,
- 47.28
- ],
- [
- 7.46,
- 47.3
- ],
- [
- 7.52,
- 47.3
- ],
- [
- 7.52,
- 47.32
- ],
- [
- 7.54,
- 47.32
- ],
- [
- 7.54,
- 47.34
- ],
- [
- 7.52,
- 47.34
- ],
- [
- 7.52,
- 47.36
- ],
- [
- 7.42,
- 47.36
- ],
- [
- 7.42,
- 47.4
- ],
- [
- 7.36,
- 47.4
- ],
- [
- 7.36,
- 47.44
- ],
- [
- 7.38,
- 47.44
- ],
- [
- 7.38,
- 47.46
- ],
- [
- 7.4,
- 47.46
- ],
- [
- 7.4,
- 47.5
- ],
- [
- 7.42,
- 47.5
- ],
- [
- 7.42,
- 47.52
- ],
- [
- 7.46,
- 47.52
- ],
- [
- 7.46,
- 47.5
- ],
- [
- 7.5,
- 47.5
- ],
- [
- 7.5,
- 47.52
- ],
- [
- 7.54,
- 47.52
- ],
- [
- 7.54,
- 47.5
- ],
- [
- 7.56,
- 47.5
- ],
- [
- 7.56,
- 47.48
- ],
- [
- 7.54,
- 47.48
- ],
- [
- 7.54,
- 47.44
- ],
- [
- 7.48,
- 47.44
- ],
- [
- 7.48,
- 47.42
- ],
- [
- 7.5,
- 47.42
- ],
- [
- 7.5,
- 47.4
- ],
- [
- 7.52,
- 47.4
- ],
- [
- 7.52,
- 47.42
- ],
- [
- 7.56,
- 47.42
- ],
- [
- 7.56,
- 47.46
- ],
- [
- 7.58,
- 47.46
- ],
- [
- 7.58,
- 47.44
- ],
- [
- 7.6,
- 47.44
- ],
- [
- 7.6,
- 47.5
- ],
- [
- 7.64,
- 47.5
- ],
- [
- 7.64,
- 47.52
- ],
- [
- 7.68,
- 47.52
- ],
- [
- 7.68,
- 47.5
- ],
- [
- 7.72,
- 47.5
- ],
- [
- 7.72,
- 47.44
- ],
- [
- 7.7,
- 47.44
- ],
- [
- 7.7,
- 47.4
- ],
- [
- 7.66,
- 47.4
- ],
- [
- 7.66,
- 47.38
- ],
- [
- 7.74,
- 47.38
- ],
- [
- 7.74,
- 47.36
- ],
- [
- 7.78,
- 47.36
- ],
- [
- 7.78,
- 47.38
- ],
- [
- 7.84,
- 47.38
- ],
- [
- 7.84,
- 47.4
- ],
- [
- 7.86,
- 47.4
- ],
- [
- 7.86,
- 47.42
- ],
- [
- 7.94,
- 47.42
- ],
- [
- 7.94,
- 47.48
- ],
- [
- 7.98,
- 47.48
- ],
- [
- 7.98,
- 47.46
- ],
- [
- 8.0,
- 47.46
- ],
- [
- 8.0,
- 47.42
- ],
- [
- 8.04,
- 47.42
- ],
- [
- 8.04,
- 47.34
- ],
- [
- 8.02,
- 47.34
- ],
- [
- 8.02,
- 47.32
- ],
- [
- 7.98,
- 47.32
- ],
- [
- 7.98,
- 47.3
- ],
- [
- 7.94,
- 47.3
- ],
- [
- 7.94,
- 47.32
- ],
- [
- 7.92,
- 47.32
- ],
- [
- 7.92,
- 47.3
- ],
- [
- 7.88,
- 47.3
- ],
- [
- 7.88,
- 47.28
- ],
- [
- 7.86,
- 47.28
- ],
- [
- 7.86,
- 47.26
- ],
- [
- 7.84,
- 47.26
- ],
- [
- 7.84,
- 47.24
- ],
- [
- 7.72,
- 47.24
- ],
- [
- 7.72,
- 47.26
- ],
- [
- 7.68,
- 47.26
- ],
- [
- 7.68,
- 47.28
- ],
- [
- 7.66,
- 47.28
- ],
- [
- 7.66,
- 47.26
- ],
- [
- 7.62,
- 47.26
- ],
- [
- 7.62,
- 47.24
- ],
- [
- 7.66,
- 47.24
- ],
- [
- 7.66,
- 47.22
- ],
- [
- 7.68,
- 47.22
- ],
- [
- 7.68,
- 47.2
- ],
- [
- 7.7,
- 47.2
- ],
- [
- 7.7,
- 47.18
- ],
- [
- 7.72,
- 47.18
- ],
- [
- 7.72,
- 47.14
- ],
- [
- 7.54,
- 47.14
- ],
- [
- 7.54,
- 47.12
- ],
- [
- 7.52,
- 47.12
- ],
- [
- 7.52,
- 47.1
- ],
- [
- 7.48,
- 47.1
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "DTM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:3857",
- "EPSG:21781",
- "CRS:84"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2014",
- "id": "Solothurn-sogis2014-dtm-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, DTM Relief 2014 50cm",
- "privacy_policy_url": "https://www.so.ch/rechtliches/",
- "start_date": "2014",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dtm_relief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.6909,
- 47.56247
- ],
- [
- 7.69077,
- 47.54008
- ],
- [
- 7.67786,
- 47.54008
- ],
- [
- 7.67788,
- 47.54458
- ],
- [
- 7.67138,
- 47.5446
- ],
- [
- 7.67142,
- 47.54897
- ],
- [
- 7.66481,
- 47.54906
- ],
- [
- 7.66477,
- 47.55349
- ],
- [
- 7.65816,
- 47.55364
- ],
- [
- 7.65824,
- 47.55801
- ],
- [
- 7.65146,
- 47.5581
- ],
- [
- 7.65146,
- 47.56258
- ],
- [
- 7.64503,
- 47.56264
- ],
- [
- 7.64498,
- 47.56707
- ],
- [
- 7.61121,
- 47.56716
- ],
- [
- 7.61112,
- 47.5627
- ],
- [
- 7.6046,
- 47.56264
- ],
- [
- 7.60464,
- 47.549
- ],
- [
- 7.61099,
- 47.54886
- ],
- [
- 7.61117,
- 47.54468
- ],
- [
- 7.60456,
- 47.54468
- ],
- [
- 7.60447,
- 47.54019
- ],
- [
- 7.59833,
- 47.54017
- ],
- [
- 7.59846,
- 47.54917
- ],
- [
- 7.57859,
- 47.54915
- ],
- [
- 7.57855,
- 47.55366
- ],
- [
- 7.57181,
- 47.55369
- ],
- [
- 7.57185,
- 47.56719
- ],
- [
- 7.56516,
- 47.56719
- ],
- [
- 7.5652,
- 47.57173
- ],
- [
- 7.54487,
- 47.57173
- ],
- [
- 7.54478,
- 47.56728
- ],
- [
- 7.53808,
- 47.56725
- ],
- [
- 7.53812,
- 47.56276
- ],
- [
- 7.52487,
- 47.56274
- ],
- [
- 7.52491,
- 47.55827
- ],
- [
- 7.5182,
- 47.55825
- ],
- [
- 7.51812,
- 47.55385
- ],
- [
- 7.49821,
- 47.55381
- ],
- [
- 7.49817,
- 47.54933
- ],
- [
- 7.49154,
- 47.54935
- ],
- [
- 7.49158,
- 47.54054
- ],
- [
- 7.48489,
- 47.54054
- ],
- [
- 7.48487,
- 47.53123
- ],
- [
- 7.49169,
- 47.53123
- ],
- [
- 7.49171,
- 47.52692
- ],
- [
- 7.48497,
- 47.52692
- ],
- [
- 7.48495,
- 47.51771
- ],
- [
- 7.4915,
- 47.51769
- ],
- [
- 7.4915,
- 47.50868
- ],
- [
- 7.49808,
- 47.50865
- ],
- [
- 7.4981,
- 47.49083
- ],
- [
- 7.49154,
- 47.49085
- ],
- [
- 7.49154,
- 47.48635
- ],
- [
- 7.4848,
- 47.48635
- ],
- [
- 7.4848,
- 47.48189
- ],
- [
- 7.47178,
- 47.48192
- ],
- [
- 7.47173,
- 47.48638
- ],
- [
- 7.46523,
- 47.48641
- ],
- [
- 7.46523,
- 47.49089
- ],
- [
- 7.45225,
- 47.49096
- ],
- [
- 7.45216,
- 47.49528
- ],
- [
- 7.4456,
- 47.49546
- ],
- [
- 7.44551,
- 47.49995
- ],
- [
- 7.42519,
- 47.50003
- ],
- [
- 7.42511,
- 47.49109
- ],
- [
- 7.41845,
- 47.49098
- ],
- [
- 7.41843,
- 47.47707
- ],
- [
- 7.43822,
- 47.4771
- ],
- [
- 7.43834,
- 47.47263
- ],
- [
- 7.44491,
- 47.47263
- ],
- [
- 7.44495,
- 47.46849
- ],
- [
- 7.42521,
- 47.46849
- ],
- [
- 7.42521,
- 47.46396
- ],
- [
- 7.4186,
- 47.46399
- ],
- [
- 7.41848,
- 47.45496
- ],
- [
- 7.41204,
- 47.45491
- ],
- [
- 7.41187,
- 47.44594
- ],
- [
- 7.40517,
- 47.446
- ],
- [
- 7.40513,
- 47.44144
- ],
- [
- 7.39873,
- 47.44147
- ],
- [
- 7.39856,
- 47.43697
- ],
- [
- 7.38586,
- 47.43688
- ],
- [
- 7.38577,
- 47.44135
- ],
- [
- 7.35256,
- 47.44144
- ],
- [
- 7.35256,
- 47.44588
- ],
- [
- 7.33943,
- 47.44594
- ],
- [
- 7.33943,
- 47.4505
- ],
- [
- 7.32582,
- 47.45041
- ],
- [
- 7.32569,
- 47.44585
- ],
- [
- 7.31921,
- 47.44585
- ],
- [
- 7.31908,
- 47.44144
- ],
- [
- 7.31243,
- 47.44135
- ],
- [
- 7.31243,
- 47.43212
- ],
- [
- 7.31904,
- 47.43209
- ],
- [
- 7.31904,
- 47.42318
- ],
- [
- 7.3323,
- 47.42309
- ],
- [
- 7.3323,
- 47.41859
- ],
- [
- 7.33887,
- 47.41856
- ],
- [
- 7.33895,
- 47.41415
- ],
- [
- 7.34556,
- 47.41409
- ],
- [
- 7.34569,
- 47.40959
- ],
- [
- 7.35882,
- 47.40962
- ],
- [
- 7.35891,
- 47.40518
- ],
- [
- 7.37856,
- 47.40512
- ],
- [
- 7.37856,
- 47.39617
- ],
- [
- 7.392,
- 47.39611
- ],
- [
- 7.392,
- 47.39167
- ],
- [
- 7.39856,
- 47.39161
- ],
- [
- 7.39865,
- 47.38713
- ],
- [
- 7.40517,
- 47.38713
- ],
- [
- 7.40517,
- 47.38298
- ],
- [
- 7.39865,
- 47.3831
- ],
- [
- 7.39861,
- 47.37819
- ],
- [
- 7.40513,
- 47.37813
- ],
- [
- 7.40517,
- 47.37371
- ],
- [
- 7.45143,
- 47.37371
- ],
- [
- 7.45156,
- 47.36906
- ],
- [
- 7.5177,
- 47.36918
- ],
- [
- 7.5177,
- 47.36022
- ],
- [
- 7.531,
- 47.36016
- ],
- [
- 7.531,
- 47.34673
- ],
- [
- 7.54422,
- 47.34662
- ],
- [
- 7.54417,
- 47.3422
- ],
- [
- 7.55078,
- 47.34214
- ],
- [
- 7.55078,
- 47.33775
- ],
- [
- 7.55761,
- 47.33776
- ],
- [
- 7.55763,
- 47.33327
- ],
- [
- 7.56423,
- 47.33325
- ],
- [
- 7.56422,
- 47.32874
- ],
- [
- 7.5774,
- 47.32872
- ],
- [
- 7.57744,
- 47.32421
- ],
- [
- 7.59086,
- 47.32418
- ],
- [
- 7.59088,
- 47.32871
- ],
- [
- 7.61739,
- 47.32858
- ],
- [
- 7.61743,
- 47.33312
- ],
- [
- 7.68961,
- 47.33295
- ],
- [
- 7.68961,
- 47.3285
- ],
- [
- 7.69627,
- 47.32835
- ],
- [
- 7.69644,
- 47.32393
- ],
- [
- 7.7165,
- 47.3238
- ],
- [
- 7.71661,
- 47.32835
- ],
- [
- 7.72322,
- 47.32838
- ],
- [
- 7.72326,
- 47.33289
- ],
- [
- 7.72978,
- 47.33283
- ],
- [
- 7.72991,
- 47.33734
- ],
- [
- 7.75596,
- 47.33725
- ],
- [
- 7.756,
- 47.33272
- ],
- [
- 7.80289,
- 47.33258
- ],
- [
- 7.8031,
- 47.35061
- ],
- [
- 7.80971,
- 47.3507
- ],
- [
- 7.80971,
- 47.35503
- ],
- [
- 7.82945,
- 47.35492
- ],
- [
- 7.82958,
- 47.3596
- ],
- [
- 7.84276,
- 47.35945
- ],
- [
- 7.8428,
- 47.36838
- ],
- [
- 7.85602,
- 47.36835
- ],
- [
- 7.85619,
- 47.37285
- ],
- [
- 7.87606,
- 47.37282
- ],
- [
- 7.87606,
- 47.37727
- ],
- [
- 7.88932,
- 47.37727
- ],
- [
- 7.88954,
- 47.39517
- ],
- [
- 7.9022,
- 47.39523
- ],
- [
- 7.9022,
- 47.39067
- ],
- [
- 7.91584,
- 47.39061
- ],
- [
- 7.91597,
- 47.39511
- ],
- [
- 7.93571,
- 47.39502
- ],
- [
- 7.93584,
- 47.39955
- ],
- [
- 7.94254,
- 47.39964
- ],
- [
- 7.94262,
- 47.40397
- ],
- [
- 7.94923,
- 47.40406
- ],
- [
- 7.94919,
- 47.4085
- ],
- [
- 7.96241,
- 47.4085
- ],
- [
- 7.96245,
- 47.41294
- ],
- [
- 7.96897,
- 47.41294
- ],
- [
- 7.96906,
- 47.42183
- ],
- [
- 7.98906,
- 47.42174
- ],
- [
- 7.98931,
- 47.44909
- ],
- [
- 7.9827,
- 47.44915
- ],
- [
- 7.98275,
- 47.45808
- ],
- [
- 7.97627,
- 47.45811
- ],
- [
- 7.97618,
- 47.46264
- ],
- [
- 7.96962,
- 47.46273
- ],
- [
- 7.96949,
- 47.46717
- ],
- [
- 7.9564,
- 47.46737
- ],
- [
- 7.95644,
- 47.48967
- ],
- [
- 7.94996,
- 47.48973
- ],
- [
- 7.94987,
- 47.49417
- ],
- [
- 7.94292,
- 47.4942
- ],
- [
- 7.94292,
- 47.48979
- ],
- [
- 7.91683,
- 47.48993
- ],
- [
- 7.91674,
- 47.49884
- ],
- [
- 7.91022,
- 47.49895
- ],
- [
- 7.91026,
- 47.50791
- ],
- [
- 7.90374,
- 47.50797
- ],
- [
- 7.9037,
- 47.5124
- ],
- [
- 7.89048,
- 47.51237
- ],
- [
- 7.89044,
- 47.51701
- ],
- [
- 7.88374,
- 47.51707
- ],
- [
- 7.88378,
- 47.5304
- ],
- [
- 7.87055,
- 47.53047
- ],
- [
- 7.87052,
- 47.53491
- ],
- [
- 7.86393,
- 47.53496
- ],
- [
- 7.86391,
- 47.53943
- ],
- [
- 7.85734,
- 47.53948
- ],
- [
- 7.85737,
- 47.54405
- ],
- [
- 7.84396,
- 47.54406
- ],
- [
- 7.84379,
- 47.53963
- ],
- [
- 7.82381,
- 47.5396
- ],
- [
- 7.8237,
- 47.51716
- ],
- [
- 7.81669,
- 47.51726
- ],
- [
- 7.81658,
- 47.51275
- ],
- [
- 7.80358,
- 47.51277
- ],
- [
- 7.80349,
- 47.50826
- ],
- [
- 7.79718,
- 47.50829
- ],
- [
- 7.79729,
- 47.52626
- ],
- [
- 7.78399,
- 47.52632
- ],
- [
- 7.78403,
- 47.53082
- ],
- [
- 7.76416,
- 47.53089
- ],
- [
- 7.76427,
- 47.55335
- ],
- [
- 7.751,
- 47.55339
- ],
- [
- 7.75103,
- 47.55786
- ],
- [
- 7.70448,
- 47.55796
- ],
- [
- 7.70448,
- 47.56244
- ],
- [
- 7.6909,
- 47.56247
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Kanton Solothurn, DTM Relief 2018, WMS Solothurn (SOGIS)"
- },
- "available_projections": [
- "EPSG:21781",
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:3857",
- "EPSG:84"
- ],
- "best": true,
- "country_code": "CH",
- "end_date": "2018",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png",
- "id": "Solothurn-sogis2018-dtm-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 8,
- "name": "Kanton Solothurn, DTM Relief 2018",
- "privacy_policy_url": "https://www.so.ch/rechtliches/",
- "start_date": "2018",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/jpeg&TRANSPARENT=true&LAYERS=ch.bl.agi.lidar_2018.dtm_relief&STYLES=&SRS={proj}&CRS={proj}&TILED=false&DPI=96&OPACITIES=255&t=675&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.96884,
- 47.4311
- ],
- [
- 7.96882,
- 47.42646
- ],
- [
- 7.98205,
- 47.42644
- ],
- [
- 7.98204,
- 47.42202
- ],
- [
- 7.99533,
- 47.42199
- ],
- [
- 7.99531,
- 47.41748
- ],
- [
- 8.00832,
- 47.41746
- ],
- [
- 8.0083,
- 47.41292
- ],
- [
- 8.01506,
- 47.41291
- ],
- [
- 8.01504,
- 47.40836
- ],
- [
- 8.02168,
- 47.40835
- ],
- [
- 8.02166,
- 47.40377
- ],
- [
- 8.03466,
- 47.40375
- ],
- [
- 8.03462,
- 47.39481
- ],
- [
- 8.0411,
- 47.3948
- ],
- [
- 8.041,
- 47.36778
- ],
- [
- 8.03449,
- 47.36779
- ],
- [
- 8.03445,
- 47.35883
- ],
- [
- 8.02772,
- 47.35884
- ],
- [
- 8.02771,
- 47.35434
- ],
- [
- 8.021,
- 47.35435
- ],
- [
- 8.02095,
- 47.34092
- ],
- [
- 8.01415,
- 47.34093
- ],
- [
- 8.01412,
- 47.33199
- ],
- [
- 8.00755,
- 47.332
- ],
- [
- 8.00754,
- 47.32743
- ],
- [
- 7.99438,
- 47.32746
- ],
- [
- 7.99436,
- 47.32308
- ],
- [
- 7.98747,
- 47.3231
- ],
- [
- 7.98745,
- 47.31858
- ],
- [
- 7.98086,
- 47.31859
- ],
- [
- 7.98084,
- 47.31424
- ],
- [
- 7.95446,
- 47.31428
- ],
- [
- 7.95444,
- 47.30972
- ],
- [
- 7.94125,
- 47.30975
- ],
- [
- 7.94126,
- 47.31419
- ],
- [
- 7.9347,
- 47.3142
- ],
- [
- 7.93475,
- 47.32781
- ],
- [
- 7.90823,
- 47.32786
- ],
- [
- 7.90818,
- 47.31445
- ],
- [
- 7.90154,
- 47.31446
- ],
- [
- 7.9015,
- 47.30548
- ],
- [
- 7.87494,
- 47.30553
- ],
- [
- 7.87493,
- 47.30106
- ],
- [
- 7.86842,
- 47.30107
- ],
- [
- 7.86839,
- 47.29218
- ],
- [
- 7.8617,
- 47.29219
- ],
- [
- 7.86166,
- 47.28304
- ],
- [
- 7.85501,
- 47.28305
- ],
- [
- 7.85496,
- 47.26965
- ],
- [
- 7.84831,
- 47.26966
- ],
- [
- 7.8483,
- 47.26521
- ],
- [
- 7.84167,
- 47.26522
- ],
- [
- 7.84165,
- 47.26077
- ],
- [
- 7.82842,
- 47.26079
- ],
- [
- 7.8284,
- 47.25628
- ],
- [
- 7.79535,
- 47.25634
- ],
- [
- 7.79533,
- 47.2519
- ],
- [
- 7.78854,
- 47.25191
- ],
- [
- 7.78852,
- 47.24743
- ],
- [
- 7.78209,
- 47.24744
- ],
- [
- 7.78211,
- 47.25192
- ],
- [
- 7.72279,
- 47.25202
- ],
- [
- 7.7228,
- 47.2566
- ],
- [
- 7.71619,
- 47.25661
- ],
- [
- 7.71623,
- 47.26558
- ],
- [
- 7.70303,
- 47.26561
- ],
- [
- 7.70306,
- 47.27463
- ],
- [
- 7.69643,
- 47.27465
- ],
- [
- 7.69645,
- 47.27905
- ],
- [
- 7.68982,
- 47.27906
- ],
- [
- 7.68984,
- 47.28368
- ],
- [
- 7.67636,
- 47.2837
- ],
- [
- 7.67634,
- 47.27905
- ],
- [
- 7.65688,
- 47.27908
- ],
- [
- 7.65686,
- 47.2747
- ],
- [
- 7.60392,
- 47.27479
- ],
- [
- 7.60387,
- 47.26134
- ],
- [
- 7.61049,
- 47.26133
- ],
- [
- 7.61044,
- 47.24784
- ],
- [
- 7.61702,
- 47.24782
- ],
- [
- 7.617,
- 47.24319
- ],
- [
- 7.62354,
- 47.24318
- ],
- [
- 7.62351,
- 47.23435
- ],
- [
- 7.64994,
- 47.23431
- ],
- [
- 7.64992,
- 47.22978
- ],
- [
- 7.64992,
- 47.22981
- ],
- [
- 7.65658,
- 47.2298
- ],
- [
- 7.65652,
- 47.2118
- ],
- [
- 7.66306,
- 47.21178
- ],
- [
- 7.66304,
- 47.20728
- ],
- [
- 7.66959,
- 47.20727
- ],
- [
- 7.66958,
- 47.20272
- ],
- [
- 7.67622,
- 47.20271
- ],
- [
- 7.6762,
- 47.19821
- ],
- [
- 7.68278,
- 47.1982
- ],
- [
- 7.68275,
- 47.1892
- ],
- [
- 7.68933,
- 47.18919
- ],
- [
- 7.68927,
- 47.17123
- ],
- [
- 7.70242,
- 47.17121
- ],
- [
- 7.70241,
- 47.16664
- ],
- [
- 7.70885,
- 47.16663
- ],
- [
- 7.7088,
- 47.15309
- ],
- [
- 7.70236,
- 47.1531
- ],
- [
- 7.70234,
- 47.14872
- ],
- [
- 7.69576,
- 47.14873
- ],
- [
- 7.69574,
- 47.14423
- ],
- [
- 7.68239,
- 47.14425
- ],
- [
- 7.68241,
- 47.14875
- ],
- [
- 7.66276,
- 47.14879
- ],
- [
- 7.66274,
- 47.14415
- ],
- [
- 7.59682,
- 47.14426
- ],
- [
- 7.59681,
- 47.13996
- ],
- [
- 7.5769,
- 47.13999
- ],
- [
- 7.57693,
- 47.14904
- ],
- [
- 7.57042,
- 47.14905
- ],
- [
- 7.57045,
- 47.15793
- ],
- [
- 7.55736,
- 47.15795
- ],
- [
- 7.55734,
- 47.15346
- ],
- [
- 7.53764,
- 47.1535
- ],
- [
- 7.53759,
- 47.13991
- ],
- [
- 7.53099,
- 47.13993
- ],
- [
- 7.53097,
- 47.1355
- ],
- [
- 7.52431,
- 47.13551
- ],
- [
- 7.52426,
- 47.12195
- ],
- [
- 7.51768,
- 47.12197
- ],
- [
- 7.51766,
- 47.11748
- ],
- [
- 7.50465,
- 47.11751
- ],
- [
- 7.50463,
- 47.11297
- ],
- [
- 7.49809,
- 47.11298
- ],
- [
- 7.49807,
- 47.10842
- ],
- [
- 7.48487,
- 47.10844
- ],
- [
- 7.48486,
- 47.10402
- ],
- [
- 7.47822,
- 47.10403
- ],
- [
- 7.47818,
- 47.09491
- ],
- [
- 7.4847,
- 47.0949
- ],
- [
- 7.48465,
- 47.08143
- ],
- [
- 7.47814,
- 47.08144
- ],
- [
- 7.47811,
- 47.07246
- ],
- [
- 7.46496,
- 47.07248
- ],
- [
- 7.46494,
- 47.06801
- ],
- [
- 7.43186,
- 47.06807
- ],
- [
- 7.43187,
- 47.07237
- ],
- [
- 7.42546,
- 47.07238
- ],
- [
- 7.42553,
- 47.09039
- ],
- [
- 7.4124,
- 47.09041
- ],
- [
- 7.41239,
- 47.08598
- ],
- [
- 7.37955,
- 47.08603
- ],
- [
- 7.37956,
- 47.09022
- ],
- [
- 7.37282,
- 47.09023
- ],
- [
- 7.37286,
- 47.09945
- ],
- [
- 7.36617,
- 47.09946
- ],
- [
- 7.3662,
- 47.10834
- ],
- [
- 7.35955,
- 47.10835
- ],
- [
- 7.35961,
- 47.12663
- ],
- [
- 7.36606,
- 47.12662
- ],
- [
- 7.36608,
- 47.13104
- ],
- [
- 7.39904,
- 47.13098
- ],
- [
- 7.39902,
- 47.12657
- ],
- [
- 7.41894,
- 47.12654
- ],
- [
- 7.41896,
- 47.1307
- ],
- [
- 7.41223,
- 47.13072
- ],
- [
- 7.41228,
- 47.14473
- ],
- [
- 7.41885,
- 47.14472
- ],
- [
- 7.41887,
- 47.14902
- ],
- [
- 7.43181,
- 47.14899
- ],
- [
- 7.43184,
- 47.15807
- ],
- [
- 7.43859,
- 47.15805
- ],
- [
- 7.43861,
- 47.16233
- ],
- [
- 7.46496,
- 47.16228
- ],
- [
- 7.46494,
- 47.15801
- ],
- [
- 7.47164,
- 47.158
- ],
- [
- 7.47165,
- 47.16227
- ],
- [
- 7.478,
- 47.16226
- ],
- [
- 7.47801,
- 47.16695
- ],
- [
- 7.47148,
- 47.16696
- ],
- [
- 7.4715,
- 47.17148
- ],
- [
- 7.46487,
- 47.17149
- ],
- [
- 7.46489,
- 47.17589
- ],
- [
- 7.45184,
- 47.17591
- ],
- [
- 7.45183,
- 47.17151
- ],
- [
- 7.43871,
- 47.17153
- ],
- [
- 7.43869,
- 47.16701
- ],
- [
- 7.42551,
- 47.16703
- ],
- [
- 7.42547,
- 47.15795
- ],
- [
- 7.41887,
- 47.15796
- ],
- [
- 7.41885,
- 47.15342
- ],
- [
- 7.37264,
- 47.15349
- ],
- [
- 7.37274,
- 47.18038
- ],
- [
- 7.3659,
- 47.1804
- ],
- [
- 7.36592,
- 47.18494
- ],
- [
- 7.34629,
- 47.18498
- ],
- [
- 7.34632,
- 47.19374
- ],
- [
- 7.33955,
- 47.19375
- ],
- [
- 7.33958,
- 47.20289
- ],
- [
- 7.33304,
- 47.2029
- ],
- [
- 7.33312,
- 47.22548
- ],
- [
- 7.35273,
- 47.22544
- ],
- [
- 7.35275,
- 47.22993
- ],
- [
- 7.36595,
- 47.2299
- ],
- [
- 7.36597,
- 47.23453
- ],
- [
- 7.37912,
- 47.23451
- ],
- [
- 7.37913,
- 47.23895
- ],
- [
- 7.39234,
- 47.23892
- ],
- [
- 7.39236,
- 47.24347
- ],
- [
- 7.4056,
- 47.24345
- ],
- [
- 7.40565,
- 47.25694
- ],
- [
- 7.41228,
- 47.25693
- ],
- [
- 7.4123,
- 47.2614
- ],
- [
- 7.42542,
- 47.26138
- ],
- [
- 7.42543,
- 47.26592
- ],
- [
- 7.43187,
- 47.26591
- ],
- [
- 7.43189,
- 47.27042
- ],
- [
- 7.4583,
- 47.27038
- ],
- [
- 7.45832,
- 47.27492
- ],
- [
- 7.46506,
- 47.27491
- ],
- [
- 7.4651,
- 47.28387
- ],
- [
- 7.47169,
- 47.28385
- ],
- [
- 7.47171,
- 47.28847
- ],
- [
- 7.47832,
- 47.28846
- ],
- [
- 7.47834,
- 47.29293
- ],
- [
- 7.49152,
- 47.29291
- ],
- [
- 7.49154,
- 47.29737
- ],
- [
- 7.51134,
- 47.29734
- ],
- [
- 7.51135,
- 47.30184
- ],
- [
- 7.53122,
- 47.3018
- ],
- [
- 7.53125,
- 47.31073
- ],
- [
- 7.53782,
- 47.31072
- ],
- [
- 7.53787,
- 47.32429
- ],
- [
- 7.55104,
- 47.32427
- ],
- [
- 7.55106,
- 47.32882
- ],
- [
- 7.56434,
- 47.3288
- ],
- [
- 7.56437,
- 47.33783
- ],
- [
- 7.57086,
- 47.33782
- ],
- [
- 7.57087,
- 47.3423
- ],
- [
- 7.57765,
- 47.34229
- ],
- [
- 7.57764,
- 47.33783
- ],
- [
- 7.59081,
- 47.33781
- ],
- [
- 7.59083,
- 47.34227
- ],
- [
- 7.59743,
- 47.34226
- ],
- [
- 7.59741,
- 47.33781
- ],
- [
- 7.60407,
- 47.3378
- ],
- [
- 7.60409,
- 47.34225
- ],
- [
- 7.69661,
- 47.3421
- ],
- [
- 7.6966,
- 47.33761
- ],
- [
- 7.70993,
- 47.33759
- ],
- [
- 7.70995,
- 47.34208
- ],
- [
- 7.72322,
- 47.34206
- ],
- [
- 7.72324,
- 47.34657
- ],
- [
- 7.73643,
- 47.34655
- ],
- [
- 7.73645,
- 47.35093
- ],
- [
- 7.77622,
- 47.35087
- ],
- [
- 7.77621,
- 47.34642
- ],
- [
- 7.78269,
- 47.34641
- ],
- [
- 7.78272,
- 47.35523
- ],
- [
- 7.78936,
- 47.35522
- ],
- [
- 7.7894,
- 47.36427
- ],
- [
- 7.79613,
- 47.36426
- ],
- [
- 7.79615,
- 47.36877
- ],
- [
- 7.82248,
- 47.36873
- ],
- [
- 7.82249,
- 47.37319
- ],
- [
- 7.82926,
- 47.37318
- ],
- [
- 7.82929,
- 47.38217
- ],
- [
- 7.84261,
- 47.38215
- ],
- [
- 7.84262,
- 47.38661
- ],
- [
- 7.86243,
- 47.38658
- ],
- [
- 7.8625,
- 47.40454
- ],
- [
- 7.86917,
- 47.40453
- ],
- [
- 7.86919,
- 47.40901
- ],
- [
- 7.87587,
- 47.409
- ],
- [
- 7.87589,
- 47.41351
- ],
- [
- 7.90231,
- 47.41347
- ],
- [
- 7.90229,
- 47.4089
- ],
- [
- 7.92225,
- 47.40887
- ],
- [
- 7.92228,
- 47.4177
- ],
- [
- 7.93556,
- 47.41768
- ],
- [
- 7.93558,
- 47.42211
- ],
- [
- 7.94882,
- 47.42209
- ],
- [
- 7.94884,
- 47.42664
- ],
- [
- 7.95552,
- 47.42663
- ],
- [
- 7.95553,
- 47.43112
- ],
- [
- 7.96884,
- 47.4311
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Solothurn, DTM Relief 2019, WMS Solothurn (SOGIS)"
- },
- "available_projections": [
- "EPSG:2056",
- "CRS:84",
- "EPSG:4326",
- "EPSG:21781",
- "EPSG:3857"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2019",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png",
- "id": "Solothurn-sogis2019-dtm-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, DTM Relief 2019",
- "privacy_policy_url": "https://www.asitvd.ch/tarifs-conditions.html",
- "start_date": "2019",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2019.dtm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.44,
- 47.06
- ],
- [
- 7.42,
- 47.06
- ],
- [
- 7.42,
- 47.08
- ],
- [
- 7.36,
- 47.08
- ],
- [
- 7.36,
- 47.18
- ],
- [
- 7.34,
- 47.18
- ],
- [
- 7.34,
- 47.2
- ],
- [
- 7.32,
- 47.2
- ],
- [
- 7.32,
- 47.24
- ],
- [
- 7.4,
- 47.24
- ],
- [
- 7.4,
- 47.26
- ],
- [
- 7.46,
- 47.26
- ],
- [
- 7.46,
- 47.28
- ],
- [
- 7.48,
- 47.28
- ],
- [
- 7.48,
- 47.26
- ],
- [
- 7.5,
- 47.26
- ],
- [
- 7.5,
- 47.28
- ],
- [
- 7.56,
- 47.28
- ],
- [
- 7.56,
- 47.3
- ],
- [
- 7.6,
- 47.3
- ],
- [
- 7.6,
- 47.28
- ],
- [
- 7.62,
- 47.28
- ],
- [
- 7.62,
- 47.24
- ],
- [
- 7.66,
- 47.24
- ],
- [
- 7.66,
- 47.22
- ],
- [
- 7.68,
- 47.22
- ],
- [
- 7.68,
- 47.2
- ],
- [
- 7.7,
- 47.2
- ],
- [
- 7.7,
- 47.18
- ],
- [
- 7.72,
- 47.18
- ],
- [
- 7.72,
- 47.14
- ],
- [
- 7.54,
- 47.14
- ],
- [
- 7.54,
- 47.12
- ],
- [
- 7.52,
- 47.12
- ],
- [
- 7.52,
- 47.1
- ],
- [
- 7.48,
- 47.1
- ],
- [
- 7.48,
- 47.06
- ],
- [
- 7.44,
- 47.06
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Solothurn, Orthofoto 2014 RGB"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:21781",
- "CRS:84",
- "EPSG:3857",
- "EPSG:2056"
- ],
- "best": false,
- "category": "photo",
- "country_code": "CH",
- "default": false,
- "description": "",
- "end_date": "2014",
- "i18n": false,
- "id": "Solothurn-sogis-ortho2014-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, Orthofoto 2014 RGB",
- "privacy_policy_url": "https://www.so.ch/rechtliches/",
- "start_date": "2014",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2014.rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.84,
- 47.26
- ],
- [
- 7.84,
- 47.24
- ],
- [
- 7.72,
- 47.24
- ],
- [
- 7.72,
- 47.26
- ],
- [
- 7.68,
- 47.26
- ],
- [
- 7.68,
- 47.32
- ],
- [
- 7.72,
- 47.32
- ],
- [
- 7.72,
- 47.34
- ],
- [
- 7.78,
- 47.34
- ],
- [
- 7.78,
- 47.38
- ],
- [
- 7.84,
- 47.38
- ],
- [
- 7.84,
- 47.4
- ],
- [
- 7.86,
- 47.4
- ],
- [
- 7.86,
- 47.42
- ],
- [
- 7.94,
- 47.42
- ],
- [
- 7.94,
- 47.48
- ],
- [
- 7.98,
- 47.48
- ],
- [
- 7.98,
- 47.46
- ],
- [
- 8,
- 47.46
- ],
- [
- 8,
- 47.42
- ],
- [
- 8.04,
- 47.42
- ],
- [
- 8.04,
- 47.34
- ],
- [
- 8.02,
- 47.34
- ],
- [
- 8.02,
- 47.32
- ],
- [
- 7.98,
- 47.32
- ],
- [
- 7.98,
- 47.3
- ],
- [
- 7.94,
- 47.3
- ],
- [
- 7.94,
- 47.32
- ],
- [
- 7.92,
- 47.32
- ],
- [
- 7.92,
- 47.3
- ],
- [
- 7.88,
- 47.3
- ],
- [
- 7.88,
- 47.28
- ],
- [
- 7.86,
- 47.28
- ],
- [
- 7.86,
- 47.26
- ],
- [
- 7.84,
- 47.26
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Solothurn, Orthofoto 2015 RGB"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:21781",
- "CRS:84",
- "EPSG:3857",
- "EPSG:2056"
- ],
- "best": false,
- "category": "photo",
- "country_code": "CH",
- "default": false,
- "description": "",
- "end_date": "2015",
- "i18n": false,
- "id": "Solothurn-sogis-ortho2015-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, Orthofoto 2015 RGB",
- "privacy_policy_url": "https://www.so.ch/rechtliches/",
- "start_date": "2015",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2015.rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.48,
- 47.08
- ],
- [
- 7.48,
- 47.06
- ],
- [
- 7.42,
- 47.06
- ],
- [
- 7.42,
- 47.08
- ],
- [
- 7.36,
- 47.08
- ],
- [
- 7.36,
- 47.18
- ],
- [
- 7.34,
- 47.18
- ],
- [
- 7.34,
- 47.2
- ],
- [
- 7.32,
- 47.2
- ],
- [
- 7.32,
- 47.24
- ],
- [
- 7.4,
- 47.24
- ],
- [
- 7.4,
- 47.26
- ],
- [
- 7.42,
- 47.26
- ],
- [
- 7.42,
- 47.28
- ],
- [
- 7.46,
- 47.28
- ],
- [
- 7.46,
- 47.3
- ],
- [
- 7.52,
- 47.3
- ],
- [
- 7.52,
- 47.32
- ],
- [
- 7.54,
- 47.32
- ],
- [
- 7.54,
- 47.34
- ],
- [
- 7.56,
- 47.34
- ],
- [
- 7.56,
- 47.36
- ],
- [
- 7.62,
- 47.36
- ],
- [
- 7.62,
- 47.38
- ],
- [
- 7.74,
- 47.38
- ],
- [
- 7.74,
- 47.36
- ],
- [
- 7.8,
- 47.36
- ],
- [
- 7.8,
- 47.32
- ],
- [
- 7.76,
- 47.32
- ],
- [
- 7.76,
- 47.3
- ],
- [
- 7.72,
- 47.3
- ],
- [
- 7.72,
- 47.28
- ],
- [
- 7.66,
- 47.28
- ],
- [
- 7.66,
- 47.26
- ],
- [
- 7.62,
- 47.26
- ],
- [
- 7.62,
- 47.24
- ],
- [
- 7.66,
- 47.24
- ],
- [
- 7.66,
- 47.22
- ],
- [
- 7.68,
- 47.22
- ],
- [
- 7.68,
- 47.2
- ],
- [
- 7.7,
- 47.2
- ],
- [
- 7.7,
- 47.18
- ],
- [
- 7.72,
- 47.18
- ],
- [
- 7.72,
- 47.14
- ],
- [
- 7.54,
- 47.14
- ],
- [
- 7.54,
- 47.12
- ],
- [
- 7.52,
- 47.12
- ],
- [
- 7.52,
- 47.1
- ],
- [
- 7.48,
- 47.1
- ],
- [
- 7.48,
- 47.08
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Solothurn, Orthofoto 2016 RGB"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:21781",
- "CRS:84",
- "EPSG:3857",
- "EPSG:2056"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "default": false,
- "description": "",
- "end_date": "2016",
- "i18n": false,
- "id": "Solothurn-sogis-ortho2016-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, Orthofoto 2016 RGB",
- "privacy_policy_url": "https://www.so.ch/rechtliches/",
- "start_date": "2016",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2016_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.84,
- 47.26
- ],
- [
- 7.84,
- 47.24
- ],
- [
- 7.72,
- 47.24
- ],
- [
- 7.72,
- 47.26
- ],
- [
- 7.68,
- 47.26
- ],
- [
- 7.68,
- 47.32
- ],
- [
- 7.72,
- 47.32
- ],
- [
- 7.72,
- 47.34
- ],
- [
- 7.78,
- 47.34
- ],
- [
- 7.78,
- 47.38
- ],
- [
- 7.84,
- 47.38
- ],
- [
- 7.84,
- 47.4
- ],
- [
- 7.86,
- 47.4
- ],
- [
- 7.86,
- 47.42
- ],
- [
- 7.94,
- 47.42
- ],
- [
- 7.94,
- 47.48
- ],
- [
- 7.98,
- 47.48
- ],
- [
- 7.98,
- 47.46
- ],
- [
- 8,
- 47.46
- ],
- [
- 8,
- 47.42
- ],
- [
- 8.04,
- 47.42
- ],
- [
- 8.04,
- 47.34
- ],
- [
- 8.02,
- 47.34
- ],
- [
- 8.02,
- 47.32
- ],
- [
- 7.98,
- 47.32
- ],
- [
- 7.98,
- 47.3
- ],
- [
- 7.94,
- 47.3
- ],
- [
- 7.94,
- 47.32
- ],
- [
- 7.92,
- 47.32
- ],
- [
- 7.92,
- 47.3
- ],
- [
- 7.88,
- 47.3
- ],
- [
- 7.88,
- 47.28
- ],
- [
- 7.86,
- 47.28
- ],
- [
- 7.86,
- 47.26
- ],
- [
- 7.84,
- 47.26
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Solothurn, Orthofoto 2017 RGB"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:21781",
- "CRS:84",
- "EPSG:3857",
- "EPSG:2056"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "default": false,
- "description": "",
- "end_date": "2017",
- "i18n": false,
- "id": "Solothurn-sogis-ortho2017-wms",
- "license_url": "https://wiki.openstreetmap.org/wiki/SOGIS_WMS",
- "min_zoom": 10,
- "name": "Kanton Solothurn, Orthofoto 2017 RGB",
- "privacy_policy_url": "https://www.so.ch/rechtliches/",
- "start_date": "2017",
- "type": "wms",
- "url": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2017_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.63768,
- 47.70041
- ],
- [
- 8.78328,
- 47.6988
- ],
- [
- 8.78304,
- 47.68533
- ],
- [
- 8.87027,
- 47.68427
- ],
- [
- 8.86997,
- 47.6709
- ],
- [
- 8.89901,
- 47.67047
- ],
- [
- 8.89867,
- 47.65698
- ],
- [
- 8.9277,
- 47.65661
- ],
- [
- 8.92828,
- 47.67015
- ],
- [
- 8.95726,
- 47.66973
- ],
- [
- 8.95774,
- 47.68327
- ],
- [
- 9.19061,
- 47.67994
- ],
- [
- 9.19027,
- 47.66645
- ],
- [
- 9.21922,
- 47.66603
- ],
- [
- 9.21899,
- 47.65256
- ],
- [
- 9.24784,
- 47.6521
- ],
- [
- 9.24747,
- 47.63864
- ],
- [
- 9.3057,
- 47.63765
- ],
- [
- 9.30526,
- 47.6242
- ],
- [
- 9.33417,
- 47.62371
- ],
- [
- 9.33348,
- 47.59674
- ],
- [
- 9.39151,
- 47.59577
- ],
- [
- 9.39114,
- 47.58235
- ],
- [
- 9.42007,
- 47.58176
- ],
- [
- 9.4186,
- 47.54139
- ],
- [
- 9.44754,
- 47.54084
- ],
- [
- 9.44717,
- 47.5273
- ],
- [
- 9.47605,
- 47.52681
- ],
- [
- 9.47519,
- 47.49986
- ],
- [
- 9.50414,
- 47.49935
- ],
- [
- 9.5031,
- 47.47242
- ],
- [
- 9.41596,
- 47.47392
- ],
- [
- 9.41554,
- 47.46045
- ],
- [
- 9.3576,
- 47.46141
- ],
- [
- 9.35818,
- 47.47498
- ],
- [
- 9.32896,
- 47.47534
- ],
- [
- 9.32864,
- 47.46188
- ],
- [
- 9.18361,
- 47.4642
- ],
- [
- 9.18411,
- 47.47769
- ],
- [
- 9.15492,
- 47.4781
- ],
- [
- 9.15466,
- 47.46463
- ],
- [
- 9.06736,
- 47.46583
- ],
- [
- 9.06718,
- 47.45234
- ],
- [
- 9.09609,
- 47.45193
- ],
- [
- 9.09582,
- 47.43853
- ],
- [
- 9.06663,
- 47.43883
- ],
- [
- 9.06642,
- 47.42537
- ],
- [
- 9.00829,
- 47.4262
- ],
- [
- 9.00714,
- 47.38573
- ],
- [
- 8.97811,
- 47.38616
- ],
- [
- 8.9774,
- 47.35913
- ],
- [
- 8.9194,
- 47.35989
- ],
- [
- 8.92032,
- 47.38697
- ],
- [
- 8.89136,
- 47.38725
- ],
- [
- 8.89286,
- 47.44117
- ],
- [
- 8.86398,
- 47.44149
- ],
- [
- 8.86604,
- 47.52251
- ],
- [
- 8.80784,
- 47.52317
- ],
- [
- 8.80894,
- 47.56373
- ],
- [
- 8.77985,
- 47.56403
- ],
- [
- 8.78024,
- 47.57751
- ],
- [
- 8.72209,
- 47.57814
- ],
- [
- 8.72337,
- 47.63213
- ],
- [
- 8.6652,
- 47.63273
- ],
- [
- 8.6658,
- 47.6598
- ],
- [
- 8.63674,
- 47.66
- ],
- [
- 8.63768,
- 47.70041
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Thurgau, Basisplan-AV",
- "url": "https://opendata.swiss/dataset/basisplan-av"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:3857"
- ],
- "best": false,
- "category": "map",
- "country_code": "CH",
- "default": false,
- "description": "Basisplan-AV des Kantons Thurgau farbig & schwarzweiss mit Liegenschaften, Nomenklatur, Landes-, Kantons- und Gemeindegrenzen, Einzelobjekten, Bodenbedeckung, Strassennamen, Höhenkurven und Geländemodell",
- "i18n": false,
- "icon": "",
- "id": "kt_tg_av",
- "license_url": "https://opendata.swiss/dataset/basisplan-av",
- "min_zoom": 10,
- "name": "Kanton Thurgau, Basisplan-AV",
- "privacy_policy_url": "https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128",
- "type": "wms",
- "url": "https://ows.geo.tg.ch/geofy_access_proxy/basisplanf?LAYERS=Basisplan_farbig&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.63768,
- 47.70041
- ],
- [
- 8.78328,
- 47.6988
- ],
- [
- 8.78304,
- 47.68533
- ],
- [
- 8.87027,
- 47.68427
- ],
- [
- 8.86997,
- 47.6709
- ],
- [
- 8.89901,
- 47.67047
- ],
- [
- 8.89867,
- 47.65698
- ],
- [
- 8.9277,
- 47.65661
- ],
- [
- 8.92828,
- 47.67015
- ],
- [
- 8.95726,
- 47.66973
- ],
- [
- 8.95774,
- 47.68327
- ],
- [
- 9.19061,
- 47.67994
- ],
- [
- 9.19027,
- 47.66645
- ],
- [
- 9.21922,
- 47.66603
- ],
- [
- 9.21899,
- 47.65256
- ],
- [
- 9.24784,
- 47.6521
- ],
- [
- 9.24747,
- 47.63864
- ],
- [
- 9.3057,
- 47.63765
- ],
- [
- 9.30526,
- 47.6242
- ],
- [
- 9.33417,
- 47.62371
- ],
- [
- 9.33348,
- 47.59674
- ],
- [
- 9.39151,
- 47.59577
- ],
- [
- 9.39114,
- 47.58235
- ],
- [
- 9.42007,
- 47.58176
- ],
- [
- 9.4186,
- 47.54139
- ],
- [
- 9.44754,
- 47.54084
- ],
- [
- 9.44717,
- 47.5273
- ],
- [
- 9.47605,
- 47.52681
- ],
- [
- 9.47519,
- 47.49986
- ],
- [
- 9.50414,
- 47.49935
- ],
- [
- 9.5031,
- 47.47242
- ],
- [
- 9.41596,
- 47.47392
- ],
- [
- 9.41554,
- 47.46045
- ],
- [
- 9.3576,
- 47.46141
- ],
- [
- 9.35818,
- 47.47498
- ],
- [
- 9.32896,
- 47.47534
- ],
- [
- 9.32864,
- 47.46188
- ],
- [
- 9.18361,
- 47.4642
- ],
- [
- 9.18411,
- 47.47769
- ],
- [
- 9.15492,
- 47.4781
- ],
- [
- 9.15466,
- 47.46463
- ],
- [
- 9.06736,
- 47.46583
- ],
- [
- 9.06718,
- 47.45234
- ],
- [
- 9.09609,
- 47.45193
- ],
- [
- 9.09582,
- 47.43853
- ],
- [
- 9.06663,
- 47.43883
- ],
- [
- 9.06642,
- 47.42537
- ],
- [
- 9.00829,
- 47.4262
- ],
- [
- 9.00714,
- 47.38573
- ],
- [
- 8.97811,
- 47.38616
- ],
- [
- 8.9774,
- 47.35913
- ],
- [
- 8.9194,
- 47.35989
- ],
- [
- 8.92032,
- 47.38697
- ],
- [
- 8.89136,
- 47.38725
- ],
- [
- 8.89286,
- 47.44117
- ],
- [
- 8.86398,
- 47.44149
- ],
- [
- 8.86604,
- 47.52251
- ],
- [
- 8.80784,
- 47.52317
- ],
- [
- 8.80894,
- 47.56373
- ],
- [
- 8.77985,
- 47.56403
- ],
- [
- 8.78024,
- 47.57751
- ],
- [
- 8.72209,
- 47.57814
- ],
- [
- 8.72337,
- 47.63213
- ],
- [
- 8.6652,
- 47.63273
- ],
- [
- 8.6658,
- 47.6598
- ],
- [
- 8.63674,
- 47.66
- ],
- [
- 8.63768,
- 47.70041
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Thurgau, Rad-Routen",
- "url": "https://opendata.swiss/dataset/rad-routen"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:3857"
- ],
- "best": false,
- "category": "map",
- "country_code": "CH",
- "default": false,
- "description": "Langsamverkehr: Radweg-Netz (Routen) signalisiert durch Wegweiser",
- "i18n": false,
- "icon": "",
- "id": "kt_tg_radrouten",
- "license_url": "https://opendata.swiss/dataset/rad-routen",
- "min_zoom": 10,
- "name": "Kanton Thurgau, Rad-Routen",
- "privacy_policy_url": "https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128",
- "type": "wms",
- "url": "https://ows.geo.tg.ch/geofy_access_proxy/radwege?LAYERS=Radwege&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.63768,
- 47.70041
- ],
- [
- 8.78328,
- 47.6988
- ],
- [
- 8.78304,
- 47.68533
- ],
- [
- 8.87027,
- 47.68427
- ],
- [
- 8.86997,
- 47.6709
- ],
- [
- 8.89901,
- 47.67047
- ],
- [
- 8.89867,
- 47.65698
- ],
- [
- 8.9277,
- 47.65661
- ],
- [
- 8.92828,
- 47.67015
- ],
- [
- 8.95726,
- 47.66973
- ],
- [
- 8.95774,
- 47.68327
- ],
- [
- 9.19061,
- 47.67994
- ],
- [
- 9.19027,
- 47.66645
- ],
- [
- 9.21922,
- 47.66603
- ],
- [
- 9.21899,
- 47.65256
- ],
- [
- 9.24784,
- 47.6521
- ],
- [
- 9.24747,
- 47.63864
- ],
- [
- 9.3057,
- 47.63765
- ],
- [
- 9.30526,
- 47.6242
- ],
- [
- 9.33417,
- 47.62371
- ],
- [
- 9.33348,
- 47.59674
- ],
- [
- 9.39151,
- 47.59577
- ],
- [
- 9.39114,
- 47.58235
- ],
- [
- 9.42007,
- 47.58176
- ],
- [
- 9.4186,
- 47.54139
- ],
- [
- 9.44754,
- 47.54084
- ],
- [
- 9.44717,
- 47.5273
- ],
- [
- 9.47605,
- 47.52681
- ],
- [
- 9.47519,
- 47.49986
- ],
- [
- 9.50414,
- 47.49935
- ],
- [
- 9.5031,
- 47.47242
- ],
- [
- 9.41596,
- 47.47392
- ],
- [
- 9.41554,
- 47.46045
- ],
- [
- 9.3576,
- 47.46141
- ],
- [
- 9.35818,
- 47.47498
- ],
- [
- 9.32896,
- 47.47534
- ],
- [
- 9.32864,
- 47.46188
- ],
- [
- 9.18361,
- 47.4642
- ],
- [
- 9.18411,
- 47.47769
- ],
- [
- 9.15492,
- 47.4781
- ],
- [
- 9.15466,
- 47.46463
- ],
- [
- 9.06736,
- 47.46583
- ],
- [
- 9.06718,
- 47.45234
- ],
- [
- 9.09609,
- 47.45193
- ],
- [
- 9.09582,
- 47.43853
- ],
- [
- 9.06663,
- 47.43883
- ],
- [
- 9.06642,
- 47.42537
- ],
- [
- 9.00829,
- 47.4262
- ],
- [
- 9.00714,
- 47.38573
- ],
- [
- 8.97811,
- 47.38616
- ],
- [
- 8.9774,
- 47.35913
- ],
- [
- 8.9194,
- 47.35989
- ],
- [
- 8.92032,
- 47.38697
- ],
- [
- 8.89136,
- 47.38725
- ],
- [
- 8.89286,
- 47.44117
- ],
- [
- 8.86398,
- 47.44149
- ],
- [
- 8.86604,
- 47.52251
- ],
- [
- 8.80784,
- 47.52317
- ],
- [
- 8.80894,
- 47.56373
- ],
- [
- 8.77985,
- 47.56403
- ],
- [
- 8.78024,
- 47.57751
- ],
- [
- 8.72209,
- 47.57814
- ],
- [
- 8.72337,
- 47.63213
- ],
- [
- 8.6652,
- 47.63273
- ],
- [
- 8.6658,
- 47.6598
- ],
- [
- 8.63674,
- 47.66
- ],
- [
- 8.63768,
- 47.70041
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Thurgau, DTM Relief 2014",
- "url": "https://opendata.swiss/dataset/reliefschattierung"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:21781"
- ],
- "best": false,
- "category": "elevation",
- "country_code": "CH",
- "default": false,
- "description": "Digitale Repräsentation des Geländes",
- "end_date": "2014",
- "i18n": false,
- "icon": "",
- "id": "kt_tg_dtm_hillshade",
- "license_url": "https://opendata.swiss/dataset/reliefschattierung",
- "min_zoom": 10,
- "name": "Kanton Thurgau Relief DTM",
- "privacy_policy_url": "https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128",
- "start_date": "2014",
- "type": "wms",
- "url": "https://ows-raster.geo.tg.ch/geofy_access_proxy/reliefschattierung?LAYERS=DTMRelief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.63768,
- 47.70041
- ],
- [
- 8.78328,
- 47.6988
- ],
- [
- 8.78304,
- 47.68533
- ],
- [
- 8.87027,
- 47.68427
- ],
- [
- 8.86997,
- 47.6709
- ],
- [
- 8.89901,
- 47.67047
- ],
- [
- 8.89867,
- 47.65698
- ],
- [
- 8.9277,
- 47.65661
- ],
- [
- 8.92828,
- 47.67015
- ],
- [
- 8.95726,
- 47.66973
- ],
- [
- 8.95774,
- 47.68327
- ],
- [
- 9.19061,
- 47.67994
- ],
- [
- 9.19027,
- 47.66645
- ],
- [
- 9.21922,
- 47.66603
- ],
- [
- 9.21899,
- 47.65256
- ],
- [
- 9.24784,
- 47.6521
- ],
- [
- 9.24747,
- 47.63864
- ],
- [
- 9.3057,
- 47.63765
- ],
- [
- 9.30526,
- 47.6242
- ],
- [
- 9.33417,
- 47.62371
- ],
- [
- 9.33348,
- 47.59674
- ],
- [
- 9.39151,
- 47.59577
- ],
- [
- 9.39114,
- 47.58235
- ],
- [
- 9.42007,
- 47.58176
- ],
- [
- 9.4186,
- 47.54139
- ],
- [
- 9.44754,
- 47.54084
- ],
- [
- 9.44717,
- 47.5273
- ],
- [
- 9.47605,
- 47.52681
- ],
- [
- 9.47519,
- 47.49986
- ],
- [
- 9.50414,
- 47.49935
- ],
- [
- 9.5031,
- 47.47242
- ],
- [
- 9.41596,
- 47.47392
- ],
- [
- 9.41554,
- 47.46045
- ],
- [
- 9.3576,
- 47.46141
- ],
- [
- 9.35818,
- 47.47498
- ],
- [
- 9.32896,
- 47.47534
- ],
- [
- 9.32864,
- 47.46188
- ],
- [
- 9.18361,
- 47.4642
- ],
- [
- 9.18411,
- 47.47769
- ],
- [
- 9.15492,
- 47.4781
- ],
- [
- 9.15466,
- 47.46463
- ],
- [
- 9.06736,
- 47.46583
- ],
- [
- 9.06718,
- 47.45234
- ],
- [
- 9.09609,
- 47.45193
- ],
- [
- 9.09582,
- 47.43853
- ],
- [
- 9.06663,
- 47.43883
- ],
- [
- 9.06642,
- 47.42537
- ],
- [
- 9.00829,
- 47.4262
- ],
- [
- 9.00714,
- 47.38573
- ],
- [
- 8.97811,
- 47.38616
- ],
- [
- 8.9774,
- 47.35913
- ],
- [
- 8.9194,
- 47.35989
- ],
- [
- 8.92032,
- 47.38697
- ],
- [
- 8.89136,
- 47.38725
- ],
- [
- 8.89286,
- 47.44117
- ],
- [
- 8.86398,
- 47.44149
- ],
- [
- 8.86604,
- 47.52251
- ],
- [
- 8.80784,
- 47.52317
- ],
- [
- 8.80894,
- 47.56373
- ],
- [
- 8.77985,
- 47.56403
- ],
- [
- 8.78024,
- 47.57751
- ],
- [
- 8.72209,
- 47.57814
- ],
- [
- 8.72337,
- 47.63213
- ],
- [
- 8.6652,
- 47.63273
- ],
- [
- 8.6658,
- 47.6598
- ],
- [
- 8.63674,
- 47.66
- ],
- [
- 8.63768,
- 47.70041
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Thurgau, Wanderwege",
- "url": "https://opendata.swiss/dataset/wanderwege"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:3857"
- ],
- "best": false,
- "category": "map",
- "country_code": "CH",
- "default": false,
- "description": "Langsamverkehr: Verlauf der Wanderwege mit symbolischer Darstellung der Wegweiser, Unterführungen, Treppen und Brücken. Informationen über die Wegoberfläche und Rollstuhlgängigkeit.",
- "i18n": false,
- "icon": "",
- "id": "kt_tg_ww",
- "license_url": "https://opendata.swiss/dataset/wanderwege",
- "min_zoom": 10,
- "name": "Kanton Thurgau, Wanderwege",
- "privacy_policy_url": "https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128",
- "type": "wms",
- "url": "https://ows.geo.tg.ch/geofy_access_proxy/wanderwege?LAYERS=Wanderwege&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.63768,
- 47.70041
- ],
- [
- 8.78328,
- 47.6988
- ],
- [
- 8.78304,
- 47.68533
- ],
- [
- 8.87027,
- 47.68427
- ],
- [
- 8.86997,
- 47.6709
- ],
- [
- 8.89901,
- 47.67047
- ],
- [
- 8.89867,
- 47.65698
- ],
- [
- 8.9277,
- 47.65661
- ],
- [
- 8.92828,
- 47.67015
- ],
- [
- 8.95726,
- 47.66973
- ],
- [
- 8.95774,
- 47.68327
- ],
- [
- 9.19061,
- 47.67994
- ],
- [
- 9.19027,
- 47.66645
- ],
- [
- 9.21922,
- 47.66603
- ],
- [
- 9.21899,
- 47.65256
- ],
- [
- 9.24784,
- 47.6521
- ],
- [
- 9.24747,
- 47.63864
- ],
- [
- 9.3057,
- 47.63765
- ],
- [
- 9.30526,
- 47.6242
- ],
- [
- 9.33417,
- 47.62371
- ],
- [
- 9.33348,
- 47.59674
- ],
- [
- 9.39151,
- 47.59577
- ],
- [
- 9.39114,
- 47.58235
- ],
- [
- 9.42007,
- 47.58176
- ],
- [
- 9.4186,
- 47.54139
- ],
- [
- 9.44754,
- 47.54084
- ],
- [
- 9.44717,
- 47.5273
- ],
- [
- 9.47605,
- 47.52681
- ],
- [
- 9.47519,
- 47.49986
- ],
- [
- 9.50414,
- 47.49935
- ],
- [
- 9.5031,
- 47.47242
- ],
- [
- 9.41596,
- 47.47392
- ],
- [
- 9.41554,
- 47.46045
- ],
- [
- 9.3576,
- 47.46141
- ],
- [
- 9.35818,
- 47.47498
- ],
- [
- 9.32896,
- 47.47534
- ],
- [
- 9.32864,
- 47.46188
- ],
- [
- 9.18361,
- 47.4642
- ],
- [
- 9.18411,
- 47.47769
- ],
- [
- 9.15492,
- 47.4781
- ],
- [
- 9.15466,
- 47.46463
- ],
- [
- 9.06736,
- 47.46583
- ],
- [
- 9.06718,
- 47.45234
- ],
- [
- 9.09609,
- 47.45193
- ],
- [
- 9.09582,
- 47.43853
- ],
- [
- 9.06663,
- 47.43883
- ],
- [
- 9.06642,
- 47.42537
- ],
- [
- 9.00829,
- 47.4262
- ],
- [
- 9.00714,
- 47.38573
- ],
- [
- 8.97811,
- 47.38616
- ],
- [
- 8.9774,
- 47.35913
- ],
- [
- 8.9194,
- 47.35989
- ],
- [
- 8.92032,
- 47.38697
- ],
- [
- 8.89136,
- 47.38725
- ],
- [
- 8.89286,
- 47.44117
- ],
- [
- 8.86398,
- 47.44149
- ],
- [
- 8.86604,
- 47.52251
- ],
- [
- 8.80784,
- 47.52317
- ],
- [
- 8.80894,
- 47.56373
- ],
- [
- 8.77985,
- 47.56403
- ],
- [
- 8.78024,
- 47.57751
- ],
- [
- 8.72209,
- 47.57814
- ],
- [
- 8.72337,
- 47.63213
- ],
- [
- 8.6652,
- 47.63273
- ],
- [
- 8.6658,
- 47.6598
- ],
- [
- 8.63674,
- 47.66
- ],
- [
- 8.63768,
- 47.70041
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kanton Thurgau, Orthofoto2017 RGB",
- "url": "https://opendata.swiss/en/dataset/orthofoto-2017-dop17"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:3857"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "default": false,
- "description": "Digitales multispektrales Orthofotomosaik des Kantons Thurgau",
- "end_date": "2017",
- "i18n": false,
- "icon": "",
- "id": "kt_tg_ortho_2017",
- "license_url": "https://opendata.swiss/dataset/orthofoto-2017-dop17",
- "min_zoom": 10,
- "name": "Kanton Thurgau, Orthofoto2017 RGB",
- "privacy_policy_url": "https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128",
- "start_date": "2017",
- "type": "wms",
- "url": "https://ows-raster.geo.tg.ch/geofy_access_proxy/orthofoto2017?LAYERS=Orthofoto2017_RGB&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.71338,
- 47.21388
- ],
- [
- 8.7137,
- 47.22737
- ],
- [
- 8.8117,
- 47.22626
- ],
- [
- 8.80337,
- 47.23858
- ],
- [
- 8.80866,
- 47.2431
- ],
- [
- 8.82448,
- 47.24656
- ],
- [
- 8.82971,
- 47.24539
- ],
- [
- 8.83652,
- 47.24257
- ],
- [
- 8.84568,
- 47.24253
- ],
- [
- 8.84837,
- 47.24322
- ],
- [
- 8.85232,
- 47.24034
- ],
- [
- 8.86206,
- 47.23882
- ],
- [
- 8.86472,
- 47.23966
- ],
- [
- 8.86863,
- 47.23968
- ],
- [
- 8.87339,
- 47.24125
- ],
- [
- 8.87882,
- 47.24476
- ],
- [
- 8.88054,
- 47.24791
- ],
- [
- 8.89878,
- 47.24976
- ],
- [
- 8.90281,
- 47.25094
- ],
- [
- 8.91025,
- 47.25003
- ],
- [
- 8.92735,
- 47.25406
- ],
- [
- 8.93644,
- 47.25499
- ],
- [
- 8.94233,
- 47.25849
- ],
- [
- 8.94423,
- 47.26173
- ],
- [
- 8.94882,
- 47.26536
- ],
- [
- 8.95094,
- 47.2686
- ],
- [
- 8.95068,
- 47.27108
- ],
- [
- 8.953,
- 47.27285
- ],
- [
- 8.95411,
- 47.27505
- ],
- [
- 8.95504,
- 47.28251
- ],
- [
- 8.95171,
- 47.28527
- ],
- [
- 8.94664,
- 47.28647
- ],
- [
- 8.95258,
- 47.28844
- ],
- [
- 8.95454,
- 47.28982
- ],
- [
- 8.96141,
- 47.30098
- ],
- [
- 8.97552,
- 47.30245
- ],
- [
- 8.98006,
- 47.30416
- ],
- [
- 8.99153,
- 47.31893
- ],
- [
- 8.99069,
- 47.32183
- ],
- [
- 8.98637,
- 47.32542
- ],
- [
- 8.98548,
- 47.32778
- ],
- [
- 8.98364,
- 47.32931
- ],
- [
- 8.98592,
- 47.33815
- ],
- [
- 8.98464,
- 47.34061
- ],
- [
- 8.98079,
- 47.34237
- ],
- [
- 8.98088,
- 47.34835
- ],
- [
- 8.97785,
- 47.35437
- ],
- [
- 8.9759,
- 47.35606
- ],
- [
- 8.97002,
- 47.35843
- ],
- [
- 8.96572,
- 47.3589
- ],
- [
- 8.96238,
- 47.36252
- ],
- [
- 8.95665,
- 47.37432
- ],
- [
- 8.9521,
- 47.37836
- ],
- [
- 8.94778,
- 47.37971
- ],
- [
- 8.95023,
- 47.38346
- ],
- [
- 8.95018,
- 47.38596
- ],
- [
- 8.9488,
- 47.38836
- ],
- [
- 8.9397,
- 47.39403
- ],
- [
- 8.93637,
- 47.39496
- ],
- [
- 8.93251,
- 47.39871
- ],
- [
- 8.92801,
- 47.40148
- ],
- [
- 8.92278,
- 47.4038
- ],
- [
- 8.91388,
- 47.40569
- ],
- [
- 8.91924,
- 47.41213
- ],
- [
- 8.92049,
- 47.41915
- ],
- [
- 8.91829,
- 47.42323
- ],
- [
- 8.92094,
- 47.42544
- ],
- [
- 8.92107,
- 47.42828
- ],
- [
- 8.92571,
- 47.42695
- ],
- [
- 8.93437,
- 47.42796
- ],
- [
- 8.93877,
- 47.43173
- ],
- [
- 8.93974,
- 47.43411
- ],
- [
- 8.93889,
- 47.43725
- ],
- [
- 8.93511,
- 47.43973
- ],
- [
- 8.92349,
- 47.43953
- ],
- [
- 8.91973,
- 47.44081
- ],
- [
- 8.91322,
- 47.44119
- ],
- [
- 8.91162,
- 47.44347
- ],
- [
- 8.91527,
- 47.44628
- ],
- [
- 8.91499,
- 47.45004
- ],
- [
- 8.91196,
- 47.45378
- ],
- [
- 8.90517,
- 47.45791
- ],
- [
- 8.90183,
- 47.46435
- ],
- [
- 8.89735,
- 47.46898
- ],
- [
- 8.89581,
- 47.47219
- ],
- [
- 8.89135,
- 47.4738
- ],
- [
- 8.89143,
- 47.47821
- ],
- [
- 8.90142,
- 47.48133
- ],
- [
- 8.90428,
- 47.48449
- ],
- [
- 8.90314,
- 47.48928
- ],
- [
- 8.90001,
- 47.49187
- ],
- [
- 8.89967,
- 47.49885
- ],
- [
- 8.90357,
- 47.50404
- ],
- [
- 8.90413,
- 47.50745
- ],
- [
- 8.90322,
- 47.51948
- ],
- [
- 8.90497,
- 47.52447
- ],
- [
- 8.90365,
- 47.52691
- ],
- [
- 8.89982,
- 47.52965
- ],
- [
- 8.88423,
- 47.53392
- ],
- [
- 8.87883,
- 47.53277
- ],
- [
- 8.87061,
- 47.53477
- ],
- [
- 8.8602,
- 47.53488
- ],
- [
- 8.85674,
- 47.53594
- ],
- [
- 8.84782,
- 47.5358
- ],
- [
- 8.84614,
- 47.54087
- ],
- [
- 8.8403,
- 47.54654
- ],
- [
- 8.83728,
- 47.55278
- ],
- [
- 8.84275,
- 47.5537
- ],
- [
- 8.84648,
- 47.5562
- ],
- [
- 8.85269,
- 47.55645
- ],
- [
- 8.8562,
- 47.55792
- ],
- [
- 8.85775,
- 47.56141
- ],
- [
- 8.85728,
- 47.56489
- ],
- [
- 8.85511,
- 47.56721
- ],
- [
- 8.85079,
- 47.56818
- ],
- [
- 8.84763,
- 47.57023
- ],
- [
- 8.84538,
- 47.57061
- ],
- [
- 8.8448,
- 47.57309
- ],
- [
- 8.84211,
- 47.57513
- ],
- [
- 8.83326,
- 47.57769
- ],
- [
- 8.82962,
- 47.57778
- ],
- [
- 8.82661,
- 47.57662
- ],
- [
- 8.82137,
- 47.57756
- ],
- [
- 8.81432,
- 47.57598
- ],
- [
- 8.81234,
- 47.5778
- ],
- [
- 8.81222,
- 47.58473
- ],
- [
- 8.81067,
- 47.58639
- ],
- [
- 8.80812,
- 47.58738
- ],
- [
- 8.76818,
- 47.59674
- ],
- [
- 8.7543,
- 47.59729
- ],
- [
- 8.75529,
- 47.60108
- ],
- [
- 8.75416,
- 47.60273
- ],
- [
- 8.74883,
- 47.60588
- ],
- [
- 8.74829,
- 47.60874
- ],
- [
- 8.7507,
- 47.60981
- ],
- [
- 8.75255,
- 47.61292
- ],
- [
- 8.75575,
- 47.61217
- ],
- [
- 8.76102,
- 47.61335
- ],
- [
- 8.78169,
- 47.60634
- ],
- [
- 8.78165,
- 47.60345
- ],
- [
- 8.78467,
- 47.59993
- ],
- [
- 8.80168,
- 47.5966
- ],
- [
- 8.80512,
- 47.59686
- ],
- [
- 8.80895,
- 47.59938
- ],
- [
- 8.81074,
- 47.60981
- ],
- [
- 8.81866,
- 47.61372
- ],
- [
- 8.82001,
- 47.61526
- ],
- [
- 8.82089,
- 47.62058
- ],
- [
- 8.82015,
- 47.62415
- ],
- [
- 8.82415,
- 47.6256
- ],
- [
- 8.83079,
- 47.63206
- ],
- [
- 8.83448,
- 47.64099
- ],
- [
- 8.83182,
- 47.64945
- ],
- [
- 8.82695,
- 47.65206
- ],
- [
- 8.81168,
- 47.65599
- ],
- [
- 8.81112,
- 47.6621
- ],
- [
- 8.81192,
- 47.66454
- ],
- [
- 8.81041,
- 47.66752
- ],
- [
- 8.80881,
- 47.66857
- ],
- [
- 8.80293,
- 47.66978
- ],
- [
- 8.79299,
- 47.66919
- ],
- [
- 8.78685,
- 47.66978
- ],
- [
- 8.78453,
- 47.66899
- ],
- [
- 8.78216,
- 47.66659
- ],
- [
- 8.77921,
- 47.65695
- ],
- [
- 8.77763,
- 47.65563
- ],
- [
- 8.77398,
- 47.65435
- ],
- [
- 8.76623,
- 47.65438
- ],
- [
- 8.76108,
- 47.65257
- ],
- [
- 8.75852,
- 47.65033
- ],
- [
- 8.75464,
- 47.64883
- ],
- [
- 8.7534,
- 47.64733
- ],
- [
- 8.74839,
- 47.64613
- ],
- [
- 8.74329,
- 47.64749
- ],
- [
- 8.73882,
- 47.64651
- ],
- [
- 8.72376,
- 47.64753
- ],
- [
- 8.72063,
- 47.64664
- ],
- [
- 8.71492,
- 47.64885
- ],
- [
- 8.70826,
- 47.64764
- ],
- [
- 8.70481,
- 47.65039
- ],
- [
- 8.70053,
- 47.65199
- ],
- [
- 8.69427,
- 47.65307
- ],
- [
- 8.69242,
- 47.65581
- ],
- [
- 8.68632,
- 47.66094
- ],
- [
- 8.68485,
- 47.66413
- ],
- [
- 8.68574,
- 47.66799
- ],
- [
- 8.68326,
- 47.67315
- ],
- [
- 8.68056,
- 47.67561
- ],
- [
- 8.67521,
- 47.6776
- ],
- [
- 8.67642,
- 47.68177
- ],
- [
- 8.67561,
- 47.68661
- ],
- [
- 8.67427,
- 47.68799
- ],
- [
- 8.67227,
- 47.68891
- ],
- [
- 8.66273,
- 47.69029
- ],
- [
- 8.64644,
- 47.69847
- ],
- [
- 8.63968,
- 47.69877
- ],
- [
- 8.6355,
- 47.69743
- ],
- [
- 8.62162,
- 47.69554
- ],
- [
- 8.61818,
- 47.69279
- ],
- [
- 8.61744,
- 47.69087
- ],
- [
- 8.62007,
- 47.68134
- ],
- [
- 8.61478,
- 47.68308
- ],
- [
- 8.60917,
- 47.68188
- ],
- [
- 8.60199,
- 47.67451
- ],
- [
- 8.59954,
- 47.66923
- ],
- [
- 8.60275,
- 47.66132
- ],
- [
- 8.60979,
- 47.6568
- ],
- [
- 8.6141,
- 47.6564
- ],
- [
- 8.61574,
- 47.65557
- ],
- [
- 8.62231,
- 47.65104
- ],
- [
- 8.62227,
- 47.65024
- ],
- [
- 8.62048,
- 47.64758
- ],
- [
- 8.61939,
- 47.65043
- ],
- [
- 8.61521,
- 47.65452
- ],
- [
- 8.6093,
- 47.65677
- ],
- [
- 8.60324,
- 47.65654
- ],
- [
- 8.60069,
- 47.65541
- ],
- [
- 8.59788,
- 47.65276
- ],
- [
- 8.59645,
- 47.64876
- ],
- [
- 8.59092,
- 47.64623
- ],
- [
- 8.58937,
- 47.6444
- ],
- [
- 8.58874,
- 47.63936
- ],
- [
- 8.59116,
- 47.62755
- ],
- [
- 8.59325,
- 47.62233
- ],
- [
- 8.59838,
- 47.61587
- ],
- [
- 8.59854,
- 47.6145
- ],
- [
- 8.59114,
- 47.60917
- ],
- [
- 8.58937,
- 47.60682
- ],
- [
- 8.58796,
- 47.60319
- ],
- [
- 8.58788,
- 47.59909
- ],
- [
- 8.58203,
- 47.59793
- ],
- [
- 8.57398,
- 47.59329
- ],
- [
- 8.57146,
- 47.58988
- ],
- [
- 8.57035,
- 47.58633
- ],
- [
- 8.57203,
- 47.57985
- ],
- [
- 8.56771,
- 47.57799
- ],
- [
- 8.56506,
- 47.57524
- ],
- [
- 8.56117,
- 47.56407
- ],
- [
- 8.55707,
- 47.55947
- ],
- [
- 8.55616,
- 47.56336
- ],
- [
- 8.55206,
- 47.56904
- ],
- [
- 8.55334,
- 47.57146
- ],
- [
- 8.5526,
- 47.57599
- ],
- [
- 8.55007,
- 47.57806
- ],
- [
- 8.54666,
- 47.57923
- ],
- [
- 8.5435,
- 47.58228
- ],
- [
- 8.54319,
- 47.5851
- ],
- [
- 8.54888,
- 47.5879
- ],
- [
- 8.55175,
- 47.58777
- ],
- [
- 8.55764,
- 47.58963
- ],
- [
- 8.56114,
- 47.59151
- ],
- [
- 8.56265,
- 47.5946
- ],
- [
- 8.56668,
- 47.59565
- ],
- [
- 8.56902,
- 47.59748
- ],
- [
- 8.56953,
- 47.60049
- ],
- [
- 8.57237,
- 47.60386
- ],
- [
- 8.57308,
- 47.60641
- ],
- [
- 8.57562,
- 47.60676
- ],
- [
- 8.579,
- 47.60845
- ],
- [
- 8.58076,
- 47.61031
- ],
- [
- 8.58125,
- 47.61203
- ],
- [
- 8.58025,
- 47.61456
- ],
- [
- 8.57712,
- 47.61636
- ],
- [
- 8.57525,
- 47.61957
- ],
- [
- 8.57277,
- 47.6211
- ],
- [
- 8.56785,
- 47.62164
- ],
- [
- 8.56341,
- 47.62697
- ],
- [
- 8.56105,
- 47.62838
- ],
- [
- 8.54803,
- 47.62998
- ],
- [
- 8.54558,
- 47.63122
- ],
- [
- 8.54498,
- 47.63297
- ],
- [
- 8.54288,
- 47.63458
- ],
- [
- 8.53995,
- 47.63565
- ],
- [
- 8.52769,
- 47.63634
- ],
- [
- 8.52112,
- 47.63887
- ],
- [
- 8.51478,
- 47.6385
- ],
- [
- 8.50932,
- 47.63559
- ],
- [
- 8.50829,
- 47.62942
- ],
- [
- 8.50161,
- 47.62597
- ],
- [
- 8.5007,
- 47.62421
- ],
- [
- 8.50149,
- 47.62154
- ],
- [
- 8.49253,
- 47.61893
- ],
- [
- 8.48884,
- 47.61953
- ],
- [
- 8.47669,
- 47.61937
- ],
- [
- 8.47439,
- 47.61838
- ],
- [
- 8.47154,
- 47.61495
- ],
- [
- 8.47129,
- 47.61307
- ],
- [
- 8.46785,
- 47.61272
- ],
- [
- 8.46446,
- 47.61109
- ],
- [
- 8.46173,
- 47.60659
- ],
- [
- 8.45519,
- 47.60676
- ],
- [
- 8.45061,
- 47.60411
- ],
- [
- 8.4499,
- 47.60164
- ],
- [
- 8.4507,
- 47.59584
- ],
- [
- 8.45382,
- 47.59343
- ],
- [
- 8.45428,
- 47.5866
- ],
- [
- 8.4563,
- 47.5848
- ],
- [
- 8.46014,
- 47.58382
- ],
- [
- 8.46332,
- 47.58044
- ],
- [
- 8.46881,
- 47.5795
- ],
- [
- 8.46219,
- 47.57653
- ],
- [
- 8.45419,
- 47.57668
- ],
- [
- 8.43642,
- 47.57154
- ],
- [
- 8.43161,
- 47.57102
- ],
- [
- 8.42476,
- 47.57231
- ],
- [
- 8.41477,
- 47.56879
- ],
- [
- 8.41304,
- 47.56745
- ],
- [
- 8.41034,
- 47.56194
- ],
- [
- 8.41039,
- 47.55972
- ],
- [
- 8.40789,
- 47.55465
- ],
- [
- 8.40846,
- 47.55018
- ],
- [
- 8.39964,
- 47.54444
- ],
- [
- 8.39609,
- 47.543
- ],
- [
- 8.39469,
- 47.54094
- ],
- [
- 8.39495,
- 47.53674
- ],
- [
- 8.39136,
- 47.53568
- ],
- [
- 8.38835,
- 47.53305
- ],
- [
- 8.38525,
- 47.53316
- ],
- [
- 8.38113,
- 47.53219
- ],
- [
- 8.3774,
- 47.52969
- ],
- [
- 8.37518,
- 47.52679
- ],
- [
- 8.37279,
- 47.51651
- ],
- [
- 8.36579,
- 47.51663
- ],
- [
- 8.35666,
- 47.51348
- ],
- [
- 8.35439,
- 47.51104
- ],
- [
- 8.35103,
- 47.50314
- ],
- [
- 8.3524,
- 47.49957
- ],
- [
- 8.35163,
- 47.4973
- ],
- [
- 8.35274,
- 47.49484
- ],
- [
- 8.3545,
- 47.49355
- ],
- [
- 8.3557,
- 47.48979
- ],
- [
- 8.35533,
- 47.48525
- ],
- [
- 8.35698,
- 47.47931
- ],
- [
- 8.35891,
- 47.47743
- ],
- [
- 8.36187,
- 47.47645
- ],
- [
- 8.36722,
- 47.47654
- ],
- [
- 8.36702,
- 47.47487
- ],
- [
- 8.36073,
- 47.47222
- ],
- [
- 8.35903,
- 47.46604
- ],
- [
- 8.35996,
- 47.46381
- ],
- [
- 8.36326,
- 47.46204
- ],
- [
- 8.3673,
- 47.45653
- ],
- [
- 8.36975,
- 47.45504
- ],
- [
- 8.37393,
- 47.45472
- ],
- [
- 8.37754,
- 47.45201
- ],
- [
- 8.37583,
- 47.45068
- ],
- [
- 8.37441,
- 47.44614
- ],
- [
- 8.37623,
- 47.43818
- ],
- [
- 8.37168,
- 47.43675
- ],
- [
- 8.36855,
- 47.43406
- ],
- [
- 8.3681,
- 47.43158
- ],
- [
- 8.36904,
- 47.42863
- ],
- [
- 8.37222,
- 47.42603
- ],
- [
- 8.38283,
- 47.42346
- ],
- [
- 8.38371,
- 47.42251
- ],
- [
- 8.38073,
- 47.42207
- ],
- [
- 8.37555,
- 47.4178
- ],
- [
- 8.37598,
- 47.41378
- ],
- [
- 8.37441,
- 47.40906
- ],
- [
- 8.36067,
- 47.40664
- ],
- [
- 8.35789,
- 47.40542
- ],
- [
- 8.35629,
- 47.40377
- ],
- [
- 8.35661,
- 47.39961
- ],
- [
- 8.36195,
- 47.39516
- ],
- [
- 8.36577,
- 47.39429
- ],
- [
- 8.37601,
- 47.3947
- ],
- [
- 8.37743,
- 47.39218
- ],
- [
- 8.38036,
- 47.39048
- ],
- [
- 8.38761,
- 47.39035
- ],
- [
- 8.38832,
- 47.38012
- ],
- [
- 8.39034,
- 47.37527
- ],
- [
- 8.39355,
- 47.3719
- ],
- [
- 8.39387,
- 47.36945
- ],
- [
- 8.39574,
- 47.3671
- ],
- [
- 8.39902,
- 47.36608
- ],
- [
- 8.39836,
- 47.36408
- ],
- [
- 8.40012,
- 47.36094
- ],
- [
- 8.40103,
- 47.35433
- ],
- [
- 8.39728,
- 47.34677
- ],
- [
- 8.39779,
- 47.34475
- ],
- [
- 8.40186,
- 47.3391
- ],
- [
- 8.40931,
- 47.33409
- ],
- [
- 8.4061,
- 47.32975
- ],
- [
- 8.40578,
- 47.32667
- ],
- [
- 8.40689,
- 47.32447
- ],
- [
- 8.41295,
- 47.3205
- ],
- [
- 8.41611,
- 47.31996
- ],
- [
- 8.42948,
- 47.32227
- ],
- [
- 8.43556,
- 47.32083
- ],
- [
- 8.43437,
- 47.31954
- ],
- [
- 8.43155,
- 47.31851
- ],
- [
- 8.42609,
- 47.31375
- ],
- [
- 8.42276,
- 47.30706
- ],
- [
- 8.42311,
- 47.30368
- ],
- [
- 8.41745,
- 47.3015
- ],
- [
- 8.41372,
- 47.29824
- ],
- [
- 8.40012,
- 47.29564
- ],
- [
- 8.39768,
- 47.29392
- ],
- [
- 8.39518,
- 47.29516
- ],
- [
- 8.39108,
- 47.29552
- ],
- [
- 8.38602,
- 47.29437
- ],
- [
- 8.38272,
- 47.29225
- ],
- [
- 8.38198,
- 47.29034
- ],
- [
- 8.38255,
- 47.2881
- ],
- [
- 8.38508,
- 47.28565
- ],
- [
- 8.38977,
- 47.27507
- ],
- [
- 8.39563,
- 47.271
- ],
- [
- 8.39407,
- 47.26672
- ],
- [
- 8.39415,
- 47.26361
- ],
- [
- 8.39756,
- 47.25986
- ],
- [
- 8.39614,
- 47.25481
- ],
- [
- 8.39742,
- 47.25189
- ],
- [
- 8.40647,
- 47.24452
- ],
- [
- 8.40826,
- 47.24118
- ],
- [
- 8.40761,
- 47.23957
- ],
- [
- 8.4096,
- 47.23585
- ],
- [
- 8.41073,
- 47.22799
- ],
- [
- 8.41248,
- 47.22433
- ],
- [
- 8.41695,
- 47.22014
- ],
- [
- 8.41959,
- 47.21902
- ],
- [
- 8.42269,
- 47.21886
- ],
- [
- 8.42977,
- 47.22
- ],
- [
- 8.43936,
- 47.21937
- ],
- [
- 8.45,
- 47.21363
- ],
- [
- 8.4546,
- 47.21334
- ],
- [
- 8.45625,
- 47.21081
- ],
- [
- 8.4591,
- 47.20934
- ],
- [
- 8.46447,
- 47.20928
- ],
- [
- 8.46609,
- 47.20862
- ],
- [
- 8.46868,
- 47.20533
- ],
- [
- 8.47329,
- 47.20398
- ],
- [
- 8.47693,
- 47.20458
- ],
- [
- 8.48399,
- 47.20392
- ],
- [
- 8.49489,
- 47.20738
- ],
- [
- 8.504,
- 47.20768
- ],
- [
- 8.51538,
- 47.21152
- ],
- [
- 8.51753,
- 47.21271
- ],
- [
- 8.51906,
- 47.21495
- ],
- [
- 8.5306,
- 47.21306
- ],
- [
- 8.53307,
- 47.21325
- ],
- [
- 8.5415,
- 47.21778
- ],
- [
- 8.54456,
- 47.21707
- ],
- [
- 8.55407,
- 47.21726
- ],
- [
- 8.55858,
- 47.21517
- ],
- [
- 8.56984,
- 47.2139
- ],
- [
- 8.57491,
- 47.21255
- ],
- [
- 8.57749,
- 47.20771
- ],
- [
- 8.58044,
- 47.2064
- ],
- [
- 8.58408,
- 47.20603
- ],
- [
- 8.59012,
- 47.20714
- ],
- [
- 8.58965,
- 47.2046
- ],
- [
- 8.59074,
- 47.20195
- ],
- [
- 8.59358,
- 47.1986
- ],
- [
- 8.59581,
- 47.19753
- ],
- [
- 8.60168,
- 47.19722
- ],
- [
- 8.60653,
- 47.1992
- ],
- [
- 8.60725,
- 47.19885
- ],
- [
- 8.61097,
- 47.19387
- ],
- [
- 8.61128,
- 47.19059
- ],
- [
- 8.61391,
- 47.18838
- ],
- [
- 8.61522,
- 47.18515
- ],
- [
- 8.61938,
- 47.18045
- ],
- [
- 8.61976,
- 47.17918
- ],
- [
- 8.61721,
- 47.17359
- ],
- [
- 8.6196,
- 47.1698
- ],
- [
- 8.62292,
- 47.16821
- ],
- [
- 8.6339,
- 47.16715
- ],
- [
- 8.63561,
- 47.16578
- ],
- [
- 8.63965,
- 47.16459
- ],
- [
- 8.64287,
- 47.16443
- ],
- [
- 8.65216,
- 47.16598
- ],
- [
- 8.65425,
- 47.16552
- ],
- [
- 8.6549,
- 47.15967
- ],
- [
- 8.65649,
- 47.15783
- ],
- [
- 8.65882,
- 47.15658
- ],
- [
- 8.66853,
- 47.15492
- ],
- [
- 8.67847,
- 47.15558
- ],
- [
- 8.68241,
- 47.15759
- ],
- [
- 8.69361,
- 47.15898
- ],
- [
- 8.69804,
- 47.16134
- ],
- [
- 8.69886,
- 47.16303
- ],
- [
- 8.6977,
- 47.17033
- ],
- [
- 8.69599,
- 47.17232
- ],
- [
- 8.68919,
- 47.17566
- ],
- [
- 8.6872,
- 47.17959
- ],
- [
- 8.6879,
- 47.18229
- ],
- [
- 8.69186,
- 47.18485
- ],
- [
- 8.69824,
- 47.19205
- ],
- [
- 8.70323,
- 47.19326
- ],
- [
- 8.70852,
- 47.19602
- ],
- [
- 8.71423,
- 47.19693
- ],
- [
- 8.71692,
- 47.19893
- ],
- [
- 8.74212,
- 47.2071
- ],
- [
- 8.74218,
- 47.21355
- ],
- [
- 8.71338,
- 47.21388
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Oberflächenschummerung"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:21780",
- "EPSG:21782",
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:3857"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2014",
- "id": "OGDLidarZH-DOM",
- "license_url": "https://opendata.swiss/de/dataset/wms-digitales-hohenmodell-ogd1",
- "min_zoom": 10,
- "name": "Kanton Zurich, Oberflächenschummerung 50cm",
- "privacy_policy_url": "https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html",
- "start_date": "2014",
- "type": "wms",
- "url": "https://wms.zh.ch/OGDLidarZH?FORMAT=image/jpeg&STYLES=&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=dom2014hillshade&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.71338,
- 47.21388
- ],
- [
- 8.7137,
- 47.22737
- ],
- [
- 8.8117,
- 47.22626
- ],
- [
- 8.80337,
- 47.23858
- ],
- [
- 8.80866,
- 47.2431
- ],
- [
- 8.82448,
- 47.24656
- ],
- [
- 8.82971,
- 47.24539
- ],
- [
- 8.83652,
- 47.24257
- ],
- [
- 8.84568,
- 47.24253
- ],
- [
- 8.84837,
- 47.24322
- ],
- [
- 8.85232,
- 47.24034
- ],
- [
- 8.86206,
- 47.23882
- ],
- [
- 8.86472,
- 47.23966
- ],
- [
- 8.86863,
- 47.23968
- ],
- [
- 8.87339,
- 47.24125
- ],
- [
- 8.87882,
- 47.24476
- ],
- [
- 8.88054,
- 47.24791
- ],
- [
- 8.89878,
- 47.24976
- ],
- [
- 8.90281,
- 47.25094
- ],
- [
- 8.91025,
- 47.25003
- ],
- [
- 8.92735,
- 47.25406
- ],
- [
- 8.93644,
- 47.25499
- ],
- [
- 8.94233,
- 47.25849
- ],
- [
- 8.94423,
- 47.26173
- ],
- [
- 8.94882,
- 47.26536
- ],
- [
- 8.95094,
- 47.2686
- ],
- [
- 8.95068,
- 47.27108
- ],
- [
- 8.953,
- 47.27285
- ],
- [
- 8.95411,
- 47.27505
- ],
- [
- 8.95504,
- 47.28251
- ],
- [
- 8.95171,
- 47.28527
- ],
- [
- 8.94664,
- 47.28647
- ],
- [
- 8.95258,
- 47.28844
- ],
- [
- 8.95454,
- 47.28982
- ],
- [
- 8.96141,
- 47.30098
- ],
- [
- 8.97552,
- 47.30245
- ],
- [
- 8.98006,
- 47.30416
- ],
- [
- 8.99153,
- 47.31893
- ],
- [
- 8.99069,
- 47.32183
- ],
- [
- 8.98637,
- 47.32542
- ],
- [
- 8.98548,
- 47.32778
- ],
- [
- 8.98364,
- 47.32931
- ],
- [
- 8.98592,
- 47.33815
- ],
- [
- 8.98464,
- 47.34061
- ],
- [
- 8.98079,
- 47.34237
- ],
- [
- 8.98088,
- 47.34835
- ],
- [
- 8.97785,
- 47.35437
- ],
- [
- 8.9759,
- 47.35606
- ],
- [
- 8.97002,
- 47.35843
- ],
- [
- 8.96572,
- 47.3589
- ],
- [
- 8.96238,
- 47.36252
- ],
- [
- 8.95665,
- 47.37432
- ],
- [
- 8.9521,
- 47.37836
- ],
- [
- 8.94778,
- 47.37971
- ],
- [
- 8.95023,
- 47.38346
- ],
- [
- 8.95018,
- 47.38596
- ],
- [
- 8.9488,
- 47.38836
- ],
- [
- 8.9397,
- 47.39403
- ],
- [
- 8.93637,
- 47.39496
- ],
- [
- 8.93251,
- 47.39871
- ],
- [
- 8.92801,
- 47.40148
- ],
- [
- 8.92278,
- 47.4038
- ],
- [
- 8.91388,
- 47.40569
- ],
- [
- 8.91924,
- 47.41213
- ],
- [
- 8.92049,
- 47.41915
- ],
- [
- 8.91829,
- 47.42323
- ],
- [
- 8.92094,
- 47.42544
- ],
- [
- 8.92107,
- 47.42828
- ],
- [
- 8.92571,
- 47.42695
- ],
- [
- 8.93437,
- 47.42796
- ],
- [
- 8.93877,
- 47.43173
- ],
- [
- 8.93974,
- 47.43411
- ],
- [
- 8.93889,
- 47.43725
- ],
- [
- 8.93511,
- 47.43973
- ],
- [
- 8.92349,
- 47.43953
- ],
- [
- 8.91973,
- 47.44081
- ],
- [
- 8.91322,
- 47.44119
- ],
- [
- 8.91162,
- 47.44347
- ],
- [
- 8.91527,
- 47.44628
- ],
- [
- 8.91499,
- 47.45004
- ],
- [
- 8.91196,
- 47.45378
- ],
- [
- 8.90517,
- 47.45791
- ],
- [
- 8.90183,
- 47.46435
- ],
- [
- 8.89735,
- 47.46898
- ],
- [
- 8.89581,
- 47.47219
- ],
- [
- 8.89135,
- 47.4738
- ],
- [
- 8.89143,
- 47.47821
- ],
- [
- 8.90142,
- 47.48133
- ],
- [
- 8.90428,
- 47.48449
- ],
- [
- 8.90314,
- 47.48928
- ],
- [
- 8.90001,
- 47.49187
- ],
- [
- 8.89967,
- 47.49885
- ],
- [
- 8.90357,
- 47.50404
- ],
- [
- 8.90413,
- 47.50745
- ],
- [
- 8.90322,
- 47.51948
- ],
- [
- 8.90497,
- 47.52447
- ],
- [
- 8.90365,
- 47.52691
- ],
- [
- 8.89982,
- 47.52965
- ],
- [
- 8.88423,
- 47.53392
- ],
- [
- 8.87883,
- 47.53277
- ],
- [
- 8.87061,
- 47.53477
- ],
- [
- 8.8602,
- 47.53488
- ],
- [
- 8.85674,
- 47.53594
- ],
- [
- 8.84782,
- 47.5358
- ],
- [
- 8.84614,
- 47.54087
- ],
- [
- 8.8403,
- 47.54654
- ],
- [
- 8.83728,
- 47.55278
- ],
- [
- 8.84275,
- 47.5537
- ],
- [
- 8.84648,
- 47.5562
- ],
- [
- 8.85269,
- 47.55645
- ],
- [
- 8.8562,
- 47.55792
- ],
- [
- 8.85775,
- 47.56141
- ],
- [
- 8.85728,
- 47.56489
- ],
- [
- 8.85511,
- 47.56721
- ],
- [
- 8.85079,
- 47.56818
- ],
- [
- 8.84763,
- 47.57023
- ],
- [
- 8.84538,
- 47.57061
- ],
- [
- 8.8448,
- 47.57309
- ],
- [
- 8.84211,
- 47.57513
- ],
- [
- 8.83326,
- 47.57769
- ],
- [
- 8.82962,
- 47.57778
- ],
- [
- 8.82661,
- 47.57662
- ],
- [
- 8.82137,
- 47.57756
- ],
- [
- 8.81432,
- 47.57598
- ],
- [
- 8.81234,
- 47.5778
- ],
- [
- 8.81222,
- 47.58473
- ],
- [
- 8.81067,
- 47.58639
- ],
- [
- 8.80812,
- 47.58738
- ],
- [
- 8.76818,
- 47.59674
- ],
- [
- 8.7543,
- 47.59729
- ],
- [
- 8.75529,
- 47.60108
- ],
- [
- 8.75416,
- 47.60273
- ],
- [
- 8.74883,
- 47.60588
- ],
- [
- 8.74829,
- 47.60874
- ],
- [
- 8.7507,
- 47.60981
- ],
- [
- 8.75255,
- 47.61292
- ],
- [
- 8.75575,
- 47.61217
- ],
- [
- 8.76102,
- 47.61335
- ],
- [
- 8.78169,
- 47.60634
- ],
- [
- 8.78165,
- 47.60345
- ],
- [
- 8.78467,
- 47.59993
- ],
- [
- 8.80168,
- 47.5966
- ],
- [
- 8.80512,
- 47.59686
- ],
- [
- 8.80895,
- 47.59938
- ],
- [
- 8.81074,
- 47.60981
- ],
- [
- 8.81866,
- 47.61372
- ],
- [
- 8.82001,
- 47.61526
- ],
- [
- 8.82089,
- 47.62058
- ],
- [
- 8.82015,
- 47.62415
- ],
- [
- 8.82415,
- 47.6256
- ],
- [
- 8.83079,
- 47.63206
- ],
- [
- 8.83448,
- 47.64099
- ],
- [
- 8.83182,
- 47.64945
- ],
- [
- 8.82695,
- 47.65206
- ],
- [
- 8.81168,
- 47.65599
- ],
- [
- 8.81112,
- 47.6621
- ],
- [
- 8.81192,
- 47.66454
- ],
- [
- 8.81041,
- 47.66752
- ],
- [
- 8.80881,
- 47.66857
- ],
- [
- 8.80293,
- 47.66978
- ],
- [
- 8.79299,
- 47.66919
- ],
- [
- 8.78685,
- 47.66978
- ],
- [
- 8.78453,
- 47.66899
- ],
- [
- 8.78216,
- 47.66659
- ],
- [
- 8.77921,
- 47.65695
- ],
- [
- 8.77763,
- 47.65563
- ],
- [
- 8.77398,
- 47.65435
- ],
- [
- 8.76623,
- 47.65438
- ],
- [
- 8.76108,
- 47.65257
- ],
- [
- 8.75852,
- 47.65033
- ],
- [
- 8.75464,
- 47.64883
- ],
- [
- 8.7534,
- 47.64733
- ],
- [
- 8.74839,
- 47.64613
- ],
- [
- 8.74329,
- 47.64749
- ],
- [
- 8.73882,
- 47.64651
- ],
- [
- 8.72376,
- 47.64753
- ],
- [
- 8.72063,
- 47.64664
- ],
- [
- 8.71492,
- 47.64885
- ],
- [
- 8.70826,
- 47.64764
- ],
- [
- 8.70481,
- 47.65039
- ],
- [
- 8.70053,
- 47.65199
- ],
- [
- 8.69427,
- 47.65307
- ],
- [
- 8.69242,
- 47.65581
- ],
- [
- 8.68632,
- 47.66094
- ],
- [
- 8.68485,
- 47.66413
- ],
- [
- 8.68574,
- 47.66799
- ],
- [
- 8.68326,
- 47.67315
- ],
- [
- 8.68056,
- 47.67561
- ],
- [
- 8.67521,
- 47.6776
- ],
- [
- 8.67642,
- 47.68177
- ],
- [
- 8.67561,
- 47.68661
- ],
- [
- 8.67427,
- 47.68799
- ],
- [
- 8.67227,
- 47.68891
- ],
- [
- 8.66273,
- 47.69029
- ],
- [
- 8.64644,
- 47.69847
- ],
- [
- 8.63968,
- 47.69877
- ],
- [
- 8.6355,
- 47.69743
- ],
- [
- 8.62162,
- 47.69554
- ],
- [
- 8.61818,
- 47.69279
- ],
- [
- 8.61744,
- 47.69087
- ],
- [
- 8.62007,
- 47.68134
- ],
- [
- 8.61478,
- 47.68308
- ],
- [
- 8.60917,
- 47.68188
- ],
- [
- 8.60199,
- 47.67451
- ],
- [
- 8.59954,
- 47.66923
- ],
- [
- 8.60275,
- 47.66132
- ],
- [
- 8.60979,
- 47.6568
- ],
- [
- 8.6141,
- 47.6564
- ],
- [
- 8.61574,
- 47.65557
- ],
- [
- 8.62231,
- 47.65104
- ],
- [
- 8.62227,
- 47.65024
- ],
- [
- 8.62048,
- 47.64758
- ],
- [
- 8.61939,
- 47.65043
- ],
- [
- 8.61521,
- 47.65452
- ],
- [
- 8.6093,
- 47.65677
- ],
- [
- 8.60324,
- 47.65654
- ],
- [
- 8.60069,
- 47.65541
- ],
- [
- 8.59788,
- 47.65276
- ],
- [
- 8.59645,
- 47.64876
- ],
- [
- 8.59092,
- 47.64623
- ],
- [
- 8.58937,
- 47.6444
- ],
- [
- 8.58874,
- 47.63936
- ],
- [
- 8.59116,
- 47.62755
- ],
- [
- 8.59325,
- 47.62233
- ],
- [
- 8.59838,
- 47.61587
- ],
- [
- 8.59854,
- 47.6145
- ],
- [
- 8.59114,
- 47.60917
- ],
- [
- 8.58937,
- 47.60682
- ],
- [
- 8.58796,
- 47.60319
- ],
- [
- 8.58788,
- 47.59909
- ],
- [
- 8.58203,
- 47.59793
- ],
- [
- 8.57398,
- 47.59329
- ],
- [
- 8.57146,
- 47.58988
- ],
- [
- 8.57035,
- 47.58633
- ],
- [
- 8.57203,
- 47.57985
- ],
- [
- 8.56771,
- 47.57799
- ],
- [
- 8.56506,
- 47.57524
- ],
- [
- 8.56117,
- 47.56407
- ],
- [
- 8.55707,
- 47.55947
- ],
- [
- 8.55616,
- 47.56336
- ],
- [
- 8.55206,
- 47.56904
- ],
- [
- 8.55334,
- 47.57146
- ],
- [
- 8.5526,
- 47.57599
- ],
- [
- 8.55007,
- 47.57806
- ],
- [
- 8.54666,
- 47.57923
- ],
- [
- 8.5435,
- 47.58228
- ],
- [
- 8.54319,
- 47.5851
- ],
- [
- 8.54888,
- 47.5879
- ],
- [
- 8.55175,
- 47.58777
- ],
- [
- 8.55764,
- 47.58963
- ],
- [
- 8.56114,
- 47.59151
- ],
- [
- 8.56265,
- 47.5946
- ],
- [
- 8.56668,
- 47.59565
- ],
- [
- 8.56902,
- 47.59748
- ],
- [
- 8.56953,
- 47.60049
- ],
- [
- 8.57237,
- 47.60386
- ],
- [
- 8.57308,
- 47.60641
- ],
- [
- 8.57562,
- 47.60676
- ],
- [
- 8.579,
- 47.60845
- ],
- [
- 8.58076,
- 47.61031
- ],
- [
- 8.58125,
- 47.61203
- ],
- [
- 8.58025,
- 47.61456
- ],
- [
- 8.57712,
- 47.61636
- ],
- [
- 8.57525,
- 47.61957
- ],
- [
- 8.57277,
- 47.6211
- ],
- [
- 8.56785,
- 47.62164
- ],
- [
- 8.56341,
- 47.62697
- ],
- [
- 8.56105,
- 47.62838
- ],
- [
- 8.54803,
- 47.62998
- ],
- [
- 8.54558,
- 47.63122
- ],
- [
- 8.54498,
- 47.63297
- ],
- [
- 8.54288,
- 47.63458
- ],
- [
- 8.53995,
- 47.63565
- ],
- [
- 8.52769,
- 47.63634
- ],
- [
- 8.52112,
- 47.63887
- ],
- [
- 8.51478,
- 47.6385
- ],
- [
- 8.50932,
- 47.63559
- ],
- [
- 8.50829,
- 47.62942
- ],
- [
- 8.50161,
- 47.62597
- ],
- [
- 8.5007,
- 47.62421
- ],
- [
- 8.50149,
- 47.62154
- ],
- [
- 8.49253,
- 47.61893
- ],
- [
- 8.48884,
- 47.61953
- ],
- [
- 8.47669,
- 47.61937
- ],
- [
- 8.47439,
- 47.61838
- ],
- [
- 8.47154,
- 47.61495
- ],
- [
- 8.47129,
- 47.61307
- ],
- [
- 8.46785,
- 47.61272
- ],
- [
- 8.46446,
- 47.61109
- ],
- [
- 8.46173,
- 47.60659
- ],
- [
- 8.45519,
- 47.60676
- ],
- [
- 8.45061,
- 47.60411
- ],
- [
- 8.4499,
- 47.60164
- ],
- [
- 8.4507,
- 47.59584
- ],
- [
- 8.45382,
- 47.59343
- ],
- [
- 8.45428,
- 47.5866
- ],
- [
- 8.4563,
- 47.5848
- ],
- [
- 8.46014,
- 47.58382
- ],
- [
- 8.46332,
- 47.58044
- ],
- [
- 8.46881,
- 47.5795
- ],
- [
- 8.46219,
- 47.57653
- ],
- [
- 8.45419,
- 47.57668
- ],
- [
- 8.43642,
- 47.57154
- ],
- [
- 8.43161,
- 47.57102
- ],
- [
- 8.42476,
- 47.57231
- ],
- [
- 8.41477,
- 47.56879
- ],
- [
- 8.41304,
- 47.56745
- ],
- [
- 8.41034,
- 47.56194
- ],
- [
- 8.41039,
- 47.55972
- ],
- [
- 8.40789,
- 47.55465
- ],
- [
- 8.40846,
- 47.55018
- ],
- [
- 8.39964,
- 47.54444
- ],
- [
- 8.39609,
- 47.543
- ],
- [
- 8.39469,
- 47.54094
- ],
- [
- 8.39495,
- 47.53674
- ],
- [
- 8.39136,
- 47.53568
- ],
- [
- 8.38835,
- 47.53305
- ],
- [
- 8.38525,
- 47.53316
- ],
- [
- 8.38113,
- 47.53219
- ],
- [
- 8.3774,
- 47.52969
- ],
- [
- 8.37518,
- 47.52679
- ],
- [
- 8.37279,
- 47.51651
- ],
- [
- 8.36579,
- 47.51663
- ],
- [
- 8.35666,
- 47.51348
- ],
- [
- 8.35439,
- 47.51104
- ],
- [
- 8.35103,
- 47.50314
- ],
- [
- 8.3524,
- 47.49957
- ],
- [
- 8.35163,
- 47.4973
- ],
- [
- 8.35274,
- 47.49484
- ],
- [
- 8.3545,
- 47.49355
- ],
- [
- 8.3557,
- 47.48979
- ],
- [
- 8.35533,
- 47.48525
- ],
- [
- 8.35698,
- 47.47931
- ],
- [
- 8.35891,
- 47.47743
- ],
- [
- 8.36187,
- 47.47645
- ],
- [
- 8.36722,
- 47.47654
- ],
- [
- 8.36702,
- 47.47487
- ],
- [
- 8.36073,
- 47.47222
- ],
- [
- 8.35903,
- 47.46604
- ],
- [
- 8.35996,
- 47.46381
- ],
- [
- 8.36326,
- 47.46204
- ],
- [
- 8.3673,
- 47.45653
- ],
- [
- 8.36975,
- 47.45504
- ],
- [
- 8.37393,
- 47.45472
- ],
- [
- 8.37754,
- 47.45201
- ],
- [
- 8.37583,
- 47.45068
- ],
- [
- 8.37441,
- 47.44614
- ],
- [
- 8.37623,
- 47.43818
- ],
- [
- 8.37168,
- 47.43675
- ],
- [
- 8.36855,
- 47.43406
- ],
- [
- 8.3681,
- 47.43158
- ],
- [
- 8.36904,
- 47.42863
- ],
- [
- 8.37222,
- 47.42603
- ],
- [
- 8.38283,
- 47.42346
- ],
- [
- 8.38371,
- 47.42251
- ],
- [
- 8.38073,
- 47.42207
- ],
- [
- 8.37555,
- 47.4178
- ],
- [
- 8.37598,
- 47.41378
- ],
- [
- 8.37441,
- 47.40906
- ],
- [
- 8.36067,
- 47.40664
- ],
- [
- 8.35789,
- 47.40542
- ],
- [
- 8.35629,
- 47.40377
- ],
- [
- 8.35661,
- 47.39961
- ],
- [
- 8.36195,
- 47.39516
- ],
- [
- 8.36577,
- 47.39429
- ],
- [
- 8.37601,
- 47.3947
- ],
- [
- 8.37743,
- 47.39218
- ],
- [
- 8.38036,
- 47.39048
- ],
- [
- 8.38761,
- 47.39035
- ],
- [
- 8.38832,
- 47.38012
- ],
- [
- 8.39034,
- 47.37527
- ],
- [
- 8.39355,
- 47.3719
- ],
- [
- 8.39387,
- 47.36945
- ],
- [
- 8.39574,
- 47.3671
- ],
- [
- 8.39902,
- 47.36608
- ],
- [
- 8.39836,
- 47.36408
- ],
- [
- 8.40012,
- 47.36094
- ],
- [
- 8.40103,
- 47.35433
- ],
- [
- 8.39728,
- 47.34677
- ],
- [
- 8.39779,
- 47.34475
- ],
- [
- 8.40186,
- 47.3391
- ],
- [
- 8.40931,
- 47.33409
- ],
- [
- 8.4061,
- 47.32975
- ],
- [
- 8.40578,
- 47.32667
- ],
- [
- 8.40689,
- 47.32447
- ],
- [
- 8.41295,
- 47.3205
- ],
- [
- 8.41611,
- 47.31996
- ],
- [
- 8.42948,
- 47.32227
- ],
- [
- 8.43556,
- 47.32083
- ],
- [
- 8.43437,
- 47.31954
- ],
- [
- 8.43155,
- 47.31851
- ],
- [
- 8.42609,
- 47.31375
- ],
- [
- 8.42276,
- 47.30706
- ],
- [
- 8.42311,
- 47.30368
- ],
- [
- 8.41745,
- 47.3015
- ],
- [
- 8.41372,
- 47.29824
- ],
- [
- 8.40012,
- 47.29564
- ],
- [
- 8.39768,
- 47.29392
- ],
- [
- 8.39518,
- 47.29516
- ],
- [
- 8.39108,
- 47.29552
- ],
- [
- 8.38602,
- 47.29437
- ],
- [
- 8.38272,
- 47.29225
- ],
- [
- 8.38198,
- 47.29034
- ],
- [
- 8.38255,
- 47.2881
- ],
- [
- 8.38508,
- 47.28565
- ],
- [
- 8.38977,
- 47.27507
- ],
- [
- 8.39563,
- 47.271
- ],
- [
- 8.39407,
- 47.26672
- ],
- [
- 8.39415,
- 47.26361
- ],
- [
- 8.39756,
- 47.25986
- ],
- [
- 8.39614,
- 47.25481
- ],
- [
- 8.39742,
- 47.25189
- ],
- [
- 8.40647,
- 47.24452
- ],
- [
- 8.40826,
- 47.24118
- ],
- [
- 8.40761,
- 47.23957
- ],
- [
- 8.4096,
- 47.23585
- ],
- [
- 8.41073,
- 47.22799
- ],
- [
- 8.41248,
- 47.22433
- ],
- [
- 8.41695,
- 47.22014
- ],
- [
- 8.41959,
- 47.21902
- ],
- [
- 8.42269,
- 47.21886
- ],
- [
- 8.42977,
- 47.22
- ],
- [
- 8.43936,
- 47.21937
- ],
- [
- 8.45,
- 47.21363
- ],
- [
- 8.4546,
- 47.21334
- ],
- [
- 8.45625,
- 47.21081
- ],
- [
- 8.4591,
- 47.20934
- ],
- [
- 8.46447,
- 47.20928
- ],
- [
- 8.46609,
- 47.20862
- ],
- [
- 8.46868,
- 47.20533
- ],
- [
- 8.47329,
- 47.20398
- ],
- [
- 8.47693,
- 47.20458
- ],
- [
- 8.48399,
- 47.20392
- ],
- [
- 8.49489,
- 47.20738
- ],
- [
- 8.504,
- 47.20768
- ],
- [
- 8.51538,
- 47.21152
- ],
- [
- 8.51753,
- 47.21271
- ],
- [
- 8.51906,
- 47.21495
- ],
- [
- 8.5306,
- 47.21306
- ],
- [
- 8.53307,
- 47.21325
- ],
- [
- 8.5415,
- 47.21778
- ],
- [
- 8.54456,
- 47.21707
- ],
- [
- 8.55407,
- 47.21726
- ],
- [
- 8.55858,
- 47.21517
- ],
- [
- 8.56984,
- 47.2139
- ],
- [
- 8.57491,
- 47.21255
- ],
- [
- 8.57749,
- 47.20771
- ],
- [
- 8.58044,
- 47.2064
- ],
- [
- 8.58408,
- 47.20603
- ],
- [
- 8.59012,
- 47.20714
- ],
- [
- 8.58965,
- 47.2046
- ],
- [
- 8.59074,
- 47.20195
- ],
- [
- 8.59358,
- 47.1986
- ],
- [
- 8.59581,
- 47.19753
- ],
- [
- 8.60168,
- 47.19722
- ],
- [
- 8.60653,
- 47.1992
- ],
- [
- 8.60725,
- 47.19885
- ],
- [
- 8.61097,
- 47.19387
- ],
- [
- 8.61128,
- 47.19059
- ],
- [
- 8.61391,
- 47.18838
- ],
- [
- 8.61522,
- 47.18515
- ],
- [
- 8.61938,
- 47.18045
- ],
- [
- 8.61976,
- 47.17918
- ],
- [
- 8.61721,
- 47.17359
- ],
- [
- 8.6196,
- 47.1698
- ],
- [
- 8.62292,
- 47.16821
- ],
- [
- 8.6339,
- 47.16715
- ],
- [
- 8.63561,
- 47.16578
- ],
- [
- 8.63965,
- 47.16459
- ],
- [
- 8.64287,
- 47.16443
- ],
- [
- 8.65216,
- 47.16598
- ],
- [
- 8.65425,
- 47.16552
- ],
- [
- 8.6549,
- 47.15967
- ],
- [
- 8.65649,
- 47.15783
- ],
- [
- 8.65882,
- 47.15658
- ],
- [
- 8.66853,
- 47.15492
- ],
- [
- 8.67847,
- 47.15558
- ],
- [
- 8.68241,
- 47.15759
- ],
- [
- 8.69361,
- 47.15898
- ],
- [
- 8.69804,
- 47.16134
- ],
- [
- 8.69886,
- 47.16303
- ],
- [
- 8.6977,
- 47.17033
- ],
- [
- 8.69599,
- 47.17232
- ],
- [
- 8.68919,
- 47.17566
- ],
- [
- 8.6872,
- 47.17959
- ],
- [
- 8.6879,
- 47.18229
- ],
- [
- 8.69186,
- 47.18485
- ],
- [
- 8.69824,
- 47.19205
- ],
- [
- 8.70323,
- 47.19326
- ],
- [
- 8.70852,
- 47.19602
- ],
- [
- 8.71423,
- 47.19693
- ],
- [
- 8.71692,
- 47.19893
- ],
- [
- 8.74212,
- 47.2071
- ],
- [
- 8.74218,
- 47.21355
- ],
- [
- 8.71338,
- 47.21388
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Terrainschummerung"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:21780",
- "EPSG:21782",
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:3857"
- ],
- "category": "elevation",
- "country_code": "CH",
- "end_date": "2014",
- "id": "OGDLidarZH-DTM",
- "license_url": "https://opendata.swiss/de/dataset/wms-digitales-hohenmodell-ogd1",
- "min_zoom": 10,
- "name": "Kanton Zurich, Terrainschummerung 50cm",
- "privacy_policy_url": "https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html",
- "start_date": "2014",
- "type": "wms",
- "url": "https://wms.zh.ch/OGDLidarZH?FORMAT=image/jpeg&STYLES=&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=dtm2014hillshade&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.71338,
- 47.21388
- ],
- [
- 8.7137,
- 47.22737
- ],
- [
- 8.8117,
- 47.22626
- ],
- [
- 8.80337,
- 47.23858
- ],
- [
- 8.80866,
- 47.2431
- ],
- [
- 8.82448,
- 47.24656
- ],
- [
- 8.82971,
- 47.24539
- ],
- [
- 8.83652,
- 47.24257
- ],
- [
- 8.84568,
- 47.24253
- ],
- [
- 8.84837,
- 47.24322
- ],
- [
- 8.85232,
- 47.24034
- ],
- [
- 8.86206,
- 47.23882
- ],
- [
- 8.86472,
- 47.23966
- ],
- [
- 8.86863,
- 47.23968
- ],
- [
- 8.87339,
- 47.24125
- ],
- [
- 8.87882,
- 47.24476
- ],
- [
- 8.88054,
- 47.24791
- ],
- [
- 8.89878,
- 47.24976
- ],
- [
- 8.90281,
- 47.25094
- ],
- [
- 8.91025,
- 47.25003
- ],
- [
- 8.92735,
- 47.25406
- ],
- [
- 8.93644,
- 47.25499
- ],
- [
- 8.94233,
- 47.25849
- ],
- [
- 8.94423,
- 47.26173
- ],
- [
- 8.94882,
- 47.26536
- ],
- [
- 8.95094,
- 47.2686
- ],
- [
- 8.95068,
- 47.27108
- ],
- [
- 8.953,
- 47.27285
- ],
- [
- 8.95411,
- 47.27505
- ],
- [
- 8.95504,
- 47.28251
- ],
- [
- 8.95171,
- 47.28527
- ],
- [
- 8.94664,
- 47.28647
- ],
- [
- 8.95258,
- 47.28844
- ],
- [
- 8.95454,
- 47.28982
- ],
- [
- 8.96141,
- 47.30098
- ],
- [
- 8.97552,
- 47.30245
- ],
- [
- 8.98006,
- 47.30416
- ],
- [
- 8.99153,
- 47.31893
- ],
- [
- 8.99069,
- 47.32183
- ],
- [
- 8.98637,
- 47.32542
- ],
- [
- 8.98548,
- 47.32778
- ],
- [
- 8.98364,
- 47.32931
- ],
- [
- 8.98592,
- 47.33815
- ],
- [
- 8.98464,
- 47.34061
- ],
- [
- 8.98079,
- 47.34237
- ],
- [
- 8.98088,
- 47.34835
- ],
- [
- 8.97785,
- 47.35437
- ],
- [
- 8.9759,
- 47.35606
- ],
- [
- 8.97002,
- 47.35843
- ],
- [
- 8.96572,
- 47.3589
- ],
- [
- 8.96238,
- 47.36252
- ],
- [
- 8.95665,
- 47.37432
- ],
- [
- 8.9521,
- 47.37836
- ],
- [
- 8.94778,
- 47.37971
- ],
- [
- 8.95023,
- 47.38346
- ],
- [
- 8.95018,
- 47.38596
- ],
- [
- 8.9488,
- 47.38836
- ],
- [
- 8.9397,
- 47.39403
- ],
- [
- 8.93637,
- 47.39496
- ],
- [
- 8.93251,
- 47.39871
- ],
- [
- 8.92801,
- 47.40148
- ],
- [
- 8.92278,
- 47.4038
- ],
- [
- 8.91388,
- 47.40569
- ],
- [
- 8.91924,
- 47.41213
- ],
- [
- 8.92049,
- 47.41915
- ],
- [
- 8.91829,
- 47.42323
- ],
- [
- 8.92094,
- 47.42544
- ],
- [
- 8.92107,
- 47.42828
- ],
- [
- 8.92571,
- 47.42695
- ],
- [
- 8.93437,
- 47.42796
- ],
- [
- 8.93877,
- 47.43173
- ],
- [
- 8.93974,
- 47.43411
- ],
- [
- 8.93889,
- 47.43725
- ],
- [
- 8.93511,
- 47.43973
- ],
- [
- 8.92349,
- 47.43953
- ],
- [
- 8.91973,
- 47.44081
- ],
- [
- 8.91322,
- 47.44119
- ],
- [
- 8.91162,
- 47.44347
- ],
- [
- 8.91527,
- 47.44628
- ],
- [
- 8.91499,
- 47.45004
- ],
- [
- 8.91196,
- 47.45378
- ],
- [
- 8.90517,
- 47.45791
- ],
- [
- 8.90183,
- 47.46435
- ],
- [
- 8.89735,
- 47.46898
- ],
- [
- 8.89581,
- 47.47219
- ],
- [
- 8.89135,
- 47.4738
- ],
- [
- 8.89143,
- 47.47821
- ],
- [
- 8.90142,
- 47.48133
- ],
- [
- 8.90428,
- 47.48449
- ],
- [
- 8.90314,
- 47.48928
- ],
- [
- 8.90001,
- 47.49187
- ],
- [
- 8.89967,
- 47.49885
- ],
- [
- 8.90357,
- 47.50404
- ],
- [
- 8.90413,
- 47.50745
- ],
- [
- 8.90322,
- 47.51948
- ],
- [
- 8.90497,
- 47.52447
- ],
- [
- 8.90365,
- 47.52691
- ],
- [
- 8.89982,
- 47.52965
- ],
- [
- 8.88423,
- 47.53392
- ],
- [
- 8.87883,
- 47.53277
- ],
- [
- 8.87061,
- 47.53477
- ],
- [
- 8.8602,
- 47.53488
- ],
- [
- 8.85674,
- 47.53594
- ],
- [
- 8.84782,
- 47.5358
- ],
- [
- 8.84614,
- 47.54087
- ],
- [
- 8.8403,
- 47.54654
- ],
- [
- 8.83728,
- 47.55278
- ],
- [
- 8.84275,
- 47.5537
- ],
- [
- 8.84648,
- 47.5562
- ],
- [
- 8.85269,
- 47.55645
- ],
- [
- 8.8562,
- 47.55792
- ],
- [
- 8.85775,
- 47.56141
- ],
- [
- 8.85728,
- 47.56489
- ],
- [
- 8.85511,
- 47.56721
- ],
- [
- 8.85079,
- 47.56818
- ],
- [
- 8.84763,
- 47.57023
- ],
- [
- 8.84538,
- 47.57061
- ],
- [
- 8.8448,
- 47.57309
- ],
- [
- 8.84211,
- 47.57513
- ],
- [
- 8.83326,
- 47.57769
- ],
- [
- 8.82962,
- 47.57778
- ],
- [
- 8.82661,
- 47.57662
- ],
- [
- 8.82137,
- 47.57756
- ],
- [
- 8.81432,
- 47.57598
- ],
- [
- 8.81234,
- 47.5778
- ],
- [
- 8.81222,
- 47.58473
- ],
- [
- 8.81067,
- 47.58639
- ],
- [
- 8.80812,
- 47.58738
- ],
- [
- 8.76818,
- 47.59674
- ],
- [
- 8.7543,
- 47.59729
- ],
- [
- 8.75529,
- 47.60108
- ],
- [
- 8.75416,
- 47.60273
- ],
- [
- 8.74883,
- 47.60588
- ],
- [
- 8.74829,
- 47.60874
- ],
- [
- 8.7507,
- 47.60981
- ],
- [
- 8.75255,
- 47.61292
- ],
- [
- 8.75575,
- 47.61217
- ],
- [
- 8.76102,
- 47.61335
- ],
- [
- 8.78169,
- 47.60634
- ],
- [
- 8.78165,
- 47.60345
- ],
- [
- 8.78467,
- 47.59993
- ],
- [
- 8.80168,
- 47.5966
- ],
- [
- 8.80512,
- 47.59686
- ],
- [
- 8.80895,
- 47.59938
- ],
- [
- 8.81074,
- 47.60981
- ],
- [
- 8.81866,
- 47.61372
- ],
- [
- 8.82001,
- 47.61526
- ],
- [
- 8.82089,
- 47.62058
- ],
- [
- 8.82015,
- 47.62415
- ],
- [
- 8.82415,
- 47.6256
- ],
- [
- 8.83079,
- 47.63206
- ],
- [
- 8.83448,
- 47.64099
- ],
- [
- 8.83182,
- 47.64945
- ],
- [
- 8.82695,
- 47.65206
- ],
- [
- 8.81168,
- 47.65599
- ],
- [
- 8.81112,
- 47.6621
- ],
- [
- 8.81192,
- 47.66454
- ],
- [
- 8.81041,
- 47.66752
- ],
- [
- 8.80881,
- 47.66857
- ],
- [
- 8.80293,
- 47.66978
- ],
- [
- 8.79299,
- 47.66919
- ],
- [
- 8.78685,
- 47.66978
- ],
- [
- 8.78453,
- 47.66899
- ],
- [
- 8.78216,
- 47.66659
- ],
- [
- 8.77921,
- 47.65695
- ],
- [
- 8.77763,
- 47.65563
- ],
- [
- 8.77398,
- 47.65435
- ],
- [
- 8.76623,
- 47.65438
- ],
- [
- 8.76108,
- 47.65257
- ],
- [
- 8.75852,
- 47.65033
- ],
- [
- 8.75464,
- 47.64883
- ],
- [
- 8.7534,
- 47.64733
- ],
- [
- 8.74839,
- 47.64613
- ],
- [
- 8.74329,
- 47.64749
- ],
- [
- 8.73882,
- 47.64651
- ],
- [
- 8.72376,
- 47.64753
- ],
- [
- 8.72063,
- 47.64664
- ],
- [
- 8.71492,
- 47.64885
- ],
- [
- 8.70826,
- 47.64764
- ],
- [
- 8.70481,
- 47.65039
- ],
- [
- 8.70053,
- 47.65199
- ],
- [
- 8.69427,
- 47.65307
- ],
- [
- 8.69242,
- 47.65581
- ],
- [
- 8.68632,
- 47.66094
- ],
- [
- 8.68485,
- 47.66413
- ],
- [
- 8.68574,
- 47.66799
- ],
- [
- 8.68326,
- 47.67315
- ],
- [
- 8.68056,
- 47.67561
- ],
- [
- 8.67521,
- 47.6776
- ],
- [
- 8.67642,
- 47.68177
- ],
- [
- 8.67561,
- 47.68661
- ],
- [
- 8.67427,
- 47.68799
- ],
- [
- 8.67227,
- 47.68891
- ],
- [
- 8.66273,
- 47.69029
- ],
- [
- 8.64644,
- 47.69847
- ],
- [
- 8.63968,
- 47.69877
- ],
- [
- 8.6355,
- 47.69743
- ],
- [
- 8.62162,
- 47.69554
- ],
- [
- 8.61818,
- 47.69279
- ],
- [
- 8.61744,
- 47.69087
- ],
- [
- 8.62007,
- 47.68134
- ],
- [
- 8.61478,
- 47.68308
- ],
- [
- 8.60917,
- 47.68188
- ],
- [
- 8.60199,
- 47.67451
- ],
- [
- 8.59954,
- 47.66923
- ],
- [
- 8.60275,
- 47.66132
- ],
- [
- 8.60979,
- 47.6568
- ],
- [
- 8.6141,
- 47.6564
- ],
- [
- 8.61574,
- 47.65557
- ],
- [
- 8.62231,
- 47.65104
- ],
- [
- 8.62227,
- 47.65024
- ],
- [
- 8.62048,
- 47.64758
- ],
- [
- 8.61939,
- 47.65043
- ],
- [
- 8.61521,
- 47.65452
- ],
- [
- 8.6093,
- 47.65677
- ],
- [
- 8.60324,
- 47.65654
- ],
- [
- 8.60069,
- 47.65541
- ],
- [
- 8.59788,
- 47.65276
- ],
- [
- 8.59645,
- 47.64876
- ],
- [
- 8.59092,
- 47.64623
- ],
- [
- 8.58937,
- 47.6444
- ],
- [
- 8.58874,
- 47.63936
- ],
- [
- 8.59116,
- 47.62755
- ],
- [
- 8.59325,
- 47.62233
- ],
- [
- 8.59838,
- 47.61587
- ],
- [
- 8.59854,
- 47.6145
- ],
- [
- 8.59114,
- 47.60917
- ],
- [
- 8.58937,
- 47.60682
- ],
- [
- 8.58796,
- 47.60319
- ],
- [
- 8.58788,
- 47.59909
- ],
- [
- 8.58203,
- 47.59793
- ],
- [
- 8.57398,
- 47.59329
- ],
- [
- 8.57146,
- 47.58988
- ],
- [
- 8.57035,
- 47.58633
- ],
- [
- 8.57203,
- 47.57985
- ],
- [
- 8.56771,
- 47.57799
- ],
- [
- 8.56506,
- 47.57524
- ],
- [
- 8.56117,
- 47.56407
- ],
- [
- 8.55707,
- 47.55947
- ],
- [
- 8.55616,
- 47.56336
- ],
- [
- 8.55206,
- 47.56904
- ],
- [
- 8.55334,
- 47.57146
- ],
- [
- 8.5526,
- 47.57599
- ],
- [
- 8.55007,
- 47.57806
- ],
- [
- 8.54666,
- 47.57923
- ],
- [
- 8.5435,
- 47.58228
- ],
- [
- 8.54319,
- 47.5851
- ],
- [
- 8.54888,
- 47.5879
- ],
- [
- 8.55175,
- 47.58777
- ],
- [
- 8.55764,
- 47.58963
- ],
- [
- 8.56114,
- 47.59151
- ],
- [
- 8.56265,
- 47.5946
- ],
- [
- 8.56668,
- 47.59565
- ],
- [
- 8.56902,
- 47.59748
- ],
- [
- 8.56953,
- 47.60049
- ],
- [
- 8.57237,
- 47.60386
- ],
- [
- 8.57308,
- 47.60641
- ],
- [
- 8.57562,
- 47.60676
- ],
- [
- 8.579,
- 47.60845
- ],
- [
- 8.58076,
- 47.61031
- ],
- [
- 8.58125,
- 47.61203
- ],
- [
- 8.58025,
- 47.61456
- ],
- [
- 8.57712,
- 47.61636
- ],
- [
- 8.57525,
- 47.61957
- ],
- [
- 8.57277,
- 47.6211
- ],
- [
- 8.56785,
- 47.62164
- ],
- [
- 8.56341,
- 47.62697
- ],
- [
- 8.56105,
- 47.62838
- ],
- [
- 8.54803,
- 47.62998
- ],
- [
- 8.54558,
- 47.63122
- ],
- [
- 8.54498,
- 47.63297
- ],
- [
- 8.54288,
- 47.63458
- ],
- [
- 8.53995,
- 47.63565
- ],
- [
- 8.52769,
- 47.63634
- ],
- [
- 8.52112,
- 47.63887
- ],
- [
- 8.51478,
- 47.6385
- ],
- [
- 8.50932,
- 47.63559
- ],
- [
- 8.50829,
- 47.62942
- ],
- [
- 8.50161,
- 47.62597
- ],
- [
- 8.5007,
- 47.62421
- ],
- [
- 8.50149,
- 47.62154
- ],
- [
- 8.49253,
- 47.61893
- ],
- [
- 8.48884,
- 47.61953
- ],
- [
- 8.47669,
- 47.61937
- ],
- [
- 8.47439,
- 47.61838
- ],
- [
- 8.47154,
- 47.61495
- ],
- [
- 8.47129,
- 47.61307
- ],
- [
- 8.46785,
- 47.61272
- ],
- [
- 8.46446,
- 47.61109
- ],
- [
- 8.46173,
- 47.60659
- ],
- [
- 8.45519,
- 47.60676
- ],
- [
- 8.45061,
- 47.60411
- ],
- [
- 8.4499,
- 47.60164
- ],
- [
- 8.4507,
- 47.59584
- ],
- [
- 8.45382,
- 47.59343
- ],
- [
- 8.45428,
- 47.5866
- ],
- [
- 8.4563,
- 47.5848
- ],
- [
- 8.46014,
- 47.58382
- ],
- [
- 8.46332,
- 47.58044
- ],
- [
- 8.46881,
- 47.5795
- ],
- [
- 8.46219,
- 47.57653
- ],
- [
- 8.45419,
- 47.57668
- ],
- [
- 8.43642,
- 47.57154
- ],
- [
- 8.43161,
- 47.57102
- ],
- [
- 8.42476,
- 47.57231
- ],
- [
- 8.41477,
- 47.56879
- ],
- [
- 8.41304,
- 47.56745
- ],
- [
- 8.41034,
- 47.56194
- ],
- [
- 8.41039,
- 47.55972
- ],
- [
- 8.40789,
- 47.55465
- ],
- [
- 8.40846,
- 47.55018
- ],
- [
- 8.39964,
- 47.54444
- ],
- [
- 8.39609,
- 47.543
- ],
- [
- 8.39469,
- 47.54094
- ],
- [
- 8.39495,
- 47.53674
- ],
- [
- 8.39136,
- 47.53568
- ],
- [
- 8.38835,
- 47.53305
- ],
- [
- 8.38525,
- 47.53316
- ],
- [
- 8.38113,
- 47.53219
- ],
- [
- 8.3774,
- 47.52969
- ],
- [
- 8.37518,
- 47.52679
- ],
- [
- 8.37279,
- 47.51651
- ],
- [
- 8.36579,
- 47.51663
- ],
- [
- 8.35666,
- 47.51348
- ],
- [
- 8.35439,
- 47.51104
- ],
- [
- 8.35103,
- 47.50314
- ],
- [
- 8.3524,
- 47.49957
- ],
- [
- 8.35163,
- 47.4973
- ],
- [
- 8.35274,
- 47.49484
- ],
- [
- 8.3545,
- 47.49355
- ],
- [
- 8.3557,
- 47.48979
- ],
- [
- 8.35533,
- 47.48525
- ],
- [
- 8.35698,
- 47.47931
- ],
- [
- 8.35891,
- 47.47743
- ],
- [
- 8.36187,
- 47.47645
- ],
- [
- 8.36722,
- 47.47654
- ],
- [
- 8.36702,
- 47.47487
- ],
- [
- 8.36073,
- 47.47222
- ],
- [
- 8.35903,
- 47.46604
- ],
- [
- 8.35996,
- 47.46381
- ],
- [
- 8.36326,
- 47.46204
- ],
- [
- 8.3673,
- 47.45653
- ],
- [
- 8.36975,
- 47.45504
- ],
- [
- 8.37393,
- 47.45472
- ],
- [
- 8.37754,
- 47.45201
- ],
- [
- 8.37583,
- 47.45068
- ],
- [
- 8.37441,
- 47.44614
- ],
- [
- 8.37623,
- 47.43818
- ],
- [
- 8.37168,
- 47.43675
- ],
- [
- 8.36855,
- 47.43406
- ],
- [
- 8.3681,
- 47.43158
- ],
- [
- 8.36904,
- 47.42863
- ],
- [
- 8.37222,
- 47.42603
- ],
- [
- 8.38283,
- 47.42346
- ],
- [
- 8.38371,
- 47.42251
- ],
- [
- 8.38073,
- 47.42207
- ],
- [
- 8.37555,
- 47.4178
- ],
- [
- 8.37598,
- 47.41378
- ],
- [
- 8.37441,
- 47.40906
- ],
- [
- 8.36067,
- 47.40664
- ],
- [
- 8.35789,
- 47.40542
- ],
- [
- 8.35629,
- 47.40377
- ],
- [
- 8.35661,
- 47.39961
- ],
- [
- 8.36195,
- 47.39516
- ],
- [
- 8.36577,
- 47.39429
- ],
- [
- 8.37601,
- 47.3947
- ],
- [
- 8.37743,
- 47.39218
- ],
- [
- 8.38036,
- 47.39048
- ],
- [
- 8.38761,
- 47.39035
- ],
- [
- 8.38832,
- 47.38012
- ],
- [
- 8.39034,
- 47.37527
- ],
- [
- 8.39355,
- 47.3719
- ],
- [
- 8.39387,
- 47.36945
- ],
- [
- 8.39574,
- 47.3671
- ],
- [
- 8.39902,
- 47.36608
- ],
- [
- 8.39836,
- 47.36408
- ],
- [
- 8.40012,
- 47.36094
- ],
- [
- 8.40103,
- 47.35433
- ],
- [
- 8.39728,
- 47.34677
- ],
- [
- 8.39779,
- 47.34475
- ],
- [
- 8.40186,
- 47.3391
- ],
- [
- 8.40931,
- 47.33409
- ],
- [
- 8.4061,
- 47.32975
- ],
- [
- 8.40578,
- 47.32667
- ],
- [
- 8.40689,
- 47.32447
- ],
- [
- 8.41295,
- 47.3205
- ],
- [
- 8.41611,
- 47.31996
- ],
- [
- 8.42948,
- 47.32227
- ],
- [
- 8.43556,
- 47.32083
- ],
- [
- 8.43437,
- 47.31954
- ],
- [
- 8.43155,
- 47.31851
- ],
- [
- 8.42609,
- 47.31375
- ],
- [
- 8.42276,
- 47.30706
- ],
- [
- 8.42311,
- 47.30368
- ],
- [
- 8.41745,
- 47.3015
- ],
- [
- 8.41372,
- 47.29824
- ],
- [
- 8.40012,
- 47.29564
- ],
- [
- 8.39768,
- 47.29392
- ],
- [
- 8.39518,
- 47.29516
- ],
- [
- 8.39108,
- 47.29552
- ],
- [
- 8.38602,
- 47.29437
- ],
- [
- 8.38272,
- 47.29225
- ],
- [
- 8.38198,
- 47.29034
- ],
- [
- 8.38255,
- 47.2881
- ],
- [
- 8.38508,
- 47.28565
- ],
- [
- 8.38977,
- 47.27507
- ],
- [
- 8.39563,
- 47.271
- ],
- [
- 8.39407,
- 47.26672
- ],
- [
- 8.39415,
- 47.26361
- ],
- [
- 8.39756,
- 47.25986
- ],
- [
- 8.39614,
- 47.25481
- ],
- [
- 8.39742,
- 47.25189
- ],
- [
- 8.40647,
- 47.24452
- ],
- [
- 8.40826,
- 47.24118
- ],
- [
- 8.40761,
- 47.23957
- ],
- [
- 8.4096,
- 47.23585
- ],
- [
- 8.41073,
- 47.22799
- ],
- [
- 8.41248,
- 47.22433
- ],
- [
- 8.41695,
- 47.22014
- ],
- [
- 8.41959,
- 47.21902
- ],
- [
- 8.42269,
- 47.21886
- ],
- [
- 8.42977,
- 47.22
- ],
- [
- 8.43936,
- 47.21937
- ],
- [
- 8.45,
- 47.21363
- ],
- [
- 8.4546,
- 47.21334
- ],
- [
- 8.45625,
- 47.21081
- ],
- [
- 8.4591,
- 47.20934
- ],
- [
- 8.46447,
- 47.20928
- ],
- [
- 8.46609,
- 47.20862
- ],
- [
- 8.46868,
- 47.20533
- ],
- [
- 8.47329,
- 47.20398
- ],
- [
- 8.47693,
- 47.20458
- ],
- [
- 8.48399,
- 47.20392
- ],
- [
- 8.49489,
- 47.20738
- ],
- [
- 8.504,
- 47.20768
- ],
- [
- 8.51538,
- 47.21152
- ],
- [
- 8.51753,
- 47.21271
- ],
- [
- 8.51906,
- 47.21495
- ],
- [
- 8.5306,
- 47.21306
- ],
- [
- 8.53307,
- 47.21325
- ],
- [
- 8.5415,
- 47.21778
- ],
- [
- 8.54456,
- 47.21707
- ],
- [
- 8.55407,
- 47.21726
- ],
- [
- 8.55858,
- 47.21517
- ],
- [
- 8.56984,
- 47.2139
- ],
- [
- 8.57491,
- 47.21255
- ],
- [
- 8.57749,
- 47.20771
- ],
- [
- 8.58044,
- 47.2064
- ],
- [
- 8.58408,
- 47.20603
- ],
- [
- 8.59012,
- 47.20714
- ],
- [
- 8.58965,
- 47.2046
- ],
- [
- 8.59074,
- 47.20195
- ],
- [
- 8.59358,
- 47.1986
- ],
- [
- 8.59581,
- 47.19753
- ],
- [
- 8.60168,
- 47.19722
- ],
- [
- 8.60653,
- 47.1992
- ],
- [
- 8.60725,
- 47.19885
- ],
- [
- 8.61097,
- 47.19387
- ],
- [
- 8.61128,
- 47.19059
- ],
- [
- 8.61391,
- 47.18838
- ],
- [
- 8.61522,
- 47.18515
- ],
- [
- 8.61938,
- 47.18045
- ],
- [
- 8.61976,
- 47.17918
- ],
- [
- 8.61721,
- 47.17359
- ],
- [
- 8.6196,
- 47.1698
- ],
- [
- 8.62292,
- 47.16821
- ],
- [
- 8.6339,
- 47.16715
- ],
- [
- 8.63561,
- 47.16578
- ],
- [
- 8.63965,
- 47.16459
- ],
- [
- 8.64287,
- 47.16443
- ],
- [
- 8.65216,
- 47.16598
- ],
- [
- 8.65425,
- 47.16552
- ],
- [
- 8.6549,
- 47.15967
- ],
- [
- 8.65649,
- 47.15783
- ],
- [
- 8.65882,
- 47.15658
- ],
- [
- 8.66853,
- 47.15492
- ],
- [
- 8.67847,
- 47.15558
- ],
- [
- 8.68241,
- 47.15759
- ],
- [
- 8.69361,
- 47.15898
- ],
- [
- 8.69804,
- 47.16134
- ],
- [
- 8.69886,
- 47.16303
- ],
- [
- 8.6977,
- 47.17033
- ],
- [
- 8.69599,
- 47.17232
- ],
- [
- 8.68919,
- 47.17566
- ],
- [
- 8.6872,
- 47.17959
- ],
- [
- 8.6879,
- 47.18229
- ],
- [
- 8.69186,
- 47.18485
- ],
- [
- 8.69824,
- 47.19205
- ],
- [
- 8.70323,
- 47.19326
- ],
- [
- 8.70852,
- 47.19602
- ],
- [
- 8.71423,
- 47.19693
- ],
- [
- 8.71692,
- 47.19893
- ],
- [
- 8.74212,
- 47.2071
- ],
- [
- 8.74218,
- 47.21355
- ],
- [
- 8.71338,
- 47.21388
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2014/15 RGB"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:21780",
- "EPSG:21782",
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:3857"
- ],
- "category": "photo",
- "country_code": "CH",
- "end_date": "2015",
- "id": "OGDOrthoZH2015",
- "license_url": "https://opendata.swiss/de/dataset/wms-orthofotos-ogd1",
- "min_zoom": 10,
- "name": "Kanton Zurich, Orthofoto ZH Sommer 2014/15 RGB 10cm",
- "privacy_policy_url": "https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html",
- "start_date": "2014",
- "type": "wms",
- "url": "https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&STYLES=&REQUEST=GetMap&LAYERS=ortho_s_14&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.71338,
- 47.21388
- ],
- [
- 8.7137,
- 47.22737
- ],
- [
- 8.8117,
- 47.22626
- ],
- [
- 8.80337,
- 47.23858
- ],
- [
- 8.80866,
- 47.2431
- ],
- [
- 8.82448,
- 47.24656
- ],
- [
- 8.82971,
- 47.24539
- ],
- [
- 8.83652,
- 47.24257
- ],
- [
- 8.84568,
- 47.24253
- ],
- [
- 8.84837,
- 47.24322
- ],
- [
- 8.85232,
- 47.24034
- ],
- [
- 8.86206,
- 47.23882
- ],
- [
- 8.86472,
- 47.23966
- ],
- [
- 8.86863,
- 47.23968
- ],
- [
- 8.87339,
- 47.24125
- ],
- [
- 8.87882,
- 47.24476
- ],
- [
- 8.88054,
- 47.24791
- ],
- [
- 8.89878,
- 47.24976
- ],
- [
- 8.90281,
- 47.25094
- ],
- [
- 8.91025,
- 47.25003
- ],
- [
- 8.92735,
- 47.25406
- ],
- [
- 8.93644,
- 47.25499
- ],
- [
- 8.94233,
- 47.25849
- ],
- [
- 8.94423,
- 47.26173
- ],
- [
- 8.94882,
- 47.26536
- ],
- [
- 8.95094,
- 47.2686
- ],
- [
- 8.95068,
- 47.27108
- ],
- [
- 8.953,
- 47.27285
- ],
- [
- 8.95411,
- 47.27505
- ],
- [
- 8.95504,
- 47.28251
- ],
- [
- 8.95171,
- 47.28527
- ],
- [
- 8.94664,
- 47.28647
- ],
- [
- 8.95258,
- 47.28844
- ],
- [
- 8.95454,
- 47.28982
- ],
- [
- 8.96141,
- 47.30098
- ],
- [
- 8.97552,
- 47.30245
- ],
- [
- 8.98006,
- 47.30416
- ],
- [
- 8.99153,
- 47.31893
- ],
- [
- 8.99069,
- 47.32183
- ],
- [
- 8.98637,
- 47.32542
- ],
- [
- 8.98548,
- 47.32778
- ],
- [
- 8.98364,
- 47.32931
- ],
- [
- 8.98592,
- 47.33815
- ],
- [
- 8.98464,
- 47.34061
- ],
- [
- 8.98079,
- 47.34237
- ],
- [
- 8.98088,
- 47.34835
- ],
- [
- 8.97785,
- 47.35437
- ],
- [
- 8.9759,
- 47.35606
- ],
- [
- 8.97002,
- 47.35843
- ],
- [
- 8.96572,
- 47.3589
- ],
- [
- 8.96238,
- 47.36252
- ],
- [
- 8.95665,
- 47.37432
- ],
- [
- 8.9521,
- 47.37836
- ],
- [
- 8.94778,
- 47.37971
- ],
- [
- 8.95023,
- 47.38346
- ],
- [
- 8.95018,
- 47.38596
- ],
- [
- 8.9488,
- 47.38836
- ],
- [
- 8.9397,
- 47.39403
- ],
- [
- 8.93637,
- 47.39496
- ],
- [
- 8.93251,
- 47.39871
- ],
- [
- 8.92801,
- 47.40148
- ],
- [
- 8.92278,
- 47.4038
- ],
- [
- 8.91388,
- 47.40569
- ],
- [
- 8.91924,
- 47.41213
- ],
- [
- 8.92049,
- 47.41915
- ],
- [
- 8.91829,
- 47.42323
- ],
- [
- 8.92094,
- 47.42544
- ],
- [
- 8.92107,
- 47.42828
- ],
- [
- 8.92571,
- 47.42695
- ],
- [
- 8.93437,
- 47.42796
- ],
- [
- 8.93877,
- 47.43173
- ],
- [
- 8.93974,
- 47.43411
- ],
- [
- 8.93889,
- 47.43725
- ],
- [
- 8.93511,
- 47.43973
- ],
- [
- 8.92349,
- 47.43953
- ],
- [
- 8.91973,
- 47.44081
- ],
- [
- 8.91322,
- 47.44119
- ],
- [
- 8.91162,
- 47.44347
- ],
- [
- 8.91527,
- 47.44628
- ],
- [
- 8.91499,
- 47.45004
- ],
- [
- 8.91196,
- 47.45378
- ],
- [
- 8.90517,
- 47.45791
- ],
- [
- 8.90183,
- 47.46435
- ],
- [
- 8.89735,
- 47.46898
- ],
- [
- 8.89581,
- 47.47219
- ],
- [
- 8.89135,
- 47.4738
- ],
- [
- 8.89143,
- 47.47821
- ],
- [
- 8.90142,
- 47.48133
- ],
- [
- 8.90428,
- 47.48449
- ],
- [
- 8.90314,
- 47.48928
- ],
- [
- 8.90001,
- 47.49187
- ],
- [
- 8.89967,
- 47.49885
- ],
- [
- 8.90357,
- 47.50404
- ],
- [
- 8.90413,
- 47.50745
- ],
- [
- 8.90322,
- 47.51948
- ],
- [
- 8.90497,
- 47.52447
- ],
- [
- 8.90365,
- 47.52691
- ],
- [
- 8.89982,
- 47.52965
- ],
- [
- 8.88423,
- 47.53392
- ],
- [
- 8.87883,
- 47.53277
- ],
- [
- 8.87061,
- 47.53477
- ],
- [
- 8.8602,
- 47.53488
- ],
- [
- 8.85674,
- 47.53594
- ],
- [
- 8.84782,
- 47.5358
- ],
- [
- 8.84614,
- 47.54087
- ],
- [
- 8.8403,
- 47.54654
- ],
- [
- 8.83728,
- 47.55278
- ],
- [
- 8.84275,
- 47.5537
- ],
- [
- 8.84648,
- 47.5562
- ],
- [
- 8.85269,
- 47.55645
- ],
- [
- 8.8562,
- 47.55792
- ],
- [
- 8.85775,
- 47.56141
- ],
- [
- 8.85728,
- 47.56489
- ],
- [
- 8.85511,
- 47.56721
- ],
- [
- 8.85079,
- 47.56818
- ],
- [
- 8.84763,
- 47.57023
- ],
- [
- 8.84538,
- 47.57061
- ],
- [
- 8.8448,
- 47.57309
- ],
- [
- 8.84211,
- 47.57513
- ],
- [
- 8.83326,
- 47.57769
- ],
- [
- 8.82962,
- 47.57778
- ],
- [
- 8.82661,
- 47.57662
- ],
- [
- 8.82137,
- 47.57756
- ],
- [
- 8.81432,
- 47.57598
- ],
- [
- 8.81234,
- 47.5778
- ],
- [
- 8.81222,
- 47.58473
- ],
- [
- 8.81067,
- 47.58639
- ],
- [
- 8.80812,
- 47.58738
- ],
- [
- 8.76818,
- 47.59674
- ],
- [
- 8.7543,
- 47.59729
- ],
- [
- 8.75529,
- 47.60108
- ],
- [
- 8.75416,
- 47.60273
- ],
- [
- 8.74883,
- 47.60588
- ],
- [
- 8.74829,
- 47.60874
- ],
- [
- 8.7507,
- 47.60981
- ],
- [
- 8.75255,
- 47.61292
- ],
- [
- 8.75575,
- 47.61217
- ],
- [
- 8.76102,
- 47.61335
- ],
- [
- 8.78169,
- 47.60634
- ],
- [
- 8.78165,
- 47.60345
- ],
- [
- 8.78467,
- 47.59993
- ],
- [
- 8.80168,
- 47.5966
- ],
- [
- 8.80512,
- 47.59686
- ],
- [
- 8.80895,
- 47.59938
- ],
- [
- 8.81074,
- 47.60981
- ],
- [
- 8.81866,
- 47.61372
- ],
- [
- 8.82001,
- 47.61526
- ],
- [
- 8.82089,
- 47.62058
- ],
- [
- 8.82015,
- 47.62415
- ],
- [
- 8.82415,
- 47.6256
- ],
- [
- 8.83079,
- 47.63206
- ],
- [
- 8.83448,
- 47.64099
- ],
- [
- 8.83182,
- 47.64945
- ],
- [
- 8.82695,
- 47.65206
- ],
- [
- 8.81168,
- 47.65599
- ],
- [
- 8.81112,
- 47.6621
- ],
- [
- 8.81192,
- 47.66454
- ],
- [
- 8.81041,
- 47.66752
- ],
- [
- 8.80881,
- 47.66857
- ],
- [
- 8.80293,
- 47.66978
- ],
- [
- 8.79299,
- 47.66919
- ],
- [
- 8.78685,
- 47.66978
- ],
- [
- 8.78453,
- 47.66899
- ],
- [
- 8.78216,
- 47.66659
- ],
- [
- 8.77921,
- 47.65695
- ],
- [
- 8.77763,
- 47.65563
- ],
- [
- 8.77398,
- 47.65435
- ],
- [
- 8.76623,
- 47.65438
- ],
- [
- 8.76108,
- 47.65257
- ],
- [
- 8.75852,
- 47.65033
- ],
- [
- 8.75464,
- 47.64883
- ],
- [
- 8.7534,
- 47.64733
- ],
- [
- 8.74839,
- 47.64613
- ],
- [
- 8.74329,
- 47.64749
- ],
- [
- 8.73882,
- 47.64651
- ],
- [
- 8.72376,
- 47.64753
- ],
- [
- 8.72063,
- 47.64664
- ],
- [
- 8.71492,
- 47.64885
- ],
- [
- 8.70826,
- 47.64764
- ],
- [
- 8.70481,
- 47.65039
- ],
- [
- 8.70053,
- 47.65199
- ],
- [
- 8.69427,
- 47.65307
- ],
- [
- 8.69242,
- 47.65581
- ],
- [
- 8.68632,
- 47.66094
- ],
- [
- 8.68485,
- 47.66413
- ],
- [
- 8.68574,
- 47.66799
- ],
- [
- 8.68326,
- 47.67315
- ],
- [
- 8.68056,
- 47.67561
- ],
- [
- 8.67521,
- 47.6776
- ],
- [
- 8.67642,
- 47.68177
- ],
- [
- 8.67561,
- 47.68661
- ],
- [
- 8.67427,
- 47.68799
- ],
- [
- 8.67227,
- 47.68891
- ],
- [
- 8.66273,
- 47.69029
- ],
- [
- 8.64644,
- 47.69847
- ],
- [
- 8.63968,
- 47.69877
- ],
- [
- 8.6355,
- 47.69743
- ],
- [
- 8.62162,
- 47.69554
- ],
- [
- 8.61818,
- 47.69279
- ],
- [
- 8.61744,
- 47.69087
- ],
- [
- 8.62007,
- 47.68134
- ],
- [
- 8.61478,
- 47.68308
- ],
- [
- 8.60917,
- 47.68188
- ],
- [
- 8.60199,
- 47.67451
- ],
- [
- 8.59954,
- 47.66923
- ],
- [
- 8.60275,
- 47.66132
- ],
- [
- 8.60979,
- 47.6568
- ],
- [
- 8.6141,
- 47.6564
- ],
- [
- 8.61574,
- 47.65557
- ],
- [
- 8.62231,
- 47.65104
- ],
- [
- 8.62227,
- 47.65024
- ],
- [
- 8.62048,
- 47.64758
- ],
- [
- 8.61939,
- 47.65043
- ],
- [
- 8.61521,
- 47.65452
- ],
- [
- 8.6093,
- 47.65677
- ],
- [
- 8.60324,
- 47.65654
- ],
- [
- 8.60069,
- 47.65541
- ],
- [
- 8.59788,
- 47.65276
- ],
- [
- 8.59645,
- 47.64876
- ],
- [
- 8.59092,
- 47.64623
- ],
- [
- 8.58937,
- 47.6444
- ],
- [
- 8.58874,
- 47.63936
- ],
- [
- 8.59116,
- 47.62755
- ],
- [
- 8.59325,
- 47.62233
- ],
- [
- 8.59838,
- 47.61587
- ],
- [
- 8.59854,
- 47.6145
- ],
- [
- 8.59114,
- 47.60917
- ],
- [
- 8.58937,
- 47.60682
- ],
- [
- 8.58796,
- 47.60319
- ],
- [
- 8.58788,
- 47.59909
- ],
- [
- 8.58203,
- 47.59793
- ],
- [
- 8.57398,
- 47.59329
- ],
- [
- 8.57146,
- 47.58988
- ],
- [
- 8.57035,
- 47.58633
- ],
- [
- 8.57203,
- 47.57985
- ],
- [
- 8.56771,
- 47.57799
- ],
- [
- 8.56506,
- 47.57524
- ],
- [
- 8.56117,
- 47.56407
- ],
- [
- 8.55707,
- 47.55947
- ],
- [
- 8.55616,
- 47.56336
- ],
- [
- 8.55206,
- 47.56904
- ],
- [
- 8.55334,
- 47.57146
- ],
- [
- 8.5526,
- 47.57599
- ],
- [
- 8.55007,
- 47.57806
- ],
- [
- 8.54666,
- 47.57923
- ],
- [
- 8.5435,
- 47.58228
- ],
- [
- 8.54319,
- 47.5851
- ],
- [
- 8.54888,
- 47.5879
- ],
- [
- 8.55175,
- 47.58777
- ],
- [
- 8.55764,
- 47.58963
- ],
- [
- 8.56114,
- 47.59151
- ],
- [
- 8.56265,
- 47.5946
- ],
- [
- 8.56668,
- 47.59565
- ],
- [
- 8.56902,
- 47.59748
- ],
- [
- 8.56953,
- 47.60049
- ],
- [
- 8.57237,
- 47.60386
- ],
- [
- 8.57308,
- 47.60641
- ],
- [
- 8.57562,
- 47.60676
- ],
- [
- 8.579,
- 47.60845
- ],
- [
- 8.58076,
- 47.61031
- ],
- [
- 8.58125,
- 47.61203
- ],
- [
- 8.58025,
- 47.61456
- ],
- [
- 8.57712,
- 47.61636
- ],
- [
- 8.57525,
- 47.61957
- ],
- [
- 8.57277,
- 47.6211
- ],
- [
- 8.56785,
- 47.62164
- ],
- [
- 8.56341,
- 47.62697
- ],
- [
- 8.56105,
- 47.62838
- ],
- [
- 8.54803,
- 47.62998
- ],
- [
- 8.54558,
- 47.63122
- ],
- [
- 8.54498,
- 47.63297
- ],
- [
- 8.54288,
- 47.63458
- ],
- [
- 8.53995,
- 47.63565
- ],
- [
- 8.52769,
- 47.63634
- ],
- [
- 8.52112,
- 47.63887
- ],
- [
- 8.51478,
- 47.6385
- ],
- [
- 8.50932,
- 47.63559
- ],
- [
- 8.50829,
- 47.62942
- ],
- [
- 8.50161,
- 47.62597
- ],
- [
- 8.5007,
- 47.62421
- ],
- [
- 8.50149,
- 47.62154
- ],
- [
- 8.49253,
- 47.61893
- ],
- [
- 8.48884,
- 47.61953
- ],
- [
- 8.47669,
- 47.61937
- ],
- [
- 8.47439,
- 47.61838
- ],
- [
- 8.47154,
- 47.61495
- ],
- [
- 8.47129,
- 47.61307
- ],
- [
- 8.46785,
- 47.61272
- ],
- [
- 8.46446,
- 47.61109
- ],
- [
- 8.46173,
- 47.60659
- ],
- [
- 8.45519,
- 47.60676
- ],
- [
- 8.45061,
- 47.60411
- ],
- [
- 8.4499,
- 47.60164
- ],
- [
- 8.4507,
- 47.59584
- ],
- [
- 8.45382,
- 47.59343
- ],
- [
- 8.45428,
- 47.5866
- ],
- [
- 8.4563,
- 47.5848
- ],
- [
- 8.46014,
- 47.58382
- ],
- [
- 8.46332,
- 47.58044
- ],
- [
- 8.46881,
- 47.5795
- ],
- [
- 8.46219,
- 47.57653
- ],
- [
- 8.45419,
- 47.57668
- ],
- [
- 8.43642,
- 47.57154
- ],
- [
- 8.43161,
- 47.57102
- ],
- [
- 8.42476,
- 47.57231
- ],
- [
- 8.41477,
- 47.56879
- ],
- [
- 8.41304,
- 47.56745
- ],
- [
- 8.41034,
- 47.56194
- ],
- [
- 8.41039,
- 47.55972
- ],
- [
- 8.40789,
- 47.55465
- ],
- [
- 8.40846,
- 47.55018
- ],
- [
- 8.39964,
- 47.54444
- ],
- [
- 8.39609,
- 47.543
- ],
- [
- 8.39469,
- 47.54094
- ],
- [
- 8.39495,
- 47.53674
- ],
- [
- 8.39136,
- 47.53568
- ],
- [
- 8.38835,
- 47.53305
- ],
- [
- 8.38525,
- 47.53316
- ],
- [
- 8.38113,
- 47.53219
- ],
- [
- 8.3774,
- 47.52969
- ],
- [
- 8.37518,
- 47.52679
- ],
- [
- 8.37279,
- 47.51651
- ],
- [
- 8.36579,
- 47.51663
- ],
- [
- 8.35666,
- 47.51348
- ],
- [
- 8.35439,
- 47.51104
- ],
- [
- 8.35103,
- 47.50314
- ],
- [
- 8.3524,
- 47.49957
- ],
- [
- 8.35163,
- 47.4973
- ],
- [
- 8.35274,
- 47.49484
- ],
- [
- 8.3545,
- 47.49355
- ],
- [
- 8.3557,
- 47.48979
- ],
- [
- 8.35533,
- 47.48525
- ],
- [
- 8.35698,
- 47.47931
- ],
- [
- 8.35891,
- 47.47743
- ],
- [
- 8.36187,
- 47.47645
- ],
- [
- 8.36722,
- 47.47654
- ],
- [
- 8.36702,
- 47.47487
- ],
- [
- 8.36073,
- 47.47222
- ],
- [
- 8.35903,
- 47.46604
- ],
- [
- 8.35996,
- 47.46381
- ],
- [
- 8.36326,
- 47.46204
- ],
- [
- 8.3673,
- 47.45653
- ],
- [
- 8.36975,
- 47.45504
- ],
- [
- 8.37393,
- 47.45472
- ],
- [
- 8.37754,
- 47.45201
- ],
- [
- 8.37583,
- 47.45068
- ],
- [
- 8.37441,
- 47.44614
- ],
- [
- 8.37623,
- 47.43818
- ],
- [
- 8.37168,
- 47.43675
- ],
- [
- 8.36855,
- 47.43406
- ],
- [
- 8.3681,
- 47.43158
- ],
- [
- 8.36904,
- 47.42863
- ],
- [
- 8.37222,
- 47.42603
- ],
- [
- 8.38283,
- 47.42346
- ],
- [
- 8.38371,
- 47.42251
- ],
- [
- 8.38073,
- 47.42207
- ],
- [
- 8.37555,
- 47.4178
- ],
- [
- 8.37598,
- 47.41378
- ],
- [
- 8.37441,
- 47.40906
- ],
- [
- 8.36067,
- 47.40664
- ],
- [
- 8.35789,
- 47.40542
- ],
- [
- 8.35629,
- 47.40377
- ],
- [
- 8.35661,
- 47.39961
- ],
- [
- 8.36195,
- 47.39516
- ],
- [
- 8.36577,
- 47.39429
- ],
- [
- 8.37601,
- 47.3947
- ],
- [
- 8.37743,
- 47.39218
- ],
- [
- 8.38036,
- 47.39048
- ],
- [
- 8.38761,
- 47.39035
- ],
- [
- 8.38832,
- 47.38012
- ],
- [
- 8.39034,
- 47.37527
- ],
- [
- 8.39355,
- 47.3719
- ],
- [
- 8.39387,
- 47.36945
- ],
- [
- 8.39574,
- 47.3671
- ],
- [
- 8.39902,
- 47.36608
- ],
- [
- 8.39836,
- 47.36408
- ],
- [
- 8.40012,
- 47.36094
- ],
- [
- 8.40103,
- 47.35433
- ],
- [
- 8.39728,
- 47.34677
- ],
- [
- 8.39779,
- 47.34475
- ],
- [
- 8.40186,
- 47.3391
- ],
- [
- 8.40931,
- 47.33409
- ],
- [
- 8.4061,
- 47.32975
- ],
- [
- 8.40578,
- 47.32667
- ],
- [
- 8.40689,
- 47.32447
- ],
- [
- 8.41295,
- 47.3205
- ],
- [
- 8.41611,
- 47.31996
- ],
- [
- 8.42948,
- 47.32227
- ],
- [
- 8.43556,
- 47.32083
- ],
- [
- 8.43437,
- 47.31954
- ],
- [
- 8.43155,
- 47.31851
- ],
- [
- 8.42609,
- 47.31375
- ],
- [
- 8.42276,
- 47.30706
- ],
- [
- 8.42311,
- 47.30368
- ],
- [
- 8.41745,
- 47.3015
- ],
- [
- 8.41372,
- 47.29824
- ],
- [
- 8.40012,
- 47.29564
- ],
- [
- 8.39768,
- 47.29392
- ],
- [
- 8.39518,
- 47.29516
- ],
- [
- 8.39108,
- 47.29552
- ],
- [
- 8.38602,
- 47.29437
- ],
- [
- 8.38272,
- 47.29225
- ],
- [
- 8.38198,
- 47.29034
- ],
- [
- 8.38255,
- 47.2881
- ],
- [
- 8.38508,
- 47.28565
- ],
- [
- 8.38977,
- 47.27507
- ],
- [
- 8.39563,
- 47.271
- ],
- [
- 8.39407,
- 47.26672
- ],
- [
- 8.39415,
- 47.26361
- ],
- [
- 8.39756,
- 47.25986
- ],
- [
- 8.39614,
- 47.25481
- ],
- [
- 8.39742,
- 47.25189
- ],
- [
- 8.40647,
- 47.24452
- ],
- [
- 8.40826,
- 47.24118
- ],
- [
- 8.40761,
- 47.23957
- ],
- [
- 8.4096,
- 47.23585
- ],
- [
- 8.41073,
- 47.22799
- ],
- [
- 8.41248,
- 47.22433
- ],
- [
- 8.41695,
- 47.22014
- ],
- [
- 8.41959,
- 47.21902
- ],
- [
- 8.42269,
- 47.21886
- ],
- [
- 8.42977,
- 47.22
- ],
- [
- 8.43936,
- 47.21937
- ],
- [
- 8.45,
- 47.21363
- ],
- [
- 8.4546,
- 47.21334
- ],
- [
- 8.45625,
- 47.21081
- ],
- [
- 8.4591,
- 47.20934
- ],
- [
- 8.46447,
- 47.20928
- ],
- [
- 8.46609,
- 47.20862
- ],
- [
- 8.46868,
- 47.20533
- ],
- [
- 8.47329,
- 47.20398
- ],
- [
- 8.47693,
- 47.20458
- ],
- [
- 8.48399,
- 47.20392
- ],
- [
- 8.49489,
- 47.20738
- ],
- [
- 8.504,
- 47.20768
- ],
- [
- 8.51538,
- 47.21152
- ],
- [
- 8.51753,
- 47.21271
- ],
- [
- 8.51906,
- 47.21495
- ],
- [
- 8.5306,
- 47.21306
- ],
- [
- 8.53307,
- 47.21325
- ],
- [
- 8.5415,
- 47.21778
- ],
- [
- 8.54456,
- 47.21707
- ],
- [
- 8.55407,
- 47.21726
- ],
- [
- 8.55858,
- 47.21517
- ],
- [
- 8.56984,
- 47.2139
- ],
- [
- 8.57491,
- 47.21255
- ],
- [
- 8.57749,
- 47.20771
- ],
- [
- 8.58044,
- 47.2064
- ],
- [
- 8.58408,
- 47.20603
- ],
- [
- 8.59012,
- 47.20714
- ],
- [
- 8.58965,
- 47.2046
- ],
- [
- 8.59074,
- 47.20195
- ],
- [
- 8.59358,
- 47.1986
- ],
- [
- 8.59581,
- 47.19753
- ],
- [
- 8.60168,
- 47.19722
- ],
- [
- 8.60653,
- 47.1992
- ],
- [
- 8.60725,
- 47.19885
- ],
- [
- 8.61097,
- 47.19387
- ],
- [
- 8.61128,
- 47.19059
- ],
- [
- 8.61391,
- 47.18838
- ],
- [
- 8.61522,
- 47.18515
- ],
- [
- 8.61938,
- 47.18045
- ],
- [
- 8.61976,
- 47.17918
- ],
- [
- 8.61721,
- 47.17359
- ],
- [
- 8.6196,
- 47.1698
- ],
- [
- 8.62292,
- 47.16821
- ],
- [
- 8.6339,
- 47.16715
- ],
- [
- 8.63561,
- 47.16578
- ],
- [
- 8.63965,
- 47.16459
- ],
- [
- 8.64287,
- 47.16443
- ],
- [
- 8.65216,
- 47.16598
- ],
- [
- 8.65425,
- 47.16552
- ],
- [
- 8.6549,
- 47.15967
- ],
- [
- 8.65649,
- 47.15783
- ],
- [
- 8.65882,
- 47.15658
- ],
- [
- 8.66853,
- 47.15492
- ],
- [
- 8.67847,
- 47.15558
- ],
- [
- 8.68241,
- 47.15759
- ],
- [
- 8.69361,
- 47.15898
- ],
- [
- 8.69804,
- 47.16134
- ],
- [
- 8.69886,
- 47.16303
- ],
- [
- 8.6977,
- 47.17033
- ],
- [
- 8.69599,
- 47.17232
- ],
- [
- 8.68919,
- 47.17566
- ],
- [
- 8.6872,
- 47.17959
- ],
- [
- 8.6879,
- 47.18229
- ],
- [
- 8.69186,
- 47.18485
- ],
- [
- 8.69824,
- 47.19205
- ],
- [
- 8.70323,
- 47.19326
- ],
- [
- 8.70852,
- 47.19602
- ],
- [
- 8.71423,
- 47.19693
- ],
- [
- 8.71692,
- 47.19893
- ],
- [
- 8.74212,
- 47.2071
- ],
- [
- 8.74218,
- 47.21355
- ],
- [
- 8.71338,
- 47.21388
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Frühjahr 2015/16 RGB"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:21780",
- "EPSG:21782",
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:3857"
- ],
- "category": "photo",
- "country_code": "CH",
- "end_date": "2016",
- "id": "OGDOrthoZH2016",
- "license_url": "https://opendata.swiss/de/dataset/wms-orthofotos-ogd1",
- "min_zoom": 10,
- "name": "Kanton Zurich, Orthofoto ZH Frühjahr 2015/16 RGB 10cm",
- "privacy_policy_url": "https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html",
- "start_date": "2015",
- "type": "wms",
- "url": "https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&STYLES=&REQUEST=GetMap&LAYERS=ortho_w_15&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.71338,
- 47.21388
- ],
- [
- 8.7137,
- 47.22737
- ],
- [
- 8.8117,
- 47.22626
- ],
- [
- 8.80337,
- 47.23858
- ],
- [
- 8.80866,
- 47.2431
- ],
- [
- 8.82448,
- 47.24656
- ],
- [
- 8.82971,
- 47.24539
- ],
- [
- 8.83652,
- 47.24257
- ],
- [
- 8.84568,
- 47.24253
- ],
- [
- 8.84837,
- 47.24322
- ],
- [
- 8.85232,
- 47.24034
- ],
- [
- 8.86206,
- 47.23882
- ],
- [
- 8.86472,
- 47.23966
- ],
- [
- 8.86863,
- 47.23968
- ],
- [
- 8.87339,
- 47.24125
- ],
- [
- 8.87882,
- 47.24476
- ],
- [
- 8.88054,
- 47.24791
- ],
- [
- 8.89878,
- 47.24976
- ],
- [
- 8.90281,
- 47.25094
- ],
- [
- 8.91025,
- 47.25003
- ],
- [
- 8.92735,
- 47.25406
- ],
- [
- 8.93644,
- 47.25499
- ],
- [
- 8.94233,
- 47.25849
- ],
- [
- 8.94423,
- 47.26173
- ],
- [
- 8.94882,
- 47.26536
- ],
- [
- 8.95094,
- 47.2686
- ],
- [
- 8.95068,
- 47.27108
- ],
- [
- 8.953,
- 47.27285
- ],
- [
- 8.95411,
- 47.27505
- ],
- [
- 8.95504,
- 47.28251
- ],
- [
- 8.95171,
- 47.28527
- ],
- [
- 8.94664,
- 47.28647
- ],
- [
- 8.95258,
- 47.28844
- ],
- [
- 8.95454,
- 47.28982
- ],
- [
- 8.96141,
- 47.30098
- ],
- [
- 8.97552,
- 47.30245
- ],
- [
- 8.98006,
- 47.30416
- ],
- [
- 8.99153,
- 47.31893
- ],
- [
- 8.99069,
- 47.32183
- ],
- [
- 8.98637,
- 47.32542
- ],
- [
- 8.98548,
- 47.32778
- ],
- [
- 8.98364,
- 47.32931
- ],
- [
- 8.98592,
- 47.33815
- ],
- [
- 8.98464,
- 47.34061
- ],
- [
- 8.98079,
- 47.34237
- ],
- [
- 8.98088,
- 47.34835
- ],
- [
- 8.97785,
- 47.35437
- ],
- [
- 8.9759,
- 47.35606
- ],
- [
- 8.97002,
- 47.35843
- ],
- [
- 8.96572,
- 47.3589
- ],
- [
- 8.96238,
- 47.36252
- ],
- [
- 8.95665,
- 47.37432
- ],
- [
- 8.9521,
- 47.37836
- ],
- [
- 8.94778,
- 47.37971
- ],
- [
- 8.95023,
- 47.38346
- ],
- [
- 8.95018,
- 47.38596
- ],
- [
- 8.9488,
- 47.38836
- ],
- [
- 8.9397,
- 47.39403
- ],
- [
- 8.93637,
- 47.39496
- ],
- [
- 8.93251,
- 47.39871
- ],
- [
- 8.92801,
- 47.40148
- ],
- [
- 8.92278,
- 47.4038
- ],
- [
- 8.91388,
- 47.40569
- ],
- [
- 8.91924,
- 47.41213
- ],
- [
- 8.92049,
- 47.41915
- ],
- [
- 8.91829,
- 47.42323
- ],
- [
- 8.92094,
- 47.42544
- ],
- [
- 8.92107,
- 47.42828
- ],
- [
- 8.92571,
- 47.42695
- ],
- [
- 8.93437,
- 47.42796
- ],
- [
- 8.93877,
- 47.43173
- ],
- [
- 8.93974,
- 47.43411
- ],
- [
- 8.93889,
- 47.43725
- ],
- [
- 8.93511,
- 47.43973
- ],
- [
- 8.92349,
- 47.43953
- ],
- [
- 8.91973,
- 47.44081
- ],
- [
- 8.91322,
- 47.44119
- ],
- [
- 8.91162,
- 47.44347
- ],
- [
- 8.91527,
- 47.44628
- ],
- [
- 8.91499,
- 47.45004
- ],
- [
- 8.91196,
- 47.45378
- ],
- [
- 8.90517,
- 47.45791
- ],
- [
- 8.90183,
- 47.46435
- ],
- [
- 8.89735,
- 47.46898
- ],
- [
- 8.89581,
- 47.47219
- ],
- [
- 8.89135,
- 47.4738
- ],
- [
- 8.89143,
- 47.47821
- ],
- [
- 8.90142,
- 47.48133
- ],
- [
- 8.90428,
- 47.48449
- ],
- [
- 8.90314,
- 47.48928
- ],
- [
- 8.90001,
- 47.49187
- ],
- [
- 8.89967,
- 47.49885
- ],
- [
- 8.90357,
- 47.50404
- ],
- [
- 8.90413,
- 47.50745
- ],
- [
- 8.90322,
- 47.51948
- ],
- [
- 8.90497,
- 47.52447
- ],
- [
- 8.90365,
- 47.52691
- ],
- [
- 8.89982,
- 47.52965
- ],
- [
- 8.88423,
- 47.53392
- ],
- [
- 8.87883,
- 47.53277
- ],
- [
- 8.87061,
- 47.53477
- ],
- [
- 8.8602,
- 47.53488
- ],
- [
- 8.85674,
- 47.53594
- ],
- [
- 8.84782,
- 47.5358
- ],
- [
- 8.84614,
- 47.54087
- ],
- [
- 8.8403,
- 47.54654
- ],
- [
- 8.83728,
- 47.55278
- ],
- [
- 8.84275,
- 47.5537
- ],
- [
- 8.84648,
- 47.5562
- ],
- [
- 8.85269,
- 47.55645
- ],
- [
- 8.8562,
- 47.55792
- ],
- [
- 8.85775,
- 47.56141
- ],
- [
- 8.85728,
- 47.56489
- ],
- [
- 8.85511,
- 47.56721
- ],
- [
- 8.85079,
- 47.56818
- ],
- [
- 8.84763,
- 47.57023
- ],
- [
- 8.84538,
- 47.57061
- ],
- [
- 8.8448,
- 47.57309
- ],
- [
- 8.84211,
- 47.57513
- ],
- [
- 8.83326,
- 47.57769
- ],
- [
- 8.82962,
- 47.57778
- ],
- [
- 8.82661,
- 47.57662
- ],
- [
- 8.82137,
- 47.57756
- ],
- [
- 8.81432,
- 47.57598
- ],
- [
- 8.81234,
- 47.5778
- ],
- [
- 8.81222,
- 47.58473
- ],
- [
- 8.81067,
- 47.58639
- ],
- [
- 8.80812,
- 47.58738
- ],
- [
- 8.76818,
- 47.59674
- ],
- [
- 8.7543,
- 47.59729
- ],
- [
- 8.75529,
- 47.60108
- ],
- [
- 8.75416,
- 47.60273
- ],
- [
- 8.74883,
- 47.60588
- ],
- [
- 8.74829,
- 47.60874
- ],
- [
- 8.7507,
- 47.60981
- ],
- [
- 8.75255,
- 47.61292
- ],
- [
- 8.75575,
- 47.61217
- ],
- [
- 8.76102,
- 47.61335
- ],
- [
- 8.78169,
- 47.60634
- ],
- [
- 8.78165,
- 47.60345
- ],
- [
- 8.78467,
- 47.59993
- ],
- [
- 8.80168,
- 47.5966
- ],
- [
- 8.80512,
- 47.59686
- ],
- [
- 8.80895,
- 47.59938
- ],
- [
- 8.81074,
- 47.60981
- ],
- [
- 8.81866,
- 47.61372
- ],
- [
- 8.82001,
- 47.61526
- ],
- [
- 8.82089,
- 47.62058
- ],
- [
- 8.82015,
- 47.62415
- ],
- [
- 8.82415,
- 47.6256
- ],
- [
- 8.83079,
- 47.63206
- ],
- [
- 8.83448,
- 47.64099
- ],
- [
- 8.83182,
- 47.64945
- ],
- [
- 8.82695,
- 47.65206
- ],
- [
- 8.81168,
- 47.65599
- ],
- [
- 8.81112,
- 47.6621
- ],
- [
- 8.81192,
- 47.66454
- ],
- [
- 8.81041,
- 47.66752
- ],
- [
- 8.80881,
- 47.66857
- ],
- [
- 8.80293,
- 47.66978
- ],
- [
- 8.79299,
- 47.66919
- ],
- [
- 8.78685,
- 47.66978
- ],
- [
- 8.78453,
- 47.66899
- ],
- [
- 8.78216,
- 47.66659
- ],
- [
- 8.77921,
- 47.65695
- ],
- [
- 8.77763,
- 47.65563
- ],
- [
- 8.77398,
- 47.65435
- ],
- [
- 8.76623,
- 47.65438
- ],
- [
- 8.76108,
- 47.65257
- ],
- [
- 8.75852,
- 47.65033
- ],
- [
- 8.75464,
- 47.64883
- ],
- [
- 8.7534,
- 47.64733
- ],
- [
- 8.74839,
- 47.64613
- ],
- [
- 8.74329,
- 47.64749
- ],
- [
- 8.73882,
- 47.64651
- ],
- [
- 8.72376,
- 47.64753
- ],
- [
- 8.72063,
- 47.64664
- ],
- [
- 8.71492,
- 47.64885
- ],
- [
- 8.70826,
- 47.64764
- ],
- [
- 8.70481,
- 47.65039
- ],
- [
- 8.70053,
- 47.65199
- ],
- [
- 8.69427,
- 47.65307
- ],
- [
- 8.69242,
- 47.65581
- ],
- [
- 8.68632,
- 47.66094
- ],
- [
- 8.68485,
- 47.66413
- ],
- [
- 8.68574,
- 47.66799
- ],
- [
- 8.68326,
- 47.67315
- ],
- [
- 8.68056,
- 47.67561
- ],
- [
- 8.67521,
- 47.6776
- ],
- [
- 8.67642,
- 47.68177
- ],
- [
- 8.67561,
- 47.68661
- ],
- [
- 8.67427,
- 47.68799
- ],
- [
- 8.67227,
- 47.68891
- ],
- [
- 8.66273,
- 47.69029
- ],
- [
- 8.64644,
- 47.69847
- ],
- [
- 8.63968,
- 47.69877
- ],
- [
- 8.6355,
- 47.69743
- ],
- [
- 8.62162,
- 47.69554
- ],
- [
- 8.61818,
- 47.69279
- ],
- [
- 8.61744,
- 47.69087
- ],
- [
- 8.62007,
- 47.68134
- ],
- [
- 8.61478,
- 47.68308
- ],
- [
- 8.60917,
- 47.68188
- ],
- [
- 8.60199,
- 47.67451
- ],
- [
- 8.59954,
- 47.66923
- ],
- [
- 8.60275,
- 47.66132
- ],
- [
- 8.60979,
- 47.6568
- ],
- [
- 8.6141,
- 47.6564
- ],
- [
- 8.61574,
- 47.65557
- ],
- [
- 8.62231,
- 47.65104
- ],
- [
- 8.62227,
- 47.65024
- ],
- [
- 8.62048,
- 47.64758
- ],
- [
- 8.61939,
- 47.65043
- ],
- [
- 8.61521,
- 47.65452
- ],
- [
- 8.6093,
- 47.65677
- ],
- [
- 8.60324,
- 47.65654
- ],
- [
- 8.60069,
- 47.65541
- ],
- [
- 8.59788,
- 47.65276
- ],
- [
- 8.59645,
- 47.64876
- ],
- [
- 8.59092,
- 47.64623
- ],
- [
- 8.58937,
- 47.6444
- ],
- [
- 8.58874,
- 47.63936
- ],
- [
- 8.59116,
- 47.62755
- ],
- [
- 8.59325,
- 47.62233
- ],
- [
- 8.59838,
- 47.61587
- ],
- [
- 8.59854,
- 47.6145
- ],
- [
- 8.59114,
- 47.60917
- ],
- [
- 8.58937,
- 47.60682
- ],
- [
- 8.58796,
- 47.60319
- ],
- [
- 8.58788,
- 47.59909
- ],
- [
- 8.58203,
- 47.59793
- ],
- [
- 8.57398,
- 47.59329
- ],
- [
- 8.57146,
- 47.58988
- ],
- [
- 8.57035,
- 47.58633
- ],
- [
- 8.57203,
- 47.57985
- ],
- [
- 8.56771,
- 47.57799
- ],
- [
- 8.56506,
- 47.57524
- ],
- [
- 8.56117,
- 47.56407
- ],
- [
- 8.55707,
- 47.55947
- ],
- [
- 8.55616,
- 47.56336
- ],
- [
- 8.55206,
- 47.56904
- ],
- [
- 8.55334,
- 47.57146
- ],
- [
- 8.5526,
- 47.57599
- ],
- [
- 8.55007,
- 47.57806
- ],
- [
- 8.54666,
- 47.57923
- ],
- [
- 8.5435,
- 47.58228
- ],
- [
- 8.54319,
- 47.5851
- ],
- [
- 8.54888,
- 47.5879
- ],
- [
- 8.55175,
- 47.58777
- ],
- [
- 8.55764,
- 47.58963
- ],
- [
- 8.56114,
- 47.59151
- ],
- [
- 8.56265,
- 47.5946
- ],
- [
- 8.56668,
- 47.59565
- ],
- [
- 8.56902,
- 47.59748
- ],
- [
- 8.56953,
- 47.60049
- ],
- [
- 8.57237,
- 47.60386
- ],
- [
- 8.57308,
- 47.60641
- ],
- [
- 8.57562,
- 47.60676
- ],
- [
- 8.579,
- 47.60845
- ],
- [
- 8.58076,
- 47.61031
- ],
- [
- 8.58125,
- 47.61203
- ],
- [
- 8.58025,
- 47.61456
- ],
- [
- 8.57712,
- 47.61636
- ],
- [
- 8.57525,
- 47.61957
- ],
- [
- 8.57277,
- 47.6211
- ],
- [
- 8.56785,
- 47.62164
- ],
- [
- 8.56341,
- 47.62697
- ],
- [
- 8.56105,
- 47.62838
- ],
- [
- 8.54803,
- 47.62998
- ],
- [
- 8.54558,
- 47.63122
- ],
- [
- 8.54498,
- 47.63297
- ],
- [
- 8.54288,
- 47.63458
- ],
- [
- 8.53995,
- 47.63565
- ],
- [
- 8.52769,
- 47.63634
- ],
- [
- 8.52112,
- 47.63887
- ],
- [
- 8.51478,
- 47.6385
- ],
- [
- 8.50932,
- 47.63559
- ],
- [
- 8.50829,
- 47.62942
- ],
- [
- 8.50161,
- 47.62597
- ],
- [
- 8.5007,
- 47.62421
- ],
- [
- 8.50149,
- 47.62154
- ],
- [
- 8.49253,
- 47.61893
- ],
- [
- 8.48884,
- 47.61953
- ],
- [
- 8.47669,
- 47.61937
- ],
- [
- 8.47439,
- 47.61838
- ],
- [
- 8.47154,
- 47.61495
- ],
- [
- 8.47129,
- 47.61307
- ],
- [
- 8.46785,
- 47.61272
- ],
- [
- 8.46446,
- 47.61109
- ],
- [
- 8.46173,
- 47.60659
- ],
- [
- 8.45519,
- 47.60676
- ],
- [
- 8.45061,
- 47.60411
- ],
- [
- 8.4499,
- 47.60164
- ],
- [
- 8.4507,
- 47.59584
- ],
- [
- 8.45382,
- 47.59343
- ],
- [
- 8.45428,
- 47.5866
- ],
- [
- 8.4563,
- 47.5848
- ],
- [
- 8.46014,
- 47.58382
- ],
- [
- 8.46332,
- 47.58044
- ],
- [
- 8.46881,
- 47.5795
- ],
- [
- 8.46219,
- 47.57653
- ],
- [
- 8.45419,
- 47.57668
- ],
- [
- 8.43642,
- 47.57154
- ],
- [
- 8.43161,
- 47.57102
- ],
- [
- 8.42476,
- 47.57231
- ],
- [
- 8.41477,
- 47.56879
- ],
- [
- 8.41304,
- 47.56745
- ],
- [
- 8.41034,
- 47.56194
- ],
- [
- 8.41039,
- 47.55972
- ],
- [
- 8.40789,
- 47.55465
- ],
- [
- 8.40846,
- 47.55018
- ],
- [
- 8.39964,
- 47.54444
- ],
- [
- 8.39609,
- 47.543
- ],
- [
- 8.39469,
- 47.54094
- ],
- [
- 8.39495,
- 47.53674
- ],
- [
- 8.39136,
- 47.53568
- ],
- [
- 8.38835,
- 47.53305
- ],
- [
- 8.38525,
- 47.53316
- ],
- [
- 8.38113,
- 47.53219
- ],
- [
- 8.3774,
- 47.52969
- ],
- [
- 8.37518,
- 47.52679
- ],
- [
- 8.37279,
- 47.51651
- ],
- [
- 8.36579,
- 47.51663
- ],
- [
- 8.35666,
- 47.51348
- ],
- [
- 8.35439,
- 47.51104
- ],
- [
- 8.35103,
- 47.50314
- ],
- [
- 8.3524,
- 47.49957
- ],
- [
- 8.35163,
- 47.4973
- ],
- [
- 8.35274,
- 47.49484
- ],
- [
- 8.3545,
- 47.49355
- ],
- [
- 8.3557,
- 47.48979
- ],
- [
- 8.35533,
- 47.48525
- ],
- [
- 8.35698,
- 47.47931
- ],
- [
- 8.35891,
- 47.47743
- ],
- [
- 8.36187,
- 47.47645
- ],
- [
- 8.36722,
- 47.47654
- ],
- [
- 8.36702,
- 47.47487
- ],
- [
- 8.36073,
- 47.47222
- ],
- [
- 8.35903,
- 47.46604
- ],
- [
- 8.35996,
- 47.46381
- ],
- [
- 8.36326,
- 47.46204
- ],
- [
- 8.3673,
- 47.45653
- ],
- [
- 8.36975,
- 47.45504
- ],
- [
- 8.37393,
- 47.45472
- ],
- [
- 8.37754,
- 47.45201
- ],
- [
- 8.37583,
- 47.45068
- ],
- [
- 8.37441,
- 47.44614
- ],
- [
- 8.37623,
- 47.43818
- ],
- [
- 8.37168,
- 47.43675
- ],
- [
- 8.36855,
- 47.43406
- ],
- [
- 8.3681,
- 47.43158
- ],
- [
- 8.36904,
- 47.42863
- ],
- [
- 8.37222,
- 47.42603
- ],
- [
- 8.38283,
- 47.42346
- ],
- [
- 8.38371,
- 47.42251
- ],
- [
- 8.38073,
- 47.42207
- ],
- [
- 8.37555,
- 47.4178
- ],
- [
- 8.37598,
- 47.41378
- ],
- [
- 8.37441,
- 47.40906
- ],
- [
- 8.36067,
- 47.40664
- ],
- [
- 8.35789,
- 47.40542
- ],
- [
- 8.35629,
- 47.40377
- ],
- [
- 8.35661,
- 47.39961
- ],
- [
- 8.36195,
- 47.39516
- ],
- [
- 8.36577,
- 47.39429
- ],
- [
- 8.37601,
- 47.3947
- ],
- [
- 8.37743,
- 47.39218
- ],
- [
- 8.38036,
- 47.39048
- ],
- [
- 8.38761,
- 47.39035
- ],
- [
- 8.38832,
- 47.38012
- ],
- [
- 8.39034,
- 47.37527
- ],
- [
- 8.39355,
- 47.3719
- ],
- [
- 8.39387,
- 47.36945
- ],
- [
- 8.39574,
- 47.3671
- ],
- [
- 8.39902,
- 47.36608
- ],
- [
- 8.39836,
- 47.36408
- ],
- [
- 8.40012,
- 47.36094
- ],
- [
- 8.40103,
- 47.35433
- ],
- [
- 8.39728,
- 47.34677
- ],
- [
- 8.39779,
- 47.34475
- ],
- [
- 8.40186,
- 47.3391
- ],
- [
- 8.40931,
- 47.33409
- ],
- [
- 8.4061,
- 47.32975
- ],
- [
- 8.40578,
- 47.32667
- ],
- [
- 8.40689,
- 47.32447
- ],
- [
- 8.41295,
- 47.3205
- ],
- [
- 8.41611,
- 47.31996
- ],
- [
- 8.42948,
- 47.32227
- ],
- [
- 8.43556,
- 47.32083
- ],
- [
- 8.43437,
- 47.31954
- ],
- [
- 8.43155,
- 47.31851
- ],
- [
- 8.42609,
- 47.31375
- ],
- [
- 8.42276,
- 47.30706
- ],
- [
- 8.42311,
- 47.30368
- ],
- [
- 8.41745,
- 47.3015
- ],
- [
- 8.41372,
- 47.29824
- ],
- [
- 8.40012,
- 47.29564
- ],
- [
- 8.39768,
- 47.29392
- ],
- [
- 8.39518,
- 47.29516
- ],
- [
- 8.39108,
- 47.29552
- ],
- [
- 8.38602,
- 47.29437
- ],
- [
- 8.38272,
- 47.29225
- ],
- [
- 8.38198,
- 47.29034
- ],
- [
- 8.38255,
- 47.2881
- ],
- [
- 8.38508,
- 47.28565
- ],
- [
- 8.38977,
- 47.27507
- ],
- [
- 8.39563,
- 47.271
- ],
- [
- 8.39407,
- 47.26672
- ],
- [
- 8.39415,
- 47.26361
- ],
- [
- 8.39756,
- 47.25986
- ],
- [
- 8.39614,
- 47.25481
- ],
- [
- 8.39742,
- 47.25189
- ],
- [
- 8.40647,
- 47.24452
- ],
- [
- 8.40826,
- 47.24118
- ],
- [
- 8.40761,
- 47.23957
- ],
- [
- 8.4096,
- 47.23585
- ],
- [
- 8.41073,
- 47.22799
- ],
- [
- 8.41248,
- 47.22433
- ],
- [
- 8.41695,
- 47.22014
- ],
- [
- 8.41959,
- 47.21902
- ],
- [
- 8.42269,
- 47.21886
- ],
- [
- 8.42977,
- 47.22
- ],
- [
- 8.43936,
- 47.21937
- ],
- [
- 8.45,
- 47.21363
- ],
- [
- 8.4546,
- 47.21334
- ],
- [
- 8.45625,
- 47.21081
- ],
- [
- 8.4591,
- 47.20934
- ],
- [
- 8.46447,
- 47.20928
- ],
- [
- 8.46609,
- 47.20862
- ],
- [
- 8.46868,
- 47.20533
- ],
- [
- 8.47329,
- 47.20398
- ],
- [
- 8.47693,
- 47.20458
- ],
- [
- 8.48399,
- 47.20392
- ],
- [
- 8.49489,
- 47.20738
- ],
- [
- 8.504,
- 47.20768
- ],
- [
- 8.51538,
- 47.21152
- ],
- [
- 8.51753,
- 47.21271
- ],
- [
- 8.51906,
- 47.21495
- ],
- [
- 8.5306,
- 47.21306
- ],
- [
- 8.53307,
- 47.21325
- ],
- [
- 8.5415,
- 47.21778
- ],
- [
- 8.54456,
- 47.21707
- ],
- [
- 8.55407,
- 47.21726
- ],
- [
- 8.55858,
- 47.21517
- ],
- [
- 8.56984,
- 47.2139
- ],
- [
- 8.57491,
- 47.21255
- ],
- [
- 8.57749,
- 47.20771
- ],
- [
- 8.58044,
- 47.2064
- ],
- [
- 8.58408,
- 47.20603
- ],
- [
- 8.59012,
- 47.20714
- ],
- [
- 8.58965,
- 47.2046
- ],
- [
- 8.59074,
- 47.20195
- ],
- [
- 8.59358,
- 47.1986
- ],
- [
- 8.59581,
- 47.19753
- ],
- [
- 8.60168,
- 47.19722
- ],
- [
- 8.60653,
- 47.1992
- ],
- [
- 8.60725,
- 47.19885
- ],
- [
- 8.61097,
- 47.19387
- ],
- [
- 8.61128,
- 47.19059
- ],
- [
- 8.61391,
- 47.18838
- ],
- [
- 8.61522,
- 47.18515
- ],
- [
- 8.61938,
- 47.18045
- ],
- [
- 8.61976,
- 47.17918
- ],
- [
- 8.61721,
- 47.17359
- ],
- [
- 8.6196,
- 47.1698
- ],
- [
- 8.62292,
- 47.16821
- ],
- [
- 8.6339,
- 47.16715
- ],
- [
- 8.63561,
- 47.16578
- ],
- [
- 8.63965,
- 47.16459
- ],
- [
- 8.64287,
- 47.16443
- ],
- [
- 8.65216,
- 47.16598
- ],
- [
- 8.65425,
- 47.16552
- ],
- [
- 8.6549,
- 47.15967
- ],
- [
- 8.65649,
- 47.15783
- ],
- [
- 8.65882,
- 47.15658
- ],
- [
- 8.66853,
- 47.15492
- ],
- [
- 8.67847,
- 47.15558
- ],
- [
- 8.68241,
- 47.15759
- ],
- [
- 8.69361,
- 47.15898
- ],
- [
- 8.69804,
- 47.16134
- ],
- [
- 8.69886,
- 47.16303
- ],
- [
- 8.6977,
- 47.17033
- ],
- [
- 8.69599,
- 47.17232
- ],
- [
- 8.68919,
- 47.17566
- ],
- [
- 8.6872,
- 47.17959
- ],
- [
- 8.6879,
- 47.18229
- ],
- [
- 8.69186,
- 47.18485
- ],
- [
- 8.69824,
- 47.19205
- ],
- [
- 8.70323,
- 47.19326
- ],
- [
- 8.70852,
- 47.19602
- ],
- [
- 8.71423,
- 47.19693
- ],
- [
- 8.71692,
- 47.19893
- ],
- [
- 8.74212,
- 47.2071
- ],
- [
- 8.74218,
- 47.21355
- ],
- [
- 8.71338,
- 47.21388
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2018 RGB"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:21780",
- "EPSG:21782",
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:3857"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "end_date": "2018",
- "id": "OGDOrthoZH2018",
- "license_url": "https://opendata.swiss/de/dataset/wms-orthofotos-ogd1",
- "min_zoom": 10,
- "name": "Kanton Zurich, Orthofoto ZH Sommer 2018 RGB 10cm",
- "privacy_policy_url": "https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html",
- "start_date": "2018",
- "type": "wms",
- "url": "https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&STYLES=&LAYERS=ortho&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.66668,
- 46.49441
- ],
- [
- 6.61637,
- 46.49406
- ],
- [
- 6.61636,
- 46.49836
- ],
- [
- 6.60135,
- 46.49825
- ],
- [
- 6.60131,
- 46.50227
- ],
- [
- 6.55923,
- 46.50194
- ],
- [
- 6.55773,
- 46.59687
- ],
- [
- 6.72895,
- 46.59805
- ],
- [
- 6.7304,
- 46.49004
- ],
- [
- 6.67702,
- 46.48978
- ],
- [
- 6.67703,
- 46.49011
- ],
- [
- 6.67345,
- 46.49006
- ],
- [
- 6.67347,
- 46.49041
- ],
- [
- 6.66672,
- 46.49036
- ],
- [
- 6.66668,
- 46.49441
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Ville de Lausanne - Orthophoto 2016",
- "url": "http://carto.lausanne.ch/lausanne-gc/"
- },
- "category": "photo",
- "country_code": "CH",
- "end_date": "2016",
- "id": "Lausanne-2016",
- "max_zoom": 20,
- "min_zoom": 12,
- "name": "Lausanne - Orthophoto 2016",
- "privacy_policy_url": "https://www.asitvd.ch/tarifs-conditions.html",
- "start_date": "2016",
- "type": "tms",
- "url": "https://osmdata.asitvd.ch/tiles/lausanne2016/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.18068,
- 46.38878
- ],
- [
- 6.21445,
- 46.41522
- ],
- [
- 6.25774,
- 46.3887
- ],
- [
- 6.22398,
- 46.36228
- ],
- [
- 6.18068,
- 46.38878
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Ville de Nyon",
- "url": "http://www.nyon.ch/fr/officiel/services-offices/informatique-et-population-776-3911"
- },
- "category": "photo",
- "country_code": "CH",
- "end_date": "2016-03-10",
- "id": "Ville_de_Nyon-HD-2016",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_waiver_Nyon.pdf",
- "max_zoom": 20,
- "min_zoom": 10,
- "name": "Ville de Nyon - Orthophoto 2016 HD 5cm/pi",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://www.asitvd.ch/tarifs-conditions.html",
- "start_date": "2016-03-10",
- "type": "tms",
- "url": "http://osmdata.asitvd.ch/tiles/nyon2016/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.71057,
- 46.54396
- ],
- [
- 6.72968,
- 46.54408
- ],
- [
- 6.72995,
- 46.52605
- ],
- [
- 6.71085,
- 46.52596
- ],
- [
- 6.71113,
- 46.50796
- ],
- [
- 6.6922,
- 46.50788
- ],
- [
- 6.6923,
- 46.49883
- ],
- [
- 6.63531,
- 46.49847
- ],
- [
- 6.63488,
- 46.52547
- ],
- [
- 6.65381,
- 46.52558
- ],
- [
- 6.65361,
- 46.54358
- ],
- [
- 6.69163,
- 46.54384
- ],
- [
- 6.69155,
- 46.55284
- ],
- [
- 6.71047,
- 46.55293
- ],
- [
- 6.71057,
- 46.54396
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "SIGIP",
- "url": "https://www.sigip.ch/"
- },
- "category": "photo",
- "country_code": "CH",
- "end_date": "2012",
- "id": "SIGIP-2012",
- "max_zoom": 20,
- "min_zoom": 14,
- "name": "SIGIP - Orthophoto 2012",
- "privacy_policy_url": "https://www.asitvd.ch/tarifs-conditions.html",
- "start_date": "2012",
- "type": "tms",
- "url": "https://osmdata.asitvd.ch/tiles/sigip2012/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.29431,
- 46.92376
- ],
- [
- 7.29827,
- 46.92747
- ],
- [
- 7.30616,
- 46.93095
- ],
- [
- 7.30433,
- 46.93623
- ],
- [
- 7.30686,
- 46.94037
- ],
- [
- 7.32464,
- 46.94328
- ],
- [
- 7.32845,
- 46.94641
- ],
- [
- 7.34141,
- 46.94608
- ],
- [
- 7.34385,
- 46.94737
- ],
- [
- 7.34346,
- 46.94879
- ],
- [
- 7.35136,
- 46.94855
- ],
- [
- 7.35056,
- 46.95021
- ],
- [
- 7.35309,
- 46.95193
- ],
- [
- 7.3582,
- 46.95118
- ],
- [
- 7.3685,
- 46.95662
- ],
- [
- 7.37151,
- 46.96073
- ],
- [
- 7.37503,
- 46.95983
- ],
- [
- 7.37851,
- 46.96147
- ],
- [
- 7.38062,
- 46.96547
- ],
- [
- 7.38321,
- 46.9663
- ],
- [
- 7.3938,
- 46.96693
- ],
- [
- 7.40005,
- 46.96918
- ],
- [
- 7.40829,
- 46.96869
- ],
- [
- 7.42817,
- 46.9738
- ],
- [
- 7.43271,
- 46.97269
- ],
- [
- 7.43536,
- 46.96843
- ],
- [
- 7.43785,
- 46.96843
- ],
- [
- 7.44125,
- 46.97679
- ],
- [
- 7.44569,
- 46.97479
- ],
- [
- 7.44838,
- 46.97564
- ],
- [
- 7.4477,
- 46.97901
- ],
- [
- 7.44405,
- 46.97807
- ],
- [
- 7.44127,
- 46.97982
- ],
- [
- 7.45067,
- 46.99015
- ],
- [
- 7.45221,
- 46.98968
- ],
- [
- 7.45465,
- 46.97782
- ],
- [
- 7.46804,
- 46.97583
- ],
- [
- 7.47079,
- 46.97
- ],
- [
- 7.47019,
- 46.96741
- ],
- [
- 7.47816,
- 46.97118
- ],
- [
- 7.48452,
- 46.97016
- ],
- [
- 7.48613,
- 46.9679
- ],
- [
- 7.48579,
- 46.96468
- ],
- [
- 7.47847,
- 46.9629
- ],
- [
- 7.48029,
- 46.96068
- ],
- [
- 7.47893,
- 46.95878
- ],
- [
- 7.47978,
- 46.9566
- ],
- [
- 7.47701,
- 46.95446
- ],
- [
- 7.48405,
- 46.94999
- ],
- [
- 7.48339,
- 46.9452
- ],
- [
- 7.49556,
- 46.93962
- ],
- [
- 7.49351,
- 46.93766
- ],
- [
- 7.4908,
- 46.93876
- ],
- [
- 7.4895,
- 46.93687
- ],
- [
- 7.47667,
- 46.93695
- ],
- [
- 7.47811,
- 46.93625
- ],
- [
- 7.4747,
- 46.93392
- ],
- [
- 7.47535,
- 46.93299
- ],
- [
- 7.4691,
- 46.92924
- ],
- [
- 7.47077,
- 46.9255
- ],
- [
- 7.45857,
- 46.93484
- ],
- [
- 7.44764,
- 46.93043
- ],
- [
- 7.43542,
- 46.93497
- ],
- [
- 7.4338,
- 46.93312
- ],
- [
- 7.43764,
- 46.93074
- ],
- [
- 7.41469,
- 46.93682
- ],
- [
- 7.41384,
- 46.93157
- ],
- [
- 7.40708,
- 46.93038
- ],
- [
- 7.40806,
- 46.92563
- ],
- [
- 7.40213,
- 46.9242
- ],
- [
- 7.40148,
- 46.92119
- ],
- [
- 7.38757,
- 46.93045
- ],
- [
- 7.38231,
- 46.92728
- ],
- [
- 7.38002,
- 46.92989
- ],
- [
- 7.38087,
- 46.93241
- ],
- [
- 7.37487,
- 46.93143
- ],
- [
- 7.37489,
- 46.93271
- ],
- [
- 7.36807,
- 46.93239
- ],
- [
- 7.36831,
- 46.93043
- ],
- [
- 7.36041,
- 46.92859
- ],
- [
- 7.36056,
- 46.9272
- ],
- [
- 7.33878,
- 46.92454
- ],
- [
- 7.33937,
- 46.91967
- ],
- [
- 7.32746,
- 46.91903
- ],
- [
- 7.32692,
- 46.9236
- ],
- [
- 7.32437,
- 46.92519
- ],
- [
- 7.30823,
- 46.92229
- ],
- [
- 7.29431,
- 46.92376
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophoto 2016, Vermessungsamt Stadt Bern"
- },
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2016",
- "id": "Bern-bern2016-tms",
- "license_url": "http://lists.openstreetmap.ch/pipermail/talk-ch/2016-November/003868.html",
- "max_zoom": 21,
- "min_zoom": 8,
- "name": "Stadt Bern 10cm (2016)",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2016",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/bern2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.29431,
- 46.92376
- ],
- [
- 7.29827,
- 46.92747
- ],
- [
- 7.30616,
- 46.93095
- ],
- [
- 7.30433,
- 46.93623
- ],
- [
- 7.30686,
- 46.94037
- ],
- [
- 7.32464,
- 46.94328
- ],
- [
- 7.32845,
- 46.94641
- ],
- [
- 7.34141,
- 46.94608
- ],
- [
- 7.34385,
- 46.94737
- ],
- [
- 7.34346,
- 46.94879
- ],
- [
- 7.35136,
- 46.94855
- ],
- [
- 7.35056,
- 46.95021
- ],
- [
- 7.35309,
- 46.95193
- ],
- [
- 7.3582,
- 46.95118
- ],
- [
- 7.3685,
- 46.95662
- ],
- [
- 7.37151,
- 46.96073
- ],
- [
- 7.37503,
- 46.95983
- ],
- [
- 7.37851,
- 46.96147
- ],
- [
- 7.38062,
- 46.96547
- ],
- [
- 7.38321,
- 46.9663
- ],
- [
- 7.3938,
- 46.96693
- ],
- [
- 7.40005,
- 46.96918
- ],
- [
- 7.40829,
- 46.96869
- ],
- [
- 7.42817,
- 46.9738
- ],
- [
- 7.43271,
- 46.97269
- ],
- [
- 7.43536,
- 46.96843
- ],
- [
- 7.43785,
- 46.96843
- ],
- [
- 7.44125,
- 46.97679
- ],
- [
- 7.44569,
- 46.97479
- ],
- [
- 7.44838,
- 46.97564
- ],
- [
- 7.4477,
- 46.97901
- ],
- [
- 7.44405,
- 46.97807
- ],
- [
- 7.44127,
- 46.97982
- ],
- [
- 7.45067,
- 46.99015
- ],
- [
- 7.45221,
- 46.98968
- ],
- [
- 7.45465,
- 46.97782
- ],
- [
- 7.46804,
- 46.97583
- ],
- [
- 7.47079,
- 46.97
- ],
- [
- 7.47019,
- 46.96741
- ],
- [
- 7.47816,
- 46.97118
- ],
- [
- 7.48452,
- 46.97016
- ],
- [
- 7.48613,
- 46.9679
- ],
- [
- 7.48579,
- 46.96468
- ],
- [
- 7.47847,
- 46.9629
- ],
- [
- 7.48029,
- 46.96068
- ],
- [
- 7.47893,
- 46.95878
- ],
- [
- 7.47978,
- 46.9566
- ],
- [
- 7.47701,
- 46.95446
- ],
- [
- 7.48405,
- 46.94999
- ],
- [
- 7.48339,
- 46.9452
- ],
- [
- 7.49556,
- 46.93962
- ],
- [
- 7.49351,
- 46.93766
- ],
- [
- 7.4908,
- 46.93876
- ],
- [
- 7.4895,
- 46.93687
- ],
- [
- 7.47667,
- 46.93695
- ],
- [
- 7.47811,
- 46.93625
- ],
- [
- 7.4747,
- 46.93392
- ],
- [
- 7.47535,
- 46.93299
- ],
- [
- 7.4691,
- 46.92924
- ],
- [
- 7.47077,
- 46.9255
- ],
- [
- 7.45857,
- 46.93484
- ],
- [
- 7.44764,
- 46.93043
- ],
- [
- 7.43542,
- 46.93497
- ],
- [
- 7.4338,
- 46.93312
- ],
- [
- 7.43764,
- 46.93074
- ],
- [
- 7.41469,
- 46.93682
- ],
- [
- 7.41384,
- 46.93157
- ],
- [
- 7.40708,
- 46.93038
- ],
- [
- 7.40806,
- 46.92563
- ],
- [
- 7.40213,
- 46.9242
- ],
- [
- 7.40148,
- 46.92119
- ],
- [
- 7.38757,
- 46.93045
- ],
- [
- 7.38231,
- 46.92728
- ],
- [
- 7.38002,
- 46.92989
- ],
- [
- 7.38087,
- 46.93241
- ],
- [
- 7.37487,
- 46.93143
- ],
- [
- 7.37489,
- 46.93271
- ],
- [
- 7.36807,
- 46.93239
- ],
- [
- 7.36831,
- 46.93043
- ],
- [
- 7.36041,
- 46.92859
- ],
- [
- 7.36056,
- 46.9272
- ],
- [
- 7.33878,
- 46.92454
- ],
- [
- 7.33937,
- 46.91967
- ],
- [
- 7.32746,
- 46.91903
- ],
- [
- 7.32692,
- 46.9236
- ],
- [
- 7.32437,
- 46.92519
- ],
- [
- 7.30823,
- 46.92229
- ],
- [
- 7.29431,
- 46.92376
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophoto 2016, Vermessungsamt Stadt Bern"
- },
- "available_projections": [
- "EPSG:2056",
- "CRS:84",
- "EPSG:21781",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "end_date": "2016",
- "id": "Bern-bern2016-wms",
- "license_url": "http://lists.openstreetmap.ch/pipermail/talk-ch/2016-November/003868.html",
- "min_zoom": 10,
- "name": "Stadt Bern 10cm (2016)",
- "privacy_policy_url": "https://www.bern.ch/disclaimer",
- "start_date": "2016",
- "type": "wms",
- "url": "https://map.bern.ch/wms/OpenData/proxy.php?LAYERS=luftbild_2016&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.29495,
- 47.4188
- ],
- [
- 9.30293,
- 47.42309
- ],
- [
- 9.3054,
- 47.42254
- ],
- [
- 9.30939,
- 47.42124
- ],
- [
- 9.30716,
- 47.41791
- ],
- [
- 9.30484,
- 47.41656
- ],
- [
- 9.30475,
- 47.41636
- ],
- [
- 9.30664,
- 47.41509
- ],
- [
- 9.30763,
- 47.41549
- ],
- [
- 9.3086,
- 47.41483
- ],
- [
- 9.31042,
- 47.41557
- ],
- [
- 9.31229,
- 47.41591
- ],
- [
- 9.31387,
- 47.41688
- ],
- [
- 9.31495,
- 47.41718
- ],
- [
- 9.3172,
- 47.41707
- ],
- [
- 9.3231,
- 47.41822
- ],
- [
- 9.32347,
- 47.41862
- ],
- [
- 9.32535,
- 47.4188
- ],
- [
- 9.32756,
- 47.42006
- ],
- [
- 9.32868,
- 47.42002
- ],
- [
- 9.3308,
- 47.42092
- ],
- [
- 9.33295,
- 47.42305
- ],
- [
- 9.3345,
- 47.42383
- ],
- [
- 9.33767,
- 47.42457
- ],
- [
- 9.33791,
- 47.42555
- ],
- [
- 9.33932,
- 47.42595
- ],
- [
- 9.34226,
- 47.42491
- ],
- [
- 9.34359,
- 47.42632
- ],
- [
- 9.34492,
- 47.42671
- ],
- [
- 9.3484,
- 47.42723
- ],
- [
- 9.34911,
- 47.42813
- ],
- [
- 9.35138,
- 47.42906
- ],
- [
- 9.35267,
- 47.42916
- ],
- [
- 9.35432,
- 47.43003
- ],
- [
- 9.35537,
- 47.43096
- ],
- [
- 9.35627,
- 47.43298
- ],
- [
- 9.35816,
- 47.43404
- ],
- [
- 9.35921,
- 47.4342
- ],
- [
- 9.36001,
- 47.43392
- ],
- [
- 9.36052,
- 47.43434
- ],
- [
- 9.36057,
- 47.43533
- ],
- [
- 9.35939,
- 47.43717
- ],
- [
- 9.35681,
- 47.43944
- ],
- [
- 9.35737,
- 47.44086
- ],
- [
- 9.35821,
- 47.44193
- ],
- [
- 9.35776,
- 47.44302
- ],
- [
- 9.35784,
- 47.44362
- ],
- [
- 9.35851,
- 47.44417
- ],
- [
- 9.35939,
- 47.4443
- ],
- [
- 9.36016,
- 47.44423
- ],
- [
- 9.361,
- 47.44379
- ],
- [
- 9.36164,
- 47.44423
- ],
- [
- 9.36121,
- 47.44513
- ],
- [
- 9.36175,
- 47.44569
- ],
- [
- 9.36318,
- 47.44568
- ],
- [
- 9.36447,
- 47.44508
- ],
- [
- 9.36687,
- 47.44466
- ],
- [
- 9.36694,
- 47.445
- ],
- [
- 9.36608,
- 47.44562
- ],
- [
- 9.36456,
- 47.44713
- ],
- [
- 9.36475,
- 47.44771
- ],
- [
- 9.36748,
- 47.44867
- ],
- [
- 9.36876,
- 47.44867
- ],
- [
- 9.37091,
- 47.44997
- ],
- [
- 9.37288,
- 47.44986
- ],
- [
- 9.37557,
- 47.44855
- ],
- [
- 9.37411,
- 47.44957
- ],
- [
- 9.37323,
- 47.45086
- ],
- [
- 9.37363,
- 47.45153
- ],
- [
- 9.3734,
- 47.45218
- ],
- [
- 9.37413,
- 47.4526
- ],
- [
- 9.37561,
- 47.45218
- ],
- [
- 9.37683,
- 47.45257
- ],
- [
- 9.37769,
- 47.45318
- ],
- [
- 9.38134,
- 47.45369
- ],
- [
- 9.38277,
- 47.45142
- ],
- [
- 9.3822,
- 47.44925
- ],
- [
- 9.38464,
- 47.45005
- ],
- [
- 9.3888,
- 47.45105
- ],
- [
- 9.38949,
- 47.45092
- ],
- [
- 9.39095,
- 47.44983
- ],
- [
- 9.39194,
- 47.44584
- ],
- [
- 9.38986,
- 47.44473
- ],
- [
- 9.39097,
- 47.44424
- ],
- [
- 9.39125,
- 47.44365
- ],
- [
- 9.39333,
- 47.44295
- ],
- [
- 9.39376,
- 47.44363
- ],
- [
- 9.39374,
- 47.44436
- ],
- [
- 9.39353,
- 47.44485
- ],
- [
- 9.394,
- 47.44581
- ],
- [
- 9.3935,
- 47.44607
- ],
- [
- 9.39376,
- 47.44681
- ],
- [
- 9.3946,
- 47.44825
- ],
- [
- 9.39539,
- 47.44842
- ],
- [
- 9.39599,
- 47.45023
- ],
- [
- 9.39704,
- 47.45225
- ],
- [
- 9.40082,
- 47.45183
- ],
- [
- 9.40161,
- 47.45282
- ],
- [
- 9.40372,
- 47.45272
- ],
- [
- 9.404,
- 47.45322
- ],
- [
- 9.40595,
- 47.45334
- ],
- [
- 9.40745,
- 47.45251
- ],
- [
- 9.40771,
- 47.452
- ],
- [
- 9.40835,
- 47.45251
- ],
- [
- 9.40973,
- 47.45227
- ],
- [
- 9.41367,
- 47.45256
- ],
- [
- 9.41603,
- 47.45141
- ],
- [
- 9.41561,
- 47.45093
- ],
- [
- 9.41694,
- 47.4501
- ],
- [
- 9.41728,
- 47.45032
- ],
- [
- 9.41771,
- 47.45154
- ],
- [
- 9.41934,
- 47.45304
- ],
- [
- 9.42091,
- 47.45241
- ],
- [
- 9.42151,
- 47.45273
- ],
- [
- 9.4235,
- 47.45272
- ],
- [
- 9.42479,
- 47.45341
- ],
- [
- 9.42588,
- 47.45328
- ],
- [
- 9.42621,
- 47.45245
- ],
- [
- 9.42822,
- 47.45205
- ],
- [
- 9.43039,
- 47.45073
- ],
- [
- 9.43048,
- 47.44733
- ],
- [
- 9.43226,
- 47.44498
- ],
- [
- 9.43213,
- 47.44384
- ],
- [
- 9.43088,
- 47.4433
- ],
- [
- 9.42996,
- 47.44156
- ],
- [
- 9.43075,
- 47.44028
- ],
- [
- 9.43185,
- 47.43816
- ],
- [
- 9.43125,
- 47.43758
- ],
- [
- 9.43202,
- 47.43696
- ],
- [
- 9.43202,
- 47.43648
- ],
- [
- 9.4346,
- 47.43601
- ],
- [
- 9.43582,
- 47.43478
- ],
- [
- 9.43614,
- 47.43363
- ],
- [
- 9.43545,
- 47.43156
- ],
- [
- 9.4346,
- 47.43116
- ],
- [
- 9.43354,
- 47.42981
- ],
- [
- 9.43402,
- 47.42907
- ],
- [
- 9.43399,
- 47.42862
- ],
- [
- 9.43522,
- 47.42709
- ],
- [
- 9.43582,
- 47.42588
- ],
- [
- 9.43597,
- 47.42434
- ],
- [
- 9.43565,
- 47.42399
- ],
- [
- 9.43567,
- 47.42309
- ],
- [
- 9.4353,
- 47.42261
- ],
- [
- 9.43605,
- 47.42054
- ],
- [
- 9.43468,
- 47.42023
- ],
- [
- 9.43475,
- 47.41965
- ],
- [
- 9.43382,
- 47.41928
- ],
- [
- 9.43417,
- 47.41862
- ],
- [
- 9.43391,
- 47.41822
- ],
- [
- 9.43151,
- 47.41778
- ],
- [
- 9.43187,
- 47.41657
- ],
- [
- 9.43264,
- 47.41556
- ],
- [
- 9.43288,
- 47.4146
- ],
- [
- 9.43372,
- 47.41429
- ],
- [
- 9.43391,
- 47.41389
- ],
- [
- 9.43288,
- 47.41226
- ],
- [
- 9.43129,
- 47.41101
- ],
- [
- 9.43058,
- 47.41091
- ],
- [
- 9.4308,
- 47.41046
- ],
- [
- 9.43065,
- 47.40933
- ],
- [
- 9.42824,
- 47.40824
- ],
- [
- 9.42681,
- 47.40687
- ],
- [
- 9.42741,
- 47.40499
- ],
- [
- 9.42172,
- 47.40506
- ],
- [
- 9.42155,
- 47.4024
- ],
- [
- 9.41365,
- 47.40249
- ],
- [
- 9.41359,
- 47.39982
- ],
- [
- 9.40166,
- 47.4
- ],
- [
- 9.40153,
- 47.39726
- ],
- [
- 9.39316,
- 47.39746
- ],
- [
- 9.39329,
- 47.40012
- ],
- [
- 9.3893,
- 47.40016
- ],
- [
- 9.38949,
- 47.40295
- ],
- [
- 9.37745,
- 47.40317
- ],
- [
- 9.37756,
- 47.4058
- ],
- [
- 9.37003,
- 47.40596
- ],
- [
- 9.3699,
- 47.40316
- ],
- [
- 9.362,
- 47.40335
- ],
- [
- 9.3619,
- 47.40066
- ],
- [
- 9.34997,
- 47.40089
- ],
- [
- 9.34982,
- 47.39815
- ],
- [
- 9.34095,
- 47.39832
- ],
- [
- 9.33969,
- 47.39873
- ],
- [
- 9.33857,
- 47.3995
- ],
- [
- 9.3381,
- 47.3996
- ],
- [
- 9.33754,
- 47.39925
- ],
- [
- 9.3369,
- 47.39873
- ],
- [
- 9.33578,
- 47.39857
- ],
- [
- 9.33516,
- 47.39861
- ],
- [
- 9.33413,
- 47.39932
- ],
- [
- 9.33372,
- 47.39906
- ],
- [
- 9.33293,
- 47.39892
- ],
- [
- 9.33222,
- 47.39896
- ],
- [
- 9.33128,
- 47.40005
- ],
- [
- 9.33005,
- 47.40032
- ],
- [
- 9.32913,
- 47.40077
- ],
- [
- 9.32812,
- 47.4006
- ],
- [
- 9.32748,
- 47.40062
- ],
- [
- 9.32632,
- 47.40032
- ],
- [
- 9.326,
- 47.4
- ],
- [
- 9.3252,
- 47.39979
- ],
- [
- 9.32475,
- 47.39989
- ],
- [
- 9.32377,
- 47.39916
- ],
- [
- 9.32173,
- 47.39855
- ],
- [
- 9.32098,
- 47.39777
- ],
- [
- 9.31924,
- 47.39742
- ],
- [
- 9.31909,
- 47.39698
- ],
- [
- 9.31821,
- 47.39672
- ],
- [
- 9.31774,
- 47.39678
- ],
- [
- 9.31701,
- 47.39719
- ],
- [
- 9.31671,
- 47.39723
- ],
- [
- 9.31126,
- 47.39626
- ],
- [
- 9.31083,
- 47.39604
- ],
- [
- 9.30911,
- 47.39592
- ],
- [
- 9.30849,
- 47.39594
- ],
- [
- 9.30748,
- 47.39572
- ],
- [
- 9.30724,
- 47.39543
- ],
- [
- 9.30609,
- 47.39523
- ],
- [
- 9.30493,
- 47.39507
- ],
- [
- 9.30295,
- 47.39465
- ],
- [
- 9.30154,
- 47.3946
- ],
- [
- 9.30001,
- 47.39492
- ],
- [
- 9.2978,
- 47.39566
- ],
- [
- 9.29634,
- 47.39584
- ],
- [
- 9.2948,
- 47.39565
- ],
- [
- 9.29351,
- 47.39594
- ],
- [
- 9.29319,
- 47.3965
- ],
- [
- 9.29343,
- 47.39723
- ],
- [
- 9.29456,
- 47.39826
- ],
- [
- 9.29506,
- 47.39819
- ],
- [
- 9.29606,
- 47.39919
- ],
- [
- 9.29482,
- 47.39973
- ],
- [
- 9.29458,
- 47.40053
- ],
- [
- 9.29169,
- 47.40199
- ],
- [
- 9.29113,
- 47.4026
- ],
- [
- 9.29068,
- 47.40378
- ],
- [
- 9.29098,
- 47.40496
- ],
- [
- 9.29134,
- 47.40629
- ],
- [
- 9.29381,
- 47.40907
- ],
- [
- 9.29446,
- 47.40915
- ],
- [
- 9.29669,
- 47.40882
- ],
- [
- 9.29609,
- 47.41273
- ],
- [
- 9.29495,
- 47.4188
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthofoto 2018 Stadt St. Gallen",
- "url": "https://daten.stadt.sg.ch/"
- },
- "available_projections": [
- "EPSG:21781",
- "EPSG:4326",
- "EPSG:2056"
- ],
- "best": true,
- "category": "photo",
- "country_code": "CH",
- "description": "7.5 cm orthophoto from 2018",
- "end_date": "2018",
- "id": "SG-2018-WMS",
- "license_url": "https://wiki.openstreetmap.org/wiki/Stadt_St._Gallen_Open_Data",
- "max_zoom": 21,
- "min_zoom": 15,
- "name": "Stadt St. Gallen",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://daten.stadt.sg.ch/terms/privacy-policy/",
- "start_date": "2018",
- "type": "wms",
- "url": "https://map.stadt.sg.ch/cgi-bin/mapserv.exe?map=d:data/wms_op_stadt_sg.map&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OP_SG&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.68,
- 47.32
- ],
- [
- 8.74,
- 47.32
- ],
- [
- 8.74,
- 47.365
- ],
- [
- 8.68,
- 47.365
- ],
- [
- 8.68,
- 47.32
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Stadt Uster Vermessung Orthophoto 2008"
- },
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2008",
- "id": "Uster-2008",
- "license_url": "https://wiki.openstreetmap.org/wiki/Stadt_Uster_WMS",
- "max_zoom": 21,
- "name": "Stadt Uster Orthophoto 2008 10cm",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2008",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.44624,
- 47.44143
- ],
- [
- 8.63178,
- 47.43968
- ],
- [
- 8.62895,
- 47.31377
- ],
- [
- 8.44381,
- 47.31555
- ],
- [
- 8.44624,
- 47.44143
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Stadt Zürich Luftbild 2011"
- },
- "category": "photo",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "end_date": "2011",
- "id": "Zuerich-zh_luftbild2011-tms",
- "license_url": "https://data.stadt-zuerich.ch/dataset/geo_orthofoto_2011_stadt_zuerich___fruehling",
- "max_zoom": 21,
- "name": "Stadt Zürich Luftbild 2011",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "start_date": "2011",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/zh_luftbild2011/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.44624,
- 47.44143
- ],
- [
- 8.63178,
- 47.43968
- ],
- [
- 8.62895,
- 47.31377
- ],
- [
- 8.44381,
- 47.31555
- ],
- [
- 8.44624,
- 47.44143
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Stadt Zürich Open Government Data"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:2056",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "CH",
- "end_date": "2013",
- "id": "Zuerich-zh_luftbild2013-wms",
- "license_url": "https://data.stadt-zuerich.ch/dataset/geo_orthofoto_2013_stadt_zuerich___fruehling",
- "max_zoom": 21,
- "name": "Stadt Zürich Luftbild 2013",
- "privacy_policy_url": "https://www.stadt-zuerich.ch/portal/de/index/footer/rechtliche_hinweise.html",
- "start_date": "2013",
- "type": "wms",
- "url": "https://www.ogd.stadt-zuerich.ch/wms/geoportal/Orthofoto_2013_Stadt_Zuerich___Fruehling?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=OP_2013_STZH.tif&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.56681,
- 47.34713
- ],
- [
- 8.56665,
- 47.34706
- ],
- [
- 8.56563,
- 47.34684
- ],
- [
- 8.56575,
- 47.34666
- ],
- [
- 8.56509,
- 47.34645
- ],
- [
- 8.54207,
- 47.33502
- ],
- [
- 8.54073,
- 47.33376
- ],
- [
- 8.5403,
- 47.33396
- ],
- [
- 8.54019,
- 47.33372
- ],
- [
- 8.54042,
- 47.33358
- ],
- [
- 8.5388,
- 47.33208
- ],
- [
- 8.53642,
- 47.33076
- ],
- [
- 8.53622,
- 47.33018
- ],
- [
- 8.53345,
- 47.32992
- ],
- [
- 8.5318,
- 47.3295
- ],
- [
- 8.53145,
- 47.32846
- ],
- [
- 8.53102,
- 47.32789
- ],
- [
- 8.52974,
- 47.32777
- ],
- [
- 8.52969,
- 47.32687
- ],
- [
- 8.52899,
- 47.32698
- ],
- [
- 8.52813,
- 47.32685
- ],
- [
- 8.52802,
- 47.32635
- ],
- [
- 8.52755,
- 47.32639
- ],
- [
- 8.52762,
- 47.32616
- ],
- [
- 8.52579,
- 47.32619
- ],
- [
- 8.52563,
- 47.32575
- ],
- [
- 8.52426,
- 47.32608
- ],
- [
- 8.5242,
- 47.32486
- ],
- [
- 8.52372,
- 47.32416
- ],
- [
- 8.52304,
- 47.32433
- ],
- [
- 8.52193,
- 47.32436
- ],
- [
- 8.52194,
- 47.32394
- ],
- [
- 8.51932,
- 47.32401
- ],
- [
- 8.51868,
- 47.32386
- ],
- [
- 8.51768,
- 47.3232
- ],
- [
- 8.51642,
- 47.32308
- ],
- [
- 8.5156,
- 47.32315
- ],
- [
- 8.51472,
- 47.32272
- ],
- [
- 8.51295,
- 47.3229
- ],
- [
- 8.51162,
- 47.32222
- ],
- [
- 8.50957,
- 47.32202
- ],
- [
- 8.5095,
- 47.32165
- ],
- [
- 8.50788,
- 47.32203
- ],
- [
- 8.50735,
- 47.32173
- ],
- [
- 8.50529,
- 47.32144
- ],
- [
- 8.50476,
- 47.32121
- ],
- [
- 8.5043,
- 47.32074
- ],
- [
- 8.50317,
- 47.32022
- ],
- [
- 8.50241,
- 47.32053
- ],
- [
- 8.50227,
- 47.32082
- ],
- [
- 8.50152,
- 47.32129
- ],
- [
- 8.50102,
- 47.32198
- ],
- [
- 8.50095,
- 47.32259
- ],
- [
- 8.5006,
- 47.32278
- ],
- [
- 8.50078,
- 47.3237
- ],
- [
- 8.50066,
- 47.32451
- ],
- [
- 8.50098,
- 47.32595
- ],
- [
- 8.5015,
- 47.3265
- ],
- [
- 8.50159,
- 47.32732
- ],
- [
- 8.50188,
- 47.32765
- ],
- [
- 8.50132,
- 47.32883
- ],
- [
- 8.5014,
- 47.32903
- ],
- [
- 8.50069,
- 47.32979
- ],
- [
- 8.50087,
- 47.33053
- ],
- [
- 8.50063,
- 47.3311
- ],
- [
- 8.50112,
- 47.33183
- ],
- [
- 8.50075,
- 47.33202
- ],
- [
- 8.50078,
- 47.33224
- ],
- [
- 8.50106,
- 47.3326
- ],
- [
- 8.50191,
- 47.33303
- ],
- [
- 8.5022,
- 47.33364
- ],
- [
- 8.50177,
- 47.33412
- ],
- [
- 8.50152,
- 47.33504
- ],
- [
- 8.50199,
- 47.33666
- ],
- [
- 8.50161,
- 47.33728
- ],
- [
- 8.49877,
- 47.33968
- ],
- [
- 8.49808,
- 47.34169
- ],
- [
- 8.49702,
- 47.34247
- ],
- [
- 8.49709,
- 47.34326
- ],
- [
- 8.49798,
- 47.34365
- ],
- [
- 8.4981,
- 47.34387
- ],
- [
- 8.49817,
- 47.34453
- ],
- [
- 8.49773,
- 47.34521
- ],
- [
- 8.49636,
- 47.34648
- ],
- [
- 8.4951,
- 47.34691
- ],
- [
- 8.49467,
- 47.3476
- ],
- [
- 8.49285,
- 47.34828
- ],
- [
- 8.49206,
- 47.3495
- ],
- [
- 8.49145,
- 47.34964
- ],
- [
- 8.49128,
- 47.34983
- ],
- [
- 8.49089,
- 47.35067
- ],
- [
- 8.49,
- 47.35056
- ],
- [
- 8.48813,
- 47.352
- ],
- [
- 8.48691,
- 47.35203
- ],
- [
- 8.4868,
- 47.3522
- ],
- [
- 8.48728,
- 47.35311
- ],
- [
- 8.4871,
- 47.3534
- ],
- [
- 8.48501,
- 47.35469
- ],
- [
- 8.48463,
- 47.35536
- ],
- [
- 8.48463,
- 47.3567
- ],
- [
- 8.48426,
- 47.35737
- ],
- [
- 8.48321,
- 47.35814
- ],
- [
- 8.48272,
- 47.35907
- ],
- [
- 8.48205,
- 47.35954
- ],
- [
- 8.47879,
- 47.36078
- ],
- [
- 8.47698,
- 47.36029
- ],
- [
- 8.47365,
- 47.36081
- ],
- [
- 8.47275,
- 47.36079
- ],
- [
- 8.47169,
- 47.36132
- ],
- [
- 8.47053,
- 47.36166
- ],
- [
- 8.46951,
- 47.36438
- ],
- [
- 8.4664,
- 47.36574
- ],
- [
- 8.46583,
- 47.3661
- ],
- [
- 8.46545,
- 47.36664
- ],
- [
- 8.46485,
- 47.36681
- ],
- [
- 8.46427,
- 47.36728
- ],
- [
- 8.46418,
- 47.36838
- ],
- [
- 8.4649,
- 47.36897
- ],
- [
- 8.46482,
- 47.36911
- ],
- [
- 8.46938,
- 47.37136
- ],
- [
- 8.47042,
- 47.3726
- ],
- [
- 8.47022,
- 47.37395
- ],
- [
- 8.46868,
- 47.37382
- ],
- [
- 8.46761,
- 47.37357
- ],
- [
- 8.46544,
- 47.37444
- ],
- [
- 8.46288,
- 47.37603
- ],
- [
- 8.45995,
- 47.3775
- ],
- [
- 8.45638,
- 47.37801
- ],
- [
- 8.45116,
- 47.37817
- ],
- [
- 8.45047,
- 47.37836
- ],
- [
- 8.44847,
- 47.37967
- ],
- [
- 8.44801,
- 47.38025
- ],
- [
- 8.45174,
- 47.38062
- ],
- [
- 8.45371,
- 47.38027
- ],
- [
- 8.45614,
- 47.38072
- ],
- [
- 8.45669,
- 47.38094
- ],
- [
- 8.45673,
- 47.38244
- ],
- [
- 8.45745,
- 47.38222
- ],
- [
- 8.45843,
- 47.38231
- ],
- [
- 8.45841,
- 47.38263
- ],
- [
- 8.45745,
- 47.38325
- ],
- [
- 8.45767,
- 47.3834
- ],
- [
- 8.45756,
- 47.38371
- ],
- [
- 8.45807,
- 47.38388
- ],
- [
- 8.46004,
- 47.38594
- ],
- [
- 8.46088,
- 47.38704
- ],
- [
- 8.46121,
- 47.38795
- ],
- [
- 8.46104,
- 47.38803
- ],
- [
- 8.46381,
- 47.39053
- ],
- [
- 8.46518,
- 47.39132
- ],
- [
- 8.46556,
- 47.39113
- ],
- [
- 8.46618,
- 47.39113
- ],
- [
- 8.46727,
- 47.39065
- ],
- [
- 8.46697,
- 47.39131
- ],
- [
- 8.46739,
- 47.3929
- ],
- [
- 8.4671,
- 47.39334
- ],
- [
- 8.46607,
- 47.39378
- ],
- [
- 8.4651,
- 47.39453
- ],
- [
- 8.46484,
- 47.39481
- ],
- [
- 8.46488,
- 47.39508
- ],
- [
- 8.46535,
- 47.39492
- ],
- [
- 8.46854,
- 47.39461
- ],
- [
- 8.47018,
- 47.39401
- ],
- [
- 8.47066,
- 47.39439
- ],
- [
- 8.47191,
- 47.39388
- ],
- [
- 8.47208,
- 47.39408
- ],
- [
- 8.47152,
- 47.3943
- ],
- [
- 8.47151,
- 47.3949
- ],
- [
- 8.4721,
- 47.39517
- ],
- [
- 8.47301,
- 47.39506
- ],
- [
- 8.47349,
- 47.396
- ],
- [
- 8.46516,
- 47.39829
- ],
- [
- 8.46568,
- 47.39922
- ],
- [
- 8.46759,
- 47.39873
- ],
- [
- 8.46806,
- 47.39957
- ],
- [
- 8.46615,
- 47.40006
- ],
- [
- 8.4677,
- 47.403
- ],
- [
- 8.4699,
- 47.40298
- ],
- [
- 8.47551,
- 47.40381
- ],
- [
- 8.47815,
- 47.40387
- ],
- [
- 8.47819,
- 47.40508
- ],
- [
- 8.47738,
- 47.40517
- ],
- [
- 8.47705,
- 47.40619
- ],
- [
- 8.47729,
- 47.40914
- ],
- [
- 8.47703,
- 47.40935
- ],
- [
- 8.47543,
- 47.40971
- ],
- [
- 8.47583,
- 47.41077
- ],
- [
- 8.47605,
- 47.41072
- ],
- [
- 8.47628,
- 47.41102
- ],
- [
- 8.47665,
- 47.41097
- ],
- [
- 8.47725,
- 47.41194
- ],
- [
- 8.47488,
- 47.41241
- ],
- [
- 8.47394,
- 47.41222
- ],
- [
- 8.47303,
- 47.41146
- ],
- [
- 8.47268,
- 47.41058
- ],
- [
- 8.47101,
- 47.41094
- ],
- [
- 8.47113,
- 47.41137
- ],
- [
- 8.47085,
- 47.41167
- ],
- [
- 8.47044,
- 47.41159
- ],
- [
- 8.47031,
- 47.41253
- ],
- [
- 8.46876,
- 47.41225
- ],
- [
- 8.46801,
- 47.41334
- ],
- [
- 8.46863,
- 47.41363
- ],
- [
- 8.46857,
- 47.41408
- ],
- [
- 8.46955,
- 47.41484
- ],
- [
- 8.47007,
- 47.41557
- ],
- [
- 8.46913,
- 47.41649
- ],
- [
- 8.46913,
- 47.41693
- ],
- [
- 8.46962,
- 47.41752
- ],
- [
- 8.47158,
- 47.41763
- ],
- [
- 8.4772,
- 47.41974
- ],
- [
- 8.47688,
- 47.42016
- ],
- [
- 8.47783,
- 47.42212
- ],
- [
- 8.47895,
- 47.42172
- ],
- [
- 8.47937,
- 47.42113
- ],
- [
- 8.47972,
- 47.42141
- ],
- [
- 8.48131,
- 47.42134
- ],
- [
- 8.48171,
- 47.423
- ],
- [
- 8.48294,
- 47.42266
- ],
- [
- 8.48292,
- 47.42222
- ],
- [
- 8.48609,
- 47.42155
- ],
- [
- 8.48658,
- 47.42164
- ],
- [
- 8.48683,
- 47.42186
- ],
- [
- 8.48796,
- 47.42201
- ],
- [
- 8.48851,
- 47.42271
- ],
- [
- 8.49019,
- 47.42234
- ],
- [
- 8.491,
- 47.4239
- ],
- [
- 8.49006,
- 47.42435
- ],
- [
- 8.49007,
- 47.42532
- ],
- [
- 8.49027,
- 47.42536
- ],
- [
- 8.49017,
- 47.42578
- ],
- [
- 8.48552,
- 47.42712
- ],
- [
- 8.48481,
- 47.42784
- ],
- [
- 8.48466,
- 47.42873
- ],
- [
- 8.48437,
- 47.42896
- ],
- [
- 8.48445,
- 47.42979
- ],
- [
- 8.48579,
- 47.43103
- ],
- [
- 8.49562,
- 47.43281
- ],
- [
- 8.50027,
- 47.43442
- ],
- [
- 8.50207,
- 47.43467
- ],
- [
- 8.50364,
- 47.43402
- ],
- [
- 8.50997,
- 47.43213
- ],
- [
- 8.51155,
- 47.43116
- ],
- [
- 8.51274,
- 47.43085
- ],
- [
- 8.516,
- 47.43174
- ],
- [
- 8.51628,
- 47.43175
- ],
- [
- 8.51681,
- 47.43133
- ],
- [
- 8.51872,
- 47.4319
- ],
- [
- 8.51979,
- 47.43167
- ],
- [
- 8.52463,
- 47.43126
- ],
- [
- 8.52549,
- 47.43316
- ],
- [
- 8.5303,
- 47.43207
- ],
- [
- 8.53063,
- 47.43266
- ],
- [
- 8.533,
- 47.43228
- ],
- [
- 8.53374,
- 47.43251
- ],
- [
- 8.53467,
- 47.432
- ],
- [
- 8.53521,
- 47.43188
- ],
- [
- 8.53606,
- 47.43187
- ],
- [
- 8.5374,
- 47.4314
- ],
- [
- 8.53964,
- 47.43126
- ],
- [
- 8.5401,
- 47.4311
- ],
- [
- 8.54033,
- 47.43186
- ],
- [
- 8.54363,
- 47.43143
- ],
- [
- 8.54284,
- 47.43289
- ],
- [
- 8.54311,
- 47.43288
- ],
- [
- 8.54451,
- 47.4325
- ],
- [
- 8.54459,
- 47.43262
- ],
- [
- 8.54607,
- 47.43207
- ],
- [
- 8.54858,
- 47.43142
- ],
- [
- 8.55009,
- 47.43128
- ],
- [
- 8.55098,
- 47.43102
- ],
- [
- 8.55199,
- 47.43104
- ],
- [
- 8.55535,
- 47.43066
- ],
- [
- 8.5561,
- 47.42803
- ],
- [
- 8.55684,
- 47.42624
- ],
- [
- 8.55783,
- 47.42554
- ],
- [
- 8.55697,
- 47.4249
- ],
- [
- 8.55736,
- 47.42472
- ],
- [
- 8.5569,
- 47.42424
- ],
- [
- 8.55723,
- 47.4241
- ],
- [
- 8.55419,
- 47.4208
- ],
- [
- 8.56082,
- 47.41817
- ],
- [
- 8.56129,
- 47.41829
- ],
- [
- 8.56235,
- 47.41632
- ],
- [
- 8.56282,
- 47.41643
- ],
- [
- 8.56323,
- 47.41565
- ],
- [
- 8.56622,
- 47.41632
- ],
- [
- 8.56692,
- 47.41629
- ],
- [
- 8.56735,
- 47.41649
- ],
- [
- 8.5678,
- 47.41684
- ],
- [
- 8.56875,
- 47.41855
- ],
- [
- 8.56903,
- 47.41871
- ],
- [
- 8.5696,
- 47.41868
- ],
- [
- 8.56944,
- 47.41926
- ],
- [
- 8.57223,
- 47.41893
- ],
- [
- 8.57367,
- 47.42004
- ],
- [
- 8.57378,
- 47.4178
- ],
- [
- 8.57342,
- 47.41711
- ],
- [
- 8.57386,
- 47.41438
- ],
- [
- 8.57384,
- 47.41324
- ],
- [
- 8.57331,
- 47.41257
- ],
- [
- 8.5726,
- 47.41207
- ],
- [
- 8.573,
- 47.41144
- ],
- [
- 8.58806,
- 47.40797
- ],
- [
- 8.58894,
- 47.40756
- ],
- [
- 8.59312,
- 47.40704
- ],
- [
- 8.59728,
- 47.40631
- ],
- [
- 8.59722,
- 47.406
- ],
- [
- 8.59608,
- 47.40612
- ],
- [
- 8.59378,
- 47.40222
- ],
- [
- 8.59622,
- 47.40154
- ],
- [
- 8.5948,
- 47.39918
- ],
- [
- 8.59725,
- 47.39851
- ],
- [
- 8.59644,
- 47.39715
- ],
- [
- 8.59637,
- 47.39663
- ],
- [
- 8.59623,
- 47.39646
- ],
- [
- 8.59453,
- 47.39712
- ],
- [
- 8.59392,
- 47.39647
- ],
- [
- 8.59335,
- 47.39614
- ],
- [
- 8.59208,
- 47.39691
- ],
- [
- 8.59172,
- 47.39681
- ],
- [
- 8.59148,
- 47.397
- ],
- [
- 8.58828,
- 47.3958
- ],
- [
- 8.58905,
- 47.39501
- ],
- [
- 8.58995,
- 47.39478
- ],
- [
- 8.58818,
- 47.39351
- ],
- [
- 8.58752,
- 47.39321
- ],
- [
- 8.58747,
- 47.39297
- ],
- [
- 8.58619,
- 47.3928
- ],
- [
- 8.58442,
- 47.39195
- ],
- [
- 8.58369,
- 47.39008
- ],
- [
- 8.58305,
- 47.38905
- ],
- [
- 8.58316,
- 47.38831
- ],
- [
- 8.58437,
- 47.38834
- ],
- [
- 8.58432,
- 47.38894
- ],
- [
- 8.58492,
- 47.39011
- ],
- [
- 8.58528,
- 47.3904
- ],
- [
- 8.58696,
- 47.39017
- ],
- [
- 8.5869,
- 47.38977
- ],
- [
- 8.58765,
- 47.38905
- ],
- [
- 8.58698,
- 47.38793
- ],
- [
- 8.59181,
- 47.38638
- ],
- [
- 8.59307,
- 47.38565
- ],
- [
- 8.59299,
- 47.38523
- ],
- [
- 8.59354,
- 47.38522
- ],
- [
- 8.59274,
- 47.38417
- ],
- [
- 8.59082,
- 47.38476
- ],
- [
- 8.59013,
- 47.38381
- ],
- [
- 8.58966,
- 47.384
- ],
- [
- 8.58956,
- 47.38373
- ],
- [
- 8.59217,
- 47.38311
- ],
- [
- 8.59151,
- 47.38244
- ],
- [
- 8.59384,
- 47.38081
- ],
- [
- 8.59407,
- 47.38061
- ],
- [
- 8.59406,
- 47.38029
- ],
- [
- 8.59556,
- 47.3796
- ],
- [
- 8.59574,
- 47.37927
- ],
- [
- 8.59721,
- 47.37849
- ],
- [
- 8.59674,
- 47.37782
- ],
- [
- 8.59702,
- 47.37716
- ],
- [
- 8.5976,
- 47.37661
- ],
- [
- 8.59705,
- 47.37589
- ],
- [
- 8.59778,
- 47.37557
- ],
- [
- 8.59828,
- 47.3751
- ],
- [
- 8.59855,
- 47.37473
- ],
- [
- 8.59813,
- 47.37447
- ],
- [
- 8.6002,
- 47.37331
- ],
- [
- 8.60053,
- 47.3734
- ],
- [
- 8.60096,
- 47.37312
- ],
- [
- 8.60194,
- 47.37198
- ],
- [
- 8.60192,
- 47.37171
- ],
- [
- 8.60324,
- 47.37131
- ],
- [
- 8.60607,
- 47.36871
- ],
- [
- 8.60745,
- 47.36816
- ],
- [
- 8.60812,
- 47.36761
- ],
- [
- 8.61067,
- 47.3673
- ],
- [
- 8.612,
- 47.36684
- ],
- [
- 8.61308,
- 47.36776
- ],
- [
- 8.61344,
- 47.36779
- ],
- [
- 8.61366,
- 47.36802
- ],
- [
- 8.61549,
- 47.3677
- ],
- [
- 8.61645,
- 47.36841
- ],
- [
- 8.61665,
- 47.36828
- ],
- [
- 8.61764,
- 47.36681
- ],
- [
- 8.61709,
- 47.36626
- ],
- [
- 8.61682,
- 47.36535
- ],
- [
- 8.61565,
- 47.36466
- ],
- [
- 8.61495,
- 47.36458
- ],
- [
- 8.61557,
- 47.36342
- ],
- [
- 8.61566,
- 47.36273
- ],
- [
- 8.61482,
- 47.36263
- ],
- [
- 8.6147,
- 47.36151
- ],
- [
- 8.61929,
- 47.36121
- ],
- [
- 8.61996,
- 47.36104
- ],
- [
- 8.62174,
- 47.36007
- ],
- [
- 8.62257,
- 47.35983
- ],
- [
- 8.62187,
- 47.35946
- ],
- [
- 8.62133,
- 47.35746
- ],
- [
- 8.62351,
- 47.35592
- ],
- [
- 8.62352,
- 47.35561
- ],
- [
- 8.62544,
- 47.35466
- ],
- [
- 8.62416,
- 47.35397
- ],
- [
- 8.62245,
- 47.35364
- ],
- [
- 8.62209,
- 47.35334
- ],
- [
- 8.61989,
- 47.35367
- ],
- [
- 8.61976,
- 47.35385
- ],
- [
- 8.61844,
- 47.35382
- ],
- [
- 8.61839,
- 47.35425
- ],
- [
- 8.61708,
- 47.35414
- ],
- [
- 8.61569,
- 47.35442
- ],
- [
- 8.6152,
- 47.3541
- ],
- [
- 8.61386,
- 47.35402
- ],
- [
- 8.61255,
- 47.35437
- ],
- [
- 8.61156,
- 47.35394
- ],
- [
- 8.61107,
- 47.35352
- ],
- [
- 8.61042,
- 47.35337
- ],
- [
- 8.60946,
- 47.35352
- ],
- [
- 8.60776,
- 47.35333
- ],
- [
- 8.60607,
- 47.35363
- ],
- [
- 8.60506,
- 47.35359
- ],
- [
- 8.6038,
- 47.353
- ],
- [
- 8.60305,
- 47.35219
- ],
- [
- 8.6032,
- 47.35207
- ],
- [
- 8.60294,
- 47.35175
- ],
- [
- 8.603,
- 47.35076
- ],
- [
- 8.60262,
- 47.35073
- ],
- [
- 8.6016,
- 47.35073
- ],
- [
- 8.60104,
- 47.35105
- ],
- [
- 8.60026,
- 47.35112
- ],
- [
- 8.5996,
- 47.35145
- ],
- [
- 8.59859,
- 47.35145
- ],
- [
- 8.59824,
- 47.35165
- ],
- [
- 8.59689,
- 47.3514
- ],
- [
- 8.59666,
- 47.35161
- ],
- [
- 8.59596,
- 47.35169
- ],
- [
- 8.59564,
- 47.3519
- ],
- [
- 8.59494,
- 47.35161
- ],
- [
- 8.59454,
- 47.35175
- ],
- [
- 8.5939,
- 47.35161
- ],
- [
- 8.5935,
- 47.35211
- ],
- [
- 8.59229,
- 47.3523
- ],
- [
- 8.59189,
- 47.35278
- ],
- [
- 8.59118,
- 47.35321
- ],
- [
- 8.59047,
- 47.35271
- ],
- [
- 8.59014,
- 47.35286
- ],
- [
- 8.58846,
- 47.35289
- ],
- [
- 8.58797,
- 47.35307
- ],
- [
- 8.58748,
- 47.35267
- ],
- [
- 8.5863,
- 47.35288
- ],
- [
- 8.58591,
- 47.35231
- ],
- [
- 8.5853,
- 47.35201
- ],
- [
- 8.58462,
- 47.35141
- ],
- [
- 8.58417,
- 47.35129
- ],
- [
- 8.58438,
- 47.35116
- ],
- [
- 8.58398,
- 47.35085
- ],
- [
- 8.58348,
- 47.35104
- ],
- [
- 8.58335,
- 47.35087
- ],
- [
- 8.58221,
- 47.35101
- ],
- [
- 8.58246,
- 47.35062
- ],
- [
- 8.57851,
- 47.34873
- ],
- [
- 8.57827,
- 47.34888
- ],
- [
- 8.57786,
- 47.34865
- ],
- [
- 8.57686,
- 47.34878
- ],
- [
- 8.57688,
- 47.34859
- ],
- [
- 8.57625,
- 47.34839
- ],
- [
- 8.57308,
- 47.34751
- ],
- [
- 8.573,
- 47.34765
- ],
- [
- 8.57214,
- 47.34744
- ],
- [
- 8.57163,
- 47.34728
- ],
- [
- 8.5717,
- 47.34712
- ],
- [
- 8.57029,
- 47.34672
- ],
- [
- 8.56968,
- 47.3476
- ],
- [
- 8.56741,
- 47.34674
- ],
- [
- 8.56681,
- 47.34713
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Stadt Zürich Open Government Data"
- },
- "category": "map",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "id": "Zuerich-city_map",
- "license_url": "https://www.stadt-zuerich.ch/portal/de/index/ogd/nutzungsbedingungen.html",
- "max_zoom": 21,
- "name": "Stadt Zürich Stadtplan",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/zh_stadtplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.45788,
- 47.44582
- ],
- [
- 8.57392,
- 47.44477
- ],
- [
- 8.57362,
- 47.43124
- ],
- [
- 8.60266,
- 47.43096
- ],
- [
- 8.60231,
- 47.41746
- ],
- [
- 8.6318,
- 47.41716
- ],
- [
- 8.6295,
- 47.33628
- ],
- [
- 8.57162,
- 47.33679
- ],
- [
- 8.57152,
- 47.32292
- ],
- [
- 8.54236,
- 47.3236
- ],
- [
- 8.54212,
- 47.31013
- ],
- [
- 8.48418,
- 47.31062
- ],
- [
- 8.48478,
- 47.33762
- ],
- [
- 8.45582,
- 47.33787
- ],
- [
- 8.45609,
- 47.35135
- ],
- [
- 8.42713,
- 47.35161
- ],
- [
- 8.42864,
- 47.43259
- ],
- [
- 8.45745,
- 47.43231
- ],
- [
- 8.45788,
- 47.44582
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Stadt Zürich Open Government Data"
- },
- "category": "map",
- "country_code": "CH",
- "description": "This imagery is provided via a proxy operated by https://sosm.ch/",
- "id": "Zuerich-zh_uebersichtsplan-tms",
- "license_url": "https://data.stadt-zuerich.ch/dataset/geo_uebersichtsplan_stadt_zuerich",
- "max_zoom": 21,
- "name": "Stadt Zürich Übersichtsplan",
- "privacy_policy_url": "https://sosm.ch/about/terms-of-service/",
- "type": "tms",
- "url": "https://mapproxy.osm.ch/tiles/zh_uebersichtsplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.55906,
- 45.95485
- ],
- [
- 7.47396,
- 45.95533
- ],
- [
- 7.55585,
- 46.2708
- ],
- [
- 8.0547,
- 47.66469
- ],
- [
- 11.75245,
- 47.66481
- ],
- [
- 11.75245,
- 46.81334
- ],
- [
- 11.38424,
- 45.95509
- ],
- [
- 10.55906,
- 45.95485
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "category": "photo",
- "country_code": "CH",
- "description": "Up-to-date image for glacier mapping - beware of some fresh snow at higher altitudes (true color)",
- "end_date": "2016-09-29",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R065_N47_20160929T102022",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Central Alps in late September 2016",
- "start_date": "2016-09-29",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R065_N47_20160929T102022&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.6412,
- 43.2493
- ],
- [
- 4.3118,
- 43.2653
- ],
- [
- 4.3118,
- 44.2167
- ],
- [
- 5.2562,
- 46.965
- ],
- [
- 5.9151,
- 48.7177
- ],
- [
- 7.3866,
- 48.7467
- ],
- [
- 10.088,
- 48.7467
- ],
- [
- 10.088,
- 48.7032
- ],
- [
- 7.7819,
- 43.2813
- ],
- [
- 7.76,
- 43.2653
- ],
- [
- 7.3646,
- 43.2493
- ],
- [
- 4.6412,
- 43.2493
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "category": "photo",
- "country_code": "CH",
- "description": "Autumn colors in the Alps, Jura and southwestern Germany (true color)",
- "end_date": "2017-10-17",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-walps_autumn_2017",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Western Alps autumn colors 2017",
- "start_date": "2017-10-17",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=walps_autumn_2017&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:5514",
- "EPSG:102066",
- "EPSG:102067",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:5221",
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3045",
- "EPSG:3046",
- "EPSG:3857",
- "EPSG:3835",
- "EPSG:3836"
- ],
- "country_code": "CZ",
- "id": "Czech_CUZK-KM",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Czech_Republic/freemap",
- "name": "Czech CUZK:KM",
- "overlay": true,
- "type": "wms",
- "url": "https://wms.cuzk.cz/wms.asp?service=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&LAYERS=parcelni_cisla_i,obrazy_parcel_i,RST_KMD_I,hranice_parcel_i,DEF_BUDOVY,RST_KN_I,dalsi_p_mapy_i,prehledka_kat_prac,prehledka_kat_uz,prehledka_kraju-linie&FORMAT=image/png&transparent=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "CZ",
- "id": "Czech_CUZK-KM-tms",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Czech_Republic/freemap",
- "max_zoom": 18,
- "min_zoom": 13,
- "name": "Czech CUZK:KM tiles proxy",
- "overlay": true,
- "type": "tms",
- "url": "https://osm-{switch:a,b,c}.zby.cz/tiles_cuzk.php/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Czech RUIAN",
- "url": "https://poloha.net/"
- },
- "country_code": "CZ",
- "id": "Czech_RUIAN-budovy",
- "license_url": "https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#.C4.8C.C3.9AZK_-_R.C3.9AIAN",
- "max_zoom": 20,
- "min_zoom": 12,
- "name": "Czech RUIAN budovy",
- "type": "tms",
- "url": "https://tile.poloha.net/budovy/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Czech RUIAN",
- "url": "https://poloha.net/"
- },
- "country_code": "CZ",
- "id": "Czech_RUIAN-parcely",
- "license_url": "https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#.C4.8C.C3.9AZK_-_R.C3.9AIAN",
- "max_zoom": 20,
- "min_zoom": 12,
- "name": "Czech RUIAN parcely",
- "type": "tms",
- "url": "https://tile.poloha.net/parcely/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:102067",
- "EPSG:32633",
- "EPSG:4326"
- ],
- "country_code": "CZ",
- "id": "Czech_pLPIS",
- "license_url": "https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#pLPIS_-_ve.C5.99ejn.C3.BD_registr_p.C5.AFdy",
- "name": "Czech pLPIS",
- "type": "wms",
- "url": "https://eagri.cz/public/app/wms/public_DPB_PB_OPV.fcgi?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DPB_UCINNE,DPB_UCINNE_KOD&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 14.81232,
- 49.93089
- ],
- [
- 14.18755,
- 49.87687
- ],
- [
- 14.12025,
- 50.19882
- ],
- [
- 14.74502,
- 50.25247
- ],
- [
- 14.81232,
- 49.93089
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "CZ",
- "id": "IPR-orotofoto-last-tms",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Czech_Republic/freemap",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "IPR ortofoto LAST (tmsproxy)",
- "type": "tms",
- "url": "https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_last.php/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 14.30454,
- 49.99538
- ],
- [
- 14.31604,
- 49.94205
- ],
- [
- 14.35,
- 49.94508
- ],
- [
- 14.35384,
- 49.92726
- ],
- [
- 14.42385,
- 49.93352
- ],
- [
- 14.42009,
- 49.95097
- ],
- [
- 14.48865,
- 49.95709
- ],
- [
- 14.48479,
- 49.97501
- ],
- [
- 14.55386,
- 49.98117
- ],
- [
- 14.55012,
- 49.99852
- ],
- [
- 14.58455,
- 50.00159
- ],
- [
- 14.5883,
- 49.98424
- ],
- [
- 14.69168,
- 49.99346
- ],
- [
- 14.67634,
- 50.06453
- ],
- [
- 14.71279,
- 50.06777
- ],
- [
- 14.70115,
- 50.12158
- ],
- [
- 14.6647,
- 50.11834
- ],
- [
- 14.661,
- 50.13543
- ],
- [
- 14.62755,
- 50.13246
- ],
- [
- 14.61965,
- 50.16895
- ],
- [
- 14.58543,
- 50.16591
- ],
- [
- 14.58163,
- 50.18344
- ],
- [
- 14.40776,
- 50.168
- ],
- [
- 14.41156,
- 50.15045
- ],
- [
- 14.37765,
- 50.14744
- ],
- [
- 14.3738,
- 50.16524
- ],
- [
- 14.33893,
- 50.16214
- ],
- [
- 14.34278,
- 50.14434
- ],
- [
- 14.27368,
- 50.1382
- ],
- [
- 14.27749,
- 50.12058
- ],
- [
- 14.2088,
- 50.11447
- ],
- [
- 14.21289,
- 50.09557
- ],
- [
- 14.24656,
- 50.09857
- ],
- [
- 14.25417,
- 50.06336
- ],
- [
- 14.21987,
- 50.0603
- ],
- [
- 14.2237,
- 50.04259
- ],
- [
- 14.258,
- 50.04565
- ],
- [
- 14.26953,
- 49.99226
- ],
- [
- 14.30454,
- 49.99538
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "CZ",
- "id": "IPR-orotofoto-vege-tms",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Czech_Republic/freemap",
- "max_zoom": 20,
- "min_zoom": 2,
- "name": "IPR ortofoto Low-Vegetation (tmsproxy)",
- "type": "tms",
- "url": "https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_vege.php/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 14.81232,
- 49.93089
- ],
- [
- 14.18755,
- 49.87687
- ],
- [
- 14.12025,
- 50.19882
- ],
- [
- 14.74502,
- 50.25247
- ],
- [
- 14.81232,
- 49.93089
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:5514",
- "EPSG:102067"
- ],
- "country_code": "CZ",
- "id": "PrahaIPRlatestorthophoto",
- "license_url": "https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#Ortofotomapy_IPR_Praha",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "Praha IPR latest orthophoto",
- "type": "wms",
- "url": "http://giswa1.mag.mepnet.cz/arcgis/services/MAP/letecke_snimky_posledni_snimkovani_cache/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 14.30454,
- 49.99538
- ],
- [
- 14.31604,
- 49.94205
- ],
- [
- 14.35,
- 49.94508
- ],
- [
- 14.35384,
- 49.92726
- ],
- [
- 14.42385,
- 49.93352
- ],
- [
- 14.42009,
- 49.95097
- ],
- [
- 14.48865,
- 49.95709
- ],
- [
- 14.48479,
- 49.97501
- ],
- [
- 14.55386,
- 49.98117
- ],
- [
- 14.55012,
- 49.99852
- ],
- [
- 14.58455,
- 50.00159
- ],
- [
- 14.5883,
- 49.98424
- ],
- [
- 14.69168,
- 49.99346
- ],
- [
- 14.67634,
- 50.06453
- ],
- [
- 14.71279,
- 50.06777
- ],
- [
- 14.70115,
- 50.12158
- ],
- [
- 14.6647,
- 50.11834
- ],
- [
- 14.661,
- 50.13543
- ],
- [
- 14.62755,
- 50.13246
- ],
- [
- 14.61965,
- 50.16895
- ],
- [
- 14.58543,
- 50.16591
- ],
- [
- 14.58163,
- 50.18344
- ],
- [
- 14.40776,
- 50.168
- ],
- [
- 14.41156,
- 50.15045
- ],
- [
- 14.37765,
- 50.14744
- ],
- [
- 14.3738,
- 50.16524
- ],
- [
- 14.33893,
- 50.16214
- ],
- [
- 14.34278,
- 50.14434
- ],
- [
- 14.27368,
- 50.1382
- ],
- [
- 14.27749,
- 50.12058
- ],
- [
- 14.2088,
- 50.11447
- ],
- [
- 14.21289,
- 50.09557
- ],
- [
- 14.24656,
- 50.09857
- ],
- [
- 14.25417,
- 50.06336
- ],
- [
- 14.21987,
- 50.0603
- ],
- [
- 14.2237,
- 50.04259
- ],
- [
- 14.258,
- 50.04565
- ],
- [
- 14.26953,
- 49.99226
- ],
- [
- 14.30454,
- 49.99538
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:5514",
- "EPSG:102067"
- ],
- "country_code": "CZ",
- "id": "PrahaIPRlow-vegetationorthophoto",
- "license_url": "https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#Ortofotomapy_IPR_Praha",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "Praha IPR low-vegetation orthophoto",
- "type": "wms",
- "url": "http://giswa1.mag.mepnet.cz/arcgis/services/MAP/mimovegetacni_snimkovani_cache/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.12359,
- 50.56846
- ],
- [
- 10.14286,
- 50.55078
- ],
- [
- 10.20281,
- 50.55742
- ],
- [
- 10.25205,
- 50.51796
- ],
- [
- 10.32698,
- 50.49345
- ],
- [
- 10.41048,
- 50.41848
- ],
- [
- 10.60317,
- 50.33109
- ],
- [
- 10.62244,
- 50.2271
- ],
- [
- 10.72521,
- 50.21066
- ],
- [
- 10.72949,
- 50.24765
- ],
- [
- 10.85153,
- 50.24354
- ],
- [
- 10.71879,
- 50.32015
- ],
- [
- 10.71236,
- 50.36524
- ],
- [
- 10.85581,
- 50.39664
- ],
- [
- 10.93717,
- 50.39664
- ],
- [
- 10.99069,
- 50.36661
- ],
- [
- 11.12772,
- 50.36661
- ],
- [
- 11.1791,
- 50.31332
- ],
- [
- 11.16197,
- 50.29417
- ],
- [
- 11.24119,
- 50.2928
- ],
- [
- 11.24975,
- 50.37344
- ],
- [
- 11.24119,
- 50.47982
- ],
- [
- 11.35895,
- 50.5234
- ],
- [
- 11.43816,
- 50.50979
- ],
- [
- 11.44244,
- 50.48936
- ],
- [
- 11.42532,
- 50.4771
- ],
- [
- 11.42532,
- 50.44166
- ],
- [
- 11.48955,
- 50.42257
- ],
- [
- 11.49169,
- 50.39801
- ],
- [
- 11.51952,
- 50.39801
- ],
- [
- 11.52594,
- 50.37617
- ],
- [
- 11.59874,
- 50.40347
- ],
- [
- 11.63727,
- 50.38845
- ],
- [
- 11.79357,
- 50.4212
- ],
- [
- 11.83639,
- 50.39255
- ],
- [
- 11.92203,
- 50.42802
- ],
- [
- 11.98626,
- 50.38709
- ],
- [
- 11.98412,
- 50.35705
- ],
- [
- 12.04835,
- 50.33109
- ],
- [
- 12.09331,
- 50.32972
- ],
- [
- 12.1297,
- 50.29828
- ],
- [
- 12.14041,
- 50.27228
- ],
- [
- 12.10615,
- 50.25586
- ],
- [
- 12.11258,
- 50.23532
- ],
- [
- 12.14897,
- 50.23669
- ],
- [
- 12.19822,
- 50.20107
- ],
- [
- 12.22391,
- 50.16406
- ],
- [
- 12.20464,
- 50.14348
- ],
- [
- 12.20678,
- 50.10779
- ],
- [
- 12.24318,
- 50.09955
- ],
- [
- 12.27743,
- 50.07208
- ],
- [
- 12.49367,
- 49.98543
- ],
- [
- 12.49796,
- 49.94136
- ],
- [
- 12.55576,
- 49.92206
- ],
- [
- 12.54934,
- 49.86827
- ],
- [
- 12.48083,
- 49.78817
- ],
- [
- 12.41018,
- 49.75775
- ],
- [
- 12.46156,
- 49.70655
- ],
- [
- 12.5472,
- 49.68023
- ],
- [
- 12.58788,
- 49.55261
- ],
- [
- 12.65425,
- 49.53455
- ],
- [
- 12.66281,
- 49.43302
- ],
- [
- 12.75274,
- 49.41073
- ],
- [
- 12.7977,
- 49.34661
- ],
- [
- 12.90475,
- 49.35638
- ],
- [
- 12.99681,
- 49.33685
- ],
- [
- 13.05462,
- 49.27543
- ],
- [
- 13.13169,
- 49.21952
- ],
- [
- 13.19164,
- 49.14395
- ],
- [
- 13.2366,
- 49.12153
- ],
- [
- 13.29655,
- 49.12293
- ],
- [
- 13.37148,
- 49.08088
- ],
- [
- 13.4143,
- 49.02897
- ],
- [
- 13.4143,
- 48.97981
- ],
- [
- 13.57916,
- 48.96997
- ],
- [
- 13.63483,
- 48.94326
- ],
- [
- 13.67765,
- 48.88698
- ],
- [
- 13.73759,
- 48.89261
- ],
- [
- 13.7847,
- 48.83346
- ],
- [
- 13.84036,
- 48.77423
- ],
- [
- 13.81681,
- 48.70646
- ],
- [
- 13.84464,
- 48.70081
- ],
- [
- 13.8425,
- 48.60038
- ],
- [
- 13.76543,
- 48.5423
- ],
- [
- 13.75258,
- 48.50401
- ],
- [
- 13.67122,
- 48.50543
- ],
- [
- 13.64339,
- 48.54371
- ],
- [
- 13.45712,
- 48.5508
- ],
- [
- 13.45712,
- 48.41598
- ],
- [
- 13.40574,
- 48.36053
- ],
- [
- 13.2837,
- 48.27511
- ],
- [
- 13.09315,
- 48.26941
- ],
- [
- 12.95827,
- 48.19097
- ],
- [
- 12.87691,
- 48.18526
- ],
- [
- 12.772,
- 48.09382
- ],
- [
- 12.86407,
- 48.01368
- ],
- [
- 12.89832,
- 47.95492
- ],
- [
- 12.94543,
- 47.95636
- ],
- [
- 12.99681,
- 47.88461
- ],
- [
- 13.01394,
- 47.83434
- ],
- [
- 12.93472,
- 47.7322
- ],
- [
- 13.0589,
- 47.72499
- ],
- [
- 13.11885,
- 47.63851
- ],
- [
- 13.06532,
- 47.56922
- ],
- [
- 13.05676,
- 47.47379
- ],
- [
- 13.00323,
- 47.45208
- ],
- [
- 12.76772,
- 47.55044
- ],
- [
- 12.76986,
- 47.63274
- ],
- [
- 12.73989,
- 47.67312
- ],
- [
- 12.6671,
- 47.67024
- ],
- [
- 12.57503,
- 47.6212
- ],
- [
- 12.48083,
- 47.61975
- ],
- [
- 12.41446,
- 47.67024
- ],
- [
- 12.24318,
- 47.67745
- ],
- [
- 12.2132,
- 47.69186
- ],
- [
- 12.19179,
- 47.68177
- ],
- [
- 12.2132,
- 47.66591
- ],
- [
- 12.21106,
- 47.60388
- ],
- [
- 12.17467,
- 47.59521
- ],
- [
- 12.13827,
- 47.60388
- ],
- [
- 11.89205,
- 47.60388
- ],
- [
- 11.85137,
- 47.57933
- ],
- [
- 11.63942,
- 47.58222
- ],
- [
- 11.59445,
- 47.54899
- ],
- [
- 11.59017,
- 47.51285
- ],
- [
- 11.51738,
- 47.49839
- ],
- [
- 11.4403,
- 47.50417
- ],
- [
- 11.39534,
- 47.47524
- ],
- [
- 11.42746,
- 47.44484
- ],
- [
- 11.3461,
- 47.44339
- ],
- [
- 11.27973,
- 47.39559
- ],
- [
- 11.21336,
- 47.38834
- ],
- [
- 11.24761,
- 47.43181
- ],
- [
- 11.10203,
- 47.39269
- ],
- [
- 10.965,
- 47.38979
- ],
- [
- 10.97785,
- 47.43615
- ],
- [
- 10.9179,
- 47.47524
- ],
- [
- 10.8708,
- 47.47524
- ],
- [
- 10.85581,
- 47.49405
- ],
- [
- 10.90077,
- 47.5143
- ],
- [
- 10.87294,
- 47.53598
- ],
- [
- 10.81085,
- 47.51285
- ],
- [
- 10.64385,
- 47.54899
- ],
- [
- 10.59461,
- 47.55477
- ],
- [
- 10.57962,
- 47.52876
- ],
- [
- 10.46187,
- 47.54032
- ],
- [
- 10.46615,
- 47.48392
- ],
- [
- 10.48756,
- 47.47813
- ],
- [
- 10.48756,
- 47.41298
- ],
- [
- 10.45973,
- 47.40283
- ],
- [
- 10.45973,
- 47.37529
- ],
- [
- 10.41048,
- 47.37384
- ],
- [
- 10.40834,
- 47.34339
- ],
- [
- 10.32056,
- 47.28678
- ],
- [
- 10.28202,
- 47.27806
- ],
- [
- 10.28416,
- 47.26208
- ],
- [
- 10.14714,
- 47.26208
- ],
- [
- 10.1921,
- 47.30275
- ],
- [
- 10.19424,
- 47.37384
- ],
- [
- 10.16641,
- 47.37384
- ],
- [
- 10.16641,
- 47.34629
- ],
- [
- 10.10004,
- 47.34339
- ],
- [
- 10.0615,
- 47.36369
- ],
- [
- 10.06792,
- 47.41877
- ],
- [
- 10.09361,
- 47.42601
- ],
- [
- 10.09576,
- 47.44194
- ],
- [
- 9.978,
- 47.48537
- ],
- [
- 9.95659,
- 47.52731
- ],
- [
- 9.8945,
- 47.52876
- ],
- [
- 9.85596,
- 47.50851
- ],
- [
- 9.81743,
- 47.54465
- ],
- [
- 9.82171,
- 47.57644
- ],
- [
- 9.77461,
- 47.58222
- ],
- [
- 9.73821,
- 47.52586
- ],
- [
- 9.67398,
- 47.53454
- ],
- [
- 9.58406,
- 47.56488
- ],
- [
- 9.63972,
- 47.60532
- ],
- [
- 9.7168,
- 47.60388
- ],
- [
- 9.85596,
- 47.676
- ],
- [
- 9.978,
- 47.65582
- ],
- [
- 10.02938,
- 47.68177
- ],
- [
- 10.10004,
- 47.66735
- ],
- [
- 10.13215,
- 47.676
- ],
- [
- 10.14286,
- 47.70195
- ],
- [
- 10.0615,
- 47.7725
- ],
- [
- 10.11288,
- 47.8099
- ],
- [
- 10.08291,
- 47.85302
- ],
- [
- 10.1086,
- 47.90902
- ],
- [
- 10.07649,
- 47.96496
- ],
- [
- 10.13001,
- 48.02084
- ],
- [
- 10.13429,
- 48.10669
- ],
- [
- 10.10004,
- 48.12813
- ],
- [
- 10.05508,
- 48.26228
- ],
- [
- 9.96944,
- 48.36765
- ],
- [
- 10.03153,
- 48.42593
- ],
- [
- 10.02938,
- 48.46144
- ],
- [
- 10.12359,
- 48.47705
- ],
- [
- 10.15356,
- 48.4515
- ],
- [
- 10.23492,
- 48.51252
- ],
- [
- 10.31628,
- 48.51678
- ],
- [
- 10.29915,
- 48.61878
- ],
- [
- 10.24563,
- 48.6683
- ],
- [
- 10.27346,
- 48.70646
- ],
- [
- 10.3698,
- 48.68385
- ],
- [
- 10.43189,
- 48.69939
- ],
- [
- 10.45116,
- 48.72765
- ],
- [
- 10.40192,
- 48.746
- ],
- [
- 10.44046,
- 48.84896
- ],
- [
- 10.43403,
- 48.95873
- ],
- [
- 10.33769,
- 49.02055
- ],
- [
- 10.24991,
- 49.03599
- ],
- [
- 10.24991,
- 49.07387
- ],
- [
- 10.20066,
- 49.10331
- ],
- [
- 10.25205,
- 49.13274
- ],
- [
- 10.12359,
- 49.19714
- ],
- [
- 10.11931,
- 49.26285
- ],
- [
- 10.15142,
- 49.28939
- ],
- [
- 10.10432,
- 49.34522
- ],
- [
- 10.14072,
- 49.39401
- ],
- [
- 10.1086,
- 49.44555
- ],
- [
- 10.11074,
- 49.50537
- ],
- [
- 10.0722,
- 49.53316
- ],
- [
- 10.01654,
- 49.47616
- ],
- [
- 9.92662,
- 49.47894
- ],
- [
- 9.92448,
- 49.55678
- ],
- [
- 9.89878,
- 49.58177
- ],
- [
- 9.85596,
- 49.53872
- ],
- [
- 9.80672,
- 49.55678
- ],
- [
- 9.86667,
- 49.60675
- ],
- [
- 9.85382,
- 49.6442
- ],
- [
- 9.81743,
- 49.66083
- ],
- [
- 9.83455,
- 49.68993
- ],
- [
- 9.79602,
- 49.72039
- ],
- [
- 9.75748,
- 49.70793
- ],
- [
- 9.74035,
- 49.68577
- ],
- [
- 9.70609,
- 49.71624
- ],
- [
- 9.67826,
- 49.71624
- ],
- [
- 9.68254,
- 49.68854
- ],
- [
- 9.62045,
- 49.69131
- ],
- [
- 9.64615,
- 49.78955
- ],
- [
- 9.55836,
- 49.77434
- ],
- [
- 9.57121,
- 49.73561
- ],
- [
- 9.50698,
- 49.75222
- ],
- [
- 9.49199,
- 49.77987
- ],
- [
- 9.46844,
- 49.76051
- ],
- [
- 9.42562,
- 49.77849
- ],
- [
- 9.40421,
- 49.76466
- ],
- [
- 9.33356,
- 49.7702
- ],
- [
- 9.32928,
- 49.73423
- ],
- [
- 9.4085,
- 49.72593
- ],
- [
- 9.42776,
- 49.69824
- ],
- [
- 9.41492,
- 49.6442
- ],
- [
- 9.38066,
- 49.63865
- ],
- [
- 9.35925,
- 49.64974
- ],
- [
- 9.33998,
- 49.63727
- ],
- [
- 9.31215,
- 49.64836
- ],
- [
- 9.27789,
- 49.62617
- ],
- [
- 9.28432,
- 49.60814
- ],
- [
- 9.2415,
- 49.57483
- ],
- [
- 9.09805,
- 49.57205
- ],
- [
- 9.06594,
- 49.60814
- ],
- [
- 9.10019,
- 49.65113
- ],
- [
- 9.09163,
- 49.6927
- ],
- [
- 9.13017,
- 49.71208
- ],
- [
- 9.13873,
- 49.74253
- ],
- [
- 9.10876,
- 49.75637
- ],
- [
- 9.13659,
- 49.79093
- ],
- [
- 9.10019,
- 49.78955
- ],
- [
- 9.07236,
- 49.82824
- ],
- [
- 9.03596,
- 49.83514
- ],
- [
- 9.01669,
- 50.02671
- ],
- [
- 8.96317,
- 50.03084
- ],
- [
- 8.95674,
- 50.05971
- ],
- [
- 9.00171,
- 50.0707
- ],
- [
- 9.02097,
- 50.11054
- ],
- [
- 9.1216,
- 50.12289
- ],
- [
- 9.15586,
- 50.11328
- ],
- [
- 9.19654,
- 50.11878
- ],
- [
- 9.18583,
- 50.13525
- ],
- [
- 9.23507,
- 50.1476
- ],
- [
- 9.37638,
- 50.12701
- ],
- [
- 9.4085,
- 50.0817
- ],
- [
- 9.52197,
- 50.09543
- ],
- [
- 9.50484,
- 50.14211
- ],
- [
- 9.53267,
- 50.16406
- ],
- [
- 9.48985,
- 50.16954
- ],
- [
- 9.49413,
- 50.24354
- ],
- [
- 9.61403,
- 50.22163
- ],
- [
- 9.66541,
- 50.23532
- ],
- [
- 9.63544,
- 50.24901
- ],
- [
- 9.66756,
- 50.27228
- ],
- [
- 9.74249,
- 50.30922
- ],
- [
- 9.72964,
- 50.35841
- ],
- [
- 9.77032,
- 50.42939
- ],
- [
- 9.86881,
- 50.40074
- ],
- [
- 9.91805,
- 50.40893
- ],
- [
- 10.03581,
- 50.47982
- ],
- [
- 10.03795,
- 50.51115
- ],
- [
- 10.12359,
- 50.56846
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Bayerische Vermessungsverwaltung",
- "url": "https://www.ldbv.bayern.de/"
- },
- "available_projections": [
- "EPSG:31467",
- "EPSG:31468",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:4258",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "DE",
- "id": "bavaria-80cm",
- "max_zoom": 18,
- "min_zoom": 7,
- "name": "Bavaria (80 cm)",
- "type": "wms",
- "url": "https://geoservices.bayern.de/wms/v2/ogc_dop80_oa.cgi?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=by_dop80c&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.48699,
- 52.68076
- ],
- [
- 13.52584,
- 52.65196
- ],
- [
- 13.5299,
- 52.64437
- ],
- [
- 13.54209,
- 52.60921
- ],
- [
- 13.58109,
- 52.58134
- ],
- [
- 13.59674,
- 52.55936
- ],
- [
- 13.63477,
- 52.55121
- ],
- [
- 13.66547,
- 52.52854
- ],
- [
- 13.67199,
- 52.50379
- ],
- [
- 13.65806,
- 52.50372
- ],
- [
- 13.65796,
- 52.49324
- ],
- [
- 13.7547,
- 52.4565
- ],
- [
- 13.76644,
- 52.43884
- ],
- [
- 13.76627,
- 52.42973
- ],
- [
- 13.74494,
- 52.39909
- ],
- [
- 13.65235,
- 52.33133
- ],
- [
- 13.6417,
- 52.33103
- ],
- [
- 13.62609,
- 52.35491
- ],
- [
- 13.59432,
- 52.37455
- ],
- [
- 13.53198,
- 52.38376
- ],
- [
- 13.51948,
- 52.39236
- ],
- [
- 13.48536,
- 52.39227
- ],
- [
- 13.43552,
- 52.38016
- ],
- [
- 13.42885,
- 52.37401
- ],
- [
- 13.38689,
- 52.37388
- ],
- [
- 13.38642,
- 52.38667
- ],
- [
- 13.36857,
- 52.38728
- ],
- [
- 13.37045,
- 52.39349
- ],
- [
- 13.33968,
- 52.40887
- ],
- [
- 13.31243,
- 52.39775
- ],
- [
- 13.30557,
- 52.40452
- ],
- [
- 13.23622,
- 52.40342
- ],
- [
- 13.18886,
- 52.40417
- ],
- [
- 13.17719,
- 52.39067
- ],
- [
- 13.14859,
- 52.38971
- ],
- [
- 13.14868,
- 52.38421
- ],
- [
- 13.11889,
- 52.38385
- ],
- [
- 13.11935,
- 52.40025
- ],
- [
- 13.10487,
- 52.40723
- ],
- [
- 13.07371,
- 52.40668
- ],
- [
- 13.07367,
- 52.41403
- ],
- [
- 13.10516,
- 52.47897
- ],
- [
- 13.11685,
- 52.47881
- ],
- [
- 13.112,
- 52.55915
- ],
- [
- 13.11865,
- 52.59156
- ],
- [
- 13.15251,
- 52.60489
- ],
- [
- 13.16282,
- 52.60462
- ],
- [
- 13.21264,
- 52.6321
- ],
- [
- 13.22139,
- 52.63215
- ],
- [
- 13.27292,
- 52.66444
- ],
- [
- 13.31376,
- 52.66442
- ],
- [
- 13.32714,
- 52.64692
- ],
- [
- 13.36783,
- 52.6468
- ],
- [
- 13.39158,
- 52.65382
- ],
- [
- 13.42728,
- 52.6549
- ],
- [
- 13.47594,
- 52.68122
- ],
- [
- 13.48699,
- 52.68076
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geoportal Berlin/Digitale farbige Orthophotos 2011"
- },
- "available_projections": [
- "EPSG:25833",
- "EPSG:25832",
- "EPSG:3068",
- "EPSG:4326",
- "EPSG:4258"
- ],
- "category": "historicphoto",
- "country_code": "DE",
- "description": "Digitale Orthophotos für das gesamte Berliner Stadtgebiet mit einer Bodenauflösung von 0,20 m im Blattschnitt 2 km x 2 km.",
- "end_date": "2011",
- "id": "Berlin-2011",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583",
- "name": "Berlin aerial photography 2011",
- "start_date": "2011",
- "type": "wms",
- "url": "https://fbinter.stadt-berlin.de/fb/wms/senstadt/k_luftbild2011_20?LAYERS=0&STYLES=default&FORMAT=image/png&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.19746,
- 52.64206
- ],
- [
- 13.25639,
- 52.64285
- ],
- [
- 13.2558,
- 52.66101
- ],
- [
- 13.31391,
- 52.66185
- ],
- [
- 13.31476,
- 52.64353
- ],
- [
- 13.37431,
- 52.64462
- ],
- [
- 13.37386,
- 52.66269
- ],
- [
- 13.4026,
- 52.663
- ],
- [
- 13.40332,
- 52.64501
- ],
- [
- 13.4334,
- 52.64555
- ],
- [
- 13.43227,
- 52.68001
- ],
- [
- 13.49082,
- 52.68111
- ],
- [
- 13.49147,
- 52.66428
- ],
- [
- 13.52092,
- 52.66457
- ],
- [
- 13.5216,
- 52.6465
- ],
- [
- 13.55096,
- 52.6469
- ],
- [
- 13.55147,
- 52.62938
- ],
- [
- 13.52219,
- 52.62898
- ],
- [
- 13.52335,
- 52.59248
- ],
- [
- 13.58263,
- 52.59329
- ],
- [
- 13.58307,
- 52.57535
- ],
- [
- 13.61246,
- 52.57582
- ],
- [
- 13.61324,
- 52.55784
- ],
- [
- 13.64268,
- 52.55813
- ],
- [
- 13.64296,
- 52.5401
- ],
- [
- 13.67253,
- 52.54048
- ],
- [
- 13.67375,
- 52.50475
- ],
- [
- 13.64413,
- 52.5045
- ],
- [
- 13.64476,
- 52.48608
- ],
- [
- 13.7037,
- 52.48683
- ],
- [
- 13.70415,
- 52.46901
- ],
- [
- 13.73362,
- 52.4692
- ],
- [
- 13.73399,
- 52.45121
- ],
- [
- 13.76358,
- 52.45156
- ],
- [
- 13.76447,
- 52.40209
- ],
- [
- 13.73546,
- 52.39753
- ],
- [
- 13.73611,
- 52.37963
- ],
- [
- 13.70678,
- 52.37935
- ],
- [
- 13.70731,
- 52.36136
- ],
- [
- 13.67785,
- 52.36104
- ],
- [
- 13.67898,
- 52.33017
- ],
- [
- 13.62102,
- 52.32946
- ],
- [
- 13.61999,
- 52.36033
- ],
- [
- 13.59046,
- 52.36007
- ],
- [
- 13.5901,
- 52.37806
- ],
- [
- 13.53116,
- 52.37735
- ],
- [
- 13.53064,
- 52.39525
- ],
- [
- 13.47168,
- 52.39459
- ],
- [
- 13.47149,
- 52.4125
- ],
- [
- 13.44101,
- 52.41219
- ],
- [
- 13.44257,
- 52.37604
- ],
- [
- 13.35487,
- 52.37498
- ],
- [
- 13.35427,
- 52.39306
- ],
- [
- 13.23667,
- 52.39114
- ],
- [
- 13.23609,
- 52.40922
- ],
- [
- 13.17635,
- 52.40836
- ],
- [
- 13.17752,
- 52.39029
- ],
- [
- 13.14791,
- 52.38987
- ],
- [
- 13.14876,
- 52.37459
- ],
- [
- 13.11971,
- 52.37422
- ],
- [
- 13.11941,
- 52.38955
- ],
- [
- 13.08981,
- 52.38899
- ],
- [
- 13.08938,
- 52.40707
- ],
- [
- 13.0618,
- 52.40662
- ],
- [
- 13.06075,
- 52.42408
- ],
- [
- 13.08842,
- 52.42449
- ],
- [
- 13.086,
- 52.47853
- ],
- [
- 13.11546,
- 52.47896
- ],
- [
- 13.11462,
- 52.49695
- ],
- [
- 13.1441,
- 52.49729
- ],
- [
- 13.14332,
- 52.5157
- ],
- [
- 13.1137,
- 52.51528
- ],
- [
- 13.11077,
- 52.6047
- ],
- [
- 13.19862,
- 52.6062
- ],
- [
- 13.19746,
- 52.64206
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geoportal Berlin/Digitale farbige Orthophotos 2014"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2014",
- "id": "Berlin-2014",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583",
- "max_zoom": 18,
- "name": "Berlin aerial photography 2014",
- "start_date": "2014",
- "type": "tms",
- "url": "https://tiles.codefor.de/berlin-2014/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.11068,
- 52.59538
- ],
- [
- 13.13975,
- 52.60527
- ],
- [
- 13.18355,
- 52.61488
- ],
- [
- 13.21262,
- 52.63315
- ],
- [
- 13.24167,
- 52.64282
- ],
- [
- 13.256,
- 52.65201
- ],
- [
- 13.27004,
- 52.67021
- ],
- [
- 13.31368,
- 52.67072
- ],
- [
- 13.32914,
- 52.66204
- ],
- [
- 13.32948,
- 52.6529
- ],
- [
- 13.43284,
- 52.65414
- ],
- [
- 13.44733,
- 52.6816
- ],
- [
- 13.50561,
- 52.68244
- ],
- [
- 13.50654,
- 52.65531
- ],
- [
- 13.53605,
- 52.65572
- ],
- [
- 13.5376,
- 52.61991
- ],
- [
- 13.52229,
- 52.61977
- ],
- [
- 13.52304,
- 52.60165
- ],
- [
- 13.59776,
- 52.58469
- ],
- [
- 13.59865,
- 52.55769
- ],
- [
- 13.62817,
- 52.55805
- ],
- [
- 13.64303,
- 52.5492
- ],
- [
- 13.65813,
- 52.54042
- ],
- [
- 13.67312,
- 52.53144
- ],
- [
- 13.67356,
- 52.51358
- ],
- [
- 13.65913,
- 52.51344
- ],
- [
- 13.65998,
- 52.48643
- ],
- [
- 13.68931,
- 52.48687
- ],
- [
- 13.73386,
- 52.46933
- ],
- [
- 13.73405,
- 52.46034
- ],
- [
- 13.76362,
- 52.46068
- ],
- [
- 13.76431,
- 52.42464
- ],
- [
- 13.74941,
- 52.42474
- ],
- [
- 13.75045,
- 52.39778
- ],
- [
- 13.73585,
- 52.39762
- ],
- [
- 13.70661,
- 52.37944
- ],
- [
- 13.707,
- 52.3614
- ],
- [
- 13.67782,
- 52.36125
- ],
- [
- 13.66405,
- 52.33395
- ],
- [
- 13.62073,
- 52.33337
- ],
- [
- 13.62031,
- 52.36042
- ],
- [
- 13.58986,
- 52.3781
- ],
- [
- 13.53149,
- 52.37748
- ],
- [
- 13.53133,
- 52.38641
- ],
- [
- 13.44223,
- 52.38484
- ],
- [
- 13.42813,
- 52.3667
- ],
- [
- 13.38464,
- 52.3662
- ],
- [
- 13.35432,
- 52.39301
- ],
- [
- 13.29537,
- 52.39209
- ],
- [
- 13.29531,
- 52.40103
- ],
- [
- 13.19171,
- 52.39957
- ],
- [
- 13.19222,
- 52.39056
- ],
- [
- 13.14774,
- 52.38996
- ],
- [
- 13.14839,
- 52.38095
- ],
- [
- 13.11964,
- 52.38041
- ],
- [
- 13.0744,
- 52.40683
- ],
- [
- 13.07392,
- 52.42426
- ],
- [
- 13.10275,
- 52.43374
- ],
- [
- 13.10123,
- 52.47874
- ],
- [
- 13.11558,
- 52.47897
- ],
- [
- 13.11068,
- 52.59538
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geoportal Berlin/Digitale farbige Orthophotos 2015"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2015-08-03",
- "id": "Berlin-2015",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583",
- "max_zoom": 18,
- "name": "Berlin aerial photography 2015",
- "start_date": "2015-08-02",
- "type": "tms",
- "url": "https://tiles.codefor.de/berlin-2015/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.29535,
- 52.392
- ],
- [
- 13.29502,
- 52.40083
- ],
- [
- 13.19206,
- 52.39937
- ],
- [
- 13.19241,
- 52.39035
- ],
- [
- 13.14839,
- 52.3897
- ],
- [
- 13.14877,
- 52.38046
- ],
- [
- 13.11926,
- 52.38001
- ],
- [
- 13.11888,
- 52.38921
- ],
- [
- 13.08906,
- 52.40693
- ],
- [
- 13.07431,
- 52.4067
- ],
- [
- 13.07356,
- 52.42447
- ],
- [
- 13.10259,
- 52.43394
- ],
- [
- 13.10073,
- 52.47912
- ],
- [
- 13.11534,
- 52.47934
- ],
- [
- 13.11055,
- 52.59579
- ],
- [
- 13.13972,
- 52.60527
- ],
- [
- 13.18403,
- 52.60593
- ],
- [
- 13.21212,
- 52.63346
- ],
- [
- 13.27041,
- 52.65222
- ],
- [
- 13.26973,
- 52.67025
- ],
- [
- 13.31405,
- 52.67086
- ],
- [
- 13.32953,
- 52.65323
- ],
- [
- 13.43315,
- 52.65458
- ],
- [
- 13.43254,
- 52.67251
- ],
- [
- 13.44682,
- 52.68189
- ],
- [
- 13.50593,
- 52.68261
- ],
- [
- 13.50681,
- 52.65545
- ],
- [
- 13.53643,
- 52.6558
- ],
- [
- 13.53757,
- 52.61964
- ],
- [
- 13.52288,
- 52.61946
- ],
- [
- 13.52345,
- 52.6017
- ],
- [
- 13.53842,
- 52.59279
- ],
- [
- 13.56782,
- 52.59313
- ],
- [
- 13.59798,
- 52.58464
- ],
- [
- 13.5988,
- 52.55755
- ],
- [
- 13.62826,
- 52.55788
- ],
- [
- 13.65822,
- 52.53124
- ],
- [
- 13.67314,
- 52.53139
- ],
- [
- 13.67365,
- 52.51359
- ],
- [
- 13.65912,
- 52.51344
- ],
- [
- 13.65989,
- 52.48661
- ],
- [
- 13.68929,
- 52.48692
- ],
- [
- 13.7188,
- 52.47807
- ],
- [
- 13.73406,
- 52.4604
- ],
- [
- 13.7636,
- 52.46069
- ],
- [
- 13.76454,
- 52.42482
- ],
- [
- 13.75027,
- 52.42468
- ],
- [
- 13.75097,
- 52.39814
- ],
- [
- 13.70722,
- 52.37923
- ],
- [
- 13.70772,
- 52.36111
- ],
- [
- 13.67826,
- 52.36081
- ],
- [
- 13.67876,
- 52.34302
- ],
- [
- 13.66428,
- 52.34287
- ],
- [
- 13.66454,
- 52.33367
- ],
- [
- 13.62038,
- 52.33319
- ],
- [
- 13.61959,
- 52.36012
- ],
- [
- 13.58956,
- 52.37786
- ],
- [
- 13.5313,
- 52.37719
- ],
- [
- 13.53103,
- 52.38581
- ],
- [
- 13.44254,
- 52.38473
- ],
- [
- 13.42861,
- 52.36674
- ],
- [
- 13.38418,
- 52.36617
- ],
- [
- 13.35417,
- 52.39279
- ],
- [
- 13.29535,
- 52.392
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geoportal Berlin/Digitale farbige Orthophotos 2016"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2016-04-03",
- "id": "Berlin-2016",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583",
- "max_zoom": 18,
- "name": "Berlin aerial photography 2016",
- "start_date": "2016-04-02",
- "type": "tms",
- "url": "https://tiles.codefor.de/berlin-2016/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.29535,
- 52.392
- ],
- [
- 13.29502,
- 52.40083
- ],
- [
- 13.19206,
- 52.39937
- ],
- [
- 13.19241,
- 52.39035
- ],
- [
- 13.14839,
- 52.3897
- ],
- [
- 13.14877,
- 52.38046
- ],
- [
- 13.11926,
- 52.38001
- ],
- [
- 13.11888,
- 52.38921
- ],
- [
- 13.08906,
- 52.40693
- ],
- [
- 13.07431,
- 52.4067
- ],
- [
- 13.07356,
- 52.42447
- ],
- [
- 13.10259,
- 52.43394
- ],
- [
- 13.10073,
- 52.47912
- ],
- [
- 13.11534,
- 52.47934
- ],
- [
- 13.11055,
- 52.59579
- ],
- [
- 13.13972,
- 52.60527
- ],
- [
- 13.18403,
- 52.60593
- ],
- [
- 13.21212,
- 52.63346
- ],
- [
- 13.27041,
- 52.65222
- ],
- [
- 13.26973,
- 52.67025
- ],
- [
- 13.31405,
- 52.67086
- ],
- [
- 13.32953,
- 52.65323
- ],
- [
- 13.43315,
- 52.65458
- ],
- [
- 13.43254,
- 52.67251
- ],
- [
- 13.44682,
- 52.68189
- ],
- [
- 13.50593,
- 52.68261
- ],
- [
- 13.50681,
- 52.65545
- ],
- [
- 13.53643,
- 52.6558
- ],
- [
- 13.53757,
- 52.61964
- ],
- [
- 13.52288,
- 52.61946
- ],
- [
- 13.52345,
- 52.6017
- ],
- [
- 13.53842,
- 52.59279
- ],
- [
- 13.56782,
- 52.59313
- ],
- [
- 13.59798,
- 52.58464
- ],
- [
- 13.5988,
- 52.55755
- ],
- [
- 13.62826,
- 52.55788
- ],
- [
- 13.65822,
- 52.53124
- ],
- [
- 13.67314,
- 52.53139
- ],
- [
- 13.67365,
- 52.51359
- ],
- [
- 13.65912,
- 52.51344
- ],
- [
- 13.65989,
- 52.48661
- ],
- [
- 13.68929,
- 52.48692
- ],
- [
- 13.7188,
- 52.47807
- ],
- [
- 13.73406,
- 52.4604
- ],
- [
- 13.7636,
- 52.46069
- ],
- [
- 13.76454,
- 52.42482
- ],
- [
- 13.75027,
- 52.42468
- ],
- [
- 13.75097,
- 52.39814
- ],
- [
- 13.70722,
- 52.37923
- ],
- [
- 13.70772,
- 52.36111
- ],
- [
- 13.67826,
- 52.36081
- ],
- [
- 13.67876,
- 52.34302
- ],
- [
- 13.66428,
- 52.34287
- ],
- [
- 13.66454,
- 52.33367
- ],
- [
- 13.62038,
- 52.33319
- ],
- [
- 13.61959,
- 52.36012
- ],
- [
- 13.58956,
- 52.37786
- ],
- [
- 13.5313,
- 52.37719
- ],
- [
- 13.53103,
- 52.38581
- ],
- [
- 13.44254,
- 52.38473
- ],
- [
- 13.42861,
- 52.36674
- ],
- [
- 13.38418,
- 52.36617
- ],
- [
- 13.35417,
- 52.39279
- ],
- [
- 13.29535,
- 52.392
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geoportal Berlin/Digitale Color-Infrarot-Orthophotos 2016"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2016-04-03",
- "id": "Berlin-2016-infrared",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583",
- "max_zoom": 18,
- "name": "Berlin aerial photography 2016 (infrared)",
- "start_date": "2016-04-02",
- "type": "tms",
- "url": "https://tiles.codefor.de/berlin-2016i/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.29535,
- 52.392
- ],
- [
- 13.29502,
- 52.40083
- ],
- [
- 13.19206,
- 52.39937
- ],
- [
- 13.19241,
- 52.39035
- ],
- [
- 13.14839,
- 52.3897
- ],
- [
- 13.14877,
- 52.38046
- ],
- [
- 13.11926,
- 52.38001
- ],
- [
- 13.11888,
- 52.38921
- ],
- [
- 13.08906,
- 52.40693
- ],
- [
- 13.07431,
- 52.4067
- ],
- [
- 13.07356,
- 52.42447
- ],
- [
- 13.10259,
- 52.43394
- ],
- [
- 13.10073,
- 52.47912
- ],
- [
- 13.11534,
- 52.47934
- ],
- [
- 13.11055,
- 52.59579
- ],
- [
- 13.13972,
- 52.60527
- ],
- [
- 13.18403,
- 52.60593
- ],
- [
- 13.21212,
- 52.63346
- ],
- [
- 13.27041,
- 52.65222
- ],
- [
- 13.26973,
- 52.67025
- ],
- [
- 13.31405,
- 52.67086
- ],
- [
- 13.32953,
- 52.65323
- ],
- [
- 13.43315,
- 52.65458
- ],
- [
- 13.43254,
- 52.67251
- ],
- [
- 13.44682,
- 52.68189
- ],
- [
- 13.50593,
- 52.68261
- ],
- [
- 13.50681,
- 52.65545
- ],
- [
- 13.53643,
- 52.6558
- ],
- [
- 13.53757,
- 52.61964
- ],
- [
- 13.52288,
- 52.61946
- ],
- [
- 13.52345,
- 52.6017
- ],
- [
- 13.53842,
- 52.59279
- ],
- [
- 13.56782,
- 52.59313
- ],
- [
- 13.59798,
- 52.58464
- ],
- [
- 13.5988,
- 52.55755
- ],
- [
- 13.62826,
- 52.55788
- ],
- [
- 13.65822,
- 52.53124
- ],
- [
- 13.67314,
- 52.53139
- ],
- [
- 13.67365,
- 52.51359
- ],
- [
- 13.65912,
- 52.51344
- ],
- [
- 13.65989,
- 52.48661
- ],
- [
- 13.68929,
- 52.48692
- ],
- [
- 13.7188,
- 52.47807
- ],
- [
- 13.73406,
- 52.4604
- ],
- [
- 13.7636,
- 52.46069
- ],
- [
- 13.76454,
- 52.42482
- ],
- [
- 13.75027,
- 52.42468
- ],
- [
- 13.75097,
- 52.39814
- ],
- [
- 13.70722,
- 52.37923
- ],
- [
- 13.70772,
- 52.36111
- ],
- [
- 13.67826,
- 52.36081
- ],
- [
- 13.67876,
- 52.34302
- ],
- [
- 13.66428,
- 52.34287
- ],
- [
- 13.66454,
- 52.33367
- ],
- [
- 13.62038,
- 52.33319
- ],
- [
- 13.61959,
- 52.36012
- ],
- [
- 13.58956,
- 52.37786
- ],
- [
- 13.5313,
- 52.37719
- ],
- [
- 13.53103,
- 52.38581
- ],
- [
- 13.44254,
- 52.38473
- ],
- [
- 13.42861,
- 52.36674
- ],
- [
- 13.38418,
- 52.36617
- ],
- [
- 13.35417,
- 52.39279
- ],
- [
- 13.29535,
- 52.392
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geoportal Berlin/Digitale farbige Orthophotos 2017"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2017-03-28",
- "id": "Berlin-2017",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583",
- "max_zoom": 18,
- "name": "Berlin aerial photography 2017",
- "start_date": "2017-03-27",
- "type": "tms",
- "url": "https://tiles.codefor.de/berlin-2017/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.29535,
- 52.392
- ],
- [
- 13.29502,
- 52.40083
- ],
- [
- 13.19206,
- 52.39937
- ],
- [
- 13.19241,
- 52.39035
- ],
- [
- 13.14839,
- 52.3897
- ],
- [
- 13.14877,
- 52.38046
- ],
- [
- 13.11926,
- 52.38001
- ],
- [
- 13.11888,
- 52.38921
- ],
- [
- 13.08906,
- 52.40693
- ],
- [
- 13.07431,
- 52.4067
- ],
- [
- 13.07356,
- 52.42447
- ],
- [
- 13.10259,
- 52.43394
- ],
- [
- 13.10073,
- 52.47912
- ],
- [
- 13.11534,
- 52.47934
- ],
- [
- 13.11055,
- 52.59579
- ],
- [
- 13.13972,
- 52.60527
- ],
- [
- 13.18403,
- 52.60593
- ],
- [
- 13.21212,
- 52.63346
- ],
- [
- 13.27041,
- 52.65222
- ],
- [
- 13.26973,
- 52.67025
- ],
- [
- 13.31405,
- 52.67086
- ],
- [
- 13.32953,
- 52.65323
- ],
- [
- 13.43315,
- 52.65458
- ],
- [
- 13.43254,
- 52.67251
- ],
- [
- 13.44682,
- 52.68189
- ],
- [
- 13.50593,
- 52.68261
- ],
- [
- 13.50681,
- 52.65545
- ],
- [
- 13.53643,
- 52.6558
- ],
- [
- 13.53757,
- 52.61964
- ],
- [
- 13.52288,
- 52.61946
- ],
- [
- 13.52345,
- 52.6017
- ],
- [
- 13.53842,
- 52.59279
- ],
- [
- 13.56782,
- 52.59313
- ],
- [
- 13.59798,
- 52.58464
- ],
- [
- 13.5988,
- 52.55755
- ],
- [
- 13.62826,
- 52.55788
- ],
- [
- 13.65822,
- 52.53124
- ],
- [
- 13.67314,
- 52.53139
- ],
- [
- 13.67365,
- 52.51359
- ],
- [
- 13.65912,
- 52.51344
- ],
- [
- 13.65989,
- 52.48661
- ],
- [
- 13.68929,
- 52.48692
- ],
- [
- 13.7188,
- 52.47807
- ],
- [
- 13.73406,
- 52.4604
- ],
- [
- 13.7636,
- 52.46069
- ],
- [
- 13.76454,
- 52.42482
- ],
- [
- 13.75027,
- 52.42468
- ],
- [
- 13.75097,
- 52.39814
- ],
- [
- 13.70722,
- 52.37923
- ],
- [
- 13.70772,
- 52.36111
- ],
- [
- 13.67826,
- 52.36081
- ],
- [
- 13.67876,
- 52.34302
- ],
- [
- 13.66428,
- 52.34287
- ],
- [
- 13.66454,
- 52.33367
- ],
- [
- 13.62038,
- 52.33319
- ],
- [
- 13.61959,
- 52.36012
- ],
- [
- 13.58956,
- 52.37786
- ],
- [
- 13.5313,
- 52.37719
- ],
- [
- 13.53103,
- 52.38581
- ],
- [
- 13.44254,
- 52.38473
- ],
- [
- 13.42861,
- 52.36674
- ],
- [
- 13.38418,
- 52.36617
- ],
- [
- 13.35417,
- 52.39279
- ],
- [
- 13.29535,
- 52.392
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geoportal Berlin/Digitale farbige Orthophotos 2018"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2018-04-07",
- "id": "Berlin-2018",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583",
- "max_zoom": 18,
- "name": "Berlin aerial photography 2018",
- "start_date": "2018-03-19",
- "type": "tms",
- "url": "https://tiles.codefor.de/berlin-2018/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.29535,
- 52.392
- ],
- [
- 13.29502,
- 52.40083
- ],
- [
- 13.19206,
- 52.39937
- ],
- [
- 13.19241,
- 52.39035
- ],
- [
- 13.14839,
- 52.3897
- ],
- [
- 13.14877,
- 52.38046
- ],
- [
- 13.11926,
- 52.38001
- ],
- [
- 13.11888,
- 52.38921
- ],
- [
- 13.08906,
- 52.40693
- ],
- [
- 13.07431,
- 52.4067
- ],
- [
- 13.07356,
- 52.42447
- ],
- [
- 13.10259,
- 52.43394
- ],
- [
- 13.10073,
- 52.47912
- ],
- [
- 13.11534,
- 52.47934
- ],
- [
- 13.11055,
- 52.59579
- ],
- [
- 13.13972,
- 52.60527
- ],
- [
- 13.18403,
- 52.60593
- ],
- [
- 13.21212,
- 52.63346
- ],
- [
- 13.27041,
- 52.65222
- ],
- [
- 13.26973,
- 52.67025
- ],
- [
- 13.31405,
- 52.67086
- ],
- [
- 13.32953,
- 52.65323
- ],
- [
- 13.43315,
- 52.65458
- ],
- [
- 13.43254,
- 52.67251
- ],
- [
- 13.44682,
- 52.68189
- ],
- [
- 13.50593,
- 52.68261
- ],
- [
- 13.50681,
- 52.65545
- ],
- [
- 13.53643,
- 52.6558
- ],
- [
- 13.53757,
- 52.61964
- ],
- [
- 13.52288,
- 52.61946
- ],
- [
- 13.52345,
- 52.6017
- ],
- [
- 13.53842,
- 52.59279
- ],
- [
- 13.56782,
- 52.59313
- ],
- [
- 13.59798,
- 52.58464
- ],
- [
- 13.5988,
- 52.55755
- ],
- [
- 13.62826,
- 52.55788
- ],
- [
- 13.65822,
- 52.53124
- ],
- [
- 13.67314,
- 52.53139
- ],
- [
- 13.67365,
- 52.51359
- ],
- [
- 13.65912,
- 52.51344
- ],
- [
- 13.65989,
- 52.48661
- ],
- [
- 13.68929,
- 52.48692
- ],
- [
- 13.7188,
- 52.47807
- ],
- [
- 13.73406,
- 52.4604
- ],
- [
- 13.7636,
- 52.46069
- ],
- [
- 13.76454,
- 52.42482
- ],
- [
- 13.75027,
- 52.42468
- ],
- [
- 13.75097,
- 52.39814
- ],
- [
- 13.70722,
- 52.37923
- ],
- [
- 13.70772,
- 52.36111
- ],
- [
- 13.67826,
- 52.36081
- ],
- [
- 13.67876,
- 52.34302
- ],
- [
- 13.66428,
- 52.34287
- ],
- [
- 13.66454,
- 52.33367
- ],
- [
- 13.62038,
- 52.33319
- ],
- [
- 13.61959,
- 52.36012
- ],
- [
- 13.58956,
- 52.37786
- ],
- [
- 13.5313,
- 52.37719
- ],
- [
- 13.53103,
- 52.38581
- ],
- [
- 13.44254,
- 52.38473
- ],
- [
- 13.42861,
- 52.36674
- ],
- [
- 13.38418,
- 52.36617
- ],
- [
- 13.35417,
- 52.39279
- ],
- [
- 13.29535,
- 52.392
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geoportal Berlin/Digitale farbige Orthophotos 2019 (DOP20RGB)"
- },
- "best": true,
- "category": "photo",
- "country_code": "DE",
- "end_date": "2019-04-06",
- "id": "Berlin-2019",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:2019-06-03_Datenlizenz_Deutschland_Berlin_OSM.pdf",
- "max_zoom": 18,
- "name": "Berlin aerial photography 2019",
- "start_date": "2019-04-01",
- "type": "tms",
- "url": "https://tiles.codefor.de/berlin-2019/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.19422,
- 48.97504
- ],
- [
- 7.97355,
- 49.02623
- ],
- [
- 7.94677,
- 49.06313
- ],
- [
- 7.44328,
- 49.18928
- ],
- [
- 7.05679,
- 49.11163
- ],
- [
- 6.94302,
- 49.21345
- ],
- [
- 6.81633,
- 49.16389
- ],
- [
- 6.68209,
- 49.24061
- ],
- [
- 6.3501,
- 49.46202
- ],
- [
- 6.35353,
- 49.57302
- ],
- [
- 6.42632,
- 49.67177
- ],
- [
- 6.50254,
- 49.71885
- ],
- [
- 6.45241,
- 50.61258
- ],
- [
- 6.03871,
- 50.71215
- ],
- [
- 6.00369,
- 50.753
- ],
- [
- 6.05742,
- 50.8559
- ],
- [
- 6.0787,
- 50.90247
- ],
- [
- 6.0727,
- 51.06792
- ],
- [
- 6.17123,
- 51.33853
- ],
- [
- 6.22548,
- 51.36554
- ],
- [
- 6.15715,
- 51.5509
- ],
- [
- 6.12763,
- 51.91069
- ],
- [
- 6.79985,
- 51.86661
- ],
- [
- 7.02851,
- 52.31255
- ],
- [
- 6.72947,
- 52.64179
- ],
- [
- 7.07486,
- 52.75269
- ],
- [
- 7.20532,
- 53.18442
- ],
- [
- 7.04464,
- 53.33106
- ],
- [
- 6.5173,
- 53.65785
- ],
- [
- 8.23529,
- 54.99001
- ],
- [
- 11.92257,
- 54.52963
- ],
- [
- 14.1679,
- 54.59631
- ],
- [
- 14.46591,
- 53.24712
- ],
- [
- 14.14318,
- 52.83946
- ],
- [
- 14.64375,
- 52.58613
- ],
- [
- 14.57646,
- 52.32756
- ],
- [
- 14.74537,
- 52.06577
- ],
- [
- 14.66847,
- 51.7353
- ],
- [
- 14.7234,
- 51.53927
- ],
- [
- 15.03926,
- 51.28745
- ],
- [
- 14.98845,
- 51.09207
- ],
- [
- 14.88922,
- 50.93856
- ],
- [
- 14.81593,
- 50.87729
- ],
- [
- 14.63671,
- 50.89116
- ],
- [
- 14.59311,
- 50.91887
- ],
- [
- 14.57217,
- 51.01076
- ],
- [
- 14.26283,
- 51.06473
- ],
- [
- 14.28086,
- 50.98024
- ],
- [
- 14.22816,
- 50.85796
- ],
- [
- 13.69532,
- 50.72883
- ],
- [
- 13.03442,
- 50.50085
- ],
- [
- 12.49077,
- 50.34582
- ],
- [
- 12.32632,
- 50.29277
- ],
- [
- 12.35379,
- 50.21462
- ],
- [
- 12.32701,
- 50.16363
- ],
- [
- 12.1677,
- 50.34889
- ],
- [
- 12.07707,
- 50.2524
- ],
- [
- 12.18195,
- 50.21136
- ],
- [
- 12.26014,
- 50.09069
- ],
- [
- 12.53892,
- 49.4164
- ],
- [
- 12.88808,
- 49.3385
- ],
- [
- 13.21287,
- 49.12439
- ],
- [
- 13.73952,
- 48.83688
- ],
- [
- 13.45371,
- 48.56222
- ],
- [
- 13.40555,
- 48.37812
- ],
- [
- 13.03648,
- 48.25986
- ],
- [
- 12.71376,
- 48.10856
- ],
- [
- 12.93108,
- 47.9376
- ],
- [
- 13.00455,
- 47.84506
- ],
- [
- 12.90671,
- 47.73249
- ],
- [
- 13.05228,
- 47.59329
- ],
- [
- 12.15792,
- 47.7087
- ],
- [
- 12.20393,
- 47.61667
- ],
- [
- 12.17783,
- 47.59815
- ],
- [
- 11.61753,
- 47.60093
- ],
- [
- 11.26666,
- 47.39124
- ],
- [
- 10.9247,
- 47.46811
- ],
- [
- 10.91578,
- 47.55623
- ],
- [
- 10.59031,
- 47.5567
- ],
- [
- 10.29848,
- 47.39937
- ],
- [
- 9.78144,
- 47.61274
- ],
- [
- 9.74024,
- 47.52842
- ],
- [
- 9.00278,
- 47.69137
- ],
- [
- 8.68933,
- 47.72371
- ],
- [
- 8.63809,
- 47.70261
- ],
- [
- 8.63079,
- 47.69359
- ],
- [
- 8.62127,
- 47.69177
- ],
- [
- 8.62414,
- 47.68221
- ],
- [
- 8.61243,
- 47.68115
- ],
- [
- 8.35382,
- 47.61367
- ],
- [
- 8.27485,
- 47.619
- ],
- [
- 8.23709,
- 47.61023
- ],
- [
- 8.22808,
- 47.60583
- ],
- [
- 8.20284,
- 47.61555
- ],
- [
- 8.10834,
- 47.58251
- ],
- [
- 8.08568,
- 47.5583
- ],
- [
- 8.06714,
- 47.56444
- ],
- [
- 8.04981,
- 47.55645
- ],
- [
- 8.02749,
- 47.55112
- ],
- [
- 7.98097,
- 47.55494
- ],
- [
- 7.91917,
- 47.54787
- ],
- [
- 7.88862,
- 47.58888
- ],
- [
- 7.81257,
- 47.57122
- ],
- [
- 7.79455,
- 47.55558
- ],
- [
- 7.71404,
- 47.54063
- ],
- [
- 7.66043,
- 47.54485
- ],
- [
- 7.65219,
- 47.54702
- ],
- [
- 7.63439,
- 47.56173
- ],
- [
- 7.61499,
- 47.55669
- ],
- [
- 7.5834,
- 47.57048
- ],
- [
- 7.58559,
- 47.5845
- ],
- [
- 7.59366,
- 47.60048
- ],
- [
- 7.58761,
- 47.608
- ],
- [
- 7.51491,
- 47.6652
- ],
- [
- 7.5434,
- 47.81539
- ],
- [
- 7.57671,
- 48.02454
- ],
- [
- 7.56812,
- 48.06012
- ],
- [
- 7.80639,
- 48.52438
- ],
- [
- 7.79987,
- 48.58029
- ],
- [
- 7.80665,
- 48.60106
- ],
- [
- 8.11014,
- 48.84977
- ],
- [
- 8.19422,
- 48.97504
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Data CC-BY 4.0 Deutsche Bahn AG",
- "url": "https://data.deutschebahn.com/dataset/data-streckennetz"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:3068",
- "EPSG:25833",
- "EPSG:31468",
- "EPSG:32633",
- "EPSG:4258",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "DE",
- "end_date": "2013-11",
- "id": "db-inspire-2013-11",
- "name": "Deutsche Bahn VzG lines January 2017",
- "overlay": true,
- "start_date": "2013-11",
- "type": "wms",
- "url": "https://wms.michreichert.de/vzg-strecken-2017?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=vzg_strecken,station_codes,level_crossings&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.19422,
- 48.97504
- ],
- [
- 7.97355,
- 49.02623
- ],
- [
- 7.94677,
- 49.06313
- ],
- [
- 7.44328,
- 49.18928
- ],
- [
- 7.05679,
- 49.11163
- ],
- [
- 6.94302,
- 49.21345
- ],
- [
- 6.81633,
- 49.16389
- ],
- [
- 6.68209,
- 49.24061
- ],
- [
- 6.3501,
- 49.46202
- ],
- [
- 6.35353,
- 49.57302
- ],
- [
- 6.42632,
- 49.67177
- ],
- [
- 6.50254,
- 49.71885
- ],
- [
- 6.45241,
- 50.61258
- ],
- [
- 6.03871,
- 50.71215
- ],
- [
- 6.00369,
- 50.753
- ],
- [
- 6.05742,
- 50.8559
- ],
- [
- 6.0787,
- 50.90247
- ],
- [
- 6.0727,
- 51.06792
- ],
- [
- 6.17123,
- 51.33853
- ],
- [
- 6.22548,
- 51.36554
- ],
- [
- 6.15715,
- 51.5509
- ],
- [
- 6.12763,
- 51.91069
- ],
- [
- 6.79985,
- 51.86661
- ],
- [
- 7.02851,
- 52.31255
- ],
- [
- 6.72947,
- 52.64179
- ],
- [
- 7.07486,
- 52.75269
- ],
- [
- 7.20532,
- 53.18442
- ],
- [
- 7.04464,
- 53.33106
- ],
- [
- 6.5173,
- 53.65785
- ],
- [
- 8.23529,
- 54.99001
- ],
- [
- 11.92257,
- 54.52963
- ],
- [
- 14.1679,
- 54.59631
- ],
- [
- 14.46591,
- 53.24712
- ],
- [
- 14.14318,
- 52.83946
- ],
- [
- 14.64375,
- 52.58613
- ],
- [
- 14.57646,
- 52.32756
- ],
- [
- 14.74537,
- 52.06577
- ],
- [
- 14.66847,
- 51.7353
- ],
- [
- 14.7234,
- 51.53927
- ],
- [
- 15.03926,
- 51.28745
- ],
- [
- 14.98845,
- 51.09207
- ],
- [
- 14.88922,
- 50.93856
- ],
- [
- 14.81593,
- 50.87729
- ],
- [
- 14.63671,
- 50.89116
- ],
- [
- 14.59311,
- 50.91887
- ],
- [
- 14.57217,
- 51.01076
- ],
- [
- 14.26283,
- 51.06473
- ],
- [
- 14.28086,
- 50.98024
- ],
- [
- 14.22816,
- 50.85796
- ],
- [
- 13.69532,
- 50.72883
- ],
- [
- 13.03442,
- 50.50085
- ],
- [
- 12.49077,
- 50.34582
- ],
- [
- 12.32632,
- 50.29277
- ],
- [
- 12.35379,
- 50.21462
- ],
- [
- 12.32701,
- 50.16363
- ],
- [
- 12.1677,
- 50.34889
- ],
- [
- 12.07707,
- 50.2524
- ],
- [
- 12.18195,
- 50.21136
- ],
- [
- 12.26014,
- 50.09069
- ],
- [
- 12.53892,
- 49.4164
- ],
- [
- 12.88808,
- 49.3385
- ],
- [
- 13.21287,
- 49.12439
- ],
- [
- 13.73952,
- 48.83688
- ],
- [
- 13.45371,
- 48.56222
- ],
- [
- 13.40555,
- 48.37812
- ],
- [
- 13.03648,
- 48.25986
- ],
- [
- 12.71376,
- 48.10856
- ],
- [
- 12.93108,
- 47.9376
- ],
- [
- 13.00455,
- 47.84506
- ],
- [
- 12.90671,
- 47.73249
- ],
- [
- 13.05228,
- 47.59329
- ],
- [
- 12.15792,
- 47.7087
- ],
- [
- 12.20393,
- 47.61667
- ],
- [
- 12.17783,
- 47.59815
- ],
- [
- 11.61753,
- 47.60093
- ],
- [
- 11.26666,
- 47.39124
- ],
- [
- 10.9247,
- 47.46811
- ],
- [
- 10.91578,
- 47.55623
- ],
- [
- 10.59031,
- 47.5567
- ],
- [
- 10.29848,
- 47.39937
- ],
- [
- 9.78144,
- 47.61274
- ],
- [
- 9.74024,
- 47.52842
- ],
- [
- 9.00278,
- 47.69137
- ],
- [
- 8.68933,
- 47.72371
- ],
- [
- 8.63809,
- 47.70261
- ],
- [
- 8.63079,
- 47.69359
- ],
- [
- 8.62127,
- 47.69177
- ],
- [
- 8.62414,
- 47.68221
- ],
- [
- 8.61243,
- 47.68115
- ],
- [
- 8.35382,
- 47.61367
- ],
- [
- 8.27485,
- 47.619
- ],
- [
- 8.23709,
- 47.61023
- ],
- [
- 8.22808,
- 47.60583
- ],
- [
- 8.20284,
- 47.61555
- ],
- [
- 8.10834,
- 47.58251
- ],
- [
- 8.08568,
- 47.5583
- ],
- [
- 8.06714,
- 47.56444
- ],
- [
- 8.04981,
- 47.55645
- ],
- [
- 8.02749,
- 47.55112
- ],
- [
- 7.98097,
- 47.55494
- ],
- [
- 7.91917,
- 47.54787
- ],
- [
- 7.88862,
- 47.58888
- ],
- [
- 7.81257,
- 47.57122
- ],
- [
- 7.79455,
- 47.55558
- ],
- [
- 7.71404,
- 47.54063
- ],
- [
- 7.66043,
- 47.54485
- ],
- [
- 7.65219,
- 47.54702
- ],
- [
- 7.63439,
- 47.56173
- ],
- [
- 7.61499,
- 47.55669
- ],
- [
- 7.5834,
- 47.57048
- ],
- [
- 7.58559,
- 47.5845
- ],
- [
- 7.59366,
- 47.60048
- ],
- [
- 7.58761,
- 47.608
- ],
- [
- 7.51491,
- 47.6652
- ],
- [
- 7.5434,
- 47.81539
- ],
- [
- 7.57671,
- 48.02454
- ],
- [
- 7.56812,
- 48.06012
- ],
- [
- 7.80639,
- 48.52438
- ],
- [
- 7.79987,
- 48.58029
- ],
- [
- 7.80665,
- 48.60106
- ],
- [
- 8.11014,
- 48.84977
- ],
- [
- 8.19422,
- 48.97504
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Data CC-BY 4.0 Deutsche Bahn AG",
- "url": "https://data.deutschebahn.com/dataset/data-streckennetz"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:3068",
- "EPSG:25833",
- "EPSG:31468",
- "EPSG:32633",
- "EPSG:4258",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "DE",
- "end_date": "2015-11",
- "id": "db-inspire-2015-11",
- "name": "Deutsche Bahn VzG lines Nov 2015",
- "overlay": true,
- "start_date": "2015-11",
- "type": "wms",
- "url": "https://wms.michreichert.de/vzg-strecken-2015?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=vzg_strecken,station_codes,level_crossings&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.97664,
- 49.53765
- ],
- [
- 10.99101,
- 49.53392
- ],
- [
- 10.99389,
- 49.53835
- ],
- [
- 11.02784,
- 49.53254
- ],
- [
- 11.0346,
- 49.53462
- ],
- [
- 11.03407,
- 49.53759
- ],
- [
- 11.04318,
- 49.54321
- ],
- [
- 11.03557,
- 49.55303
- ],
- [
- 11.0384,
- 49.55842
- ],
- [
- 11.03508,
- 49.56929
- ],
- [
- 11.03791,
- 49.58659
- ],
- [
- 11.04797,
- 49.5902
- ],
- [
- 11.04922,
- 49.5937
- ],
- [
- 11.05749,
- 49.59521
- ],
- [
- 11.05623,
- 49.59905
- ],
- [
- 11.05127,
- 49.6003
- ],
- [
- 11.05351,
- 49.60904
- ],
- [
- 11.04309,
- 49.61381
- ],
- [
- 11.04076,
- 49.61823
- ],
- [
- 11.0285,
- 49.61735
- ],
- [
- 11.01929,
- 49.61896
- ],
- [
- 11.0152,
- 49.61372
- ],
- [
- 11.00581,
- 49.61448
- ],
- [
- 11.00639,
- 49.61931
- ],
- [
- 11.00083,
- 49.6221
- ],
- [
- 10.9856,
- 49.61651
- ],
- [
- 10.97837,
- 49.61753
- ],
- [
- 10.9737,
- 49.62495
- ],
- [
- 10.96539,
- 49.62557
- ],
- [
- 10.96063,
- 49.62856
- ],
- [
- 10.96382,
- 49.63176
- ],
- [
- 10.95474,
- 49.6379
- ],
- [
- 10.94837,
- 49.637
- ],
- [
- 10.94185,
- 49.64377
- ],
- [
- 10.9273,
- 49.64837
- ],
- [
- 10.92063,
- 49.63963
- ],
- [
- 10.91136,
- 49.63773
- ],
- [
- 10.92429,
- 49.60505
- ],
- [
- 10.92205,
- 49.58004
- ],
- [
- 10.91221,
- 49.57008
- ],
- [
- 10.91441,
- 49.5618
- ],
- [
- 10.92353,
- 49.55842
- ],
- [
- 10.92712,
- 49.55976
- ],
- [
- 10.93345,
- 49.55892
- ],
- [
- 10.93071,
- 49.54467
- ],
- [
- 10.93067,
- 49.53225
- ],
- [
- 10.9406,
- 49.53325
- ],
- [
- 10.95488,
- 49.53021
- ],
- [
- 10.97199,
- 49.53126
- ],
- [
- 10.97664,
- 49.53765
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Stadt Erlangen | © GEOCART GmbH"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2016-03-18",
- "id": "Erlangen-2016",
- "license_url": "https://erlangen.maps.arcgis.com/home/item.html?id=abab0a0c8a4c483290878068fe667a3a",
- "max_zoom": 21,
- "name": "Erlangen Luftbild (2016 5,0 cm)",
- "start_date": "2016-03-18",
- "type": "tms",
- "url": "https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2016/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.85157,
- 49.55172
- ],
- [
- 10.93037,
- 49.55272
- ],
- [
- 10.9326,
- 49.55818
- ],
- [
- 10.91627,
- 49.55882
- ],
- [
- 10.91144,
- 49.56652
- ],
- [
- 10.92281,
- 49.60584
- ],
- [
- 10.9108,
- 49.63751
- ],
- [
- 10.92775,
- 49.64838
- ],
- [
- 10.94444,
- 49.64321
- ],
- [
- 10.96487,
- 49.63317
- ],
- [
- 10.96384,
- 49.62711
- ],
- [
- 10.9745,
- 49.62483
- ],
- [
- 10.9786,
- 49.61794
- ],
- [
- 10.98478,
- 49.61694
- ],
- [
- 10.998,
- 49.62228
- ],
- [
- 11.00813,
- 49.62194
- ],
- [
- 11.0071,
- 49.61449
- ],
- [
- 11.01448,
- 49.61394
- ],
- [
- 11.02081,
- 49.62292
- ],
- [
- 11.05757,
- 49.63993
- ],
- [
- 11.08136,
- 49.62614
- ],
- [
- 11.08312,
- 49.62034
- ],
- [
- 11.10419,
- 49.61524
- ],
- [
- 11.11767,
- 49.61449
- ],
- [
- 11.11997,
- 49.60377
- ],
- [
- 11.13132,
- 49.60348
- ],
- [
- 11.1272,
- 49.58815
- ],
- [
- 11.10271,
- 49.58378
- ],
- [
- 11.08898,
- 49.59124
- ],
- [
- 11.07988,
- 49.60837
- ],
- [
- 11.05808,
- 49.60971
- ],
- [
- 11.06049,
- 49.59803
- ],
- [
- 11.06512,
- 49.59614
- ],
- [
- 11.0689,
- 49.58879
- ],
- [
- 11.06031,
- 49.58556
- ],
- [
- 11.04469,
- 49.58913
- ],
- [
- 11.03851,
- 49.58556
- ],
- [
- 11.03577,
- 49.57276
- ],
- [
- 11.03937,
- 49.55785
- ],
- [
- 11.04272,
- 49.5432
- ],
- [
- 11.03465,
- 49.5324
- ],
- [
- 10.97531,
- 49.53467
- ],
- [
- 10.97158,
- 49.53084
- ],
- [
- 10.94279,
- 49.52986
- ],
- [
- 10.94273,
- 49.50582
- ],
- [
- 10.92163,
- 49.50566
- ],
- [
- 10.91245,
- 49.51829
- ],
- [
- 10.88818,
- 49.52834
- ],
- [
- 10.87518,
- 49.51725
- ],
- [
- 10.84872,
- 49.52291
- ],
- [
- 10.84652,
- 49.52797
- ],
- [
- 10.84637,
- 49.53223
- ],
- [
- 10.85157,
- 49.55172
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Stadt Erlangen | © Hansa Luftbild AG"
- },
- "best": true,
- "category": "photo",
- "country_code": "DE",
- "end_date": "2018-04-09",
- "id": "Erlangen-2018",
- "license_url": "https://osm.rrze.fau.de/description-and-license-luftbild-erlangen-2018.html",
- "max_zoom": 21,
- "name": "Erlangen Luftbild (2018 5,0 cm)",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://osm.rrze.fau.de/datenschutz/",
- "start_date": "2018-04-09",
- "type": "tms",
- "url": "https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2018/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.46964,
- 50.01111
- ],
- [
- 8.46964,
- 50.228
- ],
- [
- 8.83185,
- 50.228
- ],
- [
- 8.83185,
- 50.01111
- ],
- [
- 8.46964,
- 50.01111
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Stadtvermessungsam Frankfurt am Main",
- "url": "http://offenedaten.frankfurt.de/dataset/wms-luftbild-2016"
- },
- "available_projections": [
- "EPSG:25832",
- "EPSG:31467",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "DE",
- "description": "aerial imagery of Frankfurt am Main, photographed on 2016-05-06",
- "end_date": "2016-05-06",
- "id": "Frankfurt-am-Main-2016",
- "license_url": "https://wiki.openstreetmap.org/wiki/Frankfurt_am_Main/amtliche_Daten_f%C3%BCr_OSM",
- "name": "Frankfurt am Main Luftbild 2016",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.frankfurt.de/impressum/datenschutz.html",
- "start_date": "2016-05-06",
- "type": "wms",
- "url": "https://geoportal.frankfurt.de/opendata/luftbild-2016.exe?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=luftbild_10m,luftbild_1m,luftbild_20cm,luftbild_2m,luftbild_50cm,luftbild_5m&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.46964,
- 50.01111
- ],
- [
- 8.46964,
- 50.228
- ],
- [
- 8.83185,
- 50.228
- ],
- [
- 8.83185,
- 50.01111
- ],
- [
- 8.46964,
- 50.01111
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Stadtvermessungsam Frankfurt am Main",
- "url": "https://offenedaten.frankfurt.de/dataset/wms-luftbild-2017"
- },
- "available_projections": [
- "EPSG:25832",
- "EPSG:31467",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "DE",
- "description": "aerial imagery of Frankfurt am Main, photographed on 11.06.2017 and 06.07.2017",
- "end_date": "2016-05-06",
- "id": "Frankfurt-am-Main-2017",
- "license_url": "https://wiki.openstreetmap.org/wiki/Frankfurt_am_Main/amtliche_Daten_f%C3%BCr_OSM",
- "name": "Frankfurt am Main Luftbild 2017",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.frankfurt.de/impressum/datenschutz.html",
- "start_date": "2016-05-06",
- "type": "wms",
- "url": "https://geoportal.frankfurt.de/opendata/luftbild-2017.exe?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=wms_opendata_luftbilder_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.4826,
- 53.9356
- ],
- [
- 8.48274,
- 53.90924
- ],
- [
- 8.5275,
- 53.90941
- ],
- [
- 8.52792,
- 53.93577
- ],
- [
- 8.4826,
- 53.9356
- ]
- ],
- [
- [
- 9.77232,
- 53.54352
- ],
- [
- 9.77434,
- 53.55433
- ],
- [
- 9.76314,
- 53.55521
- ],
- [
- 9.73047,
- 53.55787
- ],
- [
- 9.73465,
- 53.56536
- ],
- [
- 9.75793,
- 53.61828
- ],
- [
- 9.77129,
- 53.63131
- ],
- [
- 9.7707,
- 53.61607
- ],
- [
- 9.79634,
- 53.6103
- ],
- [
- 9.78993,
- 53.60386
- ],
- [
- 9.81817,
- 53.58591
- ],
- [
- 9.83773,
- 53.59198
- ],
- [
- 9.84498,
- 53.59498
- ],
- [
- 9.85416,
- 53.59805
- ],
- [
- 9.86814,
- 53.6093
- ],
- [
- 9.86931,
- 53.61323
- ],
- [
- 9.88505,
- 53.62199
- ],
- [
- 9.88697,
- 53.6252
- ],
- [
- 9.89356,
- 53.63026
- ],
- [
- 9.89637,
- 53.63122
- ],
- [
- 9.89688,
- 53.63492
- ],
- [
- 9.90678,
- 53.65231
- ],
- [
- 9.93115,
- 53.65262
- ],
- [
- 9.94552,
- 53.65276
- ],
- [
- 9.95024,
- 53.65085
- ],
- [
- 9.95155,
- 53.65065
- ],
- [
- 9.97795,
- 53.64887
- ],
- [
- 9.98492,
- 53.6483
- ],
- [
- 9.98739,
- 53.65072
- ],
- [
- 9.9996,
- 53.68153
- ],
- [
- 10.02282,
- 53.68157
- ],
- [
- 10.04338,
- 53.68198
- ],
- [
- 10.05148,
- 53.67759
- ],
- [
- 10.06925,
- 53.67955
- ],
- [
- 10.0604,
- 53.68833
- ],
- [
- 10.071,
- 53.69585
- ],
- [
- 10.0707,
- 53.70996
- ],
- [
- 10.08198,
- 53.72044
- ],
- [
- 10.11908,
- 53.71324
- ],
- [
- 10.16939,
- 53.73896
- ],
- [
- 10.19369,
- 53.731
- ],
- [
- 10.1779,
- 53.70992
- ],
- [
- 10.15694,
- 53.70451
- ],
- [
- 10.15829,
- 53.68944
- ],
- [
- 10.14342,
- 53.68057
- ],
- [
- 10.14176,
- 53.67744
- ],
- [
- 10.14473,
- 53.67613
- ],
- [
- 10.14643,
- 53.67588
- ],
- [
- 10.14955,
- 53.67545
- ],
- [
- 10.17153,
- 53.66869
- ],
- [
- 10.19885,
- 53.64675
- ],
- [
- 10.18973,
- 53.63838
- ],
- [
- 10.22202,
- 53.63349
- ],
- [
- 10.18887,
- 53.61316
- ],
- [
- 10.19236,
- 53.59474
- ],
- [
- 10.20117,
- 53.58392
- ],
- [
- 10.15169,
- 53.57619
- ],
- [
- 10.15067,
- 53.56973
- ],
- [
- 10.148,
- 53.5639
- ],
- [
- 10.15308,
- 53.56242
- ],
- [
- 10.15942,
- 53.56091
- ],
- [
- 10.15189,
- 53.5417
- ],
- [
- 10.15465,
- 53.53657
- ],
- [
- 10.16874,
- 53.5374
- ],
- [
- 10.16327,
- 53.52185
- ],
- [
- 10.16611,
- 53.52013
- ],
- [
- 10.16919,
- 53.51965
- ],
- [
- 10.18951,
- 53.51148
- ],
- [
- 10.21043,
- 53.51996
- ],
- [
- 10.21828,
- 53.49923
- ],
- [
- 10.2367,
- 53.49629
- ],
- [
- 10.25008,
- 53.47898
- ],
- [
- 10.26592,
- 53.47079
- ],
- [
- 10.29043,
- 53.45512
- ],
- [
- 10.30962,
- 53.44309
- ],
- [
- 10.31223,
- 53.45229
- ],
- [
- 10.32514,
- 53.44979
- ],
- [
- 10.30799,
- 53.43332
- ],
- [
- 10.25598,
- 53.41623
- ],
- [
- 10.25089,
- 53.41024
- ],
- [
- 10.24578,
- 53.40261
- ],
- [
- 10.24155,
- 53.39797
- ],
- [
- 10.16555,
- 53.39933
- ],
- [
- 10.14506,
- 53.41614
- ],
- [
- 10.10949,
- 53.42649
- ],
- [
- 10.1068,
- 53.42658
- ],
- [
- 10.07581,
- 53.45436
- ],
- [
- 10.05155,
- 53.46394
- ],
- [
- 10.03517,
- 53.4469
- ],
- [
- 10.01449,
- 53.44203
- ],
- [
- 10.02294,
- 53.43228
- ],
- [
- 9.99754,
- 53.42546
- ],
- [
- 9.98243,
- 53.41478
- ],
- [
- 9.97873,
- 53.4142
- ],
- [
- 9.9581,
- 53.42708
- ],
- [
- 9.92953,
- 53.42007
- ],
- [
- 9.92552,
- 53.41924
- ],
- [
- 9.90667,
- 53.41596
- ],
- [
- 9.92305,
- 53.43631
- ],
- [
- 9.91704,
- 53.44664
- ],
- [
- 9.90436,
- 53.45707
- ],
- [
- 9.89493,
- 53.45583
- ],
- [
- 9.86885,
- 53.44462
- ],
- [
- 9.86211,
- 53.42942
- ],
- [
- 9.84872,
- 53.44111
- ],
- [
- 9.80663,
- 53.46648
- ],
- [
- 9.80021,
- 53.47372
- ],
- [
- 9.8028,
- 53.49383
- ],
- [
- 9.78203,
- 53.49236
- ],
- [
- 9.76885,
- 53.5053
- ],
- [
- 9.77107,
- 53.52185
- ],
- [
- 9.78105,
- 53.51838
- ],
- [
- 9.77352,
- 53.52796
- ],
- [
- 9.77232,
- 53.54352
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung",
- "url": "https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung"
- },
- "available_projections": [
- "EPSG:31467",
- "EPSG:25832",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4647",
- "EPSG:31463",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "DE",
- "id": "hamburg-20cm",
- "name": "Hamburg (20 cm)",
- "type": "wms",
- "url": "https://geodienste.hamburg.de/HH_WMS_DOP20?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.4826,
- 53.9356
- ],
- [
- 8.48274,
- 53.90924
- ],
- [
- 8.5275,
- 53.90941
- ],
- [
- 8.52792,
- 53.93577
- ],
- [
- 8.4826,
- 53.9356
- ]
- ],
- [
- [
- 9.77232,
- 53.54352
- ],
- [
- 9.77434,
- 53.55433
- ],
- [
- 9.76314,
- 53.55521
- ],
- [
- 9.73047,
- 53.55787
- ],
- [
- 9.73465,
- 53.56536
- ],
- [
- 9.75793,
- 53.61828
- ],
- [
- 9.77129,
- 53.63131
- ],
- [
- 9.7707,
- 53.61607
- ],
- [
- 9.79634,
- 53.6103
- ],
- [
- 9.78993,
- 53.60386
- ],
- [
- 9.81817,
- 53.58591
- ],
- [
- 9.83773,
- 53.59198
- ],
- [
- 9.84498,
- 53.59498
- ],
- [
- 9.85416,
- 53.59805
- ],
- [
- 9.86814,
- 53.6093
- ],
- [
- 9.86931,
- 53.61323
- ],
- [
- 9.88505,
- 53.62199
- ],
- [
- 9.88697,
- 53.6252
- ],
- [
- 9.89356,
- 53.63026
- ],
- [
- 9.89637,
- 53.63122
- ],
- [
- 9.89688,
- 53.63492
- ],
- [
- 9.90678,
- 53.65231
- ],
- [
- 9.93115,
- 53.65262
- ],
- [
- 9.94552,
- 53.65276
- ],
- [
- 9.95024,
- 53.65085
- ],
- [
- 9.95155,
- 53.65065
- ],
- [
- 9.97795,
- 53.64887
- ],
- [
- 9.98492,
- 53.6483
- ],
- [
- 9.98739,
- 53.65072
- ],
- [
- 9.9996,
- 53.68153
- ],
- [
- 10.02282,
- 53.68157
- ],
- [
- 10.04338,
- 53.68198
- ],
- [
- 10.05148,
- 53.67759
- ],
- [
- 10.06925,
- 53.67955
- ],
- [
- 10.0604,
- 53.68833
- ],
- [
- 10.071,
- 53.69585
- ],
- [
- 10.0707,
- 53.70996
- ],
- [
- 10.08198,
- 53.72044
- ],
- [
- 10.11908,
- 53.71324
- ],
- [
- 10.16939,
- 53.73896
- ],
- [
- 10.19369,
- 53.731
- ],
- [
- 10.1779,
- 53.70992
- ],
- [
- 10.15694,
- 53.70451
- ],
- [
- 10.15829,
- 53.68944
- ],
- [
- 10.14342,
- 53.68057
- ],
- [
- 10.14176,
- 53.67744
- ],
- [
- 10.14473,
- 53.67613
- ],
- [
- 10.14643,
- 53.67588
- ],
- [
- 10.14955,
- 53.67545
- ],
- [
- 10.17153,
- 53.66869
- ],
- [
- 10.19885,
- 53.64675
- ],
- [
- 10.18973,
- 53.63838
- ],
- [
- 10.22202,
- 53.63349
- ],
- [
- 10.18887,
- 53.61316
- ],
- [
- 10.19236,
- 53.59474
- ],
- [
- 10.20117,
- 53.58392
- ],
- [
- 10.15169,
- 53.57619
- ],
- [
- 10.15067,
- 53.56973
- ],
- [
- 10.148,
- 53.5639
- ],
- [
- 10.15308,
- 53.56242
- ],
- [
- 10.15942,
- 53.56091
- ],
- [
- 10.15189,
- 53.5417
- ],
- [
- 10.15465,
- 53.53657
- ],
- [
- 10.16874,
- 53.5374
- ],
- [
- 10.16327,
- 53.52185
- ],
- [
- 10.16611,
- 53.52013
- ],
- [
- 10.16919,
- 53.51965
- ],
- [
- 10.18951,
- 53.51148
- ],
- [
- 10.21043,
- 53.51996
- ],
- [
- 10.21828,
- 53.49923
- ],
- [
- 10.2367,
- 53.49629
- ],
- [
- 10.25008,
- 53.47898
- ],
- [
- 10.26592,
- 53.47079
- ],
- [
- 10.29043,
- 53.45512
- ],
- [
- 10.30962,
- 53.44309
- ],
- [
- 10.31223,
- 53.45229
- ],
- [
- 10.32514,
- 53.44979
- ],
- [
- 10.30799,
- 53.43332
- ],
- [
- 10.25598,
- 53.41623
- ],
- [
- 10.25089,
- 53.41024
- ],
- [
- 10.24578,
- 53.40261
- ],
- [
- 10.24155,
- 53.39797
- ],
- [
- 10.16555,
- 53.39933
- ],
- [
- 10.14506,
- 53.41614
- ],
- [
- 10.10949,
- 53.42649
- ],
- [
- 10.1068,
- 53.42658
- ],
- [
- 10.07581,
- 53.45436
- ],
- [
- 10.05155,
- 53.46394
- ],
- [
- 10.03517,
- 53.4469
- ],
- [
- 10.01449,
- 53.44203
- ],
- [
- 10.02294,
- 53.43228
- ],
- [
- 9.99754,
- 53.42546
- ],
- [
- 9.98243,
- 53.41478
- ],
- [
- 9.97873,
- 53.4142
- ],
- [
- 9.9581,
- 53.42708
- ],
- [
- 9.92953,
- 53.42007
- ],
- [
- 9.92552,
- 53.41924
- ],
- [
- 9.90667,
- 53.41596
- ],
- [
- 9.92305,
- 53.43631
- ],
- [
- 9.91704,
- 53.44664
- ],
- [
- 9.90436,
- 53.45707
- ],
- [
- 9.89493,
- 53.45583
- ],
- [
- 9.86885,
- 53.44462
- ],
- [
- 9.86211,
- 53.42942
- ],
- [
- 9.84872,
- 53.44111
- ],
- [
- 9.80663,
- 53.46648
- ],
- [
- 9.80021,
- 53.47372
- ],
- [
- 9.8028,
- 53.49383
- ],
- [
- 9.78203,
- 53.49236
- ],
- [
- 9.76885,
- 53.5053
- ],
- [
- 9.77107,
- 53.52185
- ],
- [
- 9.78105,
- 53.51838
- ],
- [
- 9.77352,
- 53.52796
- ],
- [
- 9.77232,
- 53.54352
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung",
- "url": "https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung"
- },
- "available_projections": [
- "EPSG:31467",
- "EPSG:25832",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4647",
- "EPSG:4326"
- ],
- "country_code": "DE",
- "id": "Hamburg-DK5",
- "name": "Hamburg (DK5)",
- "type": "wms",
- "url": "https://geodienste.hamburg.de/HH_WMS_DK5?FORMAT=image/png&TRANSPARENT=false&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.10355,
- 49.865
- ],
- [
- 8.38356,
- 49.865
- ],
- [
- 8.38356,
- 50.0466
- ],
- [
- 8.10355,
- 50.0466
- ],
- [
- 8.10355,
- 49.865
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Vermessung und Geoinformation Mainz",
- "url": "https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:4258",
- "EPSG:31467"
- ],
- "category": "photo",
- "country_code": "DE",
- "icon": "https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png",
- "id": "mainzallaerialimageries",
- "license_url": "https://wiki.openstreetmap.org/wiki/Mainz/amtliche_Daten_f%C3%BCr_OSM",
- "min_zoom": 17,
- "name": "Mainz all aerial imageries",
- "type": "wms_endpoint",
- "url": "https://gint.mainz.de/gint1-cgi/mapserv?map=/data/mapbender-int/umn-www/client/a62/luftbild.map"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.10355,
- 49.865
- ],
- [
- 8.38356,
- 49.865
- ],
- [
- 8.38356,
- 50.0466
- ],
- [
- 8.10355,
- 50.0466
- ],
- [
- 8.10355,
- 49.865
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Vermessung und Geoinformation Mainz",
- "url": "https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:4258",
- "EPSG:31467"
- ],
- "category": "photo",
- "country_code": "DE",
- "icon": "https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png",
- "id": "mainzlatestaerialimagery",
- "license_url": "https://wiki.openstreetmap.org/wiki/Mainz/amtliche_Daten_f%C3%BCr_OSM",
- "min_zoom": 12,
- "name": "Mainz latest aerial imagery",
- "type": "wms",
- "url": "https://geodaten.mainz.de/map/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho_2018&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.06954,
- 49.57679
- ],
- [
- 9.10577,
- 49.57952
- ],
- [
- 9.16079,
- 49.58263
- ],
- [
- 9.24212,
- 49.58402
- ],
- [
- 9.27192,
- 49.63515
- ],
- [
- 9.30454,
- 49.65561
- ],
- [
- 9.36753,
- 49.65893
- ],
- [
- 9.38253,
- 49.64341
- ],
- [
- 9.41191,
- 49.66033
- ],
- [
- 9.39602,
- 49.67143
- ],
- [
- 9.41828,
- 49.69706
- ],
- [
- 9.40378,
- 49.71957
- ],
- [
- 9.37769,
- 49.70357
- ],
- [
- 9.35828,
- 49.70334
- ],
- [
- 9.29438,
- 49.73958
- ],
- [
- 9.31467,
- 49.76859
- ],
- [
- 9.42435,
- 49.79099
- ],
- [
- 9.50417,
- 49.78962
- ],
- [
- 9.51808,
- 49.78214
- ],
- [
- 9.65623,
- 49.79286
- ],
- [
- 9.65317,
- 49.73944
- ],
- [
- 9.63435,
- 49.70076
- ],
- [
- 9.67054,
- 49.69515
- ],
- [
- 9.67721,
- 49.71846
- ],
- [
- 9.71079,
- 49.72918
- ],
- [
- 9.8014,
- 49.73429
- ],
- [
- 9.83728,
- 49.70237
- ],
- [
- 9.87656,
- 49.61362
- ],
- [
- 9.83362,
- 49.55607
- ],
- [
- 9.84954,
- 49.54793
- ],
- [
- 9.87463,
- 49.5836
- ],
- [
- 9.91419,
- 49.58955
- ],
- [
- 9.93066,
- 49.56097
- ],
- [
- 9.92482,
- 49.48951
- ],
- [
- 10.01787,
- 49.48673
- ],
- [
- 10.03352,
- 49.52978
- ],
- [
- 10.06372,
- 49.55129
- ],
- [
- 10.09052,
- 49.54218
- ],
- [
- 10.12792,
- 49.51192
- ],
- [
- 10.11027,
- 49.49272
- ],
- [
- 10.16753,
- 49.38589
- ],
- [
- 10.12627,
- 49.3809
- ],
- [
- 10.14385,
- 49.32772
- ],
- [
- 10.16061,
- 49.27043
- ],
- [
- 10.13569,
- 49.26189
- ],
- [
- 10.14311,
- 49.20387
- ],
- [
- 10.25161,
- 49.15031
- ],
- [
- 10.26279,
- 49.12959
- ],
- [
- 10.26869,
- 49.05202
- ],
- [
- 10.36527,
- 49.02557
- ],
- [
- 10.45894,
- 48.93581
- ],
- [
- 10.46208,
- 48.83947
- ],
- [
- 10.42886,
- 48.74973
- ],
- [
- 10.46648,
- 48.73627
- ],
- [
- 10.49761,
- 48.68581
- ],
- [
- 10.45007,
- 48.66277
- ],
- [
- 10.3553,
- 48.65068
- ],
- [
- 10.32297,
- 48.68241
- ],
- [
- 10.26028,
- 48.67842
- ],
- [
- 10.32542,
- 48.60763
- ],
- [
- 10.31448,
- 48.52323
- ],
- [
- 10.17973,
- 48.45977
- ],
- [
- 10.12892,
- 48.45301
- ],
- [
- 10.10938,
- 48.47445
- ],
- [
- 10.06355,
- 48.45381
- ],
- [
- 10.03918,
- 48.45125
- ],
- [
- 10.04492,
- 48.43158
- ],
- [
- 10.0152,
- 48.40323
- ],
- [
- 9.98709,
- 48.38565
- ],
- [
- 9.97328,
- 48.37944
- ],
- [
- 9.97549,
- 48.36558
- ],
- [
- 9.99071,
- 48.3734
- ],
- [
- 10.00265,
- 48.3632
- ],
- [
- 9.99992,
- 48.35572
- ],
- [
- 10.06698,
- 48.28172
- ],
- [
- 10.08111,
- 48.2253
- ],
- [
- 10.11306,
- 48.12632
- ],
- [
- 10.13966,
- 48.11307
- ],
- [
- 10.14695,
- 48.07455
- ],
- [
- 10.13763,
- 48.01938
- ],
- [
- 10.11725,
- 47.9755
- ],
- [
- 10.11359,
- 47.93422
- ],
- [
- 10.10709,
- 47.86711
- ],
- [
- 10.14174,
- 47.80956
- ],
- [
- 10.0732,
- 47.78686
- ],
- [
- 10.11825,
- 47.76126
- ],
- [
- 10.14213,
- 47.70165
- ],
- [
- 10.13262,
- 47.67678
- ],
- [
- 10.07445,
- 47.63472
- ],
- [
- 10.06303,
- 47.66923
- ],
- [
- 10.00359,
- 47.67526
- ],
- [
- 9.95808,
- 47.64376
- ],
- [
- 9.84481,
- 47.67533
- ],
- [
- 9.83488,
- 47.66042
- ],
- [
- 9.74926,
- 47.60206
- ],
- [
- 9.70817,
- 47.60007
- ],
- [
- 9.65788,
- 47.60599
- ],
- [
- 9.64742,
- 47.58931
- ],
- [
- 9.61389,
- 47.57809
- ],
- [
- 9.56602,
- 47.53274
- ],
- [
- 9.51199,
- 47.53246
- ],
- [
- 9.25717,
- 47.65752
- ],
- [
- 9.18684,
- 47.65697
- ],
- [
- 9.17591,
- 47.65379
- ],
- [
- 9.17028,
- 47.65474
- ],
- [
- 9.15555,
- 47.666
- ],
- [
- 9.1494,
- 47.66713
- ],
- [
- 9.13947,
- 47.66367
- ],
- [
- 9.02005,
- 47.68616
- ],
- [
- 8.94127,
- 47.65569
- ],
- [
- 8.89825,
- 47.64821
- ],
- [
- 8.88263,
- 47.65327
- ],
- [
- 8.87474,
- 47.6545
- ],
- [
- 8.87235,
- 47.66971
- ],
- [
- 8.84949,
- 47.68089
- ],
- [
- 8.84993,
- 47.70233
- ],
- [
- 8.81816,
- 47.71242
- ],
- [
- 8.80108,
- 47.72811
- ],
- [
- 8.77231,
- 47.71606
- ],
- [
- 8.81295,
- 47.6959
- ],
- [
- 8.79373,
- 47.67216
- ],
- [
- 8.7533,
- 47.68997
- ],
- [
- 8.72575,
- 47.6917
- ],
- [
- 8.71002,
- 47.68829
- ],
- [
- 8.68937,
- 47.69318
- ],
- [
- 8.67046,
- 47.68235
- ],
- [
- 8.65783,
- 47.68883
- ],
- [
- 8.66161,
- 47.71454
- ],
- [
- 8.70596,
- 47.71584
- ],
- [
- 8.70932,
- 47.73275
- ],
- [
- 8.73033,
- 47.75527
- ],
- [
- 8.72003,
- 47.76273
- ],
- [
- 8.68871,
- 47.75314
- ],
- [
- 8.67898,
- 47.78306
- ],
- [
- 8.64981,
- 47.79435
- ],
- [
- 8.65592,
- 47.76948
- ],
- [
- 8.63132,
- 47.75749
- ],
- [
- 8.61918,
- 47.76216
- ],
- [
- 8.61351,
- 47.78451
- ],
- [
- 8.61686,
- 47.79705
- ],
- [
- 8.568,
- 47.79977
- ],
- [
- 8.57611,
- 47.79015
- ],
- [
- 8.57847,
- 47.78102
- ],
- [
- 8.56315,
- 47.77654
- ],
- [
- 8.48889,
- 47.76458
- ],
- [
- 8.45742,
- 47.74126
- ],
- [
- 8.4623,
- 47.72909
- ],
- [
- 8.44929,
- 47.71663
- ],
- [
- 8.41471,
- 47.69991
- ],
- [
- 8.4273,
- 47.68562
- ],
- [
- 8.41061,
- 47.6743
- ],
- [
- 8.46839,
- 47.6568
- ],
- [
- 8.52474,
- 47.64677
- ],
- [
- 8.5269,
- 47.66373
- ],
- [
- 8.56441,
- 47.67261
- ],
- [
- 8.57853,
- 47.66373
- ],
- [
- 8.60454,
- 47.6751
- ],
- [
- 8.63333,
- 47.65212
- ],
- [
- 8.62386,
- 47.63922
- ],
- [
- 8.60395,
- 47.63193
- ],
- [
- 8.61281,
- 47.61327
- ],
- [
- 8.57951,
- 47.59306
- ],
- [
- 8.5602,
- 47.59867
- ],
- [
- 8.56765,
- 47.61442
- ],
- [
- 8.53394,
- 47.62984
- ],
- [
- 8.51208,
- 47.61641
- ],
- [
- 8.46581,
- 47.60137
- ],
- [
- 8.46631,
- 47.58666
- ],
- [
- 8.48985,
- 47.59139
- ],
- [
- 8.5,
- 47.58062
- ],
- [
- 8.43414,
- 47.5629
- ],
- [
- 8.39882,
- 47.57559
- ],
- [
- 8.38525,
- 47.56408
- ],
- [
- 8.32701,
- 47.56893
- ],
- [
- 8.29483,
- 47.59077
- ],
- [
- 8.2948,
- 47.60497
- ],
- [
- 8.26293,
- 47.60823
- ],
- [
- 8.22435,
- 47.60446
- ],
- [
- 8.18644,
- 47.60508
- ],
- [
- 8.16904,
- 47.59394
- ],
- [
- 8.13615,
- 47.58246
- ],
- [
- 8.10503,
- 47.56795
- ],
- [
- 8.09873,
- 47.55933
- ],
- [
- 8.08261,
- 47.55624
- ],
- [
- 8.07095,
- 47.56299
- ],
- [
- 8.0274,
- 47.54931
- ],
- [
- 7.94632,
- 47.54209
- ],
- [
- 7.90966,
- 47.54825
- ],
- [
- 7.90676,
- 47.5603
- ],
- [
- 7.88681,
- 47.58765
- ],
- [
- 7.83987,
- 47.58122
- ],
- [
- 7.79648,
- 47.55517
- ],
- [
- 7.69208,
- 47.53137
- ],
- [
- 7.66583,
- 47.53403
- ],
- [
- 7.63159,
- 47.56044
- ],
- [
- 7.63879,
- 47.56619
- ],
- [
- 7.68607,
- 47.57205
- ],
- [
- 7.65278,
- 47.59418
- ],
- [
- 7.62247,
- 47.57767
- ],
- [
- 7.60473,
- 47.57822
- ],
- [
- 7.58771,
- 47.59015
- ],
- [
- 7.52156,
- 47.65161
- ],
- [
- 7.50399,
- 47.70235
- ],
- [
- 7.52096,
- 47.77685
- ],
- [
- 7.55712,
- 47.84839
- ],
- [
- 7.54946,
- 47.8792
- ],
- [
- 7.57461,
- 47.93028
- ],
- [
- 7.61318,
- 47.96804
- ],
- [
- 7.6119,
- 47.9871
- ],
- [
- 7.56124,
- 48.03836
- ],
- [
- 7.57491,
- 48.1258
- ],
- [
- 7.59534,
- 48.15977
- ],
- [
- 7.63305,
- 48.19717
- ],
- [
- 7.66275,
- 48.22473
- ],
- [
- 7.68466,
- 48.30305
- ],
- [
- 7.76346,
- 48.49158
- ],
- [
- 7.80046,
- 48.5126
- ],
- [
- 7.79958,
- 48.5878
- ],
- [
- 7.83409,
- 48.64439
- ],
- [
- 7.91211,
- 48.68899
- ],
- [
- 7.96723,
- 48.75716
- ],
- [
- 8.02069,
- 48.78879
- ],
- [
- 8.04302,
- 48.7956
- ],
- [
- 8.08647,
- 48.81306
- ],
- [
- 8.13644,
- 48.89782
- ],
- [
- 8.19706,
- 48.96021
- ],
- [
- 8.28161,
- 48.9949
- ],
- [
- 8.29967,
- 49.02597
- ],
- [
- 8.31243,
- 49.05996
- ],
- [
- 8.38654,
- 49.23497
- ],
- [
- 8.46083,
- 49.28407
- ],
- [
- 8.48783,
- 49.29326
- ],
- [
- 8.47577,
- 49.3079
- ],
- [
- 8.44839,
- 49.31693
- ],
- [
- 8.45152,
- 49.33135
- ],
- [
- 8.46288,
- 49.3869
- ],
- [
- 8.49407,
- 49.40186
- ],
- [
- 8.49762,
- 49.41583
- ],
- [
- 8.50721,
- 49.43414
- ],
- [
- 8.49834,
- 49.44187
- ],
- [
- 8.47977,
- 49.44391
- ],
- [
- 8.46414,
- 49.44151
- ],
- [
- 8.44696,
- 49.44516
- ],
- [
- 8.43947,
- 49.45214
- ],
- [
- 8.44407,
- 49.46085
- ],
- [
- 8.45992,
- 49.46498
- ],
- [
- 8.46312,
- 49.47135
- ],
- [
- 8.4554,
- 49.48107
- ],
- [
- 8.44184,
- 49.49297
- ],
- [
- 8.41194,
- 49.55852
- ],
- [
- 8.42193,
- 49.5843
- ],
- [
- 8.44117,
- 49.59081
- ],
- [
- 8.45482,
- 49.59157
- ],
- [
- 8.47738,
- 49.5874
- ],
- [
- 8.56161,
- 49.52237
- ],
- [
- 8.61486,
- 49.54175
- ],
- [
- 8.59165,
- 49.59179
- ],
- [
- 8.58706,
- 49.61156
- ],
- [
- 8.65189,
- 49.6209
- ],
- [
- 8.69494,
- 49.62762
- ],
- [
- 8.70105,
- 49.59869
- ],
- [
- 8.68726,
- 49.57096
- ],
- [
- 8.72597,
- 49.53085
- ],
- [
- 8.78493,
- 49.51775
- ],
- [
- 8.81467,
- 49.53187
- ],
- [
- 8.88863,
- 49.51091
- ],
- [
- 8.90168,
- 49.50363
- ],
- [
- 8.90315,
- 49.486
- ],
- [
- 8.87995,
- 49.46561
- ],
- [
- 8.83117,
- 49.42147
- ],
- [
- 8.80845,
- 49.40981
- ],
- [
- 8.82075,
- 49.39647
- ],
- [
- 8.83009,
- 49.41316
- ],
- [
- 8.85107,
- 49.39663
- ],
- [
- 8.90247,
- 49.44632
- ],
- [
- 8.93863,
- 49.48179
- ],
- [
- 8.95154,
- 49.50562
- ],
- [
- 8.98498,
- 49.51153
- ],
- [
- 9.03553,
- 49.50079
- ],
- [
- 9.05731,
- 49.532
- ],
- [
- 9.10023,
- 49.52728
- ],
- [
- 9.11009,
- 49.51213
- ],
- [
- 9.12424,
- 49.51722
- ],
- [
- 9.11286,
- 49.53337
- ],
- [
- 9.08284,
- 49.54211
- ],
- [
- 9.06694,
- 49.56433
- ],
- [
- 9.06954,
- 49.57679
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Datengrundlage: LGL, www.lgl-bw.de",
- "url": "https://www.lgl-bw.de/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:3857",
- "EPSG:31466",
- "EPSG:31467",
- "EPSG:31468",
- "EPSG:25833"
- ],
- "country_code": "DE",
- "id": "Maps4BW-LGL_BW",
- "license_url": "https://wiki.openstreetmap.org/wiki/Maps4BW#Genehmigung_zur_Nutzung",
- "name": "Maps4BW (LGL-BW, www.lgl-bw.de)",
- "type": "wms",
- "url": "https://owsproxy.lgl-bw.de/owsproxy/ows/WMS_Maps4BW?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=webatlasde&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.51691,
- 51.81714
- ],
- [
- 6.52258,
- 51.81469
- ],
- [
- 6.52281,
- 51.81041
- ],
- [
- 6.52834,
- 51.81053
- ],
- [
- 6.53991,
- 51.80134
- ],
- [
- 6.5511,
- 51.799
- ],
- [
- 6.56818,
- 51.78992
- ],
- [
- 6.57476,
- 51.79606
- ],
- [
- 6.58457,
- 51.79369
- ],
- [
- 6.59102,
- 51.8024
- ],
- [
- 6.60911,
- 51.80019
- ],
- [
- 6.61081,
- 51.79423
- ],
- [
- 6.63264,
- 51.79981
- ],
- [
- 6.65946,
- 51.7892
- ],
- [
- 6.66837,
- 51.77738
- ],
- [
- 6.7138,
- 51.78084
- ],
- [
- 6.70876,
- 51.77131
- ],
- [
- 6.72131,
- 51.76899
- ],
- [
- 6.7475,
- 51.77035
- ],
- [
- 6.74862,
- 51.77551
- ],
- [
- 6.75824,
- 51.77656
- ],
- [
- 6.7698,
- 51.76649
- ],
- [
- 6.77219,
- 51.74596
- ],
- [
- 6.78862,
- 51.74884
- ],
- [
- 6.79861,
- 51.74217
- ],
- [
- 6.81927,
- 51.74341
- ],
- [
- 6.81956,
- 51.73741
- ],
- [
- 6.82683,
- 51.72983
- ],
- [
- 6.8403,
- 51.73694
- ],
- [
- 6.84995,
- 51.73712
- ],
- [
- 6.85551,
- 51.73636
- ],
- [
- 6.8586,
- 51.72956
- ],
- [
- 6.9103,
- 51.74592
- ],
- [
- 6.90861,
- 51.75275
- ],
- [
- 6.91511,
- 51.76144
- ],
- [
- 6.9157,
- 51.7786
- ],
- [
- 6.93527,
- 51.7738
- ],
- [
- 6.95606,
- 51.77245
- ],
- [
- 6.97559,
- 51.79936
- ],
- [
- 6.98794,
- 51.80129
- ],
- [
- 6.99485,
- 51.80141
- ],
- [
- 6.99497,
- 51.79884
- ],
- [
- 7.02118,
- 51.80014
- ],
- [
- 7.0244,
- 51.7899
- ],
- [
- 7.03141,
- 51.78745
- ],
- [
- 7.0316,
- 51.78317
- ],
- [
- 7.03847,
- 51.78414
- ],
- [
- 7.05392,
- 51.77839
- ],
- [
- 7.06079,
- 51.77936
- ],
- [
- 7.0609,
- 51.77679
- ],
- [
- 7.07333,
- 51.777
- ],
- [
- 7.07867,
- 51.78137
- ],
- [
- 7.11433,
- 51.78795
- ],
- [
- 7.13435,
- 51.80542
- ],
- [
- 7.1616,
- 51.81528
- ],
- [
- 7.16419,
- 51.8196
- ],
- [
- 7.19177,
- 51.82174
- ],
- [
- 7.2141,
- 51.81694
- ],
- [
- 7.22121,
- 51.81191
- ],
- [
- 7.23658,
- 51.80785
- ],
- [
- 7.23668,
- 51.80528
- ],
- [
- 7.24916,
- 51.80461
- ],
- [
- 7.2535,
- 51.79953
- ],
- [
- 7.26179,
- 51.79966
- ],
- [
- 7.26485,
- 51.79198
- ],
- [
- 7.26245,
- 51.78252
- ],
- [
- 7.27229,
- 51.77838
- ],
- [
- 7.26002,
- 51.77391
- ],
- [
- 7.26012,
- 51.77134
- ],
- [
- 7.2688,
- 51.76118
- ],
- [
- 7.27577,
- 51.75957
- ],
- [
- 7.27889,
- 51.75019
- ],
- [
- 7.31079,
- 51.74636
- ],
- [
- 7.3151,
- 51.74214
- ],
- [
- 7.31519,
- 51.73957
- ],
- [
- 7.31102,
- 51.74036
- ],
- [
- 7.3125,
- 51.73781
- ],
- [
- 7.32081,
- 51.73707
- ],
- [
- 7.31169,
- 51.72237
- ],
- [
- 7.29963,
- 51.71277
- ],
- [
- 7.2985,
- 51.70589
- ],
- [
- 7.31069,
- 51.71207
- ],
- [
- 7.30825,
- 51.70346
- ],
- [
- 7.32762,
- 51.70202
- ],
- [
- 7.33057,
- 51.69692
- ],
- [
- 7.34427,
- 51.69969
- ],
- [
- 7.34599,
- 51.69028
- ],
- [
- 7.33919,
- 51.68761
- ],
- [
- 7.35589,
- 51.68356
- ],
- [
- 7.35877,
- 51.68017
- ],
- [
- 7.3781,
- 51.67959
- ],
- [
- 7.39086,
- 51.66947
- ],
- [
- 7.40617,
- 51.6654
- ],
- [
- 7.41031,
- 51.66545
- ],
- [
- 7.4101,
- 51.67145
- ],
- [
- 7.43089,
- 51.6683
- ],
- [
- 7.43892,
- 51.67527
- ],
- [
- 7.44854,
- 51.67625
- ],
- [
- 7.44933,
- 51.69341
- ],
- [
- 7.44094,
- 51.69673
- ],
- [
- 7.43792,
- 51.7044
- ],
- [
- 7.42406,
- 51.70593
- ],
- [
- 7.42245,
- 51.71277
- ],
- [
- 7.43451,
- 51.72321
- ],
- [
- 7.44825,
- 51.72511
- ],
- [
- 7.46718,
- 51.7365
- ],
- [
- 7.47273,
- 51.73572
- ],
- [
- 7.4771,
- 51.72892
- ],
- [
- 7.4826,
- 51.72985
- ],
- [
- 7.47877,
- 51.72037
- ],
- [
- 7.48435,
- 51.71872
- ],
- [
- 7.48449,
- 51.71444
- ],
- [
- 7.49119,
- 51.72053
- ],
- [
- 7.49947,
- 51.72063
- ],
- [
- 7.50214,
- 51.72324
- ],
- [
- 7.51738,
- 51.72172
- ],
- [
- 7.51788,
- 51.70629
- ],
- [
- 7.53035,
- 51.70473
- ],
- [
- 7.52922,
- 51.69701
- ],
- [
- 7.53349,
- 51.69277
- ],
- [
- 7.54458,
- 51.6912
- ],
- [
- 7.5378,
- 51.68768
- ],
- [
- 7.54477,
- 51.6852
- ],
- [
- 7.5528,
- 51.69301
- ],
- [
- 7.56651,
- 51.69575
- ],
- [
- 7.56642,
- 51.69832
- ],
- [
- 7.58706,
- 51.70029
- ],
- [
- 7.59379,
- 51.70551
- ],
- [
- 7.6048,
- 51.7065
- ],
- [
- 7.60743,
- 51.71082
- ],
- [
- 7.6143,
- 51.71176
- ],
- [
- 7.61419,
- 51.71518
- ],
- [
- 7.62663,
- 51.71447
- ],
- [
- 7.62814,
- 51.7102
- ],
- [
- 7.64321,
- 51.71381
- ],
- [
- 7.6531,
- 51.70621
- ],
- [
- 7.65428,
- 51.71308
- ],
- [
- 7.668,
- 51.71581
- ],
- [
- 7.66915,
- 51.72353
- ],
- [
- 7.68832,
- 51.72889
- ],
- [
- 7.69283,
- 51.71608
- ],
- [
- 7.7012,
- 51.71275
- ],
- [
- 7.71352,
- 51.71631
- ],
- [
- 7.71481,
- 51.71976
- ],
- [
- 7.71899,
- 51.71809
- ],
- [
- 7.71749,
- 51.72236
- ],
- [
- 7.72163,
- 51.7224
- ],
- [
- 7.72555,
- 51.73016
- ],
- [
- 7.73659,
- 51.73028
- ],
- [
- 7.73638,
- 51.73799
- ],
- [
- 7.75154,
- 51.73901
- ],
- [
- 7.7699,
- 51.72378
- ],
- [
- 7.77119,
- 51.72722
- ],
- [
- 7.78908,
- 51.72912
- ],
- [
- 7.79037,
- 51.73256
- ],
- [
- 7.80282,
- 51.73183
- ],
- [
- 7.80137,
- 51.73439
- ],
- [
- 7.80825,
- 51.73531
- ],
- [
- 7.81228,
- 51.73964
- ],
- [
- 7.82058,
- 51.73887
- ],
- [
- 7.82457,
- 51.74491
- ],
- [
- 7.83287,
- 51.74413
- ],
- [
- 7.83314,
- 51.73385
- ],
- [
- 7.83739,
- 51.72961
- ],
- [
- 7.85815,
- 51.72724
- ],
- [
- 7.85822,
- 51.72467
- ],
- [
- 7.86374,
- 51.72472
- ],
- [
- 7.87187,
- 51.7308
- ],
- [
- 7.87745,
- 51.72828
- ],
- [
- 7.88038,
- 51.72145
- ],
- [
- 7.88875,
- 51.7181
- ],
- [
- 7.88912,
- 51.70267
- ],
- [
- 7.90148,
- 51.70536
- ],
- [
- 7.90568,
- 51.70283
- ],
- [
- 7.91249,
- 51.70632
- ],
- [
- 7.92768,
- 51.7056
- ],
- [
- 7.92912,
- 51.70305
- ],
- [
- 7.94014,
- 51.704
- ],
- [
- 7.93746,
- 51.70055
- ],
- [
- 7.94296,
- 51.70146
- ],
- [
- 7.96108,
- 51.69305
- ],
- [
- 7.97631,
- 51.69061
- ],
- [
- 7.97779,
- 51.68633
- ],
- [
- 7.9875,
- 51.68385
- ],
- [
- 7.98761,
- 51.67871
- ],
- [
- 7.99732,
- 51.67622
- ],
- [
- 7.9974,
- 51.67279
- ],
- [
- 7.98365,
- 51.67096
- ],
- [
- 7.96286,
- 51.67592
- ],
- [
- 7.95466,
- 51.67242
- ],
- [
- 7.95366,
- 51.65612
- ],
- [
- 7.94689,
- 51.65092
- ],
- [
- 7.94984,
- 51.64237
- ],
- [
- 7.94443,
- 51.63804
- ],
- [
- 7.93477,
- 51.6388
- ],
- [
- 7.93224,
- 51.62935
- ],
- [
- 7.92406,
- 51.62585
- ],
- [
- 7.92414,
- 51.62242
- ],
- [
- 7.91195,
- 51.61374
- ],
- [
- 7.91632,
- 51.60349
- ],
- [
- 7.91378,
- 51.59489
- ],
- [
- 7.87529,
- 51.59282
- ],
- [
- 7.86837,
- 51.59446
- ],
- [
- 7.85742,
- 51.59179
- ],
- [
- 7.85889,
- 51.58837
- ],
- [
- 7.82749,
- 51.57863
- ],
- [
- 7.84327,
- 51.55307
- ],
- [
- 7.83262,
- 51.53925
- ],
- [
- 7.83277,
- 51.53325
- ],
- [
- 7.84115,
- 51.52819
- ],
- [
- 7.8345,
- 51.51955
- ],
- [
- 7.83755,
- 51.50758
- ],
- [
- 7.83212,
- 51.50496
- ],
- [
- 7.83912,
- 51.49988
- ],
- [
- 7.83923,
- 51.4956
- ],
- [
- 7.84474,
- 51.49479
- ],
- [
- 7.8506,
- 51.48028
- ],
- [
- 7.83418,
- 51.4784
- ],
- [
- 7.82198,
- 51.47228
- ],
- [
- 7.80819,
- 51.47471
- ],
- [
- 7.79876,
- 51.46776
- ],
- [
- 7.78906,
- 51.47109
- ],
- [
- 7.76169,
- 51.46823
- ],
- [
- 7.74785,
- 51.47237
- ],
- [
- 7.7425,
- 51.46717
- ],
- [
- 7.73567,
- 51.46623
- ],
- [
- 7.72864,
- 51.47216
- ],
- [
- 7.69838,
- 51.4744
- ],
- [
- 7.67525,
- 51.46728
- ],
- [
- 7.65606,
- 51.46621
- ],
- [
- 7.65347,
- 51.46103
- ],
- [
- 7.63843,
- 51.45914
- ],
- [
- 7.63589,
- 51.45226
- ],
- [
- 7.62083,
- 51.45122
- ],
- [
- 7.61407,
- 51.44772
- ],
- [
- 7.61977,
- 51.44092
- ],
- [
- 7.62525,
- 51.44099
- ],
- [
- 7.62127,
- 51.43666
- ],
- [
- 7.62825,
- 51.43245
- ],
- [
- 7.62561,
- 51.42899
- ],
- [
- 7.63125,
- 51.42391
- ],
- [
- 7.61633,
- 51.41859
- ],
- [
- 7.62183,
- 51.4178
- ],
- [
- 7.62196,
- 51.41352
- ],
- [
- 7.63313,
- 51.40679
- ],
- [
- 7.61322,
- 51.38512
- ],
- [
- 7.60485,
- 51.39017
- ],
- [
- 7.60609,
- 51.39447
- ],
- [
- 7.59647,
- 51.39521
- ],
- [
- 7.58704,
- 51.38995
- ],
- [
- 7.59,
- 51.38313
- ],
- [
- 7.58465,
- 51.37878
- ],
- [
- 7.58644,
- 51.36509
- ],
- [
- 7.59234,
- 51.35144
- ],
- [
- 7.59934,
- 51.34638
- ],
- [
- 7.59257,
- 51.34373
- ],
- [
- 7.59407,
- 51.33946
- ],
- [
- 7.58186,
- 51.33588
- ],
- [
- 7.58334,
- 51.33247
- ],
- [
- 7.57655,
- 51.33067
- ],
- [
- 7.57816,
- 51.32298
- ],
- [
- 7.58373,
- 51.31962
- ],
- [
- 7.57837,
- 51.31612
- ],
- [
- 7.58134,
- 51.30844
- ],
- [
- 7.58547,
- 51.30763
- ],
- [
- 7.58305,
- 51.29732
- ],
- [
- 7.56826,
- 51.28942
- ],
- [
- 7.56582,
- 51.27996
- ],
- [
- 7.55089,
- 51.27635
- ],
- [
- 7.54977,
- 51.26862
- ],
- [
- 7.52923,
- 51.27008
- ],
- [
- 7.52797,
- 51.26663
- ],
- [
- 7.51302,
- 51.26387
- ],
- [
- 7.51049,
- 51.25784
- ],
- [
- 7.50371,
- 51.25604
- ],
- [
- 7.50385,
- 51.25175
- ],
- [
- 7.49563,
- 51.2525
- ],
- [
- 7.49438,
- 51.24906
- ],
- [
- 7.49708,
- 51.24995
- ],
- [
- 7.50271,
- 51.24488
- ],
- [
- 7.50143,
- 51.24229
- ],
- [
- 7.48262,
- 51.23262
- ],
- [
- 7.469,
- 51.23158
- ],
- [
- 7.46505,
- 51.22724
- ],
- [
- 7.45129,
- 51.23049
- ],
- [
- 7.44191,
- 51.22522
- ],
- [
- 7.44478,
- 51.22098
- ],
- [
- 7.43534,
- 51.21742
- ],
- [
- 7.43816,
- 51.21489
- ],
- [
- 7.43413,
- 51.21312
- ],
- [
- 7.42995,
- 51.21563
- ],
- [
- 7.42962,
- 51.22506
- ],
- [
- 7.42408,
- 51.22756
- ],
- [
- 7.41182,
- 51.22653
- ],
- [
- 7.41342,
- 51.2197
- ],
- [
- 7.39824,
- 51.22463
- ],
- [
- 7.39521,
- 51.23317
- ],
- [
- 7.40319,
- 51.23928
- ],
- [
- 7.3934,
- 51.246
- ],
- [
- 7.38793,
- 51.24593
- ],
- [
- 7.38672,
- 51.24162
- ],
- [
- 7.37853,
- 51.24151
- ],
- [
- 7.37289,
- 51.24657
- ],
- [
- 7.35526,
- 51.2429
- ],
- [
- 7.35405,
- 51.23859
- ],
- [
- 7.34849,
- 51.24109
- ],
- [
- 7.339,
- 51.23924
- ],
- [
- 7.33872,
- 51.24695
- ],
- [
- 7.32904,
- 51.25024
- ],
- [
- 7.3238,
- 51.24417
- ],
- [
- 7.31284,
- 51.24487
- ],
- [
- 7.31027,
- 51.24054
- ],
- [
- 7.30481,
- 51.24046
- ],
- [
- 7.29643,
- 51.24549
- ],
- [
- 7.29764,
- 51.24979
- ],
- [
- 7.28262,
- 51.24957
- ],
- [
- 7.27541,
- 51.25975
- ],
- [
- 7.2715,
- 51.25455
- ],
- [
- 7.26734,
- 51.25621
- ],
- [
- 7.26578,
- 51.26133
- ],
- [
- 7.27623,
- 51.27434
- ],
- [
- 7.26764,
- 51.2845
- ],
- [
- 7.25531,
- 51.28518
- ],
- [
- 7.26537,
- 51.30847
- ],
- [
- 7.26521,
- 51.31276
- ],
- [
- 7.25974,
- 51.31268
- ],
- [
- 7.26511,
- 51.31533
- ],
- [
- 7.26365,
- 51.31788
- ],
- [
- 7.23393,
- 51.308
- ],
- [
- 7.22973,
- 51.31051
- ],
- [
- 7.2271,
- 51.3079
- ],
- [
- 7.22296,
- 51.3087
- ],
- [
- 7.22309,
- 51.30527
- ],
- [
- 7.20682,
- 51.30159
- ],
- [
- 7.20026,
- 51.29463
- ],
- [
- 7.18792,
- 51.2953
- ],
- [
- 7.18232,
- 51.29864
- ],
- [
- 7.16869,
- 51.29757
- ],
- [
- 7.18065,
- 51.30633
- ],
- [
- 7.16674,
- 51.31211
- ],
- [
- 7.16924,
- 51.31815
- ],
- [
- 7.16503,
- 51.32066
- ],
- [
- 7.1662,
- 51.32582
- ],
- [
- 7.15645,
- 51.32996
- ],
- [
- 7.15351,
- 51.33505
- ],
- [
- 7.14807,
- 51.33411
- ],
- [
- 7.14927,
- 51.33842
- ],
- [
- 7.14513,
- 51.33921
- ],
- [
- 7.15292,
- 51.34962
- ],
- [
- 7.14882,
- 51.34956
- ],
- [
- 7.14731,
- 51.35296
- ],
- [
- 7.15665,
- 51.35911
- ],
- [
- 7.15911,
- 51.36601
- ],
- [
- 7.15189,
- 51.37532
- ],
- [
- 7.14634,
- 51.37695
- ],
- [
- 7.13957,
- 51.37513
- ],
- [
- 7.13802,
- 51.37939
- ],
- [
- 7.13262,
- 51.37759
- ],
- [
- 7.127,
- 51.38093
- ],
- [
- 7.12163,
- 51.37827
- ],
- [
- 7.12153,
- 51.38084
- ],
- [
- 7.11742,
- 51.38078
- ],
- [
- 7.11626,
- 51.37561
- ],
- [
- 7.11215,
- 51.37555
- ],
- [
- 7.11205,
- 51.37812
- ],
- [
- 7.1039,
- 51.37627
- ],
- [
- 7.09853,
- 51.37361
- ],
- [
- 7.10004,
- 51.37021
- ],
- [
- 7.0919,
- 51.36836
- ],
- [
- 7.08765,
- 51.37172
- ],
- [
- 7.08088,
- 51.3699
- ],
- [
- 7.07796,
- 51.37414
- ],
- [
- 7.0552,
- 51.36176
- ],
- [
- 7.04973,
- 51.36167
- ],
- [
- 7.04404,
- 51.36671
- ],
- [
- 7.03604,
- 51.36144
- ],
- [
- 7.01944,
- 51.36544
- ],
- [
- 7.01,
- 51.36185
- ],
- [
- 7.00745,
- 51.35752
- ],
- [
- 6.98689,
- 51.35803
- ],
- [
- 6.98301,
- 51.35282
- ],
- [
- 6.97743,
- 51.35529
- ],
- [
- 6.97621,
- 51.35184
- ],
- [
- 6.96545,
- 51.34737
- ],
- [
- 6.95033,
- 51.34882
- ],
- [
- 6.94748,
- 51.35134
- ],
- [
- 6.9257,
- 51.34839
- ],
- [
- 6.92422,
- 51.35093
- ],
- [
- 6.92825,
- 51.35272
- ],
- [
- 6.92137,
- 51.35346
- ],
- [
- 6.92391,
- 51.35779
- ],
- [
- 6.90565,
- 51.36775
- ],
- [
- 6.90022,
- 51.3668
- ],
- [
- 6.8904,
- 51.37176
- ],
- [
- 6.87848,
- 51.36297
- ],
- [
- 6.86745,
- 51.36449
- ],
- [
- 6.85115,
- 51.36162
- ],
- [
- 6.84552,
- 51.36495
- ],
- [
- 6.84991,
- 51.35903
- ],
- [
- 6.83385,
- 51.35101
- ],
- [
- 6.82295,
- 51.34995
- ],
- [
- 6.81731,
- 51.35328
- ],
- [
- 6.81615,
- 51.34897
- ],
- [
- 6.80939,
- 51.34713
- ],
- [
- 6.80649,
- 51.3505
- ],
- [
- 6.7941,
- 51.35198
- ],
- [
- 6.79314,
- 51.34339
- ],
- [
- 6.77673,
- 51.34308
- ],
- [
- 6.7475,
- 51.35281
- ],
- [
- 6.73831,
- 51.34492
- ],
- [
- 6.72749,
- 51.34214
- ],
- [
- 6.71287,
- 51.33328
- ],
- [
- 6.69193,
- 51.34144
- ],
- [
- 6.66428,
- 51.3469
- ],
- [
- 6.65435,
- 51.35356
- ],
- [
- 6.65789,
- 51.36477
- ],
- [
- 6.67409,
- 51.36938
- ],
- [
- 6.67794,
- 51.3746
- ],
- [
- 6.67511,
- 51.37626
- ],
- [
- 6.6684,
- 51.37356
- ],
- [
- 6.67309,
- 51.38908
- ],
- [
- 6.66081,
- 51.38798
- ],
- [
- 6.65693,
- 51.38362
- ],
- [
- 6.64602,
- 51.38254
- ],
- [
- 6.64443,
- 51.3868
- ],
- [
- 6.63626,
- 51.38577
- ],
- [
- 6.63586,
- 51.39348
- ],
- [
- 6.611,
- 51.39726
- ],
- [
- 6.59479,
- 51.39265
- ],
- [
- 6.57148,
- 51.39302
- ],
- [
- 6.56618,
- 51.38948
- ],
- [
- 6.55797,
- 51.38931
- ],
- [
- 6.55496,
- 51.39439
- ],
- [
- 6.54679,
- 51.39337
- ],
- [
- 6.54505,
- 51.40019
- ],
- [
- 6.53816,
- 51.4009
- ],
- [
- 6.52939,
- 51.41101
- ],
- [
- 6.52596,
- 51.42379
- ],
- [
- 6.5149,
- 51.42527
- ],
- [
- 6.51453,
- 51.43213
- ],
- [
- 6.51987,
- 51.43481
- ],
- [
- 6.52092,
- 51.44084
- ],
- [
- 6.51119,
- 51.4432
- ],
- [
- 6.50821,
- 51.44743
- ],
- [
- 6.50273,
- 51.44731
- ],
- [
- 6.50198,
- 51.46101
- ],
- [
- 6.50709,
- 51.46798
- ],
- [
- 6.49868,
- 51.47123
- ],
- [
- 6.49698,
- 51.4772
- ],
- [
- 6.49012,
- 51.47705
- ],
- [
- 6.48714,
- 51.48127
- ],
- [
- 6.4818,
- 51.47859
- ],
- [
- 6.47608,
- 51.48275
- ],
- [
- 6.47404,
- 51.49471
- ],
- [
- 6.46699,
- 51.49799
- ],
- [
- 6.46245,
- 51.50561
- ],
- [
- 6.45407,
- 51.508
- ],
- [
- 6.45497,
- 51.51659
- ],
- [
- 6.44796,
- 51.51901
- ],
- [
- 6.45326,
- 51.52255
- ],
- [
- 6.44876,
- 51.52931
- ],
- [
- 6.45562,
- 51.52946
- ],
- [
- 6.47816,
- 51.51966
- ],
- [
- 6.47499,
- 51.52731
- ],
- [
- 6.48673,
- 51.53871
- ],
- [
- 6.46262,
- 51.55191
- ],
- [
- 6.49612,
- 51.56806
- ],
- [
- 6.46176,
- 51.56732
- ],
- [
- 6.42276,
- 51.5759
- ],
- [
- 6.41912,
- 51.56725
- ],
- [
- 6.40847,
- 51.56101
- ],
- [
- 6.38918,
- 51.56144
- ],
- [
- 6.37657,
- 51.56545
- ],
- [
- 6.36951,
- 51.56872
- ],
- [
- 6.36916,
- 51.57471
- ],
- [
- 6.37726,
- 51.57747
- ],
- [
- 6.37284,
- 51.58251
- ],
- [
- 6.37372,
- 51.59111
- ],
- [
- 6.35235,
- 51.60349
- ],
- [
- 6.33482,
- 51.59709
- ],
- [
- 6.32362,
- 51.60026
- ],
- [
- 6.32067,
- 51.60363
- ],
- [
- 6.33275,
- 51.60905
- ],
- [
- 6.33392,
- 51.6125
- ],
- [
- 6.30035,
- 51.62117
- ],
- [
- 6.30143,
- 51.62633
- ],
- [
- 6.29113,
- 51.63725
- ],
- [
- 6.29225,
- 51.64156
- ],
- [
- 6.29903,
- 51.64343
- ],
- [
- 6.32563,
- 51.63632
- ],
- [
- 6.32819,
- 51.63981
- ],
- [
- 6.35403,
- 51.64554
- ],
- [
- 6.35313,
- 51.66095
- ],
- [
- 6.36553,
- 51.66123
- ],
- [
- 6.36262,
- 51.66374
- ],
- [
- 6.37069,
- 51.66735
- ],
- [
- 6.38091,
- 51.6813
- ],
- [
- 6.38062,
- 51.68643
- ],
- [
- 6.37195,
- 51.6931
- ],
- [
- 6.35808,
- 51.6945
- ],
- [
- 6.35482,
- 51.703
- ],
- [
- 6.3682,
- 51.71016
- ],
- [
- 6.37642,
- 51.7112
- ],
- [
- 6.38041,
- 51.71387
- ],
- [
- 6.37731,
- 51.7198
- ],
- [
- 6.38829,
- 51.7209
- ],
- [
- 6.38789,
- 51.72775
- ],
- [
- 6.40932,
- 51.73937
- ],
- [
- 6.41055,
- 51.74197
- ],
- [
- 6.40346,
- 51.74524
- ],
- [
- 6.40597,
- 51.74959
- ],
- [
- 6.40178,
- 51.75035
- ],
- [
- 6.40287,
- 51.75552
- ],
- [
- 6.41405,
- 51.75319
- ],
- [
- 6.42134,
- 51.7465
- ],
- [
- 6.42188,
- 51.73708
- ],
- [
- 6.40877,
- 51.72478
- ],
- [
- 6.40921,
- 51.71708
- ],
- [
- 6.4164,
- 51.71209
- ],
- [
- 6.44839,
- 51.70765
- ],
- [
- 6.46246,
- 51.70281
- ],
- [
- 6.47677,
- 51.71855
- ],
- [
- 6.48908,
- 51.72053
- ],
- [
- 6.48418,
- 51.73414
- ],
- [
- 6.48942,
- 51.7394
- ],
- [
- 6.48908,
- 51.74539
- ],
- [
- 6.48171,
- 51.75381
- ],
- [
- 6.53363,
- 51.76434
- ],
- [
- 6.52478,
- 51.77444
- ],
- [
- 6.50784,
- 51.78094
- ],
- [
- 6.4898,
- 51.80714
- ],
- [
- 6.48961,
- 51.81056
- ],
- [
- 6.51162,
- 51.81274
- ],
- [
- 6.51691,
- 51.81714
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Datengrundlage: Regionalverband Ruhr",
- "url": "https://www.metropoleruhr.de/regionalverband-ruhr.html"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:31466",
- "EPSG:31467",
- "EPSG:31468",
- "EPSG:31469"
- ],
- "category": "photo",
- "country_code": "DE",
- "id": "Metropole_Ruhr_RVR-DOP10",
- "name": "Metropole Ruhr: Luftbilder (10 cm)",
- "type": "wms",
- "url": "https://geodaten.metropoleruhr.de/dop/dop?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DOP&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.48878,
- 48.053
- ],
- [
- 11.55589,
- 48.05323
- ],
- [
- 11.55583,
- 48.06224
- ],
- [
- 11.56915,
- 48.06229
- ],
- [
- 11.56908,
- 48.07128
- ],
- [
- 11.64986,
- 48.07155
- ],
- [
- 11.64993,
- 48.06256
- ],
- [
- 11.70326,
- 48.06274
- ],
- [
- 11.70313,
- 48.08074
- ],
- [
- 11.71673,
- 48.08079
- ],
- [
- 11.71667,
- 48.08968
- ],
- [
- 11.7299,
- 48.08972
- ],
- [
- 11.72963,
- 48.12566
- ],
- [
- 11.74313,
- 48.1257
- ],
- [
- 11.74292,
- 48.15276
- ],
- [
- 11.72943,
- 48.15271
- ],
- [
- 11.72936,
- 48.16152
- ],
- [
- 11.71612,
- 48.16147
- ],
- [
- 11.71592,
- 48.18859
- ],
- [
- 11.7027,
- 48.18855
- ],
- [
- 11.70263,
- 48.19752
- ],
- [
- 11.67558,
- 48.19743
- ],
- [
- 11.67537,
- 48.22446
- ],
- [
- 11.66176,
- 48.22441
- ],
- [
- 11.66169,
- 48.23355
- ],
- [
- 11.64863,
- 48.2335
- ],
- [
- 11.64857,
- 48.24246
- ],
- [
- 11.54064,
- 48.2421
- ],
- [
- 11.54058,
- 48.25093
- ],
- [
- 11.52735,
- 48.25088
- ],
- [
- 11.52728,
- 48.26001
- ],
- [
- 11.47335,
- 48.25983
- ],
- [
- 11.47356,
- 48.23291
- ],
- [
- 11.46014,
- 48.23287
- ],
- [
- 11.46021,
- 48.22373
- ],
- [
- 11.43336,
- 48.22364
- ],
- [
- 11.43343,
- 48.21439
- ],
- [
- 11.3798,
- 48.21421
- ],
- [
- 11.37987,
- 48.20518
- ],
- [
- 11.36607,
- 48.20514
- ],
- [
- 11.36621,
- 48.18741
- ],
- [
- 11.35259,
- 48.18737
- ],
- [
- 11.35266,
- 48.17817
- ],
- [
- 11.33946,
- 48.17813
- ],
- [
- 11.33973,
- 48.14216
- ],
- [
- 11.36684,
- 48.14225
- ],
- [
- 11.36697,
- 48.12443
- ],
- [
- 11.38083,
- 48.12448
- ],
- [
- 11.3809,
- 48.11558
- ],
- [
- 11.44769,
- 48.1158
- ],
- [
- 11.44804,
- 48.07087
- ],
- [
- 11.46186,
- 48.07091
- ],
- [
- 11.46193,
- 48.06193
- ],
- [
- 11.48872,
- 48.06202
- ],
- [
- 11.48878,
- 48.053
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Datenquelle: dl-de/by-2-0: Landeshauptstadt München – Kommunalreferat – GeodatenService – www.geodatenservice-muenchen.de",
- "url": "https://www.muenchen.de/rathaus/Stadtverwaltung/Kommunalreferat/geodatenservice.html"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:31468"
- ],
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2015",
- "icon": "https://www.muenchen.de/media/css/images/favicon_114x114.png",
- "id": "MunichLatestAerialImagery",
- "license_url": "https://lists.openstreetmap.de/pipermail/bayern/2017-March/001345.html",
- "min_zoom": 11,
- "name": "Munich latest aerial imagery 60cm",
- "start_date": "2015",
- "type": "wms",
- "url": "https://ogc.muenchen.de/wms/opendata_luftbild?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=bgl0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.54901,
- 50.69792
- ],
- [
- 13.84251,
- 50.71126
- ],
- [
- 13.93239,
- 50.74504
- ],
- [
- 14.04614,
- 50.79389
- ],
- [
- 14.25257,
- 50.85953
- ],
- [
- 14.40002,
- 50.88966
- ],
- [
- 14.42671,
- 50.9357
- ],
- [
- 14.35649,
- 50.97197
- ],
- [
- 14.32559,
- 50.99319
- ],
- [
- 14.27504,
- 50.99054
- ],
- [
- 14.31577,
- 51.04266
- ],
- [
- 14.41547,
- 51.01263
- ],
- [
- 14.51939,
- 51.0038
- ],
- [
- 14.5882,
- 50.9817
- ],
- [
- 14.54467,
- 50.91977
- ],
- [
- 14.57977,
- 50.90649
- ],
- [
- 14.64718,
- 50.92243
- ],
- [
- 14.64437,
- 50.90915
- ],
- [
- 14.60505,
- 50.85687
- ],
- [
- 14.7202,
- 50.81785
- ],
- [
- 14.81008,
- 50.81341
- ],
- [
- 14.85642,
- 50.89055
- ],
- [
- 14.91259,
- 50.94721
- ],
- [
- 14.99685,
- 51.08679
- ],
- [
- 15.05303,
- 51.24793
- ],
- [
- 15.05583,
- 51.29274
- ],
- [
- 14.99264,
- 51.34452
- ],
- [
- 14.98843,
- 51.398
- ],
- [
- 14.97719,
- 51.45754
- ],
- [
- 14.90979,
- 51.49603
- ],
- [
- 14.73986,
- 51.5371
- ],
- [
- 14.73986,
- 51.59122
- ],
- [
- 14.70054,
- 51.60605
- ],
- [
- 14.67948,
- 51.5982
- ],
- [
- 14.68369,
- 51.57813
- ],
- [
- 14.67386,
- 51.55806
- ],
- [
- 14.61769,
- 51.55718
- ],
- [
- 14.58399,
- 51.59035
- ],
- [
- 14.51939,
- 51.56941
- ],
- [
- 14.43513,
- 51.5598
- ],
- [
- 14.327,
- 51.52574
- ],
- [
- 14.13461,
- 51.55544
- ],
- [
- 14.0672,
- 51.49952
- ],
- [
- 14.02788,
- 51.47854
- ],
- [
- 14.04333,
- 51.45229
- ],
- [
- 13.99558,
- 51.39274
- ],
- [
- 13.95767,
- 51.40588
- ],
- [
- 13.88886,
- 51.38836
- ],
- [
- 13.72455,
- 51.37434
- ],
- [
- 13.55463,
- 51.39274
- ],
- [
- 13.40437,
- 51.45929
- ],
- [
- 13.35241,
- 51.43916
- ],
- [
- 13.3159,
- 51.44354
- ],
- [
- 13.28641,
- 51.41815
- ],
- [
- 13.22602,
- 51.40063
- ],
- [
- 13.21339,
- 51.46104
- ],
- [
- 13.219,
- 51.52661
- ],
- [
- 13.17406,
- 51.5982
- ],
- [
- 13.00274,
- 51.67751
- ],
- [
- 12.90584,
- 51.65312
- ],
- [
- 12.90303,
- 51.66619
- ],
- [
- 12.85388,
- 51.69318
- ],
- [
- 12.76401,
- 51.65922
- ],
- [
- 12.68817,
- 51.67054
- ],
- [
- 12.64324,
- 51.62959
- ],
- [
- 12.57723,
- 51.63046
- ],
- [
- 12.42557,
- 51.61041
- ],
- [
- 12.23037,
- 51.57028
- ],
- [
- 12.17701,
- 51.53011
- ],
- [
- 12.13909,
- 51.46017
- ],
- [
- 12.16718,
- 51.41727
- ],
- [
- 12.1742,
- 51.33487
- ],
- [
- 12.13207,
- 51.3182
- ],
- [
- 12.18684,
- 51.21364
- ],
- [
- 12.15875,
- 51.18812
- ],
- [
- 12.22054,
- 51.09296
- ],
- [
- 12.49017,
- 51.05414
- ],
- [
- 12.52106,
- 50.99319
- ],
- [
- 12.60532,
- 50.97286
- ],
- [
- 12.62639,
- 50.91889
- ],
- [
- 12.50281,
- 50.91092
- ],
- [
- 12.23739,
- 50.81874
- ],
- [
- 12.21352,
- 50.72993
- ],
- [
- 12.28654,
- 50.665
- ],
- [
- 12.21773,
- 50.6463
- ],
- [
- 12.13347,
- 50.6276
- ],
- [
- 12.05343,
- 50.56342
- ],
- [
- 12.01972,
- 50.64719
- ],
- [
- 11.85963,
- 50.54825
- ],
- [
- 11.87649,
- 50.50808
- ],
- [
- 11.92704,
- 50.5054
- ],
- [
- 11.93687,
- 50.48664
- ],
- [
- 11.87087,
- 50.44194
- ],
- [
- 11.93406,
- 50.39989
- ],
- [
- 11.96917,
- 50.33987
- ],
- [
- 12.12083,
- 50.29773
- ],
- [
- 12.17279,
- 50.3067
- ],
- [
- 12.18543,
- 50.26094
- ],
- [
- 12.21212,
- 50.25375
- ],
- [
- 12.25705,
- 50.21603
- ],
- [
- 12.28233,
- 50.15668
- ],
- [
- 12.35535,
- 50.15848
- ],
- [
- 12.35535,
- 50.22142
- ],
- [
- 12.41433,
- 50.28158
- ],
- [
- 12.51123,
- 50.34705
- ],
- [
- 12.53791,
- 50.38735
- ],
- [
- 12.67835,
- 50.40257
- ],
- [
- 12.71205,
- 50.38646
- ],
- [
- 12.7289,
- 50.39631
- ],
- [
- 12.75699,
- 50.42584
- ],
- [
- 12.78648,
- 50.43389
- ],
- [
- 12.81737,
- 50.41779
- ],
- [
- 12.84686,
- 50.43657
- ],
- [
- 12.94797,
- 50.38735
- ],
- [
- 13.00976,
- 50.41421
- ],
- [
- 13.04627,
- 50.44999
- ],
- [
- 13.0561,
- 50.48753
- ],
- [
- 13.21479,
- 50.49289
- ],
- [
- 13.27517,
- 50.56609
- ],
- [
- 13.34118,
- 50.56877
- ],
- [
- 13.39173,
- 50.61334
- ],
- [
- 13.47739,
- 50.58571
- ],
- [
- 13.54761,
- 50.63473
- ],
- [
- 13.56867,
- 50.67212
- ],
- [
- 13.54901,
- 50.69792
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
- "url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=cd01c334-7e32-482f-bd43-af286707178a"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25833",
- "EPSG:3857",
- "EPSG:31468"
- ],
- "best": true,
- "category": "photo",
- "country_code": "DE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png",
- "id": "GEOSN-DOP-RGB",
- "license_url": "https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data",
- "name": "Saxony latest aerial imagery",
- "type": "wms",
- "url": "https://geodienste.sachsen.de/wms_geosn_dop-rgb/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dop_020&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.54901,
- 50.69792
- ],
- [
- 13.84251,
- 50.71126
- ],
- [
- 13.93239,
- 50.74504
- ],
- [
- 14.04614,
- 50.79389
- ],
- [
- 14.25257,
- 50.85953
- ],
- [
- 14.40002,
- 50.88966
- ],
- [
- 14.42671,
- 50.9357
- ],
- [
- 14.35649,
- 50.97197
- ],
- [
- 14.32559,
- 50.99319
- ],
- [
- 14.27504,
- 50.99054
- ],
- [
- 14.31577,
- 51.04266
- ],
- [
- 14.41547,
- 51.01263
- ],
- [
- 14.51939,
- 51.0038
- ],
- [
- 14.5882,
- 50.9817
- ],
- [
- 14.54467,
- 50.91977
- ],
- [
- 14.57977,
- 50.90649
- ],
- [
- 14.64718,
- 50.92243
- ],
- [
- 14.64437,
- 50.90915
- ],
- [
- 14.60505,
- 50.85687
- ],
- [
- 14.7202,
- 50.81785
- ],
- [
- 14.81008,
- 50.81341
- ],
- [
- 14.85642,
- 50.89055
- ],
- [
- 14.91259,
- 50.94721
- ],
- [
- 14.99685,
- 51.08679
- ],
- [
- 15.05303,
- 51.24793
- ],
- [
- 15.05583,
- 51.29274
- ],
- [
- 14.99264,
- 51.34452
- ],
- [
- 14.98843,
- 51.398
- ],
- [
- 14.97719,
- 51.45754
- ],
- [
- 14.90979,
- 51.49603
- ],
- [
- 14.73986,
- 51.5371
- ],
- [
- 14.73986,
- 51.59122
- ],
- [
- 14.70054,
- 51.60605
- ],
- [
- 14.67948,
- 51.5982
- ],
- [
- 14.68369,
- 51.57813
- ],
- [
- 14.67386,
- 51.55806
- ],
- [
- 14.61769,
- 51.55718
- ],
- [
- 14.58399,
- 51.59035
- ],
- [
- 14.51939,
- 51.56941
- ],
- [
- 14.43513,
- 51.5598
- ],
- [
- 14.327,
- 51.52574
- ],
- [
- 14.13461,
- 51.55544
- ],
- [
- 14.0672,
- 51.49952
- ],
- [
- 14.02788,
- 51.47854
- ],
- [
- 14.04333,
- 51.45229
- ],
- [
- 13.99558,
- 51.39274
- ],
- [
- 13.95767,
- 51.40588
- ],
- [
- 13.88886,
- 51.38836
- ],
- [
- 13.72455,
- 51.37434
- ],
- [
- 13.55463,
- 51.39274
- ],
- [
- 13.40437,
- 51.45929
- ],
- [
- 13.35241,
- 51.43916
- ],
- [
- 13.3159,
- 51.44354
- ],
- [
- 13.28641,
- 51.41815
- ],
- [
- 13.22602,
- 51.40063
- ],
- [
- 13.21339,
- 51.46104
- ],
- [
- 13.219,
- 51.52661
- ],
- [
- 13.17406,
- 51.5982
- ],
- [
- 13.00274,
- 51.67751
- ],
- [
- 12.90584,
- 51.65312
- ],
- [
- 12.90303,
- 51.66619
- ],
- [
- 12.85388,
- 51.69318
- ],
- [
- 12.76401,
- 51.65922
- ],
- [
- 12.68817,
- 51.67054
- ],
- [
- 12.64324,
- 51.62959
- ],
- [
- 12.57723,
- 51.63046
- ],
- [
- 12.42557,
- 51.61041
- ],
- [
- 12.23037,
- 51.57028
- ],
- [
- 12.17701,
- 51.53011
- ],
- [
- 12.13909,
- 51.46017
- ],
- [
- 12.16718,
- 51.41727
- ],
- [
- 12.1742,
- 51.33487
- ],
- [
- 12.13207,
- 51.3182
- ],
- [
- 12.18684,
- 51.21364
- ],
- [
- 12.15875,
- 51.18812
- ],
- [
- 12.22054,
- 51.09296
- ],
- [
- 12.49017,
- 51.05414
- ],
- [
- 12.52106,
- 50.99319
- ],
- [
- 12.60532,
- 50.97286
- ],
- [
- 12.62639,
- 50.91889
- ],
- [
- 12.50281,
- 50.91092
- ],
- [
- 12.23739,
- 50.81874
- ],
- [
- 12.21352,
- 50.72993
- ],
- [
- 12.28654,
- 50.665
- ],
- [
- 12.21773,
- 50.6463
- ],
- [
- 12.13347,
- 50.6276
- ],
- [
- 12.05343,
- 50.56342
- ],
- [
- 12.01972,
- 50.64719
- ],
- [
- 11.85963,
- 50.54825
- ],
- [
- 11.87649,
- 50.50808
- ],
- [
- 11.92704,
- 50.5054
- ],
- [
- 11.93687,
- 50.48664
- ],
- [
- 11.87087,
- 50.44194
- ],
- [
- 11.93406,
- 50.39989
- ],
- [
- 11.96917,
- 50.33987
- ],
- [
- 12.12083,
- 50.29773
- ],
- [
- 12.17279,
- 50.3067
- ],
- [
- 12.18543,
- 50.26094
- ],
- [
- 12.21212,
- 50.25375
- ],
- [
- 12.25705,
- 50.21603
- ],
- [
- 12.28233,
- 50.15668
- ],
- [
- 12.35535,
- 50.15848
- ],
- [
- 12.35535,
- 50.22142
- ],
- [
- 12.41433,
- 50.28158
- ],
- [
- 12.51123,
- 50.34705
- ],
- [
- 12.53791,
- 50.38735
- ],
- [
- 12.67835,
- 50.40257
- ],
- [
- 12.71205,
- 50.38646
- ],
- [
- 12.7289,
- 50.39631
- ],
- [
- 12.75699,
- 50.42584
- ],
- [
- 12.78648,
- 50.43389
- ],
- [
- 12.81737,
- 50.41779
- ],
- [
- 12.84686,
- 50.43657
- ],
- [
- 12.94797,
- 50.38735
- ],
- [
- 13.00976,
- 50.41421
- ],
- [
- 13.04627,
- 50.44999
- ],
- [
- 13.0561,
- 50.48753
- ],
- [
- 13.21479,
- 50.49289
- ],
- [
- 13.27517,
- 50.56609
- ],
- [
- 13.34118,
- 50.56877
- ],
- [
- 13.39173,
- 50.61334
- ],
- [
- 13.47739,
- 50.58571
- ],
- [
- 13.54761,
- 50.63473
- ],
- [
- 13.56867,
- 50.67212
- ],
- [
- 13.54901,
- 50.69792
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
- "url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=475a9197-620f-4dcb-b8aa-7f71b626443f"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25833",
- "EPSG:3857",
- "EPSG:31468"
- ],
- "country_code": "DE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png",
- "id": "GEOSN-WebAtlas",
- "license_url": "https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data",
- "name": "Saxony WebAtlasSN",
- "type": "wms",
- "url": "https://geodienste.sachsen.de/wms_geosn_webatlas-sn/guest?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vegetation,Siedlung,Gewaesser,Verkehr,Administrative_Einheiten,Beschriftung&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 14.74579,
- 51.58172
- ],
- [
- 14.7431,
- 51.57898
- ],
- [
- 14.72602,
- 51.56452
- ],
- [
- 14.74243,
- 51.5407
- ],
- [
- 14.74795,
- 51.53143
- ],
- [
- 14.74915,
- 51.5313
- ],
- [
- 14.85274,
- 51.50766
- ],
- [
- 14.91869,
- 51.49319
- ],
- [
- 14.95094,
- 51.48427
- ],
- [
- 14.96053,
- 51.47519
- ],
- [
- 14.98033,
- 51.43681
- ],
- [
- 14.98885,
- 51.39591
- ],
- [
- 14.98939,
- 51.37327
- ],
- [
- 14.9925,
- 51.34461
- ],
- [
- 15.00064,
- 51.33931
- ],
- [
- 15.00214,
- 51.33212
- ],
- [
- 15.04596,
- 51.29975
- ],
- [
- 15.05078,
- 51.23583
- ],
- [
- 15.02117,
- 51.20425
- ],
- [
- 15.01598,
- 51.17244
- ],
- [
- 14.99701,
- 51.10608
- ],
- [
- 14.97836,
- 51.06176
- ],
- [
- 14.90178,
- 50.93087
- ],
- [
- 14.84115,
- 50.88907
- ],
- [
- 14.8356,
- 50.88562
- ],
- [
- 14.83398,
- 50.87891
- ],
- [
- 14.8137,
- 50.82151
- ],
- [
- 14.78332,
- 50.81622
- ],
- [
- 14.71107,
- 50.81844
- ],
- [
- 14.7076,
- 50.83119
- ],
- [
- 14.68303,
- 50.83499
- ],
- [
- 14.60047,
- 50.85431
- ],
- [
- 14.59936,
- 50.85471
- ],
- [
- 14.63789,
- 50.91833
- ],
- [
- 14.6421,
- 50.92208
- ],
- [
- 14.57823,
- 50.90779
- ],
- [
- 14.55977,
- 50.90399
- ],
- [
- 14.5521,
- 50.93715
- ],
- [
- 14.57589,
- 50.95659
- ],
- [
- 14.58175,
- 50.97275
- ],
- [
- 14.58596,
- 50.97749
- ],
- [
- 14.58393,
- 50.97879
- ],
- [
- 14.58498,
- 50.98168
- ],
- [
- 14.55514,
- 51.00025
- ],
- [
- 14.54361,
- 50.99937
- ],
- [
- 14.52797,
- 51.00026
- ],
- [
- 14.52345,
- 51.00191
- ],
- [
- 14.5254,
- 51.0121
- ],
- [
- 14.49272,
- 51.0131
- ],
- [
- 14.46218,
- 51.02423
- ],
- [
- 14.45095,
- 51.0208
- ],
- [
- 14.41029,
- 51.01006
- ],
- [
- 14.34728,
- 51.02991
- ],
- [
- 14.31407,
- 51.04243
- ],
- [
- 14.27493,
- 50.99271
- ],
- [
- 14.29657,
- 50.99276
- ],
- [
- 14.32594,
- 50.98959
- ],
- [
- 14.32994,
- 50.98415
- ],
- [
- 14.33452,
- 50.97208
- ],
- [
- 14.32227,
- 50.96816
- ],
- [
- 14.3314,
- 50.95376
- ],
- [
- 14.40874,
- 50.93953
- ],
- [
- 14.41492,
- 50.93769
- ],
- [
- 14.39726,
- 50.88617
- ],
- [
- 14.24942,
- 50.87153
- ],
- [
- 14.23982,
- 50.85493
- ],
- [
- 14.18893,
- 50.83773
- ],
- [
- 14.08357,
- 50.8055
- ],
- [
- 14.05581,
- 50.79981
- ],
- [
- 13.97948,
- 50.79781
- ],
- [
- 13.95918,
- 50.77999
- ],
- [
- 13.95684,
- 50.77951
- ],
- [
- 13.90768,
- 50.77487
- ],
- [
- 13.91193,
- 50.74351
- ],
- [
- 13.84519,
- 50.71483
- ],
- [
- 13.82394,
- 50.71432
- ],
- [
- 13.75672,
- 50.72195
- ],
- [
- 13.68628,
- 50.71126
- ],
- [
- 13.66279,
- 50.72012
- ],
- [
- 13.62166,
- 50.70791
- ],
- [
- 13.56285,
- 50.70578
- ],
- [
- 13.55523,
- 50.70187
- ],
- [
- 13.55071,
- 50.70156
- ],
- [
- 13.55089,
- 50.69964
- ],
- [
- 13.5466,
- 50.69744
- ],
- [
- 13.55152,
- 50.69289
- ],
- [
- 13.55403,
- 50.66593
- ],
- [
- 13.55387,
- 50.66474
- ],
- [
- 13.53104,
- 50.65342
- ],
- [
- 13.5337,
- 50.63757
- ],
- [
- 13.53063,
- 50.63353
- ],
- [
- 13.51868,
- 50.62639
- ],
- [
- 13.50249,
- 50.62322
- ],
- [
- 13.48289,
- 50.60501
- ],
- [
- 13.46554,
- 50.59464
- ],
- [
- 13.40331,
- 50.61242
- ],
- [
- 13.39414,
- 50.63167
- ],
- [
- 13.37352,
- 50.61695
- ],
- [
- 13.35195,
- 50.60633
- ],
- [
- 13.33414,
- 50.5985
- ],
- [
- 13.336,
- 50.57887
- ],
- [
- 13.29556,
- 50.57054
- ],
- [
- 13.28221,
- 50.56818
- ],
- [
- 13.28128,
- 50.56973
- ],
- [
- 13.2758,
- 50.58134
- ],
- [
- 13.27446,
- 50.58109
- ],
- [
- 13.27341,
- 50.58283
- ],
- [
- 13.25251,
- 50.58203
- ],
- [
- 13.25027,
- 50.57659
- ],
- [
- 13.2474,
- 50.57606
- ],
- [
- 13.23286,
- 50.53889
- ],
- [
- 13.19893,
- 50.49486
- ],
- [
- 13.18832,
- 50.49478
- ],
- [
- 13.11708,
- 50.49812
- ],
- [
- 13.08787,
- 50.49407
- ],
- [
- 13.04347,
- 50.49376
- ],
- [
- 13.04247,
- 50.48779
- ],
- [
- 13.04098,
- 50.48758
- ],
- [
- 13.03075,
- 50.44381
- ],
- [
- 12.98826,
- 50.41597
- ],
- [
- 12.96878,
- 50.40711
- ],
- [
- 12.94442,
- 50.39928
- ],
- [
- 12.87835,
- 50.42749
- ],
- [
- 12.83353,
- 50.44527
- ],
- [
- 12.82147,
- 50.43339
- ],
- [
- 12.81163,
- 50.42646
- ],
- [
- 12.80311,
- 50.42681
- ],
- [
- 12.78987,
- 50.43735
- ],
- [
- 12.7881,
- 50.43899
- ],
- [
- 12.78788,
- 50.43893
- ],
- [
- 12.78656,
- 50.43998
- ],
- [
- 12.78081,
- 50.43705
- ],
- [
- 12.74678,
- 50.42799
- ],
- [
- 12.7177,
- 50.40624
- ],
- [
- 12.71242,
- 50.39525
- ],
- [
- 12.69854,
- 50.39409
- ],
- [
- 12.67133,
- 50.40722
- ],
- [
- 12.5587,
- 50.39114
- ],
- [
- 12.51684,
- 50.38957
- ],
- [
- 12.51439,
- 50.38383
- ],
- [
- 12.4994,
- 50.37166
- ],
- [
- 12.49848,
- 50.34654
- ],
- [
- 12.49806,
- 50.34556
- ],
- [
- 12.46687,
- 50.34338
- ],
- [
- 12.45052,
- 50.33642
- ],
- [
- 12.44639,
- 50.3222
- ],
- [
- 12.40879,
- 50.31439
- ],
- [
- 12.41315,
- 50.29536
- ],
- [
- 12.40428,
- 50.28818
- ],
- [
- 12.39947,
- 50.28526
- ],
- [
- 12.3988,
- 50.28437
- ],
- [
- 12.38392,
- 50.28256
- ],
- [
- 12.36268,
- 50.25619
- ],
- [
- 12.36448,
- 50.23848
- ],
- [
- 12.34218,
- 50.23388
- ],
- [
- 12.34339,
- 50.21733
- ],
- [
- 12.3432,
- 50.18955
- ],
- [
- 12.33281,
- 50.1675
- ],
- [
- 12.28694,
- 50.17165
- ],
- [
- 12.26865,
- 50.19606
- ],
- [
- 12.27119,
- 50.22284
- ],
- [
- 12.23236,
- 50.24537
- ],
- [
- 12.23705,
- 50.26372
- ],
- [
- 12.19353,
- 50.27036
- ],
- [
- 12.17399,
- 50.31796
- ],
- [
- 12.15266,
- 50.31426
- ],
- [
- 12.10021,
- 50.31351
- ],
- [
- 12.07804,
- 50.32785
- ],
- [
- 12.04409,
- 50.32051
- ],
- [
- 11.99071,
- 50.34409
- ],
- [
- 11.97265,
- 50.34479
- ],
- [
- 11.96362,
- 50.35492
- ],
- [
- 11.97374,
- 50.38478
- ],
- [
- 11.94829,
- 50.39054
- ],
- [
- 11.91599,
- 50.42107
- ],
- [
- 11.92091,
- 50.43275
- ],
- [
- 11.89518,
- 50.43467
- ],
- [
- 11.88026,
- 50.44627
- ],
- [
- 11.90107,
- 50.45969
- ],
- [
- 11.93966,
- 50.4738
- ],
- [
- 11.92625,
- 50.51542
- ],
- [
- 11.883,
- 50.51559
- ],
- [
- 11.86685,
- 50.54517
- ],
- [
- 11.88848,
- 50.56187
- ],
- [
- 11.92297,
- 50.56387
- ],
- [
- 11.92707,
- 50.59411
- ],
- [
- 11.95663,
- 50.6134
- ],
- [
- 11.97935,
- 50.63181
- ],
- [
- 12.01959,
- 50.64526
- ],
- [
- 12.04094,
- 50.62998
- ],
- [
- 12.02671,
- 50.61783
- ],
- [
- 12.05354,
- 50.60341
- ],
- [
- 12.04669,
- 50.58238
- ],
- [
- 12.03547,
- 50.57421
- ],
- [
- 12.04368,
- 50.56309
- ],
- [
- 12.0794,
- 50.56961
- ],
- [
- 12.07968,
- 50.58595
- ],
- [
- 12.11362,
- 50.59133
- ],
- [
- 12.12402,
- 50.58021
- ],
- [
- 12.14674,
- 50.59411
- ],
- [
- 12.15222,
- 50.61774
- ],
- [
- 12.14346,
- 50.63267
- ],
- [
- 12.15961,
- 50.64031
- ],
- [
- 12.1993,
- 50.64031
- ],
- [
- 12.2045,
- 50.6509
- ],
- [
- 12.22859,
- 50.65142
- ],
- [
- 12.23625,
- 50.645
- ],
- [
- 12.26527,
- 50.64795
- ],
- [
- 12.28744,
- 50.66149
- ],
- [
- 12.31783,
- 50.67658
- ],
- [
- 12.31591,
- 50.68647
- ],
- [
- 12.27239,
- 50.69271
- ],
- [
- 12.23105,
- 50.74912
- ],
- [
- 12.23489,
- 50.77509
- ],
- [
- 12.25733,
- 50.79949
- ],
- [
- 12.24666,
- 50.81575
- ],
- [
- 12.25186,
- 50.8282
- ],
- [
- 12.31646,
- 50.84376
- ],
- [
- 12.38339,
- 50.86536
- ],
- [
- 12.44525,
- 50.86882
- ],
- [
- 12.48768,
- 50.90301
- ],
- [
- 12.54037,
- 50.91734
- ],
- [
- 12.63262,
- 50.91906
- ],
- [
- 12.6307,
- 50.95236
- ],
- [
- 12.61893,
- 50.98623
- ],
- [
- 12.588,
- 50.98347
- ],
- [
- 12.52258,
- 51.00208
- ],
- [
- 12.50273,
- 51.0607
- ],
- [
- 12.36053,
- 51.07308
- ],
- [
- 12.35683,
- 51.09363
- ],
- [
- 12.287,
- 51.08745
- ],
- [
- 12.22345,
- 51.10402
- ],
- [
- 12.19814,
- 51.14369
- ],
- [
- 12.20054,
- 51.17775
- ],
- [
- 12.1768,
- 51.17941
- ],
- [
- 12.17704,
- 51.20015
- ],
- [
- 12.19481,
- 51.21526
- ],
- [
- 12.19149,
- 51.25154
- ],
- [
- 12.16717,
- 51.26081
- ],
- [
- 12.16562,
- 51.28516
- ],
- [
- 12.13566,
- 51.31993
- ],
- [
- 12.18231,
- 51.33899
- ],
- [
- 12.17347,
- 51.41243
- ],
- [
- 12.18165,
- 51.42524
- ],
- [
- 12.1582,
- 51.43388
- ],
- [
- 12.15169,
- 51.46561
- ],
- [
- 12.17732,
- 51.47514
- ],
- [
- 12.17861,
- 51.48577
- ],
- [
- 12.2066,
- 51.49042
- ],
- [
- 12.21007,
- 51.49656
- ],
- [
- 12.19024,
- 51.50243
- ],
- [
- 12.19397,
- 51.52778
- ],
- [
- 12.21358,
- 51.54336
- ],
- [
- 12.23773,
- 51.55343
- ],
- [
- 12.23439,
- 51.5607
- ],
- [
- 12.24787,
- 51.57147
- ],
- [
- 12.30704,
- 51.56962
- ],
- [
- 12.35352,
- 51.59285
- ],
- [
- 12.42657,
- 51.58896
- ],
- [
- 12.42722,
- 51.60568
- ],
- [
- 12.45182,
- 51.61287
- ],
- [
- 12.56073,
- 51.61412
- ],
- [
- 12.59047,
- 51.62977
- ],
- [
- 12.63535,
- 51.63243
- ],
- [
- 12.64997,
- 51.62523
- ],
- [
- 12.67039,
- 51.63571
- ],
- [
- 12.69232,
- 51.66379
- ],
- [
- 12.75282,
- 51.66238
- ],
- [
- 12.78131,
- 51.65019
- ],
- [
- 12.79366,
- 51.66582
- ],
- [
- 12.8403,
- 51.6838
- ],
- [
- 12.86702,
- 51.6838
- ],
- [
- 12.91113,
- 51.66707
- ],
- [
- 12.9134,
- 51.65269
- ],
- [
- 12.97743,
- 51.65566
- ],
- [
- 12.97315,
- 51.66958
- ],
- [
- 13.03567,
- 51.66879
- ],
- [
- 13.03995,
- 51.64315
- ],
- [
- 13.06428,
- 51.65378
- ],
- [
- 13.1094,
- 51.61576
- ],
- [
- 13.13663,
- 51.62327
- ],
- [
- 13.17784,
- 51.60292
- ],
- [
- 13.21112,
- 51.55906
- ],
- [
- 13.23646,
- 51.52292
- ],
- [
- 13.22889,
- 51.44616
- ],
- [
- 13.23759,
- 51.40497
- ],
- [
- 13.28876,
- 51.40529
- ],
- [
- 13.28675,
- 51.41551
- ],
- [
- 13.33313,
- 51.44569
- ],
- [
- 13.37952,
- 51.44333
- ],
- [
- 13.41809,
- 51.46077
- ],
- [
- 13.43611,
- 51.45409
- ],
- [
- 13.49334,
- 51.42706
- ],
- [
- 13.54375,
- 51.40883
- ],
- [
- 13.55409,
- 51.39058
- ],
- [
- 13.61182,
- 51.39373
- ],
- [
- 13.62201,
- 51.37784
- ],
- [
- 13.67102,
- 51.37784
- ],
- [
- 13.68681,
- 51.3834
- ],
- [
- 13.74675,
- 51.37202
- ],
- [
- 13.75445,
- 51.36773
- ],
- [
- 13.76336,
- 51.37733
- ],
- [
- 13.81155,
- 51.37683
- ],
- [
- 13.848,
- 51.38997
- ],
- [
- 13.93953,
- 51.39199
- ],
- [
- 13.96909,
- 51.40311
- ],
- [
- 13.99339,
- 51.40261
- ],
- [
- 13.99258,
- 51.38214
- ],
- [
- 14.00473,
- 51.37936
- ],
- [
- 14.00513,
- 51.39199
- ],
- [
- 14.01404,
- 51.40412
- ],
- [
- 14.04847,
- 51.42307
- ],
- [
- 14.05029,
- 51.44314
- ],
- [
- 14.06851,
- 51.44995
- ],
- [
- 14.04341,
- 51.48174
- ],
- [
- 14.10942,
- 51.50696
- ],
- [
- 14.11124,
- 51.52611
- ],
- [
- 14.15012,
- 51.54929
- ],
- [
- 14.22302,
- 51.54475
- ],
- [
- 14.28822,
- 51.53493
- ],
- [
- 14.34046,
- 51.52183
- ],
- [
- 14.39271,
- 51.54249
- ],
- [
- 14.45143,
- 51.54576
- ],
- [
- 14.45105,
- 51.55649
- ],
- [
- 14.50044,
- 51.55775
- ],
- [
- 14.54378,
- 51.559
- ],
- [
- 14.54428,
- 51.56809
- ],
- [
- 14.56545,
- 51.5756
- ],
- [
- 14.58813,
- 51.57592
- ],
- [
- 14.60879,
- 51.56621
- ],
- [
- 14.60829,
- 51.55367
- ],
- [
- 14.62038,
- 51.55336
- ],
- [
- 14.6234,
- 51.55806
- ],
- [
- 14.66826,
- 51.55837
- ],
- [
- 14.67934,
- 51.58469
- ],
- [
- 14.67373,
- 51.60647
- ],
- [
- 14.70801,
- 51.60582
- ],
- [
- 14.74579,
- 51.58172
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
- "url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=5e0f6071-008e-4d57-810e-48a8362acf04"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25833",
- "EPSG:3857",
- "EPSG:31468"
- ],
- "category": "elevation",
- "country_code": "DE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png",
- "id": "GEOSN-DGM",
- "license_url": "https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data",
- "name": "Saxony digital terrain model",
- "type": "wms_endpoint",
- "url": "https://geodienste.sachsen.de/wms_geosn_hoehe/guest"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.86571,
- 50.71509
- ],
- [
- 13.86683,
- 50.73012
- ],
- [
- 13.90116,
- 50.73012
- ],
- [
- 13.90184,
- 50.74446
- ],
- [
- 13.91043,
- 50.74446
- ],
- [
- 13.91043,
- 50.77378
- ],
- [
- 13.95266,
- 50.77486
- ],
- [
- 13.95197,
- 50.78897
- ],
- [
- 13.99969,
- 50.78941
- ],
- [
- 13.999,
- 50.79831
- ],
- [
- 14.16715,
- 50.79762
- ],
- [
- 14.1747,
- 50.8462
- ],
- [
- 14.32851,
- 50.84534
- ],
- [
- 14.33503,
- 50.87643
- ],
- [
- 14.41674,
- 50.876
- ],
- [
- 14.41674,
- 50.95025
- ],
- [
- 14.33263,
- 50.95133
- ],
- [
- 14.3364,
- 50.99802
- ],
- [
- 14.58188,
- 50.99608
- ],
- [
- 14.57742,
- 50.94895
- ],
- [
- 14.54068,
- 50.95003
- ],
- [
- 14.54446,
- 50.89831
- ],
- [
- 14.60557,
- 50.89116
- ],
- [
- 14.60454,
- 50.83439
- ],
- [
- 14.6605,
- 50.83352
- ],
- [
- 14.65673,
- 50.79578
- ],
- [
- 14.83422,
- 50.79469
- ],
- [
- 14.84727,
- 50.89138
- ],
- [
- 14.9204,
- 50.88943
- ],
- [
- 14.9331,
- 50.99478
- ],
- [
- 14.99902,
- 50.99673
- ],
- [
- 15.00142,
- 51.09709
- ],
- [
- 15.04159,
- 51.09709
- ],
- [
- 15.04228,
- 51.35317
- ],
- [
- 14.99696,
- 51.35317
- ],
- [
- 15.00314,
- 51.49959
- ],
- [
- 14.91593,
- 51.50301
- ],
- [
- 14.91662,
- 51.55043
- ],
- [
- 14.74908,
- 51.55129
- ],
- [
- 14.75114,
- 51.60121
- ],
- [
- 14.41056,
- 51.59993
- ],
- [
- 14.41125,
- 51.55129
- ],
- [
- 14.07891,
- 51.54915
- ],
- [
- 14.07479,
- 51.49831
- ],
- [
- 13.99446,
- 51.50002
- ],
- [
- 13.99446,
- 51.39817
- ],
- [
- 13.53921,
- 51.39989
- ],
- [
- 13.53852,
- 51.42516
- ],
- [
- 13.50041,
- 51.42505
- ],
- [
- 13.50179,
- 51.44945
- ],
- [
- 13.41596,
- 51.45094
- ],
- [
- 13.41699,
- 51.50013
- ],
- [
- 13.3315,
- 51.50055
- ],
- [
- 13.33047,
- 51.44966
- ],
- [
- 13.24945,
- 51.44987
- ],
- [
- 13.25116,
- 51.60036
- ],
- [
- 13.16773,
- 51.60057
- ],
- [
- 13.16739,
- 51.65023
- ],
- [
- 13.08328,
- 51.65066
- ],
- [
- 13.08362,
- 51.69941
- ],
- [
- 12.66202,
- 51.70027
- ],
- [
- 12.66065,
- 51.64832
- ],
- [
- 12.4162,
- 51.65045
- ],
- [
- 12.41345,
- 51.60057
- ],
- [
- 12.16146,
- 51.60015
- ],
- [
- 12.16146,
- 51.50109
- ],
- [
- 12.07631,
- 51.50023
- ],
- [
- 12.07974,
- 51.39625
- ],
- [
- 12.16008,
- 51.39753
- ],
- [
- 12.16214,
- 51.34995
- ],
- [
- 12.07906,
- 51.35253
- ],
- [
- 12.07906,
- 51.24562
- ],
- [
- 12.16214,
- 51.24691
- ],
- [
- 12.16352,
- 51.0958
- ],
- [
- 12.24317,
- 51.09709
- ],
- [
- 12.2454,
- 51.04813
- ],
- [
- 12.49688,
- 51.04883
- ],
- [
- 12.49894,
- 50.89966
- ],
- [
- 12.33346,
- 50.89923
- ],
- [
- 12.32797,
- 50.84984
- ],
- [
- 12.20712,
- 50.8494
- ],
- [
- 12.20506,
- 50.69829
- ],
- [
- 12.24694,
- 50.69744
- ],
- [
- 12.24694,
- 50.65023
- ],
- [
- 11.91529,
- 50.64849
- ],
- [
- 11.91598,
- 50.59839
- ],
- [
- 11.83221,
- 50.59817
- ],
- [
- 11.83255,
- 50.39922
- ],
- [
- 11.91495,
- 50.39922
- ],
- [
- 11.91461,
- 50.34886
- ],
- [
- 11.99486,
- 50.34659
- ],
- [
- 11.99838,
- 50.29897
- ],
- [
- 12.16506,
- 50.29912
- ],
- [
- 12.16549,
- 50.24904
- ],
- [
- 12.23673,
- 50.24871
- ],
- [
- 12.24823,
- 50.24212
- ],
- [
- 12.24772,
- 50.14904
- ],
- [
- 12.33149,
- 50.14893
- ],
- [
- 12.33852,
- 50.19335
- ],
- [
- 12.33286,
- 50.23927
- ],
- [
- 12.3538,
- 50.23619
- ],
- [
- 12.35998,
- 50.24926
- ],
- [
- 12.41457,
- 50.24948
- ],
- [
- 12.41594,
- 50.29906
- ],
- [
- 12.49851,
- 50.29874
- ],
- [
- 12.49834,
- 50.34948
- ],
- [
- 12.58142,
- 50.34915
- ],
- [
- 12.58125,
- 50.39896
- ],
- [
- 12.69489,
- 50.39962
- ],
- [
- 12.70622,
- 50.39426
- ],
- [
- 12.71257,
- 50.39875
- ],
- [
- 13.0813,
- 50.39907
- ],
- [
- 13.0813,
- 50.4992
- ],
- [
- 13.24816,
- 50.49898
- ],
- [
- 13.24884,
- 50.54809
- ],
- [
- 13.33124,
- 50.54918
- ],
- [
- 13.33056,
- 50.59911
- ],
- [
- 13.50908,
- 50.59759
- ],
- [
- 13.50462,
- 50.62656
- ],
- [
- 13.5393,
- 50.62635
- ],
- [
- 13.53827,
- 50.65481
- ],
- [
- 13.54633,
- 50.65547
- ],
- [
- 13.54599,
- 50.66983
- ],
- [
- 13.5544,
- 50.67027
- ],
- [
- 13.55457,
- 50.68908
- ],
- [
- 13.54736,
- 50.68887
- ],
- [
- 13.54582,
- 50.69969
- ],
- [
- 13.63886,
- 50.69947
- ],
- [
- 13.63955,
- 50.71425
- ],
- [
- 13.86571,
- 50.71509
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
- "url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=3f38c3f3-03db-4a2a-b6da-2704b9a1d5f0"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25833",
- "EPSG:3857",
- "EPSG:31468"
- ],
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2005",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png",
- "id": "GEOSN-DOP-2005",
- "license_url": "https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data",
- "name": "Saxony historical aerial imagery 2005",
- "start_date": "2005",
- "type": "wms",
- "url": "https://geodienste.sachsen.de/wms_geosn_dop-2005/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=dop_2005&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.86571,
- 50.71509
- ],
- [
- 13.86683,
- 50.73012
- ],
- [
- 13.90116,
- 50.73012
- ],
- [
- 13.90184,
- 50.74446
- ],
- [
- 13.91043,
- 50.74446
- ],
- [
- 13.91043,
- 50.77378
- ],
- [
- 13.95266,
- 50.77486
- ],
- [
- 13.95197,
- 50.78897
- ],
- [
- 13.99969,
- 50.78941
- ],
- [
- 13.999,
- 50.79831
- ],
- [
- 14.16715,
- 50.79762
- ],
- [
- 14.1747,
- 50.8462
- ],
- [
- 14.32851,
- 50.84534
- ],
- [
- 14.33503,
- 50.87643
- ],
- [
- 14.41674,
- 50.876
- ],
- [
- 14.41674,
- 50.95025
- ],
- [
- 14.33263,
- 50.95133
- ],
- [
- 14.3364,
- 50.99802
- ],
- [
- 14.58188,
- 50.99608
- ],
- [
- 14.57742,
- 50.94895
- ],
- [
- 14.54068,
- 50.95003
- ],
- [
- 14.54446,
- 50.89831
- ],
- [
- 14.60557,
- 50.89116
- ],
- [
- 14.60454,
- 50.83439
- ],
- [
- 14.6605,
- 50.83352
- ],
- [
- 14.65673,
- 50.79578
- ],
- [
- 14.83422,
- 50.79469
- ],
- [
- 14.84727,
- 50.89138
- ],
- [
- 14.9204,
- 50.88943
- ],
- [
- 14.9331,
- 50.99478
- ],
- [
- 14.99902,
- 50.99673
- ],
- [
- 15.00142,
- 51.09709
- ],
- [
- 15.04159,
- 51.09709
- ],
- [
- 15.04228,
- 51.35317
- ],
- [
- 14.99696,
- 51.35317
- ],
- [
- 15.00314,
- 51.49959
- ],
- [
- 14.91593,
- 51.50301
- ],
- [
- 14.91662,
- 51.55043
- ],
- [
- 14.74908,
- 51.55129
- ],
- [
- 14.75114,
- 51.60121
- ],
- [
- 14.41056,
- 51.59993
- ],
- [
- 14.41125,
- 51.55129
- ],
- [
- 14.07891,
- 51.54915
- ],
- [
- 14.07479,
- 51.49831
- ],
- [
- 13.99446,
- 51.50002
- ],
- [
- 13.99446,
- 51.39817
- ],
- [
- 13.53921,
- 51.39989
- ],
- [
- 13.53852,
- 51.42516
- ],
- [
- 13.50041,
- 51.42505
- ],
- [
- 13.50179,
- 51.44945
- ],
- [
- 13.41596,
- 51.45094
- ],
- [
- 13.41699,
- 51.50013
- ],
- [
- 13.3315,
- 51.50055
- ],
- [
- 13.33047,
- 51.44966
- ],
- [
- 13.24945,
- 51.44987
- ],
- [
- 13.25116,
- 51.60036
- ],
- [
- 13.16773,
- 51.60057
- ],
- [
- 13.16739,
- 51.65023
- ],
- [
- 13.08328,
- 51.65066
- ],
- [
- 13.08362,
- 51.69941
- ],
- [
- 12.66202,
- 51.70027
- ],
- [
- 12.66065,
- 51.64832
- ],
- [
- 12.4162,
- 51.65045
- ],
- [
- 12.41345,
- 51.60057
- ],
- [
- 12.16146,
- 51.60015
- ],
- [
- 12.16146,
- 51.50109
- ],
- [
- 12.07631,
- 51.50023
- ],
- [
- 12.07974,
- 51.39625
- ],
- [
- 12.16008,
- 51.39753
- ],
- [
- 12.16214,
- 51.34995
- ],
- [
- 12.07906,
- 51.35253
- ],
- [
- 12.07906,
- 51.24562
- ],
- [
- 12.16214,
- 51.24691
- ],
- [
- 12.16352,
- 51.0958
- ],
- [
- 12.24317,
- 51.09709
- ],
- [
- 12.2454,
- 51.04813
- ],
- [
- 12.49688,
- 51.04883
- ],
- [
- 12.49894,
- 50.89966
- ],
- [
- 12.33346,
- 50.89923
- ],
- [
- 12.32797,
- 50.84984
- ],
- [
- 12.20712,
- 50.8494
- ],
- [
- 12.20506,
- 50.69829
- ],
- [
- 12.24694,
- 50.69744
- ],
- [
- 12.24694,
- 50.65023
- ],
- [
- 11.91529,
- 50.64849
- ],
- [
- 11.91598,
- 50.59839
- ],
- [
- 11.83221,
- 50.59817
- ],
- [
- 11.83255,
- 50.39922
- ],
- [
- 11.91495,
- 50.39922
- ],
- [
- 11.91461,
- 50.34886
- ],
- [
- 11.99486,
- 50.34659
- ],
- [
- 11.99838,
- 50.29897
- ],
- [
- 12.16506,
- 50.29912
- ],
- [
- 12.16549,
- 50.24904
- ],
- [
- 12.23673,
- 50.24871
- ],
- [
- 12.24823,
- 50.24212
- ],
- [
- 12.24772,
- 50.14904
- ],
- [
- 12.33149,
- 50.14893
- ],
- [
- 12.33852,
- 50.19335
- ],
- [
- 12.33286,
- 50.23927
- ],
- [
- 12.3538,
- 50.23619
- ],
- [
- 12.35998,
- 50.24926
- ],
- [
- 12.41457,
- 50.24948
- ],
- [
- 12.41594,
- 50.29906
- ],
- [
- 12.49851,
- 50.29874
- ],
- [
- 12.49834,
- 50.34948
- ],
- [
- 12.58142,
- 50.34915
- ],
- [
- 12.58125,
- 50.39896
- ],
- [
- 12.69489,
- 50.39962
- ],
- [
- 12.70622,
- 50.39426
- ],
- [
- 12.71257,
- 50.39875
- ],
- [
- 13.0813,
- 50.39907
- ],
- [
- 13.0813,
- 50.4992
- ],
- [
- 13.24816,
- 50.49898
- ],
- [
- 13.24884,
- 50.54809
- ],
- [
- 13.33124,
- 50.54918
- ],
- [
- 13.33056,
- 50.59911
- ],
- [
- 13.50908,
- 50.59759
- ],
- [
- 13.50462,
- 50.62656
- ],
- [
- 13.5393,
- 50.62635
- ],
- [
- 13.53827,
- 50.65481
- ],
- [
- 13.54633,
- 50.65547
- ],
- [
- 13.54599,
- 50.66983
- ],
- [
- 13.5544,
- 50.67027
- ],
- [
- 13.55457,
- 50.68908
- ],
- [
- 13.54736,
- 50.68887
- ],
- [
- 13.54582,
- 50.69969
- ],
- [
- 13.63886,
- 50.69947
- ],
- [
- 13.63955,
- 50.71425
- ],
- [
- 13.86571,
- 50.71509
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
- "url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=8c276e3c-88af-462f-8128-6900bc7dd4f8"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25833",
- "EPSG:3857",
- "EPSG:31468"
- ],
- "category": "historicphoto",
- "country_code": "DE",
- "end_date": "2012",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png",
- "id": "GEOSN-DOP-2012_2014",
- "license_url": "https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data",
- "name": "Saxony historical aerial imagery 2012-2014",
- "start_date": "2012",
- "type": "wms",
- "url": "https://geodienste.sachsen.de/wms_geosn_dop_2012_2014/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=dop_2012_2014_rgb&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.54901,
- 50.69792
- ],
- [
- 13.84251,
- 50.71126
- ],
- [
- 13.93239,
- 50.74504
- ],
- [
- 14.04614,
- 50.79389
- ],
- [
- 14.25257,
- 50.85953
- ],
- [
- 14.40002,
- 50.88966
- ],
- [
- 14.42671,
- 50.9357
- ],
- [
- 14.35649,
- 50.97197
- ],
- [
- 14.32559,
- 50.99319
- ],
- [
- 14.27504,
- 50.99054
- ],
- [
- 14.31577,
- 51.04266
- ],
- [
- 14.41547,
- 51.01263
- ],
- [
- 14.51939,
- 51.0038
- ],
- [
- 14.5882,
- 50.9817
- ],
- [
- 14.54467,
- 50.91977
- ],
- [
- 14.57977,
- 50.90649
- ],
- [
- 14.64718,
- 50.92243
- ],
- [
- 14.64437,
- 50.90915
- ],
- [
- 14.60505,
- 50.85687
- ],
- [
- 14.7202,
- 50.81785
- ],
- [
- 14.81008,
- 50.81341
- ],
- [
- 14.85642,
- 50.89055
- ],
- [
- 14.91259,
- 50.94721
- ],
- [
- 14.99685,
- 51.08679
- ],
- [
- 15.05303,
- 51.24793
- ],
- [
- 15.05583,
- 51.29274
- ],
- [
- 14.99264,
- 51.34452
- ],
- [
- 14.98843,
- 51.398
- ],
- [
- 14.97719,
- 51.45754
- ],
- [
- 14.90979,
- 51.49603
- ],
- [
- 14.73986,
- 51.5371
- ],
- [
- 14.73986,
- 51.59122
- ],
- [
- 14.70054,
- 51.60605
- ],
- [
- 14.67948,
- 51.5982
- ],
- [
- 14.68369,
- 51.57813
- ],
- [
- 14.67386,
- 51.55806
- ],
- [
- 14.61769,
- 51.55718
- ],
- [
- 14.58399,
- 51.59035
- ],
- [
- 14.51939,
- 51.56941
- ],
- [
- 14.43513,
- 51.5598
- ],
- [
- 14.327,
- 51.52574
- ],
- [
- 14.13461,
- 51.55544
- ],
- [
- 14.0672,
- 51.49952
- ],
- [
- 14.02788,
- 51.47854
- ],
- [
- 14.04333,
- 51.45229
- ],
- [
- 13.99558,
- 51.39274
- ],
- [
- 13.95767,
- 51.40588
- ],
- [
- 13.88886,
- 51.38836
- ],
- [
- 13.72455,
- 51.37434
- ],
- [
- 13.55463,
- 51.39274
- ],
- [
- 13.40437,
- 51.45929
- ],
- [
- 13.35241,
- 51.43916
- ],
- [
- 13.3159,
- 51.44354
- ],
- [
- 13.28641,
- 51.41815
- ],
- [
- 13.22602,
- 51.40063
- ],
- [
- 13.21339,
- 51.46104
- ],
- [
- 13.219,
- 51.52661
- ],
- [
- 13.17406,
- 51.5982
- ],
- [
- 13.00274,
- 51.67751
- ],
- [
- 12.90584,
- 51.65312
- ],
- [
- 12.90303,
- 51.66619
- ],
- [
- 12.85388,
- 51.69318
- ],
- [
- 12.76401,
- 51.65922
- ],
- [
- 12.68817,
- 51.67054
- ],
- [
- 12.64324,
- 51.62959
- ],
- [
- 12.57723,
- 51.63046
- ],
- [
- 12.42557,
- 51.61041
- ],
- [
- 12.23037,
- 51.57028
- ],
- [
- 12.17701,
- 51.53011
- ],
- [
- 12.13909,
- 51.46017
- ],
- [
- 12.16718,
- 51.41727
- ],
- [
- 12.1742,
- 51.33487
- ],
- [
- 12.13207,
- 51.3182
- ],
- [
- 12.18684,
- 51.21364
- ],
- [
- 12.15875,
- 51.18812
- ],
- [
- 12.22054,
- 51.09296
- ],
- [
- 12.49017,
- 51.05414
- ],
- [
- 12.52106,
- 50.99319
- ],
- [
- 12.60532,
- 50.97286
- ],
- [
- 12.62639,
- 50.91889
- ],
- [
- 12.50281,
- 50.91092
- ],
- [
- 12.23739,
- 50.81874
- ],
- [
- 12.21352,
- 50.72993
- ],
- [
- 12.28654,
- 50.665
- ],
- [
- 12.21773,
- 50.6463
- ],
- [
- 12.13347,
- 50.6276
- ],
- [
- 12.05343,
- 50.56342
- ],
- [
- 12.01972,
- 50.64719
- ],
- [
- 11.85963,
- 50.54825
- ],
- [
- 11.87649,
- 50.50808
- ],
- [
- 11.92704,
- 50.5054
- ],
- [
- 11.93687,
- 50.48664
- ],
- [
- 11.87087,
- 50.44194
- ],
- [
- 11.93406,
- 50.39989
- ],
- [
- 11.96917,
- 50.33987
- ],
- [
- 12.12083,
- 50.29773
- ],
- [
- 12.17279,
- 50.3067
- ],
- [
- 12.18543,
- 50.26094
- ],
- [
- 12.21212,
- 50.25375
- ],
- [
- 12.25705,
- 50.21603
- ],
- [
- 12.28233,
- 50.15668
- ],
- [
- 12.35535,
- 50.15848
- ],
- [
- 12.35535,
- 50.22142
- ],
- [
- 12.41433,
- 50.28158
- ],
- [
- 12.51123,
- 50.34705
- ],
- [
- 12.53791,
- 50.38735
- ],
- [
- 12.67835,
- 50.40257
- ],
- [
- 12.71205,
- 50.38646
- ],
- [
- 12.7289,
- 50.39631
- ],
- [
- 12.75699,
- 50.42584
- ],
- [
- 12.78648,
- 50.43389
- ],
- [
- 12.81737,
- 50.41779
- ],
- [
- 12.84686,
- 50.43657
- ],
- [
- 12.94797,
- 50.38735
- ],
- [
- 13.00976,
- 50.41421
- ],
- [
- 13.04627,
- 50.44999
- ],
- [
- 13.0561,
- 50.48753
- ],
- [
- 13.21479,
- 50.49289
- ],
- [
- 13.27517,
- 50.56609
- ],
- [
- 13.34118,
- 50.56877
- ],
- [
- 13.39173,
- 50.61334
- ],
- [
- 13.47739,
- 50.58571
- ],
- [
- 13.54761,
- 50.63473
- ],
- [
- 13.56867,
- 50.67212
- ],
- [
- 13.54901,
- 50.69792
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
- "url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=ba87bbed-4cb5-4539-a9f5-f863de752f52"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25833",
- "EPSG:3857",
- "EPSG:31468"
- ],
- "country_code": "DE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png",
- "id": "GEOSN-DOP-CIR",
- "license_url": "https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data",
- "name": "Saxony latest aerial imagery infrared",
- "type": "wms",
- "url": "https://geodienste.sachsen.de/wms_geosn_dop-cir/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dop_020_cir&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 13.54901,
- 50.69792
- ],
- [
- 13.84251,
- 50.71126
- ],
- [
- 13.93239,
- 50.74504
- ],
- [
- 14.04614,
- 50.79389
- ],
- [
- 14.25257,
- 50.85953
- ],
- [
- 14.40002,
- 50.88966
- ],
- [
- 14.42671,
- 50.9357
- ],
- [
- 14.35649,
- 50.97197
- ],
- [
- 14.32559,
- 50.99319
- ],
- [
- 14.27504,
- 50.99054
- ],
- [
- 14.31577,
- 51.04266
- ],
- [
- 14.41547,
- 51.01263
- ],
- [
- 14.51939,
- 51.0038
- ],
- [
- 14.5882,
- 50.9817
- ],
- [
- 14.54467,
- 50.91977
- ],
- [
- 14.57977,
- 50.90649
- ],
- [
- 14.64718,
- 50.92243
- ],
- [
- 14.64437,
- 50.90915
- ],
- [
- 14.60505,
- 50.85687
- ],
- [
- 14.7202,
- 50.81785
- ],
- [
- 14.81008,
- 50.81341
- ],
- [
- 14.85642,
- 50.89055
- ],
- [
- 14.91259,
- 50.94721
- ],
- [
- 14.99685,
- 51.08679
- ],
- [
- 15.05303,
- 51.24793
- ],
- [
- 15.05583,
- 51.29274
- ],
- [
- 14.99264,
- 51.34452
- ],
- [
- 14.98843,
- 51.398
- ],
- [
- 14.97719,
- 51.45754
- ],
- [
- 14.90979,
- 51.49603
- ],
- [
- 14.73986,
- 51.5371
- ],
- [
- 14.73986,
- 51.59122
- ],
- [
- 14.70054,
- 51.60605
- ],
- [
- 14.67948,
- 51.5982
- ],
- [
- 14.68369,
- 51.57813
- ],
- [
- 14.67386,
- 51.55806
- ],
- [
- 14.61769,
- 51.55718
- ],
- [
- 14.58399,
- 51.59035
- ],
- [
- 14.51939,
- 51.56941
- ],
- [
- 14.43513,
- 51.5598
- ],
- [
- 14.327,
- 51.52574
- ],
- [
- 14.13461,
- 51.55544
- ],
- [
- 14.0672,
- 51.49952
- ],
- [
- 14.02788,
- 51.47854
- ],
- [
- 14.04333,
- 51.45229
- ],
- [
- 13.99558,
- 51.39274
- ],
- [
- 13.95767,
- 51.40588
- ],
- [
- 13.88886,
- 51.38836
- ],
- [
- 13.72455,
- 51.37434
- ],
- [
- 13.55463,
- 51.39274
- ],
- [
- 13.40437,
- 51.45929
- ],
- [
- 13.35241,
- 51.43916
- ],
- [
- 13.3159,
- 51.44354
- ],
- [
- 13.28641,
- 51.41815
- ],
- [
- 13.22602,
- 51.40063
- ],
- [
- 13.21339,
- 51.46104
- ],
- [
- 13.219,
- 51.52661
- ],
- [
- 13.17406,
- 51.5982
- ],
- [
- 13.00274,
- 51.67751
- ],
- [
- 12.90584,
- 51.65312
- ],
- [
- 12.90303,
- 51.66619
- ],
- [
- 12.85388,
- 51.69318
- ],
- [
- 12.76401,
- 51.65922
- ],
- [
- 12.68817,
- 51.67054
- ],
- [
- 12.64324,
- 51.62959
- ],
- [
- 12.57723,
- 51.63046
- ],
- [
- 12.42557,
- 51.61041
- ],
- [
- 12.23037,
- 51.57028
- ],
- [
- 12.17701,
- 51.53011
- ],
- [
- 12.13909,
- 51.46017
- ],
- [
- 12.16718,
- 51.41727
- ],
- [
- 12.1742,
- 51.33487
- ],
- [
- 12.13207,
- 51.3182
- ],
- [
- 12.18684,
- 51.21364
- ],
- [
- 12.15875,
- 51.18812
- ],
- [
- 12.22054,
- 51.09296
- ],
- [
- 12.49017,
- 51.05414
- ],
- [
- 12.52106,
- 50.99319
- ],
- [
- 12.60532,
- 50.97286
- ],
- [
- 12.62639,
- 50.91889
- ],
- [
- 12.50281,
- 50.91092
- ],
- [
- 12.23739,
- 50.81874
- ],
- [
- 12.21352,
- 50.72993
- ],
- [
- 12.28654,
- 50.665
- ],
- [
- 12.21773,
- 50.6463
- ],
- [
- 12.13347,
- 50.6276
- ],
- [
- 12.05343,
- 50.56342
- ],
- [
- 12.01972,
- 50.64719
- ],
- [
- 11.85963,
- 50.54825
- ],
- [
- 11.87649,
- 50.50808
- ],
- [
- 11.92704,
- 50.5054
- ],
- [
- 11.93687,
- 50.48664
- ],
- [
- 11.87087,
- 50.44194
- ],
- [
- 11.93406,
- 50.39989
- ],
- [
- 11.96917,
- 50.33987
- ],
- [
- 12.12083,
- 50.29773
- ],
- [
- 12.17279,
- 50.3067
- ],
- [
- 12.18543,
- 50.26094
- ],
- [
- 12.21212,
- 50.25375
- ],
- [
- 12.25705,
- 50.21603
- ],
- [
- 12.28233,
- 50.15668
- ],
- [
- 12.35535,
- 50.15848
- ],
- [
- 12.35535,
- 50.22142
- ],
- [
- 12.41433,
- 50.28158
- ],
- [
- 12.51123,
- 50.34705
- ],
- [
- 12.53791,
- 50.38735
- ],
- [
- 12.67835,
- 50.40257
- ],
- [
- 12.71205,
- 50.38646
- ],
- [
- 12.7289,
- 50.39631
- ],
- [
- 12.75699,
- 50.42584
- ],
- [
- 12.78648,
- 50.43389
- ],
- [
- 12.81737,
- 50.41779
- ],
- [
- 12.84686,
- 50.43657
- ],
- [
- 12.94797,
- 50.38735
- ],
- [
- 13.00976,
- 50.41421
- ],
- [
- 13.04627,
- 50.44999
- ],
- [
- 13.0561,
- 50.48753
- ],
- [
- 13.21479,
- 50.49289
- ],
- [
- 13.27517,
- 50.56609
- ],
- [
- 13.34118,
- 50.56877
- ],
- [
- 13.39173,
- 50.61334
- ],
- [
- 13.47739,
- 50.58571
- ],
- [
- 13.54761,
- 50.63473
- ],
- [
- 13.56867,
- 50.67212
- ],
- [
- 13.54901,
- 50.69792
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
- "url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=d6d24c6d-94ea-447d-8a0c-40afdedeb5c6"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:25833",
- "EPSG:3857",
- "EPSG:31468"
- ],
- "category": "map",
- "country_code": "DE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png",
- "id": "GEOSN-DTK",
- "license_url": "https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data",
- "name": "Saxony topographic map",
- "type": "wms",
- "url": "https://geodienste.sachsen.de/wms_geosn_dtk-pg-color/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dtk_pg_color&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 9.0262,
- 48.88138
- ],
- [
- 9.09436,
- 48.88137
- ],
- [
- 9.0944,
- 48.89936
- ],
- [
- 9.10812,
- 48.89934
- ],
- [
- 9.10813,
- 48.92635
- ],
- [
- 9.19002,
- 48.92621
- ],
- [
- 9.19009,
- 48.93518
- ],
- [
- 9.2583,
- 48.93509
- ],
- [
- 9.25825,
- 48.92608
- ],
- [
- 9.31283,
- 48.92595
- ],
- [
- 9.31278,
- 48.91696
- ],
- [
- 9.35372,
- 48.91683
- ],
- [
- 9.35337,
- 48.87188
- ],
- [
- 9.36702,
- 48.87183
- ],
- [
- 9.36683,
- 48.84483
- ],
- [
- 9.38045,
- 48.84481
- ],
- [
- 9.38021,
- 48.80884
- ],
- [
- 9.36656,
- 48.8089
- ],
- [
- 9.36639,
- 48.78192
- ],
- [
- 9.42079,
- 48.78173
- ],
- [
- 9.42012,
- 48.70079
- ],
- [
- 9.32503,
- 48.7011
- ],
- [
- 9.32473,
- 48.65614
- ],
- [
- 9.27043,
- 48.65626
- ],
- [
- 9.27034,
- 48.63831
- ],
- [
- 9.24321,
- 48.63835
- ],
- [
- 9.24313,
- 48.62038
- ],
- [
- 9.18887,
- 48.62048
- ],
- [
- 9.18889,
- 48.62947
- ],
- [
- 9.1482,
- 48.62953
- ],
- [
- 9.14826,
- 48.6565
- ],
- [
- 9.1347,
- 48.65652
- ],
- [
- 9.13473,
- 48.66552
- ],
- [
- 9.08044,
- 48.66555
- ],
- [
- 9.08042,
- 48.65657
- ],
- [
- 9.02612,
- 48.65662
- ],
- [
- 9.02612,
- 48.64761
- ],
- [
- 8.97184,
- 48.64761
- ],
- [
- 8.9717,
- 48.66558
- ],
- [
- 8.91751,
- 48.66557
- ],
- [
- 8.91751,
- 48.68355
- ],
- [
- 8.90391,
- 48.68353
- ],
- [
- 8.90388,
- 48.70153
- ],
- [
- 8.91747,
- 48.70154
- ],
- [
- 8.91744,
- 48.71054
- ],
- [
- 8.93104,
- 48.71053
- ],
- [
- 8.93101,
- 48.73751
- ],
- [
- 8.99899,
- 48.73753
- ],
- [
- 8.99899,
- 48.74652
- ],
- [
- 9.02617,
- 48.74653
- ],
- [
- 9.02621,
- 48.81845
- ],
- [
- 8.99897,
- 48.81847
- ],
- [
- 8.99898,
- 48.82745
- ],
- [
- 8.95812,
- 48.82745
- ],
- [
- 8.95806,
- 48.86342
- ],
- [
- 8.97171,
- 48.86342
- ],
- [
- 8.97171,
- 48.87242
- ],
- [
- 9.02622,
- 48.87241
- ],
- [
- 9.0262,
- 48.88138
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:25832",
- "EPSG:3857"
- ],
- "best": true,
- "country_code": "DE",
- "end_date": "2017-04-21",
- "icon": "https://www.stuttgart.de/favicon.ico",
- "id": "Stuttgart-latest",
- "license_url": "https://lists.openstreetmap.de/pipermail/stuttgart/2018-September/000882.html",
- "name": "Stuttgart Luftbild Stadtmessungsamt 2017",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://www.stuttgart.de/datenschutzerklaerung",
- "start_date": "2017-04-12",
- "type": "wms",
- "url": "https://gis5.stuttgart.de/arcgis/services/1_Base/WMS_Luftbilder_aktuell/MapServer/WmsServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.63568,
- 53.28027
- ],
- [
- 7.63568,
- 53.66811
- ],
- [
- 8.49433,
- 55.50246
- ],
- [
- 9.20775,
- 55.48106
- ],
- [
- 9.20775,
- 53.28027
- ],
- [
- 7.63568,
- 53.28027
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "DE",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (false color IR)",
- "end_date": "2015-08-21",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81960222015233LGN00ir",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Northern German west coast tidalflats (infrared)",
- "start_date": "2015-08-21",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00ir&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.63568,
- 53.28027
- ],
- [
- 7.63568,
- 53.6677
- ],
- [
- 8.49433,
- 55.50246
- ],
- [
- 9.20775,
- 55.48106
- ],
- [
- 9.20775,
- 53.28027
- ],
- [
- 7.63568,
- 53.28027
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "DE",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
- "end_date": "2015-08-21",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81960222015233LGN00vis",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Northern German west coast tidalflats",
- "start_date": "2015-08-21",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00vis&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.1562,
- 52.8755
- ],
- [
- 5.1615,
- 53.0325
- ],
- [
- 6.4155,
- 55.7379
- ],
- [
- 9.8813,
- 55.7459
- ],
- [
- 9.8813,
- 53.2428
- ],
- [
- 9.6846,
- 52.8877
- ],
- [
- 5.1562,
- 52.8755
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
- "end_date": "2016-09-25",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-northsea_s2_2016",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: North Sea Coast 2016",
- "start_date": "2016-09-25",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2016&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.1713,
- 53.0918
- ],
- [
- 6.477,
- 55.8973
- ],
- [
- 9.8813,
- 55.8973
- ],
- [
- 9.8813,
- 53.2761
- ],
- [
- 9.7789,
- 53.0918
- ],
- [
- 5.1713,
- 53.0918
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "category": "historicphoto",
- "country_code": "DE",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
- "end_date": "2017-06-02",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-northsea_s2_2017",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: North Sea Coast 2017",
- "start_date": "2017-06-02",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2017&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.3179,
- 53.0918
- ],
- [
- 5.322,
- 53.4418
- ],
- [
- 6.7023,
- 56.3572
- ],
- [
- 9.8813,
- 56.3578
- ],
- [
- 9.8813,
- 53.2819
- ],
- [
- 9.7758,
- 53.0921
- ],
- [
- 5.3179,
- 53.0918
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "category": "photo",
- "country_code": "DE",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
- "end_date": "2018-05-08",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-northsea_s2_2018",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: North Sea Coast spring 2018",
- "start_date": "2018-05-08",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2018&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.37439,
- 54.95517
- ],
- [
- 8.36838,
- 55.40421
- ],
- [
- 8.2104,
- 55.40398
- ],
- [
- 8.20873,
- 55.49373
- ],
- [
- 8.05027,
- 55.49247
- ],
- [
- 8.01851,
- 56.75014
- ],
- [
- 8.18192,
- 56.75099
- ],
- [
- 8.17633,
- 57.02089
- ],
- [
- 8.34133,
- 57.02199
- ],
- [
- 8.33925,
- 57.11196
- ],
- [
- 8.50544,
- 57.11232
- ],
- [
- 8.50339,
- 57.20205
- ],
- [
- 9.33163,
- 57.20276
- ],
- [
- 9.33191,
- 57.29248
- ],
- [
- 9.49789,
- 57.29196
- ],
- [
- 9.49886,
- 57.38206
- ],
- [
- 9.66497,
- 57.38116
- ],
- [
- 9.66873,
- 57.56056
- ],
- [
- 9.8352,
- 57.55963
- ],
- [
- 9.83749,
- 57.64933
- ],
- [
- 10.17257,
- 57.64628
- ],
- [
- 10.17542,
- 57.73678
- ],
- [
- 10.51183,
- 57.73303
- ],
- [
- 10.51521,
- 57.82289
- ],
- [
- 10.68349,
- 57.82077
- ],
- [
- 10.67516,
- 57.6412
- ],
- [
- 10.5077,
- 57.64331
- ],
- [
- 10.504,
- 57.55351
- ],
- [
- 10.67104,
- 57.55141
- ],
- [
- 10.65078,
- 57.10245
- ],
- [
- 10.48577,
- 57.10451
- ],
- [
- 10.47862,
- 56.92491
- ],
- [
- 10.3144,
- 56.92676
- ],
- [
- 10.31123,
- 56.83693
- ],
- [
- 10.47503,
- 56.83509
- ],
- [
- 10.4649,
- 56.56567
- ],
- [
- 10.95242,
- 56.55898
- ],
- [
- 10.94792,
- 56.46922
- ],
- [
- 11.10993,
- 56.46647
- ],
- [
- 11.10526,
- 56.37683
- ],
- [
- 10.94299,
- 56.37953
- ],
- [
- 10.93412,
- 56.19948
- ],
- [
- 10.77197,
- 56.20202
- ],
- [
- 10.76948,
- 56.11201
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.28659,
- 56.11868
- ],
- [
- 10.28315,
- 56.02819
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.4335,
- 55.66935
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.74381,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.90518,
- 55.39539
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.04586,
- 55.03186
- ],
- [
- 11.20308,
- 55.02475
- ],
- [
- 11.20308,
- 55.11714
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.07896,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.92587,
- 55.66702
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.75623,
- 55.75792
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.60521,
- 56.02475
- ],
- [
- 10.92587,
- 56.02012
- ],
- [
- 10.91971,
- 55.93094
- ],
- [
- 11.08028,
- 55.92792
- ],
- [
- 11.08581,
- 56.01783
- ],
- [
- 11.7265,
- 56.00506
- ],
- [
- 11.732,
- 56.09521
- ],
- [
- 12.05403,
- 56.08713
- ],
- [
- 12.06085,
- 56.17626
- ],
- [
- 12.70235,
- 56.15944
- ],
- [
- 12.66111,
- 55.71143
- ],
- [
- 12.97923,
- 55.7014
- ],
- [
- 12.96129,
- 55.52173
- ],
- [
- 12.32687,
- 55.54121
- ],
- [
- 12.32061,
- 55.45137
- ],
- [
- 12.47782,
- 55.44707
- ],
- [
- 12.47024,
- 55.35705
- ],
- [
- 12.62697,
- 55.35238
- ],
- [
- 12.62009,
- 55.26326
- ],
- [
- 12.46273,
- 55.26722
- ],
- [
- 12.45529,
- 55.17782
- ],
- [
- 12.2987,
- 55.18223
- ],
- [
- 12.28973,
- 55.09236
- ],
- [
- 12.60486,
- 55.08329
- ],
- [
- 12.5872,
- 54.90363
- ],
- [
- 12.27666,
- 54.9119
- ],
- [
- 12.26102,
- 54.73316
- ],
- [
- 12.10707,
- 54.73782
- ],
- [
- 12.08586,
- 54.46817
- ],
- [
- 11.7795,
- 54.47536
- ],
- [
- 11.78374,
- 54.56548
- ],
- [
- 11.16585,
- 54.57822
- ],
- [
- 11.17064,
- 54.66865
- ],
- [
- 10.86172,
- 54.6734
- ],
- [
- 10.86512,
- 54.76347
- ],
- [
- 10.77136,
- 54.76439
- ],
- [
- 10.77073,
- 54.73728
- ],
- [
- 10.75514,
- 54.73758
- ],
- [
- 10.7544,
- 54.71957
- ],
- [
- 10.73891,
- 54.71976
- ],
- [
- 10.73844,
- 54.71085
- ],
- [
- 10.70745,
- 54.7113
- ],
- [
- 10.70411,
- 54.67567
- ],
- [
- 10.5511,
- 54.67817
- ],
- [
- 10.55472,
- 54.76702
- ],
- [
- 10.2424,
- 54.77059
- ],
- [
- 10.24598,
- 54.86047
- ],
- [
- 10.09023,
- 54.86221
- ],
- [
- 10.08737,
- 54.77239
- ],
- [
- 9.15558,
- 54.77696
- ],
- [
- 9.15628,
- 54.86754
- ],
- [
- 8.5322,
- 54.86638
- ],
- [
- 8.53143,
- 54.95516
- ],
- [
- 8.37439,
- 54.95517
- ]
- ],
- [
- [
- 11.45777,
- 56.81955
- ],
- [
- 11.78492,
- 56.81274
- ],
- [
- 11.77167,
- 56.63328
- ],
- [
- 11.44596,
- 56.64011
- ],
- [
- 11.45777,
- 56.81955
- ]
- ],
- [
- [
- 11.32747,
- 57.3613
- ],
- [
- 11.31618,
- 57.1818
- ],
- [
- 11.15087,
- 57.18473
- ],
- [
- 11.14566,
- 57.09496
- ],
- [
- 10.81577,
- 57.10017
- ],
- [
- 10.82906,
- 57.36953
- ],
- [
- 11.32747,
- 57.3613
- ]
- ],
- [
- [
- 11.58433,
- 56.27779
- ],
- [
- 11.57829,
- 56.18804
- ],
- [
- 11.73923,
- 56.18458
- ],
- [
- 11.74564,
- 56.27432
- ],
- [
- 11.58433,
- 56.27779
- ]
- ],
- [
- [
- 14.68259,
- 55.36394
- ],
- [
- 14.83952,
- 55.35652
- ],
- [
- 14.82638,
- 55.26713
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.1532,
- 55.34108
- ],
- [
- 15.30992,
- 55.33306
- ],
- [
- 15.29572,
- 55.24374
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.12556,
- 55.16238
- ],
- [
- 15.28158,
- 55.15442
- ],
- [
- 15.25356,
- 54.97576
- ],
- [
- 14.63175,
- 55.00625
- ],
- [
- 14.68259,
- 55.36394
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geodatastyrelsen og Danske Kommuner",
- "url": "https://download.kortforsyningen.dk/content/vilkaar-og-betingelser"
- },
- "best": true,
- "country_code": "DK",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png",
- "id": "Geodatastyrelsen_Denmark",
- "max_zoom": 21,
- "name": "SDFE aerial imagery",
- "type": "tms",
- "url": "https://osmtools.septima.dk/mapproxy/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.37439,
- 54.95517
- ],
- [
- 8.36838,
- 55.40421
- ],
- [
- 8.2104,
- 55.40398
- ],
- [
- 8.20873,
- 55.49373
- ],
- [
- 8.05027,
- 55.49247
- ],
- [
- 8.01851,
- 56.75014
- ],
- [
- 8.18192,
- 56.75099
- ],
- [
- 8.17633,
- 57.02089
- ],
- [
- 8.34133,
- 57.02199
- ],
- [
- 8.33925,
- 57.11196
- ],
- [
- 8.50544,
- 57.11232
- ],
- [
- 8.50339,
- 57.20205
- ],
- [
- 9.33163,
- 57.20276
- ],
- [
- 9.33191,
- 57.29248
- ],
- [
- 9.49789,
- 57.29196
- ],
- [
- 9.49886,
- 57.38206
- ],
- [
- 9.66497,
- 57.38116
- ],
- [
- 9.66873,
- 57.56056
- ],
- [
- 9.8352,
- 57.55963
- ],
- [
- 9.83749,
- 57.64933
- ],
- [
- 10.17257,
- 57.64628
- ],
- [
- 10.17542,
- 57.73678
- ],
- [
- 10.51183,
- 57.73303
- ],
- [
- 10.51521,
- 57.82289
- ],
- [
- 10.68349,
- 57.82077
- ],
- [
- 10.67516,
- 57.6412
- ],
- [
- 10.5077,
- 57.64331
- ],
- [
- 10.504,
- 57.55351
- ],
- [
- 10.67104,
- 57.55141
- ],
- [
- 10.65078,
- 57.10245
- ],
- [
- 10.48577,
- 57.10451
- ],
- [
- 10.47862,
- 56.92491
- ],
- [
- 10.3144,
- 56.92676
- ],
- [
- 10.31123,
- 56.83693
- ],
- [
- 10.47503,
- 56.83509
- ],
- [
- 10.4649,
- 56.56567
- ],
- [
- 10.95242,
- 56.55898
- ],
- [
- 10.94792,
- 56.46922
- ],
- [
- 11.10993,
- 56.46647
- ],
- [
- 11.10526,
- 56.37683
- ],
- [
- 10.94299,
- 56.37953
- ],
- [
- 10.93412,
- 56.19948
- ],
- [
- 10.77197,
- 56.20202
- ],
- [
- 10.76948,
- 56.11201
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.28659,
- 56.11868
- ],
- [
- 10.28315,
- 56.02819
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.4335,
- 55.66935
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.74381,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.90518,
- 55.39539
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.04586,
- 55.03186
- ],
- [
- 11.20308,
- 55.02475
- ],
- [
- 11.20308,
- 55.11714
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.07896,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.92587,
- 55.66702
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.75623,
- 55.75792
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.60521,
- 56.02475
- ],
- [
- 10.92587,
- 56.02012
- ],
- [
- 10.91971,
- 55.93094
- ],
- [
- 11.08028,
- 55.92792
- ],
- [
- 11.08581,
- 56.01783
- ],
- [
- 11.7265,
- 56.00506
- ],
- [
- 11.732,
- 56.09521
- ],
- [
- 12.05403,
- 56.08713
- ],
- [
- 12.06085,
- 56.17626
- ],
- [
- 12.70235,
- 56.15944
- ],
- [
- 12.66111,
- 55.71143
- ],
- [
- 12.97923,
- 55.7014
- ],
- [
- 12.96129,
- 55.52173
- ],
- [
- 12.32687,
- 55.54121
- ],
- [
- 12.32061,
- 55.45137
- ],
- [
- 12.47782,
- 55.44707
- ],
- [
- 12.47024,
- 55.35705
- ],
- [
- 12.62697,
- 55.35238
- ],
- [
- 12.62009,
- 55.26326
- ],
- [
- 12.46273,
- 55.26722
- ],
- [
- 12.45529,
- 55.17782
- ],
- [
- 12.2987,
- 55.18223
- ],
- [
- 12.28973,
- 55.09236
- ],
- [
- 12.60486,
- 55.08329
- ],
- [
- 12.5872,
- 54.90363
- ],
- [
- 12.27666,
- 54.9119
- ],
- [
- 12.26102,
- 54.73316
- ],
- [
- 12.10707,
- 54.73782
- ],
- [
- 12.08586,
- 54.46817
- ],
- [
- 11.7795,
- 54.47536
- ],
- [
- 11.78374,
- 54.56548
- ],
- [
- 11.16585,
- 54.57822
- ],
- [
- 11.17064,
- 54.66865
- ],
- [
- 10.86172,
- 54.6734
- ],
- [
- 10.86512,
- 54.76347
- ],
- [
- 10.77136,
- 54.76439
- ],
- [
- 10.77073,
- 54.73728
- ],
- [
- 10.75514,
- 54.73758
- ],
- [
- 10.7544,
- 54.71957
- ],
- [
- 10.73891,
- 54.71976
- ],
- [
- 10.73844,
- 54.71085
- ],
- [
- 10.70745,
- 54.7113
- ],
- [
- 10.70411,
- 54.67567
- ],
- [
- 10.5511,
- 54.67817
- ],
- [
- 10.55472,
- 54.76702
- ],
- [
- 10.2424,
- 54.77059
- ],
- [
- 10.24598,
- 54.86047
- ],
- [
- 10.09023,
- 54.86221
- ],
- [
- 10.08737,
- 54.77239
- ],
- [
- 9.15558,
- 54.77696
- ],
- [
- 9.15628,
- 54.86754
- ],
- [
- 8.5322,
- 54.86638
- ],
- [
- 8.53143,
- 54.95516
- ],
- [
- 8.37439,
- 54.95517
- ]
- ],
- [
- [
- 11.45777,
- 56.81955
- ],
- [
- 11.78492,
- 56.81274
- ],
- [
- 11.77167,
- 56.63328
- ],
- [
- 11.44596,
- 56.64011
- ],
- [
- 11.45777,
- 56.81955
- ]
- ],
- [
- [
- 11.32747,
- 57.3613
- ],
- [
- 11.31618,
- 57.1818
- ],
- [
- 11.15087,
- 57.18473
- ],
- [
- 11.14566,
- 57.09496
- ],
- [
- 10.81577,
- 57.10017
- ],
- [
- 10.82906,
- 57.36953
- ],
- [
- 11.32747,
- 57.3613
- ]
- ],
- [
- [
- 11.58433,
- 56.27779
- ],
- [
- 11.57829,
- 56.18804
- ],
- [
- 11.73923,
- 56.18458
- ],
- [
- 11.74564,
- 56.27432
- ],
- [
- 11.58433,
- 56.27779
- ]
- ],
- [
- [
- 14.68259,
- 55.36394
- ],
- [
- 14.83952,
- 55.35652
- ],
- [
- 14.82638,
- 55.26713
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.1532,
- 55.34108
- ],
- [
- 15.30992,
- 55.33306
- ],
- [
- 15.29572,
- 55.24374
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.12556,
- 55.16238
- ],
- [
- 15.28158,
- 55.15442
- ],
- [
- 15.25356,
- 54.97576
- ],
- [
- 14.63175,
- 55.00625
- ],
- [
- 14.68259,
- 55.36394
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geodatastyrelsen og Danske Kommuner"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:4093",
- "EPSG:4094",
- "EPSG:4095",
- "EPSG:4096",
- "EPSG:3395",
- "EPSG:3857"
- ],
- "country_code": "DK",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png",
- "id": "Geodatastyrelsen_Cadastral_Parcels_INSPIRE_View",
- "max_zoom": 20,
- "name": "SDFE Cadastral Parcels INSPIRE View",
- "type": "wms",
- "url": "https://kortforsyningen.kms.dk/cp_inspire?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=CP.CadastralParcel&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.37439,
- 54.95517
- ],
- [
- 8.36838,
- 55.40421
- ],
- [
- 8.2104,
- 55.40398
- ],
- [
- 8.20873,
- 55.49373
- ],
- [
- 8.05027,
- 55.49247
- ],
- [
- 8.01851,
- 56.75014
- ],
- [
- 8.18192,
- 56.75099
- ],
- [
- 8.17633,
- 57.02089
- ],
- [
- 8.34133,
- 57.02199
- ],
- [
- 8.33925,
- 57.11196
- ],
- [
- 8.50544,
- 57.11232
- ],
- [
- 8.50339,
- 57.20205
- ],
- [
- 9.33163,
- 57.20276
- ],
- [
- 9.33191,
- 57.29248
- ],
- [
- 9.49789,
- 57.29196
- ],
- [
- 9.49886,
- 57.38206
- ],
- [
- 9.66497,
- 57.38116
- ],
- [
- 9.66873,
- 57.56056
- ],
- [
- 9.8352,
- 57.55963
- ],
- [
- 9.83749,
- 57.64933
- ],
- [
- 10.17257,
- 57.64628
- ],
- [
- 10.17542,
- 57.73678
- ],
- [
- 10.51183,
- 57.73303
- ],
- [
- 10.51521,
- 57.82289
- ],
- [
- 10.68349,
- 57.82077
- ],
- [
- 10.67516,
- 57.6412
- ],
- [
- 10.5077,
- 57.64331
- ],
- [
- 10.504,
- 57.55351
- ],
- [
- 10.67104,
- 57.55141
- ],
- [
- 10.65078,
- 57.10245
- ],
- [
- 10.48577,
- 57.10451
- ],
- [
- 10.47862,
- 56.92491
- ],
- [
- 10.3144,
- 56.92676
- ],
- [
- 10.31123,
- 56.83693
- ],
- [
- 10.47503,
- 56.83509
- ],
- [
- 10.4649,
- 56.56567
- ],
- [
- 10.95242,
- 56.55898
- ],
- [
- 10.94792,
- 56.46922
- ],
- [
- 11.10993,
- 56.46647
- ],
- [
- 11.10526,
- 56.37683
- ],
- [
- 10.94299,
- 56.37953
- ],
- [
- 10.93412,
- 56.19948
- ],
- [
- 10.77197,
- 56.20202
- ],
- [
- 10.76948,
- 56.11201
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.28659,
- 56.11868
- ],
- [
- 10.28315,
- 56.02819
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.4335,
- 55.66935
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.74381,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.90518,
- 55.39539
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.04586,
- 55.03186
- ],
- [
- 11.20308,
- 55.02475
- ],
- [
- 11.20308,
- 55.11714
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.07896,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.92587,
- 55.66702
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.75623,
- 55.75792
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.60521,
- 56.02475
- ],
- [
- 10.92587,
- 56.02012
- ],
- [
- 10.91971,
- 55.93094
- ],
- [
- 11.08028,
- 55.92792
- ],
- [
- 11.08581,
- 56.01783
- ],
- [
- 11.7265,
- 56.00506
- ],
- [
- 11.732,
- 56.09521
- ],
- [
- 12.05403,
- 56.08713
- ],
- [
- 12.06085,
- 56.17626
- ],
- [
- 12.70235,
- 56.15944
- ],
- [
- 12.66111,
- 55.71143
- ],
- [
- 12.97923,
- 55.7014
- ],
- [
- 12.96129,
- 55.52173
- ],
- [
- 12.32687,
- 55.54121
- ],
- [
- 12.32061,
- 55.45137
- ],
- [
- 12.47782,
- 55.44707
- ],
- [
- 12.47024,
- 55.35705
- ],
- [
- 12.62697,
- 55.35238
- ],
- [
- 12.62009,
- 55.26326
- ],
- [
- 12.46273,
- 55.26722
- ],
- [
- 12.45529,
- 55.17782
- ],
- [
- 12.2987,
- 55.18223
- ],
- [
- 12.28973,
- 55.09236
- ],
- [
- 12.60486,
- 55.08329
- ],
- [
- 12.5872,
- 54.90363
- ],
- [
- 12.27666,
- 54.9119
- ],
- [
- 12.26102,
- 54.73316
- ],
- [
- 12.10707,
- 54.73782
- ],
- [
- 12.08586,
- 54.46817
- ],
- [
- 11.7795,
- 54.47536
- ],
- [
- 11.78374,
- 54.56548
- ],
- [
- 11.16585,
- 54.57822
- ],
- [
- 11.17064,
- 54.66865
- ],
- [
- 10.86172,
- 54.6734
- ],
- [
- 10.86512,
- 54.76347
- ],
- [
- 10.77136,
- 54.76439
- ],
- [
- 10.77073,
- 54.73728
- ],
- [
- 10.75514,
- 54.73758
- ],
- [
- 10.7544,
- 54.71957
- ],
- [
- 10.73891,
- 54.71976
- ],
- [
- 10.73844,
- 54.71085
- ],
- [
- 10.70745,
- 54.7113
- ],
- [
- 10.70411,
- 54.67567
- ],
- [
- 10.5511,
- 54.67817
- ],
- [
- 10.55472,
- 54.76702
- ],
- [
- 10.2424,
- 54.77059
- ],
- [
- 10.24598,
- 54.86047
- ],
- [
- 10.09023,
- 54.86221
- ],
- [
- 10.08737,
- 54.77239
- ],
- [
- 9.15558,
- 54.77696
- ],
- [
- 9.15628,
- 54.86754
- ],
- [
- 8.5322,
- 54.86638
- ],
- [
- 8.53143,
- 54.95516
- ],
- [
- 8.37439,
- 54.95517
- ]
- ],
- [
- [
- 11.45777,
- 56.81955
- ],
- [
- 11.78492,
- 56.81274
- ],
- [
- 11.77167,
- 56.63328
- ],
- [
- 11.44596,
- 56.64011
- ],
- [
- 11.45777,
- 56.81955
- ]
- ],
- [
- [
- 11.32747,
- 57.3613
- ],
- [
- 11.31618,
- 57.1818
- ],
- [
- 11.15087,
- 57.18473
- ],
- [
- 11.14566,
- 57.09496
- ],
- [
- 10.81577,
- 57.10017
- ],
- [
- 10.82906,
- 57.36953
- ],
- [
- 11.32747,
- 57.3613
- ]
- ],
- [
- [
- 11.58433,
- 56.27779
- ],
- [
- 11.57829,
- 56.18804
- ],
- [
- 11.73923,
- 56.18458
- ],
- [
- 11.74564,
- 56.27432
- ],
- [
- 11.58433,
- 56.27779
- ]
- ],
- [
- [
- 14.68259,
- 55.36394
- ],
- [
- 14.83952,
- 55.35652
- ],
- [
- 14.82638,
- 55.26713
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.1532,
- 55.34108
- ],
- [
- 15.30992,
- 55.33306
- ],
- [
- 15.29572,
- 55.24374
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.12556,
- 55.16238
- ],
- [
- 15.28158,
- 55.15442
- ],
- [
- 15.25356,
- 54.97576
- ],
- [
- 14.63175,
- 55.00625
- ],
- [
- 14.68259,
- 55.36394
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geodatastyrelsen og Danske Kommuner"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:4093",
- "EPSG:4094",
- "EPSG:4095",
- "EPSG:4096",
- "EPSG:3395",
- "EPSG:3857"
- ],
- "country_code": "DK",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png",
- "id": "Geodatastyrelsen_DTK_Kort25",
- "max_zoom": 19,
- "name": "SDFE DTK Kort25",
- "type": "wms",
- "url": "https://kortforsyningen.kms.dk/topo25?FORMAT=image/png&VERSION=1.1.1&login=OpenStreetMapDK2015&password=Gall4Peters&SERVICE=WMS&REQUEST=GetMap&Layers=topo25_klassisk&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.37439,
- 54.95517
- ],
- [
- 8.36838,
- 55.40421
- ],
- [
- 8.2104,
- 55.40398
- ],
- [
- 8.20873,
- 55.49373
- ],
- [
- 8.05027,
- 55.49247
- ],
- [
- 8.01851,
- 56.75014
- ],
- [
- 8.18192,
- 56.75099
- ],
- [
- 8.17633,
- 57.02089
- ],
- [
- 8.34133,
- 57.02199
- ],
- [
- 8.33925,
- 57.11196
- ],
- [
- 8.50544,
- 57.11232
- ],
- [
- 8.50339,
- 57.20205
- ],
- [
- 9.33163,
- 57.20276
- ],
- [
- 9.33191,
- 57.29248
- ],
- [
- 9.49789,
- 57.29196
- ],
- [
- 9.49886,
- 57.38206
- ],
- [
- 9.66497,
- 57.38116
- ],
- [
- 9.66873,
- 57.56056
- ],
- [
- 9.8352,
- 57.55963
- ],
- [
- 9.83749,
- 57.64933
- ],
- [
- 10.17257,
- 57.64628
- ],
- [
- 10.17542,
- 57.73678
- ],
- [
- 10.51183,
- 57.73303
- ],
- [
- 10.51521,
- 57.82289
- ],
- [
- 10.68349,
- 57.82077
- ],
- [
- 10.67516,
- 57.6412
- ],
- [
- 10.5077,
- 57.64331
- ],
- [
- 10.504,
- 57.55351
- ],
- [
- 10.67104,
- 57.55141
- ],
- [
- 10.65078,
- 57.10245
- ],
- [
- 10.48577,
- 57.10451
- ],
- [
- 10.47862,
- 56.92491
- ],
- [
- 10.3144,
- 56.92676
- ],
- [
- 10.31123,
- 56.83693
- ],
- [
- 10.47503,
- 56.83509
- ],
- [
- 10.4649,
- 56.56567
- ],
- [
- 10.95242,
- 56.55898
- ],
- [
- 10.94792,
- 56.46922
- ],
- [
- 11.10993,
- 56.46647
- ],
- [
- 11.10526,
- 56.37683
- ],
- [
- 10.94299,
- 56.37953
- ],
- [
- 10.93412,
- 56.19948
- ],
- [
- 10.77197,
- 56.20202
- ],
- [
- 10.76948,
- 56.11201
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.28659,
- 56.11868
- ],
- [
- 10.28315,
- 56.02819
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.4335,
- 55.66935
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.74381,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.90518,
- 55.39539
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.04586,
- 55.03186
- ],
- [
- 11.20308,
- 55.02475
- ],
- [
- 11.20308,
- 55.11714
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.07896,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.92587,
- 55.66702
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.75623,
- 55.75792
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.60521,
- 56.02475
- ],
- [
- 10.92587,
- 56.02012
- ],
- [
- 10.91971,
- 55.93094
- ],
- [
- 11.08028,
- 55.92792
- ],
- [
- 11.08581,
- 56.01783
- ],
- [
- 11.7265,
- 56.00506
- ],
- [
- 11.732,
- 56.09521
- ],
- [
- 12.05403,
- 56.08713
- ],
- [
- 12.06085,
- 56.17626
- ],
- [
- 12.70235,
- 56.15944
- ],
- [
- 12.66111,
- 55.71143
- ],
- [
- 12.97923,
- 55.7014
- ],
- [
- 12.96129,
- 55.52173
- ],
- [
- 12.32687,
- 55.54121
- ],
- [
- 12.32061,
- 55.45137
- ],
- [
- 12.47782,
- 55.44707
- ],
- [
- 12.47024,
- 55.35705
- ],
- [
- 12.62697,
- 55.35238
- ],
- [
- 12.62009,
- 55.26326
- ],
- [
- 12.46273,
- 55.26722
- ],
- [
- 12.45529,
- 55.17782
- ],
- [
- 12.2987,
- 55.18223
- ],
- [
- 12.28973,
- 55.09236
- ],
- [
- 12.60486,
- 55.08329
- ],
- [
- 12.5872,
- 54.90363
- ],
- [
- 12.27666,
- 54.9119
- ],
- [
- 12.26102,
- 54.73316
- ],
- [
- 12.10707,
- 54.73782
- ],
- [
- 12.08586,
- 54.46817
- ],
- [
- 11.7795,
- 54.47536
- ],
- [
- 11.78374,
- 54.56548
- ],
- [
- 11.16585,
- 54.57822
- ],
- [
- 11.17064,
- 54.66865
- ],
- [
- 10.86172,
- 54.6734
- ],
- [
- 10.86512,
- 54.76347
- ],
- [
- 10.77136,
- 54.76439
- ],
- [
- 10.77073,
- 54.73728
- ],
- [
- 10.75514,
- 54.73758
- ],
- [
- 10.7544,
- 54.71957
- ],
- [
- 10.73891,
- 54.71976
- ],
- [
- 10.73844,
- 54.71085
- ],
- [
- 10.70745,
- 54.7113
- ],
- [
- 10.70411,
- 54.67567
- ],
- [
- 10.5511,
- 54.67817
- ],
- [
- 10.55472,
- 54.76702
- ],
- [
- 10.2424,
- 54.77059
- ],
- [
- 10.24598,
- 54.86047
- ],
- [
- 10.09023,
- 54.86221
- ],
- [
- 10.08737,
- 54.77239
- ],
- [
- 9.15558,
- 54.77696
- ],
- [
- 9.15628,
- 54.86754
- ],
- [
- 8.5322,
- 54.86638
- ],
- [
- 8.53143,
- 54.95516
- ],
- [
- 8.37439,
- 54.95517
- ]
- ],
- [
- [
- 11.45777,
- 56.81955
- ],
- [
- 11.78492,
- 56.81274
- ],
- [
- 11.77167,
- 56.63328
- ],
- [
- 11.44596,
- 56.64011
- ],
- [
- 11.45777,
- 56.81955
- ]
- ],
- [
- [
- 11.32747,
- 57.3613
- ],
- [
- 11.31618,
- 57.1818
- ],
- [
- 11.15087,
- 57.18473
- ],
- [
- 11.14566,
- 57.09496
- ],
- [
- 10.81577,
- 57.10017
- ],
- [
- 10.82906,
- 57.36953
- ],
- [
- 11.32747,
- 57.3613
- ]
- ],
- [
- [
- 11.58433,
- 56.27779
- ],
- [
- 11.57829,
- 56.18804
- ],
- [
- 11.73923,
- 56.18458
- ],
- [
- 11.74564,
- 56.27432
- ],
- [
- 11.58433,
- 56.27779
- ]
- ],
- [
- [
- 14.68259,
- 55.36394
- ],
- [
- 14.83952,
- 55.35652
- ],
- [
- 14.82638,
- 55.26713
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.1532,
- 55.34108
- ],
- [
- 15.30992,
- 55.33306
- ],
- [
- 15.29572,
- 55.24374
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.12556,
- 55.16238
- ],
- [
- 15.28158,
- 55.15442
- ],
- [
- 15.25356,
- 54.97576
- ],
- [
- 14.63175,
- 55.00625
- ],
- [
- 14.68259,
- 55.36394
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geodatastyrelsen og Danske Kommuner"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:4093",
- "EPSG:4094",
- "EPSG:4095",
- "EPSG:4096",
- "EPSG:3395",
- "EPSG:3857"
- ],
- "country_code": "DK",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png",
- "id": "Geodatastyrelsen_Skaermkort",
- "max_zoom": 19,
- "name": "SDFE Skærmkort",
- "type": "wms",
- "url": "https://kortforsyningen.kms.dk/topo_skaermkort?FORMAT=image/png&VERSION=1.1.1&login=OpenStreetMapDK2015&password=Gall4Peters&SERVICE=WMS&REQUEST=GetMap&Layers=dtk_skaermkort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.37439,
- 54.95517
- ],
- [
- 8.36838,
- 55.40421
- ],
- [
- 8.2104,
- 55.40398
- ],
- [
- 8.20873,
- 55.49373
- ],
- [
- 8.05027,
- 55.49247
- ],
- [
- 8.01851,
- 56.75014
- ],
- [
- 8.18192,
- 56.75099
- ],
- [
- 8.17633,
- 57.02089
- ],
- [
- 8.34133,
- 57.02199
- ],
- [
- 8.33925,
- 57.11196
- ],
- [
- 8.50544,
- 57.11232
- ],
- [
- 8.50339,
- 57.20205
- ],
- [
- 9.33163,
- 57.20276
- ],
- [
- 9.33191,
- 57.29248
- ],
- [
- 9.49789,
- 57.29196
- ],
- [
- 9.49886,
- 57.38206
- ],
- [
- 9.66497,
- 57.38116
- ],
- [
- 9.66873,
- 57.56056
- ],
- [
- 9.8352,
- 57.55963
- ],
- [
- 9.83749,
- 57.64933
- ],
- [
- 10.17257,
- 57.64628
- ],
- [
- 10.17542,
- 57.73678
- ],
- [
- 10.51183,
- 57.73303
- ],
- [
- 10.51521,
- 57.82289
- ],
- [
- 10.68349,
- 57.82077
- ],
- [
- 10.67516,
- 57.6412
- ],
- [
- 10.5077,
- 57.64331
- ],
- [
- 10.504,
- 57.55351
- ],
- [
- 10.67104,
- 57.55141
- ],
- [
- 10.65078,
- 57.10245
- ],
- [
- 10.48577,
- 57.10451
- ],
- [
- 10.47862,
- 56.92491
- ],
- [
- 10.3144,
- 56.92676
- ],
- [
- 10.31123,
- 56.83693
- ],
- [
- 10.47503,
- 56.83509
- ],
- [
- 10.4649,
- 56.56567
- ],
- [
- 10.95242,
- 56.55898
- ],
- [
- 10.94792,
- 56.46922
- ],
- [
- 11.10993,
- 56.46647
- ],
- [
- 11.10526,
- 56.37683
- ],
- [
- 10.94299,
- 56.37953
- ],
- [
- 10.93412,
- 56.19948
- ],
- [
- 10.77197,
- 56.20202
- ],
- [
- 10.76948,
- 56.11201
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.28659,
- 56.11868
- ],
- [
- 10.28315,
- 56.02819
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.4335,
- 55.66935
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.74381,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.90518,
- 55.39539
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.04586,
- 55.03186
- ],
- [
- 11.20308,
- 55.02475
- ],
- [
- 11.20308,
- 55.11714
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.07896,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.92587,
- 55.66702
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.75623,
- 55.75792
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.60521,
- 56.02475
- ],
- [
- 10.92587,
- 56.02012
- ],
- [
- 10.91971,
- 55.93094
- ],
- [
- 11.08028,
- 55.92792
- ],
- [
- 11.08581,
- 56.01783
- ],
- [
- 11.7265,
- 56.00506
- ],
- [
- 11.732,
- 56.09521
- ],
- [
- 12.05403,
- 56.08713
- ],
- [
- 12.06085,
- 56.17626
- ],
- [
- 12.70235,
- 56.15944
- ],
- [
- 12.66111,
- 55.71143
- ],
- [
- 12.97923,
- 55.7014
- ],
- [
- 12.96129,
- 55.52173
- ],
- [
- 12.32687,
- 55.54121
- ],
- [
- 12.32061,
- 55.45137
- ],
- [
- 12.47782,
- 55.44707
- ],
- [
- 12.47024,
- 55.35705
- ],
- [
- 12.62697,
- 55.35238
- ],
- [
- 12.62009,
- 55.26326
- ],
- [
- 12.46273,
- 55.26722
- ],
- [
- 12.45529,
- 55.17782
- ],
- [
- 12.2987,
- 55.18223
- ],
- [
- 12.28973,
- 55.09236
- ],
- [
- 12.60486,
- 55.08329
- ],
- [
- 12.5872,
- 54.90363
- ],
- [
- 12.27666,
- 54.9119
- ],
- [
- 12.26102,
- 54.73316
- ],
- [
- 12.10707,
- 54.73782
- ],
- [
- 12.08586,
- 54.46817
- ],
- [
- 11.7795,
- 54.47536
- ],
- [
- 11.78374,
- 54.56548
- ],
- [
- 11.16585,
- 54.57822
- ],
- [
- 11.17064,
- 54.66865
- ],
- [
- 10.86172,
- 54.6734
- ],
- [
- 10.86512,
- 54.76347
- ],
- [
- 10.77136,
- 54.76439
- ],
- [
- 10.77073,
- 54.73728
- ],
- [
- 10.75514,
- 54.73758
- ],
- [
- 10.7544,
- 54.71957
- ],
- [
- 10.73891,
- 54.71976
- ],
- [
- 10.73844,
- 54.71085
- ],
- [
- 10.70745,
- 54.7113
- ],
- [
- 10.70411,
- 54.67567
- ],
- [
- 10.5511,
- 54.67817
- ],
- [
- 10.55472,
- 54.76702
- ],
- [
- 10.2424,
- 54.77059
- ],
- [
- 10.24598,
- 54.86047
- ],
- [
- 10.09023,
- 54.86221
- ],
- [
- 10.08737,
- 54.77239
- ],
- [
- 9.15558,
- 54.77696
- ],
- [
- 9.15628,
- 54.86754
- ],
- [
- 8.5322,
- 54.86638
- ],
- [
- 8.53143,
- 54.95516
- ],
- [
- 8.37439,
- 54.95517
- ]
- ],
- [
- [
- 11.45777,
- 56.81955
- ],
- [
- 11.78492,
- 56.81274
- ],
- [
- 11.77167,
- 56.63328
- ],
- [
- 11.44596,
- 56.64011
- ],
- [
- 11.45777,
- 56.81955
- ]
- ],
- [
- [
- 11.32747,
- 57.3613
- ],
- [
- 11.31618,
- 57.1818
- ],
- [
- 11.15087,
- 57.18473
- ],
- [
- 11.14566,
- 57.09496
- ],
- [
- 10.81577,
- 57.10017
- ],
- [
- 10.82906,
- 57.36953
- ],
- [
- 11.32747,
- 57.3613
- ]
- ],
- [
- [
- 11.58433,
- 56.27779
- ],
- [
- 11.57829,
- 56.18804
- ],
- [
- 11.73923,
- 56.18458
- ],
- [
- 11.74564,
- 56.27432
- ],
- [
- 11.58433,
- 56.27779
- ]
- ],
- [
- [
- 14.68259,
- 55.36394
- ],
- [
- 14.83952,
- 55.35652
- ],
- [
- 14.82638,
- 55.26713
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.1532,
- 55.34108
- ],
- [
- 15.30992,
- 55.33306
- ],
- [
- 15.29572,
- 55.24374
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.12556,
- 55.16238
- ],
- [
- 15.28158,
- 55.15442
- ],
- [
- 15.25356,
- 54.97576
- ],
- [
- 14.63175,
- 55.00625
- ],
- [
- 14.68259,
- 55.36394
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geodatastyrelsen og Danske Kommuner"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:4093",
- "EPSG:4094",
- "EPSG:4095",
- "EPSG:4096",
- "EPSG:3395",
- "EPSG:3857"
- ],
- "country_code": "DK",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png",
- "id": "SDFE_Overflade_Skyggekort_40cm",
- "max_zoom": 20,
- "name": "SDFE Surface Shadow Map (40 cm)",
- "type": "wms",
- "url": "https://kortforsyningen.kms.dk/dhm?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=dhm_overflade_skyggekort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.37439,
- 54.95517
- ],
- [
- 8.36838,
- 55.40421
- ],
- [
- 8.2104,
- 55.40398
- ],
- [
- 8.20873,
- 55.49373
- ],
- [
- 8.05027,
- 55.49247
- ],
- [
- 8.01851,
- 56.75014
- ],
- [
- 8.18192,
- 56.75099
- ],
- [
- 8.17633,
- 57.02089
- ],
- [
- 8.34133,
- 57.02199
- ],
- [
- 8.33925,
- 57.11196
- ],
- [
- 8.50544,
- 57.11232
- ],
- [
- 8.50339,
- 57.20205
- ],
- [
- 9.33163,
- 57.20276
- ],
- [
- 9.33191,
- 57.29248
- ],
- [
- 9.49789,
- 57.29196
- ],
- [
- 9.49886,
- 57.38206
- ],
- [
- 9.66497,
- 57.38116
- ],
- [
- 9.66873,
- 57.56056
- ],
- [
- 9.8352,
- 57.55963
- ],
- [
- 9.83749,
- 57.64933
- ],
- [
- 10.17257,
- 57.64628
- ],
- [
- 10.17542,
- 57.73678
- ],
- [
- 10.51183,
- 57.73303
- ],
- [
- 10.51521,
- 57.82289
- ],
- [
- 10.68349,
- 57.82077
- ],
- [
- 10.67516,
- 57.6412
- ],
- [
- 10.5077,
- 57.64331
- ],
- [
- 10.504,
- 57.55351
- ],
- [
- 10.67104,
- 57.55141
- ],
- [
- 10.65078,
- 57.10245
- ],
- [
- 10.48577,
- 57.10451
- ],
- [
- 10.47862,
- 56.92491
- ],
- [
- 10.3144,
- 56.92676
- ],
- [
- 10.31123,
- 56.83693
- ],
- [
- 10.47503,
- 56.83509
- ],
- [
- 10.4649,
- 56.56567
- ],
- [
- 10.95242,
- 56.55898
- ],
- [
- 10.94792,
- 56.46922
- ],
- [
- 11.10993,
- 56.46647
- ],
- [
- 11.10526,
- 56.37683
- ],
- [
- 10.94299,
- 56.37953
- ],
- [
- 10.93412,
- 56.19948
- ],
- [
- 10.77197,
- 56.20202
- ],
- [
- 10.76948,
- 56.11201
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.28659,
- 56.11868
- ],
- [
- 10.28315,
- 56.02819
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.4335,
- 55.66935
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.74381,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.90518,
- 55.39539
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.04586,
- 55.03186
- ],
- [
- 11.20308,
- 55.02475
- ],
- [
- 11.20308,
- 55.11714
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.07896,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.92587,
- 55.66702
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.75623,
- 55.75792
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.60521,
- 56.02475
- ],
- [
- 10.92587,
- 56.02012
- ],
- [
- 10.91971,
- 55.93094
- ],
- [
- 11.08028,
- 55.92792
- ],
- [
- 11.08581,
- 56.01783
- ],
- [
- 11.7265,
- 56.00506
- ],
- [
- 11.732,
- 56.09521
- ],
- [
- 12.05403,
- 56.08713
- ],
- [
- 12.06085,
- 56.17626
- ],
- [
- 12.70235,
- 56.15944
- ],
- [
- 12.66111,
- 55.71143
- ],
- [
- 12.97923,
- 55.7014
- ],
- [
- 12.96129,
- 55.52173
- ],
- [
- 12.32687,
- 55.54121
- ],
- [
- 12.32061,
- 55.45137
- ],
- [
- 12.47782,
- 55.44707
- ],
- [
- 12.47024,
- 55.35705
- ],
- [
- 12.62697,
- 55.35238
- ],
- [
- 12.62009,
- 55.26326
- ],
- [
- 12.46273,
- 55.26722
- ],
- [
- 12.45529,
- 55.17782
- ],
- [
- 12.2987,
- 55.18223
- ],
- [
- 12.28973,
- 55.09236
- ],
- [
- 12.60486,
- 55.08329
- ],
- [
- 12.5872,
- 54.90363
- ],
- [
- 12.27666,
- 54.9119
- ],
- [
- 12.26102,
- 54.73316
- ],
- [
- 12.10707,
- 54.73782
- ],
- [
- 12.08586,
- 54.46817
- ],
- [
- 11.7795,
- 54.47536
- ],
- [
- 11.78374,
- 54.56548
- ],
- [
- 11.16585,
- 54.57822
- ],
- [
- 11.17064,
- 54.66865
- ],
- [
- 10.86172,
- 54.6734
- ],
- [
- 10.86512,
- 54.76347
- ],
- [
- 10.77136,
- 54.76439
- ],
- [
- 10.77073,
- 54.73728
- ],
- [
- 10.75514,
- 54.73758
- ],
- [
- 10.7544,
- 54.71957
- ],
- [
- 10.73891,
- 54.71976
- ],
- [
- 10.73844,
- 54.71085
- ],
- [
- 10.70745,
- 54.7113
- ],
- [
- 10.70411,
- 54.67567
- ],
- [
- 10.5511,
- 54.67817
- ],
- [
- 10.55472,
- 54.76702
- ],
- [
- 10.2424,
- 54.77059
- ],
- [
- 10.24598,
- 54.86047
- ],
- [
- 10.09023,
- 54.86221
- ],
- [
- 10.08737,
- 54.77239
- ],
- [
- 9.15558,
- 54.77696
- ],
- [
- 9.15628,
- 54.86754
- ],
- [
- 8.5322,
- 54.86638
- ],
- [
- 8.53143,
- 54.95516
- ],
- [
- 8.37439,
- 54.95517
- ]
- ],
- [
- [
- 11.45777,
- 56.81955
- ],
- [
- 11.78492,
- 56.81274
- ],
- [
- 11.77167,
- 56.63328
- ],
- [
- 11.44596,
- 56.64011
- ],
- [
- 11.45777,
- 56.81955
- ]
- ],
- [
- [
- 11.32747,
- 57.3613
- ],
- [
- 11.31618,
- 57.1818
- ],
- [
- 11.15087,
- 57.18473
- ],
- [
- 11.14566,
- 57.09496
- ],
- [
- 10.81577,
- 57.10017
- ],
- [
- 10.82906,
- 57.36953
- ],
- [
- 11.32747,
- 57.3613
- ]
- ],
- [
- [
- 11.58433,
- 56.27779
- ],
- [
- 11.57829,
- 56.18804
- ],
- [
- 11.73923,
- 56.18458
- ],
- [
- 11.74564,
- 56.27432
- ],
- [
- 11.58433,
- 56.27779
- ]
- ],
- [
- [
- 14.68259,
- 55.36394
- ],
- [
- 14.83952,
- 55.35652
- ],
- [
- 14.82638,
- 55.26713
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.1532,
- 55.34108
- ],
- [
- 15.30992,
- 55.33306
- ],
- [
- 15.29572,
- 55.24374
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.12556,
- 55.16238
- ],
- [
- 15.28158,
- 55.15442
- ],
- [
- 15.25356,
- 54.97576
- ],
- [
- 14.63175,
- 55.00625
- ],
- [
- 14.68259,
- 55.36394
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Geodatastyrelsen og Danske Kommuner"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:4093",
- "EPSG:4094",
- "EPSG:4095",
- "EPSG:4096",
- "EPSG:3395",
- "EPSG:3857"
- ],
- "country_code": "DK",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png",
- "id": "SDFE_Terraen_Skyggekort_40cm",
- "max_zoom": 20,
- "name": "SDFE Terrain Shadow Map (40 cm)",
- "type": "wms",
- "url": "https://kortforsyningen.kms.dk/dhm?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=dhm_terraen_skyggekort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.35364,
- 58.85385
- ],
- [
- 22.09411,
- 58.85038
- ],
- [
- 22.09179,
- 58.8951
- ],
- [
- 22.00503,
- 58.89371
- ],
- [
- 21.99979,
- 58.98374
- ],
- [
- 22.34754,
- 58.98845
- ],
- [
- 22.34535,
- 59.03337
- ],
- [
- 22.51935,
- 59.03538
- ],
- [
- 22.51556,
- 59.1251
- ],
- [
- 22.69017,
- 59.12686
- ],
- [
- 22.69212,
- 59.08218
- ],
- [
- 22.77912,
- 59.083
- ],
- [
- 22.78083,
- 59.03814
- ],
- [
- 22.86808,
- 59.03877
- ],
- [
- 22.8693,
- 58.99399
- ],
- [
- 22.9563,
- 58.99487
- ],
- [
- 22.95495,
- 59.03959
- ],
- [
- 23.12895,
- 59.04097
- ],
- [
- 23.12786,
- 59.08582
- ],
- [
- 23.47671,
- 59.0877
- ],
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.64924,
- 59.26788
- ],
- [
- 23.64888,
- 59.31281
- ],
- [
- 23.73698,
- 59.313
- ],
- [
- 23.73649,
- 59.3578
- ],
- [
- 23.91158,
- 59.35787
- ],
- [
- 23.91207,
- 59.4028
- ],
- [
- 24.176,
- 59.4028
- ],
- [
- 24.17637,
- 59.4478
- ],
- [
- 24.26446,
- 59.44767
- ],
- [
- 24.26471,
- 59.49236
- ],
- [
- 24.70605,
- 59.49082
- ],
- [
- 24.70898,
- 59.62553
- ],
- [
- 24.79744,
- 59.62497
- ],
- [
- 24.79659,
- 59.58009
- ],
- [
- 24.97327,
- 59.57885
- ],
- [
- 24.97462,
- 59.62386
- ],
- [
- 24.88603,
- 59.62473
- ],
- [
- 24.88725,
- 59.66918
- ],
- [
- 24.9762,
- 59.66863
- ],
- [
- 24.9773,
- 59.71346
- ],
- [
- 25.06601,
- 59.71259
- ],
- [
- 25.0632,
- 59.62306
- ],
- [
- 25.24037,
- 59.62145
- ],
- [
- 25.24184,
- 59.66647
- ],
- [
- 25.33055,
- 59.66548
- ],
- [
- 25.32884,
- 59.62078
- ],
- [
- 25.41755,
- 59.61979
- ],
- [
- 25.41938,
- 59.66468
- ],
- [
- 25.6855,
- 59.66148
- ],
- [
- 25.68757,
- 59.70613
- ],
- [
- 25.86511,
- 59.70386
- ],
- [
- 25.86279,
- 59.65901
- ],
- [
- 26.12855,
- 59.65507
- ],
- [
- 26.12575,
- 59.6101
- ],
- [
- 26.39114,
- 59.60565
- ],
- [
- 26.38809,
- 59.56099
- ],
- [
- 26.82967,
- 59.55215
- ],
- [
- 26.82626,
- 59.50729
- ],
- [
- 26.91423,
- 59.50549
- ],
- [
- 26.91057,
- 59.46051
- ],
- [
- 27.96689,
- 59.43303
- ],
- [
- 27.9719,
- 59.4778
- ],
- [
- 28.03669,
- 59.4757
- ],
- [
- 28.04377,
- 59.47223
- ],
- [
- 28.04767,
- 59.46578
- ],
- [
- 28.05182,
- 59.46342
- ],
- [
- 28.06915,
- 59.46256
- ],
- [
- 28.08452,
- 59.45939
- ],
- [
- 28.12174,
- 59.44091
- ],
- [
- 28.13577,
- 59.4277
- ],
- [
- 28.13711,
- 59.42267
- ],
- [
- 28.14163,
- 59.41901
- ],
- [
- 28.16652,
- 59.41205
- ],
- [
- 28.17225,
- 59.40789
- ],
- [
- 28.19275,
- 59.4015
- ],
- [
- 28.21069,
- 59.3836
- ],
- [
- 28.21069,
- 59.37994
- ],
- [
- 28.20386,
- 59.37459
- ],
- [
- 28.21057,
- 59.37235
- ],
- [
- 28.21105,
- 59.36937
- ],
- [
- 28.20678,
- 59.36719
- ],
- [
- 28.20703,
- 59.36377
- ],
- [
- 28.19971,
- 59.36091
- ],
- [
- 28.20203,
- 59.35731
- ],
- [
- 28.19263,
- 59.35227
- ],
- [
- 28.19397,
- 59.34642
- ],
- [
- 28.16969,
- 59.33354
- ],
- [
- 28.13626,
- 59.29244
- ],
- [
- 28.12515,
- 59.28901
- ],
- [
- 28.11722,
- 59.28895
- ],
- [
- 28.1099,
- 59.29063
- ],
- [
- 28.05353,
- 59.2902
- ],
- [
- 28.02022,
- 59.28334
- ],
- [
- 27.99825,
- 59.2753
- ],
- [
- 27.97983,
- 59.27293
- ],
- [
- 27.96433,
- 59.27268
- ],
- [
- 27.95335,
- 59.26863
- ],
- [
- 27.9492,
- 59.26533
- ],
- [
- 27.90564,
- 59.24044
- ],
- [
- 27.90113,
- 59.23488
- ],
- [
- 27.901,
- 59.22639
- ],
- [
- 27.89783,
- 59.21746
- ],
- [
- 27.90235,
- 59.20728
- ],
- [
- 27.89234,
- 59.19222
- ],
- [
- 27.88978,
- 59.18379
- ],
- [
- 27.87648,
- 59.17372
- ],
- [
- 27.87184,
- 59.16841
- ],
- [
- 27.86818,
- 59.16159
- ],
- [
- 27.84414,
- 59.14814
- ],
- [
- 27.83206,
- 59.14401
- ],
- [
- 27.82035,
- 59.13362
- ],
- [
- 27.80986,
- 59.12905
- ],
- [
- 27.80595,
- 59.12166
- ],
- [
- 27.80534,
- 59.1127
- ],
- [
- 27.81071,
- 59.10819
- ],
- [
- 27.8101,
- 59.10606
- ],
- [
- 27.80205,
- 59.1028
- ],
- [
- 27.78887,
- 59.0909
- ],
- [
- 27.7907,
- 59.08112
- ],
- [
- 27.79375,
- 59.07842
- ],
- [
- 27.79411,
- 59.07566
- ],
- [
- 27.79277,
- 59.0729
- ],
- [
- 27.79302,
- 59.06927
- ],
- [
- 27.7885,
- 59.06657
- ],
- [
- 27.78265,
- 59.065
- ],
- [
- 27.77508,
- 59.0581
- ],
- [
- 27.77313,
- 59.05107
- ],
- [
- 27.77667,
- 59.04743
- ],
- [
- 27.76983,
- 59.03325
- ],
- [
- 27.76605,
- 59.03155
- ],
- [
- 27.75153,
- 59.03017
- ],
- [
- 27.74628,
- 59.02716
- ],
- [
- 27.74567,
- 59.01705
- ],
- [
- 27.74165,
- 59.00951
- ],
- [
- 27.74787,
- 58.99267
- ],
- [
- 27.74274,
- 58.98845
- ],
- [
- 27.73213,
- 58.9855
- ],
- [
- 27.6544,
- 58.98783
- ],
- [
- 27.65501,
- 58.99241
- ],
- [
- 27.39414,
- 58.99964
- ],
- [
- 27.38974,
- 58.95474
- ],
- [
- 27.12935,
- 58.96135
- ],
- [
- 27.12557,
- 58.9164
- ],
- [
- 27.03882,
- 58.91841
- ],
- [
- 27.0271,
- 58.7841
- ],
- [
- 27.11361,
- 58.78183
- ],
- [
- 27.10934,
- 58.73709
- ],
- [
- 27.19537,
- 58.73512
- ],
- [
- 27.18731,
- 58.64533
- ],
- [
- 27.27309,
- 58.64305
- ],
- [
- 27.25259,
- 58.41883
- ],
- [
- 27.53397,
- 58.41142
- ],
- [
- 27.5552,
- 58.36575
- ],
- [
- 27.51762,
- 58.33265
- ],
- [
- 27.51408,
- 58.32214
- ],
- [
- 27.49993,
- 58.32246
- ],
- [
- 27.48687,
- 58.18803
- ],
- [
- 27.52872,
- 58.18687
- ],
- [
- 27.59205,
- 58.11875
- ],
- [
- 27.63695,
- 58.09735
- ],
- [
- 27.60938,
- 58.05399
- ],
- [
- 27.62268,
- 58.0058
- ],
- [
- 27.64489,
- 58.00205
- ],
- [
- 27.65294,
- 58.00644
- ],
- [
- 27.64781,
- 58.01426
- ],
- [
- 27.64781,
- 58.02086
- ],
- [
- 27.66172,
- 58.01866
- ],
- [
- 27.66856,
- 58.01045
- ],
- [
- 27.68393,
- 58.00845
- ],
- [
- 27.6965,
- 58.0045
- ],
- [
- 27.70065,
- 57.99862
- ],
- [
- 27.69882,
- 57.98827
- ],
- [
- 27.69125,
- 57.98549
- ],
- [
- 27.68064,
- 57.97449
- ],
- [
- 27.6821,
- 57.9719
- ],
- [
- 27.68893,
- 57.97184
- ],
- [
- 27.68588,
- 57.95928
- ],
- [
- 27.65892,
- 57.9554
- ],
- [
- 27.66758,
- 57.951
- ],
- [
- 27.67161,
- 57.94627
- ],
- [
- 27.66917,
- 57.94174
- ],
- [
- 27.67649,
- 57.93552
- ],
- [
- 27.68247,
- 57.93655
- ],
- [
- 27.68613,
- 57.92794
- ],
- [
- 27.68247,
- 57.92437
- ],
- [
- 27.71078,
- 57.92392
- ],
- [
- 27.72029,
- 57.92036
- ],
- [
- 27.72054,
- 57.91174
- ],
- [
- 27.70834,
- 57.90616
- ],
- [
- 27.69882,
- 57.90616
- ],
- [
- 27.70614,
- 57.90136
- ],
- [
- 27.72896,
- 57.90739
- ],
- [
- 27.74677,
- 57.90169
- ],
- [
- 27.7536,
- 57.90409
- ],
- [
- 27.75739,
- 57.90318
- ],
- [
- 27.75592,
- 57.89806
- ],
- [
- 27.76959,
- 57.89566
- ],
- [
- 27.78094,
- 57.89832
- ],
- [
- 27.799,
- 57.89961
- ],
- [
- 27.81852,
- 57.89579
- ],
- [
- 27.82096,
- 57.89047
- ],
- [
- 27.81949,
- 57.888
- ],
- [
- 27.81059,
- 57.88612
- ],
- [
- 27.81827,
- 57.88249
- ],
- [
- 27.81169,
- 57.87204
- ],
- [
- 27.81583,
- 57.87166
- ],
- [
- 27.8184,
- 57.8651
- ],
- [
- 27.81632,
- 57.86134
- ],
- [
- 27.79875,
- 57.85205
- ],
- [
- 27.7946,
- 57.84634
- ],
- [
- 27.80058,
- 57.8442
- ],
- [
- 27.7957,
- 57.84017
- ],
- [
- 27.78862,
- 57.84186
- ],
- [
- 27.78411,
- 57.83725
- ],
- [
- 27.77715,
- 57.8325
- ],
- [
- 27.75849,
- 57.83536
- ],
- [
- 27.74165,
- 57.82679
- ],
- [
- 27.72383,
- 57.83179
- ],
- [
- 27.70541,
- 57.84192
- ],
- [
- 27.68771,
- 57.83419
- ],
- [
- 27.66636,
- 57.83653
- ],
- [
- 27.66026,
- 57.83893
- ],
- [
- 27.64818,
- 57.8377
- ],
- [
- 27.63634,
- 57.83978
- ],
- [
- 27.62487,
- 57.83751
- ],
- [
- 27.62207,
- 57.83874
- ],
- [
- 27.59791,
- 57.83328
- ],
- [
- 27.56252,
- 57.83023
- ],
- [
- 27.5563,
- 57.83127
- ],
- [
- 27.55227,
- 57.82113
- ],
- [
- 27.54446,
- 57.82204
- ],
- [
- 27.5452,
- 57.81808
- ],
- [
- 27.55056,
- 57.81769
- ],
- [
- 27.55667,
- 57.81366
- ],
- [
- 27.5408,
- 57.81288
- ],
- [
- 27.54471,
- 57.808
- ],
- [
- 27.53726,
- 57.80644
- ],
- [
- 27.53958,
- 57.80144
- ],
- [
- 27.53592,
- 57.79663
- ],
- [
- 27.53861,
- 57.79396
- ],
- [
- 27.52921,
- 57.78856
- ],
- [
- 27.5175,
- 57.78876
- ],
- [
- 27.51847,
- 57.79201
- ],
- [
- 27.50298,
- 57.78798
- ],
- [
- 27.50005,
- 57.78973
- ],
- [
- 27.4959,
- 57.78869
- ],
- [
- 27.50774,
- 57.78349
- ],
- [
- 27.51457,
- 57.77516
- ],
- [
- 27.5081,
- 57.77158
- ],
- [
- 27.51115,
- 57.76416
- ],
- [
- 27.51591,
- 57.7639
- ],
- [
- 27.52018,
- 57.75993
- ],
- [
- 27.52811,
- 57.75818
- ],
- [
- 27.53007,
- 57.75368
- ],
- [
- 27.53116,
- 57.74073
- ],
- [
- 27.548,
- 57.7333
- ],
- [
- 27.5419,
- 57.73037
- ],
- [
- 27.52799,
- 57.72946
- ],
- [
- 27.5236,
- 57.71616
- ],
- [
- 27.52762,
- 57.70899
- ],
- [
- 27.5236,
- 57.70802
- ],
- [
- 27.51652,
- 57.70873
- ],
- [
- 27.51066,
- 57.71101
- ],
- [
- 27.50859,
- 57.70723
- ],
- [
- 27.49993,
- 57.70495
- ],
- [
- 27.49529,
- 57.70749
- ],
- [
- 27.48711,
- 57.7191
- ],
- [
- 27.47357,
- 57.71545
- ],
- [
- 27.47064,
- 57.70802
- ],
- [
- 27.46149,
- 57.70619
- ],
- [
- 27.44807,
- 57.71616
- ],
- [
- 27.43086,
- 57.70756
- ],
- [
- 27.42818,
- 57.69902
- ],
- [
- 27.41341,
- 57.69915
- ],
- [
- 27.41647,
- 57.69524
- ],
- [
- 27.40744,
- 57.69276
- ],
- [
- 27.40231,
- 57.68493
- ],
- [
- 27.39133,
- 57.68539
- ],
- [
- 27.39377,
- 57.67913
- ],
- [
- 27.39145,
- 57.67671
- ],
- [
- 27.38193,
- 57.67332
- ],
- [
- 27.37779,
- 57.66836
- ],
- [
- 27.38364,
- 57.66059
- ],
- [
- 27.3801,
- 57.65883
- ],
- [
- 27.38755,
- 57.6555
- ],
- [
- 27.38047,
- 57.6495
- ],
- [
- 27.38352,
- 57.64799
- ],
- [
- 27.38157,
- 57.64368
- ],
- [
- 27.39072,
- 57.6431
- ],
- [
- 27.38816,
- 57.64009
- ],
- [
- 27.40085,
- 57.63742
- ],
- [
- 27.40317,
- 57.62905
- ],
- [
- 27.40182,
- 57.62376
- ],
- [
- 27.39597,
- 57.62115
- ],
- [
- 27.39023,
- 57.62036
- ],
- [
- 27.39084,
- 57.6169
- ],
- [
- 27.40195,
- 57.61775
- ],
- [
- 27.40634,
- 57.61546
- ],
- [
- 27.40683,
- 57.61246
- ],
- [
- 27.38572,
- 57.60304
- ],
- [
- 27.37827,
- 57.59513
- ],
- [
- 27.35692,
- 57.59696
- ],
- [
- 27.3413,
- 57.58984
- ],
- [
- 27.34179,
- 57.58539
- ],
- [
- 27.32886,
- 57.5797
- ],
- [
- 27.32141,
- 57.57898
- ],
- [
- 27.3341,
- 57.56596
- ],
- [
- 27.33178,
- 57.56066
- ],
- [
- 27.33776,
- 57.56007
- ],
- [
- 27.33886,
- 57.54671
- ],
- [
- 27.34386,
- 57.5454
- ],
- [
- 27.35472,
- 57.52575
- ],
- [
- 27.35131,
- 57.51632
- ],
- [
- 27.34569,
- 57.52104
- ],
- [
- 27.32446,
- 57.52274
- ],
- [
- 27.29664,
- 57.53859
- ],
- [
- 27.28017,
- 57.53643
- ],
- [
- 27.2737,
- 57.54311
- ],
- [
- 27.26431,
- 57.54377
- ],
- [
- 27.2637,
- 57.54841
- ],
- [
- 27.25772,
- 57.54979
- ],
- [
- 27.24796,
- 57.54769
- ],
- [
- 27.2249,
- 57.55385
- ],
- [
- 27.19329,
- 57.54966
- ],
- [
- 27.16145,
- 57.55922
- ],
- [
- 27.11654,
- 57.56118
- ],
- [
- 27.10092,
- 57.5653
- ],
- [
- 27.08506,
- 57.57538
- ],
- [
- 27.07262,
- 57.57734
- ],
- [
- 27.07225,
- 57.57989
- ],
- [
- 27.0559,
- 57.58251
- ],
- [
- 27.05285,
- 57.58087
- ],
- [
- 27.04687,
- 57.58048
- ],
- [
- 27.04492,
- 57.58251
- ],
- [
- 27.0332,
- 57.58532
- ],
- [
- 27.04126,
- 57.58761
- ],
- [
- 27.04418,
- 57.5967
- ],
- [
- 27.03101,
- 57.60461
- ],
- [
- 26.99513,
- 57.60461
- ],
- [
- 26.99233,
- 57.61076
- ],
- [
- 26.98696,
- 57.60867
- ],
- [
- 26.98366,
- 57.61174
- ],
- [
- 26.97549,
- 57.612
- ],
- [
- 26.97097,
- 57.60448
- ],
- [
- 26.9595,
- 57.60625
- ],
- [
- 26.9578,
- 57.60468
- ],
- [
- 26.94596,
- 57.60272
- ],
- [
- 26.93961,
- 57.60932
- ],
- [
- 26.95133,
- 57.61579
- ],
- [
- 26.94999,
- 57.62056
- ],
- [
- 26.94059,
- 57.61978
- ],
- [
- 26.92961,
- 57.62376
- ],
- [
- 26.92644,
- 57.6331
- ],
- [
- 26.90679,
- 57.63304
- ],
- [
- 26.89971,
- 57.63056
- ],
- [
- 26.90057,
- 57.62918
- ],
- [
- 26.89581,
- 57.62572
- ],
- [
- 26.88849,
- 57.62357
- ],
- [
- 26.88898,
- 57.62193
- ],
- [
- 26.87458,
- 57.61906
- ],
- [
- 26.87275,
- 57.61736
- ],
- [
- 26.86555,
- 57.61592
- ],
- [
- 26.85786,
- 57.60997
- ],
- [
- 26.86469,
- 57.6084
- ],
- [
- 26.85811,
- 57.60049
- ],
- [
- 26.85994,
- 57.59598
- ],
- [
- 26.86433,
- 57.59415
- ],
- [
- 26.86177,
- 57.59108
- ],
- [
- 26.84688,
- 57.5884
- ],
- [
- 26.83504,
- 57.58244
- ],
- [
- 26.81589,
- 57.58153
- ],
- [
- 26.80954,
- 57.58473
- ],
- [
- 26.79685,
- 57.58179
- ],
- [
- 26.79929,
- 57.58002
- ],
- [
- 26.79295,
- 57.57315
- ],
- [
- 26.78685,
- 57.57525
- ],
- [
- 26.7766,
- 57.55994
- ],
- [
- 26.76915,
- 57.56039
- ],
- [
- 26.76354,
- 57.56314
- ],
- [
- 26.75366,
- 57.56249
- ],
- [
- 26.75817,
- 57.5653
- ],
- [
- 26.76891,
- 57.57041
- ],
- [
- 26.77379,
- 57.57473
- ],
- [
- 26.76769,
- 57.57754
- ],
- [
- 26.74804,
- 57.5778
- ],
- [
- 26.75317,
- 57.58009
- ],
- [
- 26.73816,
- 57.58774
- ],
- [
- 26.72901,
- 57.58016
- ],
- [
- 26.73828,
- 57.57584
- ],
- [
- 26.73072,
- 57.56903
- ],
- [
- 26.72388,
- 57.57244
- ],
- [
- 26.71107,
- 57.56596
- ],
- [
- 26.69972,
- 57.57106
- ],
- [
- 26.69753,
- 57.5706
- ],
- [
- 26.69741,
- 57.56733
- ],
- [
- 26.69155,
- 57.56615
- ],
- [
- 26.67569,
- 57.56668
- ],
- [
- 26.67105,
- 57.56327
- ],
- [
- 26.6719,
- 57.55385
- ],
- [
- 26.66531,
- 57.55287
- ],
- [
- 26.64652,
- 57.55391
- ],
- [
- 26.64262,
- 57.54658
- ],
- [
- 26.63444,
- 57.54357
- ],
- [
- 26.61443,
- 57.52909
- ],
- [
- 26.61712,
- 57.50885
- ],
- [
- 26.60467,
- 57.51212
- ],
- [
- 26.60479,
- 57.51442
- ],
- [
- 26.5954,
- 57.51376
- ],
- [
- 26.59479,
- 57.51592
- ],
- [
- 26.58808,
- 57.51619
- ],
- [
- 26.59015,
- 57.52516
- ],
- [
- 26.58698,
- 57.52621
- ],
- [
- 26.58771,
- 57.53781
- ],
- [
- 26.58381,
- 57.53957
- ],
- [
- 26.57978,
- 57.53695
- ],
- [
- 26.57966,
- 57.53375
- ],
- [
- 26.56123,
- 57.5285
- ],
- [
- 26.56184,
- 57.52261
- ],
- [
- 26.5666,
- 57.51946
- ],
- [
- 26.55794,
- 57.5137
- ],
- [
- 26.52585,
- 57.51619
- ],
- [
- 26.49961,
- 57.52451
- ],
- [
- 26.49095,
- 57.54534
- ],
- [
- 26.46996,
- 57.57551
- ],
- [
- 26.40151,
- 57.57237
- ],
- [
- 26.34489,
- 57.58408
- ],
- [
- 26.33476,
- 57.5797
- ],
- [
- 26.32781,
- 57.57963
- ],
- [
- 26.32635,
- 57.58277
- ],
- [
- 26.3117,
- 57.58473
- ],
- [
- 26.30853,
- 57.59291
- ],
- [
- 26.3006,
- 57.59343
- ],
- [
- 26.29291,
- 57.59114
- ],
- [
- 26.28352,
- 57.59232
- ],
- [
- 26.28217,
- 57.5952
- ],
- [
- 26.27754,
- 57.595
- ],
- [
- 26.27034,
- 57.6001
- ],
- [
- 26.27022,
- 57.60461
- ],
- [
- 26.25423,
- 57.61383
- ],
- [
- 26.24715,
- 57.62082
- ],
- [
- 26.24813,
- 57.62775
- ],
- [
- 26.23947,
- 57.63408
- ],
- [
- 26.24203,
- 57.63539
- ],
- [
- 26.24667,
- 57.63559
- ],
- [
- 26.23959,
- 57.64649
- ],
- [
- 26.23239,
- 57.6461
- ],
- [
- 26.23117,
- 57.64904
- ],
- [
- 26.24215,
- 57.65146
- ],
- [
- 26.2363,
- 57.65753
- ],
- [
- 26.23032,
- 57.65805
- ],
- [
- 26.21043,
- 57.66601
- ],
- [
- 26.21372,
- 57.66888
- ],
- [
- 26.21092,
- 57.67071
- ],
- [
- 26.21018,
- 57.67906
- ],
- [
- 26.20079,
- 57.68102
- ],
- [
- 26.19896,
- 57.68356
- ],
- [
- 26.19444,
- 57.68519
- ],
- [
- 26.18541,
- 57.68454
- ],
- [
- 26.17712,
- 57.68761
- ],
- [
- 26.18871,
- 57.69472
- ],
- [
- 26.19859,
- 57.70906
- ],
- [
- 26.20567,
- 57.71486
- ],
- [
- 26.1726,
- 57.72867
- ],
- [
- 26.141,
- 57.73278
- ],
- [
- 26.13563,
- 57.73923
- ],
- [
- 26.13905,
- 57.74548
- ],
- [
- 26.13551,
- 57.7503
- ],
- [
- 26.10537,
- 57.757
- ],
- [
- 26.08035,
- 57.76547
- ],
- [
- 26.07974,
- 57.76384
- ],
- [
- 26.07328,
- 57.76371
- ],
- [
- 26.07047,
- 57.7656
- ],
- [
- 26.05912,
- 57.75987
- ],
- [
- 26.049,
- 57.7611
- ],
- [
- 26.0435,
- 57.76703
- ],
- [
- 26.03326,
- 57.77054
- ],
- [
- 26.02374,
- 57.76761
- ],
- [
- 26.01776,
- 57.7723
- ],
- [
- 26.02459,
- 57.77516
- ],
- [
- 26.02496,
- 57.7816
- ],
- [
- 26.02252,
- 57.78355
- ],
- [
- 26.02776,
- 57.7898
- ],
- [
- 26.03081,
- 57.79097
- ],
- [
- 26.03338,
- 57.80105
- ],
- [
- 26.03679,
- 57.80592
- ],
- [
- 26.03606,
- 57.8108
- ],
- [
- 26.04851,
- 57.82289
- ],
- [
- 26.05705,
- 57.83842
- ],
- [
- 26.05558,
- 57.84764
- ],
- [
- 26.03667,
- 57.84926
- ],
- [
- 26.02008,
- 57.84517
- ],
- [
- 26.00958,
- 57.85731
- ],
- [
- 25.99848,
- 57.85816
- ],
- [
- 25.96273,
- 57.84491
- ],
- [
- 25.931,
- 57.85244
- ],
- [
- 25.89537,
- 57.84972
- ],
- [
- 25.8883,
- 57.84595
- ],
- [
- 25.88085,
- 57.84946
- ],
- [
- 25.88573,
- 57.85277
- ],
- [
- 25.88427,
- 57.85595
- ],
- [
- 25.87561,
- 57.85796
- ],
- [
- 25.87475,
- 57.86322
- ],
- [
- 25.8595,
- 57.85614
- ],
- [
- 25.81923,
- 57.86419
- ],
- [
- 25.78312,
- 57.89948
- ],
- [
- 25.78629,
- 57.90428
- ],
- [
- 25.77165,
- 57.91206
- ],
- [
- 25.75102,
- 57.91692
- ],
- [
- 25.73724,
- 57.92295
- ],
- [
- 25.72833,
- 57.92133
- ],
- [
- 25.72247,
- 57.91245
- ],
- [
- 25.70356,
- 57.90331
- ],
- [
- 25.67916,
- 57.90461
- ],
- [
- 25.67549,
- 57.91277
- ],
- [
- 25.66207,
- 57.91511
- ],
- [
- 25.65609,
- 57.91439
- ],
- [
- 25.64889,
- 57.91666
- ],
- [
- 25.64987,
- 57.91841
- ],
- [
- 25.63828,
- 57.93059
- ],
- [
- 25.57983,
- 57.9442
- ],
- [
- 25.59399,
- 57.95961
- ],
- [
- 25.58935,
- 57.96504
- ],
- [
- 25.58239,
- 57.96783
- ],
- [
- 25.58044,
- 57.9721
- ],
- [
- 25.57483,
- 57.9741
- ],
- [
- 25.56556,
- 57.96718
- ],
- [
- 25.56604,
- 57.96258
- ],
- [
- 25.55714,
- 57.96038
- ],
- [
- 25.55567,
- 57.96711
- ],
- [
- 25.55079,
- 57.97255
- ],
- [
- 25.53725,
- 57.97139
- ],
- [
- 25.52566,
- 57.97184
- ],
- [
- 25.5226,
- 57.96802
- ],
- [
- 25.51638,
- 57.96737
- ],
- [
- 25.51211,
- 57.96977
- ],
- [
- 25.52212,
- 57.97488
- ],
- [
- 25.51943,
- 57.98031
- ],
- [
- 25.48539,
- 57.97475
- ],
- [
- 25.47843,
- 57.98006
- ],
- [
- 25.47843,
- 57.98264
- ],
- [
- 25.44219,
- 57.99616
- ],
- [
- 25.44817,
- 58.00114
- ],
- [
- 25.46648,
- 58.00515
- ],
- [
- 25.44817,
- 58.01698
- ],
- [
- 25.40693,
- 58.02893
- ],
- [
- 25.37155,
- 58.02926
- ],
- [
- 25.36374,
- 58.03171
- ],
- [
- 25.35336,
- 58.04334
- ],
- [
- 25.34482,
- 58.04676
- ],
- [
- 25.33604,
- 58.05709
- ],
- [
- 25.3292,
- 58.05858
- ],
- [
- 25.32664,
- 58.0638
- ],
- [
- 25.31981,
- 58.066
- ],
- [
- 25.31908,
- 58.06929
- ],
- [
- 25.29553,
- 58.08161
- ],
- [
- 25.28686,
- 58.08149
- ],
- [
- 25.28113,
- 58.07019
- ],
- [
- 25.266,
- 58.06716
- ],
- [
- 25.26502,
- 58.06
- ],
- [
- 25.27991,
- 58.05063
- ],
- [
- 25.29309,
- 58.0467
- ],
- [
- 25.30431,
- 58.03449
- ],
- [
- 25.30114,
- 58.01504
- ],
- [
- 25.29748,
- 58.01459
- ],
- [
- 25.30285,
- 58.00011
- ],
- [
- 25.29577,
- 57.99972
- ],
- [
- 25.29736,
- 57.99661
- ],
- [
- 25.30358,
- 57.99396
- ],
- [
- 25.30138,
- 57.99273
- ],
- [
- 25.29187,
- 57.99286
- ],
- [
- 25.28308,
- 57.98963
- ],
- [
- 25.26722,
- 57.99454
- ],
- [
- 25.25611,
- 57.9939
- ],
- [
- 25.25502,
- 58.00347
- ],
- [
- 25.2455,
- 58.00302
- ],
- [
- 25.22768,
- 58.01782
- ],
- [
- 25.24587,
- 58.01872
- ],
- [
- 25.23562,
- 58.02286
- ],
- [
- 25.23635,
- 58.02441
- ],
- [
- 25.22732,
- 58.02435
- ],
- [
- 25.22537,
- 58.02195
- ],
- [
- 25.21902,
- 58.02977
- ],
- [
- 25.21658,
- 58.04088
- ],
- [
- 25.22695,
- 58.04799
- ],
- [
- 25.22817,
- 58.05348
- ],
- [
- 25.22122,
- 58.05302
- ],
- [
- 25.22146,
- 58.05051
- ],
- [
- 25.2178,
- 58.04908
- ],
- [
- 25.21597,
- 58.05954
- ],
- [
- 25.21219,
- 58.06226
- ],
- [
- 25.20523,
- 58.06122
- ],
- [
- 25.20389,
- 58.0651
- ],
- [
- 25.21621,
- 58.07413
- ],
- [
- 25.21207,
- 58.08052
- ],
- [
- 25.19962,
- 58.08536
- ],
- [
- 25.18949,
- 58.08007
- ],
- [
- 25.19169,
- 58.07613
- ],
- [
- 25.1535,
- 58.07478
- ],
- [
- 25.15154,
- 58.07703
- ],
- [
- 25.13397,
- 58.07974
- ],
- [
- 25.10579,
- 58.07749
- ],
- [
- 25.10518,
- 58.06645
- ],
- [
- 25.07662,
- 58.06645
- ],
- [
- 25.02037,
- 58.01769
- ],
- [
- 24.99512,
- 58.01084
- ],
- [
- 24.94863,
- 58.00942
- ],
- [
- 24.83234,
- 57.97177
- ],
- [
- 24.80806,
- 57.99066
- ],
- [
- 24.74229,
- 57.98187
- ],
- [
- 24.74339,
- 57.96491
- ],
- [
- 24.7329,
- 57.96239
- ],
- [
- 24.71508,
- 57.96271
- ],
- [
- 24.6919,
- 57.94653
- ],
- [
- 24.67335,
- 57.95896
- ],
- [
- 24.64468,
- 57.95889
- ],
- [
- 24.64187,
- 57.95423
- ],
- [
- 24.64577,
- 57.95268
- ],
- [
- 24.62869,
- 57.94193
- ],
- [
- 24.61612,
- 57.94368
- ],
- [
- 24.60892,
- 57.95125
- ],
- [
- 24.58464,
- 57.96174
- ],
- [
- 24.57317,
- 57.95436
- ],
- [
- 24.54792,
- 57.94938
- ],
- [
- 24.54352,
- 57.94478
- ],
- [
- 24.5301,
- 57.94705
- ],
- [
- 24.5207,
- 57.94303
- ],
- [
- 24.51839,
- 57.93675
- ],
- [
- 24.5096,
- 57.93442
- ],
- [
- 24.51326,
- 57.93066
- ],
- [
- 24.4625,
- 57.92496
- ],
- [
- 24.44579,
- 57.90798
- ],
- [
- 24.46018,
- 57.90662
- ],
- [
- 24.45225,
- 57.89942
- ],
- [
- 24.46006,
- 57.87977
- ],
- [
- 24.41138,
- 57.86491
- ],
- [
- 24.40906,
- 57.87191
- ],
- [
- 24.33707,
- 57.87393
- ],
- [
- 24.33829,
- 58.0109
- ],
- [
- 24.42272,
- 58.01097
- ],
- [
- 24.42614,
- 58.28002
- ],
- [
- 24.51155,
- 58.2797
- ],
- [
- 24.51216,
- 58.32471
- ],
- [
- 24.42638,
- 58.32503
- ],
- [
- 24.42712,
- 58.36972
- ],
- [
- 24.34182,
- 58.37017
- ],
- [
- 24.34048,
- 58.23547
- ],
- [
- 24.17014,
- 58.23572
- ],
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.0851,
- 58.23605
- ],
- [
- 24.00066,
- 58.23579
- ],
- [
- 23.99993,
- 58.28092
- ],
- [
- 23.82971,
- 58.28047
- ],
- [
- 23.82947,
- 58.32554
- ],
- [
- 23.65864,
- 58.32496
- ],
- [
- 23.65791,
- 58.41493
- ],
- [
- 23.57225,
- 58.41468
- ],
- [
- 23.57127,
- 58.50436
- ],
- [
- 23.39935,
- 58.50359
- ],
- [
- 23.40106,
- 58.41391
- ],
- [
- 23.14421,
- 58.41238
- ],
- [
- 23.14567,
- 58.36735
- ],
- [
- 23.05989,
- 58.36703
- ],
- [
- 23.06172,
- 58.32221
- ],
- [
- 22.9757,
- 58.32157
- ],
- [
- 22.97716,
- 58.27681
- ],
- [
- 22.89187,
- 58.27598
- ],
- [
- 22.89358,
- 58.23103
- ],
- [
- 22.80865,
- 58.2302
- ],
- [
- 22.81012,
- 58.18539
- ],
- [
- 22.89529,
- 58.1861
- ],
- [
- 22.89663,
- 58.1413
- ],
- [
- 22.72641,
- 58.13982
- ],
- [
- 22.72495,
- 58.18475
- ],
- [
- 22.55522,
- 58.18276
- ],
- [
- 22.55693,
- 58.13744
- ],
- [
- 22.64173,
- 58.13886
- ],
- [
- 22.64344,
- 58.094
- ],
- [
- 22.38903,
- 58.0909
- ],
- [
- 22.38525,
- 58.18063
- ],
- [
- 22.29995,
- 58.17967
- ],
- [
- 22.30679,
- 58.04527
- ],
- [
- 22.22198,
- 58.0436
- ],
- [
- 22.22626,
- 57.95404
- ],
- [
- 22.14206,
- 57.95281
- ],
- [
- 22.1445,
- 57.90804
- ],
- [
- 22.06007,
- 57.90681
- ],
- [
- 22.06263,
- 57.86186
- ],
- [
- 21.97807,
- 57.86043
- ],
- [
- 21.96831,
- 58.04004
- ],
- [
- 22.05274,
- 58.04134
- ],
- [
- 22.04506,
- 58.17581
- ],
- [
- 21.96038,
- 58.17471
- ],
- [
- 21.95781,
- 58.21941
- ],
- [
- 21.78723,
- 58.21638
- ],
- [
- 21.78211,
- 58.30631
- ],
- [
- 21.69681,
- 58.3049
- ],
- [
- 21.69401,
- 58.34975
- ],
- [
- 21.77942,
- 58.35122
- ],
- [
- 21.76795,
- 58.53074
- ],
- [
- 22.02566,
- 58.53488
- ],
- [
- 22.02797,
- 58.49001
- ],
- [
- 22.11375,
- 58.49167
- ],
- [
- 22.11144,
- 58.53621
- ],
- [
- 22.19709,
- 58.53742
- ],
- [
- 22.19453,
- 58.5823
- ],
- [
- 22.45236,
- 58.58573
- ],
- [
- 22.44638,
- 58.7203
- ],
- [
- 22.36023,
- 58.71916
- ],
- [
- 22.35364,
- 58.85385
- ]
- ],
- [
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.29868,
- 59.26632
- ],
- [
- 23.29795,
- 59.31138
- ],
- [
- 23.47293,
- 59.31194
- ],
- [
- 23.47415,
- 59.26726
- ]
- ],
- [
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.25507,
- 58.19073
- ],
- [
- 24.25458,
- 58.14581
- ],
- [
- 24.17002,
- 58.14588
- ],
- [
- 24.17014,
- 58.1908
- ]
- ],
- [
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.08497,
- 58.10129
- ],
- [
- 23.99968,
- 58.10116
- ],
- [
- 23.99993,
- 58.05632
- ],
- [
- 23.91525,
- 58.05612
- ],
- [
- 23.915,
- 58.14613
- ],
- [
- 23.83032,
- 58.146
- ],
- [
- 23.82971,
- 58.23572
- ],
- [
- 23.91451,
- 58.23585
- ],
- [
- 23.91476,
- 58.19099
- ],
- [
- 24.08485,
- 58.19092
- ]
- ],
- [
- [
- 24.61854,
- 59.53612
- ],
- [
- 24.44183,
- 59.5368
- ],
- [
- 24.44309,
- 59.62659
- ],
- [
- 24.62016,
- 59.6258
- ],
- [
- 24.61854,
- 59.53612
- ]
- ],
- [
- [
- 26.40403,
- 59.7852
- ],
- [
- 26.31501,
- 59.78667
- ],
- [
- 26.31814,
- 59.83152
- ],
- [
- 26.40732,
- 59.82994
- ],
- [
- 26.40403,
- 59.7852
- ]
- ],
- [
- [
- 26.48308,
- 59.649
- ],
- [
- 26.48647,
- 59.69383
- ],
- [
- 26.57514,
- 59.69202
- ],
- [
- 26.57166,
- 59.64719
- ],
- [
- 26.48308,
- 59.649
- ]
- ],
- [
- [
- 23.15944,
- 57.78408
- ],
- [
- 23.24346,
- 57.78461
- ],
- [
- 23.24445,
- 57.73971
- ],
- [
- 23.32848,
- 57.74031
- ],
- [
- 23.32679,
- 57.82998
- ],
- [
- 23.15845,
- 57.82885
- ],
- [
- 23.15944,
- 57.78408
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maa-Ameti põhikaart"
- },
- "available_projections": [
- "EPSG:4326"
- ],
- "country_code": "EE",
- "id": "maaamet.ee-pohi_vr2",
- "license_url": "http://svimik.com/Maa-amet_vastus_OSM.pdf",
- "name": "Estonia Basemap (Maaamet)",
- "type": "wms",
- "url": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=pohi_vr2&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.35364,
- 58.85385
- ],
- [
- 22.09411,
- 58.85038
- ],
- [
- 22.09179,
- 58.8951
- ],
- [
- 22.00503,
- 58.89371
- ],
- [
- 21.99979,
- 58.98374
- ],
- [
- 22.34754,
- 58.98845
- ],
- [
- 22.34535,
- 59.03337
- ],
- [
- 22.51935,
- 59.03538
- ],
- [
- 22.51556,
- 59.1251
- ],
- [
- 22.69017,
- 59.12686
- ],
- [
- 22.69212,
- 59.08218
- ],
- [
- 22.77912,
- 59.083
- ],
- [
- 22.78083,
- 59.03814
- ],
- [
- 22.86808,
- 59.03877
- ],
- [
- 22.8693,
- 58.99399
- ],
- [
- 22.9563,
- 58.99487
- ],
- [
- 22.95495,
- 59.03959
- ],
- [
- 23.12895,
- 59.04097
- ],
- [
- 23.12786,
- 59.08582
- ],
- [
- 23.47671,
- 59.0877
- ],
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.64924,
- 59.26788
- ],
- [
- 23.64888,
- 59.31281
- ],
- [
- 23.73698,
- 59.313
- ],
- [
- 23.73649,
- 59.3578
- ],
- [
- 23.91158,
- 59.35787
- ],
- [
- 23.91207,
- 59.4028
- ],
- [
- 24.176,
- 59.4028
- ],
- [
- 24.17637,
- 59.4478
- ],
- [
- 24.26446,
- 59.44767
- ],
- [
- 24.26471,
- 59.49236
- ],
- [
- 24.70605,
- 59.49082
- ],
- [
- 24.70898,
- 59.62553
- ],
- [
- 24.79744,
- 59.62497
- ],
- [
- 24.79659,
- 59.58009
- ],
- [
- 24.97327,
- 59.57885
- ],
- [
- 24.97462,
- 59.62386
- ],
- [
- 24.88603,
- 59.62473
- ],
- [
- 24.88725,
- 59.66918
- ],
- [
- 24.9762,
- 59.66863
- ],
- [
- 24.9773,
- 59.71346
- ],
- [
- 25.06601,
- 59.71259
- ],
- [
- 25.0632,
- 59.62306
- ],
- [
- 25.24037,
- 59.62145
- ],
- [
- 25.24184,
- 59.66647
- ],
- [
- 25.33055,
- 59.66548
- ],
- [
- 25.32884,
- 59.62078
- ],
- [
- 25.41755,
- 59.61979
- ],
- [
- 25.41938,
- 59.66468
- ],
- [
- 25.6855,
- 59.66148
- ],
- [
- 25.68757,
- 59.70613
- ],
- [
- 25.86511,
- 59.70386
- ],
- [
- 25.86279,
- 59.65901
- ],
- [
- 26.12855,
- 59.65507
- ],
- [
- 26.12575,
- 59.6101
- ],
- [
- 26.39114,
- 59.60565
- ],
- [
- 26.38809,
- 59.56099
- ],
- [
- 26.82967,
- 59.55215
- ],
- [
- 26.82626,
- 59.50729
- ],
- [
- 26.91423,
- 59.50549
- ],
- [
- 26.91057,
- 59.46051
- ],
- [
- 27.96689,
- 59.43303
- ],
- [
- 27.9719,
- 59.4778
- ],
- [
- 28.03669,
- 59.4757
- ],
- [
- 28.04377,
- 59.47223
- ],
- [
- 28.04767,
- 59.46578
- ],
- [
- 28.05182,
- 59.46342
- ],
- [
- 28.06915,
- 59.46256
- ],
- [
- 28.08452,
- 59.45939
- ],
- [
- 28.12174,
- 59.44091
- ],
- [
- 28.13577,
- 59.4277
- ],
- [
- 28.13711,
- 59.42267
- ],
- [
- 28.14163,
- 59.41901
- ],
- [
- 28.16652,
- 59.41205
- ],
- [
- 28.17225,
- 59.40789
- ],
- [
- 28.19275,
- 59.4015
- ],
- [
- 28.21069,
- 59.3836
- ],
- [
- 28.21069,
- 59.37994
- ],
- [
- 28.20386,
- 59.37459
- ],
- [
- 28.21057,
- 59.37235
- ],
- [
- 28.21105,
- 59.36937
- ],
- [
- 28.20678,
- 59.36719
- ],
- [
- 28.20703,
- 59.36377
- ],
- [
- 28.19971,
- 59.36091
- ],
- [
- 28.20203,
- 59.35731
- ],
- [
- 28.19263,
- 59.35227
- ],
- [
- 28.19397,
- 59.34642
- ],
- [
- 28.16969,
- 59.33354
- ],
- [
- 28.13626,
- 59.29244
- ],
- [
- 28.12515,
- 59.28901
- ],
- [
- 28.11722,
- 59.28895
- ],
- [
- 28.1099,
- 59.29063
- ],
- [
- 28.05353,
- 59.2902
- ],
- [
- 28.02022,
- 59.28334
- ],
- [
- 27.99825,
- 59.2753
- ],
- [
- 27.97983,
- 59.27293
- ],
- [
- 27.96433,
- 59.27268
- ],
- [
- 27.95335,
- 59.26863
- ],
- [
- 27.9492,
- 59.26533
- ],
- [
- 27.90564,
- 59.24044
- ],
- [
- 27.90113,
- 59.23488
- ],
- [
- 27.901,
- 59.22639
- ],
- [
- 27.89783,
- 59.21746
- ],
- [
- 27.90235,
- 59.20728
- ],
- [
- 27.89234,
- 59.19222
- ],
- [
- 27.88978,
- 59.18379
- ],
- [
- 27.87648,
- 59.17372
- ],
- [
- 27.87184,
- 59.16841
- ],
- [
- 27.86818,
- 59.16159
- ],
- [
- 27.84414,
- 59.14814
- ],
- [
- 27.83206,
- 59.14401
- ],
- [
- 27.82035,
- 59.13362
- ],
- [
- 27.80986,
- 59.12905
- ],
- [
- 27.80595,
- 59.12166
- ],
- [
- 27.80534,
- 59.1127
- ],
- [
- 27.81071,
- 59.10819
- ],
- [
- 27.8101,
- 59.10606
- ],
- [
- 27.80205,
- 59.1028
- ],
- [
- 27.78887,
- 59.0909
- ],
- [
- 27.7907,
- 59.08112
- ],
- [
- 27.79375,
- 59.07842
- ],
- [
- 27.79411,
- 59.07566
- ],
- [
- 27.79277,
- 59.0729
- ],
- [
- 27.79302,
- 59.06927
- ],
- [
- 27.7885,
- 59.06657
- ],
- [
- 27.78265,
- 59.065
- ],
- [
- 27.77508,
- 59.0581
- ],
- [
- 27.77313,
- 59.05107
- ],
- [
- 27.77667,
- 59.04743
- ],
- [
- 27.76983,
- 59.03325
- ],
- [
- 27.76605,
- 59.03155
- ],
- [
- 27.75153,
- 59.03017
- ],
- [
- 27.74628,
- 59.02716
- ],
- [
- 27.74567,
- 59.01705
- ],
- [
- 27.74165,
- 59.00951
- ],
- [
- 27.74787,
- 58.99267
- ],
- [
- 27.74274,
- 58.98845
- ],
- [
- 27.73213,
- 58.9855
- ],
- [
- 27.6544,
- 58.98783
- ],
- [
- 27.65501,
- 58.99241
- ],
- [
- 27.39414,
- 58.99964
- ],
- [
- 27.38974,
- 58.95474
- ],
- [
- 27.12935,
- 58.96135
- ],
- [
- 27.12557,
- 58.9164
- ],
- [
- 27.03882,
- 58.91841
- ],
- [
- 27.0271,
- 58.7841
- ],
- [
- 27.11361,
- 58.78183
- ],
- [
- 27.10934,
- 58.73709
- ],
- [
- 27.19537,
- 58.73512
- ],
- [
- 27.18731,
- 58.64533
- ],
- [
- 27.27309,
- 58.64305
- ],
- [
- 27.25259,
- 58.41883
- ],
- [
- 27.53397,
- 58.41142
- ],
- [
- 27.5552,
- 58.36575
- ],
- [
- 27.51762,
- 58.33265
- ],
- [
- 27.51408,
- 58.32214
- ],
- [
- 27.49993,
- 58.32246
- ],
- [
- 27.48687,
- 58.18803
- ],
- [
- 27.52872,
- 58.18687
- ],
- [
- 27.59205,
- 58.11875
- ],
- [
- 27.63695,
- 58.09735
- ],
- [
- 27.60938,
- 58.05399
- ],
- [
- 27.62268,
- 58.0058
- ],
- [
- 27.64489,
- 58.00205
- ],
- [
- 27.65294,
- 58.00644
- ],
- [
- 27.64781,
- 58.01426
- ],
- [
- 27.64781,
- 58.02086
- ],
- [
- 27.66172,
- 58.01866
- ],
- [
- 27.66856,
- 58.01045
- ],
- [
- 27.68393,
- 58.00845
- ],
- [
- 27.6965,
- 58.0045
- ],
- [
- 27.70065,
- 57.99862
- ],
- [
- 27.69882,
- 57.98827
- ],
- [
- 27.69125,
- 57.98549
- ],
- [
- 27.68064,
- 57.97449
- ],
- [
- 27.6821,
- 57.9719
- ],
- [
- 27.68893,
- 57.97184
- ],
- [
- 27.68588,
- 57.95928
- ],
- [
- 27.65892,
- 57.9554
- ],
- [
- 27.66758,
- 57.951
- ],
- [
- 27.67161,
- 57.94627
- ],
- [
- 27.66917,
- 57.94174
- ],
- [
- 27.67649,
- 57.93552
- ],
- [
- 27.68247,
- 57.93655
- ],
- [
- 27.68613,
- 57.92794
- ],
- [
- 27.68247,
- 57.92437
- ],
- [
- 27.71078,
- 57.92392
- ],
- [
- 27.72029,
- 57.92036
- ],
- [
- 27.72054,
- 57.91174
- ],
- [
- 27.70834,
- 57.90616
- ],
- [
- 27.69882,
- 57.90616
- ],
- [
- 27.70614,
- 57.90136
- ],
- [
- 27.72896,
- 57.90739
- ],
- [
- 27.74677,
- 57.90169
- ],
- [
- 27.7536,
- 57.90409
- ],
- [
- 27.75739,
- 57.90318
- ],
- [
- 27.75592,
- 57.89806
- ],
- [
- 27.76959,
- 57.89566
- ],
- [
- 27.78094,
- 57.89832
- ],
- [
- 27.799,
- 57.89961
- ],
- [
- 27.81852,
- 57.89579
- ],
- [
- 27.82096,
- 57.89047
- ],
- [
- 27.81949,
- 57.888
- ],
- [
- 27.81059,
- 57.88612
- ],
- [
- 27.81827,
- 57.88249
- ],
- [
- 27.81169,
- 57.87204
- ],
- [
- 27.81583,
- 57.87166
- ],
- [
- 27.8184,
- 57.8651
- ],
- [
- 27.81632,
- 57.86134
- ],
- [
- 27.79875,
- 57.85205
- ],
- [
- 27.7946,
- 57.84634
- ],
- [
- 27.80058,
- 57.8442
- ],
- [
- 27.7957,
- 57.84017
- ],
- [
- 27.78862,
- 57.84186
- ],
- [
- 27.78411,
- 57.83725
- ],
- [
- 27.77715,
- 57.8325
- ],
- [
- 27.75849,
- 57.83536
- ],
- [
- 27.74165,
- 57.82679
- ],
- [
- 27.72383,
- 57.83179
- ],
- [
- 27.70541,
- 57.84192
- ],
- [
- 27.68771,
- 57.83419
- ],
- [
- 27.66636,
- 57.83653
- ],
- [
- 27.66026,
- 57.83893
- ],
- [
- 27.64818,
- 57.8377
- ],
- [
- 27.63634,
- 57.83978
- ],
- [
- 27.62487,
- 57.83751
- ],
- [
- 27.62207,
- 57.83874
- ],
- [
- 27.59791,
- 57.83328
- ],
- [
- 27.56252,
- 57.83023
- ],
- [
- 27.5563,
- 57.83127
- ],
- [
- 27.55227,
- 57.82113
- ],
- [
- 27.54446,
- 57.82204
- ],
- [
- 27.5452,
- 57.81808
- ],
- [
- 27.55056,
- 57.81769
- ],
- [
- 27.55667,
- 57.81366
- ],
- [
- 27.5408,
- 57.81288
- ],
- [
- 27.54471,
- 57.808
- ],
- [
- 27.53726,
- 57.80644
- ],
- [
- 27.53958,
- 57.80144
- ],
- [
- 27.53592,
- 57.79663
- ],
- [
- 27.53861,
- 57.79396
- ],
- [
- 27.52921,
- 57.78856
- ],
- [
- 27.5175,
- 57.78876
- ],
- [
- 27.51847,
- 57.79201
- ],
- [
- 27.50298,
- 57.78798
- ],
- [
- 27.50005,
- 57.78973
- ],
- [
- 27.4959,
- 57.78869
- ],
- [
- 27.50774,
- 57.78349
- ],
- [
- 27.51457,
- 57.77516
- ],
- [
- 27.5081,
- 57.77158
- ],
- [
- 27.51115,
- 57.76416
- ],
- [
- 27.51591,
- 57.7639
- ],
- [
- 27.52018,
- 57.75993
- ],
- [
- 27.52811,
- 57.75818
- ],
- [
- 27.53007,
- 57.75368
- ],
- [
- 27.53116,
- 57.74073
- ],
- [
- 27.548,
- 57.7333
- ],
- [
- 27.5419,
- 57.73037
- ],
- [
- 27.52799,
- 57.72946
- ],
- [
- 27.5236,
- 57.71616
- ],
- [
- 27.52762,
- 57.70899
- ],
- [
- 27.5236,
- 57.70802
- ],
- [
- 27.51652,
- 57.70873
- ],
- [
- 27.51066,
- 57.71101
- ],
- [
- 27.50859,
- 57.70723
- ],
- [
- 27.49993,
- 57.70495
- ],
- [
- 27.49529,
- 57.70749
- ],
- [
- 27.48711,
- 57.7191
- ],
- [
- 27.47357,
- 57.71545
- ],
- [
- 27.47064,
- 57.70802
- ],
- [
- 27.46149,
- 57.70619
- ],
- [
- 27.44807,
- 57.71616
- ],
- [
- 27.43086,
- 57.70756
- ],
- [
- 27.42818,
- 57.69902
- ],
- [
- 27.41341,
- 57.69915
- ],
- [
- 27.41647,
- 57.69524
- ],
- [
- 27.40744,
- 57.69276
- ],
- [
- 27.40231,
- 57.68493
- ],
- [
- 27.39133,
- 57.68539
- ],
- [
- 27.39377,
- 57.67913
- ],
- [
- 27.39145,
- 57.67671
- ],
- [
- 27.38193,
- 57.67332
- ],
- [
- 27.37779,
- 57.66836
- ],
- [
- 27.38364,
- 57.66059
- ],
- [
- 27.3801,
- 57.65883
- ],
- [
- 27.38755,
- 57.6555
- ],
- [
- 27.38047,
- 57.6495
- ],
- [
- 27.38352,
- 57.64799
- ],
- [
- 27.38157,
- 57.64368
- ],
- [
- 27.39072,
- 57.6431
- ],
- [
- 27.38816,
- 57.64009
- ],
- [
- 27.40085,
- 57.63742
- ],
- [
- 27.40317,
- 57.62905
- ],
- [
- 27.40182,
- 57.62376
- ],
- [
- 27.39597,
- 57.62115
- ],
- [
- 27.39023,
- 57.62036
- ],
- [
- 27.39084,
- 57.6169
- ],
- [
- 27.40195,
- 57.61775
- ],
- [
- 27.40634,
- 57.61546
- ],
- [
- 27.40683,
- 57.61246
- ],
- [
- 27.38572,
- 57.60304
- ],
- [
- 27.37827,
- 57.59513
- ],
- [
- 27.35692,
- 57.59696
- ],
- [
- 27.3413,
- 57.58984
- ],
- [
- 27.34179,
- 57.58539
- ],
- [
- 27.32886,
- 57.5797
- ],
- [
- 27.32141,
- 57.57898
- ],
- [
- 27.3341,
- 57.56596
- ],
- [
- 27.33178,
- 57.56066
- ],
- [
- 27.33776,
- 57.56007
- ],
- [
- 27.33886,
- 57.54671
- ],
- [
- 27.34386,
- 57.5454
- ],
- [
- 27.35472,
- 57.52575
- ],
- [
- 27.35131,
- 57.51632
- ],
- [
- 27.34569,
- 57.52104
- ],
- [
- 27.32446,
- 57.52274
- ],
- [
- 27.29664,
- 57.53859
- ],
- [
- 27.28017,
- 57.53643
- ],
- [
- 27.2737,
- 57.54311
- ],
- [
- 27.26431,
- 57.54377
- ],
- [
- 27.2637,
- 57.54841
- ],
- [
- 27.25772,
- 57.54979
- ],
- [
- 27.24796,
- 57.54769
- ],
- [
- 27.2249,
- 57.55385
- ],
- [
- 27.19329,
- 57.54966
- ],
- [
- 27.16145,
- 57.55922
- ],
- [
- 27.11654,
- 57.56118
- ],
- [
- 27.10092,
- 57.5653
- ],
- [
- 27.08506,
- 57.57538
- ],
- [
- 27.07262,
- 57.57734
- ],
- [
- 27.07225,
- 57.57989
- ],
- [
- 27.0559,
- 57.58251
- ],
- [
- 27.05285,
- 57.58087
- ],
- [
- 27.04687,
- 57.58048
- ],
- [
- 27.04492,
- 57.58251
- ],
- [
- 27.0332,
- 57.58532
- ],
- [
- 27.04126,
- 57.58761
- ],
- [
- 27.04418,
- 57.5967
- ],
- [
- 27.03101,
- 57.60461
- ],
- [
- 26.99513,
- 57.60461
- ],
- [
- 26.99233,
- 57.61076
- ],
- [
- 26.98696,
- 57.60867
- ],
- [
- 26.98366,
- 57.61174
- ],
- [
- 26.97549,
- 57.612
- ],
- [
- 26.97097,
- 57.60448
- ],
- [
- 26.9595,
- 57.60625
- ],
- [
- 26.9578,
- 57.60468
- ],
- [
- 26.94596,
- 57.60272
- ],
- [
- 26.93961,
- 57.60932
- ],
- [
- 26.95133,
- 57.61579
- ],
- [
- 26.94999,
- 57.62056
- ],
- [
- 26.94059,
- 57.61978
- ],
- [
- 26.92961,
- 57.62376
- ],
- [
- 26.92644,
- 57.6331
- ],
- [
- 26.90679,
- 57.63304
- ],
- [
- 26.89971,
- 57.63056
- ],
- [
- 26.90057,
- 57.62918
- ],
- [
- 26.89581,
- 57.62572
- ],
- [
- 26.88849,
- 57.62357
- ],
- [
- 26.88898,
- 57.62193
- ],
- [
- 26.87458,
- 57.61906
- ],
- [
- 26.87275,
- 57.61736
- ],
- [
- 26.86555,
- 57.61592
- ],
- [
- 26.85786,
- 57.60997
- ],
- [
- 26.86469,
- 57.6084
- ],
- [
- 26.85811,
- 57.60049
- ],
- [
- 26.85994,
- 57.59598
- ],
- [
- 26.86433,
- 57.59415
- ],
- [
- 26.86177,
- 57.59108
- ],
- [
- 26.84688,
- 57.5884
- ],
- [
- 26.83504,
- 57.58244
- ],
- [
- 26.81589,
- 57.58153
- ],
- [
- 26.80954,
- 57.58473
- ],
- [
- 26.79685,
- 57.58179
- ],
- [
- 26.79929,
- 57.58002
- ],
- [
- 26.79295,
- 57.57315
- ],
- [
- 26.78685,
- 57.57525
- ],
- [
- 26.7766,
- 57.55994
- ],
- [
- 26.76915,
- 57.56039
- ],
- [
- 26.76354,
- 57.56314
- ],
- [
- 26.75366,
- 57.56249
- ],
- [
- 26.75817,
- 57.5653
- ],
- [
- 26.76891,
- 57.57041
- ],
- [
- 26.77379,
- 57.57473
- ],
- [
- 26.76769,
- 57.57754
- ],
- [
- 26.74804,
- 57.5778
- ],
- [
- 26.75317,
- 57.58009
- ],
- [
- 26.73816,
- 57.58774
- ],
- [
- 26.72901,
- 57.58016
- ],
- [
- 26.73828,
- 57.57584
- ],
- [
- 26.73072,
- 57.56903
- ],
- [
- 26.72388,
- 57.57244
- ],
- [
- 26.71107,
- 57.56596
- ],
- [
- 26.69972,
- 57.57106
- ],
- [
- 26.69753,
- 57.5706
- ],
- [
- 26.69741,
- 57.56733
- ],
- [
- 26.69155,
- 57.56615
- ],
- [
- 26.67569,
- 57.56668
- ],
- [
- 26.67105,
- 57.56327
- ],
- [
- 26.6719,
- 57.55385
- ],
- [
- 26.66531,
- 57.55287
- ],
- [
- 26.64652,
- 57.55391
- ],
- [
- 26.64262,
- 57.54658
- ],
- [
- 26.63444,
- 57.54357
- ],
- [
- 26.61443,
- 57.52909
- ],
- [
- 26.61712,
- 57.50885
- ],
- [
- 26.60467,
- 57.51212
- ],
- [
- 26.60479,
- 57.51442
- ],
- [
- 26.5954,
- 57.51376
- ],
- [
- 26.59479,
- 57.51592
- ],
- [
- 26.58808,
- 57.51619
- ],
- [
- 26.59015,
- 57.52516
- ],
- [
- 26.58698,
- 57.52621
- ],
- [
- 26.58771,
- 57.53781
- ],
- [
- 26.58381,
- 57.53957
- ],
- [
- 26.57978,
- 57.53695
- ],
- [
- 26.57966,
- 57.53375
- ],
- [
- 26.56123,
- 57.5285
- ],
- [
- 26.56184,
- 57.52261
- ],
- [
- 26.5666,
- 57.51946
- ],
- [
- 26.55794,
- 57.5137
- ],
- [
- 26.52585,
- 57.51619
- ],
- [
- 26.49961,
- 57.52451
- ],
- [
- 26.49095,
- 57.54534
- ],
- [
- 26.46996,
- 57.57551
- ],
- [
- 26.40151,
- 57.57237
- ],
- [
- 26.34489,
- 57.58408
- ],
- [
- 26.33476,
- 57.5797
- ],
- [
- 26.32781,
- 57.57963
- ],
- [
- 26.32635,
- 57.58277
- ],
- [
- 26.3117,
- 57.58473
- ],
- [
- 26.30853,
- 57.59291
- ],
- [
- 26.3006,
- 57.59343
- ],
- [
- 26.29291,
- 57.59114
- ],
- [
- 26.28352,
- 57.59232
- ],
- [
- 26.28217,
- 57.5952
- ],
- [
- 26.27754,
- 57.595
- ],
- [
- 26.27034,
- 57.6001
- ],
- [
- 26.27022,
- 57.60461
- ],
- [
- 26.25423,
- 57.61383
- ],
- [
- 26.24715,
- 57.62082
- ],
- [
- 26.24813,
- 57.62775
- ],
- [
- 26.23947,
- 57.63408
- ],
- [
- 26.24203,
- 57.63539
- ],
- [
- 26.24667,
- 57.63559
- ],
- [
- 26.23959,
- 57.64649
- ],
- [
- 26.23239,
- 57.6461
- ],
- [
- 26.23117,
- 57.64904
- ],
- [
- 26.24215,
- 57.65146
- ],
- [
- 26.2363,
- 57.65753
- ],
- [
- 26.23032,
- 57.65805
- ],
- [
- 26.21043,
- 57.66601
- ],
- [
- 26.21372,
- 57.66888
- ],
- [
- 26.21092,
- 57.67071
- ],
- [
- 26.21018,
- 57.67906
- ],
- [
- 26.20079,
- 57.68102
- ],
- [
- 26.19896,
- 57.68356
- ],
- [
- 26.19444,
- 57.68519
- ],
- [
- 26.18541,
- 57.68454
- ],
- [
- 26.17712,
- 57.68761
- ],
- [
- 26.18871,
- 57.69472
- ],
- [
- 26.19859,
- 57.70906
- ],
- [
- 26.20567,
- 57.71486
- ],
- [
- 26.1726,
- 57.72867
- ],
- [
- 26.141,
- 57.73278
- ],
- [
- 26.13563,
- 57.73923
- ],
- [
- 26.13905,
- 57.74548
- ],
- [
- 26.13551,
- 57.7503
- ],
- [
- 26.10537,
- 57.757
- ],
- [
- 26.08035,
- 57.76547
- ],
- [
- 26.07974,
- 57.76384
- ],
- [
- 26.07328,
- 57.76371
- ],
- [
- 26.07047,
- 57.7656
- ],
- [
- 26.05912,
- 57.75987
- ],
- [
- 26.049,
- 57.7611
- ],
- [
- 26.0435,
- 57.76703
- ],
- [
- 26.03326,
- 57.77054
- ],
- [
- 26.02374,
- 57.76761
- ],
- [
- 26.01776,
- 57.7723
- ],
- [
- 26.02459,
- 57.77516
- ],
- [
- 26.02496,
- 57.7816
- ],
- [
- 26.02252,
- 57.78355
- ],
- [
- 26.02776,
- 57.7898
- ],
- [
- 26.03081,
- 57.79097
- ],
- [
- 26.03338,
- 57.80105
- ],
- [
- 26.03679,
- 57.80592
- ],
- [
- 26.03606,
- 57.8108
- ],
- [
- 26.04851,
- 57.82289
- ],
- [
- 26.05705,
- 57.83842
- ],
- [
- 26.05558,
- 57.84764
- ],
- [
- 26.03667,
- 57.84926
- ],
- [
- 26.02008,
- 57.84517
- ],
- [
- 26.00958,
- 57.85731
- ],
- [
- 25.99848,
- 57.85816
- ],
- [
- 25.96273,
- 57.84491
- ],
- [
- 25.931,
- 57.85244
- ],
- [
- 25.89537,
- 57.84972
- ],
- [
- 25.8883,
- 57.84595
- ],
- [
- 25.88085,
- 57.84946
- ],
- [
- 25.88573,
- 57.85277
- ],
- [
- 25.88427,
- 57.85595
- ],
- [
- 25.87561,
- 57.85796
- ],
- [
- 25.87475,
- 57.86322
- ],
- [
- 25.8595,
- 57.85614
- ],
- [
- 25.81923,
- 57.86419
- ],
- [
- 25.78312,
- 57.89948
- ],
- [
- 25.78629,
- 57.90428
- ],
- [
- 25.77165,
- 57.91206
- ],
- [
- 25.75102,
- 57.91692
- ],
- [
- 25.73724,
- 57.92295
- ],
- [
- 25.72833,
- 57.92133
- ],
- [
- 25.72247,
- 57.91245
- ],
- [
- 25.70356,
- 57.90331
- ],
- [
- 25.67916,
- 57.90461
- ],
- [
- 25.67549,
- 57.91277
- ],
- [
- 25.66207,
- 57.91511
- ],
- [
- 25.65609,
- 57.91439
- ],
- [
- 25.64889,
- 57.91666
- ],
- [
- 25.64987,
- 57.91841
- ],
- [
- 25.63828,
- 57.93059
- ],
- [
- 25.57983,
- 57.9442
- ],
- [
- 25.59399,
- 57.95961
- ],
- [
- 25.58935,
- 57.96504
- ],
- [
- 25.58239,
- 57.96783
- ],
- [
- 25.58044,
- 57.9721
- ],
- [
- 25.57483,
- 57.9741
- ],
- [
- 25.56556,
- 57.96718
- ],
- [
- 25.56604,
- 57.96258
- ],
- [
- 25.55714,
- 57.96038
- ],
- [
- 25.55567,
- 57.96711
- ],
- [
- 25.55079,
- 57.97255
- ],
- [
- 25.53725,
- 57.97139
- ],
- [
- 25.52566,
- 57.97184
- ],
- [
- 25.5226,
- 57.96802
- ],
- [
- 25.51638,
- 57.96737
- ],
- [
- 25.51211,
- 57.96977
- ],
- [
- 25.52212,
- 57.97488
- ],
- [
- 25.51943,
- 57.98031
- ],
- [
- 25.48539,
- 57.97475
- ],
- [
- 25.47843,
- 57.98006
- ],
- [
- 25.47843,
- 57.98264
- ],
- [
- 25.44219,
- 57.99616
- ],
- [
- 25.44817,
- 58.00114
- ],
- [
- 25.46648,
- 58.00515
- ],
- [
- 25.44817,
- 58.01698
- ],
- [
- 25.40693,
- 58.02893
- ],
- [
- 25.37155,
- 58.02926
- ],
- [
- 25.36374,
- 58.03171
- ],
- [
- 25.35336,
- 58.04334
- ],
- [
- 25.34482,
- 58.04676
- ],
- [
- 25.33604,
- 58.05709
- ],
- [
- 25.3292,
- 58.05858
- ],
- [
- 25.32664,
- 58.0638
- ],
- [
- 25.31981,
- 58.066
- ],
- [
- 25.31908,
- 58.06929
- ],
- [
- 25.29553,
- 58.08161
- ],
- [
- 25.28686,
- 58.08149
- ],
- [
- 25.28113,
- 58.07019
- ],
- [
- 25.266,
- 58.06716
- ],
- [
- 25.26502,
- 58.06
- ],
- [
- 25.27991,
- 58.05063
- ],
- [
- 25.29309,
- 58.0467
- ],
- [
- 25.30431,
- 58.03449
- ],
- [
- 25.30114,
- 58.01504
- ],
- [
- 25.29748,
- 58.01459
- ],
- [
- 25.30285,
- 58.00011
- ],
- [
- 25.29577,
- 57.99972
- ],
- [
- 25.29736,
- 57.99661
- ],
- [
- 25.30358,
- 57.99396
- ],
- [
- 25.30138,
- 57.99273
- ],
- [
- 25.29187,
- 57.99286
- ],
- [
- 25.28308,
- 57.98963
- ],
- [
- 25.26722,
- 57.99454
- ],
- [
- 25.25611,
- 57.9939
- ],
- [
- 25.25502,
- 58.00347
- ],
- [
- 25.2455,
- 58.00302
- ],
- [
- 25.22768,
- 58.01782
- ],
- [
- 25.24587,
- 58.01872
- ],
- [
- 25.23562,
- 58.02286
- ],
- [
- 25.23635,
- 58.02441
- ],
- [
- 25.22732,
- 58.02435
- ],
- [
- 25.22537,
- 58.02195
- ],
- [
- 25.21902,
- 58.02977
- ],
- [
- 25.21658,
- 58.04088
- ],
- [
- 25.22695,
- 58.04799
- ],
- [
- 25.22817,
- 58.05348
- ],
- [
- 25.22122,
- 58.05302
- ],
- [
- 25.22146,
- 58.05051
- ],
- [
- 25.2178,
- 58.04908
- ],
- [
- 25.21597,
- 58.05954
- ],
- [
- 25.21219,
- 58.06226
- ],
- [
- 25.20523,
- 58.06122
- ],
- [
- 25.20389,
- 58.0651
- ],
- [
- 25.21621,
- 58.07413
- ],
- [
- 25.21207,
- 58.08052
- ],
- [
- 25.19962,
- 58.08536
- ],
- [
- 25.18949,
- 58.08007
- ],
- [
- 25.19169,
- 58.07613
- ],
- [
- 25.1535,
- 58.07478
- ],
- [
- 25.15154,
- 58.07703
- ],
- [
- 25.13397,
- 58.07974
- ],
- [
- 25.10579,
- 58.07749
- ],
- [
- 25.10518,
- 58.06645
- ],
- [
- 25.07662,
- 58.06645
- ],
- [
- 25.02037,
- 58.01769
- ],
- [
- 24.99512,
- 58.01084
- ],
- [
- 24.94863,
- 58.00942
- ],
- [
- 24.83234,
- 57.97177
- ],
- [
- 24.80806,
- 57.99066
- ],
- [
- 24.74229,
- 57.98187
- ],
- [
- 24.74339,
- 57.96491
- ],
- [
- 24.7329,
- 57.96239
- ],
- [
- 24.71508,
- 57.96271
- ],
- [
- 24.6919,
- 57.94653
- ],
- [
- 24.67335,
- 57.95896
- ],
- [
- 24.64468,
- 57.95889
- ],
- [
- 24.64187,
- 57.95423
- ],
- [
- 24.64577,
- 57.95268
- ],
- [
- 24.62869,
- 57.94193
- ],
- [
- 24.61612,
- 57.94368
- ],
- [
- 24.60892,
- 57.95125
- ],
- [
- 24.58464,
- 57.96174
- ],
- [
- 24.57317,
- 57.95436
- ],
- [
- 24.54792,
- 57.94938
- ],
- [
- 24.54352,
- 57.94478
- ],
- [
- 24.5301,
- 57.94705
- ],
- [
- 24.5207,
- 57.94303
- ],
- [
- 24.51839,
- 57.93675
- ],
- [
- 24.5096,
- 57.93442
- ],
- [
- 24.51326,
- 57.93066
- ],
- [
- 24.4625,
- 57.92496
- ],
- [
- 24.44579,
- 57.90798
- ],
- [
- 24.46018,
- 57.90662
- ],
- [
- 24.45225,
- 57.89942
- ],
- [
- 24.46006,
- 57.87977
- ],
- [
- 24.41138,
- 57.86491
- ],
- [
- 24.40906,
- 57.87191
- ],
- [
- 24.33707,
- 57.87393
- ],
- [
- 24.33829,
- 58.0109
- ],
- [
- 24.42272,
- 58.01097
- ],
- [
- 24.42614,
- 58.28002
- ],
- [
- 24.51155,
- 58.2797
- ],
- [
- 24.51216,
- 58.32471
- ],
- [
- 24.42638,
- 58.32503
- ],
- [
- 24.42712,
- 58.36972
- ],
- [
- 24.34182,
- 58.37017
- ],
- [
- 24.34048,
- 58.23547
- ],
- [
- 24.17014,
- 58.23572
- ],
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.0851,
- 58.23605
- ],
- [
- 24.00066,
- 58.23579
- ],
- [
- 23.99993,
- 58.28092
- ],
- [
- 23.82971,
- 58.28047
- ],
- [
- 23.82947,
- 58.32554
- ],
- [
- 23.65864,
- 58.32496
- ],
- [
- 23.65791,
- 58.41493
- ],
- [
- 23.57225,
- 58.41468
- ],
- [
- 23.57127,
- 58.50436
- ],
- [
- 23.39935,
- 58.50359
- ],
- [
- 23.40106,
- 58.41391
- ],
- [
- 23.14421,
- 58.41238
- ],
- [
- 23.14567,
- 58.36735
- ],
- [
- 23.05989,
- 58.36703
- ],
- [
- 23.06172,
- 58.32221
- ],
- [
- 22.9757,
- 58.32157
- ],
- [
- 22.97716,
- 58.27681
- ],
- [
- 22.89187,
- 58.27598
- ],
- [
- 22.89358,
- 58.23103
- ],
- [
- 22.80865,
- 58.2302
- ],
- [
- 22.81012,
- 58.18539
- ],
- [
- 22.89529,
- 58.1861
- ],
- [
- 22.89663,
- 58.1413
- ],
- [
- 22.72641,
- 58.13982
- ],
- [
- 22.72495,
- 58.18475
- ],
- [
- 22.55522,
- 58.18276
- ],
- [
- 22.55693,
- 58.13744
- ],
- [
- 22.64173,
- 58.13886
- ],
- [
- 22.64344,
- 58.094
- ],
- [
- 22.38903,
- 58.0909
- ],
- [
- 22.38525,
- 58.18063
- ],
- [
- 22.29995,
- 58.17967
- ],
- [
- 22.30679,
- 58.04527
- ],
- [
- 22.22198,
- 58.0436
- ],
- [
- 22.22626,
- 57.95404
- ],
- [
- 22.14206,
- 57.95281
- ],
- [
- 22.1445,
- 57.90804
- ],
- [
- 22.06007,
- 57.90681
- ],
- [
- 22.06263,
- 57.86186
- ],
- [
- 21.97807,
- 57.86043
- ],
- [
- 21.96831,
- 58.04004
- ],
- [
- 22.05274,
- 58.04134
- ],
- [
- 22.04506,
- 58.17581
- ],
- [
- 21.96038,
- 58.17471
- ],
- [
- 21.95781,
- 58.21941
- ],
- [
- 21.78723,
- 58.21638
- ],
- [
- 21.78211,
- 58.30631
- ],
- [
- 21.69681,
- 58.3049
- ],
- [
- 21.69401,
- 58.34975
- ],
- [
- 21.77942,
- 58.35122
- ],
- [
- 21.76795,
- 58.53074
- ],
- [
- 22.02566,
- 58.53488
- ],
- [
- 22.02797,
- 58.49001
- ],
- [
- 22.11375,
- 58.49167
- ],
- [
- 22.11144,
- 58.53621
- ],
- [
- 22.19709,
- 58.53742
- ],
- [
- 22.19453,
- 58.5823
- ],
- [
- 22.45236,
- 58.58573
- ],
- [
- 22.44638,
- 58.7203
- ],
- [
- 22.36023,
- 58.71916
- ],
- [
- 22.35364,
- 58.85385
- ]
- ],
- [
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.29868,
- 59.26632
- ],
- [
- 23.29795,
- 59.31138
- ],
- [
- 23.47293,
- 59.31194
- ],
- [
- 23.47415,
- 59.26726
- ]
- ],
- [
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.25507,
- 58.19073
- ],
- [
- 24.25458,
- 58.14581
- ],
- [
- 24.17002,
- 58.14588
- ],
- [
- 24.17014,
- 58.1908
- ]
- ],
- [
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.08497,
- 58.10129
- ],
- [
- 23.99968,
- 58.10116
- ],
- [
- 23.99993,
- 58.05632
- ],
- [
- 23.91525,
- 58.05612
- ],
- [
- 23.915,
- 58.14613
- ],
- [
- 23.83032,
- 58.146
- ],
- [
- 23.82971,
- 58.23572
- ],
- [
- 23.91451,
- 58.23585
- ],
- [
- 23.91476,
- 58.19099
- ],
- [
- 24.08485,
- 58.19092
- ]
- ],
- [
- [
- 24.61854,
- 59.53612
- ],
- [
- 24.44183,
- 59.5368
- ],
- [
- 24.44309,
- 59.62659
- ],
- [
- 24.62016,
- 59.6258
- ],
- [
- 24.61854,
- 59.53612
- ]
- ],
- [
- [
- 26.40403,
- 59.7852
- ],
- [
- 26.31501,
- 59.78667
- ],
- [
- 26.31814,
- 59.83152
- ],
- [
- 26.40732,
- 59.82994
- ],
- [
- 26.40403,
- 59.7852
- ]
- ],
- [
- [
- 26.48308,
- 59.649
- ],
- [
- 26.48647,
- 59.69383
- ],
- [
- 26.57514,
- 59.69202
- ],
- [
- 26.57166,
- 59.64719
- ],
- [
- 26.48308,
- 59.649
- ]
- ],
- [
- [
- 23.15944,
- 57.78408
- ],
- [
- 23.24346,
- 57.78461
- ],
- [
- 23.24445,
- 57.73971
- ],
- [
- 23.32848,
- 57.74031
- ],
- [
- 23.32679,
- 57.82998
- ],
- [
- 23.15845,
- 57.82885
- ],
- [
- 23.15944,
- 57.78408
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maa-Ameti metsanduslik ortofoto"
- },
- "available_projections": [
- "EPSG:4326"
- ],
- "country_code": "EE",
- "id": "maaamet.ee-cir_ngr",
- "license_url": "http://svimik.com/Maa-amet_vastus_OSM.pdf",
- "name": "Estonia Forestry (Maaamet)",
- "type": "wms",
- "url": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=cir_ngr&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.35364,
- 58.85385
- ],
- [
- 22.09411,
- 58.85038
- ],
- [
- 22.09179,
- 58.8951
- ],
- [
- 22.00503,
- 58.89371
- ],
- [
- 21.99979,
- 58.98374
- ],
- [
- 22.34754,
- 58.98845
- ],
- [
- 22.34535,
- 59.03337
- ],
- [
- 22.51935,
- 59.03538
- ],
- [
- 22.51556,
- 59.1251
- ],
- [
- 22.69017,
- 59.12686
- ],
- [
- 22.69212,
- 59.08218
- ],
- [
- 22.77912,
- 59.083
- ],
- [
- 22.78083,
- 59.03814
- ],
- [
- 22.86808,
- 59.03877
- ],
- [
- 22.8693,
- 58.99399
- ],
- [
- 22.9563,
- 58.99487
- ],
- [
- 22.95495,
- 59.03959
- ],
- [
- 23.12895,
- 59.04097
- ],
- [
- 23.12786,
- 59.08582
- ],
- [
- 23.47671,
- 59.0877
- ],
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.64924,
- 59.26788
- ],
- [
- 23.64888,
- 59.31281
- ],
- [
- 23.73698,
- 59.313
- ],
- [
- 23.73649,
- 59.3578
- ],
- [
- 23.91158,
- 59.35787
- ],
- [
- 23.91207,
- 59.4028
- ],
- [
- 24.176,
- 59.4028
- ],
- [
- 24.17637,
- 59.4478
- ],
- [
- 24.26446,
- 59.44767
- ],
- [
- 24.26471,
- 59.49236
- ],
- [
- 24.70605,
- 59.49082
- ],
- [
- 24.70898,
- 59.62553
- ],
- [
- 24.79744,
- 59.62497
- ],
- [
- 24.79659,
- 59.58009
- ],
- [
- 24.97327,
- 59.57885
- ],
- [
- 24.97462,
- 59.62386
- ],
- [
- 24.88603,
- 59.62473
- ],
- [
- 24.88725,
- 59.66918
- ],
- [
- 24.9762,
- 59.66863
- ],
- [
- 24.9773,
- 59.71346
- ],
- [
- 25.06601,
- 59.71259
- ],
- [
- 25.0632,
- 59.62306
- ],
- [
- 25.24037,
- 59.62145
- ],
- [
- 25.24184,
- 59.66647
- ],
- [
- 25.33055,
- 59.66548
- ],
- [
- 25.32884,
- 59.62078
- ],
- [
- 25.41755,
- 59.61979
- ],
- [
- 25.41938,
- 59.66468
- ],
- [
- 25.6855,
- 59.66148
- ],
- [
- 25.68757,
- 59.70613
- ],
- [
- 25.86511,
- 59.70386
- ],
- [
- 25.86279,
- 59.65901
- ],
- [
- 26.12855,
- 59.65507
- ],
- [
- 26.12575,
- 59.6101
- ],
- [
- 26.39114,
- 59.60565
- ],
- [
- 26.38809,
- 59.56099
- ],
- [
- 26.82967,
- 59.55215
- ],
- [
- 26.82626,
- 59.50729
- ],
- [
- 26.91423,
- 59.50549
- ],
- [
- 26.91057,
- 59.46051
- ],
- [
- 27.96689,
- 59.43303
- ],
- [
- 27.9719,
- 59.4778
- ],
- [
- 28.03669,
- 59.4757
- ],
- [
- 28.04377,
- 59.47223
- ],
- [
- 28.04767,
- 59.46578
- ],
- [
- 28.05182,
- 59.46342
- ],
- [
- 28.06915,
- 59.46256
- ],
- [
- 28.08452,
- 59.45939
- ],
- [
- 28.12174,
- 59.44091
- ],
- [
- 28.13577,
- 59.4277
- ],
- [
- 28.13711,
- 59.42267
- ],
- [
- 28.14163,
- 59.41901
- ],
- [
- 28.16652,
- 59.41205
- ],
- [
- 28.17225,
- 59.40789
- ],
- [
- 28.19275,
- 59.4015
- ],
- [
- 28.21069,
- 59.3836
- ],
- [
- 28.21069,
- 59.37994
- ],
- [
- 28.20386,
- 59.37459
- ],
- [
- 28.21057,
- 59.37235
- ],
- [
- 28.21105,
- 59.36937
- ],
- [
- 28.20678,
- 59.36719
- ],
- [
- 28.20703,
- 59.36377
- ],
- [
- 28.19971,
- 59.36091
- ],
- [
- 28.20203,
- 59.35731
- ],
- [
- 28.19263,
- 59.35227
- ],
- [
- 28.19397,
- 59.34642
- ],
- [
- 28.16969,
- 59.33354
- ],
- [
- 28.13626,
- 59.29244
- ],
- [
- 28.12515,
- 59.28901
- ],
- [
- 28.11722,
- 59.28895
- ],
- [
- 28.1099,
- 59.29063
- ],
- [
- 28.05353,
- 59.2902
- ],
- [
- 28.02022,
- 59.28334
- ],
- [
- 27.99825,
- 59.2753
- ],
- [
- 27.97983,
- 59.27293
- ],
- [
- 27.96433,
- 59.27268
- ],
- [
- 27.95335,
- 59.26863
- ],
- [
- 27.9492,
- 59.26533
- ],
- [
- 27.90564,
- 59.24044
- ],
- [
- 27.90113,
- 59.23488
- ],
- [
- 27.901,
- 59.22639
- ],
- [
- 27.89783,
- 59.21746
- ],
- [
- 27.90235,
- 59.20728
- ],
- [
- 27.89234,
- 59.19222
- ],
- [
- 27.88978,
- 59.18379
- ],
- [
- 27.87648,
- 59.17372
- ],
- [
- 27.87184,
- 59.16841
- ],
- [
- 27.86818,
- 59.16159
- ],
- [
- 27.84414,
- 59.14814
- ],
- [
- 27.83206,
- 59.14401
- ],
- [
- 27.82035,
- 59.13362
- ],
- [
- 27.80986,
- 59.12905
- ],
- [
- 27.80595,
- 59.12166
- ],
- [
- 27.80534,
- 59.1127
- ],
- [
- 27.81071,
- 59.10819
- ],
- [
- 27.8101,
- 59.10606
- ],
- [
- 27.80205,
- 59.1028
- ],
- [
- 27.78887,
- 59.0909
- ],
- [
- 27.7907,
- 59.08112
- ],
- [
- 27.79375,
- 59.07842
- ],
- [
- 27.79411,
- 59.07566
- ],
- [
- 27.79277,
- 59.0729
- ],
- [
- 27.79302,
- 59.06927
- ],
- [
- 27.7885,
- 59.06657
- ],
- [
- 27.78265,
- 59.065
- ],
- [
- 27.77508,
- 59.0581
- ],
- [
- 27.77313,
- 59.05107
- ],
- [
- 27.77667,
- 59.04743
- ],
- [
- 27.76983,
- 59.03325
- ],
- [
- 27.76605,
- 59.03155
- ],
- [
- 27.75153,
- 59.03017
- ],
- [
- 27.74628,
- 59.02716
- ],
- [
- 27.74567,
- 59.01705
- ],
- [
- 27.74165,
- 59.00951
- ],
- [
- 27.74787,
- 58.99267
- ],
- [
- 27.74274,
- 58.98845
- ],
- [
- 27.73213,
- 58.9855
- ],
- [
- 27.6544,
- 58.98783
- ],
- [
- 27.65501,
- 58.99241
- ],
- [
- 27.39414,
- 58.99964
- ],
- [
- 27.38974,
- 58.95474
- ],
- [
- 27.12935,
- 58.96135
- ],
- [
- 27.12557,
- 58.9164
- ],
- [
- 27.03882,
- 58.91841
- ],
- [
- 27.0271,
- 58.7841
- ],
- [
- 27.11361,
- 58.78183
- ],
- [
- 27.10934,
- 58.73709
- ],
- [
- 27.19537,
- 58.73512
- ],
- [
- 27.18731,
- 58.64533
- ],
- [
- 27.27309,
- 58.64305
- ],
- [
- 27.25259,
- 58.41883
- ],
- [
- 27.53397,
- 58.41142
- ],
- [
- 27.5552,
- 58.36575
- ],
- [
- 27.51762,
- 58.33265
- ],
- [
- 27.51408,
- 58.32214
- ],
- [
- 27.49993,
- 58.32246
- ],
- [
- 27.48687,
- 58.18803
- ],
- [
- 27.52872,
- 58.18687
- ],
- [
- 27.59205,
- 58.11875
- ],
- [
- 27.63695,
- 58.09735
- ],
- [
- 27.60938,
- 58.05399
- ],
- [
- 27.62268,
- 58.0058
- ],
- [
- 27.64489,
- 58.00205
- ],
- [
- 27.65294,
- 58.00644
- ],
- [
- 27.64781,
- 58.01426
- ],
- [
- 27.64781,
- 58.02086
- ],
- [
- 27.66172,
- 58.01866
- ],
- [
- 27.66856,
- 58.01045
- ],
- [
- 27.68393,
- 58.00845
- ],
- [
- 27.6965,
- 58.0045
- ],
- [
- 27.70065,
- 57.99862
- ],
- [
- 27.69882,
- 57.98827
- ],
- [
- 27.69125,
- 57.98549
- ],
- [
- 27.68064,
- 57.97449
- ],
- [
- 27.6821,
- 57.9719
- ],
- [
- 27.68893,
- 57.97184
- ],
- [
- 27.68588,
- 57.95928
- ],
- [
- 27.65892,
- 57.9554
- ],
- [
- 27.66758,
- 57.951
- ],
- [
- 27.67161,
- 57.94627
- ],
- [
- 27.66917,
- 57.94174
- ],
- [
- 27.67649,
- 57.93552
- ],
- [
- 27.68247,
- 57.93655
- ],
- [
- 27.68613,
- 57.92794
- ],
- [
- 27.68247,
- 57.92437
- ],
- [
- 27.71078,
- 57.92392
- ],
- [
- 27.72029,
- 57.92036
- ],
- [
- 27.72054,
- 57.91174
- ],
- [
- 27.70834,
- 57.90616
- ],
- [
- 27.69882,
- 57.90616
- ],
- [
- 27.70614,
- 57.90136
- ],
- [
- 27.72896,
- 57.90739
- ],
- [
- 27.74677,
- 57.90169
- ],
- [
- 27.7536,
- 57.90409
- ],
- [
- 27.75739,
- 57.90318
- ],
- [
- 27.75592,
- 57.89806
- ],
- [
- 27.76959,
- 57.89566
- ],
- [
- 27.78094,
- 57.89832
- ],
- [
- 27.799,
- 57.89961
- ],
- [
- 27.81852,
- 57.89579
- ],
- [
- 27.82096,
- 57.89047
- ],
- [
- 27.81949,
- 57.888
- ],
- [
- 27.81059,
- 57.88612
- ],
- [
- 27.81827,
- 57.88249
- ],
- [
- 27.81169,
- 57.87204
- ],
- [
- 27.81583,
- 57.87166
- ],
- [
- 27.8184,
- 57.8651
- ],
- [
- 27.81632,
- 57.86134
- ],
- [
- 27.79875,
- 57.85205
- ],
- [
- 27.7946,
- 57.84634
- ],
- [
- 27.80058,
- 57.8442
- ],
- [
- 27.7957,
- 57.84017
- ],
- [
- 27.78862,
- 57.84186
- ],
- [
- 27.78411,
- 57.83725
- ],
- [
- 27.77715,
- 57.8325
- ],
- [
- 27.75849,
- 57.83536
- ],
- [
- 27.74165,
- 57.82679
- ],
- [
- 27.72383,
- 57.83179
- ],
- [
- 27.70541,
- 57.84192
- ],
- [
- 27.68771,
- 57.83419
- ],
- [
- 27.66636,
- 57.83653
- ],
- [
- 27.66026,
- 57.83893
- ],
- [
- 27.64818,
- 57.8377
- ],
- [
- 27.63634,
- 57.83978
- ],
- [
- 27.62487,
- 57.83751
- ],
- [
- 27.62207,
- 57.83874
- ],
- [
- 27.59791,
- 57.83328
- ],
- [
- 27.56252,
- 57.83023
- ],
- [
- 27.5563,
- 57.83127
- ],
- [
- 27.55227,
- 57.82113
- ],
- [
- 27.54446,
- 57.82204
- ],
- [
- 27.5452,
- 57.81808
- ],
- [
- 27.55056,
- 57.81769
- ],
- [
- 27.55667,
- 57.81366
- ],
- [
- 27.5408,
- 57.81288
- ],
- [
- 27.54471,
- 57.808
- ],
- [
- 27.53726,
- 57.80644
- ],
- [
- 27.53958,
- 57.80144
- ],
- [
- 27.53592,
- 57.79663
- ],
- [
- 27.53861,
- 57.79396
- ],
- [
- 27.52921,
- 57.78856
- ],
- [
- 27.5175,
- 57.78876
- ],
- [
- 27.51847,
- 57.79201
- ],
- [
- 27.50298,
- 57.78798
- ],
- [
- 27.50005,
- 57.78973
- ],
- [
- 27.4959,
- 57.78869
- ],
- [
- 27.50774,
- 57.78349
- ],
- [
- 27.51457,
- 57.77516
- ],
- [
- 27.5081,
- 57.77158
- ],
- [
- 27.51115,
- 57.76416
- ],
- [
- 27.51591,
- 57.7639
- ],
- [
- 27.52018,
- 57.75993
- ],
- [
- 27.52811,
- 57.75818
- ],
- [
- 27.53007,
- 57.75368
- ],
- [
- 27.53116,
- 57.74073
- ],
- [
- 27.548,
- 57.7333
- ],
- [
- 27.5419,
- 57.73037
- ],
- [
- 27.52799,
- 57.72946
- ],
- [
- 27.5236,
- 57.71616
- ],
- [
- 27.52762,
- 57.70899
- ],
- [
- 27.5236,
- 57.70802
- ],
- [
- 27.51652,
- 57.70873
- ],
- [
- 27.51066,
- 57.71101
- ],
- [
- 27.50859,
- 57.70723
- ],
- [
- 27.49993,
- 57.70495
- ],
- [
- 27.49529,
- 57.70749
- ],
- [
- 27.48711,
- 57.7191
- ],
- [
- 27.47357,
- 57.71545
- ],
- [
- 27.47064,
- 57.70802
- ],
- [
- 27.46149,
- 57.70619
- ],
- [
- 27.44807,
- 57.71616
- ],
- [
- 27.43086,
- 57.70756
- ],
- [
- 27.42818,
- 57.69902
- ],
- [
- 27.41341,
- 57.69915
- ],
- [
- 27.41647,
- 57.69524
- ],
- [
- 27.40744,
- 57.69276
- ],
- [
- 27.40231,
- 57.68493
- ],
- [
- 27.39133,
- 57.68539
- ],
- [
- 27.39377,
- 57.67913
- ],
- [
- 27.39145,
- 57.67671
- ],
- [
- 27.38193,
- 57.67332
- ],
- [
- 27.37779,
- 57.66836
- ],
- [
- 27.38364,
- 57.66059
- ],
- [
- 27.3801,
- 57.65883
- ],
- [
- 27.38755,
- 57.6555
- ],
- [
- 27.38047,
- 57.6495
- ],
- [
- 27.38352,
- 57.64799
- ],
- [
- 27.38157,
- 57.64368
- ],
- [
- 27.39072,
- 57.6431
- ],
- [
- 27.38816,
- 57.64009
- ],
- [
- 27.40085,
- 57.63742
- ],
- [
- 27.40317,
- 57.62905
- ],
- [
- 27.40182,
- 57.62376
- ],
- [
- 27.39597,
- 57.62115
- ],
- [
- 27.39023,
- 57.62036
- ],
- [
- 27.39084,
- 57.6169
- ],
- [
- 27.40195,
- 57.61775
- ],
- [
- 27.40634,
- 57.61546
- ],
- [
- 27.40683,
- 57.61246
- ],
- [
- 27.38572,
- 57.60304
- ],
- [
- 27.37827,
- 57.59513
- ],
- [
- 27.35692,
- 57.59696
- ],
- [
- 27.3413,
- 57.58984
- ],
- [
- 27.34179,
- 57.58539
- ],
- [
- 27.32886,
- 57.5797
- ],
- [
- 27.32141,
- 57.57898
- ],
- [
- 27.3341,
- 57.56596
- ],
- [
- 27.33178,
- 57.56066
- ],
- [
- 27.33776,
- 57.56007
- ],
- [
- 27.33886,
- 57.54671
- ],
- [
- 27.34386,
- 57.5454
- ],
- [
- 27.35472,
- 57.52575
- ],
- [
- 27.35131,
- 57.51632
- ],
- [
- 27.34569,
- 57.52104
- ],
- [
- 27.32446,
- 57.52274
- ],
- [
- 27.29664,
- 57.53859
- ],
- [
- 27.28017,
- 57.53643
- ],
- [
- 27.2737,
- 57.54311
- ],
- [
- 27.26431,
- 57.54377
- ],
- [
- 27.2637,
- 57.54841
- ],
- [
- 27.25772,
- 57.54979
- ],
- [
- 27.24796,
- 57.54769
- ],
- [
- 27.2249,
- 57.55385
- ],
- [
- 27.19329,
- 57.54966
- ],
- [
- 27.16145,
- 57.55922
- ],
- [
- 27.11654,
- 57.56118
- ],
- [
- 27.10092,
- 57.5653
- ],
- [
- 27.08506,
- 57.57538
- ],
- [
- 27.07262,
- 57.57734
- ],
- [
- 27.07225,
- 57.57989
- ],
- [
- 27.0559,
- 57.58251
- ],
- [
- 27.05285,
- 57.58087
- ],
- [
- 27.04687,
- 57.58048
- ],
- [
- 27.04492,
- 57.58251
- ],
- [
- 27.0332,
- 57.58532
- ],
- [
- 27.04126,
- 57.58761
- ],
- [
- 27.04418,
- 57.5967
- ],
- [
- 27.03101,
- 57.60461
- ],
- [
- 26.99513,
- 57.60461
- ],
- [
- 26.99233,
- 57.61076
- ],
- [
- 26.98696,
- 57.60867
- ],
- [
- 26.98366,
- 57.61174
- ],
- [
- 26.97549,
- 57.612
- ],
- [
- 26.97097,
- 57.60448
- ],
- [
- 26.9595,
- 57.60625
- ],
- [
- 26.9578,
- 57.60468
- ],
- [
- 26.94596,
- 57.60272
- ],
- [
- 26.93961,
- 57.60932
- ],
- [
- 26.95133,
- 57.61579
- ],
- [
- 26.94999,
- 57.62056
- ],
- [
- 26.94059,
- 57.61978
- ],
- [
- 26.92961,
- 57.62376
- ],
- [
- 26.92644,
- 57.6331
- ],
- [
- 26.90679,
- 57.63304
- ],
- [
- 26.89971,
- 57.63056
- ],
- [
- 26.90057,
- 57.62918
- ],
- [
- 26.89581,
- 57.62572
- ],
- [
- 26.88849,
- 57.62357
- ],
- [
- 26.88898,
- 57.62193
- ],
- [
- 26.87458,
- 57.61906
- ],
- [
- 26.87275,
- 57.61736
- ],
- [
- 26.86555,
- 57.61592
- ],
- [
- 26.85786,
- 57.60997
- ],
- [
- 26.86469,
- 57.6084
- ],
- [
- 26.85811,
- 57.60049
- ],
- [
- 26.85994,
- 57.59598
- ],
- [
- 26.86433,
- 57.59415
- ],
- [
- 26.86177,
- 57.59108
- ],
- [
- 26.84688,
- 57.5884
- ],
- [
- 26.83504,
- 57.58244
- ],
- [
- 26.81589,
- 57.58153
- ],
- [
- 26.80954,
- 57.58473
- ],
- [
- 26.79685,
- 57.58179
- ],
- [
- 26.79929,
- 57.58002
- ],
- [
- 26.79295,
- 57.57315
- ],
- [
- 26.78685,
- 57.57525
- ],
- [
- 26.7766,
- 57.55994
- ],
- [
- 26.76915,
- 57.56039
- ],
- [
- 26.76354,
- 57.56314
- ],
- [
- 26.75366,
- 57.56249
- ],
- [
- 26.75817,
- 57.5653
- ],
- [
- 26.76891,
- 57.57041
- ],
- [
- 26.77379,
- 57.57473
- ],
- [
- 26.76769,
- 57.57754
- ],
- [
- 26.74804,
- 57.5778
- ],
- [
- 26.75317,
- 57.58009
- ],
- [
- 26.73816,
- 57.58774
- ],
- [
- 26.72901,
- 57.58016
- ],
- [
- 26.73828,
- 57.57584
- ],
- [
- 26.73072,
- 57.56903
- ],
- [
- 26.72388,
- 57.57244
- ],
- [
- 26.71107,
- 57.56596
- ],
- [
- 26.69972,
- 57.57106
- ],
- [
- 26.69753,
- 57.5706
- ],
- [
- 26.69741,
- 57.56733
- ],
- [
- 26.69155,
- 57.56615
- ],
- [
- 26.67569,
- 57.56668
- ],
- [
- 26.67105,
- 57.56327
- ],
- [
- 26.6719,
- 57.55385
- ],
- [
- 26.66531,
- 57.55287
- ],
- [
- 26.64652,
- 57.55391
- ],
- [
- 26.64262,
- 57.54658
- ],
- [
- 26.63444,
- 57.54357
- ],
- [
- 26.61443,
- 57.52909
- ],
- [
- 26.61712,
- 57.50885
- ],
- [
- 26.60467,
- 57.51212
- ],
- [
- 26.60479,
- 57.51442
- ],
- [
- 26.5954,
- 57.51376
- ],
- [
- 26.59479,
- 57.51592
- ],
- [
- 26.58808,
- 57.51619
- ],
- [
- 26.59015,
- 57.52516
- ],
- [
- 26.58698,
- 57.52621
- ],
- [
- 26.58771,
- 57.53781
- ],
- [
- 26.58381,
- 57.53957
- ],
- [
- 26.57978,
- 57.53695
- ],
- [
- 26.57966,
- 57.53375
- ],
- [
- 26.56123,
- 57.5285
- ],
- [
- 26.56184,
- 57.52261
- ],
- [
- 26.5666,
- 57.51946
- ],
- [
- 26.55794,
- 57.5137
- ],
- [
- 26.52585,
- 57.51619
- ],
- [
- 26.49961,
- 57.52451
- ],
- [
- 26.49095,
- 57.54534
- ],
- [
- 26.46996,
- 57.57551
- ],
- [
- 26.40151,
- 57.57237
- ],
- [
- 26.34489,
- 57.58408
- ],
- [
- 26.33476,
- 57.5797
- ],
- [
- 26.32781,
- 57.57963
- ],
- [
- 26.32635,
- 57.58277
- ],
- [
- 26.3117,
- 57.58473
- ],
- [
- 26.30853,
- 57.59291
- ],
- [
- 26.3006,
- 57.59343
- ],
- [
- 26.29291,
- 57.59114
- ],
- [
- 26.28352,
- 57.59232
- ],
- [
- 26.28217,
- 57.5952
- ],
- [
- 26.27754,
- 57.595
- ],
- [
- 26.27034,
- 57.6001
- ],
- [
- 26.27022,
- 57.60461
- ],
- [
- 26.25423,
- 57.61383
- ],
- [
- 26.24715,
- 57.62082
- ],
- [
- 26.24813,
- 57.62775
- ],
- [
- 26.23947,
- 57.63408
- ],
- [
- 26.24203,
- 57.63539
- ],
- [
- 26.24667,
- 57.63559
- ],
- [
- 26.23959,
- 57.64649
- ],
- [
- 26.23239,
- 57.6461
- ],
- [
- 26.23117,
- 57.64904
- ],
- [
- 26.24215,
- 57.65146
- ],
- [
- 26.2363,
- 57.65753
- ],
- [
- 26.23032,
- 57.65805
- ],
- [
- 26.21043,
- 57.66601
- ],
- [
- 26.21372,
- 57.66888
- ],
- [
- 26.21092,
- 57.67071
- ],
- [
- 26.21018,
- 57.67906
- ],
- [
- 26.20079,
- 57.68102
- ],
- [
- 26.19896,
- 57.68356
- ],
- [
- 26.19444,
- 57.68519
- ],
- [
- 26.18541,
- 57.68454
- ],
- [
- 26.17712,
- 57.68761
- ],
- [
- 26.18871,
- 57.69472
- ],
- [
- 26.19859,
- 57.70906
- ],
- [
- 26.20567,
- 57.71486
- ],
- [
- 26.1726,
- 57.72867
- ],
- [
- 26.141,
- 57.73278
- ],
- [
- 26.13563,
- 57.73923
- ],
- [
- 26.13905,
- 57.74548
- ],
- [
- 26.13551,
- 57.7503
- ],
- [
- 26.10537,
- 57.757
- ],
- [
- 26.08035,
- 57.76547
- ],
- [
- 26.07974,
- 57.76384
- ],
- [
- 26.07328,
- 57.76371
- ],
- [
- 26.07047,
- 57.7656
- ],
- [
- 26.05912,
- 57.75987
- ],
- [
- 26.049,
- 57.7611
- ],
- [
- 26.0435,
- 57.76703
- ],
- [
- 26.03326,
- 57.77054
- ],
- [
- 26.02374,
- 57.76761
- ],
- [
- 26.01776,
- 57.7723
- ],
- [
- 26.02459,
- 57.77516
- ],
- [
- 26.02496,
- 57.7816
- ],
- [
- 26.02252,
- 57.78355
- ],
- [
- 26.02776,
- 57.7898
- ],
- [
- 26.03081,
- 57.79097
- ],
- [
- 26.03338,
- 57.80105
- ],
- [
- 26.03679,
- 57.80592
- ],
- [
- 26.03606,
- 57.8108
- ],
- [
- 26.04851,
- 57.82289
- ],
- [
- 26.05705,
- 57.83842
- ],
- [
- 26.05558,
- 57.84764
- ],
- [
- 26.03667,
- 57.84926
- ],
- [
- 26.02008,
- 57.84517
- ],
- [
- 26.00958,
- 57.85731
- ],
- [
- 25.99848,
- 57.85816
- ],
- [
- 25.96273,
- 57.84491
- ],
- [
- 25.931,
- 57.85244
- ],
- [
- 25.89537,
- 57.84972
- ],
- [
- 25.8883,
- 57.84595
- ],
- [
- 25.88085,
- 57.84946
- ],
- [
- 25.88573,
- 57.85277
- ],
- [
- 25.88427,
- 57.85595
- ],
- [
- 25.87561,
- 57.85796
- ],
- [
- 25.87475,
- 57.86322
- ],
- [
- 25.8595,
- 57.85614
- ],
- [
- 25.81923,
- 57.86419
- ],
- [
- 25.78312,
- 57.89948
- ],
- [
- 25.78629,
- 57.90428
- ],
- [
- 25.77165,
- 57.91206
- ],
- [
- 25.75102,
- 57.91692
- ],
- [
- 25.73724,
- 57.92295
- ],
- [
- 25.72833,
- 57.92133
- ],
- [
- 25.72247,
- 57.91245
- ],
- [
- 25.70356,
- 57.90331
- ],
- [
- 25.67916,
- 57.90461
- ],
- [
- 25.67549,
- 57.91277
- ],
- [
- 25.66207,
- 57.91511
- ],
- [
- 25.65609,
- 57.91439
- ],
- [
- 25.64889,
- 57.91666
- ],
- [
- 25.64987,
- 57.91841
- ],
- [
- 25.63828,
- 57.93059
- ],
- [
- 25.57983,
- 57.9442
- ],
- [
- 25.59399,
- 57.95961
- ],
- [
- 25.58935,
- 57.96504
- ],
- [
- 25.58239,
- 57.96783
- ],
- [
- 25.58044,
- 57.9721
- ],
- [
- 25.57483,
- 57.9741
- ],
- [
- 25.56556,
- 57.96718
- ],
- [
- 25.56604,
- 57.96258
- ],
- [
- 25.55714,
- 57.96038
- ],
- [
- 25.55567,
- 57.96711
- ],
- [
- 25.55079,
- 57.97255
- ],
- [
- 25.53725,
- 57.97139
- ],
- [
- 25.52566,
- 57.97184
- ],
- [
- 25.5226,
- 57.96802
- ],
- [
- 25.51638,
- 57.96737
- ],
- [
- 25.51211,
- 57.96977
- ],
- [
- 25.52212,
- 57.97488
- ],
- [
- 25.51943,
- 57.98031
- ],
- [
- 25.48539,
- 57.97475
- ],
- [
- 25.47843,
- 57.98006
- ],
- [
- 25.47843,
- 57.98264
- ],
- [
- 25.44219,
- 57.99616
- ],
- [
- 25.44817,
- 58.00114
- ],
- [
- 25.46648,
- 58.00515
- ],
- [
- 25.44817,
- 58.01698
- ],
- [
- 25.40693,
- 58.02893
- ],
- [
- 25.37155,
- 58.02926
- ],
- [
- 25.36374,
- 58.03171
- ],
- [
- 25.35336,
- 58.04334
- ],
- [
- 25.34482,
- 58.04676
- ],
- [
- 25.33604,
- 58.05709
- ],
- [
- 25.3292,
- 58.05858
- ],
- [
- 25.32664,
- 58.0638
- ],
- [
- 25.31981,
- 58.066
- ],
- [
- 25.31908,
- 58.06929
- ],
- [
- 25.29553,
- 58.08161
- ],
- [
- 25.28686,
- 58.08149
- ],
- [
- 25.28113,
- 58.07019
- ],
- [
- 25.266,
- 58.06716
- ],
- [
- 25.26502,
- 58.06
- ],
- [
- 25.27991,
- 58.05063
- ],
- [
- 25.29309,
- 58.0467
- ],
- [
- 25.30431,
- 58.03449
- ],
- [
- 25.30114,
- 58.01504
- ],
- [
- 25.29748,
- 58.01459
- ],
- [
- 25.30285,
- 58.00011
- ],
- [
- 25.29577,
- 57.99972
- ],
- [
- 25.29736,
- 57.99661
- ],
- [
- 25.30358,
- 57.99396
- ],
- [
- 25.30138,
- 57.99273
- ],
- [
- 25.29187,
- 57.99286
- ],
- [
- 25.28308,
- 57.98963
- ],
- [
- 25.26722,
- 57.99454
- ],
- [
- 25.25611,
- 57.9939
- ],
- [
- 25.25502,
- 58.00347
- ],
- [
- 25.2455,
- 58.00302
- ],
- [
- 25.22768,
- 58.01782
- ],
- [
- 25.24587,
- 58.01872
- ],
- [
- 25.23562,
- 58.02286
- ],
- [
- 25.23635,
- 58.02441
- ],
- [
- 25.22732,
- 58.02435
- ],
- [
- 25.22537,
- 58.02195
- ],
- [
- 25.21902,
- 58.02977
- ],
- [
- 25.21658,
- 58.04088
- ],
- [
- 25.22695,
- 58.04799
- ],
- [
- 25.22817,
- 58.05348
- ],
- [
- 25.22122,
- 58.05302
- ],
- [
- 25.22146,
- 58.05051
- ],
- [
- 25.2178,
- 58.04908
- ],
- [
- 25.21597,
- 58.05954
- ],
- [
- 25.21219,
- 58.06226
- ],
- [
- 25.20523,
- 58.06122
- ],
- [
- 25.20389,
- 58.0651
- ],
- [
- 25.21621,
- 58.07413
- ],
- [
- 25.21207,
- 58.08052
- ],
- [
- 25.19962,
- 58.08536
- ],
- [
- 25.18949,
- 58.08007
- ],
- [
- 25.19169,
- 58.07613
- ],
- [
- 25.1535,
- 58.07478
- ],
- [
- 25.15154,
- 58.07703
- ],
- [
- 25.13397,
- 58.07974
- ],
- [
- 25.10579,
- 58.07749
- ],
- [
- 25.10518,
- 58.06645
- ],
- [
- 25.07662,
- 58.06645
- ],
- [
- 25.02037,
- 58.01769
- ],
- [
- 24.99512,
- 58.01084
- ],
- [
- 24.94863,
- 58.00942
- ],
- [
- 24.83234,
- 57.97177
- ],
- [
- 24.80806,
- 57.99066
- ],
- [
- 24.74229,
- 57.98187
- ],
- [
- 24.74339,
- 57.96491
- ],
- [
- 24.7329,
- 57.96239
- ],
- [
- 24.71508,
- 57.96271
- ],
- [
- 24.6919,
- 57.94653
- ],
- [
- 24.67335,
- 57.95896
- ],
- [
- 24.64468,
- 57.95889
- ],
- [
- 24.64187,
- 57.95423
- ],
- [
- 24.64577,
- 57.95268
- ],
- [
- 24.62869,
- 57.94193
- ],
- [
- 24.61612,
- 57.94368
- ],
- [
- 24.60892,
- 57.95125
- ],
- [
- 24.58464,
- 57.96174
- ],
- [
- 24.57317,
- 57.95436
- ],
- [
- 24.54792,
- 57.94938
- ],
- [
- 24.54352,
- 57.94478
- ],
- [
- 24.5301,
- 57.94705
- ],
- [
- 24.5207,
- 57.94303
- ],
- [
- 24.51839,
- 57.93675
- ],
- [
- 24.5096,
- 57.93442
- ],
- [
- 24.51326,
- 57.93066
- ],
- [
- 24.4625,
- 57.92496
- ],
- [
- 24.44579,
- 57.90798
- ],
- [
- 24.46018,
- 57.90662
- ],
- [
- 24.45225,
- 57.89942
- ],
- [
- 24.46006,
- 57.87977
- ],
- [
- 24.41138,
- 57.86491
- ],
- [
- 24.40906,
- 57.87191
- ],
- [
- 24.33707,
- 57.87393
- ],
- [
- 24.33829,
- 58.0109
- ],
- [
- 24.42272,
- 58.01097
- ],
- [
- 24.42614,
- 58.28002
- ],
- [
- 24.51155,
- 58.2797
- ],
- [
- 24.51216,
- 58.32471
- ],
- [
- 24.42638,
- 58.32503
- ],
- [
- 24.42712,
- 58.36972
- ],
- [
- 24.34182,
- 58.37017
- ],
- [
- 24.34048,
- 58.23547
- ],
- [
- 24.17014,
- 58.23572
- ],
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.0851,
- 58.23605
- ],
- [
- 24.00066,
- 58.23579
- ],
- [
- 23.99993,
- 58.28092
- ],
- [
- 23.82971,
- 58.28047
- ],
- [
- 23.82947,
- 58.32554
- ],
- [
- 23.65864,
- 58.32496
- ],
- [
- 23.65791,
- 58.41493
- ],
- [
- 23.57225,
- 58.41468
- ],
- [
- 23.57127,
- 58.50436
- ],
- [
- 23.39935,
- 58.50359
- ],
- [
- 23.40106,
- 58.41391
- ],
- [
- 23.14421,
- 58.41238
- ],
- [
- 23.14567,
- 58.36735
- ],
- [
- 23.05989,
- 58.36703
- ],
- [
- 23.06172,
- 58.32221
- ],
- [
- 22.9757,
- 58.32157
- ],
- [
- 22.97716,
- 58.27681
- ],
- [
- 22.89187,
- 58.27598
- ],
- [
- 22.89358,
- 58.23103
- ],
- [
- 22.80865,
- 58.2302
- ],
- [
- 22.81012,
- 58.18539
- ],
- [
- 22.89529,
- 58.1861
- ],
- [
- 22.89663,
- 58.1413
- ],
- [
- 22.72641,
- 58.13982
- ],
- [
- 22.72495,
- 58.18475
- ],
- [
- 22.55522,
- 58.18276
- ],
- [
- 22.55693,
- 58.13744
- ],
- [
- 22.64173,
- 58.13886
- ],
- [
- 22.64344,
- 58.094
- ],
- [
- 22.38903,
- 58.0909
- ],
- [
- 22.38525,
- 58.18063
- ],
- [
- 22.29995,
- 58.17967
- ],
- [
- 22.30679,
- 58.04527
- ],
- [
- 22.22198,
- 58.0436
- ],
- [
- 22.22626,
- 57.95404
- ],
- [
- 22.14206,
- 57.95281
- ],
- [
- 22.1445,
- 57.90804
- ],
- [
- 22.06007,
- 57.90681
- ],
- [
- 22.06263,
- 57.86186
- ],
- [
- 21.97807,
- 57.86043
- ],
- [
- 21.96831,
- 58.04004
- ],
- [
- 22.05274,
- 58.04134
- ],
- [
- 22.04506,
- 58.17581
- ],
- [
- 21.96038,
- 58.17471
- ],
- [
- 21.95781,
- 58.21941
- ],
- [
- 21.78723,
- 58.21638
- ],
- [
- 21.78211,
- 58.30631
- ],
- [
- 21.69681,
- 58.3049
- ],
- [
- 21.69401,
- 58.34975
- ],
- [
- 21.77942,
- 58.35122
- ],
- [
- 21.76795,
- 58.53074
- ],
- [
- 22.02566,
- 58.53488
- ],
- [
- 22.02797,
- 58.49001
- ],
- [
- 22.11375,
- 58.49167
- ],
- [
- 22.11144,
- 58.53621
- ],
- [
- 22.19709,
- 58.53742
- ],
- [
- 22.19453,
- 58.5823
- ],
- [
- 22.45236,
- 58.58573
- ],
- [
- 22.44638,
- 58.7203
- ],
- [
- 22.36023,
- 58.71916
- ],
- [
- 22.35364,
- 58.85385
- ]
- ],
- [
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.29868,
- 59.26632
- ],
- [
- 23.29795,
- 59.31138
- ],
- [
- 23.47293,
- 59.31194
- ],
- [
- 23.47415,
- 59.26726
- ]
- ],
- [
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.25507,
- 58.19073
- ],
- [
- 24.25458,
- 58.14581
- ],
- [
- 24.17002,
- 58.14588
- ],
- [
- 24.17014,
- 58.1908
- ]
- ],
- [
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.08497,
- 58.10129
- ],
- [
- 23.99968,
- 58.10116
- ],
- [
- 23.99993,
- 58.05632
- ],
- [
- 23.91525,
- 58.05612
- ],
- [
- 23.915,
- 58.14613
- ],
- [
- 23.83032,
- 58.146
- ],
- [
- 23.82971,
- 58.23572
- ],
- [
- 23.91451,
- 58.23585
- ],
- [
- 23.91476,
- 58.19099
- ],
- [
- 24.08485,
- 58.19092
- ]
- ],
- [
- [
- 24.61854,
- 59.53612
- ],
- [
- 24.44183,
- 59.5368
- ],
- [
- 24.44309,
- 59.62659
- ],
- [
- 24.62016,
- 59.6258
- ],
- [
- 24.61854,
- 59.53612
- ]
- ],
- [
- [
- 26.40403,
- 59.7852
- ],
- [
- 26.31501,
- 59.78667
- ],
- [
- 26.31814,
- 59.83152
- ],
- [
- 26.40732,
- 59.82994
- ],
- [
- 26.40403,
- 59.7852
- ]
- ],
- [
- [
- 26.48308,
- 59.649
- ],
- [
- 26.48647,
- 59.69383
- ],
- [
- 26.57514,
- 59.69202
- ],
- [
- 26.57166,
- 59.64719
- ],
- [
- 26.48308,
- 59.649
- ]
- ],
- [
- [
- 23.15944,
- 57.78408
- ],
- [
- 23.24346,
- 57.78461
- ],
- [
- 23.24445,
- 57.73971
- ],
- [
- 23.32848,
- 57.74031
- ],
- [
- 23.32679,
- 57.82998
- ],
- [
- 23.15845,
- 57.82885
- ],
- [
- 23.15944,
- 57.78408
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maa-Ameti katastrikaart ortofoto alusel"
- },
- "available_projections": [
- "EPSG:4326"
- ],
- "country_code": "EE",
- "id": "Maaamet-Estonia_Cadastre",
- "license_url": "http://svimik.com/Maa-amet_vastus_OSM.pdf",
- "name": "Estonia Cadastre (Maaamet)",
- "type": "wms",
- "url": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=of10000,TOPOYKSUS_6569,TOPOYKSUS_6573&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.35364,
- 58.85385
- ],
- [
- 22.09411,
- 58.85038
- ],
- [
- 22.09179,
- 58.8951
- ],
- [
- 22.00503,
- 58.89371
- ],
- [
- 21.99979,
- 58.98374
- ],
- [
- 22.34754,
- 58.98845
- ],
- [
- 22.34535,
- 59.03337
- ],
- [
- 22.51935,
- 59.03538
- ],
- [
- 22.51556,
- 59.1251
- ],
- [
- 22.69017,
- 59.12686
- ],
- [
- 22.69212,
- 59.08218
- ],
- [
- 22.77912,
- 59.083
- ],
- [
- 22.78083,
- 59.03814
- ],
- [
- 22.86808,
- 59.03877
- ],
- [
- 22.8693,
- 58.99399
- ],
- [
- 22.9563,
- 58.99487
- ],
- [
- 22.95495,
- 59.03959
- ],
- [
- 23.12895,
- 59.04097
- ],
- [
- 23.12786,
- 59.08582
- ],
- [
- 23.47671,
- 59.0877
- ],
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.64924,
- 59.26788
- ],
- [
- 23.64888,
- 59.31281
- ],
- [
- 23.73698,
- 59.313
- ],
- [
- 23.73649,
- 59.3578
- ],
- [
- 23.91158,
- 59.35787
- ],
- [
- 23.91207,
- 59.4028
- ],
- [
- 24.176,
- 59.4028
- ],
- [
- 24.17637,
- 59.4478
- ],
- [
- 24.26446,
- 59.44767
- ],
- [
- 24.26471,
- 59.49236
- ],
- [
- 24.70605,
- 59.49082
- ],
- [
- 24.70898,
- 59.62553
- ],
- [
- 24.79744,
- 59.62497
- ],
- [
- 24.79659,
- 59.58009
- ],
- [
- 24.97327,
- 59.57885
- ],
- [
- 24.97462,
- 59.62386
- ],
- [
- 24.88603,
- 59.62473
- ],
- [
- 24.88725,
- 59.66918
- ],
- [
- 24.9762,
- 59.66863
- ],
- [
- 24.9773,
- 59.71346
- ],
- [
- 25.06601,
- 59.71259
- ],
- [
- 25.0632,
- 59.62306
- ],
- [
- 25.24037,
- 59.62145
- ],
- [
- 25.24184,
- 59.66647
- ],
- [
- 25.33055,
- 59.66548
- ],
- [
- 25.32884,
- 59.62078
- ],
- [
- 25.41755,
- 59.61979
- ],
- [
- 25.41938,
- 59.66468
- ],
- [
- 25.6855,
- 59.66148
- ],
- [
- 25.68757,
- 59.70613
- ],
- [
- 25.86511,
- 59.70386
- ],
- [
- 25.86279,
- 59.65901
- ],
- [
- 26.12855,
- 59.65507
- ],
- [
- 26.12575,
- 59.6101
- ],
- [
- 26.39114,
- 59.60565
- ],
- [
- 26.38809,
- 59.56099
- ],
- [
- 26.82967,
- 59.55215
- ],
- [
- 26.82626,
- 59.50729
- ],
- [
- 26.91423,
- 59.50549
- ],
- [
- 26.91057,
- 59.46051
- ],
- [
- 27.96689,
- 59.43303
- ],
- [
- 27.9719,
- 59.4778
- ],
- [
- 28.03669,
- 59.4757
- ],
- [
- 28.04377,
- 59.47223
- ],
- [
- 28.04767,
- 59.46578
- ],
- [
- 28.05182,
- 59.46342
- ],
- [
- 28.06915,
- 59.46256
- ],
- [
- 28.08452,
- 59.45939
- ],
- [
- 28.12174,
- 59.44091
- ],
- [
- 28.13577,
- 59.4277
- ],
- [
- 28.13711,
- 59.42267
- ],
- [
- 28.14163,
- 59.41901
- ],
- [
- 28.16652,
- 59.41205
- ],
- [
- 28.17225,
- 59.40789
- ],
- [
- 28.19275,
- 59.4015
- ],
- [
- 28.21069,
- 59.3836
- ],
- [
- 28.21069,
- 59.37994
- ],
- [
- 28.20386,
- 59.37459
- ],
- [
- 28.21057,
- 59.37235
- ],
- [
- 28.21105,
- 59.36937
- ],
- [
- 28.20678,
- 59.36719
- ],
- [
- 28.20703,
- 59.36377
- ],
- [
- 28.19971,
- 59.36091
- ],
- [
- 28.20203,
- 59.35731
- ],
- [
- 28.19263,
- 59.35227
- ],
- [
- 28.19397,
- 59.34642
- ],
- [
- 28.16969,
- 59.33354
- ],
- [
- 28.13626,
- 59.29244
- ],
- [
- 28.12515,
- 59.28901
- ],
- [
- 28.11722,
- 59.28895
- ],
- [
- 28.1099,
- 59.29063
- ],
- [
- 28.05353,
- 59.2902
- ],
- [
- 28.02022,
- 59.28334
- ],
- [
- 27.99825,
- 59.2753
- ],
- [
- 27.97983,
- 59.27293
- ],
- [
- 27.96433,
- 59.27268
- ],
- [
- 27.95335,
- 59.26863
- ],
- [
- 27.9492,
- 59.26533
- ],
- [
- 27.90564,
- 59.24044
- ],
- [
- 27.90113,
- 59.23488
- ],
- [
- 27.901,
- 59.22639
- ],
- [
- 27.89783,
- 59.21746
- ],
- [
- 27.90235,
- 59.20728
- ],
- [
- 27.89234,
- 59.19222
- ],
- [
- 27.88978,
- 59.18379
- ],
- [
- 27.87648,
- 59.17372
- ],
- [
- 27.87184,
- 59.16841
- ],
- [
- 27.86818,
- 59.16159
- ],
- [
- 27.84414,
- 59.14814
- ],
- [
- 27.83206,
- 59.14401
- ],
- [
- 27.82035,
- 59.13362
- ],
- [
- 27.80986,
- 59.12905
- ],
- [
- 27.80595,
- 59.12166
- ],
- [
- 27.80534,
- 59.1127
- ],
- [
- 27.81071,
- 59.10819
- ],
- [
- 27.8101,
- 59.10606
- ],
- [
- 27.80205,
- 59.1028
- ],
- [
- 27.78887,
- 59.0909
- ],
- [
- 27.7907,
- 59.08112
- ],
- [
- 27.79375,
- 59.07842
- ],
- [
- 27.79411,
- 59.07566
- ],
- [
- 27.79277,
- 59.0729
- ],
- [
- 27.79302,
- 59.06927
- ],
- [
- 27.7885,
- 59.06657
- ],
- [
- 27.78265,
- 59.065
- ],
- [
- 27.77508,
- 59.0581
- ],
- [
- 27.77313,
- 59.05107
- ],
- [
- 27.77667,
- 59.04743
- ],
- [
- 27.76983,
- 59.03325
- ],
- [
- 27.76605,
- 59.03155
- ],
- [
- 27.75153,
- 59.03017
- ],
- [
- 27.74628,
- 59.02716
- ],
- [
- 27.74567,
- 59.01705
- ],
- [
- 27.74165,
- 59.00951
- ],
- [
- 27.74787,
- 58.99267
- ],
- [
- 27.74274,
- 58.98845
- ],
- [
- 27.73213,
- 58.9855
- ],
- [
- 27.6544,
- 58.98783
- ],
- [
- 27.65501,
- 58.99241
- ],
- [
- 27.39414,
- 58.99964
- ],
- [
- 27.38974,
- 58.95474
- ],
- [
- 27.12935,
- 58.96135
- ],
- [
- 27.12557,
- 58.9164
- ],
- [
- 27.03882,
- 58.91841
- ],
- [
- 27.0271,
- 58.7841
- ],
- [
- 27.11361,
- 58.78183
- ],
- [
- 27.10934,
- 58.73709
- ],
- [
- 27.19537,
- 58.73512
- ],
- [
- 27.18731,
- 58.64533
- ],
- [
- 27.27309,
- 58.64305
- ],
- [
- 27.25259,
- 58.41883
- ],
- [
- 27.53397,
- 58.41142
- ],
- [
- 27.5552,
- 58.36575
- ],
- [
- 27.51762,
- 58.33265
- ],
- [
- 27.51408,
- 58.32214
- ],
- [
- 27.49993,
- 58.32246
- ],
- [
- 27.48687,
- 58.18803
- ],
- [
- 27.52872,
- 58.18687
- ],
- [
- 27.59205,
- 58.11875
- ],
- [
- 27.63695,
- 58.09735
- ],
- [
- 27.60938,
- 58.05399
- ],
- [
- 27.62268,
- 58.0058
- ],
- [
- 27.64489,
- 58.00205
- ],
- [
- 27.65294,
- 58.00644
- ],
- [
- 27.64781,
- 58.01426
- ],
- [
- 27.64781,
- 58.02086
- ],
- [
- 27.66172,
- 58.01866
- ],
- [
- 27.66856,
- 58.01045
- ],
- [
- 27.68393,
- 58.00845
- ],
- [
- 27.6965,
- 58.0045
- ],
- [
- 27.70065,
- 57.99862
- ],
- [
- 27.69882,
- 57.98827
- ],
- [
- 27.69125,
- 57.98549
- ],
- [
- 27.68064,
- 57.97449
- ],
- [
- 27.6821,
- 57.9719
- ],
- [
- 27.68893,
- 57.97184
- ],
- [
- 27.68588,
- 57.95928
- ],
- [
- 27.65892,
- 57.9554
- ],
- [
- 27.66758,
- 57.951
- ],
- [
- 27.67161,
- 57.94627
- ],
- [
- 27.66917,
- 57.94174
- ],
- [
- 27.67649,
- 57.93552
- ],
- [
- 27.68247,
- 57.93655
- ],
- [
- 27.68613,
- 57.92794
- ],
- [
- 27.68247,
- 57.92437
- ],
- [
- 27.71078,
- 57.92392
- ],
- [
- 27.72029,
- 57.92036
- ],
- [
- 27.72054,
- 57.91174
- ],
- [
- 27.70834,
- 57.90616
- ],
- [
- 27.69882,
- 57.90616
- ],
- [
- 27.70614,
- 57.90136
- ],
- [
- 27.72896,
- 57.90739
- ],
- [
- 27.74677,
- 57.90169
- ],
- [
- 27.7536,
- 57.90409
- ],
- [
- 27.75739,
- 57.90318
- ],
- [
- 27.75592,
- 57.89806
- ],
- [
- 27.76959,
- 57.89566
- ],
- [
- 27.78094,
- 57.89832
- ],
- [
- 27.799,
- 57.89961
- ],
- [
- 27.81852,
- 57.89579
- ],
- [
- 27.82096,
- 57.89047
- ],
- [
- 27.81949,
- 57.888
- ],
- [
- 27.81059,
- 57.88612
- ],
- [
- 27.81827,
- 57.88249
- ],
- [
- 27.81169,
- 57.87204
- ],
- [
- 27.81583,
- 57.87166
- ],
- [
- 27.8184,
- 57.8651
- ],
- [
- 27.81632,
- 57.86134
- ],
- [
- 27.79875,
- 57.85205
- ],
- [
- 27.7946,
- 57.84634
- ],
- [
- 27.80058,
- 57.8442
- ],
- [
- 27.7957,
- 57.84017
- ],
- [
- 27.78862,
- 57.84186
- ],
- [
- 27.78411,
- 57.83725
- ],
- [
- 27.77715,
- 57.8325
- ],
- [
- 27.75849,
- 57.83536
- ],
- [
- 27.74165,
- 57.82679
- ],
- [
- 27.72383,
- 57.83179
- ],
- [
- 27.70541,
- 57.84192
- ],
- [
- 27.68771,
- 57.83419
- ],
- [
- 27.66636,
- 57.83653
- ],
- [
- 27.66026,
- 57.83893
- ],
- [
- 27.64818,
- 57.8377
- ],
- [
- 27.63634,
- 57.83978
- ],
- [
- 27.62487,
- 57.83751
- ],
- [
- 27.62207,
- 57.83874
- ],
- [
- 27.59791,
- 57.83328
- ],
- [
- 27.56252,
- 57.83023
- ],
- [
- 27.5563,
- 57.83127
- ],
- [
- 27.55227,
- 57.82113
- ],
- [
- 27.54446,
- 57.82204
- ],
- [
- 27.5452,
- 57.81808
- ],
- [
- 27.55056,
- 57.81769
- ],
- [
- 27.55667,
- 57.81366
- ],
- [
- 27.5408,
- 57.81288
- ],
- [
- 27.54471,
- 57.808
- ],
- [
- 27.53726,
- 57.80644
- ],
- [
- 27.53958,
- 57.80144
- ],
- [
- 27.53592,
- 57.79663
- ],
- [
- 27.53861,
- 57.79396
- ],
- [
- 27.52921,
- 57.78856
- ],
- [
- 27.5175,
- 57.78876
- ],
- [
- 27.51847,
- 57.79201
- ],
- [
- 27.50298,
- 57.78798
- ],
- [
- 27.50005,
- 57.78973
- ],
- [
- 27.4959,
- 57.78869
- ],
- [
- 27.50774,
- 57.78349
- ],
- [
- 27.51457,
- 57.77516
- ],
- [
- 27.5081,
- 57.77158
- ],
- [
- 27.51115,
- 57.76416
- ],
- [
- 27.51591,
- 57.7639
- ],
- [
- 27.52018,
- 57.75993
- ],
- [
- 27.52811,
- 57.75818
- ],
- [
- 27.53007,
- 57.75368
- ],
- [
- 27.53116,
- 57.74073
- ],
- [
- 27.548,
- 57.7333
- ],
- [
- 27.5419,
- 57.73037
- ],
- [
- 27.52799,
- 57.72946
- ],
- [
- 27.5236,
- 57.71616
- ],
- [
- 27.52762,
- 57.70899
- ],
- [
- 27.5236,
- 57.70802
- ],
- [
- 27.51652,
- 57.70873
- ],
- [
- 27.51066,
- 57.71101
- ],
- [
- 27.50859,
- 57.70723
- ],
- [
- 27.49993,
- 57.70495
- ],
- [
- 27.49529,
- 57.70749
- ],
- [
- 27.48711,
- 57.7191
- ],
- [
- 27.47357,
- 57.71545
- ],
- [
- 27.47064,
- 57.70802
- ],
- [
- 27.46149,
- 57.70619
- ],
- [
- 27.44807,
- 57.71616
- ],
- [
- 27.43086,
- 57.70756
- ],
- [
- 27.42818,
- 57.69902
- ],
- [
- 27.41341,
- 57.69915
- ],
- [
- 27.41647,
- 57.69524
- ],
- [
- 27.40744,
- 57.69276
- ],
- [
- 27.40231,
- 57.68493
- ],
- [
- 27.39133,
- 57.68539
- ],
- [
- 27.39377,
- 57.67913
- ],
- [
- 27.39145,
- 57.67671
- ],
- [
- 27.38193,
- 57.67332
- ],
- [
- 27.37779,
- 57.66836
- ],
- [
- 27.38364,
- 57.66059
- ],
- [
- 27.3801,
- 57.65883
- ],
- [
- 27.38755,
- 57.6555
- ],
- [
- 27.38047,
- 57.6495
- ],
- [
- 27.38352,
- 57.64799
- ],
- [
- 27.38157,
- 57.64368
- ],
- [
- 27.39072,
- 57.6431
- ],
- [
- 27.38816,
- 57.64009
- ],
- [
- 27.40085,
- 57.63742
- ],
- [
- 27.40317,
- 57.62905
- ],
- [
- 27.40182,
- 57.62376
- ],
- [
- 27.39597,
- 57.62115
- ],
- [
- 27.39023,
- 57.62036
- ],
- [
- 27.39084,
- 57.6169
- ],
- [
- 27.40195,
- 57.61775
- ],
- [
- 27.40634,
- 57.61546
- ],
- [
- 27.40683,
- 57.61246
- ],
- [
- 27.38572,
- 57.60304
- ],
- [
- 27.37827,
- 57.59513
- ],
- [
- 27.35692,
- 57.59696
- ],
- [
- 27.3413,
- 57.58984
- ],
- [
- 27.34179,
- 57.58539
- ],
- [
- 27.32886,
- 57.5797
- ],
- [
- 27.32141,
- 57.57898
- ],
- [
- 27.3341,
- 57.56596
- ],
- [
- 27.33178,
- 57.56066
- ],
- [
- 27.33776,
- 57.56007
- ],
- [
- 27.33886,
- 57.54671
- ],
- [
- 27.34386,
- 57.5454
- ],
- [
- 27.35472,
- 57.52575
- ],
- [
- 27.35131,
- 57.51632
- ],
- [
- 27.34569,
- 57.52104
- ],
- [
- 27.32446,
- 57.52274
- ],
- [
- 27.29664,
- 57.53859
- ],
- [
- 27.28017,
- 57.53643
- ],
- [
- 27.2737,
- 57.54311
- ],
- [
- 27.26431,
- 57.54377
- ],
- [
- 27.2637,
- 57.54841
- ],
- [
- 27.25772,
- 57.54979
- ],
- [
- 27.24796,
- 57.54769
- ],
- [
- 27.2249,
- 57.55385
- ],
- [
- 27.19329,
- 57.54966
- ],
- [
- 27.16145,
- 57.55922
- ],
- [
- 27.11654,
- 57.56118
- ],
- [
- 27.10092,
- 57.5653
- ],
- [
- 27.08506,
- 57.57538
- ],
- [
- 27.07262,
- 57.57734
- ],
- [
- 27.07225,
- 57.57989
- ],
- [
- 27.0559,
- 57.58251
- ],
- [
- 27.05285,
- 57.58087
- ],
- [
- 27.04687,
- 57.58048
- ],
- [
- 27.04492,
- 57.58251
- ],
- [
- 27.0332,
- 57.58532
- ],
- [
- 27.04126,
- 57.58761
- ],
- [
- 27.04418,
- 57.5967
- ],
- [
- 27.03101,
- 57.60461
- ],
- [
- 26.99513,
- 57.60461
- ],
- [
- 26.99233,
- 57.61076
- ],
- [
- 26.98696,
- 57.60867
- ],
- [
- 26.98366,
- 57.61174
- ],
- [
- 26.97549,
- 57.612
- ],
- [
- 26.97097,
- 57.60448
- ],
- [
- 26.9595,
- 57.60625
- ],
- [
- 26.9578,
- 57.60468
- ],
- [
- 26.94596,
- 57.60272
- ],
- [
- 26.93961,
- 57.60932
- ],
- [
- 26.95133,
- 57.61579
- ],
- [
- 26.94999,
- 57.62056
- ],
- [
- 26.94059,
- 57.61978
- ],
- [
- 26.92961,
- 57.62376
- ],
- [
- 26.92644,
- 57.6331
- ],
- [
- 26.90679,
- 57.63304
- ],
- [
- 26.89971,
- 57.63056
- ],
- [
- 26.90057,
- 57.62918
- ],
- [
- 26.89581,
- 57.62572
- ],
- [
- 26.88849,
- 57.62357
- ],
- [
- 26.88898,
- 57.62193
- ],
- [
- 26.87458,
- 57.61906
- ],
- [
- 26.87275,
- 57.61736
- ],
- [
- 26.86555,
- 57.61592
- ],
- [
- 26.85786,
- 57.60997
- ],
- [
- 26.86469,
- 57.6084
- ],
- [
- 26.85811,
- 57.60049
- ],
- [
- 26.85994,
- 57.59598
- ],
- [
- 26.86433,
- 57.59415
- ],
- [
- 26.86177,
- 57.59108
- ],
- [
- 26.84688,
- 57.5884
- ],
- [
- 26.83504,
- 57.58244
- ],
- [
- 26.81589,
- 57.58153
- ],
- [
- 26.80954,
- 57.58473
- ],
- [
- 26.79685,
- 57.58179
- ],
- [
- 26.79929,
- 57.58002
- ],
- [
- 26.79295,
- 57.57315
- ],
- [
- 26.78685,
- 57.57525
- ],
- [
- 26.7766,
- 57.55994
- ],
- [
- 26.76915,
- 57.56039
- ],
- [
- 26.76354,
- 57.56314
- ],
- [
- 26.75366,
- 57.56249
- ],
- [
- 26.75817,
- 57.5653
- ],
- [
- 26.76891,
- 57.57041
- ],
- [
- 26.77379,
- 57.57473
- ],
- [
- 26.76769,
- 57.57754
- ],
- [
- 26.74804,
- 57.5778
- ],
- [
- 26.75317,
- 57.58009
- ],
- [
- 26.73816,
- 57.58774
- ],
- [
- 26.72901,
- 57.58016
- ],
- [
- 26.73828,
- 57.57584
- ],
- [
- 26.73072,
- 57.56903
- ],
- [
- 26.72388,
- 57.57244
- ],
- [
- 26.71107,
- 57.56596
- ],
- [
- 26.69972,
- 57.57106
- ],
- [
- 26.69753,
- 57.5706
- ],
- [
- 26.69741,
- 57.56733
- ],
- [
- 26.69155,
- 57.56615
- ],
- [
- 26.67569,
- 57.56668
- ],
- [
- 26.67105,
- 57.56327
- ],
- [
- 26.6719,
- 57.55385
- ],
- [
- 26.66531,
- 57.55287
- ],
- [
- 26.64652,
- 57.55391
- ],
- [
- 26.64262,
- 57.54658
- ],
- [
- 26.63444,
- 57.54357
- ],
- [
- 26.61443,
- 57.52909
- ],
- [
- 26.61712,
- 57.50885
- ],
- [
- 26.60467,
- 57.51212
- ],
- [
- 26.60479,
- 57.51442
- ],
- [
- 26.5954,
- 57.51376
- ],
- [
- 26.59479,
- 57.51592
- ],
- [
- 26.58808,
- 57.51619
- ],
- [
- 26.59015,
- 57.52516
- ],
- [
- 26.58698,
- 57.52621
- ],
- [
- 26.58771,
- 57.53781
- ],
- [
- 26.58381,
- 57.53957
- ],
- [
- 26.57978,
- 57.53695
- ],
- [
- 26.57966,
- 57.53375
- ],
- [
- 26.56123,
- 57.5285
- ],
- [
- 26.56184,
- 57.52261
- ],
- [
- 26.5666,
- 57.51946
- ],
- [
- 26.55794,
- 57.5137
- ],
- [
- 26.52585,
- 57.51619
- ],
- [
- 26.49961,
- 57.52451
- ],
- [
- 26.49095,
- 57.54534
- ],
- [
- 26.46996,
- 57.57551
- ],
- [
- 26.40151,
- 57.57237
- ],
- [
- 26.34489,
- 57.58408
- ],
- [
- 26.33476,
- 57.5797
- ],
- [
- 26.32781,
- 57.57963
- ],
- [
- 26.32635,
- 57.58277
- ],
- [
- 26.3117,
- 57.58473
- ],
- [
- 26.30853,
- 57.59291
- ],
- [
- 26.3006,
- 57.59343
- ],
- [
- 26.29291,
- 57.59114
- ],
- [
- 26.28352,
- 57.59232
- ],
- [
- 26.28217,
- 57.5952
- ],
- [
- 26.27754,
- 57.595
- ],
- [
- 26.27034,
- 57.6001
- ],
- [
- 26.27022,
- 57.60461
- ],
- [
- 26.25423,
- 57.61383
- ],
- [
- 26.24715,
- 57.62082
- ],
- [
- 26.24813,
- 57.62775
- ],
- [
- 26.23947,
- 57.63408
- ],
- [
- 26.24203,
- 57.63539
- ],
- [
- 26.24667,
- 57.63559
- ],
- [
- 26.23959,
- 57.64649
- ],
- [
- 26.23239,
- 57.6461
- ],
- [
- 26.23117,
- 57.64904
- ],
- [
- 26.24215,
- 57.65146
- ],
- [
- 26.2363,
- 57.65753
- ],
- [
- 26.23032,
- 57.65805
- ],
- [
- 26.21043,
- 57.66601
- ],
- [
- 26.21372,
- 57.66888
- ],
- [
- 26.21092,
- 57.67071
- ],
- [
- 26.21018,
- 57.67906
- ],
- [
- 26.20079,
- 57.68102
- ],
- [
- 26.19896,
- 57.68356
- ],
- [
- 26.19444,
- 57.68519
- ],
- [
- 26.18541,
- 57.68454
- ],
- [
- 26.17712,
- 57.68761
- ],
- [
- 26.18871,
- 57.69472
- ],
- [
- 26.19859,
- 57.70906
- ],
- [
- 26.20567,
- 57.71486
- ],
- [
- 26.1726,
- 57.72867
- ],
- [
- 26.141,
- 57.73278
- ],
- [
- 26.13563,
- 57.73923
- ],
- [
- 26.13905,
- 57.74548
- ],
- [
- 26.13551,
- 57.7503
- ],
- [
- 26.10537,
- 57.757
- ],
- [
- 26.08035,
- 57.76547
- ],
- [
- 26.07974,
- 57.76384
- ],
- [
- 26.07328,
- 57.76371
- ],
- [
- 26.07047,
- 57.7656
- ],
- [
- 26.05912,
- 57.75987
- ],
- [
- 26.049,
- 57.7611
- ],
- [
- 26.0435,
- 57.76703
- ],
- [
- 26.03326,
- 57.77054
- ],
- [
- 26.02374,
- 57.76761
- ],
- [
- 26.01776,
- 57.7723
- ],
- [
- 26.02459,
- 57.77516
- ],
- [
- 26.02496,
- 57.7816
- ],
- [
- 26.02252,
- 57.78355
- ],
- [
- 26.02776,
- 57.7898
- ],
- [
- 26.03081,
- 57.79097
- ],
- [
- 26.03338,
- 57.80105
- ],
- [
- 26.03679,
- 57.80592
- ],
- [
- 26.03606,
- 57.8108
- ],
- [
- 26.04851,
- 57.82289
- ],
- [
- 26.05705,
- 57.83842
- ],
- [
- 26.05558,
- 57.84764
- ],
- [
- 26.03667,
- 57.84926
- ],
- [
- 26.02008,
- 57.84517
- ],
- [
- 26.00958,
- 57.85731
- ],
- [
- 25.99848,
- 57.85816
- ],
- [
- 25.96273,
- 57.84491
- ],
- [
- 25.931,
- 57.85244
- ],
- [
- 25.89537,
- 57.84972
- ],
- [
- 25.8883,
- 57.84595
- ],
- [
- 25.88085,
- 57.84946
- ],
- [
- 25.88573,
- 57.85277
- ],
- [
- 25.88427,
- 57.85595
- ],
- [
- 25.87561,
- 57.85796
- ],
- [
- 25.87475,
- 57.86322
- ],
- [
- 25.8595,
- 57.85614
- ],
- [
- 25.81923,
- 57.86419
- ],
- [
- 25.78312,
- 57.89948
- ],
- [
- 25.78629,
- 57.90428
- ],
- [
- 25.77165,
- 57.91206
- ],
- [
- 25.75102,
- 57.91692
- ],
- [
- 25.73724,
- 57.92295
- ],
- [
- 25.72833,
- 57.92133
- ],
- [
- 25.72247,
- 57.91245
- ],
- [
- 25.70356,
- 57.90331
- ],
- [
- 25.67916,
- 57.90461
- ],
- [
- 25.67549,
- 57.91277
- ],
- [
- 25.66207,
- 57.91511
- ],
- [
- 25.65609,
- 57.91439
- ],
- [
- 25.64889,
- 57.91666
- ],
- [
- 25.64987,
- 57.91841
- ],
- [
- 25.63828,
- 57.93059
- ],
- [
- 25.57983,
- 57.9442
- ],
- [
- 25.59399,
- 57.95961
- ],
- [
- 25.58935,
- 57.96504
- ],
- [
- 25.58239,
- 57.96783
- ],
- [
- 25.58044,
- 57.9721
- ],
- [
- 25.57483,
- 57.9741
- ],
- [
- 25.56556,
- 57.96718
- ],
- [
- 25.56604,
- 57.96258
- ],
- [
- 25.55714,
- 57.96038
- ],
- [
- 25.55567,
- 57.96711
- ],
- [
- 25.55079,
- 57.97255
- ],
- [
- 25.53725,
- 57.97139
- ],
- [
- 25.52566,
- 57.97184
- ],
- [
- 25.5226,
- 57.96802
- ],
- [
- 25.51638,
- 57.96737
- ],
- [
- 25.51211,
- 57.96977
- ],
- [
- 25.52212,
- 57.97488
- ],
- [
- 25.51943,
- 57.98031
- ],
- [
- 25.48539,
- 57.97475
- ],
- [
- 25.47843,
- 57.98006
- ],
- [
- 25.47843,
- 57.98264
- ],
- [
- 25.44219,
- 57.99616
- ],
- [
- 25.44817,
- 58.00114
- ],
- [
- 25.46648,
- 58.00515
- ],
- [
- 25.44817,
- 58.01698
- ],
- [
- 25.40693,
- 58.02893
- ],
- [
- 25.37155,
- 58.02926
- ],
- [
- 25.36374,
- 58.03171
- ],
- [
- 25.35336,
- 58.04334
- ],
- [
- 25.34482,
- 58.04676
- ],
- [
- 25.33604,
- 58.05709
- ],
- [
- 25.3292,
- 58.05858
- ],
- [
- 25.32664,
- 58.0638
- ],
- [
- 25.31981,
- 58.066
- ],
- [
- 25.31908,
- 58.06929
- ],
- [
- 25.29553,
- 58.08161
- ],
- [
- 25.28686,
- 58.08149
- ],
- [
- 25.28113,
- 58.07019
- ],
- [
- 25.266,
- 58.06716
- ],
- [
- 25.26502,
- 58.06
- ],
- [
- 25.27991,
- 58.05063
- ],
- [
- 25.29309,
- 58.0467
- ],
- [
- 25.30431,
- 58.03449
- ],
- [
- 25.30114,
- 58.01504
- ],
- [
- 25.29748,
- 58.01459
- ],
- [
- 25.30285,
- 58.00011
- ],
- [
- 25.29577,
- 57.99972
- ],
- [
- 25.29736,
- 57.99661
- ],
- [
- 25.30358,
- 57.99396
- ],
- [
- 25.30138,
- 57.99273
- ],
- [
- 25.29187,
- 57.99286
- ],
- [
- 25.28308,
- 57.98963
- ],
- [
- 25.26722,
- 57.99454
- ],
- [
- 25.25611,
- 57.9939
- ],
- [
- 25.25502,
- 58.00347
- ],
- [
- 25.2455,
- 58.00302
- ],
- [
- 25.22768,
- 58.01782
- ],
- [
- 25.24587,
- 58.01872
- ],
- [
- 25.23562,
- 58.02286
- ],
- [
- 25.23635,
- 58.02441
- ],
- [
- 25.22732,
- 58.02435
- ],
- [
- 25.22537,
- 58.02195
- ],
- [
- 25.21902,
- 58.02977
- ],
- [
- 25.21658,
- 58.04088
- ],
- [
- 25.22695,
- 58.04799
- ],
- [
- 25.22817,
- 58.05348
- ],
- [
- 25.22122,
- 58.05302
- ],
- [
- 25.22146,
- 58.05051
- ],
- [
- 25.2178,
- 58.04908
- ],
- [
- 25.21597,
- 58.05954
- ],
- [
- 25.21219,
- 58.06226
- ],
- [
- 25.20523,
- 58.06122
- ],
- [
- 25.20389,
- 58.0651
- ],
- [
- 25.21621,
- 58.07413
- ],
- [
- 25.21207,
- 58.08052
- ],
- [
- 25.19962,
- 58.08536
- ],
- [
- 25.18949,
- 58.08007
- ],
- [
- 25.19169,
- 58.07613
- ],
- [
- 25.1535,
- 58.07478
- ],
- [
- 25.15154,
- 58.07703
- ],
- [
- 25.13397,
- 58.07974
- ],
- [
- 25.10579,
- 58.07749
- ],
- [
- 25.10518,
- 58.06645
- ],
- [
- 25.07662,
- 58.06645
- ],
- [
- 25.02037,
- 58.01769
- ],
- [
- 24.99512,
- 58.01084
- ],
- [
- 24.94863,
- 58.00942
- ],
- [
- 24.83234,
- 57.97177
- ],
- [
- 24.80806,
- 57.99066
- ],
- [
- 24.74229,
- 57.98187
- ],
- [
- 24.74339,
- 57.96491
- ],
- [
- 24.7329,
- 57.96239
- ],
- [
- 24.71508,
- 57.96271
- ],
- [
- 24.6919,
- 57.94653
- ],
- [
- 24.67335,
- 57.95896
- ],
- [
- 24.64468,
- 57.95889
- ],
- [
- 24.64187,
- 57.95423
- ],
- [
- 24.64577,
- 57.95268
- ],
- [
- 24.62869,
- 57.94193
- ],
- [
- 24.61612,
- 57.94368
- ],
- [
- 24.60892,
- 57.95125
- ],
- [
- 24.58464,
- 57.96174
- ],
- [
- 24.57317,
- 57.95436
- ],
- [
- 24.54792,
- 57.94938
- ],
- [
- 24.54352,
- 57.94478
- ],
- [
- 24.5301,
- 57.94705
- ],
- [
- 24.5207,
- 57.94303
- ],
- [
- 24.51839,
- 57.93675
- ],
- [
- 24.5096,
- 57.93442
- ],
- [
- 24.51326,
- 57.93066
- ],
- [
- 24.4625,
- 57.92496
- ],
- [
- 24.44579,
- 57.90798
- ],
- [
- 24.46018,
- 57.90662
- ],
- [
- 24.45225,
- 57.89942
- ],
- [
- 24.46006,
- 57.87977
- ],
- [
- 24.41138,
- 57.86491
- ],
- [
- 24.40906,
- 57.87191
- ],
- [
- 24.33707,
- 57.87393
- ],
- [
- 24.33829,
- 58.0109
- ],
- [
- 24.42272,
- 58.01097
- ],
- [
- 24.42614,
- 58.28002
- ],
- [
- 24.51155,
- 58.2797
- ],
- [
- 24.51216,
- 58.32471
- ],
- [
- 24.42638,
- 58.32503
- ],
- [
- 24.42712,
- 58.36972
- ],
- [
- 24.34182,
- 58.37017
- ],
- [
- 24.34048,
- 58.23547
- ],
- [
- 24.17014,
- 58.23572
- ],
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.0851,
- 58.23605
- ],
- [
- 24.00066,
- 58.23579
- ],
- [
- 23.99993,
- 58.28092
- ],
- [
- 23.82971,
- 58.28047
- ],
- [
- 23.82947,
- 58.32554
- ],
- [
- 23.65864,
- 58.32496
- ],
- [
- 23.65791,
- 58.41493
- ],
- [
- 23.57225,
- 58.41468
- ],
- [
- 23.57127,
- 58.50436
- ],
- [
- 23.39935,
- 58.50359
- ],
- [
- 23.40106,
- 58.41391
- ],
- [
- 23.14421,
- 58.41238
- ],
- [
- 23.14567,
- 58.36735
- ],
- [
- 23.05989,
- 58.36703
- ],
- [
- 23.06172,
- 58.32221
- ],
- [
- 22.9757,
- 58.32157
- ],
- [
- 22.97716,
- 58.27681
- ],
- [
- 22.89187,
- 58.27598
- ],
- [
- 22.89358,
- 58.23103
- ],
- [
- 22.80865,
- 58.2302
- ],
- [
- 22.81012,
- 58.18539
- ],
- [
- 22.89529,
- 58.1861
- ],
- [
- 22.89663,
- 58.1413
- ],
- [
- 22.72641,
- 58.13982
- ],
- [
- 22.72495,
- 58.18475
- ],
- [
- 22.55522,
- 58.18276
- ],
- [
- 22.55693,
- 58.13744
- ],
- [
- 22.64173,
- 58.13886
- ],
- [
- 22.64344,
- 58.094
- ],
- [
- 22.38903,
- 58.0909
- ],
- [
- 22.38525,
- 58.18063
- ],
- [
- 22.29995,
- 58.17967
- ],
- [
- 22.30679,
- 58.04527
- ],
- [
- 22.22198,
- 58.0436
- ],
- [
- 22.22626,
- 57.95404
- ],
- [
- 22.14206,
- 57.95281
- ],
- [
- 22.1445,
- 57.90804
- ],
- [
- 22.06007,
- 57.90681
- ],
- [
- 22.06263,
- 57.86186
- ],
- [
- 21.97807,
- 57.86043
- ],
- [
- 21.96831,
- 58.04004
- ],
- [
- 22.05274,
- 58.04134
- ],
- [
- 22.04506,
- 58.17581
- ],
- [
- 21.96038,
- 58.17471
- ],
- [
- 21.95781,
- 58.21941
- ],
- [
- 21.78723,
- 58.21638
- ],
- [
- 21.78211,
- 58.30631
- ],
- [
- 21.69681,
- 58.3049
- ],
- [
- 21.69401,
- 58.34975
- ],
- [
- 21.77942,
- 58.35122
- ],
- [
- 21.76795,
- 58.53074
- ],
- [
- 22.02566,
- 58.53488
- ],
- [
- 22.02797,
- 58.49001
- ],
- [
- 22.11375,
- 58.49167
- ],
- [
- 22.11144,
- 58.53621
- ],
- [
- 22.19709,
- 58.53742
- ],
- [
- 22.19453,
- 58.5823
- ],
- [
- 22.45236,
- 58.58573
- ],
- [
- 22.44638,
- 58.7203
- ],
- [
- 22.36023,
- 58.71916
- ],
- [
- 22.35364,
- 58.85385
- ]
- ],
- [
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.29868,
- 59.26632
- ],
- [
- 23.29795,
- 59.31138
- ],
- [
- 23.47293,
- 59.31194
- ],
- [
- 23.47415,
- 59.26726
- ]
- ],
- [
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.25507,
- 58.19073
- ],
- [
- 24.25458,
- 58.14581
- ],
- [
- 24.17002,
- 58.14588
- ],
- [
- 24.17014,
- 58.1908
- ]
- ],
- [
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.08497,
- 58.10129
- ],
- [
- 23.99968,
- 58.10116
- ],
- [
- 23.99993,
- 58.05632
- ],
- [
- 23.91525,
- 58.05612
- ],
- [
- 23.915,
- 58.14613
- ],
- [
- 23.83032,
- 58.146
- ],
- [
- 23.82971,
- 58.23572
- ],
- [
- 23.91451,
- 58.23585
- ],
- [
- 23.91476,
- 58.19099
- ],
- [
- 24.08485,
- 58.19092
- ]
- ],
- [
- [
- 24.61854,
- 59.53612
- ],
- [
- 24.44183,
- 59.5368
- ],
- [
- 24.44309,
- 59.62659
- ],
- [
- 24.62016,
- 59.6258
- ],
- [
- 24.61854,
- 59.53612
- ]
- ],
- [
- [
- 26.40403,
- 59.7852
- ],
- [
- 26.31501,
- 59.78667
- ],
- [
- 26.31814,
- 59.83152
- ],
- [
- 26.40732,
- 59.82994
- ],
- [
- 26.40403,
- 59.7852
- ]
- ],
- [
- [
- 26.48308,
- 59.649
- ],
- [
- 26.48647,
- 59.69383
- ],
- [
- 26.57514,
- 59.69202
- ],
- [
- 26.57166,
- 59.64719
- ],
- [
- 26.48308,
- 59.649
- ]
- ],
- [
- [
- 23.15944,
- 57.78408
- ],
- [
- 23.24346,
- 57.78461
- ],
- [
- 23.24445,
- 57.73971
- ],
- [
- 23.32848,
- 57.74031
- ],
- [
- 23.32679,
- 57.82998
- ],
- [
- 23.15845,
- 57.82885
- ],
- [
- 23.15944,
- 57.78408
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maa-Ameti reljeefikaart"
- },
- "available_projections": [
- "EPSG:4326"
- ],
- "country_code": "EE",
- "id": "maaamet.ee-reljeef",
- "license_url": "http://svimik.com/Maa-amet_vastus_OSM.pdf",
- "name": "Estonia Hillshading (Maaamet)",
- "type": "wms",
- "url": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=reljeef&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.35364,
- 58.85385
- ],
- [
- 22.09411,
- 58.85038
- ],
- [
- 22.09179,
- 58.8951
- ],
- [
- 22.00503,
- 58.89371
- ],
- [
- 21.99979,
- 58.98374
- ],
- [
- 22.34754,
- 58.98845
- ],
- [
- 22.34535,
- 59.03337
- ],
- [
- 22.51935,
- 59.03538
- ],
- [
- 22.51556,
- 59.1251
- ],
- [
- 22.69017,
- 59.12686
- ],
- [
- 22.69212,
- 59.08218
- ],
- [
- 22.77912,
- 59.083
- ],
- [
- 22.78083,
- 59.03814
- ],
- [
- 22.86808,
- 59.03877
- ],
- [
- 22.8693,
- 58.99399
- ],
- [
- 22.9563,
- 58.99487
- ],
- [
- 22.95495,
- 59.03959
- ],
- [
- 23.12895,
- 59.04097
- ],
- [
- 23.12786,
- 59.08582
- ],
- [
- 23.47671,
- 59.0877
- ],
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.64924,
- 59.26788
- ],
- [
- 23.64888,
- 59.31281
- ],
- [
- 23.73698,
- 59.313
- ],
- [
- 23.73649,
- 59.3578
- ],
- [
- 23.91158,
- 59.35787
- ],
- [
- 23.91207,
- 59.4028
- ],
- [
- 24.176,
- 59.4028
- ],
- [
- 24.17637,
- 59.4478
- ],
- [
- 24.26446,
- 59.44767
- ],
- [
- 24.26471,
- 59.49236
- ],
- [
- 24.70605,
- 59.49082
- ],
- [
- 24.70898,
- 59.62553
- ],
- [
- 24.79744,
- 59.62497
- ],
- [
- 24.79659,
- 59.58009
- ],
- [
- 24.97327,
- 59.57885
- ],
- [
- 24.97462,
- 59.62386
- ],
- [
- 24.88603,
- 59.62473
- ],
- [
- 24.88725,
- 59.66918
- ],
- [
- 24.9762,
- 59.66863
- ],
- [
- 24.9773,
- 59.71346
- ],
- [
- 25.06601,
- 59.71259
- ],
- [
- 25.0632,
- 59.62306
- ],
- [
- 25.24037,
- 59.62145
- ],
- [
- 25.24184,
- 59.66647
- ],
- [
- 25.33055,
- 59.66548
- ],
- [
- 25.32884,
- 59.62078
- ],
- [
- 25.41755,
- 59.61979
- ],
- [
- 25.41938,
- 59.66468
- ],
- [
- 25.6855,
- 59.66148
- ],
- [
- 25.68757,
- 59.70613
- ],
- [
- 25.86511,
- 59.70386
- ],
- [
- 25.86279,
- 59.65901
- ],
- [
- 26.12855,
- 59.65507
- ],
- [
- 26.12575,
- 59.6101
- ],
- [
- 26.39114,
- 59.60565
- ],
- [
- 26.38809,
- 59.56099
- ],
- [
- 26.82967,
- 59.55215
- ],
- [
- 26.82626,
- 59.50729
- ],
- [
- 26.91423,
- 59.50549
- ],
- [
- 26.91057,
- 59.46051
- ],
- [
- 27.96689,
- 59.43303
- ],
- [
- 27.9719,
- 59.4778
- ],
- [
- 28.03669,
- 59.4757
- ],
- [
- 28.04377,
- 59.47223
- ],
- [
- 28.04767,
- 59.46578
- ],
- [
- 28.05182,
- 59.46342
- ],
- [
- 28.06915,
- 59.46256
- ],
- [
- 28.08452,
- 59.45939
- ],
- [
- 28.12174,
- 59.44091
- ],
- [
- 28.13577,
- 59.4277
- ],
- [
- 28.13711,
- 59.42267
- ],
- [
- 28.14163,
- 59.41901
- ],
- [
- 28.16652,
- 59.41205
- ],
- [
- 28.17225,
- 59.40789
- ],
- [
- 28.19275,
- 59.4015
- ],
- [
- 28.21069,
- 59.3836
- ],
- [
- 28.21069,
- 59.37994
- ],
- [
- 28.20386,
- 59.37459
- ],
- [
- 28.21057,
- 59.37235
- ],
- [
- 28.21105,
- 59.36937
- ],
- [
- 28.20678,
- 59.36719
- ],
- [
- 28.20703,
- 59.36377
- ],
- [
- 28.19971,
- 59.36091
- ],
- [
- 28.20203,
- 59.35731
- ],
- [
- 28.19263,
- 59.35227
- ],
- [
- 28.19397,
- 59.34642
- ],
- [
- 28.16969,
- 59.33354
- ],
- [
- 28.13626,
- 59.29244
- ],
- [
- 28.12515,
- 59.28901
- ],
- [
- 28.11722,
- 59.28895
- ],
- [
- 28.1099,
- 59.29063
- ],
- [
- 28.05353,
- 59.2902
- ],
- [
- 28.02022,
- 59.28334
- ],
- [
- 27.99825,
- 59.2753
- ],
- [
- 27.97983,
- 59.27293
- ],
- [
- 27.96433,
- 59.27268
- ],
- [
- 27.95335,
- 59.26863
- ],
- [
- 27.9492,
- 59.26533
- ],
- [
- 27.90564,
- 59.24044
- ],
- [
- 27.90113,
- 59.23488
- ],
- [
- 27.901,
- 59.22639
- ],
- [
- 27.89783,
- 59.21746
- ],
- [
- 27.90235,
- 59.20728
- ],
- [
- 27.89234,
- 59.19222
- ],
- [
- 27.88978,
- 59.18379
- ],
- [
- 27.87648,
- 59.17372
- ],
- [
- 27.87184,
- 59.16841
- ],
- [
- 27.86818,
- 59.16159
- ],
- [
- 27.84414,
- 59.14814
- ],
- [
- 27.83206,
- 59.14401
- ],
- [
- 27.82035,
- 59.13362
- ],
- [
- 27.80986,
- 59.12905
- ],
- [
- 27.80595,
- 59.12166
- ],
- [
- 27.80534,
- 59.1127
- ],
- [
- 27.81071,
- 59.10819
- ],
- [
- 27.8101,
- 59.10606
- ],
- [
- 27.80205,
- 59.1028
- ],
- [
- 27.78887,
- 59.0909
- ],
- [
- 27.7907,
- 59.08112
- ],
- [
- 27.79375,
- 59.07842
- ],
- [
- 27.79411,
- 59.07566
- ],
- [
- 27.79277,
- 59.0729
- ],
- [
- 27.79302,
- 59.06927
- ],
- [
- 27.7885,
- 59.06657
- ],
- [
- 27.78265,
- 59.065
- ],
- [
- 27.77508,
- 59.0581
- ],
- [
- 27.77313,
- 59.05107
- ],
- [
- 27.77667,
- 59.04743
- ],
- [
- 27.76983,
- 59.03325
- ],
- [
- 27.76605,
- 59.03155
- ],
- [
- 27.75153,
- 59.03017
- ],
- [
- 27.74628,
- 59.02716
- ],
- [
- 27.74567,
- 59.01705
- ],
- [
- 27.74165,
- 59.00951
- ],
- [
- 27.74787,
- 58.99267
- ],
- [
- 27.74274,
- 58.98845
- ],
- [
- 27.73213,
- 58.9855
- ],
- [
- 27.6544,
- 58.98783
- ],
- [
- 27.65501,
- 58.99241
- ],
- [
- 27.39414,
- 58.99964
- ],
- [
- 27.38974,
- 58.95474
- ],
- [
- 27.12935,
- 58.96135
- ],
- [
- 27.12557,
- 58.9164
- ],
- [
- 27.03882,
- 58.91841
- ],
- [
- 27.0271,
- 58.7841
- ],
- [
- 27.11361,
- 58.78183
- ],
- [
- 27.10934,
- 58.73709
- ],
- [
- 27.19537,
- 58.73512
- ],
- [
- 27.18731,
- 58.64533
- ],
- [
- 27.27309,
- 58.64305
- ],
- [
- 27.25259,
- 58.41883
- ],
- [
- 27.53397,
- 58.41142
- ],
- [
- 27.5552,
- 58.36575
- ],
- [
- 27.51762,
- 58.33265
- ],
- [
- 27.51408,
- 58.32214
- ],
- [
- 27.49993,
- 58.32246
- ],
- [
- 27.48687,
- 58.18803
- ],
- [
- 27.52872,
- 58.18687
- ],
- [
- 27.59205,
- 58.11875
- ],
- [
- 27.63695,
- 58.09735
- ],
- [
- 27.60938,
- 58.05399
- ],
- [
- 27.62268,
- 58.0058
- ],
- [
- 27.64489,
- 58.00205
- ],
- [
- 27.65294,
- 58.00644
- ],
- [
- 27.64781,
- 58.01426
- ],
- [
- 27.64781,
- 58.02086
- ],
- [
- 27.66172,
- 58.01866
- ],
- [
- 27.66856,
- 58.01045
- ],
- [
- 27.68393,
- 58.00845
- ],
- [
- 27.6965,
- 58.0045
- ],
- [
- 27.70065,
- 57.99862
- ],
- [
- 27.69882,
- 57.98827
- ],
- [
- 27.69125,
- 57.98549
- ],
- [
- 27.68064,
- 57.97449
- ],
- [
- 27.6821,
- 57.9719
- ],
- [
- 27.68893,
- 57.97184
- ],
- [
- 27.68588,
- 57.95928
- ],
- [
- 27.65892,
- 57.9554
- ],
- [
- 27.66758,
- 57.951
- ],
- [
- 27.67161,
- 57.94627
- ],
- [
- 27.66917,
- 57.94174
- ],
- [
- 27.67649,
- 57.93552
- ],
- [
- 27.68247,
- 57.93655
- ],
- [
- 27.68613,
- 57.92794
- ],
- [
- 27.68247,
- 57.92437
- ],
- [
- 27.71078,
- 57.92392
- ],
- [
- 27.72029,
- 57.92036
- ],
- [
- 27.72054,
- 57.91174
- ],
- [
- 27.70834,
- 57.90616
- ],
- [
- 27.69882,
- 57.90616
- ],
- [
- 27.70614,
- 57.90136
- ],
- [
- 27.72896,
- 57.90739
- ],
- [
- 27.74677,
- 57.90169
- ],
- [
- 27.7536,
- 57.90409
- ],
- [
- 27.75739,
- 57.90318
- ],
- [
- 27.75592,
- 57.89806
- ],
- [
- 27.76959,
- 57.89566
- ],
- [
- 27.78094,
- 57.89832
- ],
- [
- 27.799,
- 57.89961
- ],
- [
- 27.81852,
- 57.89579
- ],
- [
- 27.82096,
- 57.89047
- ],
- [
- 27.81949,
- 57.888
- ],
- [
- 27.81059,
- 57.88612
- ],
- [
- 27.81827,
- 57.88249
- ],
- [
- 27.81169,
- 57.87204
- ],
- [
- 27.81583,
- 57.87166
- ],
- [
- 27.8184,
- 57.8651
- ],
- [
- 27.81632,
- 57.86134
- ],
- [
- 27.79875,
- 57.85205
- ],
- [
- 27.7946,
- 57.84634
- ],
- [
- 27.80058,
- 57.8442
- ],
- [
- 27.7957,
- 57.84017
- ],
- [
- 27.78862,
- 57.84186
- ],
- [
- 27.78411,
- 57.83725
- ],
- [
- 27.77715,
- 57.8325
- ],
- [
- 27.75849,
- 57.83536
- ],
- [
- 27.74165,
- 57.82679
- ],
- [
- 27.72383,
- 57.83179
- ],
- [
- 27.70541,
- 57.84192
- ],
- [
- 27.68771,
- 57.83419
- ],
- [
- 27.66636,
- 57.83653
- ],
- [
- 27.66026,
- 57.83893
- ],
- [
- 27.64818,
- 57.8377
- ],
- [
- 27.63634,
- 57.83978
- ],
- [
- 27.62487,
- 57.83751
- ],
- [
- 27.62207,
- 57.83874
- ],
- [
- 27.59791,
- 57.83328
- ],
- [
- 27.56252,
- 57.83023
- ],
- [
- 27.5563,
- 57.83127
- ],
- [
- 27.55227,
- 57.82113
- ],
- [
- 27.54446,
- 57.82204
- ],
- [
- 27.5452,
- 57.81808
- ],
- [
- 27.55056,
- 57.81769
- ],
- [
- 27.55667,
- 57.81366
- ],
- [
- 27.5408,
- 57.81288
- ],
- [
- 27.54471,
- 57.808
- ],
- [
- 27.53726,
- 57.80644
- ],
- [
- 27.53958,
- 57.80144
- ],
- [
- 27.53592,
- 57.79663
- ],
- [
- 27.53861,
- 57.79396
- ],
- [
- 27.52921,
- 57.78856
- ],
- [
- 27.5175,
- 57.78876
- ],
- [
- 27.51847,
- 57.79201
- ],
- [
- 27.50298,
- 57.78798
- ],
- [
- 27.50005,
- 57.78973
- ],
- [
- 27.4959,
- 57.78869
- ],
- [
- 27.50774,
- 57.78349
- ],
- [
- 27.51457,
- 57.77516
- ],
- [
- 27.5081,
- 57.77158
- ],
- [
- 27.51115,
- 57.76416
- ],
- [
- 27.51591,
- 57.7639
- ],
- [
- 27.52018,
- 57.75993
- ],
- [
- 27.52811,
- 57.75818
- ],
- [
- 27.53007,
- 57.75368
- ],
- [
- 27.53116,
- 57.74073
- ],
- [
- 27.548,
- 57.7333
- ],
- [
- 27.5419,
- 57.73037
- ],
- [
- 27.52799,
- 57.72946
- ],
- [
- 27.5236,
- 57.71616
- ],
- [
- 27.52762,
- 57.70899
- ],
- [
- 27.5236,
- 57.70802
- ],
- [
- 27.51652,
- 57.70873
- ],
- [
- 27.51066,
- 57.71101
- ],
- [
- 27.50859,
- 57.70723
- ],
- [
- 27.49993,
- 57.70495
- ],
- [
- 27.49529,
- 57.70749
- ],
- [
- 27.48711,
- 57.7191
- ],
- [
- 27.47357,
- 57.71545
- ],
- [
- 27.47064,
- 57.70802
- ],
- [
- 27.46149,
- 57.70619
- ],
- [
- 27.44807,
- 57.71616
- ],
- [
- 27.43086,
- 57.70756
- ],
- [
- 27.42818,
- 57.69902
- ],
- [
- 27.41341,
- 57.69915
- ],
- [
- 27.41647,
- 57.69524
- ],
- [
- 27.40744,
- 57.69276
- ],
- [
- 27.40231,
- 57.68493
- ],
- [
- 27.39133,
- 57.68539
- ],
- [
- 27.39377,
- 57.67913
- ],
- [
- 27.39145,
- 57.67671
- ],
- [
- 27.38193,
- 57.67332
- ],
- [
- 27.37779,
- 57.66836
- ],
- [
- 27.38364,
- 57.66059
- ],
- [
- 27.3801,
- 57.65883
- ],
- [
- 27.38755,
- 57.6555
- ],
- [
- 27.38047,
- 57.6495
- ],
- [
- 27.38352,
- 57.64799
- ],
- [
- 27.38157,
- 57.64368
- ],
- [
- 27.39072,
- 57.6431
- ],
- [
- 27.38816,
- 57.64009
- ],
- [
- 27.40085,
- 57.63742
- ],
- [
- 27.40317,
- 57.62905
- ],
- [
- 27.40182,
- 57.62376
- ],
- [
- 27.39597,
- 57.62115
- ],
- [
- 27.39023,
- 57.62036
- ],
- [
- 27.39084,
- 57.6169
- ],
- [
- 27.40195,
- 57.61775
- ],
- [
- 27.40634,
- 57.61546
- ],
- [
- 27.40683,
- 57.61246
- ],
- [
- 27.38572,
- 57.60304
- ],
- [
- 27.37827,
- 57.59513
- ],
- [
- 27.35692,
- 57.59696
- ],
- [
- 27.3413,
- 57.58984
- ],
- [
- 27.34179,
- 57.58539
- ],
- [
- 27.32886,
- 57.5797
- ],
- [
- 27.32141,
- 57.57898
- ],
- [
- 27.3341,
- 57.56596
- ],
- [
- 27.33178,
- 57.56066
- ],
- [
- 27.33776,
- 57.56007
- ],
- [
- 27.33886,
- 57.54671
- ],
- [
- 27.34386,
- 57.5454
- ],
- [
- 27.35472,
- 57.52575
- ],
- [
- 27.35131,
- 57.51632
- ],
- [
- 27.34569,
- 57.52104
- ],
- [
- 27.32446,
- 57.52274
- ],
- [
- 27.29664,
- 57.53859
- ],
- [
- 27.28017,
- 57.53643
- ],
- [
- 27.2737,
- 57.54311
- ],
- [
- 27.26431,
- 57.54377
- ],
- [
- 27.2637,
- 57.54841
- ],
- [
- 27.25772,
- 57.54979
- ],
- [
- 27.24796,
- 57.54769
- ],
- [
- 27.2249,
- 57.55385
- ],
- [
- 27.19329,
- 57.54966
- ],
- [
- 27.16145,
- 57.55922
- ],
- [
- 27.11654,
- 57.56118
- ],
- [
- 27.10092,
- 57.5653
- ],
- [
- 27.08506,
- 57.57538
- ],
- [
- 27.07262,
- 57.57734
- ],
- [
- 27.07225,
- 57.57989
- ],
- [
- 27.0559,
- 57.58251
- ],
- [
- 27.05285,
- 57.58087
- ],
- [
- 27.04687,
- 57.58048
- ],
- [
- 27.04492,
- 57.58251
- ],
- [
- 27.0332,
- 57.58532
- ],
- [
- 27.04126,
- 57.58761
- ],
- [
- 27.04418,
- 57.5967
- ],
- [
- 27.03101,
- 57.60461
- ],
- [
- 26.99513,
- 57.60461
- ],
- [
- 26.99233,
- 57.61076
- ],
- [
- 26.98696,
- 57.60867
- ],
- [
- 26.98366,
- 57.61174
- ],
- [
- 26.97549,
- 57.612
- ],
- [
- 26.97097,
- 57.60448
- ],
- [
- 26.9595,
- 57.60625
- ],
- [
- 26.9578,
- 57.60468
- ],
- [
- 26.94596,
- 57.60272
- ],
- [
- 26.93961,
- 57.60932
- ],
- [
- 26.95133,
- 57.61579
- ],
- [
- 26.94999,
- 57.62056
- ],
- [
- 26.94059,
- 57.61978
- ],
- [
- 26.92961,
- 57.62376
- ],
- [
- 26.92644,
- 57.6331
- ],
- [
- 26.90679,
- 57.63304
- ],
- [
- 26.89971,
- 57.63056
- ],
- [
- 26.90057,
- 57.62918
- ],
- [
- 26.89581,
- 57.62572
- ],
- [
- 26.88849,
- 57.62357
- ],
- [
- 26.88898,
- 57.62193
- ],
- [
- 26.87458,
- 57.61906
- ],
- [
- 26.87275,
- 57.61736
- ],
- [
- 26.86555,
- 57.61592
- ],
- [
- 26.85786,
- 57.60997
- ],
- [
- 26.86469,
- 57.6084
- ],
- [
- 26.85811,
- 57.60049
- ],
- [
- 26.85994,
- 57.59598
- ],
- [
- 26.86433,
- 57.59415
- ],
- [
- 26.86177,
- 57.59108
- ],
- [
- 26.84688,
- 57.5884
- ],
- [
- 26.83504,
- 57.58244
- ],
- [
- 26.81589,
- 57.58153
- ],
- [
- 26.80954,
- 57.58473
- ],
- [
- 26.79685,
- 57.58179
- ],
- [
- 26.79929,
- 57.58002
- ],
- [
- 26.79295,
- 57.57315
- ],
- [
- 26.78685,
- 57.57525
- ],
- [
- 26.7766,
- 57.55994
- ],
- [
- 26.76915,
- 57.56039
- ],
- [
- 26.76354,
- 57.56314
- ],
- [
- 26.75366,
- 57.56249
- ],
- [
- 26.75817,
- 57.5653
- ],
- [
- 26.76891,
- 57.57041
- ],
- [
- 26.77379,
- 57.57473
- ],
- [
- 26.76769,
- 57.57754
- ],
- [
- 26.74804,
- 57.5778
- ],
- [
- 26.75317,
- 57.58009
- ],
- [
- 26.73816,
- 57.58774
- ],
- [
- 26.72901,
- 57.58016
- ],
- [
- 26.73828,
- 57.57584
- ],
- [
- 26.73072,
- 57.56903
- ],
- [
- 26.72388,
- 57.57244
- ],
- [
- 26.71107,
- 57.56596
- ],
- [
- 26.69972,
- 57.57106
- ],
- [
- 26.69753,
- 57.5706
- ],
- [
- 26.69741,
- 57.56733
- ],
- [
- 26.69155,
- 57.56615
- ],
- [
- 26.67569,
- 57.56668
- ],
- [
- 26.67105,
- 57.56327
- ],
- [
- 26.6719,
- 57.55385
- ],
- [
- 26.66531,
- 57.55287
- ],
- [
- 26.64652,
- 57.55391
- ],
- [
- 26.64262,
- 57.54658
- ],
- [
- 26.63444,
- 57.54357
- ],
- [
- 26.61443,
- 57.52909
- ],
- [
- 26.61712,
- 57.50885
- ],
- [
- 26.60467,
- 57.51212
- ],
- [
- 26.60479,
- 57.51442
- ],
- [
- 26.5954,
- 57.51376
- ],
- [
- 26.59479,
- 57.51592
- ],
- [
- 26.58808,
- 57.51619
- ],
- [
- 26.59015,
- 57.52516
- ],
- [
- 26.58698,
- 57.52621
- ],
- [
- 26.58771,
- 57.53781
- ],
- [
- 26.58381,
- 57.53957
- ],
- [
- 26.57978,
- 57.53695
- ],
- [
- 26.57966,
- 57.53375
- ],
- [
- 26.56123,
- 57.5285
- ],
- [
- 26.56184,
- 57.52261
- ],
- [
- 26.5666,
- 57.51946
- ],
- [
- 26.55794,
- 57.5137
- ],
- [
- 26.52585,
- 57.51619
- ],
- [
- 26.49961,
- 57.52451
- ],
- [
- 26.49095,
- 57.54534
- ],
- [
- 26.46996,
- 57.57551
- ],
- [
- 26.40151,
- 57.57237
- ],
- [
- 26.34489,
- 57.58408
- ],
- [
- 26.33476,
- 57.5797
- ],
- [
- 26.32781,
- 57.57963
- ],
- [
- 26.32635,
- 57.58277
- ],
- [
- 26.3117,
- 57.58473
- ],
- [
- 26.30853,
- 57.59291
- ],
- [
- 26.3006,
- 57.59343
- ],
- [
- 26.29291,
- 57.59114
- ],
- [
- 26.28352,
- 57.59232
- ],
- [
- 26.28217,
- 57.5952
- ],
- [
- 26.27754,
- 57.595
- ],
- [
- 26.27034,
- 57.6001
- ],
- [
- 26.27022,
- 57.60461
- ],
- [
- 26.25423,
- 57.61383
- ],
- [
- 26.24715,
- 57.62082
- ],
- [
- 26.24813,
- 57.62775
- ],
- [
- 26.23947,
- 57.63408
- ],
- [
- 26.24203,
- 57.63539
- ],
- [
- 26.24667,
- 57.63559
- ],
- [
- 26.23959,
- 57.64649
- ],
- [
- 26.23239,
- 57.6461
- ],
- [
- 26.23117,
- 57.64904
- ],
- [
- 26.24215,
- 57.65146
- ],
- [
- 26.2363,
- 57.65753
- ],
- [
- 26.23032,
- 57.65805
- ],
- [
- 26.21043,
- 57.66601
- ],
- [
- 26.21372,
- 57.66888
- ],
- [
- 26.21092,
- 57.67071
- ],
- [
- 26.21018,
- 57.67906
- ],
- [
- 26.20079,
- 57.68102
- ],
- [
- 26.19896,
- 57.68356
- ],
- [
- 26.19444,
- 57.68519
- ],
- [
- 26.18541,
- 57.68454
- ],
- [
- 26.17712,
- 57.68761
- ],
- [
- 26.18871,
- 57.69472
- ],
- [
- 26.19859,
- 57.70906
- ],
- [
- 26.20567,
- 57.71486
- ],
- [
- 26.1726,
- 57.72867
- ],
- [
- 26.141,
- 57.73278
- ],
- [
- 26.13563,
- 57.73923
- ],
- [
- 26.13905,
- 57.74548
- ],
- [
- 26.13551,
- 57.7503
- ],
- [
- 26.10537,
- 57.757
- ],
- [
- 26.08035,
- 57.76547
- ],
- [
- 26.07974,
- 57.76384
- ],
- [
- 26.07328,
- 57.76371
- ],
- [
- 26.07047,
- 57.7656
- ],
- [
- 26.05912,
- 57.75987
- ],
- [
- 26.049,
- 57.7611
- ],
- [
- 26.0435,
- 57.76703
- ],
- [
- 26.03326,
- 57.77054
- ],
- [
- 26.02374,
- 57.76761
- ],
- [
- 26.01776,
- 57.7723
- ],
- [
- 26.02459,
- 57.77516
- ],
- [
- 26.02496,
- 57.7816
- ],
- [
- 26.02252,
- 57.78355
- ],
- [
- 26.02776,
- 57.7898
- ],
- [
- 26.03081,
- 57.79097
- ],
- [
- 26.03338,
- 57.80105
- ],
- [
- 26.03679,
- 57.80592
- ],
- [
- 26.03606,
- 57.8108
- ],
- [
- 26.04851,
- 57.82289
- ],
- [
- 26.05705,
- 57.83842
- ],
- [
- 26.05558,
- 57.84764
- ],
- [
- 26.03667,
- 57.84926
- ],
- [
- 26.02008,
- 57.84517
- ],
- [
- 26.00958,
- 57.85731
- ],
- [
- 25.99848,
- 57.85816
- ],
- [
- 25.96273,
- 57.84491
- ],
- [
- 25.931,
- 57.85244
- ],
- [
- 25.89537,
- 57.84972
- ],
- [
- 25.8883,
- 57.84595
- ],
- [
- 25.88085,
- 57.84946
- ],
- [
- 25.88573,
- 57.85277
- ],
- [
- 25.88427,
- 57.85595
- ],
- [
- 25.87561,
- 57.85796
- ],
- [
- 25.87475,
- 57.86322
- ],
- [
- 25.8595,
- 57.85614
- ],
- [
- 25.81923,
- 57.86419
- ],
- [
- 25.78312,
- 57.89948
- ],
- [
- 25.78629,
- 57.90428
- ],
- [
- 25.77165,
- 57.91206
- ],
- [
- 25.75102,
- 57.91692
- ],
- [
- 25.73724,
- 57.92295
- ],
- [
- 25.72833,
- 57.92133
- ],
- [
- 25.72247,
- 57.91245
- ],
- [
- 25.70356,
- 57.90331
- ],
- [
- 25.67916,
- 57.90461
- ],
- [
- 25.67549,
- 57.91277
- ],
- [
- 25.66207,
- 57.91511
- ],
- [
- 25.65609,
- 57.91439
- ],
- [
- 25.64889,
- 57.91666
- ],
- [
- 25.64987,
- 57.91841
- ],
- [
- 25.63828,
- 57.93059
- ],
- [
- 25.57983,
- 57.9442
- ],
- [
- 25.59399,
- 57.95961
- ],
- [
- 25.58935,
- 57.96504
- ],
- [
- 25.58239,
- 57.96783
- ],
- [
- 25.58044,
- 57.9721
- ],
- [
- 25.57483,
- 57.9741
- ],
- [
- 25.56556,
- 57.96718
- ],
- [
- 25.56604,
- 57.96258
- ],
- [
- 25.55714,
- 57.96038
- ],
- [
- 25.55567,
- 57.96711
- ],
- [
- 25.55079,
- 57.97255
- ],
- [
- 25.53725,
- 57.97139
- ],
- [
- 25.52566,
- 57.97184
- ],
- [
- 25.5226,
- 57.96802
- ],
- [
- 25.51638,
- 57.96737
- ],
- [
- 25.51211,
- 57.96977
- ],
- [
- 25.52212,
- 57.97488
- ],
- [
- 25.51943,
- 57.98031
- ],
- [
- 25.48539,
- 57.97475
- ],
- [
- 25.47843,
- 57.98006
- ],
- [
- 25.47843,
- 57.98264
- ],
- [
- 25.44219,
- 57.99616
- ],
- [
- 25.44817,
- 58.00114
- ],
- [
- 25.46648,
- 58.00515
- ],
- [
- 25.44817,
- 58.01698
- ],
- [
- 25.40693,
- 58.02893
- ],
- [
- 25.37155,
- 58.02926
- ],
- [
- 25.36374,
- 58.03171
- ],
- [
- 25.35336,
- 58.04334
- ],
- [
- 25.34482,
- 58.04676
- ],
- [
- 25.33604,
- 58.05709
- ],
- [
- 25.3292,
- 58.05858
- ],
- [
- 25.32664,
- 58.0638
- ],
- [
- 25.31981,
- 58.066
- ],
- [
- 25.31908,
- 58.06929
- ],
- [
- 25.29553,
- 58.08161
- ],
- [
- 25.28686,
- 58.08149
- ],
- [
- 25.28113,
- 58.07019
- ],
- [
- 25.266,
- 58.06716
- ],
- [
- 25.26502,
- 58.06
- ],
- [
- 25.27991,
- 58.05063
- ],
- [
- 25.29309,
- 58.0467
- ],
- [
- 25.30431,
- 58.03449
- ],
- [
- 25.30114,
- 58.01504
- ],
- [
- 25.29748,
- 58.01459
- ],
- [
- 25.30285,
- 58.00011
- ],
- [
- 25.29577,
- 57.99972
- ],
- [
- 25.29736,
- 57.99661
- ],
- [
- 25.30358,
- 57.99396
- ],
- [
- 25.30138,
- 57.99273
- ],
- [
- 25.29187,
- 57.99286
- ],
- [
- 25.28308,
- 57.98963
- ],
- [
- 25.26722,
- 57.99454
- ],
- [
- 25.25611,
- 57.9939
- ],
- [
- 25.25502,
- 58.00347
- ],
- [
- 25.2455,
- 58.00302
- ],
- [
- 25.22768,
- 58.01782
- ],
- [
- 25.24587,
- 58.01872
- ],
- [
- 25.23562,
- 58.02286
- ],
- [
- 25.23635,
- 58.02441
- ],
- [
- 25.22732,
- 58.02435
- ],
- [
- 25.22537,
- 58.02195
- ],
- [
- 25.21902,
- 58.02977
- ],
- [
- 25.21658,
- 58.04088
- ],
- [
- 25.22695,
- 58.04799
- ],
- [
- 25.22817,
- 58.05348
- ],
- [
- 25.22122,
- 58.05302
- ],
- [
- 25.22146,
- 58.05051
- ],
- [
- 25.2178,
- 58.04908
- ],
- [
- 25.21597,
- 58.05954
- ],
- [
- 25.21219,
- 58.06226
- ],
- [
- 25.20523,
- 58.06122
- ],
- [
- 25.20389,
- 58.0651
- ],
- [
- 25.21621,
- 58.07413
- ],
- [
- 25.21207,
- 58.08052
- ],
- [
- 25.19962,
- 58.08536
- ],
- [
- 25.18949,
- 58.08007
- ],
- [
- 25.19169,
- 58.07613
- ],
- [
- 25.1535,
- 58.07478
- ],
- [
- 25.15154,
- 58.07703
- ],
- [
- 25.13397,
- 58.07974
- ],
- [
- 25.10579,
- 58.07749
- ],
- [
- 25.10518,
- 58.06645
- ],
- [
- 25.07662,
- 58.06645
- ],
- [
- 25.02037,
- 58.01769
- ],
- [
- 24.99512,
- 58.01084
- ],
- [
- 24.94863,
- 58.00942
- ],
- [
- 24.83234,
- 57.97177
- ],
- [
- 24.80806,
- 57.99066
- ],
- [
- 24.74229,
- 57.98187
- ],
- [
- 24.74339,
- 57.96491
- ],
- [
- 24.7329,
- 57.96239
- ],
- [
- 24.71508,
- 57.96271
- ],
- [
- 24.6919,
- 57.94653
- ],
- [
- 24.67335,
- 57.95896
- ],
- [
- 24.64468,
- 57.95889
- ],
- [
- 24.64187,
- 57.95423
- ],
- [
- 24.64577,
- 57.95268
- ],
- [
- 24.62869,
- 57.94193
- ],
- [
- 24.61612,
- 57.94368
- ],
- [
- 24.60892,
- 57.95125
- ],
- [
- 24.58464,
- 57.96174
- ],
- [
- 24.57317,
- 57.95436
- ],
- [
- 24.54792,
- 57.94938
- ],
- [
- 24.54352,
- 57.94478
- ],
- [
- 24.5301,
- 57.94705
- ],
- [
- 24.5207,
- 57.94303
- ],
- [
- 24.51839,
- 57.93675
- ],
- [
- 24.5096,
- 57.93442
- ],
- [
- 24.51326,
- 57.93066
- ],
- [
- 24.4625,
- 57.92496
- ],
- [
- 24.44579,
- 57.90798
- ],
- [
- 24.46018,
- 57.90662
- ],
- [
- 24.45225,
- 57.89942
- ],
- [
- 24.46006,
- 57.87977
- ],
- [
- 24.41138,
- 57.86491
- ],
- [
- 24.40906,
- 57.87191
- ],
- [
- 24.33707,
- 57.87393
- ],
- [
- 24.33829,
- 58.0109
- ],
- [
- 24.42272,
- 58.01097
- ],
- [
- 24.42614,
- 58.28002
- ],
- [
- 24.51155,
- 58.2797
- ],
- [
- 24.51216,
- 58.32471
- ],
- [
- 24.42638,
- 58.32503
- ],
- [
- 24.42712,
- 58.36972
- ],
- [
- 24.34182,
- 58.37017
- ],
- [
- 24.34048,
- 58.23547
- ],
- [
- 24.17014,
- 58.23572
- ],
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.0851,
- 58.23605
- ],
- [
- 24.00066,
- 58.23579
- ],
- [
- 23.99993,
- 58.28092
- ],
- [
- 23.82971,
- 58.28047
- ],
- [
- 23.82947,
- 58.32554
- ],
- [
- 23.65864,
- 58.32496
- ],
- [
- 23.65791,
- 58.41493
- ],
- [
- 23.57225,
- 58.41468
- ],
- [
- 23.57127,
- 58.50436
- ],
- [
- 23.39935,
- 58.50359
- ],
- [
- 23.40106,
- 58.41391
- ],
- [
- 23.14421,
- 58.41238
- ],
- [
- 23.14567,
- 58.36735
- ],
- [
- 23.05989,
- 58.36703
- ],
- [
- 23.06172,
- 58.32221
- ],
- [
- 22.9757,
- 58.32157
- ],
- [
- 22.97716,
- 58.27681
- ],
- [
- 22.89187,
- 58.27598
- ],
- [
- 22.89358,
- 58.23103
- ],
- [
- 22.80865,
- 58.2302
- ],
- [
- 22.81012,
- 58.18539
- ],
- [
- 22.89529,
- 58.1861
- ],
- [
- 22.89663,
- 58.1413
- ],
- [
- 22.72641,
- 58.13982
- ],
- [
- 22.72495,
- 58.18475
- ],
- [
- 22.55522,
- 58.18276
- ],
- [
- 22.55693,
- 58.13744
- ],
- [
- 22.64173,
- 58.13886
- ],
- [
- 22.64344,
- 58.094
- ],
- [
- 22.38903,
- 58.0909
- ],
- [
- 22.38525,
- 58.18063
- ],
- [
- 22.29995,
- 58.17967
- ],
- [
- 22.30679,
- 58.04527
- ],
- [
- 22.22198,
- 58.0436
- ],
- [
- 22.22626,
- 57.95404
- ],
- [
- 22.14206,
- 57.95281
- ],
- [
- 22.1445,
- 57.90804
- ],
- [
- 22.06007,
- 57.90681
- ],
- [
- 22.06263,
- 57.86186
- ],
- [
- 21.97807,
- 57.86043
- ],
- [
- 21.96831,
- 58.04004
- ],
- [
- 22.05274,
- 58.04134
- ],
- [
- 22.04506,
- 58.17581
- ],
- [
- 21.96038,
- 58.17471
- ],
- [
- 21.95781,
- 58.21941
- ],
- [
- 21.78723,
- 58.21638
- ],
- [
- 21.78211,
- 58.30631
- ],
- [
- 21.69681,
- 58.3049
- ],
- [
- 21.69401,
- 58.34975
- ],
- [
- 21.77942,
- 58.35122
- ],
- [
- 21.76795,
- 58.53074
- ],
- [
- 22.02566,
- 58.53488
- ],
- [
- 22.02797,
- 58.49001
- ],
- [
- 22.11375,
- 58.49167
- ],
- [
- 22.11144,
- 58.53621
- ],
- [
- 22.19709,
- 58.53742
- ],
- [
- 22.19453,
- 58.5823
- ],
- [
- 22.45236,
- 58.58573
- ],
- [
- 22.44638,
- 58.7203
- ],
- [
- 22.36023,
- 58.71916
- ],
- [
- 22.35364,
- 58.85385
- ]
- ],
- [
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.29868,
- 59.26632
- ],
- [
- 23.29795,
- 59.31138
- ],
- [
- 23.47293,
- 59.31194
- ],
- [
- 23.47415,
- 59.26726
- ]
- ],
- [
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.25507,
- 58.19073
- ],
- [
- 24.25458,
- 58.14581
- ],
- [
- 24.17002,
- 58.14588
- ],
- [
- 24.17014,
- 58.1908
- ]
- ],
- [
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.08497,
- 58.10129
- ],
- [
- 23.99968,
- 58.10116
- ],
- [
- 23.99993,
- 58.05632
- ],
- [
- 23.91525,
- 58.05612
- ],
- [
- 23.915,
- 58.14613
- ],
- [
- 23.83032,
- 58.146
- ],
- [
- 23.82971,
- 58.23572
- ],
- [
- 23.91451,
- 58.23585
- ],
- [
- 23.91476,
- 58.19099
- ],
- [
- 24.08485,
- 58.19092
- ]
- ],
- [
- [
- 24.61854,
- 59.53612
- ],
- [
- 24.44183,
- 59.5368
- ],
- [
- 24.44309,
- 59.62659
- ],
- [
- 24.62016,
- 59.6258
- ],
- [
- 24.61854,
- 59.53612
- ]
- ],
- [
- [
- 26.40403,
- 59.7852
- ],
- [
- 26.31501,
- 59.78667
- ],
- [
- 26.31814,
- 59.83152
- ],
- [
- 26.40732,
- 59.82994
- ],
- [
- 26.40403,
- 59.7852
- ]
- ],
- [
- [
- 26.48308,
- 59.649
- ],
- [
- 26.48647,
- 59.69383
- ],
- [
- 26.57514,
- 59.69202
- ],
- [
- 26.57166,
- 59.64719
- ],
- [
- 26.48308,
- 59.649
- ]
- ],
- [
- [
- 23.15944,
- 57.78408
- ],
- [
- 23.24346,
- 57.78461
- ],
- [
- 23.24445,
- 57.73971
- ],
- [
- 23.32848,
- 57.74031
- ],
- [
- 23.32679,
- 57.82998
- ],
- [
- 23.15845,
- 57.82885
- ],
- [
- 23.15944,
- 57.78408
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maa-Ameti ortofoto"
- },
- "available_projections": [
- "EPSG:3301"
- ],
- "best": true,
- "country_code": "EE",
- "id": "Maaamet-Estonia_Ortho",
- "license_url": "http://svimik.com/Maa-amet_vastus_OSM.pdf",
- "max_zoom": 21,
- "min_zoom": 15,
- "name": "Estonia Ortho (Maaamet)",
- "type": "wms",
- "url": "https://kaart.maaamet.ee/wms/alus?VERSION=1.1.1&REQUEST=GetMap&LAYERS=of10000&SRS={proj}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.35364,
- 58.85385
- ],
- [
- 22.09411,
- 58.85038
- ],
- [
- 22.09179,
- 58.8951
- ],
- [
- 22.00503,
- 58.89371
- ],
- [
- 21.99979,
- 58.98374
- ],
- [
- 22.34754,
- 58.98845
- ],
- [
- 22.34535,
- 59.03337
- ],
- [
- 22.51935,
- 59.03538
- ],
- [
- 22.51556,
- 59.1251
- ],
- [
- 22.69017,
- 59.12686
- ],
- [
- 22.69212,
- 59.08218
- ],
- [
- 22.77912,
- 59.083
- ],
- [
- 22.78083,
- 59.03814
- ],
- [
- 22.86808,
- 59.03877
- ],
- [
- 22.8693,
- 58.99399
- ],
- [
- 22.9563,
- 58.99487
- ],
- [
- 22.95495,
- 59.03959
- ],
- [
- 23.12895,
- 59.04097
- ],
- [
- 23.12786,
- 59.08582
- ],
- [
- 23.47671,
- 59.0877
- ],
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.64924,
- 59.26788
- ],
- [
- 23.64888,
- 59.31281
- ],
- [
- 23.73698,
- 59.313
- ],
- [
- 23.73649,
- 59.3578
- ],
- [
- 23.91158,
- 59.35787
- ],
- [
- 23.91207,
- 59.4028
- ],
- [
- 24.176,
- 59.4028
- ],
- [
- 24.17637,
- 59.4478
- ],
- [
- 24.26446,
- 59.44767
- ],
- [
- 24.26471,
- 59.49236
- ],
- [
- 24.70605,
- 59.49082
- ],
- [
- 24.70898,
- 59.62553
- ],
- [
- 24.79744,
- 59.62497
- ],
- [
- 24.79659,
- 59.58009
- ],
- [
- 24.97327,
- 59.57885
- ],
- [
- 24.97462,
- 59.62386
- ],
- [
- 24.88603,
- 59.62473
- ],
- [
- 24.88725,
- 59.66918
- ],
- [
- 24.9762,
- 59.66863
- ],
- [
- 24.9773,
- 59.71346
- ],
- [
- 25.06601,
- 59.71259
- ],
- [
- 25.0632,
- 59.62306
- ],
- [
- 25.24037,
- 59.62145
- ],
- [
- 25.24184,
- 59.66647
- ],
- [
- 25.33055,
- 59.66548
- ],
- [
- 25.32884,
- 59.62078
- ],
- [
- 25.41755,
- 59.61979
- ],
- [
- 25.41938,
- 59.66468
- ],
- [
- 25.6855,
- 59.66148
- ],
- [
- 25.68757,
- 59.70613
- ],
- [
- 25.86511,
- 59.70386
- ],
- [
- 25.86279,
- 59.65901
- ],
- [
- 26.12855,
- 59.65507
- ],
- [
- 26.12575,
- 59.6101
- ],
- [
- 26.39114,
- 59.60565
- ],
- [
- 26.38809,
- 59.56099
- ],
- [
- 26.82967,
- 59.55215
- ],
- [
- 26.82626,
- 59.50729
- ],
- [
- 26.91423,
- 59.50549
- ],
- [
- 26.91057,
- 59.46051
- ],
- [
- 27.96689,
- 59.43303
- ],
- [
- 27.9719,
- 59.4778
- ],
- [
- 28.03669,
- 59.4757
- ],
- [
- 28.04377,
- 59.47223
- ],
- [
- 28.04767,
- 59.46578
- ],
- [
- 28.05182,
- 59.46342
- ],
- [
- 28.06915,
- 59.46256
- ],
- [
- 28.08452,
- 59.45939
- ],
- [
- 28.12174,
- 59.44091
- ],
- [
- 28.13577,
- 59.4277
- ],
- [
- 28.13711,
- 59.42267
- ],
- [
- 28.14163,
- 59.41901
- ],
- [
- 28.16652,
- 59.41205
- ],
- [
- 28.17225,
- 59.40789
- ],
- [
- 28.19275,
- 59.4015
- ],
- [
- 28.21069,
- 59.3836
- ],
- [
- 28.21069,
- 59.37994
- ],
- [
- 28.20386,
- 59.37459
- ],
- [
- 28.21057,
- 59.37235
- ],
- [
- 28.21105,
- 59.36937
- ],
- [
- 28.20678,
- 59.36719
- ],
- [
- 28.20703,
- 59.36377
- ],
- [
- 28.19971,
- 59.36091
- ],
- [
- 28.20203,
- 59.35731
- ],
- [
- 28.19263,
- 59.35227
- ],
- [
- 28.19397,
- 59.34642
- ],
- [
- 28.16969,
- 59.33354
- ],
- [
- 28.13626,
- 59.29244
- ],
- [
- 28.12515,
- 59.28901
- ],
- [
- 28.11722,
- 59.28895
- ],
- [
- 28.1099,
- 59.29063
- ],
- [
- 28.05353,
- 59.2902
- ],
- [
- 28.02022,
- 59.28334
- ],
- [
- 27.99825,
- 59.2753
- ],
- [
- 27.97983,
- 59.27293
- ],
- [
- 27.96433,
- 59.27268
- ],
- [
- 27.95335,
- 59.26863
- ],
- [
- 27.9492,
- 59.26533
- ],
- [
- 27.90564,
- 59.24044
- ],
- [
- 27.90113,
- 59.23488
- ],
- [
- 27.901,
- 59.22639
- ],
- [
- 27.89783,
- 59.21746
- ],
- [
- 27.90235,
- 59.20728
- ],
- [
- 27.89234,
- 59.19222
- ],
- [
- 27.88978,
- 59.18379
- ],
- [
- 27.87648,
- 59.17372
- ],
- [
- 27.87184,
- 59.16841
- ],
- [
- 27.86818,
- 59.16159
- ],
- [
- 27.84414,
- 59.14814
- ],
- [
- 27.83206,
- 59.14401
- ],
- [
- 27.82035,
- 59.13362
- ],
- [
- 27.80986,
- 59.12905
- ],
- [
- 27.80595,
- 59.12166
- ],
- [
- 27.80534,
- 59.1127
- ],
- [
- 27.81071,
- 59.10819
- ],
- [
- 27.8101,
- 59.10606
- ],
- [
- 27.80205,
- 59.1028
- ],
- [
- 27.78887,
- 59.0909
- ],
- [
- 27.7907,
- 59.08112
- ],
- [
- 27.79375,
- 59.07842
- ],
- [
- 27.79411,
- 59.07566
- ],
- [
- 27.79277,
- 59.0729
- ],
- [
- 27.79302,
- 59.06927
- ],
- [
- 27.7885,
- 59.06657
- ],
- [
- 27.78265,
- 59.065
- ],
- [
- 27.77508,
- 59.0581
- ],
- [
- 27.77313,
- 59.05107
- ],
- [
- 27.77667,
- 59.04743
- ],
- [
- 27.76983,
- 59.03325
- ],
- [
- 27.76605,
- 59.03155
- ],
- [
- 27.75153,
- 59.03017
- ],
- [
- 27.74628,
- 59.02716
- ],
- [
- 27.74567,
- 59.01705
- ],
- [
- 27.74165,
- 59.00951
- ],
- [
- 27.74787,
- 58.99267
- ],
- [
- 27.74274,
- 58.98845
- ],
- [
- 27.73213,
- 58.9855
- ],
- [
- 27.6544,
- 58.98783
- ],
- [
- 27.65501,
- 58.99241
- ],
- [
- 27.39414,
- 58.99964
- ],
- [
- 27.38974,
- 58.95474
- ],
- [
- 27.12935,
- 58.96135
- ],
- [
- 27.12557,
- 58.9164
- ],
- [
- 27.03882,
- 58.91841
- ],
- [
- 27.0271,
- 58.7841
- ],
- [
- 27.11361,
- 58.78183
- ],
- [
- 27.10934,
- 58.73709
- ],
- [
- 27.19537,
- 58.73512
- ],
- [
- 27.18731,
- 58.64533
- ],
- [
- 27.27309,
- 58.64305
- ],
- [
- 27.25259,
- 58.41883
- ],
- [
- 27.53397,
- 58.41142
- ],
- [
- 27.5552,
- 58.36575
- ],
- [
- 27.51762,
- 58.33265
- ],
- [
- 27.51408,
- 58.32214
- ],
- [
- 27.49993,
- 58.32246
- ],
- [
- 27.48687,
- 58.18803
- ],
- [
- 27.52872,
- 58.18687
- ],
- [
- 27.59205,
- 58.11875
- ],
- [
- 27.63695,
- 58.09735
- ],
- [
- 27.60938,
- 58.05399
- ],
- [
- 27.62268,
- 58.0058
- ],
- [
- 27.64489,
- 58.00205
- ],
- [
- 27.65294,
- 58.00644
- ],
- [
- 27.64781,
- 58.01426
- ],
- [
- 27.64781,
- 58.02086
- ],
- [
- 27.66172,
- 58.01866
- ],
- [
- 27.66856,
- 58.01045
- ],
- [
- 27.68393,
- 58.00845
- ],
- [
- 27.6965,
- 58.0045
- ],
- [
- 27.70065,
- 57.99862
- ],
- [
- 27.69882,
- 57.98827
- ],
- [
- 27.69125,
- 57.98549
- ],
- [
- 27.68064,
- 57.97449
- ],
- [
- 27.6821,
- 57.9719
- ],
- [
- 27.68893,
- 57.97184
- ],
- [
- 27.68588,
- 57.95928
- ],
- [
- 27.65892,
- 57.9554
- ],
- [
- 27.66758,
- 57.951
- ],
- [
- 27.67161,
- 57.94627
- ],
- [
- 27.66917,
- 57.94174
- ],
- [
- 27.67649,
- 57.93552
- ],
- [
- 27.68247,
- 57.93655
- ],
- [
- 27.68613,
- 57.92794
- ],
- [
- 27.68247,
- 57.92437
- ],
- [
- 27.71078,
- 57.92392
- ],
- [
- 27.72029,
- 57.92036
- ],
- [
- 27.72054,
- 57.91174
- ],
- [
- 27.70834,
- 57.90616
- ],
- [
- 27.69882,
- 57.90616
- ],
- [
- 27.70614,
- 57.90136
- ],
- [
- 27.72896,
- 57.90739
- ],
- [
- 27.74677,
- 57.90169
- ],
- [
- 27.7536,
- 57.90409
- ],
- [
- 27.75739,
- 57.90318
- ],
- [
- 27.75592,
- 57.89806
- ],
- [
- 27.76959,
- 57.89566
- ],
- [
- 27.78094,
- 57.89832
- ],
- [
- 27.799,
- 57.89961
- ],
- [
- 27.81852,
- 57.89579
- ],
- [
- 27.82096,
- 57.89047
- ],
- [
- 27.81949,
- 57.888
- ],
- [
- 27.81059,
- 57.88612
- ],
- [
- 27.81827,
- 57.88249
- ],
- [
- 27.81169,
- 57.87204
- ],
- [
- 27.81583,
- 57.87166
- ],
- [
- 27.8184,
- 57.8651
- ],
- [
- 27.81632,
- 57.86134
- ],
- [
- 27.79875,
- 57.85205
- ],
- [
- 27.7946,
- 57.84634
- ],
- [
- 27.80058,
- 57.8442
- ],
- [
- 27.7957,
- 57.84017
- ],
- [
- 27.78862,
- 57.84186
- ],
- [
- 27.78411,
- 57.83725
- ],
- [
- 27.77715,
- 57.8325
- ],
- [
- 27.75849,
- 57.83536
- ],
- [
- 27.74165,
- 57.82679
- ],
- [
- 27.72383,
- 57.83179
- ],
- [
- 27.70541,
- 57.84192
- ],
- [
- 27.68771,
- 57.83419
- ],
- [
- 27.66636,
- 57.83653
- ],
- [
- 27.66026,
- 57.83893
- ],
- [
- 27.64818,
- 57.8377
- ],
- [
- 27.63634,
- 57.83978
- ],
- [
- 27.62487,
- 57.83751
- ],
- [
- 27.62207,
- 57.83874
- ],
- [
- 27.59791,
- 57.83328
- ],
- [
- 27.56252,
- 57.83023
- ],
- [
- 27.5563,
- 57.83127
- ],
- [
- 27.55227,
- 57.82113
- ],
- [
- 27.54446,
- 57.82204
- ],
- [
- 27.5452,
- 57.81808
- ],
- [
- 27.55056,
- 57.81769
- ],
- [
- 27.55667,
- 57.81366
- ],
- [
- 27.5408,
- 57.81288
- ],
- [
- 27.54471,
- 57.808
- ],
- [
- 27.53726,
- 57.80644
- ],
- [
- 27.53958,
- 57.80144
- ],
- [
- 27.53592,
- 57.79663
- ],
- [
- 27.53861,
- 57.79396
- ],
- [
- 27.52921,
- 57.78856
- ],
- [
- 27.5175,
- 57.78876
- ],
- [
- 27.51847,
- 57.79201
- ],
- [
- 27.50298,
- 57.78798
- ],
- [
- 27.50005,
- 57.78973
- ],
- [
- 27.4959,
- 57.78869
- ],
- [
- 27.50774,
- 57.78349
- ],
- [
- 27.51457,
- 57.77516
- ],
- [
- 27.5081,
- 57.77158
- ],
- [
- 27.51115,
- 57.76416
- ],
- [
- 27.51591,
- 57.7639
- ],
- [
- 27.52018,
- 57.75993
- ],
- [
- 27.52811,
- 57.75818
- ],
- [
- 27.53007,
- 57.75368
- ],
- [
- 27.53116,
- 57.74073
- ],
- [
- 27.548,
- 57.7333
- ],
- [
- 27.5419,
- 57.73037
- ],
- [
- 27.52799,
- 57.72946
- ],
- [
- 27.5236,
- 57.71616
- ],
- [
- 27.52762,
- 57.70899
- ],
- [
- 27.5236,
- 57.70802
- ],
- [
- 27.51652,
- 57.70873
- ],
- [
- 27.51066,
- 57.71101
- ],
- [
- 27.50859,
- 57.70723
- ],
- [
- 27.49993,
- 57.70495
- ],
- [
- 27.49529,
- 57.70749
- ],
- [
- 27.48711,
- 57.7191
- ],
- [
- 27.47357,
- 57.71545
- ],
- [
- 27.47064,
- 57.70802
- ],
- [
- 27.46149,
- 57.70619
- ],
- [
- 27.44807,
- 57.71616
- ],
- [
- 27.43086,
- 57.70756
- ],
- [
- 27.42818,
- 57.69902
- ],
- [
- 27.41341,
- 57.69915
- ],
- [
- 27.41647,
- 57.69524
- ],
- [
- 27.40744,
- 57.69276
- ],
- [
- 27.40231,
- 57.68493
- ],
- [
- 27.39133,
- 57.68539
- ],
- [
- 27.39377,
- 57.67913
- ],
- [
- 27.39145,
- 57.67671
- ],
- [
- 27.38193,
- 57.67332
- ],
- [
- 27.37779,
- 57.66836
- ],
- [
- 27.38364,
- 57.66059
- ],
- [
- 27.3801,
- 57.65883
- ],
- [
- 27.38755,
- 57.6555
- ],
- [
- 27.38047,
- 57.6495
- ],
- [
- 27.38352,
- 57.64799
- ],
- [
- 27.38157,
- 57.64368
- ],
- [
- 27.39072,
- 57.6431
- ],
- [
- 27.38816,
- 57.64009
- ],
- [
- 27.40085,
- 57.63742
- ],
- [
- 27.40317,
- 57.62905
- ],
- [
- 27.40182,
- 57.62376
- ],
- [
- 27.39597,
- 57.62115
- ],
- [
- 27.39023,
- 57.62036
- ],
- [
- 27.39084,
- 57.6169
- ],
- [
- 27.40195,
- 57.61775
- ],
- [
- 27.40634,
- 57.61546
- ],
- [
- 27.40683,
- 57.61246
- ],
- [
- 27.38572,
- 57.60304
- ],
- [
- 27.37827,
- 57.59513
- ],
- [
- 27.35692,
- 57.59696
- ],
- [
- 27.3413,
- 57.58984
- ],
- [
- 27.34179,
- 57.58539
- ],
- [
- 27.32886,
- 57.5797
- ],
- [
- 27.32141,
- 57.57898
- ],
- [
- 27.3341,
- 57.56596
- ],
- [
- 27.33178,
- 57.56066
- ],
- [
- 27.33776,
- 57.56007
- ],
- [
- 27.33886,
- 57.54671
- ],
- [
- 27.34386,
- 57.5454
- ],
- [
- 27.35472,
- 57.52575
- ],
- [
- 27.35131,
- 57.51632
- ],
- [
- 27.34569,
- 57.52104
- ],
- [
- 27.32446,
- 57.52274
- ],
- [
- 27.29664,
- 57.53859
- ],
- [
- 27.28017,
- 57.53643
- ],
- [
- 27.2737,
- 57.54311
- ],
- [
- 27.26431,
- 57.54377
- ],
- [
- 27.2637,
- 57.54841
- ],
- [
- 27.25772,
- 57.54979
- ],
- [
- 27.24796,
- 57.54769
- ],
- [
- 27.2249,
- 57.55385
- ],
- [
- 27.19329,
- 57.54966
- ],
- [
- 27.16145,
- 57.55922
- ],
- [
- 27.11654,
- 57.56118
- ],
- [
- 27.10092,
- 57.5653
- ],
- [
- 27.08506,
- 57.57538
- ],
- [
- 27.07262,
- 57.57734
- ],
- [
- 27.07225,
- 57.57989
- ],
- [
- 27.0559,
- 57.58251
- ],
- [
- 27.05285,
- 57.58087
- ],
- [
- 27.04687,
- 57.58048
- ],
- [
- 27.04492,
- 57.58251
- ],
- [
- 27.0332,
- 57.58532
- ],
- [
- 27.04126,
- 57.58761
- ],
- [
- 27.04418,
- 57.5967
- ],
- [
- 27.03101,
- 57.60461
- ],
- [
- 26.99513,
- 57.60461
- ],
- [
- 26.99233,
- 57.61076
- ],
- [
- 26.98696,
- 57.60867
- ],
- [
- 26.98366,
- 57.61174
- ],
- [
- 26.97549,
- 57.612
- ],
- [
- 26.97097,
- 57.60448
- ],
- [
- 26.9595,
- 57.60625
- ],
- [
- 26.9578,
- 57.60468
- ],
- [
- 26.94596,
- 57.60272
- ],
- [
- 26.93961,
- 57.60932
- ],
- [
- 26.95133,
- 57.61579
- ],
- [
- 26.94999,
- 57.62056
- ],
- [
- 26.94059,
- 57.61978
- ],
- [
- 26.92961,
- 57.62376
- ],
- [
- 26.92644,
- 57.6331
- ],
- [
- 26.90679,
- 57.63304
- ],
- [
- 26.89971,
- 57.63056
- ],
- [
- 26.90057,
- 57.62918
- ],
- [
- 26.89581,
- 57.62572
- ],
- [
- 26.88849,
- 57.62357
- ],
- [
- 26.88898,
- 57.62193
- ],
- [
- 26.87458,
- 57.61906
- ],
- [
- 26.87275,
- 57.61736
- ],
- [
- 26.86555,
- 57.61592
- ],
- [
- 26.85786,
- 57.60997
- ],
- [
- 26.86469,
- 57.6084
- ],
- [
- 26.85811,
- 57.60049
- ],
- [
- 26.85994,
- 57.59598
- ],
- [
- 26.86433,
- 57.59415
- ],
- [
- 26.86177,
- 57.59108
- ],
- [
- 26.84688,
- 57.5884
- ],
- [
- 26.83504,
- 57.58244
- ],
- [
- 26.81589,
- 57.58153
- ],
- [
- 26.80954,
- 57.58473
- ],
- [
- 26.79685,
- 57.58179
- ],
- [
- 26.79929,
- 57.58002
- ],
- [
- 26.79295,
- 57.57315
- ],
- [
- 26.78685,
- 57.57525
- ],
- [
- 26.7766,
- 57.55994
- ],
- [
- 26.76915,
- 57.56039
- ],
- [
- 26.76354,
- 57.56314
- ],
- [
- 26.75366,
- 57.56249
- ],
- [
- 26.75817,
- 57.5653
- ],
- [
- 26.76891,
- 57.57041
- ],
- [
- 26.77379,
- 57.57473
- ],
- [
- 26.76769,
- 57.57754
- ],
- [
- 26.74804,
- 57.5778
- ],
- [
- 26.75317,
- 57.58009
- ],
- [
- 26.73816,
- 57.58774
- ],
- [
- 26.72901,
- 57.58016
- ],
- [
- 26.73828,
- 57.57584
- ],
- [
- 26.73072,
- 57.56903
- ],
- [
- 26.72388,
- 57.57244
- ],
- [
- 26.71107,
- 57.56596
- ],
- [
- 26.69972,
- 57.57106
- ],
- [
- 26.69753,
- 57.5706
- ],
- [
- 26.69741,
- 57.56733
- ],
- [
- 26.69155,
- 57.56615
- ],
- [
- 26.67569,
- 57.56668
- ],
- [
- 26.67105,
- 57.56327
- ],
- [
- 26.6719,
- 57.55385
- ],
- [
- 26.66531,
- 57.55287
- ],
- [
- 26.64652,
- 57.55391
- ],
- [
- 26.64262,
- 57.54658
- ],
- [
- 26.63444,
- 57.54357
- ],
- [
- 26.61443,
- 57.52909
- ],
- [
- 26.61712,
- 57.50885
- ],
- [
- 26.60467,
- 57.51212
- ],
- [
- 26.60479,
- 57.51442
- ],
- [
- 26.5954,
- 57.51376
- ],
- [
- 26.59479,
- 57.51592
- ],
- [
- 26.58808,
- 57.51619
- ],
- [
- 26.59015,
- 57.52516
- ],
- [
- 26.58698,
- 57.52621
- ],
- [
- 26.58771,
- 57.53781
- ],
- [
- 26.58381,
- 57.53957
- ],
- [
- 26.57978,
- 57.53695
- ],
- [
- 26.57966,
- 57.53375
- ],
- [
- 26.56123,
- 57.5285
- ],
- [
- 26.56184,
- 57.52261
- ],
- [
- 26.5666,
- 57.51946
- ],
- [
- 26.55794,
- 57.5137
- ],
- [
- 26.52585,
- 57.51619
- ],
- [
- 26.49961,
- 57.52451
- ],
- [
- 26.49095,
- 57.54534
- ],
- [
- 26.46996,
- 57.57551
- ],
- [
- 26.40151,
- 57.57237
- ],
- [
- 26.34489,
- 57.58408
- ],
- [
- 26.33476,
- 57.5797
- ],
- [
- 26.32781,
- 57.57963
- ],
- [
- 26.32635,
- 57.58277
- ],
- [
- 26.3117,
- 57.58473
- ],
- [
- 26.30853,
- 57.59291
- ],
- [
- 26.3006,
- 57.59343
- ],
- [
- 26.29291,
- 57.59114
- ],
- [
- 26.28352,
- 57.59232
- ],
- [
- 26.28217,
- 57.5952
- ],
- [
- 26.27754,
- 57.595
- ],
- [
- 26.27034,
- 57.6001
- ],
- [
- 26.27022,
- 57.60461
- ],
- [
- 26.25423,
- 57.61383
- ],
- [
- 26.24715,
- 57.62082
- ],
- [
- 26.24813,
- 57.62775
- ],
- [
- 26.23947,
- 57.63408
- ],
- [
- 26.24203,
- 57.63539
- ],
- [
- 26.24667,
- 57.63559
- ],
- [
- 26.23959,
- 57.64649
- ],
- [
- 26.23239,
- 57.6461
- ],
- [
- 26.23117,
- 57.64904
- ],
- [
- 26.24215,
- 57.65146
- ],
- [
- 26.2363,
- 57.65753
- ],
- [
- 26.23032,
- 57.65805
- ],
- [
- 26.21043,
- 57.66601
- ],
- [
- 26.21372,
- 57.66888
- ],
- [
- 26.21092,
- 57.67071
- ],
- [
- 26.21018,
- 57.67906
- ],
- [
- 26.20079,
- 57.68102
- ],
- [
- 26.19896,
- 57.68356
- ],
- [
- 26.19444,
- 57.68519
- ],
- [
- 26.18541,
- 57.68454
- ],
- [
- 26.17712,
- 57.68761
- ],
- [
- 26.18871,
- 57.69472
- ],
- [
- 26.19859,
- 57.70906
- ],
- [
- 26.20567,
- 57.71486
- ],
- [
- 26.1726,
- 57.72867
- ],
- [
- 26.141,
- 57.73278
- ],
- [
- 26.13563,
- 57.73923
- ],
- [
- 26.13905,
- 57.74548
- ],
- [
- 26.13551,
- 57.7503
- ],
- [
- 26.10537,
- 57.757
- ],
- [
- 26.08035,
- 57.76547
- ],
- [
- 26.07974,
- 57.76384
- ],
- [
- 26.07328,
- 57.76371
- ],
- [
- 26.07047,
- 57.7656
- ],
- [
- 26.05912,
- 57.75987
- ],
- [
- 26.049,
- 57.7611
- ],
- [
- 26.0435,
- 57.76703
- ],
- [
- 26.03326,
- 57.77054
- ],
- [
- 26.02374,
- 57.76761
- ],
- [
- 26.01776,
- 57.7723
- ],
- [
- 26.02459,
- 57.77516
- ],
- [
- 26.02496,
- 57.7816
- ],
- [
- 26.02252,
- 57.78355
- ],
- [
- 26.02776,
- 57.7898
- ],
- [
- 26.03081,
- 57.79097
- ],
- [
- 26.03338,
- 57.80105
- ],
- [
- 26.03679,
- 57.80592
- ],
- [
- 26.03606,
- 57.8108
- ],
- [
- 26.04851,
- 57.82289
- ],
- [
- 26.05705,
- 57.83842
- ],
- [
- 26.05558,
- 57.84764
- ],
- [
- 26.03667,
- 57.84926
- ],
- [
- 26.02008,
- 57.84517
- ],
- [
- 26.00958,
- 57.85731
- ],
- [
- 25.99848,
- 57.85816
- ],
- [
- 25.96273,
- 57.84491
- ],
- [
- 25.931,
- 57.85244
- ],
- [
- 25.89537,
- 57.84972
- ],
- [
- 25.8883,
- 57.84595
- ],
- [
- 25.88085,
- 57.84946
- ],
- [
- 25.88573,
- 57.85277
- ],
- [
- 25.88427,
- 57.85595
- ],
- [
- 25.87561,
- 57.85796
- ],
- [
- 25.87475,
- 57.86322
- ],
- [
- 25.8595,
- 57.85614
- ],
- [
- 25.81923,
- 57.86419
- ],
- [
- 25.78312,
- 57.89948
- ],
- [
- 25.78629,
- 57.90428
- ],
- [
- 25.77165,
- 57.91206
- ],
- [
- 25.75102,
- 57.91692
- ],
- [
- 25.73724,
- 57.92295
- ],
- [
- 25.72833,
- 57.92133
- ],
- [
- 25.72247,
- 57.91245
- ],
- [
- 25.70356,
- 57.90331
- ],
- [
- 25.67916,
- 57.90461
- ],
- [
- 25.67549,
- 57.91277
- ],
- [
- 25.66207,
- 57.91511
- ],
- [
- 25.65609,
- 57.91439
- ],
- [
- 25.64889,
- 57.91666
- ],
- [
- 25.64987,
- 57.91841
- ],
- [
- 25.63828,
- 57.93059
- ],
- [
- 25.57983,
- 57.9442
- ],
- [
- 25.59399,
- 57.95961
- ],
- [
- 25.58935,
- 57.96504
- ],
- [
- 25.58239,
- 57.96783
- ],
- [
- 25.58044,
- 57.9721
- ],
- [
- 25.57483,
- 57.9741
- ],
- [
- 25.56556,
- 57.96718
- ],
- [
- 25.56604,
- 57.96258
- ],
- [
- 25.55714,
- 57.96038
- ],
- [
- 25.55567,
- 57.96711
- ],
- [
- 25.55079,
- 57.97255
- ],
- [
- 25.53725,
- 57.97139
- ],
- [
- 25.52566,
- 57.97184
- ],
- [
- 25.5226,
- 57.96802
- ],
- [
- 25.51638,
- 57.96737
- ],
- [
- 25.51211,
- 57.96977
- ],
- [
- 25.52212,
- 57.97488
- ],
- [
- 25.51943,
- 57.98031
- ],
- [
- 25.48539,
- 57.97475
- ],
- [
- 25.47843,
- 57.98006
- ],
- [
- 25.47843,
- 57.98264
- ],
- [
- 25.44219,
- 57.99616
- ],
- [
- 25.44817,
- 58.00114
- ],
- [
- 25.46648,
- 58.00515
- ],
- [
- 25.44817,
- 58.01698
- ],
- [
- 25.40693,
- 58.02893
- ],
- [
- 25.37155,
- 58.02926
- ],
- [
- 25.36374,
- 58.03171
- ],
- [
- 25.35336,
- 58.04334
- ],
- [
- 25.34482,
- 58.04676
- ],
- [
- 25.33604,
- 58.05709
- ],
- [
- 25.3292,
- 58.05858
- ],
- [
- 25.32664,
- 58.0638
- ],
- [
- 25.31981,
- 58.066
- ],
- [
- 25.31908,
- 58.06929
- ],
- [
- 25.29553,
- 58.08161
- ],
- [
- 25.28686,
- 58.08149
- ],
- [
- 25.28113,
- 58.07019
- ],
- [
- 25.266,
- 58.06716
- ],
- [
- 25.26502,
- 58.06
- ],
- [
- 25.27991,
- 58.05063
- ],
- [
- 25.29309,
- 58.0467
- ],
- [
- 25.30431,
- 58.03449
- ],
- [
- 25.30114,
- 58.01504
- ],
- [
- 25.29748,
- 58.01459
- ],
- [
- 25.30285,
- 58.00011
- ],
- [
- 25.29577,
- 57.99972
- ],
- [
- 25.29736,
- 57.99661
- ],
- [
- 25.30358,
- 57.99396
- ],
- [
- 25.30138,
- 57.99273
- ],
- [
- 25.29187,
- 57.99286
- ],
- [
- 25.28308,
- 57.98963
- ],
- [
- 25.26722,
- 57.99454
- ],
- [
- 25.25611,
- 57.9939
- ],
- [
- 25.25502,
- 58.00347
- ],
- [
- 25.2455,
- 58.00302
- ],
- [
- 25.22768,
- 58.01782
- ],
- [
- 25.24587,
- 58.01872
- ],
- [
- 25.23562,
- 58.02286
- ],
- [
- 25.23635,
- 58.02441
- ],
- [
- 25.22732,
- 58.02435
- ],
- [
- 25.22537,
- 58.02195
- ],
- [
- 25.21902,
- 58.02977
- ],
- [
- 25.21658,
- 58.04088
- ],
- [
- 25.22695,
- 58.04799
- ],
- [
- 25.22817,
- 58.05348
- ],
- [
- 25.22122,
- 58.05302
- ],
- [
- 25.22146,
- 58.05051
- ],
- [
- 25.2178,
- 58.04908
- ],
- [
- 25.21597,
- 58.05954
- ],
- [
- 25.21219,
- 58.06226
- ],
- [
- 25.20523,
- 58.06122
- ],
- [
- 25.20389,
- 58.0651
- ],
- [
- 25.21621,
- 58.07413
- ],
- [
- 25.21207,
- 58.08052
- ],
- [
- 25.19962,
- 58.08536
- ],
- [
- 25.18949,
- 58.08007
- ],
- [
- 25.19169,
- 58.07613
- ],
- [
- 25.1535,
- 58.07478
- ],
- [
- 25.15154,
- 58.07703
- ],
- [
- 25.13397,
- 58.07974
- ],
- [
- 25.10579,
- 58.07749
- ],
- [
- 25.10518,
- 58.06645
- ],
- [
- 25.07662,
- 58.06645
- ],
- [
- 25.02037,
- 58.01769
- ],
- [
- 24.99512,
- 58.01084
- ],
- [
- 24.94863,
- 58.00942
- ],
- [
- 24.83234,
- 57.97177
- ],
- [
- 24.80806,
- 57.99066
- ],
- [
- 24.74229,
- 57.98187
- ],
- [
- 24.74339,
- 57.96491
- ],
- [
- 24.7329,
- 57.96239
- ],
- [
- 24.71508,
- 57.96271
- ],
- [
- 24.6919,
- 57.94653
- ],
- [
- 24.67335,
- 57.95896
- ],
- [
- 24.64468,
- 57.95889
- ],
- [
- 24.64187,
- 57.95423
- ],
- [
- 24.64577,
- 57.95268
- ],
- [
- 24.62869,
- 57.94193
- ],
- [
- 24.61612,
- 57.94368
- ],
- [
- 24.60892,
- 57.95125
- ],
- [
- 24.58464,
- 57.96174
- ],
- [
- 24.57317,
- 57.95436
- ],
- [
- 24.54792,
- 57.94938
- ],
- [
- 24.54352,
- 57.94478
- ],
- [
- 24.5301,
- 57.94705
- ],
- [
- 24.5207,
- 57.94303
- ],
- [
- 24.51839,
- 57.93675
- ],
- [
- 24.5096,
- 57.93442
- ],
- [
- 24.51326,
- 57.93066
- ],
- [
- 24.4625,
- 57.92496
- ],
- [
- 24.44579,
- 57.90798
- ],
- [
- 24.46018,
- 57.90662
- ],
- [
- 24.45225,
- 57.89942
- ],
- [
- 24.46006,
- 57.87977
- ],
- [
- 24.41138,
- 57.86491
- ],
- [
- 24.40906,
- 57.87191
- ],
- [
- 24.33707,
- 57.87393
- ],
- [
- 24.33829,
- 58.0109
- ],
- [
- 24.42272,
- 58.01097
- ],
- [
- 24.42614,
- 58.28002
- ],
- [
- 24.51155,
- 58.2797
- ],
- [
- 24.51216,
- 58.32471
- ],
- [
- 24.42638,
- 58.32503
- ],
- [
- 24.42712,
- 58.36972
- ],
- [
- 24.34182,
- 58.37017
- ],
- [
- 24.34048,
- 58.23547
- ],
- [
- 24.17014,
- 58.23572
- ],
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.0851,
- 58.23605
- ],
- [
- 24.00066,
- 58.23579
- ],
- [
- 23.99993,
- 58.28092
- ],
- [
- 23.82971,
- 58.28047
- ],
- [
- 23.82947,
- 58.32554
- ],
- [
- 23.65864,
- 58.32496
- ],
- [
- 23.65791,
- 58.41493
- ],
- [
- 23.57225,
- 58.41468
- ],
- [
- 23.57127,
- 58.50436
- ],
- [
- 23.39935,
- 58.50359
- ],
- [
- 23.40106,
- 58.41391
- ],
- [
- 23.14421,
- 58.41238
- ],
- [
- 23.14567,
- 58.36735
- ],
- [
- 23.05989,
- 58.36703
- ],
- [
- 23.06172,
- 58.32221
- ],
- [
- 22.9757,
- 58.32157
- ],
- [
- 22.97716,
- 58.27681
- ],
- [
- 22.89187,
- 58.27598
- ],
- [
- 22.89358,
- 58.23103
- ],
- [
- 22.80865,
- 58.2302
- ],
- [
- 22.81012,
- 58.18539
- ],
- [
- 22.89529,
- 58.1861
- ],
- [
- 22.89663,
- 58.1413
- ],
- [
- 22.72641,
- 58.13982
- ],
- [
- 22.72495,
- 58.18475
- ],
- [
- 22.55522,
- 58.18276
- ],
- [
- 22.55693,
- 58.13744
- ],
- [
- 22.64173,
- 58.13886
- ],
- [
- 22.64344,
- 58.094
- ],
- [
- 22.38903,
- 58.0909
- ],
- [
- 22.38525,
- 58.18063
- ],
- [
- 22.29995,
- 58.17967
- ],
- [
- 22.30679,
- 58.04527
- ],
- [
- 22.22198,
- 58.0436
- ],
- [
- 22.22626,
- 57.95404
- ],
- [
- 22.14206,
- 57.95281
- ],
- [
- 22.1445,
- 57.90804
- ],
- [
- 22.06007,
- 57.90681
- ],
- [
- 22.06263,
- 57.86186
- ],
- [
- 21.97807,
- 57.86043
- ],
- [
- 21.96831,
- 58.04004
- ],
- [
- 22.05274,
- 58.04134
- ],
- [
- 22.04506,
- 58.17581
- ],
- [
- 21.96038,
- 58.17471
- ],
- [
- 21.95781,
- 58.21941
- ],
- [
- 21.78723,
- 58.21638
- ],
- [
- 21.78211,
- 58.30631
- ],
- [
- 21.69681,
- 58.3049
- ],
- [
- 21.69401,
- 58.34975
- ],
- [
- 21.77942,
- 58.35122
- ],
- [
- 21.76795,
- 58.53074
- ],
- [
- 22.02566,
- 58.53488
- ],
- [
- 22.02797,
- 58.49001
- ],
- [
- 22.11375,
- 58.49167
- ],
- [
- 22.11144,
- 58.53621
- ],
- [
- 22.19709,
- 58.53742
- ],
- [
- 22.19453,
- 58.5823
- ],
- [
- 22.45236,
- 58.58573
- ],
- [
- 22.44638,
- 58.7203
- ],
- [
- 22.36023,
- 58.71916
- ],
- [
- 22.35364,
- 58.85385
- ]
- ],
- [
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.29868,
- 59.26632
- ],
- [
- 23.29795,
- 59.31138
- ],
- [
- 23.47293,
- 59.31194
- ],
- [
- 23.47415,
- 59.26726
- ]
- ],
- [
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.25507,
- 58.19073
- ],
- [
- 24.25458,
- 58.14581
- ],
- [
- 24.17002,
- 58.14588
- ],
- [
- 24.17014,
- 58.1908
- ]
- ],
- [
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.08497,
- 58.10129
- ],
- [
- 23.99968,
- 58.10116
- ],
- [
- 23.99993,
- 58.05632
- ],
- [
- 23.91525,
- 58.05612
- ],
- [
- 23.915,
- 58.14613
- ],
- [
- 23.83032,
- 58.146
- ],
- [
- 23.82971,
- 58.23572
- ],
- [
- 23.91451,
- 58.23585
- ],
- [
- 23.91476,
- 58.19099
- ],
- [
- 24.08485,
- 58.19092
- ]
- ],
- [
- [
- 24.61854,
- 59.53612
- ],
- [
- 24.44183,
- 59.5368
- ],
- [
- 24.44309,
- 59.62659
- ],
- [
- 24.62016,
- 59.6258
- ],
- [
- 24.61854,
- 59.53612
- ]
- ],
- [
- [
- 26.40403,
- 59.7852
- ],
- [
- 26.31501,
- 59.78667
- ],
- [
- 26.31814,
- 59.83152
- ],
- [
- 26.40732,
- 59.82994
- ],
- [
- 26.40403,
- 59.7852
- ]
- ],
- [
- [
- 26.48308,
- 59.649
- ],
- [
- 26.48647,
- 59.69383
- ],
- [
- 26.57514,
- 59.69202
- ],
- [
- 26.57166,
- 59.64719
- ],
- [
- 26.48308,
- 59.649
- ]
- ],
- [
- [
- 23.15944,
- 57.78408
- ],
- [
- 23.24346,
- 57.78461
- ],
- [
- 23.24445,
- 57.73971
- ],
- [
- 23.32848,
- 57.74031
- ],
- [
- 23.32679,
- 57.82998
- ],
- [
- 23.15845,
- 57.82885
- ],
- [
- 23.15944,
- 57.78408
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maa-Ameti ortofoto"
- },
- "country_code": "EE",
- "id": "maaamet.ee-orto",
- "license_url": "http://svimik.com/Maa-amet_vastus_OSM.pdf",
- "max_zoom": 18,
- "min_zoom": 6,
- "name": "Estonia Ortho (Maaamet)",
- "type": "tms",
- "url": "https://tiles.maaamet.ee/tm/tms/1.0.0/foto@GMC/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -17.88463,
- 28.44606
- ],
- [
- -17.89395,
- 28.52255
- ],
- [
- -18.02125,
- 28.74819
- ],
- [
- -18.02241,
- 28.80384
- ],
- [
- -17.9424,
- 28.87261
- ],
- [
- -17.89118,
- 28.87371
- ],
- [
- -17.89033,
- 28.85151
- ],
- [
- -17.76759,
- 28.85378
- ],
- [
- -17.76698,
- 28.83122
- ],
- [
- -17.74127,
- 28.832
- ],
- [
- -17.73949,
- 28.76422
- ],
- [
- -17.71398,
- 28.76497
- ],
- [
- -17.71293,
- 28.73037
- ],
- [
- -17.75744,
- 28.69318
- ],
- [
- -17.75708,
- 28.67413
- ],
- [
- -17.74579,
- 28.67435
- ],
- [
- -17.74573,
- 28.61656
- ],
- [
- -17.75197,
- 28.58337
- ],
- [
- -17.76225,
- 28.5592
- ],
- [
- -17.78331,
- 28.54167
- ],
- [
- -17.78316,
- 28.49366
- ],
- [
- -17.80861,
- 28.4925
- ],
- [
- -17.80601,
- 28.4469
- ],
- [
- -17.88463,
- 28.44606
- ]
- ],
- [
- [
- -18.1661,
- 27.78516
- ],
- [
- -18.16349,
- 27.69492
- ],
- [
- -18.08898,
- 27.69634
- ],
- [
- -18.08734,
- 27.67387
- ],
- [
- -18.03641,
- 27.67537
- ],
- [
- -18.03501,
- 27.63026
- ],
- [
- -17.959,
- 27.6324
- ],
- [
- -17.86033,
- 27.7926
- ],
- [
- -17.86303,
- 27.83688
- ],
- [
- -17.8884,
- 27.83649
- ],
- [
- -17.88913,
- 27.85905
- ],
- [
- -17.99065,
- 27.85675
- ],
- [
- -18.03868,
- 27.76558
- ],
- [
- -18.11464,
- 27.76379
- ],
- [
- -18.11546,
- 27.78636
- ],
- [
- -18.1661,
- 27.78516
- ]
- ],
- [
- [
- -17.36038,
- 28.06398
- ],
- [
- -17.36297,
- 28.17572
- ],
- [
- -17.33756,
- 28.17637
- ],
- [
- -17.33846,
- 28.2213
- ],
- [
- -17.18579,
- 28.22388
- ],
- [
- -17.08208,
- 28.13518
- ],
- [
- -17.08084,
- 28.068
- ],
- [
- -17.13154,
- 28.06681
- ],
- [
- -17.15633,
- 28.02146
- ],
- [
- -17.23211,
- 28.02037
- ],
- [
- -17.23199,
- 27.99804
- ],
- [
- -17.25768,
- 27.99784
- ],
- [
- -17.25785,
- 28.01997
- ],
- [
- -17.30867,
- 28.01923
- ],
- [
- -17.36038,
- 28.06398
- ]
- ],
- [
- [
- -16.92782,
- 28.32758
- ],
- [
- -16.92866,
- 28.37219
- ],
- [
- -16.87767,
- 28.37293
- ],
- [
- -16.87807,
- 28.39542
- ],
- [
- -16.52143,
- 28.42261
- ],
- [
- -16.44571,
- 28.49113
- ],
- [
- -16.44625,
- 28.53597
- ],
- [
- -16.42059,
- 28.53627
- ],
- [
- -16.42092,
- 28.55884
- ],
- [
- -16.34433,
- 28.55976
- ],
- [
- -16.3446,
- 28.58221
- ],
- [
- -16.19125,
- 28.58372
- ],
- [
- -16.19162,
- 28.60684
- ],
- [
- -16.12793,
- 28.60782
- ],
- [
- -16.1278,
- 28.59218
- ],
- [
- -16.09951,
- 28.5925
- ],
- [
- -16.09934,
- 28.51638
- ],
- [
- -16.16481,
- 28.51612
- ],
- [
- -16.16475,
- 28.49386
- ],
- [
- -16.23858,
- 28.44847
- ],
- [
- -16.26535,
- 28.44761
- ],
- [
- -16.26586,
- 28.403
- ],
- [
- -16.31675,
- 28.40176
- ],
- [
- -16.31631,
- 28.38019
- ],
- [
- -16.34208,
- 28.37951
- ],
- [
- -16.34083,
- 28.2893
- ],
- [
- -16.41584,
- 28.19761
- ],
- [
- -16.4151,
- 28.13113
- ],
- [
- -16.51533,
- 28.01648
- ],
- [
- -16.61684,
- 28.01532
- ],
- [
- -16.61681,
- 27.99305
- ],
- [
- -16.71842,
- 27.99192
- ],
- [
- -16.7191,
- 28.03714
- ],
- [
- -16.7447,
- 28.03679
- ],
- [
- -16.74534,
- 28.08181
- ],
- [
- -16.7707,
- 28.08161
- ],
- [
- -16.8224,
- 28.1259
- ],
- [
- -16.82317,
- 28.17087
- ],
- [
- -16.8487,
- 28.17075
- ],
- [
- -16.85028,
- 28.26079
- ],
- [
- -16.87565,
- 28.26055
- ],
- [
- -16.87608,
- 28.28322
- ],
- [
- -16.90151,
- 28.28277
- ],
- [
- -16.90239,
- 28.32793
- ],
- [
- -16.92782,
- 28.32758
- ]
- ],
- [
- [
- -15.85374,
- 27.90089
- ],
- [
- -15.8542,
- 27.99018
- ],
- [
- -15.82895,
- 27.99066
- ],
- [
- -15.82911,
- 28.03558
- ],
- [
- -15.7783,
- 28.03632
- ],
- [
- -15.75328,
- 28.08143
- ],
- [
- -15.72788,
- 28.08157
- ],
- [
- -15.72826,
- 28.17186
- ],
- [
- -15.49897,
- 28.1728
- ],
- [
- -15.49874,
- 28.15041
- ],
- [
- -15.44978,
- 28.15075
- ],
- [
- -15.45016,
- 28.19614
- ],
- [
- -15.39728,
- 28.19614
- ],
- [
- -15.39644,
- 28.03836
- ],
- [
- -15.37103,
- 28.03802
- ],
- [
- -15.37065,
- 28.01532
- ],
- [
- -15.34578,
- 28.01532
- ],
- [
- -15.34548,
- 27.92544
- ],
- [
- -15.3708,
- 27.92524
- ],
- [
- -15.37057,
- 27.83521
- ],
- [
- -15.39598,
- 27.83474
- ],
- [
- -15.421,
- 27.78797
- ],
- [
- -15.47181,
- 27.78939
- ],
- [
- -15.47188,
- 27.76665
- ],
- [
- -15.52277,
- 27.76678
- ],
- [
- -15.54771,
- 27.72161
- ],
- [
- -15.62361,
- 27.72134
- ],
- [
- -15.62415,
- 27.74199
- ],
- [
- -15.70075,
- 27.74335
- ],
- [
- -15.80167,
- 27.81105
- ],
- [
- -15.85374,
- 27.90089
- ]
- ],
- [
- [
- -14.52156,
- 28.04678
- ],
- [
- -14.52244,
- 28.11841
- ],
- [
- -14.41575,
- 28.11561
- ],
- [
- -14.21688,
- 28.22788
- ],
- [
- -14.21537,
- 28.33903
- ],
- [
- -14.16417,
- 28.45283
- ],
- [
- -14.11151,
- 28.4748
- ],
- [
- -14.03358,
- 28.72267
- ],
- [
- -13.95652,
- 28.74494
- ],
- [
- -13.95617,
- 28.76659
- ],
- [
- -13.82902,
- 28.76643
- ],
- [
- -13.82896,
- 28.78798
- ],
- [
- -13.80007,
- 28.78793
- ],
- [
- -13.8013,
- 28.71899
- ],
- [
- -13.82757,
- 28.71935
- ],
- [
- -13.82786,
- 28.6518
- ],
- [
- -13.80258,
- 28.6519
- ],
- [
- -13.80339,
- 28.53842
- ],
- [
- -13.82885,
- 28.53847
- ],
- [
- -13.83151,
- 28.39702
- ],
- [
- -13.91582,
- 28.22414
- ],
- [
- -13.98564,
- 28.22357
- ],
- [
- -14.03696,
- 28.17958
- ],
- [
- -14.13871,
- 28.17999
- ],
- [
- -14.13866,
- 28.15791
- ],
- [
- -14.21537,
- 28.15781
- ],
- [
- -14.21472,
- 28.11189
- ],
- [
- -14.29132,
- 28.04524
- ],
- [
- -14.33197,
- 28.03687
- ],
- [
- -14.44578,
- 28.04698
- ],
- [
- -14.44666,
- 28.0658
- ],
- [
- -14.49628,
- 28.06826
- ],
- [
- -14.49593,
- 28.04585
- ],
- [
- -14.52156,
- 28.04678
- ]
- ],
- [
- [
- -13.80066,
- 28.84566
- ],
- [
- -13.80093,
- 28.82311
- ],
- [
- -13.77569,
- 28.82305
- ],
- [
- -13.69729,
- 28.88982
- ],
- [
- -13.69729,
- 28.91277
- ],
- [
- -13.60725,
- 28.9118
- ],
- [
- -13.43886,
- 29.00024
- ],
- [
- -13.43746,
- 29.13513
- ],
- [
- -13.4117,
- 29.13499
- ],
- [
- -13.41056,
- 29.22298
- ],
- [
- -13.45928,
- 29.25559
- ],
- [
- -13.45974,
- 29.2942
- ],
- [
- -13.50913,
- 29.29456
- ],
- [
- -13.51006,
- 29.31635
- ],
- [
- -13.56354,
- 29.31729
- ],
- [
- -13.56406,
- 29.27138
- ],
- [
- -13.53892,
- 29.2712
- ],
- [
- -13.53897,
- 29.25004
- ],
- [
- -13.56613,
- 29.25013
- ],
- [
- -13.5666,
- 29.203
- ],
- [
- -13.51565,
- 29.20223
- ],
- [
- -13.51565,
- 29.18206
- ],
- [
- -13.5398,
- 29.18278
- ],
- [
- -13.54089,
- 29.13753
- ],
- [
- -13.65782,
- 29.13685
- ],
- [
- -13.71322,
- 29.09351
- ],
- [
- -13.76634,
- 29.09345
- ],
- [
- -13.85025,
- 29.01659
- ],
- [
- -13.85182,
- 28.98343
- ],
- [
- -13.85244,
- 28.91486
- ],
- [
- -13.90131,
- 28.89245
- ],
- [
- -13.9024,
- 28.84698
- ],
- [
- -13.80066,
- 28.84566
- ]
- ],
- [
- [
- 1.64799,
- 38.99907
- ],
- [
- 1.73217,
- 38.99936
- ],
- [
- 1.73147,
- 39.04417
- ],
- [
- 1.64895,
- 39.04319
- ],
- [
- 1.64816,
- 39.12764
- ],
- [
- 1.39486,
- 39.12657
- ],
- [
- 1.39544,
- 39.08642
- ],
- [
- 1.22811,
- 39.08526
- ],
- [
- 1.22911,
- 39.0029
- ],
- [
- 1.14487,
- 39.0018
- ],
- [
- 1.14528,
- 38.832
- ],
- [
- 1.31136,
- 38.83316
- ],
- [
- 1.31219,
- 38.79065
- ],
- [
- 1.39469,
- 38.79162
- ],
- [
- 1.39519,
- 38.75296
- ],
- [
- 1.31128,
- 38.75193
- ],
- [
- 1.31259,
- 38.62388
- ],
- [
- 1.6489,
- 38.62511
- ],
- [
- 1.64807,
- 38.71115
- ],
- [
- 1.58456,
- 38.71012
- ],
- [
- 1.58116,
- 38.70054
- ],
- [
- 1.54915,
- 38.70028
- ],
- [
- 1.51972,
- 38.70921
- ],
- [
- 1.50355,
- 38.72532
- ],
- [
- 1.48133,
- 38.91551
- ],
- [
- 1.55189,
- 38.92544
- ],
- [
- 1.56673,
- 38.95666
- ],
- [
- 1.64874,
- 38.95833
- ],
- [
- 1.64799,
- 38.99907
- ]
- ],
- [
- [
- 2.54507,
- 39.41667
- ],
- [
- 2.43933,
- 39.41611
- ],
- [
- 2.43871,
- 39.48469
- ],
- [
- 2.43902,
- 39.49934
- ],
- [
- 2.31223,
- 39.49934
- ],
- [
- 2.31192,
- 39.54179
- ],
- [
- 2.22907,
- 39.541
- ],
- [
- 2.22835,
- 39.62606
- ],
- [
- 2.34601,
- 39.62709
- ],
- [
- 2.92704,
- 39.96016
- ],
- [
- 3.14566,
- 39.96005
- ],
- [
- 3.14608,
- 40.00198
- ],
- [
- 3.23139,
- 40.00198
- ],
- [
- 3.23129,
- 39.83292
- ],
- [
- 3.14823,
- 39.83316
- ],
- [
- 3.14844,
- 39.79357
- ],
- [
- 3.48148,
- 39.79318
- ],
- [
- 3.48035,
- 39.5959
- ],
- [
- 3.31506,
- 39.47846
- ],
- [
- 3.31462,
- 39.37855
- ],
- [
- 3.08302,
- 39.24994
- ],
- [
- 2.97986,
- 39.25015
- ],
- [
- 2.97904,
- 39.3335
- ],
- [
- 2.72874,
- 39.33342
- ],
- [
- 2.72885,
- 39.45814
- ],
- [
- 2.64569,
- 39.45774
- ],
- [
- 2.64538,
- 39.49966
- ],
- [
- 2.54528,
- 39.49942
- ],
- [
- 2.54507,
- 39.41667
- ]
- ],
- [
- [
- 3.81204,
- 40.04344
- ],
- [
- 3.72908,
- 40.0438
- ],
- [
- 3.72862,
- 39.95842
- ],
- [
- 3.81266,
- 39.9576
- ],
- [
- 3.81228,
- 39.91644
- ],
- [
- 3.9609,
- 39.91598
- ],
- [
- 4.19381,
- 39.79131
- ],
- [
- 4.31503,
- 39.79058
- ],
- [
- 4.31599,
- 39.83293
- ],
- [
- 4.39874,
- 39.83204
- ],
- [
- 4.39737,
- 39.91858
- ],
- [
- 4.3158,
- 39.91933
- ],
- [
- 4.31619,
- 40.0434
- ],
- [
- 4.2319,
- 40.04436
- ],
- [
- 4.23248,
- 40.08478
- ],
- [
- 4.14915,
- 40.08611
- ],
- [
- 4.14906,
- 40.12552
- ],
- [
- 4.0628,
- 40.12722
- ],
- [
- 4.06242,
- 40.08499
- ],
- [
- 3.81287,
- 40.08529
- ],
- [
- 3.81204,
- 40.04344
- ]
- ],
- [
- [
- -8.89106,
- 41.82289
- ],
- [
- -9.1092,
- 42.57511
- ],
- [
- -9.03655,
- 42.73066
- ],
- [
- -9.08834,
- 42.72696
- ],
- [
- -9.14661,
- 42.77503
- ],
- [
- -9.21855,
- 42.90163
- ],
- [
- -9.2761,
- 42.86051
- ],
- [
- -9.30991,
- 42.93113
- ],
- [
- -9.27898,
- 42.9822
- ],
- [
- -9.30991,
- 43.06004
- ],
- [
- -9.25236,
- 43.10417
- ],
- [
- -9.2315,
- 43.17032
- ],
- [
- -9.14733,
- 43.21018
- ],
- [
- -9.06748,
- 43.19916
- ],
- [
- -9.03367,
- 43.24267
- ],
- [
- -8.99842,
- 43.24477
- ],
- [
- -8.99986,
- 43.29558
- ],
- [
- -8.93727,
- 43.30553
- ],
- [
- -8.92936,
- 43.32699
- ],
- [
- -8.8639,
- 43.32908
- ],
- [
- -8.87613,
- 43.37407
- ],
- [
- -8.82217,
- 43.37354
- ],
- [
- -8.78548,
- 43.31914
- ],
- [
- -8.70635,
- 43.305
- ],
- [
- -8.60996,
- 43.3296
- ],
- [
- -8.55097,
- 43.32332
- ],
- [
- -8.52435,
- 43.3364
- ],
- [
- -8.52507,
- 43.36465
- ],
- [
- -8.45745,
- 43.39184
- ],
- [
- -8.36105,
- 43.41118
- ],
- [
- -8.36033,
- 43.46342
- ],
- [
- -8.33444,
- 43.57974
- ],
- [
- -8.27761,
- 43.57088
- ],
- [
- -8.06467,
- 43.72392
- ],
- [
- -7.99921,
- 43.7234
- ],
- [
- -7.9172,
- 43.78264
- ],
- [
- -7.85605,
- 43.79146
- ],
- [
- -7.83591,
- 43.73743
- ],
- [
- -7.66284,
- 43.80982
- ],
- [
- -7.31889,
- 43.67827
- ],
- [
- -7.19975,
- 43.58308
- ],
- [
- -6.24882,
- 43.6075
- ],
- [
- -6.12293,
- 43.57901
- ],
- [
- -5.85204,
- 43.6799
- ],
- [
- -5.60363,
- 43.57087
- ],
- [
- -5.28553,
- 43.56191
- ],
- [
- -5.17875,
- 43.49916
- ],
- [
- -4.90899,
- 43.48367
- ],
- [
- -4.61562,
- 43.4192
- ],
- [
- -4.18399,
- 43.42492
- ],
- [
- -3.80295,
- 43.51954
- ],
- [
- -3.74,
- 43.48693
- ],
- [
- -3.56128,
- 43.54236
- ],
- [
- -3.1083,
- 43.38163
- ],
- [
- -2.93857,
- 43.46246
- ],
- [
- -2.74524,
- 43.47551
- ],
- [
- -2.30462,
- 43.31706
- ],
- [
- -1.9854,
- 43.3563
- ],
- [
- -1.85528,
- 43.39725
- ],
- [
- -1.7698,
- 43.39644
- ],
- [
- -1.77005,
- 43.37605
- ],
- [
- -1.71005,
- 43.37569
- ],
- [
- -1.71135,
- 43.33125
- ],
- [
- -1.72259,
- 43.31318
- ],
- [
- -1.68904,
- 43.31291
- ],
- [
- -1.68811,
- 43.33413
- ],
- [
- -1.64467,
- 43.33372
- ],
- [
- -1.64498,
- 43.31332
- ],
- [
- -1.60299,
- 43.31295
- ],
- [
- -1.60344,
- 43.29266
- ],
- [
- -1.56359,
- 43.29212
- ],
- [
- -1.56305,
- 43.31338
- ],
- [
- -1.47799,
- 43.31284
- ],
- [
- -1.36677,
- 43.27614
- ],
- [
- -1.35688,
- 43.23815
- ],
- [
- -1.37037,
- 43.1713
- ],
- [
- -1.44231,
- 43.08336
- ],
- [
- -1.41983,
- 43.06036
- ],
- [
- -1.37307,
- 43.05117
- ],
- [
- -1.36407,
- 43.11159
- ],
- [
- -1.30203,
- 43.13522
- ],
- [
- -1.23549,
- 43.13325
- ],
- [
- -1.27955,
- 43.07744
- ],
- [
- -1.19232,
- 43.06496
- ],
- [
- -1.00619,
- 43.00778
- ],
- [
- -0.94234,
- 42.9749
- ],
- [
- -0.7562,
- 42.98213
- ],
- [
- -0.71484,
- 42.96108
- ],
- [
- -0.69685,
- 42.90314
- ],
- [
- -0.55118,
- 42.82207
- ],
- [
- -0.50442,
- 42.84845
- ],
- [
- -0.42889,
- 42.82009
- ],
- [
- -0.31648,
- 42.86558
- ],
- [
- -0.14563,
- 42.81086
- ],
- [
- -0.03143,
- 42.71249
- ],
- [
- 0.18618,
- 42.7541
- ],
- [
- 0.30218,
- 42.71777
- ],
- [
- 0.36422,
- 42.74287
- ],
- [
- 0.44875,
- 42.71447
- ],
- [
- 0.62769,
- 42.7224
- ],
- [
- 0.64118,
- 42.85767
- ],
- [
- 0.71492,
- 42.88272
- ],
- [
- 0.9676,
- 42.81811
- ],
- [
- 1.10878,
- 42.79898
- ],
- [
- 1.17532,
- 42.73429
- ],
- [
- 1.36326,
- 42.74155
- ],
- [
- 1.41137,
- 42.70939
- ],
- [
- 1.48061,
- 42.71034
- ],
- [
- 1.4813,
- 42.50107
- ],
- [
- 1.64436,
- 42.50203
- ],
- [
- 1.64328,
- 42.54245
- ],
- [
- 1.73041,
- 42.54342
- ],
- [
- 1.73164,
- 42.50118
- ],
- [
- 2.06386,
- 42.50164
- ],
- [
- 2.06456,
- 42.45902
- ],
- [
- 2.39693,
- 42.45994
- ],
- [
- 2.39768,
- 42.41784
- ],
- [
- 2.48048,
- 42.41797
- ],
- [
- 2.48098,
- 42.37594
- ],
- [
- 2.64479,
- 42.37626
- ],
- [
- 2.64448,
- 42.45924
- ],
- [
- 2.81133,
- 42.45961
- ],
- [
- 2.81126,
- 42.50104
- ],
- [
- 3.06388,
- 42.50085
- ],
- [
- 3.06388,
- 42.45915
- ],
- [
- 3.23078,
- 42.45934
- ],
- [
- 3.23049,
- 42.37644
- ],
- [
- 3.31415,
- 42.37604
- ],
- [
- 3.31412,
- 42.33399
- ],
- [
- 3.39785,
- 42.33404
- ],
- [
- 3.39739,
- 42.29009
- ],
- [
- 3.31389,
- 42.29084
- ],
- [
- 3.31397,
- 42.20702
- ],
- [
- 3.14759,
- 42.2073
- ],
- [
- 3.14759,
- 42.12606
- ],
- [
- 3.23055,
- 42.126
- ],
- [
- 3.24668,
- 41.95294
- ],
- [
- 3.19452,
- 41.85589
- ],
- [
- 3.06054,
- 41.76474
- ],
- [
- 2.78358,
- 41.63718
- ],
- [
- 2.26293,
- 41.42716
- ],
- [
- 2.16492,
- 41.29893
- ],
- [
- 1.86008,
- 41.22322
- ],
- [
- 1.3763,
- 41.11627
- ],
- [
- 1.17937,
- 41.04646
- ],
- [
- 1.08585,
- 41.04849
- ],
- [
- 0.75854,
- 40.81956
- ],
- [
- 0.9114,
- 40.73376
- ],
- [
- 0.87813,
- 40.67514
- ],
- [
- 0.66502,
- 40.53587
- ],
- [
- 0.55801,
- 40.55022
- ],
- [
- 0.43392,
- 40.37576
- ],
- [
- 0.26756,
- 40.19192
- ],
- [
- 0.16415,
- 40.06472
- ],
- [
- 0.07513,
- 40.01447
- ],
- [
- 0.01039,
- 39.89522
- ],
- [
- -0.09392,
- 39.81169
- ],
- [
- -0.18474,
- 39.63117
- ],
- [
- -0.29085,
- 39.50363
- ],
- [
- -0.28636,
- 39.33343
- ],
- [
- -0.18564,
- 39.17746
- ],
- [
- -0.21352,
- 39.15585
- ],
- [
- -0.11101,
- 38.97222
- ],
- [
- 0.00949,
- 38.88268
- ],
- [
- 0.12189,
- 38.87218
- ],
- [
- 0.23429,
- 38.79864
- ],
- [
- 0.25587,
- 38.72642
- ],
- [
- 0.09581,
- 38.61338
- ],
- [
- -0.0022,
- 38.60706
- ],
- [
- -0.05705,
- 38.52691
- ],
- [
- -0.27197,
- 38.47624
- ],
- [
- -0.37987,
- 38.39312
- ],
- [
- -0.38347,
- 38.33813
- ],
- [
- -0.45091,
- 38.33108
- ],
- [
- -0.50487,
- 38.28309
- ],
- [
- -0.48238,
- 38.19481
- ],
- [
- -0.42933,
- 38.16583
- ],
- [
- -0.45451,
- 38.14886
- ],
- [
- -0.584,
- 38.17219
- ],
- [
- -0.61367,
- 38.11986
- ],
- [
- -0.63705,
- 37.96122
- ],
- [
- -0.68111,
- 37.94562
- ],
- [
- -0.73237,
- 37.88107
- ],
- [
- -0.72158,
- 37.78306
- ],
- [
- -0.68831,
- 37.734
- ],
- [
- -0.66415,
- 37.62315
- ],
- [
- -0.71939,
- 37.58784
- ],
- [
- -0.91963,
- 37.53758
- ],
- [
- -1.11071,
- 37.51641
- ],
- [
- -1.33832,
- 37.52867
- ],
- [
- -1.44089,
- 37.39037
- ],
- [
- -1.6767,
- 37.27652
- ],
- [
- -1.85408,
- 36.91229
- ],
- [
- -2.06835,
- 36.69291
- ],
- [
- -2.21588,
- 36.66192
- ],
- [
- -2.37219,
- 36.78018
- ],
- [
- -2.68129,
- 36.65911
- ],
- [
- -2.92015,
- 36.66756
- ],
- [
- -3.09402,
- 36.71263
- ],
- [
- -3.46108,
- 36.65488
- ],
- [
- -3.72804,
- 36.69291
- ],
- [
- -4.37435,
- 36.66333
- ],
- [
- -4.65712,
- 36.44042
- ],
- [
- -4.9188,
- 36.45313
- ],
- [
- -5.16995,
- 36.35135
- ],
- [
- -5.28411,
- 36.19702
- ],
- [
- -5.26809,
- 36.12418
- ],
- [
- -5.35248,
- 36.12247
- ],
- [
- -5.35161,
- 36.04014
- ],
- [
- -5.43658,
- 36.03889
- ],
- [
- -5.43532,
- 36.00344
- ],
- [
- -5.68886,
- 36.00365
- ],
- [
- -5.68996,
- 36.04053
- ],
- [
- -5.85506,
- 36.03856
- ],
- [
- -5.85668,
- 36.12421
- ],
- [
- -5.93848,
- 36.12215
- ],
- [
- -5.94003,
- 36.16556
- ],
- [
- -5.99834,
- 36.1645
- ],
- [
- -6.03573,
- 36.1781
- ],
- [
- -6.07752,
- 36.22241
- ],
- [
- -6.15061,
- 36.28646
- ],
- [
- -6.23154,
- 36.37701
- ],
- [
- -6.33585,
- 36.53106
- ],
- [
- -6.32146,
- 36.58163
- ],
- [
- -6.40419,
- 36.6235
- ],
- [
- -6.47433,
- 36.74897
- ],
- [
- -6.41588,
- 36.79939
- ],
- [
- -6.49052,
- 36.91738
- ],
- [
- -6.62989,
- 37.0194
- ],
- [
- -6.87448,
- 37.10838
- ],
- [
- -7.04264,
- 37.18507
- ],
- [
- -7.26474,
- 37.18435
- ],
- [
- -7.37535,
- 37.15354
- ],
- [
- -7.40832,
- 37.16822
- ],
- [
- -7.42029,
- 37.21183
- ],
- [
- -7.42492,
- 37.23505
- ],
- [
- -7.43805,
- 37.2452
- ],
- [
- -7.44597,
- 37.33261
- ],
- [
- -7.4481,
- 37.39094
- ],
- [
- -7.46963,
- 37.40758
- ],
- [
- -7.4647,
- 37.45305
- ],
- [
- -7.50197,
- 37.51641
- ],
- [
- -7.51916,
- 37.52292
- ],
- [
- -7.52196,
- 37.57237
- ],
- [
- -7.45013,
- 37.66958
- ],
- [
- -7.4249,
- 37.75992
- ],
- [
- -7.31666,
- 37.83997
- ],
- [
- -7.26833,
- 37.98895
- ],
- [
- -7.15368,
- 38.01552
- ],
- [
- -7.11771,
- 38.05536
- ],
- [
- -7.0143,
- 38.02438
- ],
- [
- -6.99632,
- 38.10756
- ],
- [
- -6.96147,
- 38.20125
- ],
- [
- -7.08062,
- 38.15708
- ],
- [
- -7.34027,
- 38.44024
- ],
- [
- -7.26383,
- 38.73807
- ],
- [
- -7.04352,
- 38.87297
- ],
- [
- -7.06151,
- 38.90796
- ],
- [
- -6.96934,
- 39.01983
- ],
- [
- -7.00081,
- 39.08879
- ],
- [
- -7.15368,
- 39.09577
- ],
- [
- -7.15255,
- 39.16029
- ],
- [
- -7.24472,
- 39.19689
- ],
- [
- -7.25596,
- 39.28133
- ],
- [
- -7.33689,
- 39.35351
- ],
- [
- -7.3279,
- 39.45599
- ],
- [
- -7.51449,
- 39.58865
- ],
- [
- -7.55271,
- 39.67954
- ],
- [
- -7.05027,
- 39.67522
- ],
- [
- -6.99519,
- 39.81954
- ],
- [
- -6.92213,
- 39.87909
- ],
- [
- -6.88616,
- 40.02299
- ],
- [
- -7.04128,
- 40.13479
- ],
- [
- -7.01767,
- 40.26615
- ],
- [
- -6.8086,
- 40.34501
- ],
- [
- -6.86818,
- 40.44516
- ],
- [
- -6.85356,
- 40.60664
- ],
- [
- -6.83783,
- 40.87576
- ],
- [
- -6.9536,
- 41.03704
- ],
- [
- -6.80186,
- 41.03959
- ],
- [
- -6.76814,
- 41.13871
- ],
- [
- -6.64112,
- 41.26556
- ],
- [
- -6.56244,
- 41.26303
- ],
- [
- -6.21737,
- 41.5791
- ],
- [
- -6.31628,
- 41.64465
- ],
- [
- -6.51523,
- 41.64129
- ],
- [
- -6.58717,
- 41.68832
- ],
- [
- -6.54783,
- 41.85597
- ],
- [
- -6.62988,
- 41.91121
- ],
- [
- -7.13345,
- 41.94048
- ],
- [
- -7.16829,
- 41.87188
- ],
- [
- -7.42569,
- 41.78477
- ],
- [
- -7.95398,
- 41.84593
- ],
- [
- -8.13045,
- 41.78058
- ],
- [
- -8.25185,
- 41.90786
- ],
- [
- -8.12933,
- 42.03488
- ],
- [
- -8.24848,
- 42.1008
- ],
- [
- -8.36762,
- 42.05575
- ],
- [
- -8.60704,
- 42.03405
- ],
- [
- -8.89106,
- 41.82289
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4230",
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:32627",
- "EPSG:32628",
- "EPSG:23029",
- "EPSG:23030",
- "EPSG:23031",
- "EPSG:32629",
- "EPSG:32630",
- "EPSG:32631",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:3857"
- ],
- "country_code": "ES",
- "id": "Catastro-Spain",
- "name": "Catastro Spain",
- "type": "wms",
- "url": "https://ovc.catastro.meh.es/Cartografia/WMS/ServidorWMS.aspx?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Catastro&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -17.92917,
- 28.89106
- ],
- [
- -18.03334,
- 28.79981
- ],
- [
- -18.03743,
- 28.73178
- ],
- [
- -17.87811,
- 28.43224
- ],
- [
- -17.83113,
- 28.41787
- ],
- [
- -17.72696,
- 28.56328
- ],
- [
- -17.73105,
- 28.67982
- ],
- [
- -17.68407,
- 28.73715
- ],
- [
- -17.75352,
- 28.86781
- ],
- [
- -17.85768,
- 28.86065
- ],
- [
- -17.92917,
- 28.89106
- ]
- ],
- [
- [
- -18.07818,
- 27.77211
- ],
- [
- -18.13707,
- 27.78751
- ],
- [
- -18.17054,
- 27.76441
- ],
- [
- -18.1779,
- 27.70695
- ],
- [
- -18.15782,
- 27.68799
- ],
- [
- -18.0581,
- 27.6791
- ],
- [
- -18.00656,
- 27.62574
- ],
- [
- -17.96105,
- 27.62218
- ],
- [
- -17.93896,
- 27.70814
- ],
- [
- -17.90751,
- 27.7194
- ],
- [
- -17.86199,
- 27.80468
- ],
- [
- -17.8727,
- 27.84079
- ],
- [
- -17.92558,
- 27.86801
- ],
- [
- -18.00522,
- 27.83605
- ],
- [
- -18.01392,
- 27.8035
- ],
- [
- -18.07818,
- 27.77211
- ]
- ],
- [
- [
- -17.26878,
- 28.23996
- ],
- [
- -17.33403,
- 28.21933
- ],
- [
- -17.36331,
- 28.1537
- ],
- [
- -17.36666,
- 28.08803
- ],
- [
- -17.33069,
- 28.04742
- ],
- [
- -17.27296,
- 28.00681
- ],
- [
- -17.20017,
- 28.00533
- ],
- [
- -17.14412,
- 28.02896
- ],
- [
- -17.07803,
- 28.0836
- ],
- [
- -17.08723,
- 28.1537
- ],
- [
- -17.1826,
- 28.2149
- ],
- [
- -17.26878,
- 28.23996
- ]
- ],
- [
- [
- -16.9358,
- 28.37623
- ],
- [
- -16.945,
- 28.33574
- ],
- [
- -16.71995,
- 27.98317
- ],
- [
- -16.62541,
- 27.98317
- ],
- [
- -16.52753,
- 28.01641
- ],
- [
- -16.39953,
- 28.14632
- ],
- [
- -16.33594,
- 28.30922
- ],
- [
- -16.33009,
- 28.36445
- ],
- [
- -16.10253,
- 28.52408
- ],
- [
- -16.09834,
- 28.5814
- ],
- [
- -16.14268,
- 28.62547
- ],
- [
- -16.33929,
- 28.59609
- ],
- [
- -16.43801,
- 28.53143
- ],
- [
- -16.53924,
- 28.44025
- ],
- [
- -16.83959,
- 28.41229
- ],
- [
- -16.9358,
- 28.37623
- ]
- ],
- [
- [
- -15.68833,
- 28.20585
- ],
- [
- -15.47395,
- 28.16437
- ],
- [
- -15.42427,
- 28.21046
- ],
- [
- -15.36283,
- 28.17244
- ],
- [
- -15.38375,
- 28.05598
- ],
- [
- -15.33146,
- 27.98444
- ],
- [
- -15.3576,
- 27.8042
- ],
- [
- -15.5916,
- 27.69777
- ],
- [
- -15.7001,
- 27.73365
- ],
- [
- -15.79944,
- 27.80305
- ],
- [
- -15.87134,
- 27.92439
- ],
- [
- -15.84781,
- 28.03637
- ],
- [
- -15.74716,
- 28.08943
- ],
- [
- -15.73147,
- 28.18396
- ],
- [
- -15.68833,
- 28.20585
- ]
- ],
- [
- [
- -14.50882,
- 28.13448
- ],
- [
- -14.41078,
- 28.13448
- ],
- [
- -14.24868,
- 28.24278
- ],
- [
- -14.23822,
- 28.34637
- ],
- [
- -14.03953,
- 28.73911
- ],
- [
- -13.89442,
- 28.78265
- ],
- [
- -13.78592,
- 28.77692
- ],
- [
- -13.82122,
- 28.38433
- ],
- [
- -13.91534,
- 28.19095
- ],
- [
- -14.18593,
- 28.13563
- ],
- [
- -14.30881,
- 28.00529
- ],
- [
- -14.54019,
- 28.05144
- ],
- [
- -14.50882,
- 28.13448
- ]
- ],
- [
- [
- -13.5525,
- 29.37727
- ],
- [
- -13.50868,
- 29.36824
- ],
- [
- -13.47955,
- 29.38728
- ],
- [
- -13.47543,
- 29.40963
- ],
- [
- -13.5003,
- 29.42807
- ],
- [
- -13.5505,
- 29.40712
- ],
- [
- -13.5525,
- 29.37727
- ]
- ],
- [
- [
- -13.3976,
- 29.16102
- ],
- [
- -13.42814,
- 29.12157
- ],
- [
- -13.44174,
- 28.99084
- ],
- [
- -13.53899,
- 28.91947
- ],
- [
- -13.70841,
- 28.88468
- ],
- [
- -13.77116,
- 28.80865
- ],
- [
- -13.90083,
- 28.83522
- ],
- [
- -13.90711,
- 28.88926
- ],
- [
- -13.85796,
- 28.93686
- ],
- [
- -13.85691,
- 29.03657
- ],
- [
- -13.67599,
- 29.14988
- ],
- [
- -13.56723,
- 29.15719
- ],
- [
- -13.55428,
- 29.35073
- ],
- [
- -13.39988,
- 29.21806
- ],
- [
- -13.3976,
- 29.16102
- ]
- ],
- [
- [
- -13.33792,
- 29.28667
- ],
- [
- -13.35035,
- 29.27436
- ],
- [
- -13.3386,
- 29.26533
- ],
- [
- -13.32617,
- 29.27765
- ],
- [
- -13.33792,
- 29.28667
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "GRAFCAN OrtoExpress Urbana",
- "url": "https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOURBANAWMS_20160101"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:32628",
- "EPSG:32627"
- ],
- "best": true,
- "country_code": "ES",
- "description": "High resolution imagery covering the Canary Islands, 12.5 or 10 cm/pixel in urban areas, and 20 cm/pixel elsewhere. Older in some urban areas than the lower-resolution \"GRAFCAN OrtoExpress\".",
- "id": "GRAFCAN-Canary_Islands",
- "name": "GRAFCAN OrtoExpress Urbana - Canary Islands",
- "type": "wms",
- "url": "https://idecan1.grafcan.es/ServicioWMS/OrtoUrb?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OU&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -17.92917,
- 28.89106
- ],
- [
- -18.03334,
- 28.79981
- ],
- [
- -18.03743,
- 28.73178
- ],
- [
- -17.87811,
- 28.43224
- ],
- [
- -17.83113,
- 28.41787
- ],
- [
- -17.72696,
- 28.56328
- ],
- [
- -17.73105,
- 28.67982
- ],
- [
- -17.68407,
- 28.73715
- ],
- [
- -17.75352,
- 28.86781
- ],
- [
- -17.85768,
- 28.86065
- ],
- [
- -17.92917,
- 28.89106
- ]
- ],
- [
- [
- -18.07818,
- 27.77211
- ],
- [
- -18.13707,
- 27.78751
- ],
- [
- -18.17054,
- 27.76441
- ],
- [
- -18.1779,
- 27.70695
- ],
- [
- -18.15782,
- 27.68799
- ],
- [
- -18.0581,
- 27.6791
- ],
- [
- -18.00656,
- 27.62574
- ],
- [
- -17.96105,
- 27.62218
- ],
- [
- -17.93896,
- 27.70814
- ],
- [
- -17.90751,
- 27.7194
- ],
- [
- -17.86199,
- 27.80468
- ],
- [
- -17.8727,
- 27.84079
- ],
- [
- -17.92558,
- 27.86801
- ],
- [
- -18.00522,
- 27.83605
- ],
- [
- -18.01392,
- 27.8035
- ],
- [
- -18.07818,
- 27.77211
- ]
- ],
- [
- [
- -17.26878,
- 28.23996
- ],
- [
- -17.33403,
- 28.21933
- ],
- [
- -17.36331,
- 28.1537
- ],
- [
- -17.36666,
- 28.08803
- ],
- [
- -17.33069,
- 28.04742
- ],
- [
- -17.27296,
- 28.00681
- ],
- [
- -17.20017,
- 28.00533
- ],
- [
- -17.14412,
- 28.02896
- ],
- [
- -17.07803,
- 28.0836
- ],
- [
- -17.08723,
- 28.1537
- ],
- [
- -17.1826,
- 28.2149
- ],
- [
- -17.26878,
- 28.23996
- ]
- ],
- [
- [
- -16.9358,
- 28.37623
- ],
- [
- -16.945,
- 28.33574
- ],
- [
- -16.71995,
- 27.98317
- ],
- [
- -16.62541,
- 27.98317
- ],
- [
- -16.52753,
- 28.01641
- ],
- [
- -16.39953,
- 28.14632
- ],
- [
- -16.33594,
- 28.30922
- ],
- [
- -16.33009,
- 28.36445
- ],
- [
- -16.10253,
- 28.52408
- ],
- [
- -16.09834,
- 28.5814
- ],
- [
- -16.14268,
- 28.62547
- ],
- [
- -16.33929,
- 28.59609
- ],
- [
- -16.43801,
- 28.53143
- ],
- [
- -16.53924,
- 28.44025
- ],
- [
- -16.83959,
- 28.41229
- ],
- [
- -16.9358,
- 28.37623
- ]
- ],
- [
- [
- -15.68833,
- 28.20585
- ],
- [
- -15.47395,
- 28.16437
- ],
- [
- -15.42427,
- 28.21046
- ],
- [
- -15.36283,
- 28.17244
- ],
- [
- -15.38375,
- 28.05598
- ],
- [
- -15.33146,
- 27.98444
- ],
- [
- -15.3576,
- 27.8042
- ],
- [
- -15.5916,
- 27.69777
- ],
- [
- -15.7001,
- 27.73365
- ],
- [
- -15.79944,
- 27.80305
- ],
- [
- -15.87134,
- 27.92439
- ],
- [
- -15.84781,
- 28.03637
- ],
- [
- -15.74716,
- 28.08943
- ],
- [
- -15.73147,
- 28.18396
- ],
- [
- -15.68833,
- 28.20585
- ]
- ],
- [
- [
- -14.50882,
- 28.13448
- ],
- [
- -14.41078,
- 28.13448
- ],
- [
- -14.24868,
- 28.24278
- ],
- [
- -14.23822,
- 28.34637
- ],
- [
- -14.03953,
- 28.73911
- ],
- [
- -13.89442,
- 28.78265
- ],
- [
- -13.78592,
- 28.77692
- ],
- [
- -13.82122,
- 28.38433
- ],
- [
- -13.91534,
- 28.19095
- ],
- [
- -14.18593,
- 28.13563
- ],
- [
- -14.30881,
- 28.00529
- ],
- [
- -14.54019,
- 28.05144
- ],
- [
- -14.50882,
- 28.13448
- ]
- ],
- [
- [
- -13.5525,
- 29.37727
- ],
- [
- -13.50868,
- 29.36824
- ],
- [
- -13.47955,
- 29.38728
- ],
- [
- -13.47543,
- 29.40963
- ],
- [
- -13.5003,
- 29.42807
- ],
- [
- -13.5505,
- 29.40712
- ],
- [
- -13.5525,
- 29.37727
- ]
- ],
- [
- [
- -13.3976,
- 29.16102
- ],
- [
- -13.42814,
- 29.12157
- ],
- [
- -13.44174,
- 28.99084
- ],
- [
- -13.53899,
- 28.91947
- ],
- [
- -13.70841,
- 28.88468
- ],
- [
- -13.77116,
- 28.80865
- ],
- [
- -13.90083,
- 28.83522
- ],
- [
- -13.90711,
- 28.88926
- ],
- [
- -13.85796,
- 28.93686
- ],
- [
- -13.85691,
- 29.03657
- ],
- [
- -13.67599,
- 29.14988
- ],
- [
- -13.56723,
- 29.15719
- ],
- [
- -13.55428,
- 29.35073
- ],
- [
- -13.39988,
- 29.21806
- ],
- [
- -13.3976,
- 29.16102
- ]
- ],
- [
- [
- -13.33792,
- 29.28667
- ],
- [
- -13.35035,
- 29.27436
- ],
- [
- -13.3386,
- 29.26533
- ],
- [
- -13.32617,
- 29.27765
- ],
- [
- -13.33792,
- 29.28667
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "GRAFCAN OrtoExpress",
- "url": "https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOWMS_20160101"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:32628",
- "EPSG:32627"
- ],
- "country_code": "ES",
- "description": "High resolution imagery covering the Canary Islands, 20 cm/pixel. More recent in some urban areas than the higher-resolution \"GRAFCAN OrtoExpress Urbana\".",
- "id": "GRAFCAN_Express-Canary_Islands",
- "name": "GRAFCAN OrtoExpress - Canary Islands",
- "type": "wms",
- "url": "https://idecan1.grafcan.es/ServicioWMS/OrtoExpress?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=ortoexpress&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -1.9358,
- 41.43834
- ],
- [
- -1.89601,
- 41.43869
- ],
- [
- -1.89536,
- 41.39687
- ],
- [
- -1.9767,
- 41.39616
- ],
- [
- -1.97639,
- 41.37623
- ],
- [
- -2.06201,
- 41.37548
- ],
- [
- -2.06262,
- 41.41471
- ],
- [
- -2.10458,
- 41.41434
- ],
- [
- -2.10363,
- 41.35367
- ],
- [
- -2.14448,
- 41.35331
- ],
- [
- -2.1419,
- 41.18683
- ],
- [
- -2.06204,
- 41.18753
- ],
- [
- -2.06171,
- 41.16624
- ],
- [
- -2.02046,
- 41.16661
- ],
- [
- -2.01887,
- 41.06334
- ],
- [
- -2.10083,
- 41.06262
- ],
- [
- -2.10114,
- 41.08296
- ],
- [
- -2.22733,
- 41.08185
- ],
- [
- -2.22704,
- 41.0635
- ],
- [
- -2.26912,
- 41.06313
- ],
- [
- -2.2688,
- 41.04257
- ],
- [
- -2.35325,
- 41.04182
- ],
- [
- -2.35356,
- 41.06148
- ],
- [
- -2.39487,
- 41.06112
- ],
- [
- -2.39457,
- 41.04206
- ],
- [
- -2.43722,
- 41.04168
- ],
- [
- -2.43756,
- 41.06315
- ],
- [
- -2.47928,
- 41.06278
- ],
- [
- -2.47991,
- 41.10369
- ],
- [
- -2.52078,
- 41.10333
- ],
- [
- -2.5211,
- 41.12429
- ],
- [
- -2.60415,
- 41.12357
- ],
- [
- -2.60481,
- 41.16628
- ],
- [
- -2.6471,
- 41.16591
- ],
- [
- -2.64808,
- 41.22931
- ],
- [
- -2.72874,
- 41.2286
- ],
- [
- -2.72907,
- 41.24974
- ],
- [
- -2.89552,
- 41.24828
- ],
- [
- -2.89649,
- 41.31063
- ],
- [
- -2.9363,
- 41.31028
- ],
- [
- -2.93571,
- 41.27231
- ],
- [
- -3.14692,
- 41.27046
- ],
- [
- -3.14723,
- 41.29045
- ],
- [
- -3.22828,
- 41.28974
- ],
- [
- -3.22767,
- 41.25008
- ],
- [
- -3.39581,
- 41.2486
- ],
- [
- -3.39518,
- 41.20808
- ],
- [
- -3.43492,
- 41.20773
- ],
- [
- -3.43429,
- 41.16696
- ],
- [
- -3.47877,
- 41.16657
- ],
- [
- -3.47844,
- 41.14556
- ],
- [
- -3.60336,
- 41.14446
- ],
- [
- -3.6027,
- 41.10169
- ],
- [
- -3.64539,
- 41.10131
- ],
- [
- -3.64508,
- 41.08159
- ],
- [
- -3.68735,
- 41.08122
- ],
- [
- -3.68673,
- 41.04104
- ],
- [
- -3.72866,
- 41.04067
- ],
- [
- -3.72803,
- 40.9998
- ],
- [
- -3.76896,
- 40.99944
- ],
- [
- -3.76864,
- 40.97886
- ],
- [
- -3.85473,
- 40.97811
- ],
- [
- -3.8544,
- 40.95653
- ],
- [
- -3.89857,
- 40.95615
- ],
- [
- -3.89764,
- 40.89575
- ],
- [
- -3.93906,
- 40.89539
- ],
- [
- -3.93716,
- 40.77204
- ],
- [
- -4.06198,
- 40.77093
- ],
- [
- -4.06133,
- 40.72926
- ],
- [
- -4.10372,
- 40.72888
- ],
- [
- -4.10311,
- 40.68918
- ],
- [
- -4.14628,
- 40.6888
- ],
- [
- -4.14498,
- 40.60421
- ],
- [
- -4.19025,
- 40.60381
- ],
- [
- -4.18994,
- 40.58362
- ],
- [
- -4.22946,
- 40.58327
- ],
- [
- -4.22979,
- 40.60487
- ],
- [
- -4.27054,
- 40.60451
- ],
- [
- -4.26958,
- 40.54211
- ],
- [
- -4.31384,
- 40.54171
- ],
- [
- -4.31163,
- 40.39758
- ],
- [
- -4.39376,
- 40.39685
- ],
- [
- -4.39345,
- 40.37677
- ],
- [
- -4.43723,
- 40.37638
- ],
- [
- -4.43623,
- 40.31123
- ],
- [
- -4.52192,
- 40.31046
- ],
- [
- -4.52037,
- 40.20897
- ],
- [
- -4.56131,
- 40.2086
- ],
- [
- -4.56099,
- 40.18763
- ],
- [
- -4.68895,
- 40.18649
- ],
- [
- -4.68933,
- 40.21101
- ],
- [
- -4.73192,
- 40.21063
- ],
- [
- -4.73252,
- 40.24966
- ],
- [
- -4.76838,
- 40.24934
- ],
- [
- -4.76809,
- 40.23035
- ],
- [
- -4.81104,
- 40.22996
- ],
- [
- -4.81147,
- 40.20726
- ],
- [
- -4.8542,
- 40.18414
- ],
- [
- -4.85264,
- 40.12563
- ],
- [
- -4.93699,
- 40.12488
- ],
- [
- -4.93638,
- 40.08529
- ],
- [
- -5.35538,
- 40.08155
- ],
- [
- -5.35606,
- 40.12562
- ],
- [
- -5.44027,
- 40.12487
- ],
- [
- -5.44091,
- 40.16673
- ],
- [
- -5.60382,
- 40.16527
- ],
- [
- -5.60448,
- 40.20881
- ],
- [
- -5.68646,
- 40.20808
- ],
- [
- -5.68712,
- 40.25131
- ],
- [
- -6.02166,
- 40.24834
- ],
- [
- -6.02295,
- 40.33257
- ],
- [
- -6.10433,
- 40.33184
- ],
- [
- -6.1056,
- 40.41451
- ],
- [
- -6.18951,
- 40.41376
- ],
- [
- -6.19018,
- 40.45745
- ],
- [
- -6.26971,
- 40.45675
- ],
- [
- -6.26909,
- 40.41653
- ],
- [
- -6.35192,
- 40.41579
- ],
- [
- -6.35128,
- 40.37422
- ],
- [
- -6.43325,
- 40.37349
- ],
- [
- -6.43264,
- 40.33361
- ],
- [
- -6.52245,
- 40.33281
- ],
- [
- -6.52116,
- 40.24849
- ],
- [
- -6.59942,
- 40.24779
- ],
- [
- -6.59886,
- 40.21128
- ],
- [
- -6.85568,
- 40.20899
- ],
- [
- -6.85634,
- 40.25257
- ],
- [
- -6.93622,
- 40.25186
- ],
- [
- -6.93751,
- 40.33657
- ],
- [
- -6.85111,
- 40.33734
- ],
- [
- -6.86001,
- 40.91672
- ],
- [
- -6.93544,
- 40.91605
- ],
- [
- -6.93741,
- 41.0435
- ],
- [
- -6.85482,
- 41.04423
- ],
- [
- -6.85548,
- 41.08706
- ],
- [
- -6.77015,
- 41.08781
- ],
- [
- -6.77245,
- 41.23623
- ],
- [
- -6.68379,
- 41.23701
- ],
- [
- -6.60436,
- 41.2377
- ],
- [
- -6.60524,
- 41.29474
- ],
- [
- -6.5193,
- 41.29549
- ],
- [
- -6.51991,
- 41.33479
- ],
- [
- -6.43673,
- 41.33552
- ],
- [
- -6.43801,
- 41.41814
- ],
- [
- -6.35318,
- 41.41888
- ],
- [
- -6.35447,
- 41.50141
- ],
- [
- -6.26889,
- 41.50216
- ],
- [
- -6.2708,
- 41.6245
- ],
- [
- -6.35661,
- 41.62375
- ],
- [
- -6.35724,
- 41.66401
- ],
- [
- -6.43548,
- 41.66333
- ],
- [
- -6.4349,
- 41.62651
- ],
- [
- -6.52279,
- 41.62575
- ],
- [
- -6.52343,
- 41.66635
- ],
- [
- -6.6034,
- 41.66565
- ],
- [
- -6.60733,
- 41.9166
- ],
- [
- -7.02209,
- 41.913
- ],
- [
- -7.02406,
- 42.03872
- ],
- [
- -7.1054,
- 42.03801
- ],
- [
- -7.10613,
- 42.08421
- ],
- [
- -7.0208,
- 42.08495
- ],
- [
- -7.02276,
- 42.2094
- ],
- [
- -6.93699,
- 42.21014
- ],
- [
- -6.93763,
- 42.25087
- ],
- [
- -6.8548,
- 42.25159
- ],
- [
- -6.85545,
- 42.29329
- ],
- [
- -6.77342,
- 42.294
- ],
- [
- -6.77403,
- 42.33244
- ],
- [
- -6.85325,
- 42.33176
- ],
- [
- -6.85523,
- 42.4569
- ],
- [
- -7.10341,
- 42.45477
- ],
- [
- -7.10811,
- 42.75115
- ],
- [
- -7.02199,
- 42.75189
- ],
- [
- -7.02241,
- 42.77825
- ],
- [
- -6.93976,
- 42.77896
- ],
- [
- -6.94199,
- 42.91962
- ],
- [
- -6.77302,
- 42.92106
- ],
- [
- -6.77363,
- 42.95958
- ],
- [
- -6.52329,
- 42.96172
- ],
- [
- -6.52391,
- 43.00095
- ],
- [
- -6.43893,
- 43.00167
- ],
- [
- -6.44024,
- 43.08361
- ],
- [
- -5.93782,
- 43.08789
- ],
- [
- -5.93708,
- 43.04189
- ],
- [
- -5.85421,
- 43.0426
- ],
- [
- -5.85357,
- 43.00258
- ],
- [
- -5.77236,
- 43.00327
- ],
- [
- -5.77363,
- 43.08308
- ],
- [
- -5.6027,
- 43.08453
- ],
- [
- -5.60202,
- 43.04222
- ],
- [
- -5.52161,
- 43.04291
- ],
- [
- -5.52226,
- 43.08409
- ],
- [
- -5.4376,
- 43.08481
- ],
- [
- -5.43827,
- 43.12651
- ],
- [
- -5.10444,
- 43.12935
- ],
- [
- -5.10573,
- 43.2099
- ],
- [
- -5.02386,
- 43.2106
- ],
- [
- -5.02451,
- 43.25117
- ],
- [
- -4.90017,
- 43.25222
- ],
- [
- -4.89941,
- 43.20501
- ],
- [
- -4.81126,
- 43.20576
- ],
- [
- -4.80966,
- 43.10538
- ],
- [
- -4.76975,
- 43.10571
- ],
- [
- -4.76937,
- 43.08168
- ],
- [
- -4.72945,
- 43.08202
- ],
- [
- -4.72881,
- 43.04219
- ],
- [
- -4.56322,
- 43.0436
- ],
- [
- -4.56353,
- 43.06296
- ],
- [
- -4.39599,
- 43.06438
- ],
- [
- -4.39566,
- 43.04336
- ],
- [
- -4.3537,
- 43.04371
- ],
- [
- -4.35266,
- 42.97836
- ],
- [
- -4.23013,
- 42.9794
- ],
- [
- -4.22913,
- 42.91625
- ],
- [
- -4.18774,
- 42.9166
- ],
- [
- -4.18706,
- 42.87407
- ],
- [
- -4.10552,
- 42.87476
- ],
- [
- -4.10486,
- 42.83348
- ],
- [
- -3.97801,
- 42.83457
- ],
- [
- -3.97733,
- 42.79214
- ],
- [
- -3.9375,
- 42.79248
- ],
- [
- -3.93781,
- 42.81183
- ],
- [
- -3.85397,
- 42.81254
- ],
- [
- -3.85427,
- 42.83193
- ],
- [
- -3.89573,
- 42.83158
- ],
- [
- -3.89607,
- 42.85343
- ],
- [
- -3.93821,
- 42.85307
- ],
- [
- -3.93889,
- 42.89577
- ],
- [
- -3.9806,
- 42.89542
- ],
- [
- -3.98093,
- 42.91627
- ],
- [
- -4.0222,
- 42.91591
- ],
- [
- -4.0229,
- 42.96014
- ],
- [
- -3.97851,
- 42.96052
- ],
- [
- -3.97946,
- 43.01999
- ],
- [
- -3.93883,
- 43.02034
- ],
- [
- -3.93918,
- 43.04239
- ],
- [
- -3.89704,
- 43.04275
- ],
- [
- -3.89738,
- 43.06414
- ],
- [
- -3.85424,
- 43.06451
- ],
- [
- -3.8549,
- 43.10583
- ],
- [
- -3.77086,
- 43.10654
- ],
- [
- -3.77116,
- 43.12515
- ],
- [
- -3.72819,
- 43.12551
- ],
- [
- -3.72853,
- 43.14656
- ],
- [
- -3.68713,
- 43.14691
- ],
- [
- -3.68778,
- 43.18786
- ],
- [
- -3.60365,
- 43.18858
- ],
- [
- -3.60331,
- 43.16747
- ],
- [
- -3.52278,
- 43.16815
- ],
- [
- -3.52243,
- 43.14619
- ],
- [
- -3.39669,
- 43.14726
- ],
- [
- -3.39699,
- 43.16601
- ],
- [
- -3.35444,
- 43.16637
- ],
- [
- -3.35479,
- 43.18837
- ],
- [
- -3.31268,
- 43.18873
- ],
- [
- -3.31299,
- 43.20828
- ],
- [
- -3.22993,
- 43.20899
- ],
- [
- -3.22959,
- 43.18768
- ],
- [
- -3.10343,
- 43.18875
- ],
- [
- -3.10274,
- 43.14562
- ],
- [
- -3.14546,
- 43.14526
- ],
- [
- -3.14516,
- 43.1271
- ],
- [
- -3.10617,
- 43.12743
- ],
- [
- -3.10445,
- 43.01915
- ],
- [
- -3.02075,
- 43.01987
- ],
- [
- -3.0201,
- 42.97903
- ],
- [
- -2.9811,
- 42.97936
- ],
- [
- -2.97977,
- 42.8958
- ],
- [
- -3.10476,
- 42.89473
- ],
- [
- -3.10276,
- 42.76928
- ],
- [
- -3.02199,
- 42.76997
- ],
- [
- -3.02168,
- 42.74983
- ],
- [
- -2.98024,
- 42.75019
- ],
- [
- -2.97988,
- 42.7275
- ],
- [
- -2.89613,
- 42.72822
- ],
- [
- -2.89679,
- 42.76967
- ],
- [
- -2.8534,
- 42.77004
- ],
- [
- -2.85405,
- 42.81087
- ],
- [
- -2.68577,
- 42.81231
- ],
- [
- -2.68544,
- 42.79159
- ],
- [
- -2.64523,
- 42.79194
- ],
- [
- -2.64489,
- 42.77024
- ],
- [
- -2.52005,
- 42.7713
- ],
- [
- -2.51936,
- 42.72827
- ],
- [
- -2.5607,
- 42.72791
- ],
- [
- -2.56038,
- 42.7076
- ],
- [
- -2.51944,
- 42.70795
- ],
- [
- -2.5181,
- 42.62357
- ],
- [
- -2.60404,
- 42.62283
- ],
- [
- -2.60439,
- 42.64497
- ],
- [
- -2.77154,
- 42.64353
- ],
- [
- -2.77188,
- 42.66544
- ],
- [
- -2.81176,
- 42.6651
- ],
- [
- -2.8121,
- 42.68624
- ],
- [
- -2.85469,
- 42.68588
- ],
- [
- -2.85337,
- 42.60302
- ],
- [
- -2.89413,
- 42.60267
- ],
- [
- -2.89379,
- 42.58159
- ],
- [
- -3.0619,
- 42.58015
- ],
- [
- -3.06031,
- 42.47952
- ],
- [
- -3.02191,
- 42.47985
- ],
- [
- -3.0199,
- 42.3525
- ],
- [
- -3.06255,
- 42.35213
- ],
- [
- -3.06029,
- 42.20906
- ],
- [
- -3.1012,
- 42.20871
- ],
- [
- -3.10086,
- 42.18682
- ],
- [
- -3.06175,
- 42.18716
- ],
- [
- -3.0611,
- 42.14559
- ],
- [
- -3.02029,
- 42.14594
- ],
- [
- -3.01963,
- 42.10375
- ],
- [
- -2.89602,
- 42.10482
- ],
- [
- -2.89501,
- 42.04071
- ],
- [
- -2.81222,
- 42.04143
- ],
- [
- -2.81353,
- 42.1246
- ],
- [
- -2.76871,
- 42.12499
- ],
- [
- -2.76905,
- 42.14674
- ],
- [
- -2.72695,
- 42.14711
- ],
- [
- -2.7266,
- 42.12485
- ],
- [
- -2.68706,
- 42.12519
- ],
- [
- -2.68605,
- 42.06109
- ],
- [
- -2.72804,
- 42.06073
- ],
- [
- -2.72739,
- 42.0193
- ],
- [
- -2.60343,
- 42.02037
- ],
- [
- -2.60376,
- 42.04135
- ],
- [
- -2.561,
- 42.04173
- ],
- [
- -2.56198,
- 42.10411
- ],
- [
- -2.52266,
- 42.10445
- ],
- [
- -2.52299,
- 42.12577
- ],
- [
- -2.47933,
- 42.12615
- ],
- [
- -2.47963,
- 42.145
- ],
- [
- -2.35517,
- 42.14608
- ],
- [
- -2.3555,
- 42.16747
- ],
- [
- -2.31184,
- 42.16785
- ],
- [
- -2.3115,
- 42.14605
- ],
- [
- -2.2699,
- 42.14641
- ],
- [
- -2.26924,
- 42.1048
- ],
- [
- -2.2295,
- 42.10515
- ],
- [
- -2.22981,
- 42.12514
- ],
- [
- -2.14467,
- 42.12587
- ],
- [
- -2.14432,
- 42.10386
- ],
- [
- -2.10385,
- 42.10421
- ],
- [
- -2.10156,
- 41.95811
- ],
- [
- -1.97689,
- 41.95919
- ],
- [
- -1.97655,
- 41.93765
- ],
- [
- -1.93473,
- 41.93801
- ],
- [
- -1.93504,
- 41.95776
- ],
- [
- -1.89453,
- 41.95811
- ],
- [
- -1.89483,
- 41.97715
- ],
- [
- -1.854,
- 41.97751
- ],
- [
- -1.85304,
- 41.91638
- ],
- [
- -1.81381,
- 41.91672
- ],
- [
- -1.81151,
- 41.76984
- ],
- [
- -1.7706,
- 41.77019
- ],
- [
- -1.76866,
- 41.64582
- ],
- [
- -1.85335,
- 41.64508
- ],
- [
- -1.85305,
- 41.62567
- ],
- [
- -1.89471,
- 41.6253
- ],
- [
- -1.89403,
- 41.58215
- ],
- [
- -1.97716,
- 41.58142
- ],
- [
- -1.97683,
- 41.56021
- ],
- [
- -1.9377,
- 41.56055
- ],
- [
- -1.9358,
- 41.43834
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "ITACyL"
- },
- "available_projections": [
- "EPSG:25830",
- "EPSG:4230",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:23028",
- "EPSG:23029",
- "EPSG:23030",
- "EPSG:23031",
- "EPSG:23032",
- "EPSG:25828",
- "EPSG:25829",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:32627",
- "EPSG:32628",
- "EPSG:32629",
- "EPSG:32630",
- "EPSG:32631",
- "EPSG:32632"
- ],
- "country_code": "ES",
- "id": "ITACyL-Castile-and-Leon",
- "name": "ITACyL - Castile and León",
- "type": "wms",
- "url": "http://orto.wms.itacyl.es/WMS?REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=Ortofoto_CyL&SRS={proj}&FORMAT=image/jpeg&STYLES=Default&TRANSPARENT=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -17.88463,
- 28.44606
- ],
- [
- -17.89395,
- 28.52255
- ],
- [
- -18.02125,
- 28.74819
- ],
- [
- -18.02241,
- 28.80384
- ],
- [
- -17.9424,
- 28.87261
- ],
- [
- -17.89118,
- 28.87371
- ],
- [
- -17.89033,
- 28.85151
- ],
- [
- -17.76759,
- 28.85378
- ],
- [
- -17.76698,
- 28.83122
- ],
- [
- -17.74127,
- 28.832
- ],
- [
- -17.73949,
- 28.76422
- ],
- [
- -17.71398,
- 28.76497
- ],
- [
- -17.71293,
- 28.73037
- ],
- [
- -17.75744,
- 28.69318
- ],
- [
- -17.75708,
- 28.67413
- ],
- [
- -17.74579,
- 28.67435
- ],
- [
- -17.74573,
- 28.61656
- ],
- [
- -17.75197,
- 28.58337
- ],
- [
- -17.76225,
- 28.5592
- ],
- [
- -17.78331,
- 28.54167
- ],
- [
- -17.78316,
- 28.49366
- ],
- [
- -17.80861,
- 28.4925
- ],
- [
- -17.80601,
- 28.4469
- ],
- [
- -17.88463,
- 28.44606
- ]
- ],
- [
- [
- -18.1661,
- 27.78516
- ],
- [
- -18.16349,
- 27.69492
- ],
- [
- -18.08898,
- 27.69634
- ],
- [
- -18.08734,
- 27.67387
- ],
- [
- -18.03641,
- 27.67537
- ],
- [
- -18.03501,
- 27.63026
- ],
- [
- -17.959,
- 27.6324
- ],
- [
- -17.86033,
- 27.7926
- ],
- [
- -17.86303,
- 27.83688
- ],
- [
- -17.8884,
- 27.83649
- ],
- [
- -17.88913,
- 27.85905
- ],
- [
- -17.99065,
- 27.85675
- ],
- [
- -18.03868,
- 27.76558
- ],
- [
- -18.11464,
- 27.76379
- ],
- [
- -18.11546,
- 27.78636
- ],
- [
- -18.1661,
- 27.78516
- ]
- ],
- [
- [
- -17.36038,
- 28.06398
- ],
- [
- -17.36297,
- 28.17572
- ],
- [
- -17.33756,
- 28.17637
- ],
- [
- -17.33846,
- 28.2213
- ],
- [
- -17.18579,
- 28.22388
- ],
- [
- -17.08208,
- 28.13518
- ],
- [
- -17.08084,
- 28.068
- ],
- [
- -17.13154,
- 28.06681
- ],
- [
- -17.15633,
- 28.02146
- ],
- [
- -17.23211,
- 28.02037
- ],
- [
- -17.23199,
- 27.99804
- ],
- [
- -17.25768,
- 27.99784
- ],
- [
- -17.25785,
- 28.01997
- ],
- [
- -17.30867,
- 28.01923
- ],
- [
- -17.36038,
- 28.06398
- ]
- ],
- [
- [
- -16.92782,
- 28.32758
- ],
- [
- -16.92866,
- 28.37219
- ],
- [
- -16.87767,
- 28.37293
- ],
- [
- -16.87807,
- 28.39542
- ],
- [
- -16.52143,
- 28.42261
- ],
- [
- -16.44571,
- 28.49113
- ],
- [
- -16.44625,
- 28.53597
- ],
- [
- -16.42059,
- 28.53627
- ],
- [
- -16.42092,
- 28.55884
- ],
- [
- -16.34433,
- 28.55976
- ],
- [
- -16.3446,
- 28.58221
- ],
- [
- -16.19125,
- 28.58372
- ],
- [
- -16.19162,
- 28.60684
- ],
- [
- -16.12793,
- 28.60782
- ],
- [
- -16.1278,
- 28.59218
- ],
- [
- -16.09951,
- 28.5925
- ],
- [
- -16.09934,
- 28.51638
- ],
- [
- -16.16481,
- 28.51612
- ],
- [
- -16.16475,
- 28.49386
- ],
- [
- -16.23858,
- 28.44847
- ],
- [
- -16.26535,
- 28.44761
- ],
- [
- -16.26586,
- 28.403
- ],
- [
- -16.31675,
- 28.40176
- ],
- [
- -16.31631,
- 28.38019
- ],
- [
- -16.34208,
- 28.37951
- ],
- [
- -16.34083,
- 28.2893
- ],
- [
- -16.41584,
- 28.19761
- ],
- [
- -16.4151,
- 28.13113
- ],
- [
- -16.51533,
- 28.01648
- ],
- [
- -16.61684,
- 28.01532
- ],
- [
- -16.61681,
- 27.99305
- ],
- [
- -16.71842,
- 27.99192
- ],
- [
- -16.7191,
- 28.03714
- ],
- [
- -16.7447,
- 28.03679
- ],
- [
- -16.74534,
- 28.08181
- ],
- [
- -16.7707,
- 28.08161
- ],
- [
- -16.8224,
- 28.1259
- ],
- [
- -16.82317,
- 28.17087
- ],
- [
- -16.8487,
- 28.17075
- ],
- [
- -16.85028,
- 28.26079
- ],
- [
- -16.87565,
- 28.26055
- ],
- [
- -16.87608,
- 28.28322
- ],
- [
- -16.90151,
- 28.28277
- ],
- [
- -16.90239,
- 28.32793
- ],
- [
- -16.92782,
- 28.32758
- ]
- ],
- [
- [
- -15.85374,
- 27.90089
- ],
- [
- -15.8542,
- 27.99018
- ],
- [
- -15.82895,
- 27.99066
- ],
- [
- -15.82911,
- 28.03558
- ],
- [
- -15.7783,
- 28.03632
- ],
- [
- -15.75328,
- 28.08143
- ],
- [
- -15.72788,
- 28.08157
- ],
- [
- -15.72826,
- 28.17186
- ],
- [
- -15.49897,
- 28.1728
- ],
- [
- -15.49874,
- 28.15041
- ],
- [
- -15.44978,
- 28.15075
- ],
- [
- -15.45016,
- 28.19614
- ],
- [
- -15.39728,
- 28.19614
- ],
- [
- -15.39644,
- 28.03836
- ],
- [
- -15.37103,
- 28.03802
- ],
- [
- -15.37065,
- 28.01532
- ],
- [
- -15.34578,
- 28.01532
- ],
- [
- -15.34548,
- 27.92544
- ],
- [
- -15.3708,
- 27.92524
- ],
- [
- -15.37057,
- 27.83521
- ],
- [
- -15.39598,
- 27.83474
- ],
- [
- -15.421,
- 27.78797
- ],
- [
- -15.47181,
- 27.78939
- ],
- [
- -15.47188,
- 27.76665
- ],
- [
- -15.52277,
- 27.76678
- ],
- [
- -15.54771,
- 27.72161
- ],
- [
- -15.62361,
- 27.72134
- ],
- [
- -15.62415,
- 27.74199
- ],
- [
- -15.70075,
- 27.74335
- ],
- [
- -15.80167,
- 27.81105
- ],
- [
- -15.85374,
- 27.90089
- ]
- ],
- [
- [
- -14.52156,
- 28.04678
- ],
- [
- -14.52244,
- 28.11841
- ],
- [
- -14.41575,
- 28.11561
- ],
- [
- -14.21688,
- 28.22788
- ],
- [
- -14.21537,
- 28.33903
- ],
- [
- -14.16417,
- 28.45283
- ],
- [
- -14.11151,
- 28.4748
- ],
- [
- -14.03358,
- 28.72267
- ],
- [
- -13.95652,
- 28.74494
- ],
- [
- -13.95617,
- 28.76659
- ],
- [
- -13.82902,
- 28.76643
- ],
- [
- -13.82896,
- 28.78798
- ],
- [
- -13.80007,
- 28.78793
- ],
- [
- -13.8013,
- 28.71899
- ],
- [
- -13.82757,
- 28.71935
- ],
- [
- -13.82786,
- 28.6518
- ],
- [
- -13.80258,
- 28.6519
- ],
- [
- -13.80339,
- 28.53842
- ],
- [
- -13.82885,
- 28.53847
- ],
- [
- -13.83151,
- 28.39702
- ],
- [
- -13.91582,
- 28.22414
- ],
- [
- -13.98564,
- 28.22357
- ],
- [
- -14.03696,
- 28.17958
- ],
- [
- -14.13871,
- 28.17999
- ],
- [
- -14.13866,
- 28.15791
- ],
- [
- -14.21537,
- 28.15781
- ],
- [
- -14.21472,
- 28.11189
- ],
- [
- -14.29132,
- 28.04524
- ],
- [
- -14.33197,
- 28.03687
- ],
- [
- -14.44578,
- 28.04698
- ],
- [
- -14.44666,
- 28.0658
- ],
- [
- -14.49628,
- 28.06826
- ],
- [
- -14.49593,
- 28.04585
- ],
- [
- -14.52156,
- 28.04678
- ]
- ],
- [
- [
- -13.80066,
- 28.84566
- ],
- [
- -13.80093,
- 28.82311
- ],
- [
- -13.77569,
- 28.82305
- ],
- [
- -13.69729,
- 28.88982
- ],
- [
- -13.69729,
- 28.91277
- ],
- [
- -13.60725,
- 28.9118
- ],
- [
- -13.43886,
- 29.00024
- ],
- [
- -13.43746,
- 29.13513
- ],
- [
- -13.4117,
- 29.13499
- ],
- [
- -13.41056,
- 29.22298
- ],
- [
- -13.45928,
- 29.25559
- ],
- [
- -13.45974,
- 29.2942
- ],
- [
- -13.50913,
- 29.29456
- ],
- [
- -13.51006,
- 29.31635
- ],
- [
- -13.56354,
- 29.31729
- ],
- [
- -13.56406,
- 29.27138
- ],
- [
- -13.53892,
- 29.2712
- ],
- [
- -13.53897,
- 29.25004
- ],
- [
- -13.56613,
- 29.25013
- ],
- [
- -13.5666,
- 29.203
- ],
- [
- -13.51565,
- 29.20223
- ],
- [
- -13.51565,
- 29.18206
- ],
- [
- -13.5398,
- 29.18278
- ],
- [
- -13.54089,
- 29.13753
- ],
- [
- -13.65782,
- 29.13685
- ],
- [
- -13.71322,
- 29.09351
- ],
- [
- -13.76634,
- 29.09345
- ],
- [
- -13.85025,
- 29.01659
- ],
- [
- -13.85182,
- 28.98343
- ],
- [
- -13.85244,
- 28.91486
- ],
- [
- -13.90131,
- 28.89245
- ],
- [
- -13.9024,
- 28.84698
- ],
- [
- -13.80066,
- 28.84566
- ]
- ],
- [
- [
- 1.64799,
- 38.99907
- ],
- [
- 1.73217,
- 38.99936
- ],
- [
- 1.73147,
- 39.04417
- ],
- [
- 1.64895,
- 39.04319
- ],
- [
- 1.64816,
- 39.12764
- ],
- [
- 1.39486,
- 39.12657
- ],
- [
- 1.39544,
- 39.08642
- ],
- [
- 1.22811,
- 39.08526
- ],
- [
- 1.22911,
- 39.0029
- ],
- [
- 1.14487,
- 39.0018
- ],
- [
- 1.14528,
- 38.832
- ],
- [
- 1.31136,
- 38.83316
- ],
- [
- 1.31219,
- 38.79065
- ],
- [
- 1.39469,
- 38.79162
- ],
- [
- 1.39519,
- 38.75296
- ],
- [
- 1.31128,
- 38.75193
- ],
- [
- 1.31259,
- 38.62388
- ],
- [
- 1.6489,
- 38.62511
- ],
- [
- 1.64807,
- 38.71115
- ],
- [
- 1.58456,
- 38.71012
- ],
- [
- 1.58116,
- 38.70054
- ],
- [
- 1.54915,
- 38.70028
- ],
- [
- 1.51972,
- 38.70921
- ],
- [
- 1.50355,
- 38.72532
- ],
- [
- 1.48133,
- 38.91551
- ],
- [
- 1.55189,
- 38.92544
- ],
- [
- 1.56673,
- 38.95666
- ],
- [
- 1.64874,
- 38.95833
- ],
- [
- 1.64799,
- 38.99907
- ]
- ],
- [
- [
- 2.54507,
- 39.41667
- ],
- [
- 2.43933,
- 39.41611
- ],
- [
- 2.43871,
- 39.48469
- ],
- [
- 2.43902,
- 39.49934
- ],
- [
- 2.31223,
- 39.49934
- ],
- [
- 2.31192,
- 39.54179
- ],
- [
- 2.22907,
- 39.541
- ],
- [
- 2.22835,
- 39.62606
- ],
- [
- 2.34601,
- 39.62709
- ],
- [
- 2.92704,
- 39.96016
- ],
- [
- 3.14566,
- 39.96005
- ],
- [
- 3.14608,
- 40.00198
- ],
- [
- 3.23139,
- 40.00198
- ],
- [
- 3.23129,
- 39.83292
- ],
- [
- 3.14823,
- 39.83316
- ],
- [
- 3.14844,
- 39.79357
- ],
- [
- 3.48148,
- 39.79318
- ],
- [
- 3.48035,
- 39.5959
- ],
- [
- 3.31506,
- 39.47846
- ],
- [
- 3.31462,
- 39.37855
- ],
- [
- 3.08302,
- 39.24994
- ],
- [
- 2.97986,
- 39.25015
- ],
- [
- 2.97904,
- 39.3335
- ],
- [
- 2.72874,
- 39.33342
- ],
- [
- 2.72885,
- 39.45814
- ],
- [
- 2.64569,
- 39.45774
- ],
- [
- 2.64538,
- 39.49966
- ],
- [
- 2.54528,
- 39.49942
- ],
- [
- 2.54507,
- 39.41667
- ]
- ],
- [
- [
- 3.81204,
- 40.04344
- ],
- [
- 3.72908,
- 40.0438
- ],
- [
- 3.72862,
- 39.95842
- ],
- [
- 3.81266,
- 39.9576
- ],
- [
- 3.81228,
- 39.91644
- ],
- [
- 3.9609,
- 39.91598
- ],
- [
- 4.19381,
- 39.79131
- ],
- [
- 4.31503,
- 39.79058
- ],
- [
- 4.31599,
- 39.83293
- ],
- [
- 4.39874,
- 39.83204
- ],
- [
- 4.39737,
- 39.91858
- ],
- [
- 4.3158,
- 39.91933
- ],
- [
- 4.31619,
- 40.0434
- ],
- [
- 4.2319,
- 40.04436
- ],
- [
- 4.23248,
- 40.08478
- ],
- [
- 4.14915,
- 40.08611
- ],
- [
- 4.14906,
- 40.12552
- ],
- [
- 4.0628,
- 40.12722
- ],
- [
- 4.06242,
- 40.08499
- ],
- [
- 3.81287,
- 40.08529
- ],
- [
- 3.81204,
- 40.04344
- ]
- ],
- [
- [
- -8.89106,
- 41.82289
- ],
- [
- -9.1092,
- 42.57511
- ],
- [
- -9.03655,
- 42.73066
- ],
- [
- -9.08834,
- 42.72696
- ],
- [
- -9.14661,
- 42.77503
- ],
- [
- -9.21855,
- 42.90163
- ],
- [
- -9.2761,
- 42.86051
- ],
- [
- -9.30991,
- 42.93113
- ],
- [
- -9.27898,
- 42.9822
- ],
- [
- -9.30991,
- 43.06004
- ],
- [
- -9.25236,
- 43.10417
- ],
- [
- -9.2315,
- 43.17032
- ],
- [
- -9.14733,
- 43.21018
- ],
- [
- -9.06748,
- 43.19916
- ],
- [
- -9.03367,
- 43.24267
- ],
- [
- -8.99842,
- 43.24477
- ],
- [
- -8.99986,
- 43.29558
- ],
- [
- -8.93727,
- 43.30553
- ],
- [
- -8.92936,
- 43.32699
- ],
- [
- -8.8639,
- 43.32908
- ],
- [
- -8.87613,
- 43.37407
- ],
- [
- -8.82217,
- 43.37354
- ],
- [
- -8.78548,
- 43.31914
- ],
- [
- -8.70635,
- 43.305
- ],
- [
- -8.60996,
- 43.3296
- ],
- [
- -8.55097,
- 43.32332
- ],
- [
- -8.52435,
- 43.3364
- ],
- [
- -8.52507,
- 43.36465
- ],
- [
- -8.45745,
- 43.39184
- ],
- [
- -8.36105,
- 43.41118
- ],
- [
- -8.36033,
- 43.46342
- ],
- [
- -8.33444,
- 43.57974
- ],
- [
- -8.27761,
- 43.57088
- ],
- [
- -8.06467,
- 43.72392
- ],
- [
- -7.99921,
- 43.7234
- ],
- [
- -7.9172,
- 43.78264
- ],
- [
- -7.85605,
- 43.79146
- ],
- [
- -7.83591,
- 43.73743
- ],
- [
- -7.66284,
- 43.80982
- ],
- [
- -7.31889,
- 43.67827
- ],
- [
- -7.19975,
- 43.58308
- ],
- [
- -6.24882,
- 43.6075
- ],
- [
- -6.12293,
- 43.57901
- ],
- [
- -5.85204,
- 43.6799
- ],
- [
- -5.60363,
- 43.57087
- ],
- [
- -5.28553,
- 43.56191
- ],
- [
- -5.17875,
- 43.49916
- ],
- [
- -4.90899,
- 43.48367
- ],
- [
- -4.61562,
- 43.4192
- ],
- [
- -4.18399,
- 43.42492
- ],
- [
- -3.80295,
- 43.51954
- ],
- [
- -3.74,
- 43.48693
- ],
- [
- -3.56128,
- 43.54236
- ],
- [
- -3.1083,
- 43.38163
- ],
- [
- -2.93857,
- 43.46246
- ],
- [
- -2.74524,
- 43.47551
- ],
- [
- -2.30462,
- 43.31706
- ],
- [
- -1.9854,
- 43.3563
- ],
- [
- -1.85528,
- 43.39725
- ],
- [
- -1.7698,
- 43.39644
- ],
- [
- -1.77005,
- 43.37605
- ],
- [
- -1.71005,
- 43.37569
- ],
- [
- -1.71135,
- 43.33125
- ],
- [
- -1.72259,
- 43.31318
- ],
- [
- -1.68904,
- 43.31291
- ],
- [
- -1.68811,
- 43.33413
- ],
- [
- -1.64467,
- 43.33372
- ],
- [
- -1.64498,
- 43.31332
- ],
- [
- -1.60299,
- 43.31295
- ],
- [
- -1.60344,
- 43.29266
- ],
- [
- -1.56359,
- 43.29212
- ],
- [
- -1.56305,
- 43.31338
- ],
- [
- -1.47799,
- 43.31284
- ],
- [
- -1.36677,
- 43.27614
- ],
- [
- -1.35688,
- 43.23815
- ],
- [
- -1.37037,
- 43.1713
- ],
- [
- -1.44231,
- 43.08336
- ],
- [
- -1.41983,
- 43.06036
- ],
- [
- -1.37307,
- 43.05117
- ],
- [
- -1.36407,
- 43.11159
- ],
- [
- -1.30203,
- 43.13522
- ],
- [
- -1.23549,
- 43.13325
- ],
- [
- -1.27955,
- 43.07744
- ],
- [
- -1.19232,
- 43.06496
- ],
- [
- -1.00619,
- 43.00778
- ],
- [
- -0.94234,
- 42.9749
- ],
- [
- -0.7562,
- 42.98213
- ],
- [
- -0.71484,
- 42.96108
- ],
- [
- -0.69685,
- 42.90314
- ],
- [
- -0.55118,
- 42.82207
- ],
- [
- -0.50442,
- 42.84845
- ],
- [
- -0.42889,
- 42.82009
- ],
- [
- -0.31648,
- 42.86558
- ],
- [
- -0.14563,
- 42.81086
- ],
- [
- -0.03143,
- 42.71249
- ],
- [
- 0.18618,
- 42.7541
- ],
- [
- 0.30218,
- 42.71777
- ],
- [
- 0.36422,
- 42.74287
- ],
- [
- 0.44875,
- 42.71447
- ],
- [
- 0.62769,
- 42.7224
- ],
- [
- 0.64118,
- 42.85767
- ],
- [
- 0.71492,
- 42.88272
- ],
- [
- 0.9676,
- 42.81811
- ],
- [
- 1.10878,
- 42.79898
- ],
- [
- 1.17532,
- 42.73429
- ],
- [
- 1.36326,
- 42.74155
- ],
- [
- 1.41137,
- 42.70939
- ],
- [
- 1.48061,
- 42.71034
- ],
- [
- 1.4813,
- 42.50107
- ],
- [
- 1.64436,
- 42.50203
- ],
- [
- 1.64328,
- 42.54245
- ],
- [
- 1.73041,
- 42.54342
- ],
- [
- 1.73164,
- 42.50118
- ],
- [
- 2.06386,
- 42.50164
- ],
- [
- 2.06456,
- 42.45902
- ],
- [
- 2.39693,
- 42.45994
- ],
- [
- 2.39768,
- 42.41784
- ],
- [
- 2.48048,
- 42.41797
- ],
- [
- 2.48098,
- 42.37594
- ],
- [
- 2.64479,
- 42.37626
- ],
- [
- 2.64448,
- 42.45924
- ],
- [
- 2.81133,
- 42.45961
- ],
- [
- 2.81126,
- 42.50104
- ],
- [
- 3.06388,
- 42.50085
- ],
- [
- 3.06388,
- 42.45915
- ],
- [
- 3.23078,
- 42.45934
- ],
- [
- 3.23049,
- 42.37644
- ],
- [
- 3.31415,
- 42.37604
- ],
- [
- 3.31412,
- 42.33399
- ],
- [
- 3.39785,
- 42.33404
- ],
- [
- 3.39739,
- 42.29009
- ],
- [
- 3.31389,
- 42.29084
- ],
- [
- 3.31397,
- 42.20702
- ],
- [
- 3.14759,
- 42.2073
- ],
- [
- 3.14759,
- 42.12606
- ],
- [
- 3.23055,
- 42.126
- ],
- [
- 3.24668,
- 41.95294
- ],
- [
- 3.19452,
- 41.85589
- ],
- [
- 3.06054,
- 41.76474
- ],
- [
- 2.78358,
- 41.63718
- ],
- [
- 2.26293,
- 41.42716
- ],
- [
- 2.16492,
- 41.29893
- ],
- [
- 1.86008,
- 41.22322
- ],
- [
- 1.3763,
- 41.11627
- ],
- [
- 1.17937,
- 41.04646
- ],
- [
- 1.08585,
- 41.04849
- ],
- [
- 0.75854,
- 40.81956
- ],
- [
- 0.9114,
- 40.73376
- ],
- [
- 0.87813,
- 40.67514
- ],
- [
- 0.66502,
- 40.53587
- ],
- [
- 0.55801,
- 40.55022
- ],
- [
- 0.43392,
- 40.37576
- ],
- [
- 0.26756,
- 40.19192
- ],
- [
- 0.16415,
- 40.06472
- ],
- [
- 0.07513,
- 40.01447
- ],
- [
- 0.01039,
- 39.89522
- ],
- [
- -0.09392,
- 39.81169
- ],
- [
- -0.18474,
- 39.63117
- ],
- [
- -0.29085,
- 39.50363
- ],
- [
- -0.28636,
- 39.33343
- ],
- [
- -0.18564,
- 39.17746
- ],
- [
- -0.21352,
- 39.15585
- ],
- [
- -0.11101,
- 38.97222
- ],
- [
- 0.00949,
- 38.88268
- ],
- [
- 0.12189,
- 38.87218
- ],
- [
- 0.23429,
- 38.79864
- ],
- [
- 0.25587,
- 38.72642
- ],
- [
- 0.09581,
- 38.61338
- ],
- [
- -0.0022,
- 38.60706
- ],
- [
- -0.05705,
- 38.52691
- ],
- [
- -0.27197,
- 38.47624
- ],
- [
- -0.37987,
- 38.39312
- ],
- [
- -0.38347,
- 38.33813
- ],
- [
- -0.45091,
- 38.33108
- ],
- [
- -0.50487,
- 38.28309
- ],
- [
- -0.48238,
- 38.19481
- ],
- [
- -0.42933,
- 38.16583
- ],
- [
- -0.45451,
- 38.14886
- ],
- [
- -0.584,
- 38.17219
- ],
- [
- -0.61367,
- 38.11986
- ],
- [
- -0.63705,
- 37.96122
- ],
- [
- -0.68111,
- 37.94562
- ],
- [
- -0.73237,
- 37.88107
- ],
- [
- -0.72158,
- 37.78306
- ],
- [
- -0.68831,
- 37.734
- ],
- [
- -0.66415,
- 37.62315
- ],
- [
- -0.71939,
- 37.58784
- ],
- [
- -0.91963,
- 37.53758
- ],
- [
- -1.11071,
- 37.51641
- ],
- [
- -1.33832,
- 37.52867
- ],
- [
- -1.44089,
- 37.39037
- ],
- [
- -1.6767,
- 37.27652
- ],
- [
- -1.85408,
- 36.91229
- ],
- [
- -2.06835,
- 36.69291
- ],
- [
- -2.21588,
- 36.66192
- ],
- [
- -2.37219,
- 36.78018
- ],
- [
- -2.68129,
- 36.65911
- ],
- [
- -2.92015,
- 36.66756
- ],
- [
- -3.09402,
- 36.71263
- ],
- [
- -3.46108,
- 36.65488
- ],
- [
- -3.72804,
- 36.69291
- ],
- [
- -4.37435,
- 36.66333
- ],
- [
- -4.65712,
- 36.44042
- ],
- [
- -4.9188,
- 36.45313
- ],
- [
- -5.16995,
- 36.35135
- ],
- [
- -5.28411,
- 36.19702
- ],
- [
- -5.26809,
- 36.12418
- ],
- [
- -5.35248,
- 36.12247
- ],
- [
- -5.35161,
- 36.04014
- ],
- [
- -5.43658,
- 36.03889
- ],
- [
- -5.43532,
- 36.00344
- ],
- [
- -5.68886,
- 36.00365
- ],
- [
- -5.68996,
- 36.04053
- ],
- [
- -5.85506,
- 36.03856
- ],
- [
- -5.85668,
- 36.12421
- ],
- [
- -5.93848,
- 36.12215
- ],
- [
- -5.94003,
- 36.16556
- ],
- [
- -5.99834,
- 36.1645
- ],
- [
- -6.03573,
- 36.1781
- ],
- [
- -6.07752,
- 36.22241
- ],
- [
- -6.15061,
- 36.28646
- ],
- [
- -6.23154,
- 36.37701
- ],
- [
- -6.33585,
- 36.53106
- ],
- [
- -6.32146,
- 36.58163
- ],
- [
- -6.40419,
- 36.6235
- ],
- [
- -6.47433,
- 36.74897
- ],
- [
- -6.41588,
- 36.79939
- ],
- [
- -6.49052,
- 36.91738
- ],
- [
- -6.62989,
- 37.0194
- ],
- [
- -6.87448,
- 37.10838
- ],
- [
- -7.04264,
- 37.18507
- ],
- [
- -7.26474,
- 37.18435
- ],
- [
- -7.37535,
- 37.15354
- ],
- [
- -7.40832,
- 37.16822
- ],
- [
- -7.42029,
- 37.21183
- ],
- [
- -7.42492,
- 37.23505
- ],
- [
- -7.43805,
- 37.2452
- ],
- [
- -7.44597,
- 37.33261
- ],
- [
- -7.4481,
- 37.39094
- ],
- [
- -7.46963,
- 37.40758
- ],
- [
- -7.4647,
- 37.45305
- ],
- [
- -7.50197,
- 37.51641
- ],
- [
- -7.51916,
- 37.52292
- ],
- [
- -7.52196,
- 37.57237
- ],
- [
- -7.45013,
- 37.66958
- ],
- [
- -7.4249,
- 37.75992
- ],
- [
- -7.31666,
- 37.83997
- ],
- [
- -7.26833,
- 37.98895
- ],
- [
- -7.15368,
- 38.01552
- ],
- [
- -7.11771,
- 38.05536
- ],
- [
- -7.0143,
- 38.02438
- ],
- [
- -6.99632,
- 38.10756
- ],
- [
- -6.96147,
- 38.20125
- ],
- [
- -7.08062,
- 38.15708
- ],
- [
- -7.34027,
- 38.44024
- ],
- [
- -7.26383,
- 38.73807
- ],
- [
- -7.04352,
- 38.87297
- ],
- [
- -7.06151,
- 38.90796
- ],
- [
- -6.96934,
- 39.01983
- ],
- [
- -7.00081,
- 39.08879
- ],
- [
- -7.15368,
- 39.09577
- ],
- [
- -7.15255,
- 39.16029
- ],
- [
- -7.24472,
- 39.19689
- ],
- [
- -7.25596,
- 39.28133
- ],
- [
- -7.33689,
- 39.35351
- ],
- [
- -7.3279,
- 39.45599
- ],
- [
- -7.51449,
- 39.58865
- ],
- [
- -7.55271,
- 39.67954
- ],
- [
- -7.05027,
- 39.67522
- ],
- [
- -6.99519,
- 39.81954
- ],
- [
- -6.92213,
- 39.87909
- ],
- [
- -6.88616,
- 40.02299
- ],
- [
- -7.04128,
- 40.13479
- ],
- [
- -7.01767,
- 40.26615
- ],
- [
- -6.8086,
- 40.34501
- ],
- [
- -6.86818,
- 40.44516
- ],
- [
- -6.85356,
- 40.60664
- ],
- [
- -6.83783,
- 40.87576
- ],
- [
- -6.9536,
- 41.03704
- ],
- [
- -6.80186,
- 41.03959
- ],
- [
- -6.76814,
- 41.13871
- ],
- [
- -6.64112,
- 41.26556
- ],
- [
- -6.56244,
- 41.26303
- ],
- [
- -6.21737,
- 41.5791
- ],
- [
- -6.31628,
- 41.64465
- ],
- [
- -6.51523,
- 41.64129
- ],
- [
- -6.58717,
- 41.68832
- ],
- [
- -6.54783,
- 41.85597
- ],
- [
- -6.62988,
- 41.91121
- ],
- [
- -7.13345,
- 41.94048
- ],
- [
- -7.16829,
- 41.87188
- ],
- [
- -7.42569,
- 41.78477
- ],
- [
- -7.95398,
- 41.84593
- ],
- [
- -8.13045,
- 41.78058
- ],
- [
- -8.25185,
- 41.90786
- ],
- [
- -8.12933,
- 42.03488
- ],
- [
- -8.24848,
- 42.1008
- ],
- [
- -8.36762,
- 42.05575
- ],
- [
- -8.60704,
- 42.03405
- ],
- [
- -8.89106,
- 41.82289
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "PNOA"
- },
- "best": true,
- "category": "photo",
- "country_code": "ES",
- "id": "PNOA-Spain-TMS",
- "license_url": "https://wiki.openstreetmap.org/w/index.php?title=ES:Fuentes_de_datos_potenciales_de_Espa%C3%B1a/Servidores_WMS",
- "max_zoom": 20,
- "name": "PNOA Spain",
- "privacy_policy_url": "https://www.idee.es/aviso-legal",
- "type": "tms",
- "url": "https://www.ign.es/wmts/pnoa-ma?request=GetTile&service=WMTS&VERSION=1.0.0&Layer=OI.OrthoimageCoverage&Style=default&Format=image/png&TileMatrixSet=GoogleMapsCompatible&TileMatrix={zoom}&TileRow={y}&TileCol={x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -17.88463,
- 28.44606
- ],
- [
- -17.89395,
- 28.52255
- ],
- [
- -18.02125,
- 28.74819
- ],
- [
- -18.02241,
- 28.80384
- ],
- [
- -17.9424,
- 28.87261
- ],
- [
- -17.89118,
- 28.87371
- ],
- [
- -17.89033,
- 28.85151
- ],
- [
- -17.76759,
- 28.85378
- ],
- [
- -17.76698,
- 28.83122
- ],
- [
- -17.74127,
- 28.832
- ],
- [
- -17.73949,
- 28.76422
- ],
- [
- -17.71398,
- 28.76497
- ],
- [
- -17.71293,
- 28.73037
- ],
- [
- -17.75744,
- 28.69318
- ],
- [
- -17.75708,
- 28.67413
- ],
- [
- -17.74579,
- 28.67435
- ],
- [
- -17.74573,
- 28.61656
- ],
- [
- -17.75197,
- 28.58337
- ],
- [
- -17.76225,
- 28.5592
- ],
- [
- -17.78331,
- 28.54167
- ],
- [
- -17.78316,
- 28.49366
- ],
- [
- -17.80861,
- 28.4925
- ],
- [
- -17.80601,
- 28.4469
- ],
- [
- -17.88463,
- 28.44606
- ]
- ],
- [
- [
- -18.1661,
- 27.78516
- ],
- [
- -18.16349,
- 27.69492
- ],
- [
- -18.08898,
- 27.69634
- ],
- [
- -18.08734,
- 27.67387
- ],
- [
- -18.03641,
- 27.67537
- ],
- [
- -18.03501,
- 27.63026
- ],
- [
- -17.959,
- 27.6324
- ],
- [
- -17.86033,
- 27.7926
- ],
- [
- -17.86303,
- 27.83688
- ],
- [
- -17.8884,
- 27.83649
- ],
- [
- -17.88913,
- 27.85905
- ],
- [
- -17.99065,
- 27.85675
- ],
- [
- -18.03868,
- 27.76558
- ],
- [
- -18.11464,
- 27.76379
- ],
- [
- -18.11546,
- 27.78636
- ],
- [
- -18.1661,
- 27.78516
- ]
- ],
- [
- [
- -17.36038,
- 28.06398
- ],
- [
- -17.36297,
- 28.17572
- ],
- [
- -17.33756,
- 28.17637
- ],
- [
- -17.33846,
- 28.2213
- ],
- [
- -17.18579,
- 28.22388
- ],
- [
- -17.08208,
- 28.13518
- ],
- [
- -17.08084,
- 28.068
- ],
- [
- -17.13154,
- 28.06681
- ],
- [
- -17.15633,
- 28.02146
- ],
- [
- -17.23211,
- 28.02037
- ],
- [
- -17.23199,
- 27.99804
- ],
- [
- -17.25768,
- 27.99784
- ],
- [
- -17.25785,
- 28.01997
- ],
- [
- -17.30867,
- 28.01923
- ],
- [
- -17.36038,
- 28.06398
- ]
- ],
- [
- [
- -16.92782,
- 28.32758
- ],
- [
- -16.92866,
- 28.37219
- ],
- [
- -16.87767,
- 28.37293
- ],
- [
- -16.87807,
- 28.39542
- ],
- [
- -16.52143,
- 28.42261
- ],
- [
- -16.44571,
- 28.49113
- ],
- [
- -16.44625,
- 28.53597
- ],
- [
- -16.42059,
- 28.53627
- ],
- [
- -16.42092,
- 28.55884
- ],
- [
- -16.34433,
- 28.55976
- ],
- [
- -16.3446,
- 28.58221
- ],
- [
- -16.19125,
- 28.58372
- ],
- [
- -16.19162,
- 28.60684
- ],
- [
- -16.12793,
- 28.60782
- ],
- [
- -16.1278,
- 28.59218
- ],
- [
- -16.09951,
- 28.5925
- ],
- [
- -16.09934,
- 28.51638
- ],
- [
- -16.16481,
- 28.51612
- ],
- [
- -16.16475,
- 28.49386
- ],
- [
- -16.23858,
- 28.44847
- ],
- [
- -16.26535,
- 28.44761
- ],
- [
- -16.26586,
- 28.403
- ],
- [
- -16.31675,
- 28.40176
- ],
- [
- -16.31631,
- 28.38019
- ],
- [
- -16.34208,
- 28.37951
- ],
- [
- -16.34083,
- 28.2893
- ],
- [
- -16.41584,
- 28.19761
- ],
- [
- -16.4151,
- 28.13113
- ],
- [
- -16.51533,
- 28.01648
- ],
- [
- -16.61684,
- 28.01532
- ],
- [
- -16.61681,
- 27.99305
- ],
- [
- -16.71842,
- 27.99192
- ],
- [
- -16.7191,
- 28.03714
- ],
- [
- -16.7447,
- 28.03679
- ],
- [
- -16.74534,
- 28.08181
- ],
- [
- -16.7707,
- 28.08161
- ],
- [
- -16.8224,
- 28.1259
- ],
- [
- -16.82317,
- 28.17087
- ],
- [
- -16.8487,
- 28.17075
- ],
- [
- -16.85028,
- 28.26079
- ],
- [
- -16.87565,
- 28.26055
- ],
- [
- -16.87608,
- 28.28322
- ],
- [
- -16.90151,
- 28.28277
- ],
- [
- -16.90239,
- 28.32793
- ],
- [
- -16.92782,
- 28.32758
- ]
- ],
- [
- [
- -15.85374,
- 27.90089
- ],
- [
- -15.8542,
- 27.99018
- ],
- [
- -15.82895,
- 27.99066
- ],
- [
- -15.82911,
- 28.03558
- ],
- [
- -15.7783,
- 28.03632
- ],
- [
- -15.75328,
- 28.08143
- ],
- [
- -15.72788,
- 28.08157
- ],
- [
- -15.72826,
- 28.17186
- ],
- [
- -15.49897,
- 28.1728
- ],
- [
- -15.49874,
- 28.15041
- ],
- [
- -15.44978,
- 28.15075
- ],
- [
- -15.45016,
- 28.19614
- ],
- [
- -15.39728,
- 28.19614
- ],
- [
- -15.39644,
- 28.03836
- ],
- [
- -15.37103,
- 28.03802
- ],
- [
- -15.37065,
- 28.01532
- ],
- [
- -15.34578,
- 28.01532
- ],
- [
- -15.34548,
- 27.92544
- ],
- [
- -15.3708,
- 27.92524
- ],
- [
- -15.37057,
- 27.83521
- ],
- [
- -15.39598,
- 27.83474
- ],
- [
- -15.421,
- 27.78797
- ],
- [
- -15.47181,
- 27.78939
- ],
- [
- -15.47188,
- 27.76665
- ],
- [
- -15.52277,
- 27.76678
- ],
- [
- -15.54771,
- 27.72161
- ],
- [
- -15.62361,
- 27.72134
- ],
- [
- -15.62415,
- 27.74199
- ],
- [
- -15.70075,
- 27.74335
- ],
- [
- -15.80167,
- 27.81105
- ],
- [
- -15.85374,
- 27.90089
- ]
- ],
- [
- [
- -14.52156,
- 28.04678
- ],
- [
- -14.52244,
- 28.11841
- ],
- [
- -14.41575,
- 28.11561
- ],
- [
- -14.21688,
- 28.22788
- ],
- [
- -14.21537,
- 28.33903
- ],
- [
- -14.16417,
- 28.45283
- ],
- [
- -14.11151,
- 28.4748
- ],
- [
- -14.03358,
- 28.72267
- ],
- [
- -13.95652,
- 28.74494
- ],
- [
- -13.95617,
- 28.76659
- ],
- [
- -13.82902,
- 28.76643
- ],
- [
- -13.82896,
- 28.78798
- ],
- [
- -13.80007,
- 28.78793
- ],
- [
- -13.8013,
- 28.71899
- ],
- [
- -13.82757,
- 28.71935
- ],
- [
- -13.82786,
- 28.6518
- ],
- [
- -13.80258,
- 28.6519
- ],
- [
- -13.80339,
- 28.53842
- ],
- [
- -13.82885,
- 28.53847
- ],
- [
- -13.83151,
- 28.39702
- ],
- [
- -13.91582,
- 28.22414
- ],
- [
- -13.98564,
- 28.22357
- ],
- [
- -14.03696,
- 28.17958
- ],
- [
- -14.13871,
- 28.17999
- ],
- [
- -14.13866,
- 28.15791
- ],
- [
- -14.21537,
- 28.15781
- ],
- [
- -14.21472,
- 28.11189
- ],
- [
- -14.29132,
- 28.04524
- ],
- [
- -14.33197,
- 28.03687
- ],
- [
- -14.44578,
- 28.04698
- ],
- [
- -14.44666,
- 28.0658
- ],
- [
- -14.49628,
- 28.06826
- ],
- [
- -14.49593,
- 28.04585
- ],
- [
- -14.52156,
- 28.04678
- ]
- ],
- [
- [
- -13.80066,
- 28.84566
- ],
- [
- -13.80093,
- 28.82311
- ],
- [
- -13.77569,
- 28.82305
- ],
- [
- -13.69729,
- 28.88982
- ],
- [
- -13.69729,
- 28.91277
- ],
- [
- -13.60725,
- 28.9118
- ],
- [
- -13.43886,
- 29.00024
- ],
- [
- -13.43746,
- 29.13513
- ],
- [
- -13.4117,
- 29.13499
- ],
- [
- -13.41056,
- 29.22298
- ],
- [
- -13.45928,
- 29.25559
- ],
- [
- -13.45974,
- 29.2942
- ],
- [
- -13.50913,
- 29.29456
- ],
- [
- -13.51006,
- 29.31635
- ],
- [
- -13.56354,
- 29.31729
- ],
- [
- -13.56406,
- 29.27138
- ],
- [
- -13.53892,
- 29.2712
- ],
- [
- -13.53897,
- 29.25004
- ],
- [
- -13.56613,
- 29.25013
- ],
- [
- -13.5666,
- 29.203
- ],
- [
- -13.51565,
- 29.20223
- ],
- [
- -13.51565,
- 29.18206
- ],
- [
- -13.5398,
- 29.18278
- ],
- [
- -13.54089,
- 29.13753
- ],
- [
- -13.65782,
- 29.13685
- ],
- [
- -13.71322,
- 29.09351
- ],
- [
- -13.76634,
- 29.09345
- ],
- [
- -13.85025,
- 29.01659
- ],
- [
- -13.85182,
- 28.98343
- ],
- [
- -13.85244,
- 28.91486
- ],
- [
- -13.90131,
- 28.89245
- ],
- [
- -13.9024,
- 28.84698
- ],
- [
- -13.80066,
- 28.84566
- ]
- ],
- [
- [
- 1.64799,
- 38.99907
- ],
- [
- 1.73217,
- 38.99936
- ],
- [
- 1.73147,
- 39.04417
- ],
- [
- 1.64895,
- 39.04319
- ],
- [
- 1.64816,
- 39.12764
- ],
- [
- 1.39486,
- 39.12657
- ],
- [
- 1.39544,
- 39.08642
- ],
- [
- 1.22811,
- 39.08526
- ],
- [
- 1.22911,
- 39.0029
- ],
- [
- 1.14487,
- 39.0018
- ],
- [
- 1.14528,
- 38.832
- ],
- [
- 1.31136,
- 38.83316
- ],
- [
- 1.31219,
- 38.79065
- ],
- [
- 1.39469,
- 38.79162
- ],
- [
- 1.39519,
- 38.75296
- ],
- [
- 1.31128,
- 38.75193
- ],
- [
- 1.31259,
- 38.62388
- ],
- [
- 1.6489,
- 38.62511
- ],
- [
- 1.64807,
- 38.71115
- ],
- [
- 1.58456,
- 38.71012
- ],
- [
- 1.58116,
- 38.70054
- ],
- [
- 1.54915,
- 38.70028
- ],
- [
- 1.51972,
- 38.70921
- ],
- [
- 1.50355,
- 38.72532
- ],
- [
- 1.48133,
- 38.91551
- ],
- [
- 1.55189,
- 38.92544
- ],
- [
- 1.56673,
- 38.95666
- ],
- [
- 1.64874,
- 38.95833
- ],
- [
- 1.64799,
- 38.99907
- ]
- ],
- [
- [
- 2.54507,
- 39.41667
- ],
- [
- 2.43933,
- 39.41611
- ],
- [
- 2.43871,
- 39.48469
- ],
- [
- 2.43902,
- 39.49934
- ],
- [
- 2.31223,
- 39.49934
- ],
- [
- 2.31192,
- 39.54179
- ],
- [
- 2.22907,
- 39.541
- ],
- [
- 2.22835,
- 39.62606
- ],
- [
- 2.34601,
- 39.62709
- ],
- [
- 2.92704,
- 39.96016
- ],
- [
- 3.14566,
- 39.96005
- ],
- [
- 3.14608,
- 40.00198
- ],
- [
- 3.23139,
- 40.00198
- ],
- [
- 3.23129,
- 39.83292
- ],
- [
- 3.14823,
- 39.83316
- ],
- [
- 3.14844,
- 39.79357
- ],
- [
- 3.48148,
- 39.79318
- ],
- [
- 3.48035,
- 39.5959
- ],
- [
- 3.31506,
- 39.47846
- ],
- [
- 3.31462,
- 39.37855
- ],
- [
- 3.08302,
- 39.24994
- ],
- [
- 2.97986,
- 39.25015
- ],
- [
- 2.97904,
- 39.3335
- ],
- [
- 2.72874,
- 39.33342
- ],
- [
- 2.72885,
- 39.45814
- ],
- [
- 2.64569,
- 39.45774
- ],
- [
- 2.64538,
- 39.49966
- ],
- [
- 2.54528,
- 39.49942
- ],
- [
- 2.54507,
- 39.41667
- ]
- ],
- [
- [
- 3.81204,
- 40.04344
- ],
- [
- 3.72908,
- 40.0438
- ],
- [
- 3.72862,
- 39.95842
- ],
- [
- 3.81266,
- 39.9576
- ],
- [
- 3.81228,
- 39.91644
- ],
- [
- 3.9609,
- 39.91598
- ],
- [
- 4.19381,
- 39.79131
- ],
- [
- 4.31503,
- 39.79058
- ],
- [
- 4.31599,
- 39.83293
- ],
- [
- 4.39874,
- 39.83204
- ],
- [
- 4.39737,
- 39.91858
- ],
- [
- 4.3158,
- 39.91933
- ],
- [
- 4.31619,
- 40.0434
- ],
- [
- 4.2319,
- 40.04436
- ],
- [
- 4.23248,
- 40.08478
- ],
- [
- 4.14915,
- 40.08611
- ],
- [
- 4.14906,
- 40.12552
- ],
- [
- 4.0628,
- 40.12722
- ],
- [
- 4.06242,
- 40.08499
- ],
- [
- 3.81287,
- 40.08529
- ],
- [
- 3.81204,
- 40.04344
- ]
- ],
- [
- [
- -8.89106,
- 41.82289
- ],
- [
- -9.1092,
- 42.57511
- ],
- [
- -9.03655,
- 42.73066
- ],
- [
- -9.08834,
- 42.72696
- ],
- [
- -9.14661,
- 42.77503
- ],
- [
- -9.21855,
- 42.90163
- ],
- [
- -9.2761,
- 42.86051
- ],
- [
- -9.30991,
- 42.93113
- ],
- [
- -9.27898,
- 42.9822
- ],
- [
- -9.30991,
- 43.06004
- ],
- [
- -9.25236,
- 43.10417
- ],
- [
- -9.2315,
- 43.17032
- ],
- [
- -9.14733,
- 43.21018
- ],
- [
- -9.06748,
- 43.19916
- ],
- [
- -9.03367,
- 43.24267
- ],
- [
- -8.99842,
- 43.24477
- ],
- [
- -8.99986,
- 43.29558
- ],
- [
- -8.93727,
- 43.30553
- ],
- [
- -8.92936,
- 43.32699
- ],
- [
- -8.8639,
- 43.32908
- ],
- [
- -8.87613,
- 43.37407
- ],
- [
- -8.82217,
- 43.37354
- ],
- [
- -8.78548,
- 43.31914
- ],
- [
- -8.70635,
- 43.305
- ],
- [
- -8.60996,
- 43.3296
- ],
- [
- -8.55097,
- 43.32332
- ],
- [
- -8.52435,
- 43.3364
- ],
- [
- -8.52507,
- 43.36465
- ],
- [
- -8.45745,
- 43.39184
- ],
- [
- -8.36105,
- 43.41118
- ],
- [
- -8.36033,
- 43.46342
- ],
- [
- -8.33444,
- 43.57974
- ],
- [
- -8.27761,
- 43.57088
- ],
- [
- -8.06467,
- 43.72392
- ],
- [
- -7.99921,
- 43.7234
- ],
- [
- -7.9172,
- 43.78264
- ],
- [
- -7.85605,
- 43.79146
- ],
- [
- -7.83591,
- 43.73743
- ],
- [
- -7.66284,
- 43.80982
- ],
- [
- -7.31889,
- 43.67827
- ],
- [
- -7.19975,
- 43.58308
- ],
- [
- -6.24882,
- 43.6075
- ],
- [
- -6.12293,
- 43.57901
- ],
- [
- -5.85204,
- 43.6799
- ],
- [
- -5.60363,
- 43.57087
- ],
- [
- -5.28553,
- 43.56191
- ],
- [
- -5.17875,
- 43.49916
- ],
- [
- -4.90899,
- 43.48367
- ],
- [
- -4.61562,
- 43.4192
- ],
- [
- -4.18399,
- 43.42492
- ],
- [
- -3.80295,
- 43.51954
- ],
- [
- -3.74,
- 43.48693
- ],
- [
- -3.56128,
- 43.54236
- ],
- [
- -3.1083,
- 43.38163
- ],
- [
- -2.93857,
- 43.46246
- ],
- [
- -2.74524,
- 43.47551
- ],
- [
- -2.30462,
- 43.31706
- ],
- [
- -1.9854,
- 43.3563
- ],
- [
- -1.85528,
- 43.39725
- ],
- [
- -1.7698,
- 43.39644
- ],
- [
- -1.77005,
- 43.37605
- ],
- [
- -1.71005,
- 43.37569
- ],
- [
- -1.71135,
- 43.33125
- ],
- [
- -1.72259,
- 43.31318
- ],
- [
- -1.68904,
- 43.31291
- ],
- [
- -1.68811,
- 43.33413
- ],
- [
- -1.64467,
- 43.33372
- ],
- [
- -1.64498,
- 43.31332
- ],
- [
- -1.60299,
- 43.31295
- ],
- [
- -1.60344,
- 43.29266
- ],
- [
- -1.56359,
- 43.29212
- ],
- [
- -1.56305,
- 43.31338
- ],
- [
- -1.47799,
- 43.31284
- ],
- [
- -1.36677,
- 43.27614
- ],
- [
- -1.35688,
- 43.23815
- ],
- [
- -1.37037,
- 43.1713
- ],
- [
- -1.44231,
- 43.08336
- ],
- [
- -1.41983,
- 43.06036
- ],
- [
- -1.37307,
- 43.05117
- ],
- [
- -1.36407,
- 43.11159
- ],
- [
- -1.30203,
- 43.13522
- ],
- [
- -1.23549,
- 43.13325
- ],
- [
- -1.27955,
- 43.07744
- ],
- [
- -1.19232,
- 43.06496
- ],
- [
- -1.00619,
- 43.00778
- ],
- [
- -0.94234,
- 42.9749
- ],
- [
- -0.7562,
- 42.98213
- ],
- [
- -0.71484,
- 42.96108
- ],
- [
- -0.69685,
- 42.90314
- ],
- [
- -0.55118,
- 42.82207
- ],
- [
- -0.50442,
- 42.84845
- ],
- [
- -0.42889,
- 42.82009
- ],
- [
- -0.31648,
- 42.86558
- ],
- [
- -0.14563,
- 42.81086
- ],
- [
- -0.03143,
- 42.71249
- ],
- [
- 0.18618,
- 42.7541
- ],
- [
- 0.30218,
- 42.71777
- ],
- [
- 0.36422,
- 42.74287
- ],
- [
- 0.44875,
- 42.71447
- ],
- [
- 0.62769,
- 42.7224
- ],
- [
- 0.64118,
- 42.85767
- ],
- [
- 0.71492,
- 42.88272
- ],
- [
- 0.9676,
- 42.81811
- ],
- [
- 1.10878,
- 42.79898
- ],
- [
- 1.17532,
- 42.73429
- ],
- [
- 1.36326,
- 42.74155
- ],
- [
- 1.41137,
- 42.70939
- ],
- [
- 1.48061,
- 42.71034
- ],
- [
- 1.4813,
- 42.50107
- ],
- [
- 1.64436,
- 42.50203
- ],
- [
- 1.64328,
- 42.54245
- ],
- [
- 1.73041,
- 42.54342
- ],
- [
- 1.73164,
- 42.50118
- ],
- [
- 2.06386,
- 42.50164
- ],
- [
- 2.06456,
- 42.45902
- ],
- [
- 2.39693,
- 42.45994
- ],
- [
- 2.39768,
- 42.41784
- ],
- [
- 2.48048,
- 42.41797
- ],
- [
- 2.48098,
- 42.37594
- ],
- [
- 2.64479,
- 42.37626
- ],
- [
- 2.64448,
- 42.45924
- ],
- [
- 2.81133,
- 42.45961
- ],
- [
- 2.81126,
- 42.50104
- ],
- [
- 3.06388,
- 42.50085
- ],
- [
- 3.06388,
- 42.45915
- ],
- [
- 3.23078,
- 42.45934
- ],
- [
- 3.23049,
- 42.37644
- ],
- [
- 3.31415,
- 42.37604
- ],
- [
- 3.31412,
- 42.33399
- ],
- [
- 3.39785,
- 42.33404
- ],
- [
- 3.39739,
- 42.29009
- ],
- [
- 3.31389,
- 42.29084
- ],
- [
- 3.31397,
- 42.20702
- ],
- [
- 3.14759,
- 42.2073
- ],
- [
- 3.14759,
- 42.12606
- ],
- [
- 3.23055,
- 42.126
- ],
- [
- 3.24668,
- 41.95294
- ],
- [
- 3.19452,
- 41.85589
- ],
- [
- 3.06054,
- 41.76474
- ],
- [
- 2.78358,
- 41.63718
- ],
- [
- 2.26293,
- 41.42716
- ],
- [
- 2.16492,
- 41.29893
- ],
- [
- 1.86008,
- 41.22322
- ],
- [
- 1.3763,
- 41.11627
- ],
- [
- 1.17937,
- 41.04646
- ],
- [
- 1.08585,
- 41.04849
- ],
- [
- 0.75854,
- 40.81956
- ],
- [
- 0.9114,
- 40.73376
- ],
- [
- 0.87813,
- 40.67514
- ],
- [
- 0.66502,
- 40.53587
- ],
- [
- 0.55801,
- 40.55022
- ],
- [
- 0.43392,
- 40.37576
- ],
- [
- 0.26756,
- 40.19192
- ],
- [
- 0.16415,
- 40.06472
- ],
- [
- 0.07513,
- 40.01447
- ],
- [
- 0.01039,
- 39.89522
- ],
- [
- -0.09392,
- 39.81169
- ],
- [
- -0.18474,
- 39.63117
- ],
- [
- -0.29085,
- 39.50363
- ],
- [
- -0.28636,
- 39.33343
- ],
- [
- -0.18564,
- 39.17746
- ],
- [
- -0.21352,
- 39.15585
- ],
- [
- -0.11101,
- 38.97222
- ],
- [
- 0.00949,
- 38.88268
- ],
- [
- 0.12189,
- 38.87218
- ],
- [
- 0.23429,
- 38.79864
- ],
- [
- 0.25587,
- 38.72642
- ],
- [
- 0.09581,
- 38.61338
- ],
- [
- -0.0022,
- 38.60706
- ],
- [
- -0.05705,
- 38.52691
- ],
- [
- -0.27197,
- 38.47624
- ],
- [
- -0.37987,
- 38.39312
- ],
- [
- -0.38347,
- 38.33813
- ],
- [
- -0.45091,
- 38.33108
- ],
- [
- -0.50487,
- 38.28309
- ],
- [
- -0.48238,
- 38.19481
- ],
- [
- -0.42933,
- 38.16583
- ],
- [
- -0.45451,
- 38.14886
- ],
- [
- -0.584,
- 38.17219
- ],
- [
- -0.61367,
- 38.11986
- ],
- [
- -0.63705,
- 37.96122
- ],
- [
- -0.68111,
- 37.94562
- ],
- [
- -0.73237,
- 37.88107
- ],
- [
- -0.72158,
- 37.78306
- ],
- [
- -0.68831,
- 37.734
- ],
- [
- -0.66415,
- 37.62315
- ],
- [
- -0.71939,
- 37.58784
- ],
- [
- -0.91963,
- 37.53758
- ],
- [
- -1.11071,
- 37.51641
- ],
- [
- -1.33832,
- 37.52867
- ],
- [
- -1.44089,
- 37.39037
- ],
- [
- -1.6767,
- 37.27652
- ],
- [
- -1.85408,
- 36.91229
- ],
- [
- -2.06835,
- 36.69291
- ],
- [
- -2.21588,
- 36.66192
- ],
- [
- -2.37219,
- 36.78018
- ],
- [
- -2.68129,
- 36.65911
- ],
- [
- -2.92015,
- 36.66756
- ],
- [
- -3.09402,
- 36.71263
- ],
- [
- -3.46108,
- 36.65488
- ],
- [
- -3.72804,
- 36.69291
- ],
- [
- -4.37435,
- 36.66333
- ],
- [
- -4.65712,
- 36.44042
- ],
- [
- -4.9188,
- 36.45313
- ],
- [
- -5.16995,
- 36.35135
- ],
- [
- -5.28411,
- 36.19702
- ],
- [
- -5.26809,
- 36.12418
- ],
- [
- -5.35248,
- 36.12247
- ],
- [
- -5.35161,
- 36.04014
- ],
- [
- -5.43658,
- 36.03889
- ],
- [
- -5.43532,
- 36.00344
- ],
- [
- -5.68886,
- 36.00365
- ],
- [
- -5.68996,
- 36.04053
- ],
- [
- -5.85506,
- 36.03856
- ],
- [
- -5.85668,
- 36.12421
- ],
- [
- -5.93848,
- 36.12215
- ],
- [
- -5.94003,
- 36.16556
- ],
- [
- -5.99834,
- 36.1645
- ],
- [
- -6.03573,
- 36.1781
- ],
- [
- -6.07752,
- 36.22241
- ],
- [
- -6.15061,
- 36.28646
- ],
- [
- -6.23154,
- 36.37701
- ],
- [
- -6.33585,
- 36.53106
- ],
- [
- -6.32146,
- 36.58163
- ],
- [
- -6.40419,
- 36.6235
- ],
- [
- -6.47433,
- 36.74897
- ],
- [
- -6.41588,
- 36.79939
- ],
- [
- -6.49052,
- 36.91738
- ],
- [
- -6.62989,
- 37.0194
- ],
- [
- -6.87448,
- 37.10838
- ],
- [
- -7.04264,
- 37.18507
- ],
- [
- -7.26474,
- 37.18435
- ],
- [
- -7.37535,
- 37.15354
- ],
- [
- -7.40832,
- 37.16822
- ],
- [
- -7.42029,
- 37.21183
- ],
- [
- -7.42492,
- 37.23505
- ],
- [
- -7.43805,
- 37.2452
- ],
- [
- -7.44597,
- 37.33261
- ],
- [
- -7.4481,
- 37.39094
- ],
- [
- -7.46963,
- 37.40758
- ],
- [
- -7.4647,
- 37.45305
- ],
- [
- -7.50197,
- 37.51641
- ],
- [
- -7.51916,
- 37.52292
- ],
- [
- -7.52196,
- 37.57237
- ],
- [
- -7.45013,
- 37.66958
- ],
- [
- -7.4249,
- 37.75992
- ],
- [
- -7.31666,
- 37.83997
- ],
- [
- -7.26833,
- 37.98895
- ],
- [
- -7.15368,
- 38.01552
- ],
- [
- -7.11771,
- 38.05536
- ],
- [
- -7.0143,
- 38.02438
- ],
- [
- -6.99632,
- 38.10756
- ],
- [
- -6.96147,
- 38.20125
- ],
- [
- -7.08062,
- 38.15708
- ],
- [
- -7.34027,
- 38.44024
- ],
- [
- -7.26383,
- 38.73807
- ],
- [
- -7.04352,
- 38.87297
- ],
- [
- -7.06151,
- 38.90796
- ],
- [
- -6.96934,
- 39.01983
- ],
- [
- -7.00081,
- 39.08879
- ],
- [
- -7.15368,
- 39.09577
- ],
- [
- -7.15255,
- 39.16029
- ],
- [
- -7.24472,
- 39.19689
- ],
- [
- -7.25596,
- 39.28133
- ],
- [
- -7.33689,
- 39.35351
- ],
- [
- -7.3279,
- 39.45599
- ],
- [
- -7.51449,
- 39.58865
- ],
- [
- -7.55271,
- 39.67954
- ],
- [
- -7.05027,
- 39.67522
- ],
- [
- -6.99519,
- 39.81954
- ],
- [
- -6.92213,
- 39.87909
- ],
- [
- -6.88616,
- 40.02299
- ],
- [
- -7.04128,
- 40.13479
- ],
- [
- -7.01767,
- 40.26615
- ],
- [
- -6.8086,
- 40.34501
- ],
- [
- -6.86818,
- 40.44516
- ],
- [
- -6.85356,
- 40.60664
- ],
- [
- -6.83783,
- 40.87576
- ],
- [
- -6.9536,
- 41.03704
- ],
- [
- -6.80186,
- 41.03959
- ],
- [
- -6.76814,
- 41.13871
- ],
- [
- -6.64112,
- 41.26556
- ],
- [
- -6.56244,
- 41.26303
- ],
- [
- -6.21737,
- 41.5791
- ],
- [
- -6.31628,
- 41.64465
- ],
- [
- -6.51523,
- 41.64129
- ],
- [
- -6.58717,
- 41.68832
- ],
- [
- -6.54783,
- 41.85597
- ],
- [
- -6.62988,
- 41.91121
- ],
- [
- -7.13345,
- 41.94048
- ],
- [
- -7.16829,
- 41.87188
- ],
- [
- -7.42569,
- 41.78477
- ],
- [
- -7.95398,
- 41.84593
- ],
- [
- -8.13045,
- 41.78058
- ],
- [
- -8.25185,
- 41.90786
- ],
- [
- -8.12933,
- 42.03488
- ],
- [
- -8.24848,
- 42.1008
- ],
- [
- -8.36762,
- 42.05575
- ],
- [
- -8.60704,
- 42.03405
- ],
- [
- -8.89106,
- 41.82289
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "PNOA"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:23029",
- "EPSG:23030",
- "EPSG:23031",
- "EPSG:25828",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:32628",
- "EPSG:32629",
- "EPSG:32630",
- "EPSG:32631",
- "EPSG:3857",
- "EPSG:4230",
- "EPSG:4258",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "ES",
- "id": "PNOA-Spain",
- "license_url": "https://wiki.openstreetmap.org/w/index.php?title=ES:Fuentes_de_datos_potenciales_de_Espa%C3%B1a/Servidores_WMS",
- "name": "PNOA Spain",
- "privacy_policy_url": "https://www.idee.es/aviso-legal",
- "type": "wms",
- "url": "https://www.idee.es/wms/PNOA/PNOA?service=WMS&styles=default&LAYERS=PNOA&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Liikennevirasto",
- "url": "https://vayla.fi/web/en/open-data/digiroad/"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:2391",
- "EPSG:2392",
- "EPSG:2393",
- "EPSG:2394",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:3048",
- "EPSG:3067",
- "EPSG:3126",
- "EPSG:3127",
- "EPSG:3128",
- "EPSG:3129",
- "EPSG:3130",
- "EPSG:3131",
- "EPSG:3132",
- "EPSG:3133",
- "EPSG:3134",
- "EPSG:3135",
- "EPSG:3136",
- "EPSG:3137",
- "EPSG:3138",
- "EPSG:3386",
- "EPSG:3387",
- "EPSG:3395",
- "EPSG:3857",
- "EPSG:3873",
- "EPSG:3874",
- "EPSG:3875",
- "EPSG:3876",
- "EPSG:3877",
- "EPSG:3878",
- "EPSG:3879",
- "EPSG:3880",
- "EPSG:3881",
- "EPSG:3882",
- "EPSG:3883",
- "EPSG:3884",
- "EPSG:3885",
- "EPSG:4123",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:4937",
- "EPSG:5048"
- ],
- "category": "other",
- "country_code": "FI",
- "description": "Digiroad national road network from the Finnish Transport Agency, functional road classes.",
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/V%C3%A4yl%C3%A4virasto_logo.svg/200px-V%C3%A4yl%C3%A4virasto_logo.svg.png",
- "id": "fta-digiroad-functional",
- "license_url": "https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/fi/Digiroad_permission_23032017.pdf",
- "max_zoom": 20,
- "min_zoom": 3,
- "name": "FTIA Road Networkk",
- "overlay": true,
- "privacy_policy_url": "https://vayla.fi/web/en/contact-information/data-protection",
- "type": "wms",
- "url": "https://julkinen.vayla.fi/inspirepalvelu/wms?LAYERS=digiroad:dr_tielinkki_toim_lk&STYLES=digiroad:DR_Tielinkki_toiminnallinen_luokka_2018&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Väylävirasto",
- "url": "https://vayla.fi/web/en/open-data/digiroad/"
- },
- "category": "other",
- "country_code": "FI",
- "description": "Digiroad national road network from the Finnish Transport Agency with several options for map layers.",
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/V%C3%A4yl%C3%A4virasto_logo.svg/200px-V%C3%A4yl%C3%A4virasto_logo.svg.png",
- "id": "fta-digiroad-option",
- "license_url": "https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/fi/Digiroad_permission_23032017.pdf",
- "max_zoom": 20,
- "min_zoom": 3,
- "name": "FTA Road Network options",
- "overlay": true,
- "privacy_policy_url": "https://vayla.fi/web/en/contact-information/data-protection",
- "type": "wms_endpoint",
- "url": "https://julkinen.vayla.fi/inspirepalvelu/wms?service=wms&request=getCapabilities"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 24.26948,
- 59.8593
- ],
- [
- 24.26674,
- 60.22549
- ],
- [
- 24.55307,
- 60.36703
- ],
- [
- 24.50363,
- 60.49038
- ],
- [
- 24.76387,
- 60.60079
- ],
- [
- 25.00625,
- 60.54175
- ],
- [
- 24.90051,
- 60.38197
- ],
- [
- 24.9884,
- 60.35073
- ],
- [
- 25.06943,
- 60.44096
- ],
- [
- 25.17517,
- 60.45248
- ],
- [
- 25.18066,
- 60.34122
- ],
- [
- 25.27954,
- 60.2943
- ],
- [
- 25.19577,
- 60.08813
- ],
- [
- 24.26948,
- 59.8593
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Espoon, Helsingin ja Vantaan kaupungit, Kirkkonummen ja Nurmijärven kunnat sekä HSL ja HSY",
- "url": "https://hri.fi/data/en_GB/dataset/paakaupunkiseudun-ortokuva-2017"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3879"
- ],
- "best": true,
- "country_code": "FI",
- "description": "Ortophotos from the municipalities of Espoo, Helsinki, Vantaa, Kirkkonummi and Nurmijärvi + HSL and HSY",
- "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/fi/hri_logo.png",
- "id": "hri-orto",
- "license_url": "https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/fi/HRI_permission_07082018.pdf",
- "max_zoom": 19,
- "name": "Helsinki region orthophoto",
- "type": "wms",
- "url": "https://kartta.hsy.fi/geoserver/ows?SERVICE=WMS&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=taustakartat_ja_aluejaot:Ortoilmakuva_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Maanmittauslaitos",
- "url": "https://www.maanmittauslaitos.fi/en"
- },
- "best": true,
- "country_code": "FI",
- "description": "Ortophotos from the National Land Survey of Finland",
- "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png",
- "id": "mml-orto",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=356296#p356296",
- "max_zoom": 19,
- "min_zoom": 2,
- "name": "MML Orthophoto",
- "type": "tms",
- "url": "https://tiles.kartat.kapsi.fi/ortokuva/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Maanmittauslaitos",
- "url": "https://www.maanmittauslaitos.fi/en"
- },
- "country_code": "FI",
- "description": "Background map from the National Land Survey of Finland",
- "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png",
- "id": "mml-tausta",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=356296#p356296",
- "max_zoom": 19,
- "min_zoom": 2,
- "name": "MML Background Map",
- "type": "tms",
- "url": "https://tiles.kartat.kapsi.fi/taustakartta/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Maanmittauslaitos",
- "url": "https://www.maanmittauslaitos.fi/en"
- },
- "country_code": "FI",
- "description": "Topographic map from the National Land Survey of Finland",
- "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png",
- "id": "mml-topo",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=356296#p356296",
- "max_zoom": 19,
- "min_zoom": 2,
- "name": "MML Topographic Map",
- "type": "tms",
- "url": "https://tiles.kartat.kapsi.fi/peruskartta/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.20773,
- 60.48192
- ],
- [
- 22.18898,
- 60.46167
- ],
- [
- 22.15111,
- 60.4647
- ],
- [
- 22.11991,
- 60.46316
- ],
- [
- 22.11448,
- 60.44459
- ],
- [
- 22.12533,
- 60.43892
- ],
- [
- 22.14443,
- 60.43815
- ],
- [
- 22.20536,
- 60.44335
- ],
- [
- 22.20443,
- 60.43465
- ],
- [
- 22.14808,
- 60.41251
- ],
- [
- 22.14125,
- 60.40444
- ],
- [
- 22.17104,
- 60.38313
- ],
- [
- 22.2254,
- 60.38328
- ],
- [
- 22.28446,
- 60.39091
- ],
- [
- 22.27423,
- 60.40519
- ],
- [
- 22.30929,
- 60.41024
- ],
- [
- 22.36908,
- 60.43517
- ],
- [
- 22.37033,
- 60.44067
- ],
- [
- 22.33819,
- 60.47484
- ],
- [
- 22.34456,
- 60.48065
- ],
- [
- 22.36,
- 60.47545
- ],
- [
- 22.37127,
- 60.48301
- ],
- [
- 22.20773,
- 60.48192
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Turun kaupunki",
- "url": "https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326"
- ],
- "best": true,
- "country_code": "FI",
- "description": "Ortophotos from the city of Turku",
- "end_date": "2018-07-14",
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Turku.vaakuna.svg/200px-Turku.vaakuna.svg.png",
- "id": "turku-orto-2018-true",
- "license_url": "https://dev.turku.fi/openstreetmap-lupa.pdf",
- "max_zoom": 20,
- "min_zoom": 4,
- "name": "City of Turku ortophoto - 2018 True ortho",
- "privacy_policy_url": "https://www.turku.fi/turku-tieto/tietosuoja/kayttotiedot-ja-evasteet",
- "start_date": "2018-07-14",
- "type": "wms",
- "url": "https://opaskartta.turku.fi/TeklaOGCWeb/WMS.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ilmakuva 2018 True ortho&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 21.48608,
- 60.90844
- ],
- [
- 21.49956,
- 60.48377
- ],
- [
- 21.08957,
- 60.5096
- ],
- [
- 21.0486,
- 60.22035
- ],
- [
- 21.00189,
- 60.21285
- ],
- [
- 21.00908,
- 60.09411
- ],
- [
- 21.09531,
- 60.03889
- ],
- [
- 21.10682,
- 59.94328
- ],
- [
- 21.26923,
- 59.88167
- ],
- [
- 21.18227,
- 59.70233
- ],
- [
- 22.11364,
- 59.70921
- ],
- [
- 22.05903,
- 59.8557
- ],
- [
- 22.46075,
- 60.18535
- ],
- [
- 23.15785,
- 60.18892
- ],
- [
- 23.14815,
- 60.91835
- ],
- [
- 22.31595,
- 60.91512
- ],
- [
- 21.48608,
- 60.90844
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Turun kaupunki",
- "url": "https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326"
- ],
- "best": true,
- "country_code": "FI",
- "description": "Ortophotos from the city of Turku",
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Turku.vaakuna.svg/200px-Turku.vaakuna.svg.png",
- "id": "turku-orto",
- "license_url": "https://dev.turku.fi/openstreetmap-lupa.pdf",
- "max_zoom": 20,
- "min_zoom": 4,
- "name": "City of Turku ortophoto",
- "privacy_policy_url": "https://www.turku.fi/turku-tieto/tietosuoja/kayttotiedot-ja-evasteet",
- "type": "wms",
- "url": "https://opaskartta.turku.fi/TeklaOGCWeb/WMS.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ilmakuva&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 2.94012,
- 44.63388
- ],
- [
- 2.99719,
- 44.63393
- ],
- [
- 2.99717,
- 44.64734
- ],
- [
- 3.01597,
- 44.64735
- ],
- [
- 3.01593,
- 44.67412
- ],
- [
- 3.03495,
- 44.67413
- ],
- [
- 3.0349,
- 44.70152
- ],
- [
- 3.05363,
- 44.70154
- ],
- [
- 3.05357,
- 44.7419
- ],
- [
- 3.07233,
- 44.74191
- ],
- [
- 3.07222,
- 44.80917
- ],
- [
- 3.09216,
- 44.80919
- ],
- [
- 3.09214,
- 44.82213
- ],
- [
- 3.13014,
- 44.82216
- ],
- [
- 3.13005,
- 44.87707
- ],
- [
- 3.14856,
- 44.87709
- ],
- [
- 3.14858,
- 44.8637
- ],
- [
- 3.16823,
- 44.86371
- ],
- [
- 3.16825,
- 44.85003
- ],
- [
- 3.2064,
- 44.85006
- ],
- [
- 3.20638,
- 44.86284
- ],
- [
- 3.24395,
- 44.86287
- ],
- [
- 3.24393,
- 44.87679
- ],
- [
- 3.26315,
- 44.87681
- ],
- [
- 3.26308,
- 44.91752
- ],
- [
- 3.32004,
- 44.91757
- ],
- [
- 3.32002,
- 44.93033
- ],
- [
- 3.33908,
- 44.93035
- ],
- [
- 3.33906,
- 44.9442
- ],
- [
- 3.377,
- 44.94423
- ],
- [
- 3.37702,
- 44.93029
- ],
- [
- 3.39603,
- 44.9303
- ],
- [
- 3.39612,
- 44.87627
- ],
- [
- 3.41483,
- 44.87629
- ],
- [
- 3.41489,
- 44.83553
- ],
- [
- 3.43334,
- 44.83554
- ],
- [
- 3.43338,
- 44.80828
- ],
- [
- 3.45255,
- 44.80829
- ],
- [
- 3.45258,
- 44.79463
- ],
- [
- 3.50893,
- 44.79468
- ],
- [
- 3.5089,
- 44.80815
- ],
- [
- 3.60426,
- 44.80823
- ],
- [
- 3.60422,
- 44.83482
- ],
- [
- 3.62361,
- 44.83484
- ],
- [
- 3.62357,
- 44.86166
- ],
- [
- 3.64248,
- 44.86167
- ],
- [
- 3.64255,
- 44.8211
- ],
- [
- 3.66101,
- 44.82112
- ],
- [
- 3.66103,
- 44.80777
- ],
- [
- 3.6993,
- 44.8078
- ],
- [
- 3.69928,
- 44.82099
- ],
- [
- 3.73611,
- 44.82102
- ],
- [
- 3.73618,
- 44.77971
- ],
- [
- 3.77511,
- 44.77974
- ],
- [
- 3.77515,
- 44.75223
- ],
- [
- 3.81184,
- 44.75226
- ],
- [
- 3.81186,
- 44.7392
- ],
- [
- 3.83118,
- 44.73922
- ],
- [
- 3.83121,
- 44.72468
- ],
- [
- 3.88782,
- 44.72472
- ],
- [
- 3.8878,
- 44.73818
- ],
- [
- 3.92563,
- 44.73821
- ],
- [
- 3.9256,
- 44.75167
- ],
- [
- 3.94541,
- 44.75168
- ],
- [
- 3.94537,
- 44.77847
- ],
- [
- 3.96437,
- 44.77848
- ],
- [
- 3.96435,
- 44.79193
- ],
- [
- 4.00332,
- 44.79196
- ],
- [
- 4.0033,
- 44.80526
- ],
- [
- 4.02169,
- 44.80527
- ],
- [
- 4.02167,
- 44.81857
- ],
- [
- 4.05965,
- 44.8186
- ],
- [
- 4.05961,
- 44.84492
- ],
- [
- 4.07981,
- 44.84494
- ],
- [
- 4.07979,
- 44.85735
- ],
- [
- 4.17388,
- 44.85743
- ],
- [
- 4.17386,
- 44.87055
- ],
- [
- 4.19326,
- 44.87056
- ],
- [
- 4.19323,
- 44.88427
- ],
- [
- 4.21404,
- 44.88429
- ],
- [
- 4.214,
- 44.91002
- ],
- [
- 4.23241,
- 44.91004
- ],
- [
- 4.23237,
- 44.93731
- ],
- [
- 4.27155,
- 44.93734
- ],
- [
- 4.27153,
- 44.9503
- ],
- [
- 4.32887,
- 44.95034
- ],
- [
- 4.32878,
- 45.00367
- ],
- [
- 4.34893,
- 45.00368
- ],
- [
- 4.3489,
- 45.01707
- ],
- [
- 4.40608,
- 45.01711
- ],
- [
- 4.40599,
- 45.071
- ],
- [
- 4.38847,
- 45.07099
- ],
- [
- 4.38845,
- 45.0846
- ],
- [
- 4.40794,
- 45.08461
- ],
- [
- 4.40792,
- 45.09663
- ],
- [
- 4.48436,
- 45.09669
- ],
- [
- 4.48429,
- 45.13705
- ],
- [
- 4.46636,
- 45.13703
- ],
- [
- 4.46634,
- 45.1502
- ],
- [
- 4.48645,
- 45.15022
- ],
- [
- 4.4864,
- 45.17724
- ],
- [
- 4.50655,
- 45.17726
- ],
- [
- 4.50644,
- 45.24501
- ],
- [
- 4.48813,
- 45.24499
- ],
- [
- 4.48811,
- 45.25921
- ],
- [
- 4.46986,
- 45.25919
- ],
- [
- 4.46984,
- 45.27298
- ],
- [
- 4.45088,
- 45.27297
- ],
- [
- 4.45086,
- 45.28642
- ],
- [
- 4.39368,
- 45.28637
- ],
- [
- 4.39363,
- 45.31352
- ],
- [
- 4.37509,
- 45.3135
- ],
- [
- 4.37507,
- 45.32741
- ],
- [
- 4.39507,
- 45.32742
- ],
- [
- 4.39503,
- 45.35458
- ],
- [
- 4.37679,
- 45.35457
- ],
- [
- 4.37676,
- 45.36855
- ],
- [
- 4.35766,
- 45.36853
- ],
- [
- 4.35763,
- 45.38234
- ],
- [
- 4.28146,
- 45.38227
- ],
- [
- 4.28143,
- 45.39688
- ],
- [
- 4.24446,
- 45.39685
- ],
- [
- 4.24443,
- 45.41079
- ],
- [
- 4.14812,
- 45.41071
- ],
- [
- 4.14814,
- 45.39807
- ],
- [
- 4.12919,
- 45.39805
- ],
- [
- 4.12921,
- 45.38409
- ],
- [
- 4.09021,
- 45.38406
- ],
- [
- 4.09024,
- 45.37121
- ],
- [
- 4.01355,
- 45.37115
- ],
- [
- 4.01353,
- 45.3861
- ],
- [
- 3.91709,
- 45.38602
- ],
- [
- 3.91707,
- 45.39974
- ],
- [
- 3.93757,
- 45.39975
- ],
- [
- 3.93755,
- 45.41311
- ],
- [
- 3.97528,
- 45.41315
- ],
- [
- 3.97526,
- 45.42621
- ],
- [
- 3.99537,
- 45.42622
- ],
- [
- 3.9957,
- 45.52096
- ],
- [
- 3.97778,
- 45.52094
- ],
- [
- 3.97769,
- 45.57439
- ],
- [
- 3.95818,
- 45.57437
- ],
- [
- 3.95815,
- 45.58837
- ],
- [
- 3.9396,
- 45.58835
- ],
- [
- 3.93958,
- 45.60262
- ],
- [
- 3.92023,
- 45.60261
- ],
- [
- 3.9202,
- 45.61646
- ],
- [
- 3.88189,
- 45.61643
- ],
- [
- 3.88185,
- 45.64328
- ],
- [
- 3.84413,
- 45.64325
- ],
- [
- 3.84411,
- 45.65709
- ],
- [
- 3.82617,
- 45.65707
- ],
- [
- 3.82612,
- 45.68389
- ],
- [
- 3.80722,
- 45.68387
- ],
- [
- 3.80713,
- 45.73758
- ],
- [
- 3.78821,
- 45.73756
- ],
- [
- 3.78819,
- 45.7518
- ],
- [
- 3.76885,
- 45.75178
- ],
- [
- 3.7688,
- 45.77897
- ],
- [
- 3.75072,
- 45.77895
- ],
- [
- 3.75058,
- 45.86066
- ],
- [
- 3.76967,
- 45.86067
- ],
- [
- 3.76958,
- 45.91433
- ],
- [
- 3.75166,
- 45.91432
- ],
- [
- 3.75164,
- 45.92809
- ],
- [
- 3.7329,
- 45.92807
- ],
- [
- 3.73285,
- 45.95472
- ],
- [
- 3.81018,
- 45.95478
- ],
- [
- 3.81016,
- 45.96823
- ],
- [
- 3.8496,
- 45.96826
- ],
- [
- 3.84951,
- 46.02162
- ],
- [
- 3.83188,
- 46.0216
- ],
- [
- 3.83179,
- 46.07591
- ],
- [
- 3.8505,
- 46.07592
- ],
- [
- 3.85046,
- 46.10295
- ],
- [
- 3.83247,
- 46.10294
- ],
- [
- 3.83234,
- 46.18456
- ],
- [
- 3.81422,
- 46.18455
- ],
- [
- 3.81415,
- 46.22442
- ],
- [
- 3.83369,
- 46.22444
- ],
- [
- 3.83366,
- 46.2381
- ],
- [
- 3.85289,
- 46.23812
- ],
- [
- 3.85287,
- 46.25147
- ],
- [
- 3.89314,
- 46.25151
- ],
- [
- 3.89312,
- 46.26447
- ],
- [
- 3.91306,
- 46.26448
- ],
- [
- 3.91303,
- 46.27793
- ],
- [
- 3.95189,
- 46.27796
- ],
- [
- 3.95187,
- 46.29082
- ],
- [
- 3.97152,
- 46.29084
- ],
- [
- 3.9715,
- 46.30369
- ],
- [
- 4.0105,
- 46.30373
- ],
- [
- 4.01048,
- 46.31776
- ],
- [
- 4.02983,
- 46.31778
- ],
- [
- 4.02978,
- 46.34428
- ],
- [
- 4.0116,
- 46.34427
- ],
- [
- 4.01146,
- 46.42534
- ],
- [
- 4.03153,
- 46.42536
- ],
- [
- 4.03146,
- 46.4658
- ],
- [
- 4.01324,
- 46.46578
- ],
- [
- 4.01322,
- 46.47938
- ],
- [
- 3.99437,
- 46.47936
- ],
- [
- 3.99435,
- 46.49361
- ],
- [
- 3.9746,
- 46.4936
- ],
- [
- 3.97457,
- 46.50753
- ],
- [
- 3.87754,
- 46.50745
- ],
- [
- 3.8775,
- 46.53478
- ],
- [
- 3.85836,
- 46.53476
- ],
- [
- 3.85833,
- 46.54832
- ],
- [
- 3.81869,
- 46.54828
- ],
- [
- 3.81871,
- 46.53553
- ],
- [
- 3.79924,
- 46.53552
- ],
- [
- 3.79922,
- 46.54907
- ],
- [
- 3.76104,
- 46.54904
- ],
- [
- 3.76092,
- 46.61681
- ],
- [
- 3.74233,
- 46.61679
- ],
- [
- 3.74228,
- 46.64396
- ],
- [
- 3.72286,
- 46.64395
- ],
- [
- 3.72281,
- 46.67104
- ],
- [
- 3.70387,
- 46.67102
- ],
- [
- 3.70385,
- 46.68467
- ],
- [
- 3.68411,
- 46.68466
- ],
- [
- 3.68406,
- 46.712
- ],
- [
- 3.66484,
- 46.71198
- ],
- [
- 3.66479,
- 46.73904
- ],
- [
- 3.64576,
- 46.73902
- ],
- [
- 3.64572,
- 46.76634
- ],
- [
- 3.62575,
- 46.76632
- ],
- [
- 3.62573,
- 46.77971
- ],
- [
- 3.56723,
- 46.77966
- ],
- [
- 3.56725,
- 46.76631
- ],
- [
- 3.54715,
- 46.76629
- ],
- [
- 3.54719,
- 46.73928
- ],
- [
- 3.52716,
- 46.73927
- ],
- [
- 3.52723,
- 46.6989
- ],
- [
- 3.48774,
- 46.69887
- ],
- [
- 3.48776,
- 46.68594
- ],
- [
- 3.46796,
- 46.68593
- ],
- [
- 3.46794,
- 46.69941
- ],
- [
- 3.46792,
- 46.71279
- ],
- [
- 3.44865,
- 46.71278
- ],
- [
- 3.44863,
- 46.72679
- ],
- [
- 3.35043,
- 46.72671
- ],
- [
- 3.35048,
- 46.6999
- ],
- [
- 3.33039,
- 46.69988
- ],
- [
- 3.33034,
- 46.7272
- ],
- [
- 3.23272,
- 46.72712
- ],
- [
- 3.23274,
- 46.71351
- ],
- [
- 3.2129,
- 46.7135
- ],
- [
- 3.21293,
- 46.70013
- ],
- [
- 3.17354,
- 46.7001
- ],
- [
- 3.1735,
- 46.72751
- ],
- [
- 3.15412,
- 46.72749
- ],
- [
- 3.1541,
- 46.74073
- ],
- [
- 3.11478,
- 46.7407
- ],
- [
- 3.11475,
- 46.75428
- ],
- [
- 3.07534,
- 46.75424
- ],
- [
- 3.0753,
- 46.78135
- ],
- [
- 3.05597,
- 46.78134
- ],
- [
- 3.05592,
- 46.80831
- ],
- [
- 2.99704,
- 46.80826
- ],
- [
- 2.99702,
- 46.82196
- ],
- [
- 2.93794,
- 46.82191
- ],
- [
- 2.93797,
- 46.80826
- ],
- [
- 2.89866,
- 46.80823
- ],
- [
- 2.89869,
- 46.79424
- ],
- [
- 2.87899,
- 46.79422
- ],
- [
- 2.87901,
- 46.78104
- ],
- [
- 2.85942,
- 46.78103
- ],
- [
- 2.85944,
- 46.76771
- ],
- [
- 2.84004,
- 46.76769
- ],
- [
- 2.84007,
- 46.75447
- ],
- [
- 2.7414,
- 46.75439
- ],
- [
- 2.74138,
- 46.76682
- ],
- [
- 2.70234,
- 46.76679
- ],
- [
- 2.70236,
- 46.75389
- ],
- [
- 2.68266,
- 46.75387
- ],
- [
- 2.68268,
- 46.74048
- ],
- [
- 2.66349,
- 46.74046
- ],
- [
- 2.66351,
- 46.7259
- ],
- [
- 2.64342,
- 46.72588
- ],
- [
- 2.64344,
- 46.71309
- ],
- [
- 2.62414,
- 46.71308
- ],
- [
- 2.62417,
- 46.69981
- ],
- [
- 2.60397,
- 46.69979
- ],
- [
- 2.60399,
- 46.68584
- ],
- [
- 2.56512,
- 46.68581
- ],
- [
- 2.56515,
- 46.67261
- ],
- [
- 2.54593,
- 46.6726
- ],
- [
- 2.546,
- 46.63215
- ],
- [
- 2.56592,
- 46.63217
- ],
- [
- 2.56595,
- 46.61811
- ],
- [
- 2.54564,
- 46.61809
- ],
- [
- 2.54569,
- 46.59072
- ],
- [
- 2.56642,
- 46.59074
- ],
- [
- 2.56644,
- 46.57754
- ],
- [
- 2.5855,
- 46.57756
- ],
- [
- 2.58552,
- 46.56472
- ],
- [
- 2.56613,
- 46.5647
- ],
- [
- 2.56616,
- 46.55062
- ],
- [
- 2.46828,
- 46.55055
- ],
- [
- 2.4683,
- 46.53582
- ],
- [
- 2.33212,
- 46.53571
- ],
- [
- 2.33217,
- 46.50886
- ],
- [
- 2.31265,
- 46.50884
- ],
- [
- 2.31267,
- 46.49534
- ],
- [
- 2.29288,
- 46.49533
- ],
- [
- 2.2929,
- 46.48182
- ],
- [
- 2.27487,
- 46.4818
- ],
- [
- 2.27492,
- 46.45442
- ],
- [
- 2.25539,
- 46.4544
- ],
- [
- 2.25553,
- 46.37349
- ],
- [
- 2.27595,
- 46.37351
- ],
- [
- 2.27604,
- 46.32087
- ],
- [
- 2.31456,
- 46.32091
- ],
- [
- 2.31458,
- 46.30704
- ],
- [
- 2.35371,
- 46.30707
- ],
- [
- 2.35373,
- 46.29297
- ],
- [
- 2.39384,
- 46.293
- ],
- [
- 2.39389,
- 46.26729
- ],
- [
- 2.45157,
- 46.26733
- ],
- [
- 2.4516,
- 46.25349
- ],
- [
- 2.47094,
- 46.25351
- ],
- [
- 2.47098,
- 46.22656
- ],
- [
- 2.49151,
- 46.22657
- ],
- [
- 2.49155,
- 46.19933
- ],
- [
- 2.51088,
- 46.19934
- ],
- [
- 2.51093,
- 46.17278
- ],
- [
- 2.53117,
- 46.1728
- ],
- [
- 2.53138,
- 46.05135
- ],
- [
- 2.55163,
- 46.05137
- ],
- [
- 2.55166,
- 46.03777
- ],
- [
- 2.57056,
- 46.03778
- ],
- [
- 2.57068,
- 45.96994
- ],
- [
- 2.55144,
- 45.96993
- ],
- [
- 2.55146,
- 45.95662
- ],
- [
- 2.53226,
- 45.9566
- ],
- [
- 2.53228,
- 45.94301
- ],
- [
- 2.51307,
- 45.94299
- ],
- [
- 2.51313,
- 45.90203
- ],
- [
- 2.47494,
- 45.902
- ],
- [
- 2.47496,
- 45.88882
- ],
- [
- 2.43619,
- 45.88879
- ],
- [
- 2.43622,
- 45.87533
- ],
- [
- 2.41721,
- 45.87531
- ],
- [
- 2.41725,
- 45.84794
- ],
- [
- 2.37847,
- 45.84791
- ],
- [
- 2.3785,
- 45.83397
- ],
- [
- 2.35952,
- 45.83396
- ],
- [
- 2.35956,
- 45.80708
- ],
- [
- 2.37873,
- 45.8071
- ],
- [
- 2.37875,
- 45.79358
- ],
- [
- 2.3987,
- 45.79359
- ],
- [
- 2.39872,
- 45.78035
- ],
- [
- 2.41825,
- 45.78036
- ],
- [
- 2.41832,
- 45.74
- ],
- [
- 2.45722,
- 45.74003
- ],
- [
- 2.45724,
- 45.7267
- ],
- [
- 2.47589,
- 45.72671
- ],
- [
- 2.47591,
- 45.71324
- ],
- [
- 2.49533,
- 45.71325
- ],
- [
- 2.49542,
- 45.65913
- ],
- [
- 2.45769,
- 45.6591
- ],
- [
- 2.45776,
- 45.61834
- ],
- [
- 2.43912,
- 45.61833
- ],
- [
- 2.43919,
- 45.57766
- ],
- [
- 2.4585,
- 45.57768
- ],
- [
- 2.45855,
- 45.55053
- ],
- [
- 2.47809,
- 45.55055
- ],
- [
- 2.47811,
- 45.53725
- ],
- [
- 2.49755,
- 45.53726
- ],
- [
- 2.49759,
- 45.51068
- ],
- [
- 2.47855,
- 45.51066
- ],
- [
- 2.47864,
- 45.45613
- ],
- [
- 2.45978,
- 45.45612
- ],
- [
- 2.45987,
- 45.40176
- ],
- [
- 2.42249,
- 45.40173
- ],
- [
- 2.42247,
- 45.41528
- ],
- [
- 2.40232,
- 45.41527
- ],
- [
- 2.40229,
- 45.42882
- ],
- [
- 2.3256,
- 45.42876
- ],
- [
- 2.32567,
- 45.38796
- ],
- [
- 2.34562,
- 45.38798
- ],
- [
- 2.34566,
- 45.36111
- ],
- [
- 2.32626,
- 45.36109
- ],
- [
- 2.32628,
- 45.34721
- ],
- [
- 2.30738,
- 45.3472
- ],
- [
- 2.3074,
- 45.3336
- ],
- [
- 2.28811,
- 45.33358
- ],
- [
- 2.28813,
- 45.32082
- ],
- [
- 2.26963,
- 45.3208
- ],
- [
- 2.26966,
- 45.30621
- ],
- [
- 2.25066,
- 45.3062
- ],
- [
- 2.25068,
- 45.29251
- ],
- [
- 2.23169,
- 45.2925
- ],
- [
- 2.23171,
- 45.27924
- ],
- [
- 2.213,
- 45.27922
- ],
- [
- 2.21305,
- 45.25204
- ],
- [
- 2.19374,
- 45.25202
- ],
- [
- 2.19376,
- 45.23811
- ],
- [
- 2.17561,
- 45.2381
- ],
- [
- 2.17574,
- 45.15768
- ],
- [
- 2.15735,
- 45.15767
- ],
- [
- 2.15744,
- 45.10295
- ],
- [
- 2.12024,
- 45.10292
- ],
- [
- 2.12026,
- 45.08955
- ],
- [
- 2.10067,
- 45.08953
- ],
- [
- 2.10069,
- 45.07544
- ],
- [
- 2.08246,
- 45.07543
- ],
- [
- 2.08255,
- 45.0216
- ],
- [
- 2.10255,
- 45.02161
- ],
- [
- 2.1026,
- 44.99445
- ],
- [
- 2.04574,
- 44.99441
- ],
- [
- 2.04585,
- 44.92753
- ],
- [
- 2.06578,
- 44.92755
- ],
- [
- 2.06589,
- 44.85969
- ],
- [
- 2.0857,
- 44.8597
- ],
- [
- 2.08572,
- 44.84581
- ],
- [
- 2.10556,
- 44.84583
- ],
- [
- 2.1056,
- 44.81933
- ],
- [
- 2.12474,
- 44.81934
- ],
- [
- 2.12477,
- 44.80551
- ],
- [
- 2.14351,
- 44.80553
- ],
- [
- 2.14355,
- 44.7786
- ],
- [
- 2.12561,
- 44.77858
- ],
- [
- 2.1257,
- 44.72427
- ],
- [
- 2.10665,
- 44.72426
- ],
- [
- 2.10671,
- 44.68423
- ],
- [
- 2.12634,
- 44.68424
- ],
- [
- 2.12636,
- 44.67074
- ],
- [
- 2.14598,
- 44.67075
- ],
- [
- 2.14607,
- 44.61644
- ],
- [
- 2.18396,
- 44.61648
- ],
- [
- 2.18398,
- 44.60378
- ],
- [
- 2.24042,
- 44.60383
- ],
- [
- 2.24037,
- 44.63095
- ],
- [
- 2.25948,
- 44.63097
- ],
- [
- 2.25946,
- 44.64493
- ],
- [
- 2.31668,
- 44.64498
- ],
- [
- 2.3167,
- 44.63088
- ],
- [
- 2.33615,
- 44.6309
- ],
- [
- 2.33617,
- 44.61758
- ],
- [
- 2.37242,
- 44.61761
- ],
- [
- 2.3724,
- 44.63158
- ],
- [
- 2.41105,
- 44.63161
- ],
- [
- 2.41107,
- 44.61907
- ],
- [
- 2.44922,
- 44.61911
- ],
- [
- 2.4492,
- 44.63232
- ],
- [
- 2.50486,
- 44.63237
- ],
- [
- 2.50481,
- 44.65976
- ],
- [
- 2.52461,
- 44.65977
- ],
- [
- 2.52457,
- 44.68717
- ],
- [
- 2.54225,
- 44.68719
- ],
- [
- 2.54223,
- 44.70122
- ],
- [
- 2.58071,
- 44.70125
- ],
- [
- 2.5806,
- 44.76834
- ],
- [
- 2.61769,
- 44.76837
- ],
- [
- 2.61762,
- 44.80884
- ],
- [
- 2.63676,
- 44.80885
- ],
- [
- 2.63669,
- 44.84929
- ],
- [
- 2.67331,
- 44.84933
- ],
- [
- 2.67329,
- 44.86252
- ],
- [
- 2.69338,
- 44.86253
- ],
- [
- 2.69333,
- 44.88943
- ],
- [
- 2.73052,
- 44.88946
- ],
- [
- 2.73048,
- 44.91645
- ],
- [
- 2.74992,
- 44.91646
- ],
- [
- 2.75005,
- 44.83647
- ],
- [
- 2.80733,
- 44.83652
- ],
- [
- 2.80731,
- 44.8491
- ],
- [
- 2.82638,
- 44.84912
- ],
- [
- 2.8264,
- 44.83628
- ],
- [
- 2.8457,
- 44.8363
- ],
- [
- 2.84577,
- 44.79571
- ],
- [
- 2.86422,
- 44.79573
- ],
- [
- 2.86426,
- 44.76865
- ],
- [
- 2.88399,
- 44.76866
- ],
- [
- 2.88403,
- 44.74197
- ],
- [
- 2.90203,
- 44.74198
- ],
- [
- 2.90214,
- 44.67432
- ],
- [
- 2.92198,
- 44.67434
- ],
- [
- 2.92202,
- 44.6473
- ],
- [
- 2.9401,
- 44.64731
- ],
- [
- 2.94012,
- 44.63388
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophotographie CRAIG/Sintegra/IGN 2013",
- "url": "http://ids.craig.fr/geocat/srv/fre/catalog.search?node=srv#/metadata/8cabc987-829c-4c9f-943b-6a0e255cd73"
- },
- "country_code": "FR",
- "end_date": "2013",
- "id": "CRAIG-Auvergne-2013",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG",
- "max_zoom": 21,
- "name": "Auvergne 2013 25cm CRAIG",
- "start_date": "2013",
- "type": "tms",
- "url": "https://tiles.craig.fr/osm/wmts/1.0.0/ortho_2013/webmercator/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 2.49389,
- 46.66829
- ],
- [
- 2.71362,
- 46.84141
- ],
- [
- 3.64746,
- 46.80758
- ],
- [
- 4.04846,
- 46.48327
- ],
- [
- 4.03747,
- 46.24825
- ],
- [
- 4.46044,
- 46.25965
- ],
- [
- 4.4934,
- 46.14559
- ],
- [
- 4.38354,
- 46.09229
- ],
- [
- 4.45495,
- 45.69084
- ],
- [
- 4.76257,
- 45.57176
- ],
- [
- 4.81201,
- 45.34443
- ],
- [
- 4.22424,
- 44.84419
- ],
- [
- 3.86169,
- 44.696
- ],
- [
- 3.37829,
- 44.80523
- ],
- [
- 3.33435,
- 44.89091
- ],
- [
- 3.18054,
- 44.82471
- ],
- [
- 3.03222,
- 44.60612
- ],
- [
- 2.92785,
- 44.60221
- ],
- [
- 2.71911,
- 44.85198
- ],
- [
- 2.51037,
- 44.60221
- ],
- [
- 2.12585,
- 44.58265
- ],
- [
- 2.005,
- 44.97257
- ],
- [
- 2.30712,
- 45.46784
- ],
- [
- 2.43347,
- 45.44087
- ],
- [
- 2.41149,
- 45.72919
- ],
- [
- 2.34558,
- 45.82402
- ],
- [
- 2.54882,
- 45.97979
- ],
- [
- 2.46093,
- 46.22166
- ],
- [
- 2.21374,
- 46.33935
- ],
- [
- 2.27828,
- 46.53903
- ],
- [
- 2.54882,
- 46.56642
- ],
- [
- 2.49389,
- 46.66829
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016",
- "url": "http://ids.craig.fr/geocat/srv/fre/catalog.search?node=srv#/metadata/e37c057b-5884-429b-8bec-5db0baef0ee"
- },
- "country_code": "FR",
- "end_date": "2016",
- "id": "CRAIG-Auvergne-2016",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG",
- "max_zoom": 21,
- "name": "Auvergne 2016 25cm CRAIG",
- "start_date": "2016",
- "type": "tms",
- "url": "https://tiles.craig.fr/ortho/wmts/1.0.0/ortho_2016/webmercator/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 2.49389,
- 46.66829
- ],
- [
- 2.71362,
- 46.84141
- ],
- [
- 3.64746,
- 46.80758
- ],
- [
- 4.04846,
- 46.48327
- ],
- [
- 4.03747,
- 46.24825
- ],
- [
- 4.46044,
- 46.25965
- ],
- [
- 4.4934,
- 46.14559
- ],
- [
- 4.38354,
- 46.09229
- ],
- [
- 4.45495,
- 45.69084
- ],
- [
- 4.76257,
- 45.57176
- ],
- [
- 4.81201,
- 45.34443
- ],
- [
- 4.22424,
- 44.84419
- ],
- [
- 3.86169,
- 44.696
- ],
- [
- 3.37829,
- 44.80523
- ],
- [
- 3.33435,
- 44.89091
- ],
- [
- 3.18054,
- 44.82471
- ],
- [
- 3.03222,
- 44.60612
- ],
- [
- 2.92785,
- 44.60221
- ],
- [
- 2.71911,
- 44.85198
- ],
- [
- 2.51037,
- 44.60221
- ],
- [
- 2.12585,
- 44.58265
- ],
- [
- 2.005,
- 44.97257
- ],
- [
- 2.30712,
- 45.46784
- ],
- [
- 2.43347,
- 45.44087
- ],
- [
- 2.41149,
- 45.72919
- ],
- [
- 2.34558,
- 45.82402
- ],
- [
- 2.54882,
- 45.97979
- ],
- [
- 2.46093,
- 46.22166
- ],
- [
- 2.21374,
- 46.33935
- ],
- [
- 2.27828,
- 46.53903
- ],
- [
- 2.54882,
- 46.56642
- ],
- [
- 2.49389,
- 46.66829
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016",
- "url": "http://ids.craig.fr/geocat/srv/fre/catalog.search?node=srv#/metadata/e37c057b-5884-429b-8bec-5db0baef0ee"
- },
- "available_projections": [
- "EPSG:2154",
- "EPSG:4326",
- "EPSG:4258",
- "EPSG:3857"
- ],
- "country_code": "FR",
- "end_date": "2016",
- "id": "CRAIG-Auvergne-2016_mirror1",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG",
- "name": "Auvergne 2016 25cm CRAIG",
- "start_date": "2016",
- "type": "wms",
- "url": "https://tiles.craig.fr/ortho/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho_2016&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL",
- "url": "https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat"
- },
- "country_code": "FR",
- "description": "French address registry or Base Adresses Nationale Ouverte",
- "id": "BANO",
- "license_url": "https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat",
- "max_zoom": 20,
- "min_zoom": 12,
- "name": "BANO",
- "overlay": true,
- "type": "tms",
- "url": "https://{switch:a,b,c}.layers.openstreetmap.fr/bano/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Tiles © cquest@Openstreetmap France, data © Onema - IGN, LO/OL",
- "url": "http://www.sandre.eaufrance.fr/actualite/la-bd-carthage-en-licence-ouverte-open-licence"
- },
- "country_code": "FR",
- "description": "Réseau hydrographique: cours et plans d'eau et POI",
- "id": "route500hydro",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/BDCarthage",
- "max_zoom": 20,
- "min_zoom": 6,
- "name": "BD Carthage",
- "overlay": true,
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.openstreetmap.fr/route500hydro/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ],
- [
- [
- -61.27501,
- 14.90218
- ],
- [
- -60.72368,
- 14.90101
- ],
- [
- -60.72489,
- 14.36686
- ],
- [
- -61.27622,
- 14.36803
- ],
- [
- -61.27501,
- 14.90218
- ]
- ],
- [
- [
- -61.92802,
- 16.58618
- ],
- [
- -61.92686,
- 15.7394
- ],
- [
- -60.88128,
- 15.74072
- ],
- [
- -60.88243,
- 16.5875
- ],
- [
- -61.92802,
- 16.58618
- ]
- ],
- [
- [
- -53.89344,
- 6.004
- ],
- [
- -52.46522,
- 5.4465
- ],
- [
- -51.52039,
- 4.51072
- ],
- [
- -51.53687,
- 4.11633
- ],
- [
- -52.2345,
- 3.10213
- ],
- [
- -52.641,
- 2.25162
- ],
- [
- -52.92664,
- 2.07597
- ],
- [
- -53.72864,
- 2.21869
- ],
- [
- -54.20106,
- 2.03205
- ],
- [
- -54.8053,
- 2.27358
- ],
- [
- -54.31092,
- 2.80589
- ],
- [
- -54.31641,
- 3.20085
- ],
- [
- -54.12415,
- 3.46408
- ],
- [
- -54.12964,
- 3.59567
- ],
- [
- -54.42078,
- 4.00127
- ],
- [
- -54.58008,
- 4.95962
- ],
- [
- -53.89344,
- 6.004
- ]
- ],
- [
- [
- 55.08816,
- -20.77935
- ],
- [
- 55.95959,
- -20.77281
- ],
- [
- 55.96576,
- -21.49
- ],
- [
- 55.09434,
- -21.49651
- ],
- [
- 55.08816,
- -20.77935
- ]
- ],
- [
- [
- 44.92054,
- -12.57363
- ],
- [
- 45.34826,
- -12.57029
- ],
- [
- 45.35274,
- -13.1163
- ],
- [
- 44.92502,
- -13.11963
- ],
- [
- 44.92054,
- -12.57363
- ]
- ],
- [
- [
- -178.57728,
- -14.70582
- ],
- [
- -178.42568,
- -14.00334
- ],
- [
- -176.34156,
- -12.83858
- ],
- [
- -175.71534,
- -12.9189
- ],
- [
- -175.91858,
- -13.58726
- ],
- [
- -177.84638,
- -14.64983
- ],
- [
- -178.57728,
- -14.70582
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "BDOrtho IGN",
- "url": "https://openstreetmap.fr/bdortho"
- },
- "best": true,
- "country_code": "FR",
- "icon": "http://www.ign.fr/institut/sites/all/themes/ign_institut/logo.png",
- "id": "fr.ign.bdortho",
- "license_url": "https://openstreetmap.fr/bdortho",
- "max_zoom": 21,
- "min_zoom": 2,
- "name": "BDOrtho IGN",
- "type": "tms",
- "url": "https://proxy-ign.openstreetmap.fr/94GjiyqD/bdortho/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -1.29933,
- 44.81102
- ],
- [
- -1.27344,
- 44.46225
- ],
- [
- -1.25171,
- 44.46324
- ],
- [
- -1.18142,
- 44.47875
- ],
- [
- -1.10143,
- 44.4992
- ],
- [
- -1.08201,
- 44.52492
- ],
- [
- -1.02698,
- 44.50151
- ],
- [
- -1.00525,
- 44.50646
- ],
- [
- -0.93358,
- 44.62966
- ],
- [
- -0.8804,
- 44.65105
- ],
- [
- -0.87439,
- 44.67505
- ],
- [
- -0.88179,
- 44.70267
- ],
- [
- -0.83046,
- 44.72698
- ],
- [
- -0.82954,
- 44.73979
- ],
- [
- -0.87532,
- 44.76344
- ],
- [
- -0.89705,
- 44.80873
- ],
- [
- -0.87532,
- 44.85333
- ],
- [
- -0.88364,
- 44.85628
- ],
- [
- -0.92803,
- 44.84644
- ],
- [
- -0.95346,
- 44.83693
- ],
- [
- -1.00294,
- 44.83562
- ],
- [
- -1.03715,
- 44.85431
- ],
- [
- -1.04594,
- 44.85365
- ],
- [
- -1.05658,
- 44.82972
- ],
- [
- -1.08293,
- 44.83398
- ],
- [
- -1.1509,
- 44.82906
- ],
- [
- -1.17125,
- 44.81824
- ],
- [
- -1.29933,
- 44.81102
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "SIBA Vues aeriennes 2018"
- },
- "available_projections": [
- "EPSG:2154"
- ],
- "country_code": "FR",
- "end_date": "2018",
- "id": "SIBA_2018",
- "license_url": "https://madada.fr/request/9/response/39/attach/2/SIBA%20Licence%20Ouverte.pdf",
- "max_zoom": 20,
- "name": "Bassin d Arcachon 2018",
- "privacy_policy_url": "https://madada.fr/demande/les_orthophotoplans_de_la_campag",
- "start_date": "2018",
- "type": "wms",
- "url": "https://siba.geosphere.fr/cgi-bin/mapserv.exe?map=C:/ms4w/geosphere/client1/Carte12_IA.map&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Couche51&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -1.51199,
- 43.53909
- ],
- [
- -1.50478,
- 43.44095
- ],
- [
- -1.4986,
- 43.43996
- ],
- [
- -1.48865,
- 43.44046
- ],
- [
- -1.47835,
- 43.44719
- ],
- [
- -1.46771,
- 43.45716
- ],
- [
- -1.46118,
- 43.4579
- ],
- [
- -1.45466,
- 43.46463
- ],
- [
- -1.44231,
- 43.46693
- ],
- [
- -1.41895,
- 43.48755
- ],
- [
- -1.40797,
- 43.49004
- ],
- [
- -1.4035,
- 43.49752
- ],
- [
- -1.40419,
- 43.50449
- ],
- [
- -1.42513,
- 43.52466
- ],
- [
- -1.44539,
- 43.5264
- ],
- [
- -1.44917,
- 43.53835
- ],
- [
- -1.45569,
- 43.54233
- ],
- [
- -1.47388,
- 43.54954
- ],
- [
- -1.4835,
- 43.54929
- ],
- [
- -1.50444,
- 43.53909
- ],
- [
- -1.51199,
- 43.53909
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Ville de Bayonne, Communauté d'Agglomtération Pays Basque - 2016"
- },
- "country_code": "FR",
- "end_date": "2016",
- "id": "Bayonne_2016",
- "license_url": "https://www.etalab.gouv.fr/licence-ouverte-open-licence",
- "max_zoom": 20,
- "name": "Bayonne 2016",
- "privacy_policy_url": "https://www.data.gouv.fr/fr/datasets/orthophotographie-bayonne-2016-1/",
- "start_date": "2016",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/bayonne_2016/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -0.59923,
- 45.04193
- ],
- [
- -0.54231,
- 45.02757
- ],
- [
- -0.50979,
- 45.00601
- ],
- [
- -0.47727,
- 45.00206
- ],
- [
- -0.47066,
- 44.97367
- ],
- [
- -0.45542,
- 44.95102
- ],
- [
- -0.46456,
- 44.91792
- ],
- [
- -0.4732,
- 44.91936
- ],
- [
- -0.48794,
- 44.90928
- ],
- [
- -0.4981,
- 44.89057
- ],
- [
- -0.48946,
- 44.87797
- ],
- [
- -0.4666,
- 44.87076
- ],
- [
- -0.47625,
- 44.84735
- ],
- [
- -0.49505,
- 44.83978
- ],
- [
- -0.49099,
- 44.83186
- ],
- [
- -0.46965,
- 44.82537
- ],
- [
- -0.49709,
- 44.80446
- ],
- [
- -0.52453,
- 44.80013
- ],
- [
- -0.5103,
- 44.76767
- ],
- [
- -0.53469,
- 44.76515
- ],
- [
- -0.56213,
- 44.75107
- ],
- [
- -0.5601,
- 44.74169
- ],
- [
- -0.5728,
- 44.74133
- ],
- [
- -0.59465,
- 44.7601
- ],
- [
- -0.63429,
- 44.73989
- ],
- [
- -0.65004,
- 44.77705
- ],
- [
- -0.67901,
- 44.77489
- ],
- [
- -0.68816,
- 44.77922
- ],
- [
- -0.71509,
- 44.76839
- ],
- [
- -0.75168,
- 44.7471
- ],
- [
- -0.76336,
- 44.75577
- ],
- [
- -0.73846,
- 44.77561
- ],
- [
- -0.74202,
- 44.78571
- ],
- [
- -0.72779,
- 44.81239
- ],
- [
- -0.73999,
- 44.82861
- ],
- [
- -0.76438,
- 44.82933
- ],
- [
- -0.803,
- 44.82176
- ],
- [
- -0.8401,
- 44.82753
- ],
- [
- -0.83908,
- 44.84014
- ],
- [
- -0.87567,
- 44.85023
- ],
- [
- -0.88532,
- 44.85852
- ],
- [
- -0.88685,
- 44.88769
- ],
- [
- -0.86601,
- 44.88697
- ],
- [
- -0.84569,
- 44.89669
- ],
- [
- -0.83349,
- 44.92764
- ],
- [
- -0.81825,
- 44.92764
- ],
- [
- -0.80198,
- 44.92224
- ],
- [
- -0.79843,
- 44.9485
- ],
- [
- -0.78725,
- 44.94814
- ],
- [
- -0.75574,
- 44.97007
- ],
- [
- -0.72169,
- 44.95785
- ],
- [
- -0.69578,
- 44.93087
- ],
- [
- -0.68866,
- 44.93447
- ],
- [
- -0.67139,
- 44.93267
- ],
- [
- -0.66935,
- 44.94095
- ],
- [
- -0.62514,
- 44.95066
- ],
- [
- -0.63226,
- 44.95893
- ],
- [
- -0.63124,
- 44.9672
- ],
- [
- -0.60024,
- 44.96756
- ],
- [
- -0.55146,
- 44.97834
- ],
- [
- -0.54079,
- 44.97726
- ],
- [
- -0.55451,
- 44.99739
- ],
- [
- -0.59364,
- 45.01751
- ],
- [
- -0.60787,
- 45.03403
- ],
- [
- -0.59923,
- 45.04193
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Bordeaux Métropole - 2016"
- },
- "country_code": "FR",
- "end_date": "2016",
- "id": "Bordeaux_2016",
- "license_url": "https://wiki.openstreetmap.org/wiki/Bordeaux",
- "max_zoom": 20,
- "min_zoom": 14,
- "name": "Bordeaux 2016",
- "start_date": "2016",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2016/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -0.59923,
- 45.04193
- ],
- [
- -0.54231,
- 45.02757
- ],
- [
- -0.50979,
- 45.00601
- ],
- [
- -0.47727,
- 45.00206
- ],
- [
- -0.47066,
- 44.97367
- ],
- [
- -0.45542,
- 44.95102
- ],
- [
- -0.46456,
- 44.91792
- ],
- [
- -0.4732,
- 44.91936
- ],
- [
- -0.48794,
- 44.90928
- ],
- [
- -0.4981,
- 44.89057
- ],
- [
- -0.48946,
- 44.87797
- ],
- [
- -0.4666,
- 44.87076
- ],
- [
- -0.47625,
- 44.84735
- ],
- [
- -0.49505,
- 44.83978
- ],
- [
- -0.49099,
- 44.83186
- ],
- [
- -0.46965,
- 44.82537
- ],
- [
- -0.49709,
- 44.80446
- ],
- [
- -0.52453,
- 44.80013
- ],
- [
- -0.5103,
- 44.76767
- ],
- [
- -0.53469,
- 44.76515
- ],
- [
- -0.56213,
- 44.75107
- ],
- [
- -0.5601,
- 44.74169
- ],
- [
- -0.5728,
- 44.74133
- ],
- [
- -0.59465,
- 44.7601
- ],
- [
- -0.63429,
- 44.73989
- ],
- [
- -0.65004,
- 44.77705
- ],
- [
- -0.67901,
- 44.77489
- ],
- [
- -0.68816,
- 44.77922
- ],
- [
- -0.71509,
- 44.76839
- ],
- [
- -0.75168,
- 44.7471
- ],
- [
- -0.76336,
- 44.75577
- ],
- [
- -0.73846,
- 44.77561
- ],
- [
- -0.74202,
- 44.78571
- ],
- [
- -0.72779,
- 44.81239
- ],
- [
- -0.73999,
- 44.82861
- ],
- [
- -0.76438,
- 44.82933
- ],
- [
- -0.803,
- 44.82176
- ],
- [
- -0.8401,
- 44.82753
- ],
- [
- -0.83908,
- 44.84014
- ],
- [
- -0.87567,
- 44.85023
- ],
- [
- -0.88532,
- 44.85852
- ],
- [
- -0.88685,
- 44.88769
- ],
- [
- -0.86601,
- 44.88697
- ],
- [
- -0.84569,
- 44.89669
- ],
- [
- -0.83349,
- 44.92764
- ],
- [
- -0.81825,
- 44.92764
- ],
- [
- -0.80198,
- 44.92224
- ],
- [
- -0.79843,
- 44.9485
- ],
- [
- -0.78725,
- 44.94814
- ],
- [
- -0.75574,
- 44.97007
- ],
- [
- -0.72169,
- 44.95785
- ],
- [
- -0.69578,
- 44.93087
- ],
- [
- -0.68866,
- 44.93447
- ],
- [
- -0.67139,
- 44.93267
- ],
- [
- -0.66935,
- 44.94095
- ],
- [
- -0.62514,
- 44.95066
- ],
- [
- -0.63226,
- 44.95893
- ],
- [
- -0.63124,
- 44.9672
- ],
- [
- -0.60024,
- 44.96756
- ],
- [
- -0.55146,
- 44.97834
- ],
- [
- -0.54079,
- 44.97726
- ],
- [
- -0.55451,
- 44.99739
- ],
- [
- -0.59364,
- 45.01751
- ],
- [
- -0.60787,
- 45.03403
- ],
- [
- -0.59923,
- 45.04193
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Communauté urbaine de Bordeaux - 2012"
- },
- "country_code": "FR",
- "end_date": "2012",
- "id": "Bordeaux_2012",
- "license_url": "https://openstreetmap.fr/outils",
- "max_zoom": 20,
- "name": "Bordeaux - 2012",
- "start_date": "2012",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2012/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2020",
- "url": "https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation"
- },
- "country_code": "FR",
- "description": "French land registry",
- "icon": "https://svn.openstreetmap.org/applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png",
- "id": "Cadastre",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation#Mention_de_la_source_et_du_mill.C3.A9sime",
- "max_zoom": 22,
- "min_zoom": 12,
- "name": "Cadastre",
- "type": "tms",
- "url": "https://tms.cadastre.openstreetmap.fr/*/tout/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -1.07962,
- 46.10959
- ],
- [
- -0.94115,
- 46.01474
- ],
- [
- -0.56306,
- 45.15178
- ],
- [
- -0.7266,
- 45.08425
- ],
- [
- -0.87904,
- 45.34094
- ],
- [
- -0.99794,
- 45.33779
- ],
- [
- -0.95558,
- 44.69982
- ],
- [
- -1.15862,
- 44.19865
- ],
- [
- -1.21512,
- 44.20558
- ],
- [
- -1.24654,
- 44.1162
- ],
- [
- -1.27903,
- 44.03937
- ],
- [
- -1.28825,
- 44.02304
- ],
- [
- -1.32117,
- 43.94094
- ],
- [
- -1.32151,
- 43.92296
- ],
- [
- -1.3092,
- 43.92337
- ],
- [
- -1.3085,
- 43.91439
- ],
- [
- -1.28366,
- 43.91514
- ],
- [
- -1.28302,
- 43.90624
- ],
- [
- -1.2761,
- 43.90655
- ],
- [
- -1.28211,
- 43.89254
- ],
- [
- -1.30102,
- 43.85159
- ],
- [
- -1.30384,
- 43.8424
- ],
- [
- -1.30923,
- 43.83498
- ],
- [
- -1.33474,
- 43.76946
- ],
- [
- -1.34407,
- 43.74875
- ],
- [
- -1.3456,
- 43.74214
- ],
- [
- -1.34673,
- 43.73688
- ],
- [
- -1.43284,
- 43.53152
- ],
- [
- -1.42806,
- 43.46812
- ],
- [
- -1.60627,
- 43.40591
- ],
- [
- -1.6061,
- 43.36012
- ],
- [
- -1.77441,
- 43.30357
- ],
- [
- -1.82995,
- 43.38484
- ],
- [
- -1.58551,
- 43.46856
- ],
- [
- -1.35706,
- 44.03374
- ],
- [
- -1.40217,
- 44.06461
- ],
- [
- -1.33584,
- 44.22832
- ],
- [
- -1.21836,
- 44.23033
- ],
- [
- -1.16795,
- 44.41097
- ],
- [
- -1.30744,
- 44.41847
- ],
- [
- -1.16979,
- 45.59107
- ],
- [
- -1.48685,
- 46.06042
- ],
- [
- -1.36364,
- 46.09146
- ],
- [
- -1.60176,
- 46.17019
- ],
- [
- -1.64442,
- 46.22375
- ],
- [
- -1.58595,
- 46.30426
- ],
- [
- -1.51008,
- 46.33888
- ],
- [
- -1.75643,
- 46.42214
- ],
- [
- -2.1872,
- 46.81857
- ],
- [
- -2.16423,
- 46.85534
- ],
- [
- -2.23654,
- 46.9337
- ],
- [
- -2.39769,
- 46.96718
- ],
- [
- -2.282,
- 47.07631
- ],
- [
- -2.12563,
- 47.01875
- ],
- [
- -2.09013,
- 47.06562
- ],
- [
- -2.18487,
- 47.10698
- ],
- [
- -2.2647,
- 47.10763
- ],
- [
- -2.24489,
- 47.18562
- ],
- [
- -2.56779,
- 47.24467
- ],
- [
- -2.66727,
- 47.46686
- ],
- [
- -2.74787,
- 47.47122
- ],
- [
- -2.75771,
- 47.43461
- ],
- [
- -2.89321,
- 47.4629
- ],
- [
- -2.90369,
- 47.50905
- ],
- [
- -3.03383,
- 47.53833
- ],
- [
- -3.07113,
- 47.51185
- ],
- [
- -3.01653,
- 47.49873
- ],
- [
- -3.12502,
- 47.42693
- ],
- [
- -3.18803,
- 47.48441
- ],
- [
- -3.22791,
- 47.61132
- ],
- [
- -3.2967,
- 47.63161
- ],
- [
- -3.2876,
- 47.67154
- ],
- [
- -3.34074,
- 47.66893
- ],
- [
- -3.38912,
- 47.59473
- ],
- [
- -3.55087,
- 47.63827
- ],
- [
- -3.53384,
- 47.72488
- ],
- [
- -3.76577,
- 47.76476
- ],
- [
- -3.77595,
- 47.7371
- ],
- [
- -3.91168,
- 47.75915
- ],
- [
- -3.8959,
- 47.79911
- ],
- [
- -3.97236,
- 47.81526
- ],
- [
- -3.99722,
- 47.7975
- ],
- [
- -3.97956,
- 47.76268
- ],
- [
- -3.8945,
- 47.72193
- ],
- [
- -3.9162,
- 47.67831
- ],
- [
- -4.10163,
- 47.70921
- ],
- [
- -4.08989,
- 47.78944
- ],
- [
- -4.03798,
- 47.79909
- ],
- [
- -4.04125,
- 47.83109
- ],
- [
- -4.08765,
- 47.84221
- ],
- [
- -4.14781,
- 47.82525
- ],
- [
- -4.14314,
- 47.78847
- ],
- [
- -4.35162,
- 47.7415
- ],
- [
- -4.47962,
- 47.9776
- ],
- [
- -4.98565,
- 47.99896
- ],
- [
- -4.96938,
- 48.08972
- ],
- [
- -4.63576,
- 48.07798
- ],
- [
- -4.60147,
- 48.11469
- ],
- [
- -4.385,
- 48.10962
- ],
- [
- -4.38955,
- 48.14543
- ],
- [
- -4.30925,
- 48.15009
- ],
- [
- -4.31268,
- 48.17694
- ],
- [
- -4.46369,
- 48.18468
- ],
- [
- -4.49748,
- 48.1453
- ],
- [
- -4.5921,
- 48.14758
- ],
- [
- -4.57537,
- 48.22488
- ],
- [
- -4.67101,
- 48.2331
- ],
- [
- -4.65434,
- 48.31049
- ],
- [
- -4.84243,
- 48.3005
- ],
- [
- -5.19867,
- 48.44926
- ],
- [
- -5.10346,
- 48.51722
- ],
- [
- -4.81465,
- 48.39413
- ],
- [
- -4.83515,
- 48.54319
- ],
- [
- -4.63387,
- 48.66373
- ],
- [
- -3.96692,
- 48.77978
- ],
- [
- -3.94939,
- 48.74715
- ],
- [
- -3.6502,
- 48.75356
- ],
- [
- -3.65853,
- 48.82527
- ],
- [
- -3.53931,
- 48.85834
- ],
- [
- -3.54444,
- 48.90297
- ],
- [
- -3.40954,
- 48.91866
- ],
- [
- -3.40755,
- 48.87366
- ],
- [
- -3.02769,
- 48.9275
- ],
- [
- -2.67861,
- 48.58841
- ],
- [
- -2.28475,
- 48.71909
- ],
- [
- -2.17543,
- 48.65016
- ],
- [
- -2.0137,
- 48.73221
- ],
- [
- -1.80953,
- 48.73178
- ],
- [
- -1.80392,
- 48.66126
- ],
- [
- -1.61161,
- 48.68582
- ],
- [
- -1.71645,
- 49.24781
- ],
- [
- -1.8026,
- 49.32721
- ],
- [
- -1.85748,
- 49.3253
- ],
- [
- -1.9262,
- 49.65573
- ],
- [
- -2.03908,
- 49.67872
- ],
- [
- -2.00445,
- 49.76087
- ],
- [
- -1.61759,
- 49.68498
- ],
- [
- -1.28373,
- 49.76067
- ],
- [
- -1.1492,
- 49.63504
- ],
- [
- -1.17134,
- 49.55412
- ],
- [
- -1.27353,
- 49.55245
- ],
- [
- -1.1328,
- 49.3934
- ],
- [
- -0.93059,
- 49.40804
- ],
- [
- -0.74827,
- 49.35976
- ],
- [
- -0.38935,
- 49.34167
- ],
- [
- -0.24704,
- 49.29995
- ],
- [
- -0.12454,
- 49.29353
- ],
- [
- 0.02731,
- 49.37619
- ],
- [
- 0.01801,
- 49.54656
- ],
- [
- 0.12211,
- 49.69292
- ],
- [
- 0.51713,
- 49.86466
- ],
- [
- 1.05727,
- 49.94904
- ],
- [
- 1.43908,
- 50.11819
- ],
- [
- 1.53177,
- 50.46437
- ],
- [
- 1.52549,
- 50.85867
- ],
- [
- 1.64118,
- 50.95919
- ],
- [
- 2.4521,
- 51.12144
- ],
- [
- 2.59286,
- 51.12124
- ],
- [
- 2.60683,
- 51.05779
- ],
- [
- 1.7976,
- 50.89906
- ],
- [
- 1.66458,
- 50.82379
- ],
- [
- 1.70786,
- 50.1282
- ],
- [
- 1.05936,
- 49.85
- ],
- [
- 0.61607,
- 49.79062
- ],
- [
- 0.24731,
- 49.65027
- ],
- [
- 0.1709,
- 49.53174
- ],
- [
- 0.57065,
- 49.49622
- ],
- [
- 0.41115,
- 49.3396
- ],
- [
- 0.19504,
- 49.35736
- ],
- [
- 0.01718,
- 49.25479
- ],
- [
- -0.24453,
- 49.26312
- ],
- [
- -0.38408,
- 49.30495
- ],
- [
- -0.74091,
- 49.32438
- ],
- [
- -0.9954,
- 49.37133
- ],
- [
- -1.05453,
- 49.25175
- ],
- [
- -1.27704,
- 49.29022
- ],
- [
- -1.25966,
- 49.43463
- ],
- [
- -1.39141,
- 49.53985
- ],
- [
- -1.27535,
- 49.62056
- ],
- [
- -1.29775,
- 49.65946
- ],
- [
- -1.4905,
- 49.57139
- ],
- [
- -1.77517,
- 49.63398
- ],
- [
- -1.74601,
- 49.48155
- ],
- [
- -1.51294,
- 49.24691
- ],
- [
- -1.48261,
- 48.72607
- ],
- [
- -1.30574,
- 48.72531
- ],
- [
- -1.28323,
- 48.59731
- ],
- [
- -2.76114,
- 48.43471
- ],
- [
- -3.00174,
- 48.67646
- ],
- [
- -3.21062,
- 48.72097
- ],
- [
- -3.95404,
- 48.56051
- ],
- [
- -4.15643,
- 48.60792
- ],
- [
- -4.44475,
- 48.55852
- ],
- [
- -4.63683,
- 48.48299
- ],
- [
- -4.6319,
- 48.44727
- ],
- [
- -4.25022,
- 48.43088
- ],
- [
- -4.06141,
- 48.21805
- ],
- [
- -4.1757,
- 48.05165
- ],
- [
- -4.31904,
- 48.0141
- ],
- [
- -4.26781,
- 47.89977
- ],
- [
- -3.88484,
- 47.98172
- ],
- [
- -3.76375,
- 47.86403
- ],
- [
- -2.32727,
- 47.52634
- ],
- [
- -2.36911,
- 47.3339
- ],
- [
- -1.74067,
- 47.33507
- ],
- [
- -1.77062,
- 47.20451
- ],
- [
- -2.03678,
- 47.21942
- ],
- [
- -2.0968,
- 47.15548
- ],
- [
- -1.88786,
- 47.01239
- ],
- [
- -2.08797,
- 46.83007
- ],
- [
- -2.01214,
- 46.83436
- ],
- [
- -1.84079,
- 46.69651
- ],
- [
- -1.87318,
- 46.65484
- ],
- [
- -1.68859,
- 46.50392
- ],
- [
- -1.62117,
- 46.51513
- ],
- [
- -1.42428,
- 46.41675
- ],
- [
- -1.01761,
- 46.35917
- ],
- [
- -1.07962,
- 46.10959
- ]
- ],
- [
- [
- -2.41232,
- 46.69242
- ],
- [
- -2.37197,
- 46.67611
- ],
- [
- -2.26749,
- 46.68033
- ],
- [
- -2.27007,
- 46.70705
- ],
- [
- -2.29827,
- 46.73286
- ],
- [
- -2.41655,
- 46.73711
- ],
- [
- -2.41232,
- 46.69242
- ]
- ],
- [
- [
- -3.06018,
- 47.40542
- ],
- [
- -2.82587,
- 47.29635
- ],
- [
- -2.78787,
- 47.33417
- ],
- [
- -3.02436,
- 47.44563
- ],
- [
- -3.06018,
- 47.40542
- ]
- ],
- [
- [
- -3.26482,
- 47.4295
- ],
- [
- -3.3343,
- 47.35928
- ],
- [
- -3.29614,
- 47.34133
- ],
- [
- -3.31489,
- 47.30057
- ],
- [
- -3.19941,
- 47.24492
- ],
- [
- -3.16567,
- 47.27751
- ],
- [
- -3.08686,
- 47.23612
- ],
- [
- -3.00637,
- 47.30855
- ],
- [
- -3.26482,
- 47.4295
- ]
- ],
- [
- [
- -1.93966,
- 48.86346
- ],
- [
- -1.93993,
- 48.91179
- ],
- [
- -1.701,
- 48.91105
- ],
- [
- -1.69726,
- 48.86173
- ],
- [
- -1.93966,
- 48.86346
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Ortho littorale 2000",
- "url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "FR",
- "end_date": "2000",
- "id": "Geolittoral-Orthophotos2000",
- "license_url": "http://www.geolittoral.developpement-durable.gouv.fr/mentions-legales-a37.html",
- "name": "Géolittoral - Orthophotos 2000",
- "start_date": "2000",
- "type": "wms",
- "url": "http://geolittoral.din.developpement-durable.gouv.fr/wxs?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortholittorale&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -0.98385,
- 46.18807
- ],
- [
- -0.89497,
- 46.15628
- ],
- [
- -0.93455,
- 46.10163
- ],
- [
- -0.84388,
- 46.06949
- ],
- [
- -0.88241,
- 46.01637
- ],
- [
- -0.53787,
- 45.89558
- ],
- [
- -0.63498,
- 45.76444
- ],
- [
- -0.86666,
- 45.8479
- ],
- [
- -0.76264,
- 45.6245
- ],
- [
- -0.69695,
- 45.62659
- ],
- [
- -0.69397,
- 45.60184
- ],
- [
- -0.68755,
- 45.60174
- ],
- [
- -0.688,
- 45.50986
- ],
- [
- -0.63799,
- 45.50892
- ],
- [
- -0.63978,
- 45.44747
- ],
- [
- -0.61574,
- 45.44695
- ],
- [
- -0.61619,
- 45.38586
- ],
- [
- -0.58544,
- 45.38596
- ],
- [
- -0.58529,
- 45.32334
- ],
- [
- -0.55379,
- 45.32344
- ],
- [
- -0.55275,
- 45.19661
- ],
- [
- -0.49094,
- 45.19577
- ],
- [
- -0.49184,
- 45.13315
- ],
- [
- -0.45661,
- 45.13325
- ],
- [
- -0.45512,
- 45.07161
- ],
- [
- -0.41611,
- 45.07089
- ],
- [
- -0.41621,
- 45.02696
- ],
- [
- -0.2907,
- 44.98278
- ],
- [
- -0.22,
- 45.06771
- ],
- [
- -0.12252,
- 45.02563
- ],
- [
- -0.18925,
- 44.94591
- ],
- [
- -0.09266,
- 44.91019
- ],
- [
- -0.14521,
- 44.8392
- ],
- [
- -0.15491,
- 44.84238
- ],
- [
- -0.19387,
- 44.78678
- ],
- [
- -0.43541,
- 44.87317
- ],
- [
- -0.39048,
- 44.68413
- ],
- [
- -0.58798,
- 44.66014
- ],
- [
- -0.66628,
- 44.99129
- ],
- [
- -0.77838,
- 44.99263
- ],
- [
- -0.77764,
- 45.05389
- ],
- [
- -0.81584,
- 45.05321
- ],
- [
- -0.81838,
- 45.11962
- ],
- [
- -0.88393,
- 45.12051
- ],
- [
- -0.88171,
- 45.18081
- ],
- [
- -0.93438,
- 45.18185
- ],
- [
- -0.9328,
- 45.24484
- ],
- [
- -1.00163,
- 45.24439
- ],
- [
- -1.00247,
- 45.30827
- ],
- [
- -1.0524,
- 45.31013
- ],
- [
- -1.04828,
- 45.36911
- ],
- [
- -1.06412,
- 45.36911
- ],
- [
- -1.05039,
- 45.18252
- ],
- [
- -1.10761,
- 44.80787
- ],
- [
- -1.01514,
- 44.80113
- ],
- [
- -1.01946,
- 44.76914
- ],
- [
- -0.93365,
- 44.76149
- ],
- [
- -0.9404,
- 44.7018
- ],
- [
- -0.96035,
- 44.56434
- ],
- [
- -1.01408,
- 44.56765
- ],
- [
- -1.09916,
- 44.1456
- ],
- [
- -1.22689,
- 44.14022
- ],
- [
- -1.21853,
- 44.03249
- ],
- [
- -1.30762,
- 44.029
- ],
- [
- -1.39572,
- 43.74301
- ],
- [
- -1.31296,
- 43.72951
- ],
- [
- -1.37439,
- 43.53109
- ],
- [
- -1.34589,
- 43.50606
- ],
- [
- -1.59964,
- 43.35423
- ],
- [
- -1.76549,
- 43.25548
- ],
- [
- -1.79281,
- 43.28038
- ],
- [
- -1.80281,
- 43.40425
- ],
- [
- -1.72832,
- 43.45033
- ],
- [
- -1.58531,
- 43.489
- ],
- [
- -1.33584,
- 44.22832
- ],
- [
- -1.30744,
- 44.41847
- ],
- [
- -1.22511,
- 45.44416
- ],
- [
- -1.48685,
- 46.06042
- ],
- [
- -1.60176,
- 46.17019
- ],
- [
- -1.64442,
- 46.22375
- ],
- [
- -1.75643,
- 46.42214
- ],
- [
- -2.03483,
- 46.61895
- ],
- [
- -2.3466,
- 46.62382
- ],
- [
- -2.46561,
- 46.71196
- ],
- [
- -2.3233,
- 46.83812
- ],
- [
- -2.45286,
- 46.93856
- ],
- [
- -2.31733,
- 47.16214
- ],
- [
- -2.92848,
- 47.28413
- ],
- [
- -2.96742,
- 47.22147
- ],
- [
- -3.35602,
- 47.32474
- ],
- [
- -3.18803,
- 47.48441
- ],
- [
- -3.22791,
- 47.61132
- ],
- [
- -3.38912,
- 47.59473
- ],
- [
- -3.9162,
- 47.67831
- ],
- [
- -4.10163,
- 47.70921
- ],
- [
- -4.14314,
- 47.78847
- ],
- [
- -4.37619,
- 47.71067
- ],
- [
- -4.47962,
- 47.9776
- ],
- [
- -4.98565,
- 47.99896
- ],
- [
- -4.96938,
- 48.08972
- ],
- [
- -4.60147,
- 48.11469
- ],
- [
- -4.5921,
- 48.14758
- ],
- [
- -4.67101,
- 48.2331
- ],
- [
- -4.84243,
- 48.3005
- ],
- [
- -5.19867,
- 48.44926
- ],
- [
- -5.10346,
- 48.51722
- ],
- [
- -4.83515,
- 48.54319
- ],
- [
- -4.63117,
- 48.66129
- ],
- [
- -3.96692,
- 48.77978
- ],
- [
- -3.94939,
- 48.74715
- ],
- [
- -3.67013,
- 48.89508
- ],
- [
- -3.54444,
- 48.90297
- ],
- [
- -3.40954,
- 48.91866
- ],
- [
- -3.33344,
- 48.90458
- ],
- [
- -3.02769,
- 48.9275
- ],
- [
- -2.80207,
- 48.79793
- ],
- [
- -2.69353,
- 48.76722
- ],
- [
- -2.45786,
- 48.70896
- ],
- [
- -2.28475,
- 48.71909
- ],
- [
- -2.17543,
- 48.65016
- ],
- [
- -2.0137,
- 48.73221
- ],
- [
- -1.80953,
- 48.73178
- ],
- [
- -1.7243,
- 48.75828
- ],
- [
- -1.70557,
- 48.84512
- ],
- [
- -1.90304,
- 48.86288
- ],
- [
- -1.91027,
- 48.92348
- ],
- [
- -1.68714,
- 48.93249
- ],
- [
- -1.74277,
- 49.24473
- ],
- [
- -1.85748,
- 49.3253
- ],
- [
- -1.9262,
- 49.65573
- ],
- [
- -2.03908,
- 49.67872
- ],
- [
- -2.00445,
- 49.76087
- ],
- [
- -1.61759,
- 49.68498
- ],
- [
- -1.28373,
- 49.76067
- ],
- [
- -1.1492,
- 49.63504
- ],
- [
- -1.18545,
- 49.54836
- ],
- [
- -0.96463,
- 49.42509
- ],
- [
- -0.74429,
- 49.36802
- ],
- [
- -0.39014,
- 49.3622
- ],
- [
- -0.24976,
- 49.3158
- ],
- [
- -0.13342,
- 49.31293
- ],
- [
- 0.02731,
- 49.37619
- ],
- [
- 0.01801,
- 49.54656
- ],
- [
- 0.12211,
- 49.69292
- ],
- [
- 0.51713,
- 49.86466
- ],
- [
- 1.05727,
- 49.94904
- ],
- [
- 1.43908,
- 50.11819
- ],
- [
- 1.53177,
- 50.46437
- ],
- [
- 1.52549,
- 50.85867
- ],
- [
- 1.64118,
- 50.95919
- ],
- [
- 2.59712,
- 51.17355
- ],
- [
- 2.66071,
- 51.0196
- ],
- [
- 2.07124,
- 50.92022
- ],
- [
- 2.05937,
- 50.94709
- ],
- [
- 1.7976,
- 50.89906
- ],
- [
- 1.68089,
- 50.8717
- ],
- [
- 1.65569,
- 50.59729
- ],
- [
- 1.75357,
- 50.5932
- ],
- [
- 1.72295,
- 50.24702
- ],
- [
- 1.82156,
- 50.24262
- ],
- [
- 1.80149,
- 50.05116
- ],
- [
- 1.54565,
- 50.06311
- ],
- [
- 1.54155,
- 50.01267
- ],
- [
- 1.42462,
- 50.01747
- ],
- [
- 1.42667,
- 50.05276
- ],
- [
- 1.03838,
- 49.84609
- ],
- [
- 0.9827,
- 49.88916
- ],
- [
- 0.57961,
- 49.82133
- ],
- [
- 0.42063,
- 49.76297
- ],
- [
- 0.4281,
- 49.75445
- ],
- [
- 0.20831,
- 49.67269
- ],
- [
- 0.14765,
- 49.57767
- ],
- [
- 0.13461,
- 49.5809
- ],
- [
- 0.11117,
- 49.54365
- ],
- [
- 0.56598,
- 49.52045
- ],
- [
- 0.5632,
- 49.49989
- ],
- [
- 0.63001,
- 49.49666
- ],
- [
- 0.61478,
- 49.37441
- ],
- [
- 0.54825,
- 49.37851
- ],
- [
- 0.54254,
- 49.33461
- ],
- [
- 0.45741,
- 49.33938
- ],
- [
- 0.45843,
- 49.34492
- ],
- [
- 0.32597,
- 49.35456
- ],
- [
- 0.32846,
- 49.38128
- ],
- [
- 0.28011,
- 49.38433
- ],
- [
- 0.27689,
- 49.36334
- ],
- [
- 0.21095,
- 49.36658
- ],
- [
- 0.20817,
- 49.35084
- ],
- [
- 0.14326,
- 49.35532
- ],
- [
- 0.13769,
- 49.3115
- ],
- [
- 0.07204,
- 49.31532
- ],
- [
- 0.0675,
- 49.28713
- ],
- [
- 0.00274,
- 49.29076
- ],
- [
- 0.00508,
- 49.25711
- ],
- [
- -0.02027,
- 49.26036
- ],
- [
- -0.03492,
- 49.1973
- ],
- [
- -0.19448,
- 49.21463
- ],
- [
- -0.38966,
- 49.12726
- ],
- [
- -0.45369,
- 49.18792
- ],
- [
- -0.3561,
- 49.23214
- ],
- [
- -0.82088,
- 49.28331
- ],
- [
- -0.99778,
- 49.30149
- ],
- [
- -1.16728,
- 49.24545
- ],
- [
- -1.19515,
- 49.28183
- ],
- [
- -1.26768,
- 49.24099
- ],
- [
- -1.34114,
- 49.2975
- ],
- [
- -1.24768,
- 49.35025
- ],
- [
- -1.44583,
- 49.60689
- ],
- [
- -1.81105,
- 49.61757
- ],
- [
- -1.77479,
- 49.44333
- ],
- [
- -1.72775,
- 49.46509
- ],
- [
- -1.5339,
- 49.29098
- ],
- [
- -1.47909,
- 49.29233
- ],
- [
- -1.47608,
- 49.24027
- ],
- [
- -1.43557,
- 49.20326
- ],
- [
- -1.47225,
- 49.1822
- ],
- [
- -1.45091,
- 48.75725
- ],
- [
- -1.31155,
- 48.76408
- ],
- [
- -1.30533,
- 48.70216
- ],
- [
- -1.2584,
- 48.70421
- ],
- [
- -1.25229,
- 48.64353
- ],
- [
- -1.23519,
- 48.64435
- ],
- [
- -1.2269,
- 48.56824
- ],
- [
- -1.85218,
- 48.53086
- ],
- [
- -1.84908,
- 48.4975
- ],
- [
- -1.92326,
- 48.49187
- ],
- [
- -1.92813,
- 48.44096
- ],
- [
- -2.04272,
- 48.43601
- ],
- [
- -2.03889,
- 48.48191
- ],
- [
- -2.2895,
- 48.46102
- ],
- [
- -2.3021,
- 48.52433
- ],
- [
- -2.40863,
- 48.51618
- ],
- [
- -2.42035,
- 48.56954
- ],
- [
- -2.43084,
- 48.57852
- ],
- [
- -2.49083,
- 48.54924
- ],
- [
- -2.47353,
- 48.53326
- ],
- [
- -2.54978,
- 48.49647
- ],
- [
- -2.54005,
- 48.48747
- ],
- [
- -2.70681,
- 48.40746
- ],
- [
- -3.02979,
- 48.69115
- ],
- [
- -4.01034,
- 48.53179
- ],
- [
- -4.05342,
- 48.64412
- ],
- [
- -4.38281,
- 48.57349
- ],
- [
- -4.35482,
- 48.5118
- ],
- [
- -4.38853,
- 48.50473
- ],
- [
- -4.13495,
- 48.44868
- ],
- [
- -4.16411,
- 48.38936
- ],
- [
- -4.01832,
- 48.35685
- ],
- [
- -4.04733,
- 48.29918
- ],
- [
- -3.98814,
- 48.2867
- ],
- [
- -4.0214,
- 48.21606
- ],
- [
- -4.03634,
- 48.21958
- ],
- [
- -4.06623,
- 48.16028
- ],
- [
- -4.16675,
- 48.18247
- ],
- [
- -4.18331,
- 48.14934
- ],
- [
- -4.17232,
- 48.1065
- ],
- [
- -4.20111,
- 48.10285
- ],
- [
- -4.18643,
- 48.04389
- ],
- [
- -4.18806,
- 48.04061
- ],
- [
- -4.35686,
- 48.02305
- ],
- [
- -4.25657,
- 47.93997
- ],
- [
- -4.23363,
- 47.93497
- ],
- [
- -4.21371,
- 47.97598
- ],
- [
- -4.21854,
- 47.97726
- ],
- [
- -4.1806,
- 48.05569
- ],
- [
- -3.6172,
- 47.93124
- ],
- [
- -2.17991,
- 47.58642
- ],
- [
- -2.25449,
- 47.44501
- ],
- [
- -2.30182,
- 47.4568
- ],
- [
- -2.32043,
- 47.42092
- ],
- [
- -2.30372,
- 47.41755
- ],
- [
- -2.34753,
- 47.33499
- ],
- [
- -2.36219,
- 47.33837
- ],
- [
- -2.38079,
- 47.3039
- ],
- [
- -2.35852,
- 47.29854
- ],
- [
- -2.29962,
- 47.29784
- ],
- [
- -2.29742,
- 47.3618
- ],
- [
- -2.13199,
- 47.35852
- ],
- [
- -2.13478,
- 47.39107
- ],
- [
- -2.01565,
- 47.39623
- ],
- [
- -2.01404,
- 47.38095
- ],
- [
- -1.92862,
- 47.38254
- ],
- [
- -1.92891,
- 47.37956
- ],
- [
- -1.8322,
- 47.38184
- ],
- [
- -1.82986,
- 47.34165
- ],
- [
- -1.73608,
- 47.34304
- ],
- [
- -1.73418,
- 47.305
- ],
- [
- -1.64084,
- 47.30639
- ],
- [
- -1.64011,
- 47.29427
- ],
- [
- -1.58355,
- 47.29566
- ],
- [
- -1.58531,
- 47.33708
- ],
- [
- -1.4612,
- 47.33966
- ],
- [
- -1.46003,
- 47.32924
- ],
- [
- -1.37211,
- 47.33221
- ],
- [
- -1.36054,
- 47.11239
- ],
- [
- -1.48567,
- 47.11149
- ],
- [
- -1.48582,
- 47.11877
- ],
- [
- -1.66897,
- 47.11688
- ],
- [
- -1.66971,
- 47.12864
- ],
- [
- -1.72553,
- 47.12764
- ],
- [
- -1.72612,
- 47.13761
- ],
- [
- -1.93975,
- 47.13263
- ],
- [
- -1.94019,
- 47.1422
- ],
- [
- -1.9925,
- 47.14309
- ],
- [
- -1.81066,
- 47.00588
- ],
- [
- -1.94723,
- 46.92078
- ],
- [
- -1.92891,
- 46.90677
- ],
- [
- -1.99529,
- 46.86461
- ],
- [
- -1.73652,
- 46.66839
- ],
- [
- -1.77535,
- 46.64386
- ],
- [
- -1.82678,
- 46.64174
- ],
- [
- -1.82473,
- 46.62071
- ],
- [
- -1.18192,
- 46.39987
- ],
- [
- -0.91261,
- 46.3048
- ],
- [
- -0.95481,
- 46.2489
- ],
- [
- -0.94235,
- 46.24424
- ],
- [
- -0.98385,
- 46.18807
- ]
- ],
- [
- [
- 3.14769,
- 42.40072
- ],
- [
- 3.14949,
- 42.40015
- ],
- [
- 3.15305,
- 42.40052
- ],
- [
- 3.15804,
- 42.40243
- ],
- [
- 3.1877,
- 42.42805
- ],
- [
- 3.14227,
- 42.5248
- ],
- [
- 3.06837,
- 42.54635
- ],
- [
- 3.04884,
- 42.6942
- ],
- [
- 3.0799,
- 43.03073
- ],
- [
- 3.22641,
- 43.18727
- ],
- [
- 3.40916,
- 43.26032
- ],
- [
- 3.52104,
- 43.25877
- ],
- [
- 3.66429,
- 43.37628
- ],
- [
- 3.73841,
- 43.39054
- ],
- [
- 4.00979,
- 43.53607
- ],
- [
- 4.17692,
- 43.45636
- ],
- [
- 4.54355,
- 43.43349
- ],
- [
- 4.54943,
- 43.35401
- ],
- [
- 4.83506,
- 43.30891
- ],
- [
- 4.97506,
- 43.38309
- ],
- [
- 5.03219,
- 43.31928
- ],
- [
- 5.25919,
- 43.31928
- ],
- [
- 5.31082,
- 43.20504
- ],
- [
- 5.35682,
- 43.18645
- ],
- [
- 5.36882,
- 43.16785
- ],
- [
- 5.40232,
- 43.16211
- ],
- [
- 5.41382,
- 43.17123
- ],
- [
- 5.40919,
- 43.19921
- ],
- [
- 5.54232,
- 43.18827
- ],
- [
- 5.60582,
- 43.14797
- ],
- [
- 5.6197,
- 43.1529
- ],
- [
- 5.63832,
- 43.17159
- ],
- [
- 5.67157,
- 43.1674
- ],
- [
- 5.69095,
- 43.13411
- ],
- [
- 5.77607,
- 43.10637
- ],
- [
- 5.7762,
- 43.09432
- ],
- [
- 5.75407,
- 43.08328
- ],
- [
- 5.75707,
- 43.0725
- ],
- [
- 5.77032,
- 43.06465
- ],
- [
- 5.85933,
- 43.03469
- ],
- [
- 5.8877,
- 43.06273
- ],
- [
- 5.9567,
- 43.06109
- ],
- [
- 5.96383,
- 43.09277
- ],
- [
- 6.00033,
- 43.09186
- ],
- [
- 6.01745,
- 43.06849
- ],
- [
- 6.10233,
- 43.07415
- ],
- [
- 6.10483,
- 43.0526
- ],
- [
- 6.0666,
- 43.04318
- ],
- [
- 6.06722,
- 43.03785
- ],
- [
- 6.1427,
- 43.00923
- ],
- [
- 6.15676,
- 42.98715
- ],
- [
- 6.19635,
- 42.97331
- ],
- [
- 6.22221,
- 42.9801
- ],
- [
- 6.26891,
- 42.99651
- ],
- [
- 6.25515,
- 43.03627
- ],
- [
- 6.2019,
- 43.02713
- ],
- [
- 6.18378,
- 43.09188
- ],
- [
- 6.30153,
- 43.09909
- ],
- [
- 6.32478,
- 43.07974
- ],
- [
- 6.37778,
- 43.08011
- ],
- [
- 6.38866,
- 43.13395
- ],
- [
- 6.51341,
- 43.14608
- ],
- [
- 6.57704,
- 43.17881
- ],
- [
- 6.62291,
- 43.14563
- ],
- [
- 6.69779,
- 43.19969
- ],
- [
- 6.68016,
- 43.23357
- ],
- [
- 6.72116,
- 43.26007
- ],
- [
- 6.72241,
- 43.27472
- ],
- [
- 6.67054,
- 43.29192
- ],
- [
- 6.68741,
- 43.33113
- ],
- [
- 6.72416,
- 43.34267
- ],
- [
- 6.75291,
- 43.409
- ],
- [
- 6.79104,
- 43.39674
- ],
- [
- 6.90629,
- 43.41672
- ],
- [
- 6.96767,
- 43.50273
- ],
- [
- 6.96617,
- 43.52812
- ],
- [
- 7.00617,
- 43.53845
- ],
- [
- 7.03554,
- 43.4982
- ],
- [
- 7.06892,
- 43.5001
- ],
- [
- 7.09079,
- 43.51642
- ],
- [
- 7.06267,
- 43.53672
- ],
- [
- 7.08254,
- 43.5456
- ],
- [
- 7.1238,
- 43.53074
- ],
- [
- 7.1558,
- 43.5437
- ],
- [
- 7.1433,
- 43.62284
- ],
- [
- 7.16867,
- 43.64636
- ],
- [
- 7.2138,
- 43.63469
- ],
- [
- 7.25417,
- 43.68497
- ],
- [
- 7.3403,
- 43.66744
- ],
- [
- 7.36442,
- 43.6894
- ],
- [
- 7.35305,
- 43.7082
- ],
- [
- 7.4163,
- 43.71091
- ],
- [
- 7.45405,
- 43.74506
- ],
- [
- 7.4943,
- 43.74524
- ],
- [
- 7.57943,
- 43.78424
- ],
- [
- 7.60552,
- 43.78603
- ],
- [
- 7.60368,
- 43.78898
- ],
- [
- 7.59588,
- 43.79528
- ],
- [
- 7.59628,
- 43.79549
- ],
- [
- 7.53853,
- 43.84195
- ],
- [
- 7.45996,
- 43.79988
- ],
- [
- 7.44781,
- 43.80934
- ],
- [
- 7.32353,
- 43.74806
- ],
- [
- 7.30822,
- 43.76357
- ],
- [
- 6.64878,
- 43.3885
- ],
- [
- 6.66865,
- 43.37178
- ],
- [
- 6.51003,
- 43.27803
- ],
- [
- 6.56584,
- 43.22509
- ],
- [
- 6.12681,
- 43.10527
- ],
- [
- 5.48229,
- 43.24939
- ],
- [
- 5.47267,
- 43.2309
- ],
- [
- 5.41567,
- 43.24657
- ],
- [
- 5.45267,
- 43.3451
- ],
- [
- 4.80191,
- 43.48158
- ],
- [
- 4.76416,
- 43.39244
- ],
- [
- 4.65716,
- 43.42368
- ],
- [
- 4.67228,
- 43.45608
- ],
- [
- 4.43203,
- 43.52419
- ],
- [
- 4.41453,
- 43.49255
- ],
- [
- 4.16102,
- 43.56433
- ],
- [
- 4.14452,
- 43.57067
- ],
- [
- 4.14165,
- 43.57393
- ],
- [
- 4.18677,
- 43.59946
- ],
- [
- 4.10565,
- 43.68196
- ],
- [
- 3.79689,
- 43.52165
- ],
- [
- 3.77851,
- 43.51313
- ],
- [
- 3.76464,
- 43.50597
- ],
- [
- 3.76201,
- 43.50334
- ],
- [
- 3.74226,
- 43.49328
- ],
- [
- 3.71601,
- 43.52075
- ],
- [
- 3.26213,
- 43.28143
- ],
- [
- 3.24638,
- 43.29735
- ],
- [
- 3.18388,
- 43.28052
- ],
- [
- 3.10675,
- 43.24083
- ],
- [
- 3.15475,
- 43.19419
- ],
- [
- 2.90625,
- 43.19383
- ],
- [
- 2.90675,
- 42.76189
- ],
- [
- 2.94613,
- 42.76208
- ],
- [
- 2.9465,
- 42.61516
- ],
- [
- 2.99238,
- 42.61497
- ],
- [
- 2.99238,
- 42.5125
- ],
- [
- 3.041,
- 42.51259
- ],
- [
- 3.04121,
- 42.50093
- ],
- [
- 3.09086,
- 42.50082
- ],
- [
- 3.14769,
- 42.40072
- ]
- ],
- [
- [
- 6.35945,
- 43.02321
- ],
- [
- 6.42477,
- 43.02444
- ],
- [
- 6.45244,
- 43.03504
- ],
- [
- 6.46985,
- 43.05461
- ],
- [
- 6.51121,
- 43.05765
- ],
- [
- 6.52156,
- 43.04318
- ],
- [
- 6.48364,
- 43.02444
- ],
- [
- 6.47179,
- 43.00725
- ],
- [
- 6.41178,
- 42.9918
- ],
- [
- 6.39852,
- 42.98048
- ],
- [
- 6.35178,
- 42.99905
- ],
- [
- 6.35945,
- 43.02321
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Ortho littorale 2000",
- "url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "FR",
- "id": "Geolittoral-Sentiers",
- "license_url": "http://www.geolittoral.developpement-durable.gouv.fr/mentions-legales-a37.html",
- "name": "Géolittoral - Sentiers",
- "type": "wms",
- "url": "http://geolittoral.din.developpement-durable.gouv.fr/wxs?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n_sentier_littoral_l&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -0.98385,
- 46.18807
- ],
- [
- -0.89497,
- 46.15628
- ],
- [
- -0.93455,
- 46.10163
- ],
- [
- -0.84388,
- 46.06949
- ],
- [
- -0.88241,
- 46.01637
- ],
- [
- -0.53787,
- 45.89558
- ],
- [
- -0.63498,
- 45.76444
- ],
- [
- -0.86666,
- 45.8479
- ],
- [
- -0.76264,
- 45.6245
- ],
- [
- -0.69695,
- 45.62659
- ],
- [
- -0.69397,
- 45.60184
- ],
- [
- -0.68755,
- 45.60174
- ],
- [
- -0.688,
- 45.50986
- ],
- [
- -0.63799,
- 45.50892
- ],
- [
- -0.63978,
- 45.44747
- ],
- [
- -0.61574,
- 45.44695
- ],
- [
- -0.61619,
- 45.38586
- ],
- [
- -0.58544,
- 45.38596
- ],
- [
- -0.58529,
- 45.32334
- ],
- [
- -0.55379,
- 45.32344
- ],
- [
- -0.55275,
- 45.19661
- ],
- [
- -0.49094,
- 45.19577
- ],
- [
- -0.49184,
- 45.13315
- ],
- [
- -0.45661,
- 45.13325
- ],
- [
- -0.45512,
- 45.07161
- ],
- [
- -0.41611,
- 45.07089
- ],
- [
- -0.41621,
- 45.02696
- ],
- [
- -0.2907,
- 44.98278
- ],
- [
- -0.22,
- 45.06771
- ],
- [
- -0.12252,
- 45.02563
- ],
- [
- -0.18925,
- 44.94591
- ],
- [
- -0.09266,
- 44.91019
- ],
- [
- -0.14521,
- 44.8392
- ],
- [
- -0.15491,
- 44.84238
- ],
- [
- -0.19387,
- 44.78678
- ],
- [
- -0.43541,
- 44.87317
- ],
- [
- -0.39048,
- 44.68413
- ],
- [
- -0.58798,
- 44.66014
- ],
- [
- -0.66628,
- 44.99129
- ],
- [
- -0.77838,
- 44.99263
- ],
- [
- -0.77764,
- 45.05389
- ],
- [
- -0.81584,
- 45.05321
- ],
- [
- -0.81838,
- 45.11962
- ],
- [
- -0.88393,
- 45.12051
- ],
- [
- -0.88171,
- 45.18081
- ],
- [
- -0.93438,
- 45.18185
- ],
- [
- -0.9328,
- 45.24484
- ],
- [
- -1.00163,
- 45.24439
- ],
- [
- -1.00247,
- 45.30827
- ],
- [
- -1.0524,
- 45.31013
- ],
- [
- -1.04828,
- 45.36911
- ],
- [
- -1.06412,
- 45.36911
- ],
- [
- -1.05039,
- 45.18252
- ],
- [
- -1.10761,
- 44.80787
- ],
- [
- -1.01514,
- 44.80113
- ],
- [
- -1.01946,
- 44.76914
- ],
- [
- -0.93365,
- 44.76149
- ],
- [
- -0.9404,
- 44.7018
- ],
- [
- -0.96035,
- 44.56434
- ],
- [
- -1.01408,
- 44.56765
- ],
- [
- -1.09916,
- 44.1456
- ],
- [
- -1.22689,
- 44.14022
- ],
- [
- -1.21853,
- 44.03249
- ],
- [
- -1.30762,
- 44.029
- ],
- [
- -1.39572,
- 43.74301
- ],
- [
- -1.31296,
- 43.72951
- ],
- [
- -1.37439,
- 43.53109
- ],
- [
- -1.34589,
- 43.50606
- ],
- [
- -1.59964,
- 43.35423
- ],
- [
- -1.76549,
- 43.25548
- ],
- [
- -1.79281,
- 43.28038
- ],
- [
- -1.80281,
- 43.40425
- ],
- [
- -1.72832,
- 43.45033
- ],
- [
- -1.58531,
- 43.489
- ],
- [
- -1.33584,
- 44.22832
- ],
- [
- -1.30744,
- 44.41847
- ],
- [
- -1.22511,
- 45.44416
- ],
- [
- -1.48685,
- 46.06042
- ],
- [
- -1.60176,
- 46.17019
- ],
- [
- -1.64442,
- 46.22375
- ],
- [
- -1.75643,
- 46.42214
- ],
- [
- -2.03483,
- 46.61895
- ],
- [
- -2.3466,
- 46.62382
- ],
- [
- -2.46561,
- 46.71196
- ],
- [
- -2.3233,
- 46.83812
- ],
- [
- -2.45286,
- 46.93856
- ],
- [
- -2.31733,
- 47.16214
- ],
- [
- -2.92848,
- 47.28413
- ],
- [
- -2.96742,
- 47.22147
- ],
- [
- -3.35602,
- 47.32474
- ],
- [
- -3.18803,
- 47.48441
- ],
- [
- -3.22791,
- 47.61132
- ],
- [
- -3.38912,
- 47.59473
- ],
- [
- -3.9162,
- 47.67831
- ],
- [
- -4.10163,
- 47.70921
- ],
- [
- -4.14314,
- 47.78847
- ],
- [
- -4.37619,
- 47.71067
- ],
- [
- -4.47962,
- 47.9776
- ],
- [
- -4.98565,
- 47.99896
- ],
- [
- -4.96938,
- 48.08972
- ],
- [
- -4.60147,
- 48.11469
- ],
- [
- -4.5921,
- 48.14758
- ],
- [
- -4.67101,
- 48.2331
- ],
- [
- -4.84243,
- 48.3005
- ],
- [
- -5.19867,
- 48.44926
- ],
- [
- -5.10346,
- 48.51722
- ],
- [
- -4.83515,
- 48.54319
- ],
- [
- -4.63117,
- 48.66129
- ],
- [
- -3.96692,
- 48.77978
- ],
- [
- -3.94939,
- 48.74715
- ],
- [
- -3.67013,
- 48.89508
- ],
- [
- -3.54444,
- 48.90297
- ],
- [
- -3.40954,
- 48.91866
- ],
- [
- -3.33344,
- 48.90458
- ],
- [
- -3.02769,
- 48.9275
- ],
- [
- -2.80207,
- 48.79793
- ],
- [
- -2.69353,
- 48.76722
- ],
- [
- -2.45786,
- 48.70896
- ],
- [
- -2.28475,
- 48.71909
- ],
- [
- -2.17543,
- 48.65016
- ],
- [
- -2.0137,
- 48.73221
- ],
- [
- -1.80953,
- 48.73178
- ],
- [
- -1.7243,
- 48.75828
- ],
- [
- -1.70557,
- 48.84512
- ],
- [
- -1.90304,
- 48.86288
- ],
- [
- -1.91027,
- 48.92348
- ],
- [
- -1.68714,
- 48.93249
- ],
- [
- -1.74277,
- 49.24473
- ],
- [
- -1.85748,
- 49.3253
- ],
- [
- -1.9262,
- 49.65573
- ],
- [
- -2.03908,
- 49.67872
- ],
- [
- -2.00445,
- 49.76087
- ],
- [
- -1.61759,
- 49.68498
- ],
- [
- -1.28373,
- 49.76067
- ],
- [
- -1.1492,
- 49.63504
- ],
- [
- -1.18545,
- 49.54836
- ],
- [
- -0.96463,
- 49.42509
- ],
- [
- -0.74429,
- 49.36802
- ],
- [
- -0.39014,
- 49.3622
- ],
- [
- -0.24976,
- 49.3158
- ],
- [
- -0.13342,
- 49.31293
- ],
- [
- 0.02731,
- 49.37619
- ],
- [
- 0.01801,
- 49.54656
- ],
- [
- 0.12211,
- 49.69292
- ],
- [
- 0.51713,
- 49.86466
- ],
- [
- 1.05727,
- 49.94904
- ],
- [
- 1.43908,
- 50.11819
- ],
- [
- 1.53177,
- 50.46437
- ],
- [
- 1.52549,
- 50.85867
- ],
- [
- 1.64118,
- 50.95919
- ],
- [
- 2.59712,
- 51.17355
- ],
- [
- 2.66071,
- 51.0196
- ],
- [
- 2.07124,
- 50.92022
- ],
- [
- 2.05937,
- 50.94709
- ],
- [
- 1.7976,
- 50.89906
- ],
- [
- 1.68089,
- 50.8717
- ],
- [
- 1.65569,
- 50.59729
- ],
- [
- 1.75357,
- 50.5932
- ],
- [
- 1.72295,
- 50.24702
- ],
- [
- 1.82156,
- 50.24262
- ],
- [
- 1.80149,
- 50.05116
- ],
- [
- 1.54565,
- 50.06311
- ],
- [
- 1.54155,
- 50.01267
- ],
- [
- 1.42462,
- 50.01747
- ],
- [
- 1.42667,
- 50.05276
- ],
- [
- 1.03838,
- 49.84609
- ],
- [
- 0.9827,
- 49.88916
- ],
- [
- 0.57961,
- 49.82133
- ],
- [
- 0.42063,
- 49.76297
- ],
- [
- 0.4281,
- 49.75445
- ],
- [
- 0.20831,
- 49.67269
- ],
- [
- 0.14765,
- 49.57767
- ],
- [
- 0.13461,
- 49.5809
- ],
- [
- 0.11117,
- 49.54365
- ],
- [
- 0.56598,
- 49.52045
- ],
- [
- 0.5632,
- 49.49989
- ],
- [
- 0.63001,
- 49.49666
- ],
- [
- 0.61478,
- 49.37441
- ],
- [
- 0.54825,
- 49.37851
- ],
- [
- 0.54254,
- 49.33461
- ],
- [
- 0.45741,
- 49.33938
- ],
- [
- 0.45843,
- 49.34492
- ],
- [
- 0.32597,
- 49.35456
- ],
- [
- 0.32846,
- 49.38128
- ],
- [
- 0.28011,
- 49.38433
- ],
- [
- 0.27689,
- 49.36334
- ],
- [
- 0.21095,
- 49.36658
- ],
- [
- 0.20817,
- 49.35084
- ],
- [
- 0.14326,
- 49.35532
- ],
- [
- 0.13769,
- 49.3115
- ],
- [
- 0.07204,
- 49.31532
- ],
- [
- 0.0675,
- 49.28713
- ],
- [
- 0.00274,
- 49.29076
- ],
- [
- 0.00508,
- 49.25711
- ],
- [
- -0.02027,
- 49.26036
- ],
- [
- -0.03492,
- 49.1973
- ],
- [
- -0.19448,
- 49.21463
- ],
- [
- -0.38966,
- 49.12726
- ],
- [
- -0.45369,
- 49.18792
- ],
- [
- -0.3561,
- 49.23214
- ],
- [
- -0.82088,
- 49.28331
- ],
- [
- -0.99778,
- 49.30149
- ],
- [
- -1.16728,
- 49.24545
- ],
- [
- -1.19515,
- 49.28183
- ],
- [
- -1.26768,
- 49.24099
- ],
- [
- -1.34114,
- 49.2975
- ],
- [
- -1.24768,
- 49.35025
- ],
- [
- -1.44583,
- 49.60689
- ],
- [
- -1.81105,
- 49.61757
- ],
- [
- -1.77479,
- 49.44333
- ],
- [
- -1.72775,
- 49.46509
- ],
- [
- -1.5339,
- 49.29098
- ],
- [
- -1.47909,
- 49.29233
- ],
- [
- -1.47608,
- 49.24027
- ],
- [
- -1.43557,
- 49.20326
- ],
- [
- -1.47225,
- 49.1822
- ],
- [
- -1.45091,
- 48.75725
- ],
- [
- -1.31155,
- 48.76408
- ],
- [
- -1.30533,
- 48.70216
- ],
- [
- -1.2584,
- 48.70421
- ],
- [
- -1.25229,
- 48.64353
- ],
- [
- -1.23519,
- 48.64435
- ],
- [
- -1.2269,
- 48.56824
- ],
- [
- -1.85218,
- 48.53086
- ],
- [
- -1.84908,
- 48.4975
- ],
- [
- -1.92326,
- 48.49187
- ],
- [
- -1.92813,
- 48.44096
- ],
- [
- -2.04272,
- 48.43601
- ],
- [
- -2.03889,
- 48.48191
- ],
- [
- -2.2895,
- 48.46102
- ],
- [
- -2.3021,
- 48.52433
- ],
- [
- -2.40863,
- 48.51618
- ],
- [
- -2.42035,
- 48.56954
- ],
- [
- -2.43084,
- 48.57852
- ],
- [
- -2.49083,
- 48.54924
- ],
- [
- -2.47353,
- 48.53326
- ],
- [
- -2.54978,
- 48.49647
- ],
- [
- -2.54005,
- 48.48747
- ],
- [
- -2.70681,
- 48.40746
- ],
- [
- -3.02979,
- 48.69115
- ],
- [
- -4.01034,
- 48.53179
- ],
- [
- -4.05342,
- 48.64412
- ],
- [
- -4.38281,
- 48.57349
- ],
- [
- -4.35482,
- 48.5118
- ],
- [
- -4.38853,
- 48.50473
- ],
- [
- -4.13495,
- 48.44868
- ],
- [
- -4.16411,
- 48.38936
- ],
- [
- -4.01832,
- 48.35685
- ],
- [
- -4.04733,
- 48.29918
- ],
- [
- -3.98814,
- 48.2867
- ],
- [
- -4.0214,
- 48.21606
- ],
- [
- -4.03634,
- 48.21958
- ],
- [
- -4.06623,
- 48.16028
- ],
- [
- -4.16675,
- 48.18247
- ],
- [
- -4.18331,
- 48.14934
- ],
- [
- -4.17232,
- 48.1065
- ],
- [
- -4.20111,
- 48.10285
- ],
- [
- -4.18643,
- 48.04389
- ],
- [
- -4.18806,
- 48.04061
- ],
- [
- -4.35686,
- 48.02305
- ],
- [
- -4.25657,
- 47.93997
- ],
- [
- -4.23363,
- 47.93497
- ],
- [
- -4.21371,
- 47.97598
- ],
- [
- -4.21854,
- 47.97726
- ],
- [
- -4.1806,
- 48.05569
- ],
- [
- -3.6172,
- 47.93124
- ],
- [
- -2.17991,
- 47.58642
- ],
- [
- -2.25449,
- 47.44501
- ],
- [
- -2.30182,
- 47.4568
- ],
- [
- -2.32043,
- 47.42092
- ],
- [
- -2.30372,
- 47.41755
- ],
- [
- -2.34753,
- 47.33499
- ],
- [
- -2.36219,
- 47.33837
- ],
- [
- -2.38079,
- 47.3039
- ],
- [
- -2.35852,
- 47.29854
- ],
- [
- -2.29962,
- 47.29784
- ],
- [
- -2.29742,
- 47.3618
- ],
- [
- -2.13199,
- 47.35852
- ],
- [
- -2.13478,
- 47.39107
- ],
- [
- -2.01565,
- 47.39623
- ],
- [
- -2.01404,
- 47.38095
- ],
- [
- -1.92862,
- 47.38254
- ],
- [
- -1.92891,
- 47.37956
- ],
- [
- -1.8322,
- 47.38184
- ],
- [
- -1.82986,
- 47.34165
- ],
- [
- -1.73608,
- 47.34304
- ],
- [
- -1.73418,
- 47.305
- ],
- [
- -1.64084,
- 47.30639
- ],
- [
- -1.64011,
- 47.29427
- ],
- [
- -1.58355,
- 47.29566
- ],
- [
- -1.58531,
- 47.33708
- ],
- [
- -1.4612,
- 47.33966
- ],
- [
- -1.46003,
- 47.32924
- ],
- [
- -1.37211,
- 47.33221
- ],
- [
- -1.36054,
- 47.11239
- ],
- [
- -1.48567,
- 47.11149
- ],
- [
- -1.48582,
- 47.11877
- ],
- [
- -1.66897,
- 47.11688
- ],
- [
- -1.66971,
- 47.12864
- ],
- [
- -1.72553,
- 47.12764
- ],
- [
- -1.72612,
- 47.13761
- ],
- [
- -1.93975,
- 47.13263
- ],
- [
- -1.94019,
- 47.1422
- ],
- [
- -1.9925,
- 47.14309
- ],
- [
- -1.81066,
- 47.00588
- ],
- [
- -1.94723,
- 46.92078
- ],
- [
- -1.92891,
- 46.90677
- ],
- [
- -1.99529,
- 46.86461
- ],
- [
- -1.73652,
- 46.66839
- ],
- [
- -1.77535,
- 46.64386
- ],
- [
- -1.82678,
- 46.64174
- ],
- [
- -1.82473,
- 46.62071
- ],
- [
- -1.18192,
- 46.39987
- ],
- [
- -0.91261,
- 46.3048
- ],
- [
- -0.95481,
- 46.2489
- ],
- [
- -0.94235,
- 46.24424
- ],
- [
- -0.98385,
- 46.18807
- ]
- ],
- [
- [
- 3.14769,
- 42.40072
- ],
- [
- 3.14949,
- 42.40015
- ],
- [
- 3.15305,
- 42.40052
- ],
- [
- 3.15804,
- 42.40243
- ],
- [
- 3.1877,
- 42.42805
- ],
- [
- 3.14227,
- 42.5248
- ],
- [
- 3.06837,
- 42.54635
- ],
- [
- 3.04884,
- 42.6942
- ],
- [
- 3.0799,
- 43.03073
- ],
- [
- 3.22641,
- 43.18727
- ],
- [
- 3.40916,
- 43.26032
- ],
- [
- 3.52104,
- 43.25877
- ],
- [
- 3.66429,
- 43.37628
- ],
- [
- 3.73841,
- 43.39054
- ],
- [
- 4.00979,
- 43.53607
- ],
- [
- 4.17692,
- 43.45636
- ],
- [
- 4.54355,
- 43.43349
- ],
- [
- 4.54943,
- 43.35401
- ],
- [
- 4.83506,
- 43.30891
- ],
- [
- 4.97506,
- 43.38309
- ],
- [
- 5.03219,
- 43.31928
- ],
- [
- 5.25919,
- 43.31928
- ],
- [
- 5.31082,
- 43.20504
- ],
- [
- 5.35682,
- 43.18645
- ],
- [
- 5.36882,
- 43.16785
- ],
- [
- 5.40232,
- 43.16211
- ],
- [
- 5.41382,
- 43.17123
- ],
- [
- 5.40919,
- 43.19921
- ],
- [
- 5.54232,
- 43.18827
- ],
- [
- 5.60582,
- 43.14797
- ],
- [
- 5.6197,
- 43.1529
- ],
- [
- 5.63832,
- 43.17159
- ],
- [
- 5.67157,
- 43.1674
- ],
- [
- 5.69095,
- 43.13411
- ],
- [
- 5.77607,
- 43.10637
- ],
- [
- 5.7762,
- 43.09432
- ],
- [
- 5.75407,
- 43.08328
- ],
- [
- 5.75707,
- 43.0725
- ],
- [
- 5.77032,
- 43.06465
- ],
- [
- 5.85933,
- 43.03469
- ],
- [
- 5.8877,
- 43.06273
- ],
- [
- 5.9567,
- 43.06109
- ],
- [
- 5.96383,
- 43.09277
- ],
- [
- 6.00033,
- 43.09186
- ],
- [
- 6.01745,
- 43.06849
- ],
- [
- 6.10233,
- 43.07415
- ],
- [
- 6.10483,
- 43.0526
- ],
- [
- 6.0666,
- 43.04318
- ],
- [
- 6.06722,
- 43.03785
- ],
- [
- 6.1427,
- 43.00923
- ],
- [
- 6.15676,
- 42.98715
- ],
- [
- 6.19635,
- 42.97331
- ],
- [
- 6.22221,
- 42.9801
- ],
- [
- 6.26891,
- 42.99651
- ],
- [
- 6.25515,
- 43.03627
- ],
- [
- 6.2019,
- 43.02713
- ],
- [
- 6.18378,
- 43.09188
- ],
- [
- 6.30153,
- 43.09909
- ],
- [
- 6.32478,
- 43.07974
- ],
- [
- 6.37778,
- 43.08011
- ],
- [
- 6.38866,
- 43.13395
- ],
- [
- 6.51341,
- 43.14608
- ],
- [
- 6.57704,
- 43.17881
- ],
- [
- 6.62291,
- 43.14563
- ],
- [
- 6.69779,
- 43.19969
- ],
- [
- 6.68016,
- 43.23357
- ],
- [
- 6.72116,
- 43.26007
- ],
- [
- 6.72241,
- 43.27472
- ],
- [
- 6.67054,
- 43.29192
- ],
- [
- 6.68741,
- 43.33113
- ],
- [
- 6.72416,
- 43.34267
- ],
- [
- 6.75291,
- 43.409
- ],
- [
- 6.79104,
- 43.39674
- ],
- [
- 6.90629,
- 43.41672
- ],
- [
- 6.96767,
- 43.50273
- ],
- [
- 6.96617,
- 43.52812
- ],
- [
- 7.00617,
- 43.53845
- ],
- [
- 7.03554,
- 43.4982
- ],
- [
- 7.06892,
- 43.5001
- ],
- [
- 7.09079,
- 43.51642
- ],
- [
- 7.06267,
- 43.53672
- ],
- [
- 7.08254,
- 43.5456
- ],
- [
- 7.1238,
- 43.53074
- ],
- [
- 7.1558,
- 43.5437
- ],
- [
- 7.1433,
- 43.62284
- ],
- [
- 7.16867,
- 43.64636
- ],
- [
- 7.2138,
- 43.63469
- ],
- [
- 7.25417,
- 43.68497
- ],
- [
- 7.3403,
- 43.66744
- ],
- [
- 7.36442,
- 43.6894
- ],
- [
- 7.35305,
- 43.7082
- ],
- [
- 7.4163,
- 43.71091
- ],
- [
- 7.45405,
- 43.74506
- ],
- [
- 7.4943,
- 43.74524
- ],
- [
- 7.57943,
- 43.78424
- ],
- [
- 7.60552,
- 43.78603
- ],
- [
- 7.60368,
- 43.78898
- ],
- [
- 7.59588,
- 43.79528
- ],
- [
- 7.59628,
- 43.79549
- ],
- [
- 7.53853,
- 43.84195
- ],
- [
- 7.45996,
- 43.79988
- ],
- [
- 7.44781,
- 43.80934
- ],
- [
- 7.32353,
- 43.74806
- ],
- [
- 7.30822,
- 43.76357
- ],
- [
- 6.64878,
- 43.3885
- ],
- [
- 6.66865,
- 43.37178
- ],
- [
- 6.51003,
- 43.27803
- ],
- [
- 6.56584,
- 43.22509
- ],
- [
- 6.12681,
- 43.10527
- ],
- [
- 5.48229,
- 43.24939
- ],
- [
- 5.47267,
- 43.2309
- ],
- [
- 5.41567,
- 43.24657
- ],
- [
- 5.45267,
- 43.3451
- ],
- [
- 4.80191,
- 43.48158
- ],
- [
- 4.76416,
- 43.39244
- ],
- [
- 4.65716,
- 43.42368
- ],
- [
- 4.67228,
- 43.45608
- ],
- [
- 4.43203,
- 43.52419
- ],
- [
- 4.41453,
- 43.49255
- ],
- [
- 4.16102,
- 43.56433
- ],
- [
- 4.14452,
- 43.57067
- ],
- [
- 4.14165,
- 43.57393
- ],
- [
- 4.18677,
- 43.59946
- ],
- [
- 4.10565,
- 43.68196
- ],
- [
- 3.79689,
- 43.52165
- ],
- [
- 3.77851,
- 43.51313
- ],
- [
- 3.76464,
- 43.50597
- ],
- [
- 3.76201,
- 43.50334
- ],
- [
- 3.74226,
- 43.49328
- ],
- [
- 3.71601,
- 43.52075
- ],
- [
- 3.26213,
- 43.28143
- ],
- [
- 3.24638,
- 43.29735
- ],
- [
- 3.18388,
- 43.28052
- ],
- [
- 3.10675,
- 43.24083
- ],
- [
- 3.15475,
- 43.19419
- ],
- [
- 2.90625,
- 43.19383
- ],
- [
- 2.90675,
- 42.76189
- ],
- [
- 2.94613,
- 42.76208
- ],
- [
- 2.9465,
- 42.61516
- ],
- [
- 2.99238,
- 42.61497
- ],
- [
- 2.99238,
- 42.5125
- ],
- [
- 3.041,
- 42.51259
- ],
- [
- 3.04121,
- 42.50093
- ],
- [
- 3.09086,
- 42.50082
- ],
- [
- 3.14769,
- 42.40072
- ]
- ],
- [
- [
- 6.35945,
- 43.02321
- ],
- [
- 6.42477,
- 43.02444
- ],
- [
- 6.45244,
- 43.03504
- ],
- [
- 6.46985,
- 43.05461
- ],
- [
- 6.51121,
- 43.05765
- ],
- [
- 6.52156,
- 43.04318
- ],
- [
- 6.48364,
- 43.02444
- ],
- [
- 6.47179,
- 43.00725
- ],
- [
- 6.41178,
- 42.9918
- ],
- [
- 6.39852,
- 42.98048
- ],
- [
- 6.35178,
- 42.99905
- ],
- [
- 6.35945,
- 43.02321
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Ortho Littorale V2 - MEDDE",
- "url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "FR",
- "end_date": "2014",
- "id": "GeolittoralV2-Orthophotos",
- "license_url": "http://www.geolittoral.developpement-durable.gouv.fr/mentions-legales-a37.html",
- "name": "Géolittoral V2 - Orthophotos 2011-2014",
- "start_date": "2011",
- "type": "wms",
- "url": "http://geolittoral.din.developpement-durable.gouv.fr/wxs?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortholittorale_v2_rvb&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.06066,
- 48.60554
- ],
- [
- 6.29717,
- 48.59923
- ],
- [
- 6.30611,
- 48.74077
- ],
- [
- 6.06896,
- 48.7471
- ],
- [
- 6.06066,
- 48.60554
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "GrandNancy Orthophotographie 2012",
- "url": "https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie"
- },
- "country_code": "FR",
- "end_date": "2012",
- "id": "GrandNancy_Orthophotographie_2012",
- "license_url": "https://openstreetmap.fr/outils",
- "max_zoom": 22,
- "name": "GrandNancy - Orthophoto - 2012",
- "start_date": "2012",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/nancy_2012/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -1.48638,
- 46.87691
- ],
- [
- -1.54437,
- 46.84873
- ],
- [
- -1.73468,
- 46.87246
- ],
- [
- -1.89276,
- 46.94234
- ],
- [
- -1.95475,
- 46.98084
- ],
- [
- -2.07067,
- 47.08521
- ],
- [
- -2.2678,
- 47.12656
- ],
- [
- -2.22627,
- 47.17124
- ],
- [
- -2.19217,
- 47.16914
- ],
- [
- -2.19341,
- 47.25546
- ],
- [
- -2.29694,
- 47.22769
- ],
- [
- -2.41658,
- 47.25336
- ],
- [
- -2.54862,
- 47.28575
- ],
- [
- -2.63913,
- 47.41678
- ],
- [
- -2.50573,
- 47.50812
- ],
- [
- -2.31063,
- 47.53021
- ],
- [
- -2.24836,
- 47.52384
- ],
- [
- -2.23223,
- 47.51499
- ],
- [
- -2.12109,
- 47.54674
- ],
- [
- -2.11783,
- 47.60126
- ],
- [
- -2.1001,
- 47.61123
- ],
- [
- -2.09981,
- 47.62005
- ],
- [
- -2.11141,
- 47.62873
- ],
- [
- -2.10055,
- 47.65141
- ],
- [
- -2.08121,
- 47.66578
- ],
- [
- -1.98016,
- 47.70751
- ],
- [
- -1.83077,
- 47.72419
- ],
- [
- -1.67455,
- 47.72544
- ],
- [
- -1.63735,
- 47.77463
- ],
- [
- -1.49601,
- 47.81752
- ],
- [
- -1.49911,
- 47.84166
- ],
- [
- -1.38133,
- 47.84415
- ],
- [
- -1.346,
- 47.81086
- ],
- [
- -1.23007,
- 47.78587
- ],
- [
- -1.21643,
- 47.75838
- ],
- [
- -1.22635,
- 47.73628
- ],
- [
- -1.21086,
- 47.7317
- ],
- [
- -1.18668,
- 47.73462
- ],
- [
- -1.15196,
- 47.69332
- ],
- [
- -1.13151,
- 47.63654
- ],
- [
- -1.09121,
- 47.6332
- ],
- [
- -0.99265,
- 47.6027
- ],
- [
- -0.98459,
- 47.58598
- ],
- [
- -1.0317,
- 47.55001
- ],
- [
- -1.13585,
- 47.55628
- ],
- [
- -1.13275,
- 47.5161
- ],
- [
- -1.0317,
- 47.51778
- ],
- [
- -0.94863,
- 47.50103
- ],
- [
- -0.93686,
- 47.47715
- ],
- [
- -0.93376,
- 47.43859
- ],
- [
- -0.9009,
- 47.39874
- ],
- [
- -0.92694,
- 47.37482
- ],
- [
- -0.97157,
- 47.35845
- ],
- [
- -1.28339,
- 47.32736
- ],
- [
- -1.23379,
- 47.26093
- ],
- [
- -1.20032,
- 47.26935
- ],
- [
- -1.16498,
- 47.24957
- ],
- [
- -1.14143,
- 47.1763
- ],
- [
- -1.1563,
- 47.15818
- ],
- [
- -1.20652,
- 47.12402
- ],
- [
- -1.20838,
- 47.10968
- ],
- [
- -1.15568,
- 47.10504
- ],
- [
- -1.14081,
- 47.08056
- ],
- [
- -1.09431,
- 47.0717
- ],
- [
- -1.09989,
- 47.03199
- ],
- [
- -1.14453,
- 47.01636
- ],
- [
- -1.21582,
- 47.02904
- ],
- [
- -1.26727,
- 47.06325
- ],
- [
- -1.28524,
- 47.02185
- ],
- [
- -1.34972,
- 47.02397
- ],
- [
- -1.33918,
- 46.969
- ],
- [
- -1.3491,
- 46.94446
- ],
- [
- -1.45014,
- 46.91186
- ],
- [
- -1.47504,
- 46.9176
- ],
- [
- -1.48775,
- 46.93063
- ],
- [
- -1.49235,
- 46.98433
- ],
- [
- -1.48644,
- 46.99943
- ],
- [
- -1.49213,
- 47.02722
- ],
- [
- -1.52764,
- 47.00541
- ],
- [
- -1.52961,
- 46.97252
- ],
- [
- -1.50507,
- 46.94439
- ],
- [
- -1.50222,
- 46.92973
- ],
- [
- -1.51142,
- 46.91371
- ],
- [
- -1.48622,
- 46.89724
- ],
- [
- -1.48638,
- 46.87691
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Loire-Atlantique ouverture des données publiques",
- "url": "http://data2.loire-atlantique.fr/licences/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2154",
- "EPSG:3857"
- ],
- "country_code": "FR",
- "end_date": "2016",
- "id": "Loire_Atlantique-Orthophotos-2016",
- "license_url": "https://wiki.openstreetmap.org/wiki/FR:Sources_de_donn%C3%A9es_potentielles/France",
- "max_zoom": 20,
- "name": "Loire-Atlantique - Orthophotos 2016 - 10 cm",
- "start_date": "2016",
- "type": "wms",
- "url": "https://wms-vuduciel2.makina-corpus.net/geoserver/wms?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=cg44:ortho44-2016&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.67728,
- 45.9607
- ],
- [
- 4.66438,
- 45.54676
- ],
- [
- 4.88308,
- 45.54291
- ],
- [
- 4.8848,
- 45.59698
- ],
- [
- 5.16666,
- 45.59194
- ],
- [
- 5.17284,
- 45.74596
- ],
- [
- 5.10796,
- 45.74692
- ],
- [
- 5.11311,
- 45.8814
- ],
- [
- 4.90677,
- 45.88499
- ],
- [
- 4.90849,
- 45.9213
- ],
- [
- 4.84394,
- 45.92202
- ],
- [
- 4.84531,
- 45.95831
- ],
- [
- 4.67728,
- 45.9607
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Métropole de Lyon",
- "url": "https://data.beta.grandlyon.com/fr/jeux-de-donnees/orthophotographie-2018-metropole-lyon-format-ecw/info"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4171",
- "EPSG:27562",
- "EPSG:2154",
- "EPSG:3857",
- "EPSG:3946",
- "EPSG:27572"
- ],
- "best": true,
- "category": "photo",
- "country_code": "FR",
- "description": "Orthophotographie 2018 de la Métropole de Lyon",
- "end_date": "2018-04-20",
- "id": "orthophoto_lyon_2018",
- "license_url": "https://download.data.grandlyon.com/files/grandlyon/LicenceOuverte.pdf",
- "max_zoom": 22,
- "min_zoom": 10,
- "name": "Lyon Orthophoto 2018 (8cm)",
- "privacy_policy_url": "https://data.beta.grandlyon.com/en/mentions-legales",
- "start_date": "2018-04-17",
- "type": "wms",
- "url": "https://download.data.grandlyon.com/wms/grandlyon?LAYERS=Ortho2018_Dalle_unique_8cm_CC46&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.69049,
- 45.54652
- ],
- [
- 4.83131,
- 45.54652
- ],
- [
- 4.83131,
- 45.57131
- ],
- [
- 4.88344,
- 45.57131
- ],
- [
- 4.88344,
- 45.59745
- ],
- [
- 5.16622,
- 45.59745
- ],
- [
- 5.16622,
- 45.74533
- ],
- [
- 5.10793,
- 45.74533
- ],
- [
- 5.10793,
- 45.88145
- ],
- [
- 4.90698,
- 45.88145
- ],
- [
- 4.90698,
- 45.92107
- ],
- [
- 4.84377,
- 45.92107
- ],
- [
- 4.84377,
- 45.94011
- ],
- [
- 4.71543,
- 45.94011
- ],
- [
- 4.71543,
- 45.87018
- ],
- [
- 4.67458,
- 45.87018
- ],
- [
- 4.67458,
- 45.7178
- ],
- [
- 4.69567,
- 45.7178
- ],
- [
- 4.69049,
- 45.54652
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Grand Lyon Smart Data DSIT",
- "url": "https://data.grandlyon.com/jeux-de-donnees/orthophotographie-2012-metropole-lyon/info"
- },
- "available_projections": [
- "EPSG:27572",
- "EPSG:27562",
- "EPSG:2154",
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3946",
- "EPSG:4171"
- ],
- "category": "historicphoto",
- "country_code": "FR",
- "description": "Orthophotographie 2012 du Grand Lyon",
- "end_date": "2012-03",
- "id": "orthophoto_lyon_2012",
- "license_url": "https://download.data.grandlyon.com/files/grandlyon/LicenceOuverte.pdf",
- "name": "Lyon Orthophoto 2012-03 10cm",
- "privacy_policy_url": "https://data.beta.grandlyon.com/en/mentions-legales",
- "start_date": "2012-03",
- "type": "wms",
- "url": "https://download.data.grandlyon.com/wms/grandlyon?LAYERS=Ortho2012_vue_ensemble_20cm_CC46&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 4.66489,
- 45.54688
- ],
- [
- 4.88253,
- 45.54348
- ],
- [
- 4.88435,
- 45.59745
- ],
- [
- 5.16623,
- 45.59242
- ],
- [
- 5.17217,
- 45.74532
- ],
- [
- 5.10793,
- 45.74653
- ],
- [
- 5.11305,
- 45.88145
- ],
- [
- 4.90698,
- 45.88508
- ],
- [
- 4.90822,
- 45.92106
- ],
- [
- 4.84377,
- 45.92212
- ],
- [
- 4.84497,
- 45.9581
- ],
- [
- 4.67729,
- 45.96069
- ],
- [
- 4.66489,
- 45.54688
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Métropole de Lyon DINSI",
- "url": "https://data.beta.grandlyon.com/fr/jeux-de-donnees/orthophotographie-2015-metropole-lyon-format-ecw/info"
- },
- "category": "historicphoto",
- "country_code": "FR",
- "end_date": "2015-05",
- "id": "orthophoto_lyon",
- "license_url": "https://download.data.grandlyon.com/files/grandlyon/LicenceOuverte.pdf",
- "max_zoom": 22,
- "min_zoom": 2,
- "name": "Lyon Orthophoto 2015 (8cm)",
- "privacy_policy_url": "https://data.beta.grandlyon.com/en/mentions-legales",
- "start_date": "2015-05",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/lyon/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.53731,
- 47.78041
- ],
- [
- 7.57439,
- 47.84128
- ],
- [
- 7.57301,
- 47.85602
- ],
- [
- 7.55035,
- 47.86201
- ],
- [
- 7.53525,
- 47.84588
- ],
- [
- 7.5016,
- 47.85141
- ],
- [
- 7.45972,
- 47.84174
- ],
- [
- 7.4556,
- 47.83252
- ],
- [
- 7.4453,
- 47.83114
- ],
- [
- 7.43088,
- 47.84128
- ],
- [
- 7.41549,
- 47.83831
- ],
- [
- 7.39174,
- 47.84727
- ],
- [
- 7.38007,
- 47.83851
- ],
- [
- 7.33475,
- 47.83989
- ],
- [
- 7.34024,
- 47.89563
- ],
- [
- 7.31758,
- 47.91082
- ],
- [
- 7.28737,
- 47.89977
- ],
- [
- 7.28462,
- 47.88412
- ],
- [
- 7.24686,
- 47.88228
- ],
- [
- 7.23724,
- 47.87629
- ],
- [
- 7.23312,
- 47.86431
- ],
- [
- 7.2139,
- 47.86524
- ],
- [
- 7.183,
- 47.85786
- ],
- [
- 7.17613,
- 47.84819
- ],
- [
- 7.21115,
- 47.82284
- ],
- [
- 7.18986,
- 47.81085
- ],
- [
- 7.19948,
- 47.78179
- ],
- [
- 7.16789,
- 47.77025
- ],
- [
- 7.183,
- 47.73517
- ],
- [
- 7.17682,
- 47.72362
- ],
- [
- 7.19467,
- 47.69451
- ],
- [
- 7.21802,
- 47.68527
- ],
- [
- 7.24548,
- 47.68527
- ],
- [
- 7.25166,
- 47.69497
- ],
- [
- 7.2448,
- 47.70376
- ],
- [
- 7.2551,
- 47.71392
- ],
- [
- 7.27844,
- 47.713
- ],
- [
- 7.27982,
- 47.70237
- ],
- [
- 7.26814,
- 47.69405
- ],
- [
- 7.26883,
- 47.68434
- ],
- [
- 7.28531,
- 47.67094
- ],
- [
- 7.30247,
- 47.66308
- ],
- [
- 7.32376,
- 47.65984
- ],
- [
- 7.33337,
- 47.66724
- ],
- [
- 7.3732,
- 47.65383
- ],
- [
- 7.39242,
- 47.65475
- ],
- [
- 7.40822,
- 47.6603
- ],
- [
- 7.39723,
- 47.67648
- ],
- [
- 7.42744,
- 47.68666
- ],
- [
- 7.47551,
- 47.69821
- ],
- [
- 7.5222,
- 47.69636
- ],
- [
- 7.55104,
- 47.71531
- ],
- [
- 7.56134,
- 47.73517
- ],
- [
- 7.53731,
- 47.78041
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Mulhouse Alsace Agglomération 2018",
- "url": "https://data.mulhouse-alsace.fr/explore/dataset/m2a_orthophotographie-2018/information/"
- },
- "country_code": "FR",
- "end_date": "2018",
- "id": "Mulhouse_2018",
- "license_url": "https://data.mulhouse-alsace.fr/explore/dataset/m2a_orthophotographie-2018/information/",
- "max_zoom": 22,
- "name": "Mulhouse - 2018",
- "start_date": "2018",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/mulhouse_2018/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Tiles © cquest@Openstreetmap France, data © IGN, LO/OL",
- "url": "https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE"
- },
- "country_code": "FR",
- "description": "Routes du réseau classé (autoroutes, nationales, départementales)",
- "id": "route500",
- "license_url": "https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE",
- "max_zoom": 20,
- "min_zoom": 12,
- "name": "Route 500",
- "overlay": true,
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.openstreetmap.fr/route500/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 1.192,
- 43.63288
- ],
- [
- 1.20154,
- 43.63297
- ],
- [
- 1.20111,
- 43.65549
- ],
- [
- 1.2228,
- 43.6557
- ],
- [
- 1.22262,
- 43.66534
- ],
- [
- 1.22753,
- 43.66538
- ],
- [
- 1.22754,
- 43.66564
- ],
- [
- 1.23376,
- 43.66569
- ],
- [
- 1.23376,
- 43.66502
- ],
- [
- 1.23512,
- 43.66503
- ],
- [
- 1.23509,
- 43.66707
- ],
- [
- 1.24436,
- 43.66716
- ],
- [
- 1.24416,
- 43.67439
- ],
- [
- 1.2494,
- 43.67443
- ],
- [
- 1.2494,
- 43.67466
- ],
- [
- 1.25557,
- 43.67472
- ],
- [
- 1.25557,
- 43.67445
- ],
- [
- 1.25695,
- 43.67447
- ],
- [
- 1.25688,
- 43.67853
- ],
- [
- 1.28749,
- 43.67883
- ],
- [
- 1.28708,
- 43.70132
- ],
- [
- 1.30882,
- 43.70146
- ],
- [
- 1.30865,
- 43.71277
- ],
- [
- 1.33033,
- 43.71295
- ],
- [
- 1.33002,
- 43.73052
- ],
- [
- 1.33671,
- 43.73058
- ],
- [
- 1.33673,
- 43.73122
- ],
- [
- 1.37343,
- 43.73105
- ],
- [
- 1.37358,
- 43.72458
- ],
- [
- 1.46045,
- 43.72529
- ],
- [
- 1.46078,
- 43.7028
- ],
- [
- 1.48249,
- 43.70295
- ],
- [
- 1.48298,
- 43.66921
- ],
- [
- 1.50468,
- 43.66936
- ],
- [
- 1.50484,
- 43.65812
- ],
- [
- 1.52655,
- 43.65827
- ],
- [
- 1.52669,
- 43.64703
- ],
- [
- 1.54837,
- 43.64716
- ],
- [
- 1.54854,
- 43.63594
- ],
- [
- 1.57022,
- 43.63608
- ],
- [
- 1.57051,
- 43.61358
- ],
- [
- 1.54882,
- 43.61343
- ],
- [
- 1.5491,
- 43.59095
- ],
- [
- 1.57077,
- 43.59107
- ],
- [
- 1.57094,
- 43.57983
- ],
- [
- 1.57937,
- 43.57989
- ],
- [
- 1.57948,
- 43.57377
- ],
- [
- 1.58091,
- 43.57378
- ],
- [
- 1.58109,
- 43.55738
- ],
- [
- 1.57123,
- 43.55731
- ],
- [
- 1.57165,
- 43.52355
- ],
- [
- 1.39848,
- 43.52226
- ],
- [
- 1.39865,
- 43.51101
- ],
- [
- 1.3121,
- 43.51025
- ],
- [
- 1.3119,
- 43.52152
- ],
- [
- 1.29026,
- 43.52131
- ],
- [
- 1.28986,
- 43.54382
- ],
- [
- 1.31152,
- 43.54401
- ],
- [
- 1.31133,
- 43.55526
- ],
- [
- 1.30369,
- 43.55519
- ],
- [
- 1.30361,
- 43.55951
- ],
- [
- 1.29554,
- 43.55943
- ],
- [
- 1.29554,
- 43.55955
- ],
- [
- 1.28956,
- 43.55945
- ],
- [
- 1.28929,
- 43.57754
- ],
- [
- 1.26757,
- 43.57736
- ],
- [
- 1.2674,
- 43.58861
- ],
- [
- 1.25355,
- 43.5885
- ],
- [
- 1.25338,
- 43.59563
- ],
- [
- 1.2518,
- 43.59563
- ],
- [
- 1.2518,
- 43.59494
- ],
- [
- 1.23504,
- 43.59478
- ],
- [
- 1.23504,
- 43.5946
- ],
- [
- 1.22396,
- 43.5946
- ],
- [
- 1.22394,
- 43.59947
- ],
- [
- 1.21397,
- 43.5993
- ],
- [
- 1.21388,
- 43.60464
- ],
- [
- 1.20206,
- 43.60448
- ],
- [
- 1.20195,
- 43.61048
- ],
- [
- 1.19243,
- 43.61037
- ],
- [
- 1.192,
- 43.63288
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophotoplan 2007 - Toulouse Métropole, 20/09/2012, sous license ODbL",
- "url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2007/information/"
- },
- "category": "historicphoto",
- "country_code": "FR",
- "end_date": "2007",
- "id": "Toulouse-Orthophotoplan-2007",
- "license_url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2007/information/",
- "max_zoom": 22,
- "min_zoom": 7,
- "name": "Toulouse - Orthophotoplan 2007",
- "start_date": "2007",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 1.11351,
- 43.68676
- ],
- [
- 1.13518,
- 43.68708
- ],
- [
- 1.13489,
- 43.69835
- ],
- [
- 1.17829,
- 43.69903
- ],
- [
- 1.17799,
- 43.71028
- ],
- [
- 1.19966,
- 43.71061
- ],
- [
- 1.19934,
- 43.72187
- ],
- [
- 1.24274,
- 43.72253
- ],
- [
- 1.24243,
- 43.73375
- ],
- [
- 1.26415,
- 43.73409
- ],
- [
- 1.26383,
- 43.74536
- ],
- [
- 1.28553,
- 43.74565
- ],
- [
- 1.28525,
- 43.75693
- ],
- [
- 1.30692,
- 43.75723
- ],
- [
- 1.30664,
- 43.76848
- ],
- [
- 1.32834,
- 43.76879
- ],
- [
- 1.32808,
- 43.78003
- ],
- [
- 1.43673,
- 43.78158
- ],
- [
- 1.43731,
- 43.7591
- ],
- [
- 1.45901,
- 43.75937
- ],
- [
- 1.45933,
- 43.74815
- ],
- [
- 1.48103,
- 43.7484
- ],
- [
- 1.48133,
- 43.73718
- ],
- [
- 1.50303,
- 43.73741
- ],
- [
- 1.50359,
- 43.71497
- ],
- [
- 1.52531,
- 43.71518
- ],
- [
- 1.52561,
- 43.70401
- ],
- [
- 1.54727,
- 43.70426
- ],
- [
- 1.54757,
- 43.69304
- ],
- [
- 1.5692,
- 43.69329
- ],
- [
- 1.56957,
- 43.68203
- ],
- [
- 1.5912,
- 43.68227
- ],
- [
- 1.59174,
- 43.6598
- ],
- [
- 1.61342,
- 43.66003
- ],
- [
- 1.61372,
- 43.64883
- ],
- [
- 1.63538,
- 43.64908
- ],
- [
- 1.63841,
- 43.51407
- ],
- [
- 1.29216,
- 43.50947
- ],
- [
- 1.29186,
- 43.5207
- ],
- [
- 1.27021,
- 43.5204
- ],
- [
- 1.26988,
- 43.53164
- ],
- [
- 1.24823,
- 43.53133
- ],
- [
- 1.2476,
- 43.55378
- ],
- [
- 1.22596,
- 43.55349
- ],
- [
- 1.22568,
- 43.56472
- ],
- [
- 1.20398,
- 43.56442
- ],
- [
- 1.20331,
- 43.5869
- ],
- [
- 1.18162,
- 43.58656
- ],
- [
- 1.18102,
- 43.60904
- ],
- [
- 1.15928,
- 43.60869
- ],
- [
- 1.15896,
- 43.61995
- ],
- [
- 1.13726,
- 43.61962
- ],
- [
- 1.13659,
- 43.64209
- ],
- [
- 1.11491,
- 43.64176
- ],
- [
- 1.11351,
- 43.68676
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophotoplan 2011 - Toulouse Métropole, 20/09/2012, sous license ODbL",
- "url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2011/information/"
- },
- "category": "historicphoto",
- "country_code": "FR",
- "end_date": "2011",
- "id": "Toulouse-Orthophotoplan-2011",
- "license_url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2011/information/",
- "max_zoom": 22,
- "min_zoom": 7,
- "name": "Toulouse - Orthophotoplan 2011",
- "start_date": "2011",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 1.11351,
- 43.68676
- ],
- [
- 1.13518,
- 43.68708
- ],
- [
- 1.13489,
- 43.69835
- ],
- [
- 1.17829,
- 43.69903
- ],
- [
- 1.17799,
- 43.71028
- ],
- [
- 1.19966,
- 43.71061
- ],
- [
- 1.19934,
- 43.72187
- ],
- [
- 1.24274,
- 43.72253
- ],
- [
- 1.24243,
- 43.73375
- ],
- [
- 1.26415,
- 43.73409
- ],
- [
- 1.26383,
- 43.74536
- ],
- [
- 1.28553,
- 43.74565
- ],
- [
- 1.28525,
- 43.75693
- ],
- [
- 1.30692,
- 43.75723
- ],
- [
- 1.30664,
- 43.76848
- ],
- [
- 1.32834,
- 43.76879
- ],
- [
- 1.32808,
- 43.78003
- ],
- [
- 1.43673,
- 43.78158
- ],
- [
- 1.43731,
- 43.7591
- ],
- [
- 1.45901,
- 43.75937
- ],
- [
- 1.45933,
- 43.74815
- ],
- [
- 1.48103,
- 43.7484
- ],
- [
- 1.48133,
- 43.73718
- ],
- [
- 1.50303,
- 43.73741
- ],
- [
- 1.50359,
- 43.71497
- ],
- [
- 1.52531,
- 43.71518
- ],
- [
- 1.52561,
- 43.70401
- ],
- [
- 1.54727,
- 43.70426
- ],
- [
- 1.54757,
- 43.69304
- ],
- [
- 1.5692,
- 43.69329
- ],
- [
- 1.56957,
- 43.68203
- ],
- [
- 1.5912,
- 43.68227
- ],
- [
- 1.59174,
- 43.6598
- ],
- [
- 1.61342,
- 43.66003
- ],
- [
- 1.61372,
- 43.64883
- ],
- [
- 1.63538,
- 43.64908
- ],
- [
- 1.63841,
- 43.51407
- ],
- [
- 1.29216,
- 43.50947
- ],
- [
- 1.29186,
- 43.5207
- ],
- [
- 1.27021,
- 43.5204
- ],
- [
- 1.26988,
- 43.53164
- ],
- [
- 1.24823,
- 43.53133
- ],
- [
- 1.2476,
- 43.55378
- ],
- [
- 1.22596,
- 43.55349
- ],
- [
- 1.22568,
- 43.56472
- ],
- [
- 1.20398,
- 43.56442
- ],
- [
- 1.20331,
- 43.5869
- ],
- [
- 1.18162,
- 43.58656
- ],
- [
- 1.18102,
- 43.60904
- ],
- [
- 1.15928,
- 43.60869
- ],
- [
- 1.15896,
- 43.61995
- ],
- [
- 1.13726,
- 43.61962
- ],
- [
- 1.13659,
- 43.64209
- ],
- [
- 1.11491,
- 43.64176
- ],
- [
- 1.11351,
- 43.68676
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophotoplan 2013 - Toulouse Métropole, 31/12/2013, sous license ODbL",
- "url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2013/information/"
- },
- "category": "historicphoto",
- "country_code": "FR",
- "end_date": "2013",
- "id": "Toulouse-Orthophotoplan-2013",
- "license_url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2013/information/",
- "max_zoom": 22,
- "min_zoom": 7,
- "name": "Toulouse - Orthophotoplan 2013",
- "start_date": "2013",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2013/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 1.11351,
- 43.68676
- ],
- [
- 1.13518,
- 43.68708
- ],
- [
- 1.13489,
- 43.69835
- ],
- [
- 1.17829,
- 43.69903
- ],
- [
- 1.17799,
- 43.71028
- ],
- [
- 1.19966,
- 43.71061
- ],
- [
- 1.19934,
- 43.72187
- ],
- [
- 1.24274,
- 43.72253
- ],
- [
- 1.24243,
- 43.73375
- ],
- [
- 1.26415,
- 43.73409
- ],
- [
- 1.26383,
- 43.74536
- ],
- [
- 1.28553,
- 43.74565
- ],
- [
- 1.28525,
- 43.75693
- ],
- [
- 1.30692,
- 43.75723
- ],
- [
- 1.30664,
- 43.76848
- ],
- [
- 1.32834,
- 43.76879
- ],
- [
- 1.32808,
- 43.78003
- ],
- [
- 1.43673,
- 43.78158
- ],
- [
- 1.43731,
- 43.7591
- ],
- [
- 1.45901,
- 43.75937
- ],
- [
- 1.45933,
- 43.74815
- ],
- [
- 1.48103,
- 43.7484
- ],
- [
- 1.48133,
- 43.73718
- ],
- [
- 1.50303,
- 43.73741
- ],
- [
- 1.50359,
- 43.71497
- ],
- [
- 1.52531,
- 43.71518
- ],
- [
- 1.52561,
- 43.70401
- ],
- [
- 1.54727,
- 43.70426
- ],
- [
- 1.54757,
- 43.69304
- ],
- [
- 1.5692,
- 43.69329
- ],
- [
- 1.56957,
- 43.68203
- ],
- [
- 1.5912,
- 43.68227
- ],
- [
- 1.59174,
- 43.6598
- ],
- [
- 1.61342,
- 43.66003
- ],
- [
- 1.61372,
- 43.64883
- ],
- [
- 1.63538,
- 43.64908
- ],
- [
- 1.63841,
- 43.51407
- ],
- [
- 1.29216,
- 43.50947
- ],
- [
- 1.29186,
- 43.5207
- ],
- [
- 1.27021,
- 43.5204
- ],
- [
- 1.26988,
- 43.53164
- ],
- [
- 1.24823,
- 43.53133
- ],
- [
- 1.2476,
- 43.55378
- ],
- [
- 1.22596,
- 43.55349
- ],
- [
- 1.22568,
- 43.56472
- ],
- [
- 1.20398,
- 43.56442
- ],
- [
- 1.20331,
- 43.5869
- ],
- [
- 1.18162,
- 43.58656
- ],
- [
- 1.18102,
- 43.60904
- ],
- [
- 1.15928,
- 43.60869
- ],
- [
- 1.15896,
- 43.61995
- ],
- [
- 1.13726,
- 43.61962
- ],
- [
- 1.13659,
- 43.64209
- ],
- [
- 1.11491,
- 43.64176
- ],
- [
- 1.11351,
- 43.68676
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophotoplan 2015 - Toulouse Métropole, 14/12/2015, sous license ODbL",
- "url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2015/information/"
- },
- "category": "historicphoto",
- "country_code": "FR",
- "end_date": "2015",
- "id": "Toulouse-Orthophotoplan-2015",
- "license_url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2015/information/",
- "max_zoom": 22,
- "min_zoom": 7,
- "name": "Toulouse - Orthophotoplan 2015",
- "start_date": "2015",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2015/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 1.11351,
- 43.68676
- ],
- [
- 1.13518,
- 43.68708
- ],
- [
- 1.13489,
- 43.69835
- ],
- [
- 1.17829,
- 43.69903
- ],
- [
- 1.17799,
- 43.71028
- ],
- [
- 1.19966,
- 43.71061
- ],
- [
- 1.19934,
- 43.72187
- ],
- [
- 1.24274,
- 43.72253
- ],
- [
- 1.24243,
- 43.73375
- ],
- [
- 1.26415,
- 43.73409
- ],
- [
- 1.26383,
- 43.74536
- ],
- [
- 1.28553,
- 43.74565
- ],
- [
- 1.28525,
- 43.75693
- ],
- [
- 1.30692,
- 43.75723
- ],
- [
- 1.30664,
- 43.76848
- ],
- [
- 1.32834,
- 43.76879
- ],
- [
- 1.32808,
- 43.78003
- ],
- [
- 1.43673,
- 43.78158
- ],
- [
- 1.43731,
- 43.7591
- ],
- [
- 1.45901,
- 43.75937
- ],
- [
- 1.45933,
- 43.74815
- ],
- [
- 1.48103,
- 43.7484
- ],
- [
- 1.48133,
- 43.73718
- ],
- [
- 1.50303,
- 43.73741
- ],
- [
- 1.50359,
- 43.71497
- ],
- [
- 1.52531,
- 43.71518
- ],
- [
- 1.52561,
- 43.70401
- ],
- [
- 1.54727,
- 43.70426
- ],
- [
- 1.54757,
- 43.69304
- ],
- [
- 1.5692,
- 43.69329
- ],
- [
- 1.56957,
- 43.68203
- ],
- [
- 1.5912,
- 43.68227
- ],
- [
- 1.59174,
- 43.6598
- ],
- [
- 1.61342,
- 43.66003
- ],
- [
- 1.61372,
- 43.64883
- ],
- [
- 1.63538,
- 43.64908
- ],
- [
- 1.63841,
- 43.51407
- ],
- [
- 1.29216,
- 43.50947
- ],
- [
- 1.29186,
- 43.5207
- ],
- [
- 1.27021,
- 43.5204
- ],
- [
- 1.26988,
- 43.53164
- ],
- [
- 1.24823,
- 43.53133
- ],
- [
- 1.2476,
- 43.55378
- ],
- [
- 1.22596,
- 43.55349
- ],
- [
- 1.22568,
- 43.56472
- ],
- [
- 1.20398,
- 43.56442
- ],
- [
- 1.20331,
- 43.5869
- ],
- [
- 1.18162,
- 43.58656
- ],
- [
- 1.18102,
- 43.60904
- ],
- [
- 1.15928,
- 43.60869
- ],
- [
- 1.15896,
- 43.61995
- ],
- [
- 1.13726,
- 43.61962
- ],
- [
- 1.13659,
- 43.64209
- ],
- [
- 1.11491,
- 43.64176
- ],
- [
- 1.11351,
- 43.68676
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophotoplan 2017 - Toulouse Métropole, 04/07/2018, sous license ODbL",
- "url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2017/information/"
- },
- "best": true,
- "category": "photo",
- "country_code": "FR",
- "end_date": "2017",
- "id": "Toulouse-Orthophotoplan-2017",
- "license_url": "https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2017/information/",
- "max_zoom": 22,
- "min_zoom": 7,
- "name": "Toulouse - Orthophotoplan 2017",
- "start_date": "2017",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2017/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 0.77512,
- 47.32983
- ],
- [
- 0.77427,
- 47.35617
- ],
- [
- 0.77053,
- 47.35611
- ],
- [
- 0.77024,
- 47.36512
- ],
- [
- 0.77398,
- 47.36517
- ],
- [
- 0.7728,
- 47.40148
- ],
- [
- 0.7904,
- 47.40147
- ],
- [
- 0.78988,
- 47.4103
- ],
- [
- 0.79117,
- 47.41047
- ],
- [
- 0.79108,
- 47.41942
- ],
- [
- 0.79392,
- 47.41942
- ],
- [
- 0.79319,
- 47.43733
- ],
- [
- 0.79834,
- 47.43742
- ],
- [
- 0.79808,
- 47.45544
- ],
- [
- 0.80044,
- 47.45541
- ],
- [
- 0.80138,
- 47.46426
- ],
- [
- 0.80074,
- 47.46899
- ],
- [
- 0.79396,
- 47.47331
- ],
- [
- 0.78405,
- 47.47323
- ],
- [
- 0.78387,
- 47.47871
- ],
- [
- 0.77606,
- 47.47859
- ],
- [
- 0.77585,
- 47.48204
- ],
- [
- 0.77066,
- 47.48219
- ],
- [
- 0.77044,
- 47.4859
- ],
- [
- 0.76096,
- 47.49092
- ],
- [
- 0.75718,
- 47.49092
- ],
- [
- 0.73753,
- 47.50336
- ],
- [
- 0.7259,
- 47.50588
- ],
- [
- 0.71113,
- 47.50576
- ],
- [
- 0.70418,
- 47.50408
- ],
- [
- 0.69109,
- 47.50038
- ],
- [
- 0.69045,
- 47.49718
- ],
- [
- 0.67757,
- 47.49683
- ],
- [
- 0.67757,
- 47.49353
- ],
- [
- 0.66427,
- 47.49301
- ],
- [
- 0.6635,
- 47.48953
- ],
- [
- 0.65088,
- 47.48958
- ],
- [
- 0.65133,
- 47.48032
- ],
- [
- 0.64734,
- 47.4803
- ],
- [
- 0.64747,
- 47.47852
- ],
- [
- 0.64474,
- 47.47846
- ],
- [
- 0.64479,
- 47.47575
- ],
- [
- 0.64238,
- 47.47578
- ],
- [
- 0.64225,
- 47.47302
- ],
- [
- 0.63835,
- 47.47294
- ],
- [
- 0.63792,
- 47.47131
- ],
- [
- 0.60513,
- 47.47079
- ],
- [
- 0.60513,
- 47.46632
- ],
- [
- 0.59852,
- 47.46603
- ],
- [
- 0.59878,
- 47.46156
- ],
- [
- 0.592,
- 47.46156
- ],
- [
- 0.59226,
- 47.45976
- ],
- [
- 0.58084,
- 47.45971
- ],
- [
- 0.58007,
- 47.46145
- ],
- [
- 0.57234,
- 47.46139
- ],
- [
- 0.57222,
- 47.46512
- ],
- [
- 0.55874,
- 47.46489
- ],
- [
- 0.5466,
- 47.46052
- ],
- [
- 0.53269,
- 47.45355
- ],
- [
- 0.52677,
- 47.45315
- ],
- [
- 0.52677,
- 47.45152
- ],
- [
- 0.52231,
- 47.45123
- ],
- [
- 0.52256,
- 47.44804
- ],
- [
- 0.51977,
- 47.44776
- ],
- [
- 0.52007,
- 47.44247
- ],
- [
- 0.4975,
- 47.4416
- ],
- [
- 0.49716,
- 47.44049
- ],
- [
- 0.49355,
- 47.44015
- ],
- [
- 0.49355,
- 47.43573
- ],
- [
- 0.47943,
- 47.43575
- ],
- [
- 0.46171,
- 47.42819
- ],
- [
- 0.45643,
- 47.42088
- ],
- [
- 0.45489,
- 47.41229
- ],
- [
- 0.45506,
- 47.40218
- ],
- [
- 0.46149,
- 47.40193
- ],
- [
- 0.46167,
- 47.39641
- ],
- [
- 0.46879,
- 47.39602
- ],
- [
- 0.47016,
- 47.35173
- ],
- [
- 0.45677,
- 47.3515
- ],
- [
- 0.45729,
- 47.34254
- ],
- [
- 0.43085,
- 47.34196
- ],
- [
- 0.43196,
- 47.30602
- ],
- [
- 0.47154,
- 47.3067
- ],
- [
- 0.47257,
- 47.28004
- ],
- [
- 0.48527,
- 47.28004
- ],
- [
- 0.48578,
- 47.27084
- ],
- [
- 0.49935,
- 47.27107
- ],
- [
- 0.49917,
- 47.26245
- ],
- [
- 0.55273,
- 47.26304
- ],
- [
- 0.55222,
- 47.27201
- ],
- [
- 0.56561,
- 47.27224
- ],
- [
- 0.56526,
- 47.28156
- ],
- [
- 0.59118,
- 47.28156
- ],
- [
- 0.59067,
- 47.29099
- ],
- [
- 0.66912,
- 47.29169
- ],
- [
- 0.6832,
- 47.29564
- ],
- [
- 0.6832,
- 47.30077
- ],
- [
- 0.69658,
- 47.30123
- ],
- [
- 0.69641,
- 47.3024
- ],
- [
- 0.71006,
- 47.30245
- ],
- [
- 0.72293,
- 47.30589
- ],
- [
- 0.72285,
- 47.31043
- ],
- [
- 0.74165,
- 47.31084
- ],
- [
- 0.75426,
- 47.31392
- ],
- [
- 0.7625,
- 47.31815
- ],
- [
- 0.76207,
- 47.32013
- ],
- [
- 0.76619,
- 47.32009
- ],
- [
- 0.76956,
- 47.32207
- ],
- [
- 0.77233,
- 47.32508
- ],
- [
- 0.77336,
- 47.3267
- ],
- [
- 0.77512,
- 47.32983
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophoto Tour(s)plus 2013",
- "url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto"
- },
- "country_code": "FR",
- "end_date": "2013",
- "id": "Tours-Orthophoto-2013",
- "license_url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
- "max_zoom": 22,
- "name": "Tours - Orthophotos 2013",
- "start_date": "2013",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/tours_2013/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 0.54575,
- 47.46526
- ],
- [
- 0.54585,
- 47.46082
- ],
- [
- 0.53922,
- 47.4607
- ],
- [
- 0.53935,
- 47.45624
- ],
- [
- 0.5328,
- 47.4561
- ],
- [
- 0.5329,
- 47.45157
- ],
- [
- 0.52619,
- 47.4514
- ],
- [
- 0.52659,
- 47.44249
- ],
- [
- 0.50009,
- 47.44207
- ],
- [
- 0.50024,
- 47.43758
- ],
- [
- 0.4936,
- 47.43743
- ],
- [
- 0.4937,
- 47.43293
- ],
- [
- 0.46061,
- 47.43246
- ],
- [
- 0.46072,
- 47.42798
- ],
- [
- 0.4541,
- 47.42781
- ],
- [
- 0.45493,
- 47.40539
- ],
- [
- 0.46154,
- 47.40545
- ],
- [
- 0.46191,
- 47.39649
- ],
- [
- 0.46843,
- 47.3966
- ],
- [
- 0.46913,
- 47.37864
- ],
- [
- 0.47571,
- 47.37876
- ],
- [
- 0.47621,
- 47.3652
- ],
- [
- 0.48283,
- 47.36535
- ],
- [
- 0.48296,
- 47.36083
- ],
- [
- 0.47635,
- 47.36074
- ],
- [
- 0.47665,
- 47.35173
- ],
- [
- 0.47005,
- 47.35162
- ],
- [
- 0.4702,
- 47.34713
- ],
- [
- 0.46375,
- 47.34701
- ],
- [
- 0.45714,
- 47.34241
- ],
- [
- 0.45729,
- 47.33791
- ],
- [
- 0.45067,
- 47.33781
- ],
- [
- 0.45084,
- 47.33331
- ],
- [
- 0.44422,
- 47.3332
- ],
- [
- 0.44438,
- 47.32871
- ],
- [
- 0.43114,
- 47.3285
- ],
- [
- 0.43163,
- 47.315
- ],
- [
- 0.43824,
- 47.31511
- ],
- [
- 0.43838,
- 47.31062
- ],
- [
- 0.47145,
- 47.31114
- ],
- [
- 0.47131,
- 47.31566
- ],
- [
- 0.47789,
- 47.31575
- ],
- [
- 0.47807,
- 47.31128
- ],
- [
- 0.48468,
- 47.31136
- ],
- [
- 0.48486,
- 47.30687
- ],
- [
- 0.49144,
- 47.30698
- ],
- [
- 0.49174,
- 47.29797
- ],
- [
- 0.48516,
- 47.29787
- ],
- [
- 0.48543,
- 47.28887
- ],
- [
- 0.47885,
- 47.28877
- ],
- [
- 0.47916,
- 47.27978
- ],
- [
- 0.48578,
- 47.2799
- ],
- [
- 0.48591,
- 47.27539
- ],
- [
- 0.49254,
- 47.2755
- ],
- [
- 0.49267,
- 47.27101
- ],
- [
- 0.4993,
- 47.27111
- ],
- [
- 0.49943,
- 47.26661
- ],
- [
- 0.51927,
- 47.26692
- ],
- [
- 0.51942,
- 47.26242
- ],
- [
- 0.52602,
- 47.26252
- ],
- [
- 0.52587,
- 47.26702
- ],
- [
- 0.5457,
- 47.26734
- ],
- [
- 0.54555,
- 47.27183
- ],
- [
- 0.55877,
- 47.27204
- ],
- [
- 0.55863,
- 47.27652
- ],
- [
- 0.56523,
- 47.27663
- ],
- [
- 0.56508,
- 47.28112
- ],
- [
- 0.57168,
- 47.28123
- ],
- [
- 0.57152,
- 47.28572
- ],
- [
- 0.57814,
- 47.28583
- ],
- [
- 0.57799,
- 47.29033
- ],
- [
- 0.5846,
- 47.29043
- ],
- [
- 0.58431,
- 47.29942
- ],
- [
- 0.5975,
- 47.29961
- ],
- [
- 0.59766,
- 47.29514
- ],
- [
- 0.65716,
- 47.296
- ],
- [
- 0.6573,
- 47.29151
- ],
- [
- 0.6705,
- 47.29172
- ],
- [
- 0.67035,
- 47.29621
- ],
- [
- 0.68362,
- 47.29637
- ],
- [
- 0.68343,
- 47.30089
- ],
- [
- 0.69006,
- 47.30096
- ],
- [
- 0.68992,
- 47.30547
- ],
- [
- 0.7362,
- 47.30612
- ],
- [
- 0.73608,
- 47.31061
- ],
- [
- 0.7559,
- 47.31089
- ],
- [
- 0.75577,
- 47.31539
- ],
- [
- 0.76238,
- 47.31547
- ],
- [
- 0.76223,
- 47.31999
- ],
- [
- 0.77549,
- 47.32015
- ],
- [
- 0.77497,
- 47.33882
- ],
- [
- 0.77458,
- 47.35163
- ],
- [
- 0.76804,
- 47.35159
- ],
- [
- 0.76759,
- 47.36053
- ],
- [
- 0.77424,
- 47.36062
- ],
- [
- 0.77335,
- 47.39213
- ],
- [
- 0.76674,
- 47.39202
- ],
- [
- 0.76644,
- 47.40108
- ],
- [
- 0.77306,
- 47.40111
- ],
- [
- 0.77289,
- 47.41013
- ],
- [
- 0.76618,
- 47.41002
- ],
- [
- 0.76603,
- 47.4145
- ],
- [
- 0.75276,
- 47.4143
- ],
- [
- 0.75298,
- 47.40981
- ],
- [
- 0.74624,
- 47.4097
- ],
- [
- 0.74594,
- 47.42322
- ],
- [
- 0.73923,
- 47.42315
- ],
- [
- 0.73887,
- 47.43661
- ],
- [
- 0.73233,
- 47.43652
- ],
- [
- 0.73219,
- 47.44106
- ],
- [
- 0.7255,
- 47.44098
- ],
- [
- 0.72542,
- 47.44535
- ],
- [
- 0.73188,
- 47.44548
- ],
- [
- 0.73185,
- 47.45011
- ],
- [
- 0.73845,
- 47.45023
- ],
- [
- 0.73831,
- 47.45463
- ],
- [
- 0.74494,
- 47.45474
- ],
- [
- 0.74432,
- 47.4772
- ],
- [
- 0.73107,
- 47.47697
- ],
- [
- 0.7309,
- 47.48154
- ],
- [
- 0.71762,
- 47.48126
- ],
- [
- 0.71779,
- 47.47684
- ],
- [
- 0.69777,
- 47.4765
- ],
- [
- 0.69805,
- 47.47198
- ],
- [
- 0.69145,
- 47.47189
- ],
- [
- 0.69173,
- 47.46302
- ],
- [
- 0.6851,
- 47.46293
- ],
- [
- 0.68494,
- 47.46735
- ],
- [
- 0.67826,
- 47.46733
- ],
- [
- 0.67798,
- 47.47622
- ],
- [
- 0.67141,
- 47.47616
- ],
- [
- 0.67104,
- 47.4882
- ],
- [
- 0.65773,
- 47.48797
- ],
- [
- 0.65782,
- 47.48504
- ],
- [
- 0.65119,
- 47.48483
- ],
- [
- 0.65147,
- 47.47586
- ],
- [
- 0.64482,
- 47.47572
- ],
- [
- 0.64493,
- 47.47126
- ],
- [
- 0.6118,
- 47.47075
- ],
- [
- 0.61188,
- 47.46631
- ],
- [
- 0.60528,
- 47.46612
- ],
- [
- 0.60542,
- 47.46166
- ],
- [
- 0.59888,
- 47.46155
- ],
- [
- 0.59902,
- 47.45709
- ],
- [
- 0.57249,
- 47.45669
- ],
- [
- 0.57218,
- 47.46565
- ],
- [
- 0.54575,
- 47.46526
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Orthophoto Tour(s) Plus 2008",
- "url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto"
- },
- "country_code": "FR",
- "end_date": "2011",
- "id": "Tours-Orthophoto-2008_2010",
- "license_url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
- "max_zoom": 20,
- "name": "Tours - Orthophotos 2008-2010",
- "start_date": "2008",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.43565,
- 44.99918
- ],
- [
- 5.43193,
- 44.9229
- ],
- [
- 5.43624,
- 44.92284
- ],
- [
- 5.43472,
- 44.89001
- ],
- [
- 5.43303,
- 44.88995
- ],
- [
- 5.43065,
- 44.85026
- ],
- [
- 5.43387,
- 44.85014
- ],
- [
- 5.43285,
- 44.82638
- ],
- [
- 5.43548,
- 44.82626
- ],
- [
- 5.43497,
- 44.8139
- ],
- [
- 5.44106,
- 44.81372
- ],
- [
- 5.43717,
- 44.74098
- ],
- [
- 5.4546,
- 44.74044
- ],
- [
- 5.45282,
- 44.70425
- ],
- [
- 5.5211,
- 44.70245
- ],
- [
- 5.5233,
- 44.73858
- ],
- [
- 5.58904,
- 44.73684
- ],
- [
- 5.59298,
- 44.81263
- ],
- [
- 5.5879,
- 44.81299
- ],
- [
- 5.58977,
- 44.84947
- ],
- [
- 5.58823,
- 44.84938
- ],
- [
- 5.58972,
- 44.87351
- ],
- [
- 5.53863,
- 44.87503
- ],
- [
- 5.53947,
- 44.88686
- ],
- [
- 5.52834,
- 44.88733
- ],
- [
- 5.53002,
- 44.92012
- ],
- [
- 5.53319,
- 44.92012
- ],
- [
- 5.53761,
- 44.99624
- ],
- [
- 5.43565,
- 44.99918
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Parc Naturel Régional du Vercors"
- },
- "country_code": "FR",
- "end_date": "1999",
- "id": "Vercors-Orthophotos-1999",
- "license_url": "https://www.data.gouv.fr/fr/datasets/photos-aeriennes-orthorectifiees-de-la-reserve-naturelle-des-hauts-plateaux-du-vercors/",
- "max_zoom": 19,
- "name": "Vercors (Réserve naturelle des Hauts-Plateaux du Vercors) - Orthophoto - 1999 - 1 m",
- "start_date": "1999",
- "type": "tms",
- "url": "https://wms.openstreetmap.fr/tms/1.0.0/PNRVercors-RHP-1999/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.04697,
- 54.83947
- ],
- [
- -3.05864,
- 55.24157
- ],
- [
- -4.04466,
- 55.23296
- ],
- [
- -4.07076,
- 55.63654
- ],
- [
- -4.61904,
- 55.6253
- ],
- [
- -4.64926,
- 56.02834
- ],
- [
- -4.48961,
- 56.03217
- ],
- [
- -4.52394,
- 56.4367
- ],
- [
- -3.86751,
- 56.44581
- ],
- [
- -3.84176,
- 56.04944
- ],
- [
- -3.44591,
- 56.04982
- ],
- [
- -3.43492,
- 55.64429
- ],
- [
- -2.79497,
- 55.65049
- ],
- [
- -2.80802,
- 56.05749
- ],
- [
- -3.20661,
- 56.05327
- ],
- [
- -3.21417,
- 56.45682
- ],
- [
- -3.73808,
- 56.45075
- ],
- [
- -3.74185,
- 56.86175
- ],
- [
- -5.07669,
- 56.83171
- ],
- [
- -5.03652,
- 56.42949
- ],
- [
- -5.16012,
- 56.42493
- ],
- [
- -5.12991,
- 56.01798
- ],
- [
- -5.92607,
- 55.99456
- ],
- [
- -5.85518,
- 55.23335
- ],
- [
- -5.2281,
- 55.25136
- ],
- [
- -5.21024,
- 55.02765
- ],
- [
- -4.65956,
- 55.04181
- ],
- [
- -4.64548,
- 54.81633
- ],
- [
- -3.04697,
- 54.83947
- ]
- ],
- [
- [
- -1.74835,
- 57.76428
- ],
- [
- -1.74065,
- 57.36
- ],
- [
- -2.58022,
- 57.35537
- ],
- [
- -2.57437,
- 57.04526
- ],
- [
- -2.08408,
- 57.04799
- ],
- [
- -2.07651,
- 56.64276
- ],
- [
- -2.7345,
- 56.63906
- ],
- [
- -2.73781,
- 56.81718
- ],
- [
- -3.23885,
- 56.81437
- ],
- [
- -3.24896,
- 57.35168
- ],
- [
- -3.75629,
- 57.34889
- ],
- [
- -3.76219,
- 57.65868
- ],
- [
- -4.76587,
- 57.64473
- ],
- [
- -4.81008,
- 58.26984
- ],
- [
- -5.2511,
- 58.26547
- ],
- [
- -5.27376,
- 58.66767
- ],
- [
- -3.55818,
- 58.69887
- ],
- [
- -3.56607,
- 58.9316
- ],
- [
- -3.37656,
- 58.93444
- ],
- [
- -3.38584,
- 59.20171
- ],
- [
- -3.18713,
- 59.20215
- ],
- [
- -3.18747,
- 59.24176
- ],
- [
- -3.06757,
- 59.24203
- ],
- [
- -3.07855,
- 59.42135
- ],
- [
- -2.37131,
- 59.42763
- ],
- [
- -2.36856,
- 59.0222
- ],
- [
- -2.67893,
- 59.02078
- ],
- [
- -2.67343,
- 58.83935
- ],
- [
- -2.86569,
- 58.83651
- ],
- [
- -2.8602,
- 58.53531
- ],
- [
- -3.03461,
- 58.53316
- ],
- [
- -3.0195,
- 58.13159
- ],
- [
- -3.6156,
- 58.11982
- ],
- [
- -3.61276,
- 57.97754
- ],
- [
- -3.71092,
- 57.97562
- ],
- [
- -3.69932,
- 57.75364
- ],
- [
- -1.74835,
- 57.76428
- ]
- ],
- [
- [
- -7.07492,
- 56.76319
- ],
- [
- -7.73471,
- 56.73566
- ],
- [
- -7.7911,
- 57.13994
- ],
- [
- -7.70662,
- 57.14343
- ],
- [
- -7.76299,
- 57.54311
- ],
- [
- -7.60218,
- 57.54968
- ],
- [
- -7.62134,
- 57.68452
- ],
- [
- -7.72499,
- 57.6803
- ],
- [
- -7.73017,
- 57.71673
- ],
- [
- -7.60264,
- 57.72191
- ],
- [
- -7.59964,
- 57.70083
- ],
- [
- -7.48634,
- 57.70544
- ],
- [
- -7.49528,
- 57.76813
- ],
- [
- -7.37493,
- 57.77301
- ],
- [
- -7.39337,
- 57.90201
- ],
- [
- -7.23591,
- 57.90838
- ],
- [
- -7.24323,
- 57.95948
- ],
- [
- -7.13916,
- 57.96369
- ],
- [
- -7.14508,
- 58.00495
- ],
- [
- -7.23742,
- 58.00122
- ],
- [
- -7.23297,
- 57.97018
- ],
- [
- -7.31133,
- 57.96702
- ],
- [
- -7.31538,
- 57.99525
- ],
- [
- -7.24904,
- 57.99792
- ],
- [
- -7.28082,
- 58.21856
- ],
- [
- -7.07355,
- 58.22687
- ],
- [
- -7.0827,
- 58.29018
- ],
- [
- -6.80743,
- 58.30119
- ],
- [
- -6.82768,
- 58.44074
- ],
- [
- -6.50305,
- 58.45366
- ],
- [
- -6.51532,
- 58.53792
- ],
- [
- -6.16474,
- 58.55184
- ],
- [
- -6.10631,
- 58.14894
- ],
- [
- -6.33469,
- 58.13976
- ],
- [
- -6.27759,
- 57.74145
- ],
- [
- -6.96138,
- 57.71366
- ],
- [
- -6.93332,
- 57.51615
- ],
- [
- -7.10017,
- 57.50933
- ],
- [
- -7.05218,
- 57.169
- ],
- [
- -7.13111,
- 57.16575
- ],
- [
- -7.07492,
- 56.76319
- ]
- ],
- [
- [
- 0.41076,
- 50.82087
- ],
- [
- 0.98102,
- 50.80612
- ],
- [
- 0.99437,
- 51.01173
- ],
- [
- 1.45062,
- 50.99998
- ],
- [
- 1.47712,
- 51.40552
- ],
- [
- 0.89619,
- 51.42035
- ],
- [
- 0.88243,
- 51.21039
- ],
- [
- 0.505,
- 51.22007
- ],
- [
- 0.52273,
- 51.49042
- ],
- [
- -0.63397,
- 51.51063
- ],
- [
- -0.63671,
- 51.44563
- ],
- [
- -1.09951,
- 51.45248
- ],
- [
- -1.11485,
- 51.04814
- ],
- [
- -0.52987,
- 51.0394
- ],
- [
- -0.52751,
- 51.10203
- ],
- [
- 0.42806,
- 51.08778
- ],
- [
- 0.41076,
- 50.82087
- ]
- ],
- [
- [
- -5.39457,
- 51.9619
- ],
- [
- -4.79581,
- 51.98051
- ],
- [
- -4.78873,
- 51.89403
- ],
- [
- -4.20265,
- 51.91228
- ],
- [
- -4.22941,
- 52.23828
- ],
- [
- -3.6552,
- 52.25602
- ],
- [
- -3.62228,
- 51.85483
- ],
- [
- -4.21342,
- 51.8364
- ],
- [
- -4.18551,
- 51.49342
- ],
- [
- -4.77661,
- 51.47485
- ],
- [
- -4.78476,
- 51.57525
- ],
- [
- -5.08799,
- 51.56574
- ],
- [
- -5.09422,
- 51.64242
- ],
- [
- -5.3678,
- 51.63385
- ],
- [
- -5.39457,
- 51.9619
- ]
- ],
- [
- [
- -1.2389,
- 54.03537
- ],
- [
- -0.62779,
- 54.02811
- ],
- [
- -0.62004,
- 54.25257
- ],
- [
- -0.57268,
- 54.25201
- ],
- [
- -0.55865,
- 54.65542
- ],
- [
- -1.17998,
- 54.66269
- ],
- [
- -1.18782,
- 54.43788
- ],
- [
- -1.23221,
- 54.4384
- ],
- [
- -1.2389,
- 54.03537
- ]
- ],
- [
- [
- -2.67227,
- 50.97677
- ],
- [
- -2.09961,
- 50.98023
- ],
- [
- -2.10572,
- 51.37949
- ],
- [
- -1.58877,
- 51.38259
- ],
- [
- -1.59499,
- 51.78589
- ],
- [
- -2.17563,
- 51.78891
- ],
- [
- -2.17154,
- 51.38392
- ],
- [
- -2.67846,
- 51.38088
- ],
- [
- -2.67227,
- 50.97677
- ]
- ],
- [
- [
- -2.60155,
- 53.27155
- ],
- [
- -3.22973,
- 53.2685
- ],
- [
- -3.23522,
- 53.67231
- ],
- [
- -2.60704,
- 53.67533
- ],
- [
- -2.60155,
- 53.27155
- ]
- ],
- [
- [
- -0.03942,
- 51.7728
- ],
- [
- -0.61563,
- 51.77577
- ],
- [
- -0.60465,
- 52.58414
- ],
- [
- -0.02843,
- 52.58122
- ],
- [
- -0.03942,
- 51.7728
- ]
- ],
- [
- [
- -2.91529,
- 54.03523
- ],
- [
- -3.53229,
- 54.02866
- ],
- [
- -3.54484,
- 54.43397
- ],
- [
- -2.92785,
- 54.44047
- ],
- [
- -2.91529,
- 54.03523
- ]
- ],
- [
- [
- -6.30583,
- 57.19689
- ],
- [
- -6.3539,
- 57.60015
- ],
- [
- -5.69111,
- 57.62295
- ],
- [
- -5.64305,
- 57.21995
- ],
- [
- -6.30583,
- 57.19689
- ]
- ],
- [
- [
- 1.17115,
- 52.57236
- ],
- [
- 1.19865,
- 52.97594
- ],
- [
- 1.79788,
- 52.96106
- ],
- [
- 1.77037,
- 52.55734
- ],
- [
- 1.17115,
- 52.57236
- ]
- ],
- [
- [
- -2.40225,
- 55.56317
- ],
- [
- -2.40088,
- 55.9657
- ],
- [
- -1.76084,
- 55.96501
- ],
- [
- -1.76222,
- 55.56248
- ],
- [
- -2.40225,
- 55.56317
- ]
- ],
- [
- [
- -6.32574,
- 56.38537
- ],
- [
- -7.0196,
- 56.35747
- ],
- [
- -7.07316,
- 56.76384
- ],
- [
- -6.3793,
- 56.79145
- ],
- [
- -6.32574,
- 56.38537
- ]
- ],
- [
- [
- -2.42258,
- 54.4431
- ],
- [
- -2.42574,
- 54.84188
- ],
- [
- -1.79931,
- 54.84354
- ],
- [
- -1.79614,
- 54.44477
- ],
- [
- -2.42258,
- 54.4431
- ]
- ],
- [
- [
- -3.02701,
- 51.37935
- ],
- [
- -3.60589,
- 51.37017
- ],
- [
- -3.62237,
- 51.77304
- ],
- [
- -3.04349,
- 51.78215
- ],
- [
- -3.02701,
- 51.37935
- ]
- ],
- [
- [
- -3.05379,
- 52.18979
- ],
- [
- -3.06615,
- 52.59374
- ],
- [
- -2.48364,
- 52.60034
- ],
- [
- -2.47128,
- 52.19646
- ],
- [
- -3.05379,
- 52.18979
- ]
- ],
- [
- [
- -5.67673,
- 51.70425
- ],
- [
- -5.67886,
- 51.73101
- ],
- [
- -5.4636,
- 51.7376
- ],
- [
- -5.46146,
- 51.71084
- ],
- [
- -5.67673,
- 51.70425
- ]
- ],
- [
- [
- -5.84427,
- 59.10882
- ],
- [
- -5.8469,
- 59.13578
- ],
- [
- -5.79558,
- 59.1371
- ],
- [
- -5.79294,
- 59.11014
- ],
- [
- -5.84427,
- 59.10882
- ]
- ],
- [
- [
- -8.64844,
- 57.77861
- ],
- [
- -8.66597,
- 57.87717
- ],
- [
- -8.46649,
- 57.88721
- ],
- [
- -8.44897,
- 57.78867
- ],
- [
- -8.64844,
- 57.77861
- ]
- ],
- [
- [
- -4.52711,
- 59.01532
- ],
- [
- -4.52859,
- 59.03319
- ],
- [
- -4.47623,
- 59.03434
- ],
- [
- -4.47475,
- 59.01646
- ],
- [
- -4.52711,
- 59.01532
- ]
- ],
- [
- [
- -7.68062,
- 58.25838
- ],
- [
- -7.68655,
- 58.2938
- ],
- [
- -7.53445,
- 58.30084
- ],
- [
- -7.52852,
- 58.26542
- ],
- [
- -7.68062,
- 58.25838
- ]
- ],
- [
- [
- -6.19102,
- 59.08009
- ],
- [
- -6.19546,
- 59.11586
- ],
- [
- -6.12542,
- 59.11815
- ],
- [
- -6.12099,
- 59.08238
- ],
- [
- -6.19102,
- 59.08009
- ]
- ],
- [
- [
- -4.42669,
- 59.07112
- ],
- [
- -4.42805,
- 59.0887
- ],
- [
- -4.37621,
- 59.08976
- ],
- [
- -4.37485,
- 59.07218
- ],
- [
- -4.42669,
- 59.07112
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "end_date": "1960",
- "id": "OS7",
- "max_zoom": 14,
- "min_zoom": 6,
- "name": "7th Series (OS7)",
- "type": "tms",
- "url": "https://ooc.openstreetmap.org/os7/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -1.31567,
- 50.77809
- ],
- [
- -1.49139,
- 50.73027
- ],
- [
- -1.57113,
- 50.69041
- ],
- [
- -1.68095,
- 50.71748
- ],
- [
- -1.69338,
- 50.73484
- ],
- [
- -1.69528,
- 50.74065
- ],
- [
- -1.68689,
- 50.74999
- ],
- [
- -1.71068,
- 50.74812
- ],
- [
- -1.7195,
- 50.75261
- ],
- [
- -1.746,
- 50.74452
- ],
- [
- -1.74845,
- 50.75675
- ],
- [
- -1.74287,
- 50.76397
- ],
- [
- -1.75101,
- 50.77577
- ],
- [
- -1.78525,
- 50.76177
- ],
- [
- -1.79911,
- 50.77236
- ],
- [
- -1.82256,
- 50.77225
- ],
- [
- -1.82678,
- 50.78077
- ],
- [
- -1.8225,
- 50.79933
- ],
- [
- -1.80732,
- 50.80074
- ],
- [
- -1.81566,
- 50.80752
- ],
- [
- -1.80889,
- 50.81358
- ],
- [
- -1.80579,
- 50.83249
- ],
- [
- -1.79816,
- 50.83535
- ],
- [
- -1.80649,
- 50.84414
- ],
- [
- -1.80988,
- 50.86189
- ],
- [
- -1.81378,
- 50.85591
- ],
- [
- -1.83052,
- 50.85261
- ],
- [
- -1.85271,
- 50.85651
- ],
- [
- -1.85655,
- 50.86684
- ],
- [
- -1.8492,
- 50.87802
- ],
- [
- -1.85082,
- 50.89178
- ],
- [
- -1.84077,
- 50.90051
- ],
- [
- -1.82693,
- 50.89939
- ],
- [
- -1.82006,
- 50.90492
- ],
- [
- -1.82151,
- 50.91691
- ],
- [
- -1.81689,
- 50.92412
- ],
- [
- -1.84114,
- 50.92886
- ],
- [
- -1.87446,
- 50.91441
- ],
- [
- -1.91129,
- 50.9439
- ],
- [
- -1.92339,
- 50.95917
- ],
- [
- -1.95751,
- 50.97575
- ],
- [
- -1.9591,
- 50.99152
- ],
- [
- -1.94907,
- 50.98649
- ],
- [
- -1.92879,
- 51.00055
- ],
- [
- -1.88709,
- 51.0026
- ],
- [
- -1.87393,
- 51.0097
- ],
- [
- -1.8717,
- 50.99083
- ],
- [
- -1.85433,
- 51.00786
- ],
- [
- -1.83567,
- 51.01238
- ],
- [
- -1.81502,
- 50.9899
- ],
- [
- -1.80031,
- 50.99457
- ],
- [
- -1.75184,
- 50.98133
- ],
- [
- -1.71927,
- 50.98047
- ],
- [
- -1.69142,
- 50.95943
- ],
- [
- -1.66829,
- 50.95041
- ],
- [
- -1.6526,
- 50.95029
- ],
- [
- -1.63536,
- 50.96269
- ],
- [
- -1.62397,
- 50.95903
- ],
- [
- -1.6089,
- 50.97686
- ],
- [
- -1.62172,
- 50.98099
- ],
- [
- -1.63115,
- 50.99984
- ],
- [
- -1.60984,
- 51.01225
- ],
- [
- -1.60173,
- 51.01042
- ],
- [
- -1.60787,
- 51.01582
- ],
- [
- -1.6057,
- 51.02271
- ],
- [
- -1.63542,
- 51.03176
- ],
- [
- -1.63858,
- 51.04126
- ],
- [
- -1.63107,
- 51.07819
- ],
- [
- -1.64025,
- 51.09201
- ],
- [
- -1.6306,
- 51.10359
- ],
- [
- -1.63408,
- 51.11099
- ],
- [
- -1.63067,
- 51.11652
- ],
- [
- -1.64109,
- 51.12237
- ],
- [
- -1.66525,
- 51.12546
- ],
- [
- -1.65724,
- 51.15539
- ],
- [
- -1.67474,
- 51.177
- ],
- [
- -1.67213,
- 51.18708
- ],
- [
- -1.69679,
- 51.20233
- ],
- [
- -1.69247,
- 51.21617
- ],
- [
- -1.65288,
- 51.22301
- ],
- [
- -1.63564,
- 51.22019
- ],
- [
- -1.62395,
- 51.24136
- ],
- [
- -1.61402,
- 51.24467
- ],
- [
- -1.60741,
- 51.25513
- ],
- [
- -1.57717,
- 51.25863
- ],
- [
- -1.54443,
- 51.24826
- ],
- [
- -1.5384,
- 51.25085
- ],
- [
- -1.53436,
- 51.25919
- ],
- [
- -1.54345,
- 51.25957
- ],
- [
- -1.54007,
- 51.27602
- ],
- [
- -1.54596,
- 51.28095
- ],
- [
- -1.53591,
- 51.28978
- ],
- [
- -1.52595,
- 51.28975
- ],
- [
- -1.53093,
- 51.29948
- ],
- [
- -1.53008,
- 51.3111
- ],
- [
- -1.53628,
- 51.31596
- ],
- [
- -1.52986,
- 51.34057
- ],
- [
- -1.51552,
- 51.34219
- ],
- [
- -1.49498,
- 51.33228
- ],
- [
- -1.43599,
- 51.33861
- ],
- [
- -1.44759,
- 51.3464
- ],
- [
- -1.4463,
- 51.35699
- ],
- [
- -1.43056,
- 51.35941
- ],
- [
- -1.41608,
- 51.37517
- ],
- [
- -1.34899,
- 51.37045
- ],
- [
- -1.31472,
- 51.37627
- ],
- [
- -1.27555,
- 51.3707
- ],
- [
- -1.25116,
- 51.37511
- ],
- [
- -1.24118,
- 51.36938
- ],
- [
- -1.22209,
- 51.37271
- ],
- [
- -1.17602,
- 51.36102
- ],
- [
- -1.14321,
- 51.36028
- ],
- [
- -1.11875,
- 51.36156
- ],
- [
- -1.12096,
- 51.36859
- ],
- [
- -1.11678,
- 51.3767
- ],
- [
- -1.08363,
- 51.38712
- ],
- [
- -1.04754,
- 51.36122
- ],
- [
- -0.9904,
- 51.36619
- ],
- [
- -0.97264,
- 51.36297
- ],
- [
- -0.92376,
- 51.36937
- ],
- [
- -0.87681,
- 51.3555
- ],
- [
- -0.86549,
- 51.35947
- ],
- [
- -0.82728,
- 51.35574
- ],
- [
- -0.81122,
- 51.34418
- ],
- [
- -0.78322,
- 51.34084
- ],
- [
- -0.76325,
- 51.32721
- ],
- [
- -0.76005,
- 51.32013
- ],
- [
- -0.74183,
- 51.31112
- ],
- [
- -0.72842,
- 51.28238
- ],
- [
- -0.72631,
- 51.25653
- ],
- [
- -0.73713,
- 51.23126
- ],
- [
- -0.74898,
- 51.2277
- ],
- [
- -0.77712,
- 51.23901
- ],
- [
- -0.80193,
- 51.23628
- ],
- [
- -0.80611,
- 51.24056
- ],
- [
- -0.82491,
- 51.23137
- ],
- [
- -0.82701,
- 51.22315
- ],
- [
- -0.84493,
- 51.20998
- ],
- [
- -0.82268,
- 51.18268
- ],
- [
- -0.83042,
- 51.15022
- ],
- [
- -0.81952,
- 51.15047
- ],
- [
- -0.80504,
- 51.15847
- ],
- [
- -0.79382,
- 51.15491
- ],
- [
- -0.78879,
- 51.14141
- ],
- [
- -0.77846,
- 51.13664
- ],
- [
- -0.77813,
- 51.13063
- ],
- [
- -0.76654,
- 51.11946
- ],
- [
- -0.74365,
- 51.11491
- ],
- [
- -0.74715,
- 51.10131
- ],
- [
- -0.75411,
- 51.10116
- ],
- [
- -0.75122,
- 51.09547
- ],
- [
- -0.75506,
- 51.08987
- ],
- [
- -0.75076,
- 51.0852
- ],
- [
- -0.7785,
- 51.07715
- ],
- [
- -0.78645,
- 51.06467
- ],
- [
- -0.79954,
- 51.06078
- ],
- [
- -0.82645,
- 51.05881
- ],
- [
- -0.83646,
- 51.0664
- ],
- [
- -0.84519,
- 51.06052
- ],
- [
- -0.8499,
- 51.0436
- ],
- [
- -0.89485,
- 51.01978
- ],
- [
- -0.89065,
- 51.00194
- ],
- [
- -0.90461,
- 50.99327
- ],
- [
- -0.91461,
- 50.97806
- ],
- [
- -0.91278,
- 50.9708
- ],
- [
- -0.93246,
- 50.94278
- ],
- [
- -0.92119,
- 50.9232
- ],
- [
- -0.93793,
- 50.91615
- ],
- [
- -0.95132,
- 50.89178
- ],
- [
- -0.92368,
- 50.86513
- ],
- [
- -0.92976,
- 50.85365
- ],
- [
- -0.92903,
- 50.84245
- ],
- [
- -0.94342,
- 50.82191
- ],
- [
- -0.9299,
- 50.78445
- ],
- [
- -0.93275,
- 50.77435
- ],
- [
- -0.95347,
- 50.73682
- ],
- [
- -1.31567,
- 50.77809
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "end_date": "2014",
- "id": "Hampshire-Aerial-FCIR",
- "license_url": "https://github.com/osmlab/editor-layer-index/commit/aad3f972a7bf68347cbc6507baa1ec87c54137b5#commitcomment-26962498",
- "max_zoom": 20,
- "min_zoom": 8,
- "name": "Hampshire Aerial FCIR",
- "start_date": "2013",
- "type": "tms",
- "url": "https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_fcir/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -1.31567,
- 50.77809
- ],
- [
- -1.49139,
- 50.73027
- ],
- [
- -1.57113,
- 50.69041
- ],
- [
- -1.68095,
- 50.71748
- ],
- [
- -1.69338,
- 50.73484
- ],
- [
- -1.69528,
- 50.74065
- ],
- [
- -1.68689,
- 50.74999
- ],
- [
- -1.71068,
- 50.74812
- ],
- [
- -1.7195,
- 50.75261
- ],
- [
- -1.746,
- 50.74452
- ],
- [
- -1.74845,
- 50.75675
- ],
- [
- -1.74287,
- 50.76397
- ],
- [
- -1.75101,
- 50.77577
- ],
- [
- -1.78525,
- 50.76177
- ],
- [
- -1.79911,
- 50.77236
- ],
- [
- -1.82256,
- 50.77225
- ],
- [
- -1.82678,
- 50.78077
- ],
- [
- -1.8225,
- 50.79933
- ],
- [
- -1.80732,
- 50.80074
- ],
- [
- -1.81566,
- 50.80752
- ],
- [
- -1.80889,
- 50.81358
- ],
- [
- -1.80579,
- 50.83249
- ],
- [
- -1.79816,
- 50.83535
- ],
- [
- -1.80649,
- 50.84414
- ],
- [
- -1.80988,
- 50.86189
- ],
- [
- -1.81378,
- 50.85591
- ],
- [
- -1.83052,
- 50.85261
- ],
- [
- -1.85271,
- 50.85651
- ],
- [
- -1.85655,
- 50.86684
- ],
- [
- -1.8492,
- 50.87802
- ],
- [
- -1.85082,
- 50.89178
- ],
- [
- -1.84077,
- 50.90051
- ],
- [
- -1.82693,
- 50.89939
- ],
- [
- -1.82006,
- 50.90492
- ],
- [
- -1.82151,
- 50.91691
- ],
- [
- -1.81689,
- 50.92412
- ],
- [
- -1.84114,
- 50.92886
- ],
- [
- -1.87446,
- 50.91441
- ],
- [
- -1.91129,
- 50.9439
- ],
- [
- -1.92339,
- 50.95917
- ],
- [
- -1.95751,
- 50.97575
- ],
- [
- -1.9591,
- 50.99152
- ],
- [
- -1.94907,
- 50.98649
- ],
- [
- -1.92879,
- 51.00055
- ],
- [
- -1.88709,
- 51.0026
- ],
- [
- -1.87393,
- 51.0097
- ],
- [
- -1.8717,
- 50.99083
- ],
- [
- -1.85433,
- 51.00786
- ],
- [
- -1.83567,
- 51.01238
- ],
- [
- -1.81502,
- 50.9899
- ],
- [
- -1.80031,
- 50.99457
- ],
- [
- -1.75184,
- 50.98133
- ],
- [
- -1.71927,
- 50.98047
- ],
- [
- -1.69142,
- 50.95943
- ],
- [
- -1.66829,
- 50.95041
- ],
- [
- -1.6526,
- 50.95029
- ],
- [
- -1.63536,
- 50.96269
- ],
- [
- -1.62397,
- 50.95903
- ],
- [
- -1.6089,
- 50.97686
- ],
- [
- -1.62172,
- 50.98099
- ],
- [
- -1.63115,
- 50.99984
- ],
- [
- -1.60984,
- 51.01225
- ],
- [
- -1.60173,
- 51.01042
- ],
- [
- -1.60787,
- 51.01582
- ],
- [
- -1.6057,
- 51.02271
- ],
- [
- -1.63542,
- 51.03176
- ],
- [
- -1.63858,
- 51.04126
- ],
- [
- -1.63107,
- 51.07819
- ],
- [
- -1.64025,
- 51.09201
- ],
- [
- -1.6306,
- 51.10359
- ],
- [
- -1.63408,
- 51.11099
- ],
- [
- -1.63067,
- 51.11652
- ],
- [
- -1.64109,
- 51.12237
- ],
- [
- -1.66525,
- 51.12546
- ],
- [
- -1.65724,
- 51.15539
- ],
- [
- -1.67474,
- 51.177
- ],
- [
- -1.67213,
- 51.18708
- ],
- [
- -1.69679,
- 51.20233
- ],
- [
- -1.69247,
- 51.21617
- ],
- [
- -1.65288,
- 51.22301
- ],
- [
- -1.63564,
- 51.22019
- ],
- [
- -1.62395,
- 51.24136
- ],
- [
- -1.61402,
- 51.24467
- ],
- [
- -1.60741,
- 51.25513
- ],
- [
- -1.57717,
- 51.25863
- ],
- [
- -1.54443,
- 51.24826
- ],
- [
- -1.5384,
- 51.25085
- ],
- [
- -1.53436,
- 51.25919
- ],
- [
- -1.54345,
- 51.25957
- ],
- [
- -1.54007,
- 51.27602
- ],
- [
- -1.54596,
- 51.28095
- ],
- [
- -1.53591,
- 51.28978
- ],
- [
- -1.52595,
- 51.28975
- ],
- [
- -1.53093,
- 51.29948
- ],
- [
- -1.53008,
- 51.3111
- ],
- [
- -1.53628,
- 51.31596
- ],
- [
- -1.52986,
- 51.34057
- ],
- [
- -1.51552,
- 51.34219
- ],
- [
- -1.49498,
- 51.33228
- ],
- [
- -1.43599,
- 51.33861
- ],
- [
- -1.44759,
- 51.3464
- ],
- [
- -1.4463,
- 51.35699
- ],
- [
- -1.43056,
- 51.35941
- ],
- [
- -1.41608,
- 51.37517
- ],
- [
- -1.34899,
- 51.37045
- ],
- [
- -1.31472,
- 51.37627
- ],
- [
- -1.27555,
- 51.3707
- ],
- [
- -1.25116,
- 51.37511
- ],
- [
- -1.24118,
- 51.36938
- ],
- [
- -1.22209,
- 51.37271
- ],
- [
- -1.17602,
- 51.36102
- ],
- [
- -1.14321,
- 51.36028
- ],
- [
- -1.11875,
- 51.36156
- ],
- [
- -1.12096,
- 51.36859
- ],
- [
- -1.11678,
- 51.3767
- ],
- [
- -1.08363,
- 51.38712
- ],
- [
- -1.04754,
- 51.36122
- ],
- [
- -0.9904,
- 51.36619
- ],
- [
- -0.97264,
- 51.36297
- ],
- [
- -0.92376,
- 51.36937
- ],
- [
- -0.87681,
- 51.3555
- ],
- [
- -0.86549,
- 51.35947
- ],
- [
- -0.82728,
- 51.35574
- ],
- [
- -0.81122,
- 51.34418
- ],
- [
- -0.78322,
- 51.34084
- ],
- [
- -0.76325,
- 51.32721
- ],
- [
- -0.76005,
- 51.32013
- ],
- [
- -0.74183,
- 51.31112
- ],
- [
- -0.72842,
- 51.28238
- ],
- [
- -0.72631,
- 51.25653
- ],
- [
- -0.73713,
- 51.23126
- ],
- [
- -0.74898,
- 51.2277
- ],
- [
- -0.77712,
- 51.23901
- ],
- [
- -0.80193,
- 51.23628
- ],
- [
- -0.80611,
- 51.24056
- ],
- [
- -0.82491,
- 51.23137
- ],
- [
- -0.82701,
- 51.22315
- ],
- [
- -0.84493,
- 51.20998
- ],
- [
- -0.82268,
- 51.18268
- ],
- [
- -0.83042,
- 51.15022
- ],
- [
- -0.81952,
- 51.15047
- ],
- [
- -0.80504,
- 51.15847
- ],
- [
- -0.79382,
- 51.15491
- ],
- [
- -0.78879,
- 51.14141
- ],
- [
- -0.77846,
- 51.13664
- ],
- [
- -0.77813,
- 51.13063
- ],
- [
- -0.76654,
- 51.11946
- ],
- [
- -0.74365,
- 51.11491
- ],
- [
- -0.74715,
- 51.10131
- ],
- [
- -0.75411,
- 51.10116
- ],
- [
- -0.75122,
- 51.09547
- ],
- [
- -0.75506,
- 51.08987
- ],
- [
- -0.75076,
- 51.0852
- ],
- [
- -0.7785,
- 51.07715
- ],
- [
- -0.78645,
- 51.06467
- ],
- [
- -0.79954,
- 51.06078
- ],
- [
- -0.82645,
- 51.05881
- ],
- [
- -0.83646,
- 51.0664
- ],
- [
- -0.84519,
- 51.06052
- ],
- [
- -0.8499,
- 51.0436
- ],
- [
- -0.89485,
- 51.01978
- ],
- [
- -0.89065,
- 51.00194
- ],
- [
- -0.90461,
- 50.99327
- ],
- [
- -0.91461,
- 50.97806
- ],
- [
- -0.91278,
- 50.9708
- ],
- [
- -0.93246,
- 50.94278
- ],
- [
- -0.92119,
- 50.9232
- ],
- [
- -0.93793,
- 50.91615
- ],
- [
- -0.95132,
- 50.89178
- ],
- [
- -0.92368,
- 50.86513
- ],
- [
- -0.92976,
- 50.85365
- ],
- [
- -0.92903,
- 50.84245
- ],
- [
- -0.94342,
- 50.82191
- ],
- [
- -0.9299,
- 50.78445
- ],
- [
- -0.93275,
- 50.77435
- ],
- [
- -0.95347,
- 50.73682
- ],
- [
- -1.31567,
- 50.77809
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "end_date": "2013",
- "id": "Hampshire-Aerial-RGB",
- "license_url": "https://github.com/osmlab/editor-layer-index/commit/aad3f972a7bf68347cbc6507baa1ec87c54137b5#commitcomment-26962498",
- "max_zoom": 20,
- "min_zoom": 8,
- "name": "Hampshire Aerial RGB",
- "start_date": "2013",
- "type": "tms",
- "url": "https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_rgb/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -6.45854,
- 49.90441
- ],
- [
- -6.3872,
- 49.98411
- ],
- [
- -6.22968,
- 49.98962
- ],
- [
- -6.21713,
- 49.86801
- ],
- [
- -6.45512,
- 49.85918
- ],
- [
- -6.45854,
- 49.90441
- ]
- ],
- [
- [
- -1.44951,
- 60.86341
- ],
- [
- -0.71671,
- 60.85451
- ],
- [
- -0.73497,
- 60.43598
- ],
- [
- -0.69388,
- 60.41682
- ],
- [
- -0.72584,
- 60.39427
- ],
- [
- -0.73954,
- 60.04847
- ],
- [
- -0.92674,
- 60.04619
- ],
- [
- -0.93815,
- 59.82662
- ],
- [
- -1.45865,
- 59.8312
- ],
- [
- -1.44552,
- 60.0536
- ],
- [
- -1.46321,
- 60.0536
- ],
- [
- -1.46435,
- 60.063
- ],
- [
- -1.57165,
- 60.06385
- ],
- [
- -1.56936,
- 60.179
- ],
- [
- -1.64356,
- 60.1807
- ],
- [
- -1.64356,
- 60.18922
- ],
- [
- -1.82162,
- 60.1895
- ],
- [
- -1.82048,
- 60.36155
- ],
- [
- -1.8416,
- 60.36973
- ],
- [
- -1.82162,
- 60.38328
- ],
- [
- -1.81799,
- 60.59343
- ],
- [
- -1.45317,
- 60.59343
- ],
- [
- -1.44951,
- 60.86341
- ]
- ],
- [
- [
- -4.90892,
- 54.42421
- ],
- [
- -4.2826,
- 54.44299
- ],
- [
- -4.25354,
- 54.02977
- ],
- [
- -4.87664,
- 54.02218
- ],
- [
- -4.90892,
- 54.42421
- ]
- ],
- [
- [
- -5.86674,
- 59.14446
- ],
- [
- -5.776,
- 59.14709
- ],
- [
- -5.772,
- 59.10141
- ],
- [
- -5.86218,
- 59.09906
- ],
- [
- -5.86674,
- 59.14446
- ]
- ],
- [
- [
- -1.70659,
- 59.57036
- ],
- [
- -1.55792,
- 59.56935
- ],
- [
- -1.55649,
- 59.49657
- ],
- [
- -1.70545,
- 59.49758
- ],
- [
- -1.70659,
- 59.57036
- ]
- ],
- [
- [
- -7.68658,
- 58.2941
- ],
- [
- -7.53306,
- 58.3007
- ],
- [
- -7.52564,
- 58.26469
- ],
- [
- -7.67973,
- 58.25779
- ],
- [
- -7.68658,
- 58.2941
- ]
- ],
- [
- [
- -4.53383,
- 59.03599
- ],
- [
- -4.48132,
- 59.03716
- ],
- [
- -4.47961,
- 59.01866
- ],
- [
- -4.53326,
- 59.01807
- ],
- [
- -4.53383,
- 59.03599
- ]
- ],
- [
- [
- -8.67107,
- 57.87699
- ],
- [
- -8.46732,
- 57.88973
- ],
- [
- -8.44678,
- 57.7907
- ],
- [
- -8.65109,
- 57.77792
- ],
- [
- -8.67107,
- 57.87699
- ]
- ],
- [
- [
- -5.23955,
- 50.35306
- ],
- [
- -5.79201,
- 50.33849
- ],
- [
- -5.76005,
- 49.9317
- ],
- [
- -4.65514,
- 49.95815
- ],
- [
- -4.67797,
- 50.28601
- ],
- [
- -4.24422,
- 50.28017
- ],
- [
- -4.24878,
- 50.20425
- ],
- [
- -3.38129,
- 50.20425
- ],
- [
- -3.42238,
- 50.51882
- ],
- [
- -3.11648,
- 50.52463
- ],
- [
- -3.12105,
- 50.65796
- ],
- [
- -2.67364,
- 50.66195
- ],
- [
- -2.59535,
- 50.63943
- ],
- [
- -2.5905,
- 50.57284
- ],
- [
- -2.47912,
- 50.57335
- ],
- [
- -2.47589,
- 50.50667
- ],
- [
- -2.39679,
- 50.50564
- ],
- [
- -2.40164,
- 50.57233
- ],
- [
- -1.04003,
- 50.57182
- ],
- [
- -1.03357,
- 50.70593
- ],
- [
- -0.5493,
- 50.70388
- ],
- [
- -0.54607,
- 50.78866
- ],
- [
- -0.09247,
- 50.7856
- ],
- [
- -0.08763,
- 50.71819
- ],
- [
- 0.47897,
- 50.71206
- ],
- [
- 0.48704,
- 50.81825
- ],
- [
- 0.97615,
- 50.80499
- ],
- [
- 0.99229,
- 51.01263
- ],
- [
- 1.44912,
- 51.00044
- ],
- [
- 1.47818,
- 51.40904
- ],
- [
- 1.02296,
- 51.42716
- ],
- [
- 1.03588,
- 51.76409
- ],
- [
- 1.61054,
- 51.7501
- ],
- [
- 1.64606,
- 52.156
- ],
- [
- 1.72677,
- 52.15402
- ],
- [
- 1.74937,
- 52.44818
- ],
- [
- 1.78707,
- 52.48116
- ],
- [
- 1.7591,
- 52.52251
- ],
- [
- 1.79335,
- 52.96027
- ],
- [
- 0.37981,
- 52.99585
- ],
- [
- 0.38952,
- 53.25112
- ],
- [
- 0.34786,
- 53.25112
- ],
- [
- 0.32389,
- 53.28219
- ],
- [
- 0.34615,
- 53.65385
- ],
- [
- 0.12849,
- 53.65755
- ],
- [
- 0.11658,
- 53.66747
- ],
- [
- 0.13506,
- 54.06557
- ],
- [
- -0.06098,
- 54.06591
- ],
- [
- -0.04142,
- 54.47094
- ],
- [
- -0.56627,
- 54.47718
- ],
- [
- -0.55921,
- 54.65651
- ],
- [
- -1.16656,
- 54.66235
- ],
- [
- -1.16374,
- 54.84261
- ],
- [
- -1.33162,
- 54.84391
- ],
- [
- -1.32571,
- 55.24708
- ],
- [
- -1.52945,
- 55.24871
- ],
- [
- -1.52418,
- 55.65401
- ],
- [
- -1.76388,
- 55.65401
- ],
- [
- -1.77337,
- 55.97191
- ],
- [
- -2.16079,
- 55.9683
- ],
- [
- -2.15433,
- 56.06214
- ],
- [
- -2.45781,
- 56.05853
- ],
- [
- -2.41906,
- 56.64172
- ],
- [
- -2.09622,
- 56.64172
- ],
- [
- -2.0833,
- 57.00213
- ],
- [
- -1.92834,
- 57.01268
- ],
- [
- -1.9181,
- 57.35909
- ],
- [
- -1.75022,
- 57.36257
- ],
- [
- -1.76959,
- 57.76086
- ],
- [
- -3.69376,
- 57.75742
- ],
- [
- -3.70667,
- 57.98064
- ],
- [
- -3.5969,
- 57.97721
- ],
- [
- -3.60336,
- 58.12073
- ],
- [
- -3.02223,
- 58.13096
- ],
- [
- -3.02869,
- 58.54108
- ],
- [
- -2.8479,
- 58.53097
- ],
- [
- -2.86081,
- 58.84305
- ],
- [
- -2.67962,
- 58.8415
- ],
- [
- -2.68419,
- 58.88517
- ],
- [
- -2.63397,
- 58.90522
- ],
- [
- -2.67962,
- 58.93351
- ],
- [
- -2.68876,
- 59.02292
- ],
- [
- -2.36687,
- 59.02292
- ],
- [
- -2.37029,
- 59.26529
- ],
- [
- -2.3429,
- 59.2822
- ],
- [
- -2.37144,
- 59.29969
- ],
- [
- -2.37372,
- 59.37071
- ],
- [
- -2.3429,
- 59.38582
- ],
- [
- -2.37258,
- 59.40035
- ],
- [
- -2.37144,
- 59.42591
- ],
- [
- -3.07342,
- 59.42301
- ],
- [
- -3.07114,
- 59.34336
- ],
- [
- -3.1031,
- 59.33114
- ],
- [
- -3.07456,
- 59.31367
- ],
- [
- -3.07228,
- 59.2326
- ],
- [
- -3.38503,
- 59.14842
- ],
- [
- -3.37476,
- 58.93528
- ],
- [
- -3.56538,
- 58.93233
- ],
- [
- -3.55483,
- 58.69759
- ],
- [
- -5.28086,
- 58.66677
- ],
- [
- -5.25342,
- 58.35141
- ],
- [
- -5.50685,
- 58.34379
- ],
- [
- -5.47618,
- 58.03236
- ],
- [
- -5.8975,
- 58.02124
- ],
- [
- -5.8523,
- 57.61718
- ],
- [
- -6.13963,
- 57.61372
- ],
- [
- -6.15416,
- 57.74232
- ],
- [
- -6.29137,
- 57.73801
- ],
- [
- -6.33657,
- 58.13988
- ],
- [
- -6.11219,
- 58.14669
- ],
- [
- -6.14738,
- 58.51063
- ],
- [
- -6.29348,
- 58.54162
- ],
- [
- -6.84137,
- 58.29773
- ],
- [
- -7.00574,
- 58.29293
- ],
- [
- -7.10162,
- 58.20644
- ],
- [
- -7.25731,
- 58.17931
- ],
- [
- -7.25311,
- 58.10049
- ],
- [
- -7.40707,
- 58.09056
- ],
- [
- -7.39135,
- 57.79114
- ],
- [
- -7.79099,
- 57.77332
- ],
- [
- -7.76242,
- 57.54442
- ],
- [
- -7.6985,
- 57.14532
- ],
- [
- -7.79438,
- 57.13045
- ],
- [
- -7.71676,
- 56.73686
- ],
- [
- -7.01221,
- 56.76544
- ],
- [
- -6.97992,
- 56.54539
- ],
- [
- -7.06386,
- 56.54539
- ],
- [
- -7.04449,
- 56.35626
- ],
- [
- -6.50068,
- 56.38129
- ],
- [
- -6.44914,
- 55.97936
- ],
- [
- -6.56329,
- 55.96915
- ],
- [
- -6.53937,
- 55.70301
- ],
- [
- -6.55955,
- 55.69073
- ],
- [
- -6.53453,
- 55.67617
- ],
- [
- -6.52162,
- 55.57044
- ],
- [
- -5.89126,
- 55.59234
- ],
- [
- -5.85601,
- 55.23207
- ],
- [
- -5.22936,
- 55.2516
- ],
- [
- -5.18371,
- 54.62541
- ],
- [
- -3.6656,
- 54.65184
- ],
- [
- -3.64962,
- 54.432
- ],
- [
- -3.54004,
- 54.43067
- ],
- [
- -3.53091,
- 54.02902
- ],
- [
- -3.06977,
- 54.03036
- ],
- [
- -3.06757,
- 53.82214
- ],
- [
- -3.08049,
- 53.77399
- ],
- [
- -3.06192,
- 53.74775
- ],
- [
- -3.06112,
- 53.6737
- ],
- [
- -3.21447,
- 53.67084
- ],
- [
- -3.20577,
- 53.42262
- ],
- [
- -3.27996,
- 53.35522
- ],
- [
- -3.28967,
- 53.36084
- ],
- [
- -3.33275,
- 53.36493
- ],
- [
- -3.37613,
- 53.35403
- ],
- [
- -4.0889,
- 53.34331
- ],
- [
- -4.09455,
- 53.4612
- ],
- [
- -4.69741,
- 53.44486
- ],
- [
- -4.68828,
- 53.33186
- ],
- [
- -4.72024,
- 53.28958
- ],
- [
- -4.68371,
- 53.24862
- ],
- [
- -4.67687,
- 53.15426
- ],
- [
- -4.84808,
- 53.14468
- ],
- [
- -4.81783,
- 52.74403
- ],
- [
- -4.25458,
- 52.75589
- ],
- [
- -4.22888,
- 52.25488
- ],
- [
- -4.26076,
- 52.25364
- ],
- [
- -4.27246,
- 52.24326
- ],
- [
- -4.81363,
- 52.23009
- ],
- [
- -4.80792,
- 52.11389
- ],
- [
- -5.38891,
- 52.09917
- ],
- [
- -5.37179,
- 51.91297
- ],
- [
- -5.42087,
- 51.91015
- ],
- [
- -5.41402,
- 51.84532
- ],
- [
- -5.36836,
- 51.84744
- ],
- [
- -5.34668,
- 51.55953
- ],
- [
- -4.77368,
- 51.57585
- ],
- [
- -4.76569,
- 51.48851
- ],
- [
- -4.19154,
- 51.49704
- ],
- [
- -4.18698,
- 51.43447
- ],
- [
- -3.61512,
- 51.44443
- ],
- [
- -3.61055,
- 51.37465
- ],
- [
- -3.14941,
- 51.37893
- ],
- [
- -3.14941,
- 51.29193
- ],
- [
- -4.30387,
- 51.27459
- ],
- [
- -4.28612,
- 51.05087
- ],
- [
- -4.85433,
- 51.03666
- ],
- [
- -4.83722,
- 50.72128
- ],
- [
- -5.26183,
- 50.70827
- ],
- [
- -5.23955,
- 50.35306
- ]
- ],
- [
- [
- -2.15027,
- 60.17132
- ],
- [
- -2.00302,
- 60.16961
- ],
- [
- -2.00131,
- 60.0997
- ],
- [
- -2.14855,
- 60.10112
- ],
- [
- -2.15027,
- 60.17132
- ]
- ],
- [
- [
- -6.2086,
- 59.11635
- ],
- [
- -6.12299,
- 59.11664
- ],
- [
- -6.12185,
- 59.0715
- ],
- [
- -6.20974,
- 59.0715
- ],
- [
- -6.2086,
- 59.11635
- ]
- ],
- [
- [
- -4.41596,
- 59.0889
- ],
- [
- -4.4212,
- 59.07708
- ],
- [
- -4.39719,
- 59.07791
- ],
- [
- -4.39134,
- 59.08973
- ],
- [
- -4.41596,
- 59.0889
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1908",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-Bartholomew-hfinch-hist",
- "max_zoom": 15,
- "name": "NLS - Bartholomew Half Inch, 1897-1907",
- "start_date": "1897",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata2/bartholomew/great_britain/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.82929,
- 50.02297
- ],
- [
- -5.82929,
- 50.25482
- ],
- [
- -5.37336,
- 50.25482
- ],
- [
- -5.37336,
- 50.35306
- ],
- [
- -5.1756,
- 50.35306
- ],
- [
- -5.1756,
- 50.59254
- ],
- [
- -4.99707,
- 50.59254
- ],
- [
- -4.99707,
- 50.69356
- ],
- [
- -4.79657,
- 50.69356
- ],
- [
- -4.79657,
- 50.78221
- ],
- [
- -4.69495,
- 50.78221
- ],
- [
- -4.69495,
- 50.96074
- ],
- [
- -4.60431,
- 50.96074
- ],
- [
- -4.60431,
- 51.06921
- ],
- [
- -4.37922,
- 51.06921
- ],
- [
- -4.37922,
- 51.25218
- ],
- [
- -3.90393,
- 51.25218
- ],
- [
- -3.90393,
- 51.2917
- ],
- [
- -3.71717,
- 51.2917
- ],
- [
- -3.71717,
- 51.2453
- ],
- [
- -3.14862,
- 51.2453
- ],
- [
- -3.14862,
- 51.36207
- ],
- [
- -3.74463,
- 51.36207
- ],
- [
- -3.74463,
- 51.43404
- ],
- [
- -3.82978,
- 51.43404
- ],
- [
- -3.82978,
- 51.52982
- ],
- [
- -4.08521,
- 51.52982
- ],
- [
- -4.08521,
- 51.49393
- ],
- [
- -4.37922,
- 51.49393
- ],
- [
- -4.37922,
- 51.54272
- ],
- [
- -5.14442,
- 51.54272
- ],
- [
- -5.14442,
- 51.6296
- ],
- [
- -5.73871,
- 51.6296
- ],
- [
- -5.73871,
- 51.77404
- ],
- [
- -5.50954,
- 51.77404
- ],
- [
- -5.50954,
- 51.98026
- ],
- [
- -5.1988,
- 51.98026
- ],
- [
- -5.1988,
- 52.09734
- ],
- [
- -4.88806,
- 52.09734
- ],
- [
- -4.88806,
- 52.18316
- ],
- [
- -4.49575,
- 52.18316
- ],
- [
- -4.49575,
- 52.29257
- ],
- [
- -4.30154,
- 52.29257
- ],
- [
- -4.30154,
- 52.36853
- ],
- [
- -4.18112,
- 52.36853
- ],
- [
- -4.18112,
- 52.79337
- ],
- [
- -4.44137,
- 52.79337
- ],
- [
- -4.44137,
- 52.73696
- ],
- [
- -4.85698,
- 52.73696
- ],
- [
- -4.85698,
- 52.93173
- ],
- [
- -4.7288,
- 52.93173
- ],
- [
- -4.7288,
- 53.50386
- ],
- [
- -4.15782,
- 53.50386
- ],
- [
- -4.15782,
- 53.41135
- ],
- [
- -3.31105,
- 53.41135
- ],
- [
- -3.31105,
- 53.50386
- ],
- [
- -3.23337,
- 53.50386
- ],
- [
- -3.23337,
- 54.01592
- ],
- [
- -3.39262,
- 54.01592
- ],
- [
- -3.39262,
- 54.1981
- ],
- [
- -3.55964,
- 54.1981
- ],
- [
- -3.55964,
- 54.43373
- ],
- [
- -3.7189,
- 54.43373
- ],
- [
- -3.7189,
- 54.7219
- ],
- [
- -4.30154,
- 54.7219
- ],
- [
- -4.30154,
- 54.61407
- ],
- [
- -5.04731,
- 54.61407
- ],
- [
- -5.04731,
- 54.75329
- ],
- [
- -5.22987,
- 54.75329
- ],
- [
- -5.22987,
- 55.21908
- ],
- [
- -5.65326,
- 55.21908
- ],
- [
- -5.65326,
- 55.25009
- ],
- [
- -5.89796,
- 55.25009
- ],
- [
- -5.89796,
- 55.48225
- ],
- [
- -6.59332,
- 55.48225
- ],
- [
- -6.59332,
- 56.30134
- ],
- [
- -7.17277,
- 56.30134
- ],
- [
- -7.17277,
- 56.56018
- ],
- [
- -6.81717,
- 56.56018
- ],
- [
- -6.81717,
- 56.69917
- ],
- [
- -6.53153,
- 56.69917
- ],
- [
- -6.53153,
- 56.9067
- ],
- [
- -6.81168,
- 56.9067
- ],
- [
- -6.81168,
- 57.37166
- ],
- [
- -6.8721,
- 57.37166
- ],
- [
- -6.8721,
- 57.55189
- ],
- [
- -7.09732,
- 57.55189
- ],
- [
- -7.09732,
- 57.24111
- ],
- [
- -7.17423,
- 57.24111
- ],
- [
- -7.17423,
- 56.9067
- ],
- [
- -7.37198,
- 56.9067
- ],
- [
- -7.37198,
- 56.80759
- ],
- [
- -7.5203,
- 56.80759
- ],
- [
- -7.5203,
- 56.71425
- ],
- [
- -7.83068,
- 56.71425
- ],
- [
- -7.83068,
- 56.89946
- ],
- [
- -7.64941,
- 56.89946
- ],
- [
- -7.64941,
- 57.47396
- ],
- [
- -7.83068,
- 57.47396
- ],
- [
- -7.83068,
- 57.79156
- ],
- [
- -7.47362,
- 57.79156
- ],
- [
- -7.47362,
- 58.08606
- ],
- [
- -7.18798,
- 58.08606
- ],
- [
- -7.18798,
- 58.3672
- ],
- [
- -6.80346,
- 58.3672
- ],
- [
- -6.80346,
- 58.41558
- ],
- [
- -6.63866,
- 58.41558
- ],
- [
- -6.63866,
- 58.46733
- ],
- [
- -6.51781,
- 58.46733
- ],
- [
- -6.51781,
- 58.56256
- ],
- [
- -6.05362,
- 58.56256
- ],
- [
- -6.05362,
- 58.15688
- ],
- [
- -6.14701,
- 58.15688
- ],
- [
- -6.14701,
- 58.11059
- ],
- [
- -6.27998,
- 58.11059
- ],
- [
- -6.27998,
- 57.71227
- ],
- [
- -6.15913,
- 57.71227
- ],
- [
- -6.15913,
- 57.66676
- ],
- [
- -5.93391,
- 57.66676
- ],
- [
- -5.93391,
- 57.88925
- ],
- [
- -5.80643,
- 57.88925
- ],
- [
- -5.80643,
- 57.96218
- ],
- [
- -5.61417,
- 57.96218
- ],
- [
- -5.61417,
- 58.09112
- ],
- [
- -5.49082,
- 58.09112
- ],
- [
- -5.49082,
- 58.37333
- ],
- [
- -5.31991,
- 58.37333
- ],
- [
- -5.31991,
- 58.75015
- ],
- [
- -3.572,
- 58.75015
- ],
- [
- -3.572,
- 59.20918
- ],
- [
- -3.19445,
- 59.20918
- ],
- [
- -3.19445,
- 59.47592
- ],
- [
- -2.24358,
- 59.47592
- ],
- [
- -2.24358,
- 59.13887
- ],
- [
- -2.4611,
- 59.13887
- ],
- [
- -2.4611,
- 58.81859
- ],
- [
- -2.74077,
- 58.81859
- ],
- [
- -2.74077,
- 58.58047
- ],
- [
- -2.91167,
- 58.58047
- ],
- [
- -2.91167,
- 58.11575
- ],
- [
- -3.48654,
- 58.11575
- ],
- [
- -3.48654,
- 57.74039
- ],
- [
- -1.71532,
- 57.74039
- ],
- [
- -1.71532,
- 57.22256
- ],
- [
- -1.97945,
- 57.22256
- ],
- [
- -1.97945,
- 56.87607
- ],
- [
- -2.1659,
- 56.87607
- ],
- [
- -2.1659,
- 56.63332
- ],
- [
- -2.36011,
- 56.63332
- ],
- [
- -2.36011,
- 56.04775
- ],
- [
- -1.97945,
- 56.04775
- ],
- [
- -1.97945,
- 55.86509
- ],
- [
- -1.4745,
- 55.86509
- ],
- [
- -1.4745,
- 55.24999
- ],
- [
- -1.3222,
- 55.24999
- ],
- [
- -1.3222,
- 54.82217
- ],
- [
- -1.055,
- 54.82217
- ],
- [
- -1.055,
- 54.67466
- ],
- [
- -0.66188,
- 54.67466
- ],
- [
- -0.66188,
- 54.55275
- ],
- [
- -0.32476,
- 54.55275
- ],
- [
- -0.32476,
- 54.28652
- ],
- [
- 0.00928,
- 54.28652
- ],
- [
- 0.00928,
- 53.79385
- ],
- [
- 0.2082,
- 53.79385
- ],
- [
- 0.2082,
- 53.52177
- ],
- [
- 0.41635,
- 53.52177
- ],
- [
- 0.41635,
- 53.02989
- ],
- [
- 1.42734,
- 53.02989
- ],
- [
- 1.42734,
- 52.92021
- ],
- [
- 1.83339,
- 52.92021
- ],
- [
- 1.83339,
- 52.04249
- ],
- [
- 1.52355,
- 52.04249
- ],
- [
- 1.52355,
- 51.82613
- ],
- [
- 1.2697,
- 51.82613
- ],
- [
- 1.2697,
- 51.69675
- ],
- [
- 1.11665,
- 51.69675
- ],
- [
- 1.11665,
- 51.44035
- ],
- [
- 1.52355,
- 51.44035
- ],
- [
- 1.52355,
- 51.33318
- ],
- [
- 1.45076,
- 51.33318
- ],
- [
- 1.45076,
- 51.02076
- ],
- [
- 1.06999,
- 51.02076
- ],
- [
- 1.06999,
- 50.90084
- ],
- [
- 0.77881,
- 50.90084
- ],
- [
- 0.77881,
- 50.72984
- ],
- [
- -0.7256,
- 50.72984
- ],
- [
- -0.7256,
- 50.70384
- ],
- [
- -1.00744,
- 50.70384
- ],
- [
- -1.00744,
- 50.57363
- ],
- [
- -2.36253,
- 50.57363
- ],
- [
- -2.36253,
- 50.48464
- ],
- [
- -2.49878,
- 50.48464
- ],
- [
- -2.49878,
- 50.57363
- ],
- [
- -3.40964,
- 50.57363
- ],
- [
- -3.40964,
- 50.20578
- ],
- [
- -3.69224,
- 50.20578
- ],
- [
- -3.69224,
- 50.13477
- ],
- [
- -5.00547,
- 50.13477
- ],
- [
- -5.00547,
- 49.94745
- ],
- [
- -5.28395,
- 49.94745
- ],
- [
- -5.28395,
- 50.02297
- ],
- [
- -5.82929,
- 50.02297
- ]
- ],
- [
- [
- -6.45807,
- 49.86736
- ],
- [
- -6.45807,
- 49.94999
- ],
- [
- -6.39788,
- 49.94999
- ],
- [
- -6.39788,
- 50.00538
- ],
- [
- -6.17996,
- 50.00538
- ],
- [
- -6.17996,
- 49.91686
- ],
- [
- -6.25402,
- 49.91686
- ],
- [
- -6.25402,
- 49.86736
- ],
- [
- -6.45807,
- 49.86736
- ]
- ],
- [
- [
- -5.83432,
- 49.93216
- ],
- [
- -5.83432,
- 49.97546
- ],
- [
- -5.76833,
- 49.97546
- ],
- [
- -5.76833,
- 49.93216
- ],
- [
- -5.83432,
- 49.93216
- ]
- ],
- [
- [
- -1.94838,
- 60.68857
- ],
- [
- -1.94838,
- 60.30588
- ],
- [
- -1.75431,
- 60.30588
- ],
- [
- -1.75431,
- 60.12844
- ],
- [
- -1.57549,
- 60.12844
- ],
- [
- -1.57549,
- 59.79792
- ],
- [
- -1.0317,
- 59.79792
- ],
- [
- -1.0317,
- 60.03545
- ],
- [
- -0.66269,
- 60.03545
- ],
- [
- -0.66269,
- 60.91039
- ],
- [
- -1.10344,
- 60.91039
- ],
- [
- -1.10344,
- 60.804
- ],
- [
- -1.35063,
- 60.804
- ],
- [
- -1.35063,
- 60.68857
- ],
- [
- -1.94838,
- 60.68857
- ]
- ],
- [
- [
- -2.20338,
- 60.19686
- ],
- [
- -2.20338,
- 60.09294
- ],
- [
- -1.9864,
- 60.09294
- ],
- [
- -1.9864,
- 60.19686
- ],
- [
- -2.20338,
- 60.19686
- ]
- ],
- [
- [
- -1.75431,
- 59.56983
- ],
- [
- -1.75431,
- 59.46394
- ],
- [
- -1.53733,
- 59.46394
- ],
- [
- -1.53733,
- 59.56983
- ],
- [
- -1.75431,
- 59.56983
- ]
- ],
- [
- [
- -4.5586,
- 59.13705
- ],
- [
- -4.5586,
- 58.95691
- ],
- [
- -4.2867,
- 58.95691
- ],
- [
- -4.2867,
- 59.13705
- ],
- [
- -4.5586,
- 59.13705
- ]
- ],
- [
- [
- -6.27877,
- 59.20257
- ],
- [
- -6.27877,
- 59.02278
- ],
- [
- -5.66506,
- 59.02278
- ],
- [
- -5.66506,
- 59.20257
- ],
- [
- -6.27877,
- 59.20257
- ]
- ],
- [
- [
- -8.71635,
- 57.94406
- ],
- [
- -8.71635,
- 57.73059
- ],
- [
- -8.35929,
- 57.73059
- ],
- [
- -8.35929,
- 57.94406
- ],
- [
- -8.71635,
- 57.94406
- ]
- ],
- [
- [
- -7.6077,
- 50.4021
- ],
- [
- -7.6077,
- 50.26887
- ],
- [
- -7.39072,
- 50.26887
- ],
- [
- -7.39072,
- 50.4021
- ],
- [
- -7.6077,
- 50.4021
- ]
- ],
- [
- [
- -7.73043,
- 58.35799
- ],
- [
- -7.73043,
- 58.24831
- ],
- [
- -7.51345,
- 58.24831
- ],
- [
- -7.51345,
- 58.35799
- ],
- [
- -7.73043,
- 58.35799
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1960",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-NatGrid-110k-1940-60",
- "max_zoom": 16,
- "min_zoom": 5,
- "name": "NLS - OS 1:10,560 National Grid Maps, 1940s-1960s",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata3/os/britain10knatgrid/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.21122,
- 54.80186
- ],
- [
- -5.06428,
- 54.80265
- ],
- [
- -5.05604,
- 54.63052
- ],
- [
- -4.31583,
- 54.62972
- ],
- [
- -4.31171,
- 54.74483
- ],
- [
- -3.85303,
- 54.74641
- ],
- [
- -3.85303,
- 54.80344
- ],
- [
- -3.55228,
- 54.80344
- ],
- [
- -3.55228,
- 54.83746
- ],
- [
- -3.46851,
- 54.84063
- ],
- [
- -3.46576,
- 54.89832
- ],
- [
- -3.38474,
- 54.89911
- ],
- [
- -3.38886,
- 54.95592
- ],
- [
- -3.09208,
- 54.95395
- ],
- [
- -3.03924,
- 54.99233
- ],
- [
- -3.02127,
- 55.04939
- ],
- [
- -2.95912,
- 55.04633
- ],
- [
- -2.92028,
- 55.06663
- ],
- [
- -2.78571,
- 55.06865
- ],
- [
- -2.78522,
- 55.09144
- ],
- [
- -2.73376,
- 55.09228
- ],
- [
- -2.73762,
- 55.1512
- ],
- [
- -2.76484,
- 55.15107
- ],
- [
- -2.70131,
- 55.17225
- ],
- [
- -2.66355,
- 55.21928
- ],
- [
- -2.64604,
- 55.21889
- ],
- [
- -2.62904,
- 55.22339
- ],
- [
- -2.63179,
- 55.22878
- ],
- [
- -2.62355,
- 55.24463
- ],
- [
- -2.61977,
- 55.24547
- ],
- [
- -2.6099,
- 55.24542
- ],
- [
- -2.60999,
- 55.24865
- ],
- [
- -2.64081,
- 55.259
- ],
- [
- -2.62479,
- 55.26156
- ],
- [
- -2.60452,
- 55.28231
- ],
- [
- -2.56932,
- 55.29613
- ],
- [
- -2.54795,
- 55.31216
- ],
- [
- -2.50911,
- 55.32349
- ],
- [
- -2.47804,
- 55.34945
- ],
- [
- -2.44211,
- 55.35331
- ],
- [
- -2.40521,
- 55.34393
- ],
- [
- -2.37268,
- 55.34475
- ],
- [
- -2.32218,
- 55.36877
- ],
- [
- -2.32412,
- 55.39993
- ],
- [
- -2.25761,
- 55.42502
- ],
- [
- -2.19855,
- 55.42735
- ],
- [
- -2.14843,
- 55.47175
- ],
- [
- -2.19443,
- 55.4842
- ],
- [
- -2.20405,
- 55.52931
- ],
- [
- -2.29606,
- 55.63797
- ],
- [
- -2.21778,
- 55.63797
- ],
- [
- -2.10593,
- 55.74525
- ],
- [
- -1.97169,
- 55.74622
- ],
- [
- -1.96975,
- 55.9191
- ],
- [
- -2.12017,
- 55.92071
- ],
- [
- -2.12429,
- 55.97761
- ],
- [
- -2.34402,
- 55.97838
- ],
- [
- -2.34402,
- 56.03903
- ],
- [
- -2.50469,
- 56.04134
- ],
- [
- -2.50057,
- 56.10036
- ],
- [
- -2.88235,
- 56.09576
- ],
- [
- -2.88235,
- 56.17229
- ],
- [
- -2.41268,
- 56.16923
- ],
- [
- -2.41817,
- 56.2334
- ],
- [
- -2.58572,
- 56.23035
- ],
- [
- -2.57198,
- 56.34164
- ],
- [
- -2.72579,
- 56.3462
- ],
- [
- -2.73128,
- 56.43438
- ],
- [
- -2.69283,
- 56.43438
- ],
- [
- -2.69283,
- 56.48598
- ],
- [
- -2.53078,
- 56.49356
- ],
- [
- -2.53078,
- 56.57081
- ],
- [
- -2.53029,
- 56.60479
- ],
- [
- -2.37324,
- 56.60445
- ],
- [
- -2.36844,
- 56.73988
- ],
- [
- -2.3293,
- 56.73988
- ],
- [
- -2.3293,
- 56.78881
- ],
- [
- -2.31453,
- 56.78918
- ],
- [
- -2.31488,
- 56.7967
- ],
- [
- -2.17137,
- 56.7967
- ],
- [
- -2.1704,
- 56.97106
- ],
- [
- -2.01017,
- 56.96947
- ],
- [
- -2.01017,
- 57.08468
- ],
- [
- -2.08177,
- 57.08535
- ],
- [
- -2.04881,
- 57.126
- ],
- [
- -2.04091,
- 57.12637
- ],
- [
- -2.03834,
- 57.24111
- ],
- [
- -1.87812,
- 57.24216
- ],
- [
- -1.87715,
- 57.29782
- ],
- [
- -1.98688,
- 57.29834
- ],
- [
- -1.90822,
- 57.35601
- ],
- [
- -1.8752,
- 57.35601
- ],
- [
- -1.87618,
- 57.37695
- ],
- [
- -1.81209,
- 57.41201
- ],
- [
- -1.71207,
- 57.41201
- ],
- [
- -1.70346,
- 57.64414
- ],
- [
- -1.8666,
- 57.64518
- ],
- [
- -1.86466,
- 57.70334
- ],
- [
- -3.12043,
- 57.70647
- ],
- [
- -3.1218,
- 57.75047
- ],
- [
- -3.44453,
- 57.75266
- ],
- [
- -3.44727,
- 57.71381
- ],
- [
- -3.51456,
- 57.70941
- ],
- [
- -3.51182,
- 57.694
- ],
- [
- -3.7645,
- 57.69179
- ],
- [
- -3.76725,
- 57.6345
- ],
- [
- -3.84238,
- 57.62883
- ],
- [
- -3.84383,
- 57.59658
- ],
- [
- -3.94143,
- 57.59164
- ],
- [
- -3.94046,
- 57.65378
- ],
- [
- -3.88947,
- 57.653
- ],
- [
- -3.88268,
- 57.76764
- ],
- [
- -3.72245,
- 57.76609
- ],
- [
- -3.71954,
- 57.88192
- ],
- [
- -3.91469,
- 57.88534
- ],
- [
- -3.91606,
- 57.95462
- ],
- [
- -3.74577,
- 57.9539
- ],
- [
- -3.74715,
- 58.06884
- ],
- [
- -3.58373,
- 58.06957
- ],
- [
- -3.58373,
- 58.11167
- ],
- [
- -3.45601,
- 58.11385
- ],
- [
- -3.45446,
- 58.2285
- ],
- [
- -3.43799,
- 58.22832
- ],
- [
- -3.42432,
- 58.24277
- ],
- [
- -3.41231,
- 58.24386
- ],
- [
- -3.37351,
- 58.26951
- ],
- [
- -3.30639,
- 58.2862
- ],
- [
- -3.12292,
- 58.28594
- ],
- [
- -3.1236,
- 58.34437
- ],
- [
- -2.95743,
- 58.34473
- ],
- [
- -2.95125,
- 58.6422
- ],
- [
- -2.88122,
- 58.64292
- ],
- [
- -2.8851,
- 58.81128
- ],
- [
- -2.71808,
- 58.8143
- ],
- [
- -2.71614,
- 58.87157
- ],
- [
- -2.55688,
- 58.8776
- ],
- [
- -2.55445,
- 58.99235
- ],
- [
- -2.55676,
- 59.04838
- ],
- [
- -2.39189,
- 59.0486
- ],
- [
- -2.3918,
- 59.1107
- ],
- [
- -2.47337,
- 59.1107
- ],
- [
- -2.55916,
- 59.1783
- ],
- [
- -2.56304,
- 59.22106
- ],
- [
- -2.39213,
- 59.22405
- ],
- [
- -2.39114,
- 59.27401
- ],
- [
- -2.36395,
- 59.2745
- ],
- [
- -2.36589,
- 59.28542
- ],
- [
- -2.39114,
- 59.28492
- ],
- [
- -2.39114,
- 59.33795
- ],
- [
- -2.22218,
- 59.3382
- ],
- [
- -2.22339,
- 59.39596
- ],
- [
- -2.37585,
- 59.39658
- ],
- [
- -2.38993,
- 59.40264
- ],
- [
- -2.40085,
- 59.39621
- ],
- [
- -2.56379,
- 59.39526
- ],
- [
- -2.56379,
- 59.33858
- ],
- [
- -2.73202,
- 59.33753
- ],
- [
- -2.73339,
- 59.39526
- ],
- [
- -3.07265,
- 59.39312
- ],
- [
- -3.07034,
- 59.33548
- ],
- [
- -3.07532,
- 59.33556
- ],
- [
- -3.07498,
- 59.32926
- ],
- [
- -3.06983,
- 59.32891
- ],
- [
- -3.0698,
- 59.21962
- ],
- [
- -3.23634,
- 59.21663
- ],
- [
- -3.23368,
- 59.16065
- ],
- [
- -3.40328,
- 59.15889
- ],
- [
- -3.39409,
- 58.92793
- ],
- [
- -3.56645,
- 58.92593
- ],
- [
- -3.56111,
- 58.86799
- ],
- [
- -3.39251,
- 58.86993
- ],
- [
- -3.38947,
- 58.86987
- ],
- [
- -3.38911,
- 58.86849
- ],
- [
- -3.39129,
- 58.86862
- ],
- [
- -3.38842,
- 58.75431
- ],
- [
- -3.22382,
- 58.75557
- ],
- [
- -3.21897,
- 58.69129
- ],
- [
- -3.46341,
- 58.69058
- ],
- [
- -3.45517,
- 58.63415
- ],
- [
- -3.78751,
- 58.63415
- ],
- [
- -3.78613,
- 58.57692
- ],
- [
- -3.90286,
- 58.57334
- ],
- [
- -3.90286,
- 58.64773
- ],
- [
- -4.06903,
- 58.64916
- ],
- [
- -4.06903,
- 58.59124
- ],
- [
- -4.73645,
- 58.59338
- ],
- [
- -4.73645,
- 58.65059
- ],
- [
- -5.07154,
- 58.65202
- ],
- [
- -5.06548,
- 58.53259
- ],
- [
- -5.2332,
- 58.53161
- ],
- [
- -5.22835,
- 58.47199
- ],
- [
- -5.24243,
- 58.47199
- ],
- [
- -5.2366,
- 58.40897
- ],
- [
- -5.22835,
- 58.40948
- ],
- [
- -5.22107,
- 58.30059
- ],
- [
- -5.56579,
- 58.29599
- ],
- [
- -5.55803,
- 58.23726
- ],
- [
- -5.41467,
- 58.24013
- ],
- [
- -5.41419,
- 58.22678
- ],
- [
- -5.38857,
- 58.22722
- ],
- [
- -5.38271,
- 58.11986
- ],
- [
- -5.51043,
- 58.11914
- ],
- [
- -5.5114,
- 58.00621
- ],
- [
- -5.67454,
- 58.00416
- ],
- [
- -5.67163,
- 57.94494
- ],
- [
- -5.67163,
- 57.88872
- ],
- [
- -5.83477,
- 57.88562
- ],
- [
- -5.82771,
- 57.5989
- ],
- [
- -6.03843,
- 57.59864
- ],
- [
- -6.03891,
- 57.64596
- ],
- [
- -6.19817,
- 57.6457
- ],
- [
- -6.20761,
- 57.76001
- ],
- [
- -6.53707,
- 57.7544
- ],
- [
- -6.53124,
- 57.64024
- ],
- [
- -6.70021,
- 57.63608
- ],
- [
- -6.68078,
- 57.52363
- ],
- [
- -6.85169,
- 57.51529
- ],
- [
- -6.83615,
- 57.33858
- ],
- [
- -6.67302,
- 57.34382
- ],
- [
- -6.67496,
- 57.28509
- ],
- [
- -6.50988,
- 57.28509
- ],
- [
- -6.49822,
- 57.17576
- ],
- [
- -6.35062,
- 57.18208
- ],
- [
- -6.3312,
- 57.1252
- ],
- [
- -6.17972,
- 57.12309
- ],
- [
- -6.17195,
- 57.06823
- ],
- [
- -6.45938,
- 57.05978
- ],
- [
- -6.45647,
- 57.10938
- ],
- [
- -6.66719,
- 57.10622
- ],
- [
- -6.67302,
- 57.00271
- ],
- [
- -6.50211,
- 57.00482
- ],
- [
- -6.48361,
- 56.89175
- ],
- [
- -6.32661,
- 56.88941
- ],
- [
- -6.31566,
- 56.77993
- ],
- [
- -6.21467,
- 56.77567
- ],
- [
- -6.21467,
- 56.7235
- ],
- [
- -6.68661,
- 56.72243
- ],
- [
- -6.6769,
- 56.61144
- ],
- [
- -6.84198,
- 56.60717
- ],
- [
- -6.84004,
- 56.54833
- ],
- [
- -7.15466,
- 56.54619
- ],
- [
- -7.14884,
- 56.48726
- ],
- [
- -6.99152,
- 56.49048
- ],
- [
- -6.98764,
- 56.43253
- ],
- [
- -6.68273,
- 56.43146
- ],
- [
- -6.6769,
- 56.54726
- ],
- [
- -6.5293,
- 56.55047
- ],
- [
- -6.52347,
- 56.4379
- ],
- [
- -6.36616,
- 56.43683
- ],
- [
- -6.36422,
- 56.37665
- ],
- [
- -6.52736,
- 56.37127
- ],
- [
- -6.51717,
- 56.24284
- ],
- [
- -6.48696,
- 56.24742
- ],
- [
- -6.48696,
- 56.18939
- ],
- [
- -6.30019,
- 56.19856
- ],
- [
- -6.30294,
- 56.2581
- ],
- [
- -5.90194,
- 56.25658
- ],
- [
- -5.89645,
- 56.09605
- ],
- [
- -6.02828,
- 56.08839
- ],
- [
- -6.03927,
- 56.15575
- ],
- [
- -6.38534,
- 56.15422
- ],
- [
- -6.36062,
- 55.96099
- ],
- [
- -6.2123,
- 55.96406
- ],
- [
- -6.20475,
- 55.92023
- ],
- [
- -6.51855,
- 55.91292
- ],
- [
- -6.50619,
- 55.75018
- ],
- [
- -6.67648,
- 55.7409
- ],
- [
- -6.66,
- 55.62632
- ],
- [
- -6.35513,
- 55.62322
- ],
- [
- -6.35787,
- 55.5689
- ],
- [
- -6.03927,
- 55.57201
- ],
- [
- -6.03103,
- 55.62477
- ],
- [
- -5.73989,
- 55.63097
- ],
- [
- -5.73715,
- 55.45693
- ],
- [
- -5.89645,
- 55.46004
- ],
- [
- -5.89645,
- 55.27899
- ],
- [
- -5.43502,
- 55.28212
- ],
- [
- -5.44051,
- 55.4507
- ],
- [
- -5.28671,
- 55.45693
- ],
- [
- -5.30868,
- 55.40706
- ],
- [
- -4.9736,
- 55.40082
- ],
- [
- -4.98458,
- 55.20382
- ],
- [
- -5.14938,
- 55.20382
- ],
- [
- -5.14114,
- 55.03734
- ],
- [
- -5.21529,
- 55.03419
- ],
- [
- -5.21122,
- 54.80186
- ]
- ],
- [
- [
- -2.16466,
- 60.16221
- ],
- [
- -1.99303,
- 60.16098
- ],
- [
- -1.99469,
- 60.10352
- ],
- [
- -2.16631,
- 60.10474
- ],
- [
- -2.16466,
- 60.16221
- ]
- ],
- [
- [
- -1.53607,
- 59.85708
- ],
- [
- -1.36536,
- 59.85598
- ],
- [
- -1.36685,
- 59.79756
- ],
- [
- -1.19063,
- 59.79642
- ],
- [
- -1.1862,
- 59.96954
- ],
- [
- -1.00787,
- 59.96839
- ],
- [
- -1.00412,
- 60.11415
- ],
- [
- -0.83608,
- 60.11307
- ],
- [
- -0.83457,
- 60.17168
- ],
- [
- -1.00743,
- 60.17278
- ],
- [
- -1.00522,
- 60.25839
- ],
- [
- -0.82997,
- 60.25728
- ],
- [
- -0.82698,
- 60.37266
- ],
- [
- -0.65075,
- 60.37154
- ],
- [
- -0.64772,
- 60.48823
- ],
- [
- -0.99849,
- 60.49044
- ],
- [
- -0.99703,
- 60.54655
- ],
- [
- -0.64253,
- 60.54432
- ],
- [
- -0.63949,
- 60.66068
- ],
- [
- -0.81481,
- 60.66178
- ],
- [
- -0.8133,
- 60.71961
- ],
- [
- -0.63833,
- 60.71851
- ],
- [
- -0.63547,
- 60.82754
- ],
- [
- -0.79757,
- 60.82855
- ],
- [
- -0.99414,
- 60.82978
- ],
- [
- -0.9955,
- 60.77827
- ],
- [
- -1.16703,
- 60.77934
- ],
- [
- -1.17004,
- 60.66462
- ],
- [
- -1.52226,
- 60.66683
- ],
- [
- -1.52379,
- 60.60844
- ],
- [
- -1.69757,
- 60.60954
- ],
- [
- -1.70213,
- 60.43452
- ],
- [
- -1.52606,
- 60.43341
- ],
- [
- -1.52752,
- 60.37707
- ],
- [
- -1.87511,
- 60.37927
- ],
- [
- -1.87814,
- 60.26246
- ],
- [
- -1.70196,
- 60.26134
- ],
- [
- -1.70491,
- 60.14705
- ],
- [
- -1.52866,
- 60.14593
- ],
- [
- -1.53607,
- 59.85708
- ]
- ],
- [
- [
- -0.98477,
- 60.89438
- ],
- [
- -0.98603,
- 60.83611
- ],
- [
- -0.80784,
- 60.83519
- ],
- [
- -0.80657,
- 60.89346
- ],
- [
- -0.98477,
- 60.89438
- ]
- ],
- [
- [
- -7.76969,
- 56.87882
- ],
- [
- -7.76145,
- 56.76083
- ],
- [
- -7.6009,
- 56.76419
- ],
- [
- -7.59725,
- 56.81933
- ],
- [
- -7.44799,
- 56.82039
- ],
- [
- -7.44893,
- 56.87941
- ],
- [
- -7.28414,
- 56.87941
- ],
- [
- -7.28139,
- 57.04712
- ],
- [
- -7.13033,
- 57.0516
- ],
- [
- -7.13307,
- 57.5118
- ],
- [
- -6.96828,
- 57.51475
- ],
- [
- -6.97652,
- 57.68547
- ],
- [
- -6.80623,
- 57.69134
- ],
- [
- -6.80898,
- 57.8042
- ],
- [
- -6.64968,
- 57.80713
- ],
- [
- -6.64418,
- 57.86123
- ],
- [
- -6.32009,
- 57.86269
- ],
- [
- -6.32009,
- 58.15516
- ],
- [
- -6.16078,
- 58.15226
- ],
- [
- -6.15529,
- 58.20874
- ],
- [
- -5.985,
- 58.21019
- ],
- [
- -5.9905,
- 58.26802
- ],
- [
- -6.1498,
- 58.26657
- ],
- [
- -6.14156,
- 58.55575
- ],
- [
- -6.31734,
- 58.55575
- ],
- [
- -6.3091,
- 58.49839
- ],
- [
- -6.48763,
- 58.49552
- ],
- [
- -6.48763,
- 58.44238
- ],
- [
- -6.66066,
- 58.4395
- ],
- [
- -6.64693,
- 58.38195
- ],
- [
- -6.81172,
- 58.38051
- ],
- [
- -6.81172,
- 58.32864
- ],
- [
- -6.97927,
- 58.32864
- ],
- [
- -6.97103,
- 58.26946
- ],
- [
- -7.14131,
- 58.26802
- ],
- [
- -7.14038,
- 58.03587
- ],
- [
- -7.30206,
- 58.0351
- ],
- [
- -7.30303,
- 57.97748
- ],
- [
- -7.13795,
- 57.97774
- ],
- [
- -7.14135,
- 57.92028
- ],
- [
- -7.1399,
- 57.86402
- ],
- [
- -7.30206,
- 57.86247
- ],
- [
- -7.29848,
- 57.74423
- ],
- [
- -7.45092,
- 57.7457
- ],
- [
- -7.45504,
- 57.68995
- ],
- [
- -7.61861,
- 57.6906
- ],
- [
- -7.61983,
- 57.7457
- ],
- [
- -7.79012,
- 57.74423
- ],
- [
- -7.78738,
- 57.68555
- ],
- [
- -7.62223,
- 57.68538
- ],
- [
- -7.61738,
- 57.57126
- ],
- [
- -7.78829,
- 57.571
- ],
- [
- -7.78926,
- 57.51211
- ],
- [
- -7.7038,
- 57.51159
- ],
- [
- -7.69992,
- 57.45469
- ],
- [
- -7.53678,
- 57.45521
- ],
- [
- -7.53484,
- 57.51263
- ],
- [
- -7.45812,
- 57.51315
- ],
- [
- -7.45521,
- 57.28242
- ],
- [
- -7.61155,
- 57.28452
- ],
- [
- -7.61446,
- 57.22727
- ],
- [
- -7.45133,
- 57.22569
- ],
- [
- -7.45133,
- 57.11039
- ],
- [
- -7.61641,
- 57.10881
- ],
- [
- -7.60378,
- 56.87924
- ],
- [
- -7.76969,
- 56.87882
- ]
- ],
- [
- [
- -1.71066,
- 59.56263
- ],
- [
- -1.54175,
- 59.56222
- ],
- [
- -1.54231,
- 59.50372
- ],
- [
- -1.71122,
- 59.50414
- ],
- [
- -1.71066,
- 59.56263
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1960",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-NatGrid-11250-1940-60",
- "max_zoom": 20,
- "name": "NLS - OS 1:1,250 National Grid Maps, 1940s-1960s",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata3/os/scotland_1250_country/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.21122,
- 54.80186
- ],
- [
- -5.06428,
- 54.80265
- ],
- [
- -5.05604,
- 54.63052
- ],
- [
- -4.31583,
- 54.62972
- ],
- [
- -4.31171,
- 54.74483
- ],
- [
- -3.85303,
- 54.74641
- ],
- [
- -3.85303,
- 54.80344
- ],
- [
- -3.63785,
- 54.44848
- ],
- [
- -3.5321,
- 54.43012
- ],
- [
- -3.55228,
- 54.83746
- ],
- [
- -3.46851,
- 54.84063
- ],
- [
- -3.46576,
- 54.89832
- ],
- [
- -3.38474,
- 54.89911
- ],
- [
- -3.38886,
- 54.95592
- ],
- [
- -3.09208,
- 54.95395
- ],
- [
- -3.03924,
- 54.99233
- ],
- [
- -3.02127,
- 55.04939
- ],
- [
- -2.95912,
- 55.04633
- ],
- [
- -2.92028,
- 55.06663
- ],
- [
- -2.78571,
- 55.06865
- ],
- [
- -2.78522,
- 55.09144
- ],
- [
- -2.73376,
- 55.09228
- ],
- [
- -2.73762,
- 55.1512
- ],
- [
- -2.76484,
- 55.15107
- ],
- [
- -2.70131,
- 55.17225
- ],
- [
- -2.66355,
- 55.21928
- ],
- [
- -2.64604,
- 55.21889
- ],
- [
- -2.62904,
- 55.22339
- ],
- [
- -2.63179,
- 55.22878
- ],
- [
- -2.62355,
- 55.24463
- ],
- [
- -2.61977,
- 55.24547
- ],
- [
- -2.6099,
- 55.24542
- ],
- [
- -2.60999,
- 55.24865
- ],
- [
- -2.64081,
- 55.259
- ],
- [
- -2.62479,
- 55.26156
- ],
- [
- -2.60452,
- 55.28231
- ],
- [
- -2.56932,
- 55.29613
- ],
- [
- -2.54795,
- 55.31216
- ],
- [
- -2.50911,
- 55.32349
- ],
- [
- -2.47804,
- 55.34945
- ],
- [
- -2.44211,
- 55.35331
- ],
- [
- -2.40521,
- 55.34393
- ],
- [
- -2.37268,
- 55.34475
- ],
- [
- -2.32218,
- 55.36877
- ],
- [
- -2.32412,
- 55.39993
- ],
- [
- -2.25761,
- 55.42502
- ],
- [
- -2.19855,
- 55.42735
- ],
- [
- -2.14843,
- 55.47175
- ],
- [
- -2.19443,
- 55.4842
- ],
- [
- -2.20405,
- 55.52931
- ],
- [
- -2.29606,
- 55.63797
- ],
- [
- -2.21778,
- 55.63797
- ],
- [
- -2.17186,
- 55.54145
- ],
- [
- -1.9899,
- 55.52552
- ],
- [
- -1.96975,
- 55.9191
- ],
- [
- -2.12017,
- 55.92071
- ],
- [
- -2.12429,
- 55.97761
- ],
- [
- -2.34402,
- 55.97838
- ],
- [
- -2.34402,
- 56.03903
- ],
- [
- -2.50469,
- 56.04134
- ],
- [
- -2.50057,
- 56.10036
- ],
- [
- -2.88235,
- 56.09576
- ],
- [
- -2.88235,
- 56.17229
- ],
- [
- -2.41268,
- 56.16923
- ],
- [
- -2.41817,
- 56.2334
- ],
- [
- -2.58572,
- 56.23035
- ],
- [
- -2.57198,
- 56.34164
- ],
- [
- -2.72579,
- 56.3462
- ],
- [
- -2.73128,
- 56.43438
- ],
- [
- -2.69283,
- 56.43438
- ],
- [
- -2.69283,
- 56.48598
- ],
- [
- -2.53078,
- 56.49356
- ],
- [
- -2.53078,
- 56.57081
- ],
- [
- -2.53029,
- 56.60479
- ],
- [
- -2.37324,
- 56.60445
- ],
- [
- -2.36844,
- 56.73988
- ],
- [
- -2.3293,
- 56.73988
- ],
- [
- -2.3293,
- 56.78881
- ],
- [
- -2.31453,
- 56.78918
- ],
- [
- -2.31488,
- 56.7967
- ],
- [
- -2.17137,
- 56.7967
- ],
- [
- -2.1704,
- 56.97106
- ],
- [
- -2.01017,
- 56.96947
- ],
- [
- -2.01017,
- 57.08468
- ],
- [
- -2.08177,
- 57.08535
- ],
- [
- -2.04881,
- 57.126
- ],
- [
- -2.04091,
- 57.12637
- ],
- [
- -2.03834,
- 57.24111
- ],
- [
- -1.87812,
- 57.24216
- ],
- [
- -1.87715,
- 57.29782
- ],
- [
- -1.98688,
- 57.29834
- ],
- [
- -1.90822,
- 57.35601
- ],
- [
- -1.8752,
- 57.35601
- ],
- [
- -1.87618,
- 57.37695
- ],
- [
- -1.81209,
- 57.41201
- ],
- [
- -1.71207,
- 57.41201
- ],
- [
- -1.70346,
- 57.64414
- ],
- [
- -1.8666,
- 57.64518
- ],
- [
- -1.86466,
- 57.70334
- ],
- [
- -3.12043,
- 57.70647
- ],
- [
- -3.1218,
- 57.75047
- ],
- [
- -3.44453,
- 57.75266
- ],
- [
- -3.44727,
- 57.71381
- ],
- [
- -3.51456,
- 57.70941
- ],
- [
- -3.51182,
- 57.694
- ],
- [
- -3.7645,
- 57.69179
- ],
- [
- -3.76725,
- 57.6345
- ],
- [
- -3.84238,
- 57.62883
- ],
- [
- -3.84383,
- 57.59658
- ],
- [
- -3.94143,
- 57.59164
- ],
- [
- -3.94046,
- 57.65378
- ],
- [
- -3.88947,
- 57.653
- ],
- [
- -3.88268,
- 57.76764
- ],
- [
- -3.72245,
- 57.76609
- ],
- [
- -3.71954,
- 57.88192
- ],
- [
- -3.91469,
- 57.88534
- ],
- [
- -3.91606,
- 57.95462
- ],
- [
- -3.74577,
- 57.9539
- ],
- [
- -3.74715,
- 58.06884
- ],
- [
- -3.58373,
- 58.06957
- ],
- [
- -3.58373,
- 58.11167
- ],
- [
- -3.45601,
- 58.11385
- ],
- [
- -3.45446,
- 58.2285
- ],
- [
- -3.43799,
- 58.22832
- ],
- [
- -3.42432,
- 58.24277
- ],
- [
- -3.41231,
- 58.24386
- ],
- [
- -3.37351,
- 58.26951
- ],
- [
- -3.30639,
- 58.2862
- ],
- [
- -3.12292,
- 58.28594
- ],
- [
- -3.1236,
- 58.34437
- ],
- [
- -2.95743,
- 58.34473
- ],
- [
- -2.95125,
- 58.6422
- ],
- [
- -2.88122,
- 58.64292
- ],
- [
- -2.8851,
- 58.81128
- ],
- [
- -2.71808,
- 58.8143
- ],
- [
- -2.71614,
- 58.87157
- ],
- [
- -2.55688,
- 58.8776
- ],
- [
- -2.55445,
- 58.99235
- ],
- [
- -2.55676,
- 59.04838
- ],
- [
- -2.39189,
- 59.0486
- ],
- [
- -2.3918,
- 59.1107
- ],
- [
- -2.47337,
- 59.1107
- ],
- [
- -2.55916,
- 59.1783
- ],
- [
- -2.56304,
- 59.22106
- ],
- [
- -2.39213,
- 59.22405
- ],
- [
- -2.39114,
- 59.27401
- ],
- [
- -2.36395,
- 59.2745
- ],
- [
- -2.36589,
- 59.28542
- ],
- [
- -2.39114,
- 59.28492
- ],
- [
- -2.39114,
- 59.33795
- ],
- [
- -2.22218,
- 59.3382
- ],
- [
- -2.22339,
- 59.39596
- ],
- [
- -2.37585,
- 59.39658
- ],
- [
- -2.38993,
- 59.40264
- ],
- [
- -2.40085,
- 59.39621
- ],
- [
- -2.56379,
- 59.39526
- ],
- [
- -2.56379,
- 59.33858
- ],
- [
- -2.73202,
- 59.33753
- ],
- [
- -2.73339,
- 59.39526
- ],
- [
- -3.07265,
- 59.39312
- ],
- [
- -3.07034,
- 59.33548
- ],
- [
- -3.07532,
- 59.33556
- ],
- [
- -3.07498,
- 59.32926
- ],
- [
- -3.06983,
- 59.32891
- ],
- [
- -3.0698,
- 59.21962
- ],
- [
- -3.23634,
- 59.21663
- ],
- [
- -3.23368,
- 59.16065
- ],
- [
- -3.40328,
- 59.15889
- ],
- [
- -3.39409,
- 58.92793
- ],
- [
- -3.56645,
- 58.92593
- ],
- [
- -3.56111,
- 58.86799
- ],
- [
- -3.39251,
- 58.86993
- ],
- [
- -3.38947,
- 58.86987
- ],
- [
- -3.38911,
- 58.86849
- ],
- [
- -3.39129,
- 58.86862
- ],
- [
- -3.38842,
- 58.75431
- ],
- [
- -3.22382,
- 58.75557
- ],
- [
- -3.21897,
- 58.69129
- ],
- [
- -3.46341,
- 58.69058
- ],
- [
- -3.45517,
- 58.63415
- ],
- [
- -3.78751,
- 58.63415
- ],
- [
- -3.78613,
- 58.57692
- ],
- [
- -3.90286,
- 58.57334
- ],
- [
- -3.90286,
- 58.64773
- ],
- [
- -4.06903,
- 58.64916
- ],
- [
- -4.06903,
- 58.59124
- ],
- [
- -4.73645,
- 58.59338
- ],
- [
- -4.73645,
- 58.65059
- ],
- [
- -5.07154,
- 58.65202
- ],
- [
- -5.06548,
- 58.53259
- ],
- [
- -5.2332,
- 58.53161
- ],
- [
- -5.22835,
- 58.47199
- ],
- [
- -5.24243,
- 58.47199
- ],
- [
- -5.2366,
- 58.40897
- ],
- [
- -5.22835,
- 58.40948
- ],
- [
- -5.22107,
- 58.30059
- ],
- [
- -5.56579,
- 58.29599
- ],
- [
- -5.55803,
- 58.23726
- ],
- [
- -5.41467,
- 58.24013
- ],
- [
- -5.41419,
- 58.22678
- ],
- [
- -5.38857,
- 58.22722
- ],
- [
- -5.38271,
- 58.11986
- ],
- [
- -5.51043,
- 58.11914
- ],
- [
- -5.5114,
- 58.00621
- ],
- [
- -5.67454,
- 58.00416
- ],
- [
- -5.67163,
- 57.94494
- ],
- [
- -5.67163,
- 57.88872
- ],
- [
- -5.83477,
- 57.88562
- ],
- [
- -5.82771,
- 57.5989
- ],
- [
- -6.03843,
- 57.59864
- ],
- [
- -6.03891,
- 57.64596
- ],
- [
- -6.19817,
- 57.6457
- ],
- [
- -6.20761,
- 57.76001
- ],
- [
- -6.53707,
- 57.7544
- ],
- [
- -6.53124,
- 57.64024
- ],
- [
- -6.70021,
- 57.63608
- ],
- [
- -6.68078,
- 57.52363
- ],
- [
- -6.85169,
- 57.51529
- ],
- [
- -6.83615,
- 57.33858
- ],
- [
- -6.67302,
- 57.34382
- ],
- [
- -6.67496,
- 57.28509
- ],
- [
- -6.50988,
- 57.28509
- ],
- [
- -6.49822,
- 57.17576
- ],
- [
- -6.35062,
- 57.18208
- ],
- [
- -6.3312,
- 57.1252
- ],
- [
- -6.17972,
- 57.12309
- ],
- [
- -6.17195,
- 57.06823
- ],
- [
- -6.45938,
- 57.05978
- ],
- [
- -6.45647,
- 57.10938
- ],
- [
- -6.66719,
- 57.10622
- ],
- [
- -6.67302,
- 57.00271
- ],
- [
- -6.50211,
- 57.00482
- ],
- [
- -6.48361,
- 56.89175
- ],
- [
- -6.32661,
- 56.88941
- ],
- [
- -6.31566,
- 56.77993
- ],
- [
- -6.21467,
- 56.77567
- ],
- [
- -6.21467,
- 56.7235
- ],
- [
- -6.68661,
- 56.72243
- ],
- [
- -6.6769,
- 56.61144
- ],
- [
- -6.84198,
- 56.60717
- ],
- [
- -6.84004,
- 56.54833
- ],
- [
- -7.15466,
- 56.54619
- ],
- [
- -7.14884,
- 56.48726
- ],
- [
- -6.99152,
- 56.49048
- ],
- [
- -6.98764,
- 56.43253
- ],
- [
- -6.68273,
- 56.43146
- ],
- [
- -6.6769,
- 56.54726
- ],
- [
- -6.5293,
- 56.55047
- ],
- [
- -6.52347,
- 56.4379
- ],
- [
- -6.36616,
- 56.43683
- ],
- [
- -6.36422,
- 56.37665
- ],
- [
- -6.52736,
- 56.37127
- ],
- [
- -6.51717,
- 56.24284
- ],
- [
- -6.48696,
- 56.24742
- ],
- [
- -6.48696,
- 56.18939
- ],
- [
- -6.30019,
- 56.19856
- ],
- [
- -6.30294,
- 56.2581
- ],
- [
- -5.90194,
- 56.25658
- ],
- [
- -5.89645,
- 56.09605
- ],
- [
- -6.02828,
- 56.08839
- ],
- [
- -6.03927,
- 56.15575
- ],
- [
- -6.38534,
- 56.15422
- ],
- [
- -6.36062,
- 55.96099
- ],
- [
- -6.2123,
- 55.96406
- ],
- [
- -6.20475,
- 55.92023
- ],
- [
- -6.51855,
- 55.91292
- ],
- [
- -6.50619,
- 55.75018
- ],
- [
- -6.67648,
- 55.7409
- ],
- [
- -6.66,
- 55.62632
- ],
- [
- -6.35513,
- 55.62322
- ],
- [
- -6.35787,
- 55.5689
- ],
- [
- -6.03927,
- 55.57201
- ],
- [
- -6.03103,
- 55.62477
- ],
- [
- -5.73989,
- 55.63097
- ],
- [
- -5.73715,
- 55.45693
- ],
- [
- -5.89645,
- 55.46004
- ],
- [
- -5.89645,
- 55.27899
- ],
- [
- -5.43502,
- 55.28212
- ],
- [
- -5.44051,
- 55.4507
- ],
- [
- -5.28671,
- 55.45693
- ],
- [
- -5.30868,
- 55.40706
- ],
- [
- -4.9736,
- 55.40082
- ],
- [
- -4.98458,
- 55.20382
- ],
- [
- -5.14938,
- 55.20382
- ],
- [
- -5.14114,
- 55.03734
- ],
- [
- -5.21529,
- 55.03419
- ],
- [
- -5.21122,
- 54.80186
- ]
- ],
- [
- [
- -2.08706,
- 59.96621
- ],
- [
- -1.91544,
- 59.96497
- ],
- [
- -1.9171,
- 59.90717
- ],
- [
- -2.08872,
- 59.9084
- ],
- [
- -2.08706,
- 59.96621
- ]
- ],
- [
- [
- -1.45847,
- 59.65927
- ],
- [
- -1.45107,
- 59.94983
- ],
- [
- -1.62732,
- 59.95096
- ],
- [
- -1.62437,
- 60.06594
- ],
- [
- -1.80055,
- 60.06706
- ],
- [
- -1.79752,
- 60.18457
- ],
- [
- -1.44993,
- 60.18235
- ],
- [
- -1.44847,
- 60.23903
- ],
- [
- -1.62454,
- 60.24015
- ],
- [
- -1.61998,
- 60.41621
- ],
- [
- -1.4462,
- 60.41511
- ],
- [
- -1.44467,
- 60.47385
- ],
- [
- -1.09244,
- 60.47162
- ],
- [
- -1.08944,
- 60.58703
- ],
- [
- -0.91791,
- 60.58595
- ],
- [
- -0.91655,
- 60.63777
- ],
- [
- -0.71998,
- 60.63654
- ],
- [
- -0.55788,
- 60.63552
- ],
- [
- -0.56074,
- 60.52584
- ],
- [
- -0.73571,
- 60.52694
- ],
- [
- -0.73722,
- 60.46877
- ],
- [
- -0.5619,
- 60.46766
- ],
- [
- -0.56494,
- 60.3506
- ],
- [
- -0.91944,
- 60.35285
- ],
- [
- -0.9209,
- 60.2964
- ],
- [
- -0.57013,
- 60.29418
- ],
- [
- -0.57316,
- 60.17679
- ],
- [
- -0.74939,
- 60.17791
- ],
- [
- -0.75237,
- 60.06185
- ],
- [
- -0.92763,
- 60.06297
- ],
- [
- -0.92984,
- 59.97684
- ],
- [
- -0.75698,
- 59.97573
- ],
- [
- -0.75849,
- 59.91678
- ],
- [
- -0.92653,
- 59.91786
- ],
- [
- -0.93027,
- 59.77124
- ],
- [
- -1.10861,
- 59.77239
- ],
- [
- -1.11304,
- 59.59825
- ],
- [
- -1.28926,
- 59.59939
- ],
- [
- -1.28777,
- 59.65816
- ],
- [
- -1.45847,
- 59.65927
- ]
- ],
- [
- [
- -0.90718,
- 60.70276
- ],
- [
- -0.72898,
- 60.70183
- ],
- [
- -0.73025,
- 60.64322
- ],
- [
- -0.90844,
- 60.64414
- ],
- [
- -0.90718,
- 60.70276
- ]
- ],
- [
- [
- -7.6921,
- 56.6636
- ],
- [
- -7.52619,
- 56.66401
- ],
- [
- -7.53882,
- 56.8949
- ],
- [
- -7.37374,
- 56.89649
- ],
- [
- -7.37374,
- 57.01246
- ],
- [
- -7.53687,
- 57.01405
- ],
- [
- -7.53396,
- 57.07163
- ],
- [
- -7.37762,
- 57.06952
- ],
- [
- -7.38053,
- 57.30159
- ],
- [
- -7.45725,
- 57.30106
- ],
- [
- -7.45919,
- 57.24331
- ],
- [
- -7.62233,
- 57.24279
- ],
- [
- -7.62621,
- 57.30001
- ],
- [
- -7.71167,
- 57.30054
- ],
- [
- -7.71069,
- 57.35977
- ],
- [
- -7.53979,
- 57.36003
- ],
- [
- -7.54464,
- 57.47482
- ],
- [
- -7.70978,
- 57.47498
- ],
- [
- -7.71253,
- 57.534
- ],
- [
- -7.54224,
- 57.53548
- ],
- [
- -7.54102,
- 57.48007
- ],
- [
- -7.37745,
- 57.47941
- ],
- [
- -7.37333,
- 57.53548
- ],
- [
- -7.22089,
- 57.534
- ],
- [
- -7.22447,
- 57.65293
- ],
- [
- -7.06231,
- 57.65449
- ],
- [
- -7.06376,
- 57.71108
- ],
- [
- -7.06036,
- 57.76887
- ],
- [
- -7.22544,
- 57.76861
- ],
- [
- -7.22447,
- 57.82657
- ],
- [
- -7.06279,
- 57.82735
- ],
- [
- -7.06372,
- 58.06084
- ],
- [
- -6.89344,
- 58.06229
- ],
- [
- -6.90168,
- 58.12182
- ],
- [
- -6.73413,
- 58.12182
- ],
- [
- -6.73413,
- 58.174
- ],
- [
- -6.56934,
- 58.17544
- ],
- [
- -6.58307,
- 58.23333
- ],
- [
- -6.41004,
- 58.23622
- ],
- [
- -6.41004,
- 58.28968
- ],
- [
- -6.23151,
- 58.29257
- ],
- [
- -6.23975,
- 58.35026
- ],
- [
- -6.06397,
- 58.35026
- ],
- [
- -6.07221,
- 58.05939
- ],
- [
- -5.91291,
- 58.06084
- ],
- [
- -5.90741,
- 58.00267
- ],
- [
- -6.0777,
- 58.00122
- ],
- [
- -6.08319,
- 57.94441
- ],
- [
- -6.2425,
- 57.94733
- ],
- [
- -6.2425,
- 57.65315
- ],
- [
- -6.56659,
- 57.65168
- ],
- [
- -6.57209,
- 57.59727
- ],
- [
- -6.73139,
- 57.59432
- ],
- [
- -6.72864,
- 57.48081
- ],
- [
- -6.89893,
- 57.4749
- ],
- [
- -6.89069,
- 57.3032
- ],
- [
- -7.05548,
- 57.30023
- ],
- [
- -7.05274,
- 56.83737
- ],
- [
- -7.2038,
- 56.83286
- ],
- [
- -7.20655,
- 56.66419
- ],
- [
- -7.37134,
- 56.66419
- ],
- [
- -7.3704,
- 56.60483
- ],
- [
- -7.51966,
- 56.60376
- ],
- [
- -7.52331,
- 56.54831
- ],
- [
- -7.68386,
- 56.54492
- ],
- [
- -7.6921,
- 56.6636
- ]
- ],
- [
- [
- -1.63307,
- 59.36307
- ],
- [
- -1.46416,
- 59.36265
- ],
- [
- -1.46472,
- 59.30381
- ],
- [
- -1.63363,
- 59.30423
- ],
- [
- -1.63307,
- 59.36307
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1960",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-NatGrid-12500-1940-60-doubles",
- "max_zoom": 18,
- "name": "NLS - OS 1:2,500 National Grid Maps, 1940s-1960s - double sheets",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/os/scotland_2500_doubles/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.21122,
- 54.80186
- ],
- [
- -5.06428,
- 54.80265
- ],
- [
- -5.05604,
- 54.63052
- ],
- [
- -4.31583,
- 54.62972
- ],
- [
- -4.31171,
- 54.74483
- ],
- [
- -3.85303,
- 54.74641
- ],
- [
- -3.85303,
- 54.80344
- ],
- [
- -3.55228,
- 54.80344
- ],
- [
- -3.55228,
- 54.83746
- ],
- [
- -3.46851,
- 54.84063
- ],
- [
- -3.46576,
- 54.89832
- ],
- [
- -3.38474,
- 54.89911
- ],
- [
- -3.38886,
- 54.95592
- ],
- [
- -3.09208,
- 54.95395
- ],
- [
- -3.03924,
- 54.99233
- ],
- [
- -3.02127,
- 55.04939
- ],
- [
- -2.95912,
- 55.04633
- ],
- [
- -2.92028,
- 55.06663
- ],
- [
- -2.78571,
- 55.06865
- ],
- [
- -2.78522,
- 55.09144
- ],
- [
- -2.73376,
- 55.09228
- ],
- [
- -2.73762,
- 55.1512
- ],
- [
- -2.76484,
- 55.15107
- ],
- [
- -2.70131,
- 55.17225
- ],
- [
- -2.66355,
- 55.21928
- ],
- [
- -2.64604,
- 55.21889
- ],
- [
- -2.62904,
- 55.22339
- ],
- [
- -2.63179,
- 55.22878
- ],
- [
- -2.62355,
- 55.24463
- ],
- [
- -2.61977,
- 55.24547
- ],
- [
- -2.6099,
- 55.24542
- ],
- [
- -2.60999,
- 55.24865
- ],
- [
- -2.64081,
- 55.259
- ],
- [
- -2.62479,
- 55.26156
- ],
- [
- -2.60452,
- 55.28231
- ],
- [
- -2.56932,
- 55.29613
- ],
- [
- -2.54795,
- 55.31216
- ],
- [
- -2.50911,
- 55.32349
- ],
- [
- -2.47804,
- 55.34945
- ],
- [
- -2.44211,
- 55.35331
- ],
- [
- -2.40521,
- 55.34393
- ],
- [
- -2.37268,
- 55.34475
- ],
- [
- -2.32218,
- 55.36877
- ],
- [
- -2.32412,
- 55.39993
- ],
- [
- -2.25761,
- 55.42502
- ],
- [
- -2.19855,
- 55.42735
- ],
- [
- -2.14843,
- 55.47175
- ],
- [
- -2.19443,
- 55.4842
- ],
- [
- -2.20405,
- 55.52931
- ],
- [
- -2.29606,
- 55.63797
- ],
- [
- -2.21778,
- 55.63797
- ],
- [
- -2.10593,
- 55.74525
- ],
- [
- -1.97169,
- 55.74622
- ],
- [
- -1.96975,
- 55.9191
- ],
- [
- -2.12017,
- 55.92071
- ],
- [
- -2.12429,
- 55.97761
- ],
- [
- -2.34402,
- 55.97838
- ],
- [
- -2.34402,
- 56.03903
- ],
- [
- -2.50469,
- 56.04134
- ],
- [
- -2.50057,
- 56.10036
- ],
- [
- -2.88235,
- 56.09576
- ],
- [
- -2.88235,
- 56.17229
- ],
- [
- -2.41268,
- 56.16923
- ],
- [
- -2.41817,
- 56.2334
- ],
- [
- -2.58572,
- 56.23035
- ],
- [
- -2.57198,
- 56.34164
- ],
- [
- -2.72579,
- 56.3462
- ],
- [
- -2.73128,
- 56.43438
- ],
- [
- -2.69283,
- 56.43438
- ],
- [
- -2.69283,
- 56.48598
- ],
- [
- -2.53078,
- 56.49356
- ],
- [
- -2.53078,
- 56.57081
- ],
- [
- -2.53029,
- 56.60479
- ],
- [
- -2.37324,
- 56.60445
- ],
- [
- -2.36844,
- 56.73988
- ],
- [
- -2.3293,
- 56.73988
- ],
- [
- -2.3293,
- 56.78881
- ],
- [
- -2.31453,
- 56.78918
- ],
- [
- -2.31488,
- 56.7967
- ],
- [
- -2.17137,
- 56.7967
- ],
- [
- -2.1704,
- 56.97106
- ],
- [
- -2.01017,
- 56.96947
- ],
- [
- -2.01017,
- 57.08468
- ],
- [
- -2.08177,
- 57.08535
- ],
- [
- -2.04881,
- 57.126
- ],
- [
- -2.04091,
- 57.12637
- ],
- [
- -2.03834,
- 57.24111
- ],
- [
- -1.87812,
- 57.24216
- ],
- [
- -1.87715,
- 57.29782
- ],
- [
- -1.98688,
- 57.29834
- ],
- [
- -1.90822,
- 57.35601
- ],
- [
- -1.8752,
- 57.35601
- ],
- [
- -1.87618,
- 57.37695
- ],
- [
- -1.81209,
- 57.41201
- ],
- [
- -1.71207,
- 57.41201
- ],
- [
- -1.70346,
- 57.64414
- ],
- [
- -1.8666,
- 57.64518
- ],
- [
- -1.86466,
- 57.70334
- ],
- [
- -3.12043,
- 57.70647
- ],
- [
- -3.1218,
- 57.75047
- ],
- [
- -3.44453,
- 57.75266
- ],
- [
- -3.44727,
- 57.71381
- ],
- [
- -3.51456,
- 57.70941
- ],
- [
- -3.51182,
- 57.694
- ],
- [
- -3.7645,
- 57.69179
- ],
- [
- -3.76725,
- 57.6345
- ],
- [
- -3.84238,
- 57.62883
- ],
- [
- -3.84383,
- 57.59658
- ],
- [
- -3.94143,
- 57.59164
- ],
- [
- -3.94046,
- 57.65378
- ],
- [
- -3.88947,
- 57.653
- ],
- [
- -3.88268,
- 57.76764
- ],
- [
- -3.72245,
- 57.76609
- ],
- [
- -3.71954,
- 57.88192
- ],
- [
- -3.91469,
- 57.88534
- ],
- [
- -3.91606,
- 57.95462
- ],
- [
- -3.74577,
- 57.9539
- ],
- [
- -3.74715,
- 58.06884
- ],
- [
- -3.58373,
- 58.06957
- ],
- [
- -3.58373,
- 58.11167
- ],
- [
- -3.45601,
- 58.11385
- ],
- [
- -3.45446,
- 58.2285
- ],
- [
- -3.43799,
- 58.22832
- ],
- [
- -3.42432,
- 58.24277
- ],
- [
- -3.41231,
- 58.24386
- ],
- [
- -3.37351,
- 58.26951
- ],
- [
- -3.30639,
- 58.2862
- ],
- [
- -3.12292,
- 58.28594
- ],
- [
- -3.1236,
- 58.34437
- ],
- [
- -2.95743,
- 58.34473
- ],
- [
- -2.95125,
- 58.6422
- ],
- [
- -2.88122,
- 58.64292
- ],
- [
- -2.8851,
- 58.81128
- ],
- [
- -2.71808,
- 58.8143
- ],
- [
- -2.71614,
- 58.87157
- ],
- [
- -2.55688,
- 58.8776
- ],
- [
- -2.55445,
- 58.99235
- ],
- [
- -2.55676,
- 59.04838
- ],
- [
- -2.39189,
- 59.0486
- ],
- [
- -2.3918,
- 59.1107
- ],
- [
- -2.47337,
- 59.1107
- ],
- [
- -2.55916,
- 59.1783
- ],
- [
- -2.56304,
- 59.22106
- ],
- [
- -2.39213,
- 59.22405
- ],
- [
- -2.39114,
- 59.27401
- ],
- [
- -2.36395,
- 59.2745
- ],
- [
- -2.36589,
- 59.28542
- ],
- [
- -2.39114,
- 59.28492
- ],
- [
- -2.39114,
- 59.33795
- ],
- [
- -2.22218,
- 59.3382
- ],
- [
- -2.22339,
- 59.39596
- ],
- [
- -2.37585,
- 59.39658
- ],
- [
- -2.38993,
- 59.40264
- ],
- [
- -2.40085,
- 59.39621
- ],
- [
- -2.56379,
- 59.39526
- ],
- [
- -2.56379,
- 59.33858
- ],
- [
- -2.73202,
- 59.33753
- ],
- [
- -2.73339,
- 59.39526
- ],
- [
- -3.07265,
- 59.39312
- ],
- [
- -3.07034,
- 59.33548
- ],
- [
- -3.07532,
- 59.33556
- ],
- [
- -3.07498,
- 59.32926
- ],
- [
- -3.06983,
- 59.32891
- ],
- [
- -3.0698,
- 59.21962
- ],
- [
- -3.23634,
- 59.21663
- ],
- [
- -3.23368,
- 59.16065
- ],
- [
- -3.40328,
- 59.15889
- ],
- [
- -3.39409,
- 58.92793
- ],
- [
- -3.56645,
- 58.92593
- ],
- [
- -3.56111,
- 58.86799
- ],
- [
- -3.39251,
- 58.86993
- ],
- [
- -3.38947,
- 58.86987
- ],
- [
- -3.38911,
- 58.86849
- ],
- [
- -3.39129,
- 58.86862
- ],
- [
- -3.38842,
- 58.75431
- ],
- [
- -3.22382,
- 58.75557
- ],
- [
- -3.21897,
- 58.69129
- ],
- [
- -3.46341,
- 58.69058
- ],
- [
- -3.45517,
- 58.63415
- ],
- [
- -3.78751,
- 58.63415
- ],
- [
- -3.78613,
- 58.57692
- ],
- [
- -3.90286,
- 58.57334
- ],
- [
- -3.90286,
- 58.64773
- ],
- [
- -4.06903,
- 58.64916
- ],
- [
- -4.06903,
- 58.59124
- ],
- [
- -4.73645,
- 58.59338
- ],
- [
- -4.73645,
- 58.65059
- ],
- [
- -5.07154,
- 58.65202
- ],
- [
- -5.06548,
- 58.53259
- ],
- [
- -5.2332,
- 58.53161
- ],
- [
- -5.22835,
- 58.47199
- ],
- [
- -5.24243,
- 58.47199
- ],
- [
- -5.2366,
- 58.40897
- ],
- [
- -5.22835,
- 58.40948
- ],
- [
- -5.22107,
- 58.30059
- ],
- [
- -5.56579,
- 58.29599
- ],
- [
- -5.55803,
- 58.23726
- ],
- [
- -5.41467,
- 58.24013
- ],
- [
- -5.41419,
- 58.22678
- ],
- [
- -5.38857,
- 58.22722
- ],
- [
- -5.38271,
- 58.11986
- ],
- [
- -5.51043,
- 58.11914
- ],
- [
- -5.5114,
- 58.00621
- ],
- [
- -5.67454,
- 58.00416
- ],
- [
- -5.67163,
- 57.94494
- ],
- [
- -5.67163,
- 57.88872
- ],
- [
- -5.83477,
- 57.88562
- ],
- [
- -5.82771,
- 57.5989
- ],
- [
- -6.03843,
- 57.59864
- ],
- [
- -6.03891,
- 57.64596
- ],
- [
- -6.19817,
- 57.6457
- ],
- [
- -6.20761,
- 57.76001
- ],
- [
- -6.53707,
- 57.7544
- ],
- [
- -6.53124,
- 57.64024
- ],
- [
- -6.70021,
- 57.63608
- ],
- [
- -6.68078,
- 57.52363
- ],
- [
- -6.85169,
- 57.51529
- ],
- [
- -6.83615,
- 57.33858
- ],
- [
- -6.67302,
- 57.34382
- ],
- [
- -6.67496,
- 57.28509
- ],
- [
- -6.50988,
- 57.28509
- ],
- [
- -6.49822,
- 57.17576
- ],
- [
- -6.35062,
- 57.18208
- ],
- [
- -6.3312,
- 57.1252
- ],
- [
- -6.17972,
- 57.12309
- ],
- [
- -6.17195,
- 57.06823
- ],
- [
- -6.45938,
- 57.05978
- ],
- [
- -6.45647,
- 57.10938
- ],
- [
- -6.66719,
- 57.10622
- ],
- [
- -6.67302,
- 57.00271
- ],
- [
- -6.50211,
- 57.00482
- ],
- [
- -6.48361,
- 56.89175
- ],
- [
- -6.32661,
- 56.88941
- ],
- [
- -6.31566,
- 56.77993
- ],
- [
- -6.21467,
- 56.77567
- ],
- [
- -6.21467,
- 56.7235
- ],
- [
- -6.68661,
- 56.72243
- ],
- [
- -6.6769,
- 56.61144
- ],
- [
- -6.84198,
- 56.60717
- ],
- [
- -6.84004,
- 56.54833
- ],
- [
- -7.15466,
- 56.54619
- ],
- [
- -7.14884,
- 56.48726
- ],
- [
- -6.99152,
- 56.49048
- ],
- [
- -6.98764,
- 56.43253
- ],
- [
- -6.68273,
- 56.43146
- ],
- [
- -6.6769,
- 56.54726
- ],
- [
- -6.5293,
- 56.55047
- ],
- [
- -6.52347,
- 56.4379
- ],
- [
- -6.36616,
- 56.43683
- ],
- [
- -6.36422,
- 56.37665
- ],
- [
- -6.52736,
- 56.37127
- ],
- [
- -6.51717,
- 56.24284
- ],
- [
- -6.48696,
- 56.24742
- ],
- [
- -6.48696,
- 56.18939
- ],
- [
- -6.30019,
- 56.19856
- ],
- [
- -6.30294,
- 56.2581
- ],
- [
- -5.90194,
- 56.25658
- ],
- [
- -5.89645,
- 56.09605
- ],
- [
- -6.02828,
- 56.08839
- ],
- [
- -6.03927,
- 56.15575
- ],
- [
- -6.38534,
- 56.15422
- ],
- [
- -6.36062,
- 55.96099
- ],
- [
- -6.2123,
- 55.96406
- ],
- [
- -6.20475,
- 55.92023
- ],
- [
- -6.51855,
- 55.91292
- ],
- [
- -6.50619,
- 55.75018
- ],
- [
- -6.67648,
- 55.7409
- ],
- [
- -6.66,
- 55.62632
- ],
- [
- -6.35513,
- 55.62322
- ],
- [
- -6.35787,
- 55.5689
- ],
- [
- -6.03927,
- 55.57201
- ],
- [
- -6.03103,
- 55.62477
- ],
- [
- -5.73989,
- 55.63097
- ],
- [
- -5.73715,
- 55.45693
- ],
- [
- -5.89645,
- 55.46004
- ],
- [
- -5.89645,
- 55.27899
- ],
- [
- -5.43502,
- 55.28212
- ],
- [
- -5.44051,
- 55.4507
- ],
- [
- -5.28671,
- 55.45693
- ],
- [
- -5.30868,
- 55.40706
- ],
- [
- -4.9736,
- 55.40082
- ],
- [
- -4.98458,
- 55.20382
- ],
- [
- -5.14938,
- 55.20382
- ],
- [
- -5.14114,
- 55.03734
- ],
- [
- -5.21529,
- 55.03419
- ],
- [
- -5.21122,
- 54.80186
- ]
- ],
- [
- [
- -2.16466,
- 60.16221
- ],
- [
- -1.99303,
- 60.16098
- ],
- [
- -1.99469,
- 60.10352
- ],
- [
- -2.16631,
- 60.10474
- ],
- [
- -2.16466,
- 60.16221
- ]
- ],
- [
- [
- -1.53607,
- 59.85708
- ],
- [
- -1.36536,
- 59.85598
- ],
- [
- -1.36685,
- 59.79756
- ],
- [
- -1.19063,
- 59.79642
- ],
- [
- -1.1862,
- 59.96954
- ],
- [
- -1.00787,
- 59.96839
- ],
- [
- -1.00412,
- 60.11415
- ],
- [
- -0.83608,
- 60.11307
- ],
- [
- -0.83457,
- 60.17168
- ],
- [
- -1.00743,
- 60.17278
- ],
- [
- -1.00522,
- 60.25839
- ],
- [
- -0.82997,
- 60.25728
- ],
- [
- -0.82698,
- 60.37266
- ],
- [
- -0.65075,
- 60.37154
- ],
- [
- -0.64772,
- 60.48823
- ],
- [
- -0.99849,
- 60.49044
- ],
- [
- -0.99703,
- 60.54655
- ],
- [
- -0.64253,
- 60.54432
- ],
- [
- -0.63949,
- 60.66068
- ],
- [
- -0.81481,
- 60.66178
- ],
- [
- -0.8133,
- 60.71961
- ],
- [
- -0.63833,
- 60.71851
- ],
- [
- -0.63547,
- 60.82754
- ],
- [
- -0.79757,
- 60.82855
- ],
- [
- -0.99414,
- 60.82978
- ],
- [
- -0.9955,
- 60.77827
- ],
- [
- -1.16703,
- 60.77934
- ],
- [
- -1.17004,
- 60.66462
- ],
- [
- -1.52226,
- 60.66683
- ],
- [
- -1.52379,
- 60.60844
- ],
- [
- -1.69757,
- 60.60954
- ],
- [
- -1.70213,
- 60.43452
- ],
- [
- -1.52606,
- 60.43341
- ],
- [
- -1.52752,
- 60.37707
- ],
- [
- -1.87511,
- 60.37927
- ],
- [
- -1.87814,
- 60.26246
- ],
- [
- -1.70196,
- 60.26134
- ],
- [
- -1.70491,
- 60.14705
- ],
- [
- -1.52866,
- 60.14593
- ],
- [
- -1.53607,
- 59.85708
- ]
- ],
- [
- [
- -0.98477,
- 60.89438
- ],
- [
- -0.98603,
- 60.83611
- ],
- [
- -0.80784,
- 60.83519
- ],
- [
- -0.80657,
- 60.89346
- ],
- [
- -0.98477,
- 60.89438
- ]
- ],
- [
- [
- -7.76969,
- 56.87882
- ],
- [
- -7.76145,
- 56.76083
- ],
- [
- -7.6009,
- 56.76419
- ],
- [
- -7.59725,
- 56.81933
- ],
- [
- -7.44799,
- 56.82039
- ],
- [
- -7.44893,
- 56.87941
- ],
- [
- -7.28414,
- 56.87941
- ],
- [
- -7.28139,
- 57.04712
- ],
- [
- -7.13033,
- 57.0516
- ],
- [
- -7.13307,
- 57.5118
- ],
- [
- -6.96828,
- 57.51475
- ],
- [
- -6.97652,
- 57.68547
- ],
- [
- -6.80623,
- 57.69134
- ],
- [
- -6.80898,
- 57.8042
- ],
- [
- -6.64968,
- 57.80713
- ],
- [
- -6.64418,
- 57.86123
- ],
- [
- -6.32009,
- 57.86269
- ],
- [
- -6.32009,
- 58.15516
- ],
- [
- -6.16078,
- 58.15226
- ],
- [
- -6.15529,
- 58.20874
- ],
- [
- -5.985,
- 58.21019
- ],
- [
- -5.9905,
- 58.26802
- ],
- [
- -6.1498,
- 58.26657
- ],
- [
- -6.14156,
- 58.55575
- ],
- [
- -6.31734,
- 58.55575
- ],
- [
- -6.3091,
- 58.49839
- ],
- [
- -6.48763,
- 58.49552
- ],
- [
- -6.48763,
- 58.44238
- ],
- [
- -6.66066,
- 58.4395
- ],
- [
- -6.64693,
- 58.38195
- ],
- [
- -6.81172,
- 58.38051
- ],
- [
- -6.81172,
- 58.32864
- ],
- [
- -6.97927,
- 58.32864
- ],
- [
- -6.97103,
- 58.26946
- ],
- [
- -7.14131,
- 58.26802
- ],
- [
- -7.14038,
- 58.03587
- ],
- [
- -7.30206,
- 58.0351
- ],
- [
- -7.30303,
- 57.97748
- ],
- [
- -7.13795,
- 57.97774
- ],
- [
- -7.14135,
- 57.92028
- ],
- [
- -7.1399,
- 57.86402
- ],
- [
- -7.30206,
- 57.86247
- ],
- [
- -7.29848,
- 57.74423
- ],
- [
- -7.45092,
- 57.7457
- ],
- [
- -7.45504,
- 57.68995
- ],
- [
- -7.61861,
- 57.6906
- ],
- [
- -7.61983,
- 57.7457
- ],
- [
- -7.79012,
- 57.74423
- ],
- [
- -7.78738,
- 57.68555
- ],
- [
- -7.62223,
- 57.68538
- ],
- [
- -7.61738,
- 57.57126
- ],
- [
- -7.78829,
- 57.571
- ],
- [
- -7.78926,
- 57.51211
- ],
- [
- -7.7038,
- 57.51159
- ],
- [
- -7.69992,
- 57.45469
- ],
- [
- -7.53678,
- 57.45521
- ],
- [
- -7.53484,
- 57.51263
- ],
- [
- -7.45812,
- 57.51315
- ],
- [
- -7.45521,
- 57.28242
- ],
- [
- -7.61155,
- 57.28452
- ],
- [
- -7.61446,
- 57.22727
- ],
- [
- -7.45133,
- 57.22569
- ],
- [
- -7.45133,
- 57.11039
- ],
- [
- -7.61641,
- 57.10881
- ],
- [
- -7.60378,
- 56.87924
- ],
- [
- -7.76969,
- 56.87882
- ]
- ],
- [
- [
- -1.71066,
- 59.56263
- ],
- [
- -1.54175,
- 59.56222
- ],
- [
- -1.54231,
- 59.50372
- ],
- [
- -1.71122,
- 59.50414
- ],
- [
- -1.71066,
- 59.56263
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1960",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-NatGrid-12500-1940-60-singles",
- "max_zoom": 18,
- "name": "NLS - OS 1:2,500 National Grid Maps, 1940s-1960s - single sheets",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/os/scotland_2500_singles/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.29541,
- 54.6357
- ],
- [
- -5.00839,
- 54.59991
- ],
- [
- -4.29153,
- 54.61741
- ],
- [
- -4.30252,
- 54.70796
- ],
- [
- -3.76556,
- 54.72145
- ],
- [
- -3.75732,
- 54.62934
- ],
- [
- -3.52661,
- 54.63331
- ],
- [
- -3.52112,
- 54.54897
- ],
- [
- -3.04184,
- 54.55693
- ],
- [
- -3.04733,
- 54.65159
- ],
- [
- -3.28491,
- 54.64762
- ],
- [
- -3.29727,
- 54.82917
- ],
- [
- -3.5321,
- 54.82443
- ],
- [
- -3.52661,
- 54.90504
- ],
- [
- -2.82898,
- 54.9153
- ],
- [
- -2.83173,
- 55.09487
- ],
- [
- -2.59689,
- 55.0988
- ],
- [
- -2.60101,
- 55.18514
- ],
- [
- -2.36893,
- 55.19063
- ],
- [
- -2.36893,
- 55.2799
- ],
- [
- -2.13272,
- 55.28615
- ],
- [
- -2.14508,
- 55.64117
- ],
- [
- -1.67404,
- 55.64815
- ],
- [
- -1.43921,
- 55.74257
- ],
- [
- -1.81824,
- 55.90612
- ],
- [
- -2.21924,
- 56.13331
- ],
- [
- -2.23022,
- 56.51405
- ],
- [
- -1.8457,
- 56.82493
- ],
- [
- -1.62048,
- 57.18688
- ],
- [
- -1.49414,
- 57.58067
- ],
- [
- -1.55457,
- 57.78038
- ],
- [
- -2.05444,
- 57.87105
- ],
- [
- -2.95532,
- 57.84183
- ],
- [
- -3.30139,
- 57.96442
- ],
- [
- -2.66418,
- 58.37868
- ],
- [
- -2.26318,
- 58.91883
- ],
- [
- -1.92261,
- 59.31077
- ],
- [
- -0.90088,
- 59.78405
- ],
- [
- -0.70862,
- 60.10046
- ],
- [
- -0.47241,
- 60.34054
- ],
- [
- -0.41199,
- 60.68663
- ],
- [
- -0.32959,
- 60.89839
- ],
- [
- -0.8075,
- 60.95444
- ],
- [
- -1.62048,
- 60.86899
- ],
- [
- -2.62573,
- 60.24526
- ],
- [
- -3.7793,
- 59.33599
- ],
- [
- -4.43848,
- 58.88478
- ],
- [
- -5.66345,
- 58.79098
- ],
- [
- -7.19055,
- 58.5023
- ],
- [
- -7.81128,
- 57.91777
- ],
- [
- -8.27271,
- 56.93299
- ],
- [
- -7.66846,
- 56.50496
- ],
- [
- -7.03125,
- 55.57213
- ],
- [
- -6.14136,
- 55.38535
- ],
- [
- -5.75684,
- 55.11608
- ],
- [
- -5.29541,
- 54.6357
- ]
- ],
- [
- [
- -4.93011,
- 54.12865
- ],
- [
- -4.88617,
- 54.02713
- ],
- [
- -4.66644,
- 54.02713
- ],
- [
- -4.43024,
- 54.09323
- ],
- [
- -4.24896,
- 54.2989
- ],
- [
- -4.27368,
- 54.45727
- ],
- [
- -4.61151,
- 54.50035
- ],
- [
- -4.93011,
- 54.12865
- ]
- ],
- [
- [
- -1.84158,
- 51.15566
- ],
- [
- -1.8409,
- 51.06513
- ],
- [
- -1.62598,
- 51.06621
- ],
- [
- -1.62701,
- 51.15782
- ],
- [
- -1.84158,
- 51.15566
- ]
- ],
- [
- [
- 0.31036,
- 51.41762
- ],
- [
- 0.30418,
- 51.2372
- ],
- [
- 0.51876,
- 51.23441
- ],
- [
- 0.51464,
- 51.14425
- ],
- [
- 0.94551,
- 51.13779
- ],
- [
- 0.95032,
- 51.22774
- ],
- [
- 1.37913,
- 51.21871
- ],
- [
- 1.38393,
- 51.30808
- ],
- [
- 1.45123,
- 51.30615
- ],
- [
- 1.46015,
- 51.39771
- ],
- [
- 0.95684,
- 51.40906
- ],
- [
- 0.86792,
- 51.44695
- ],
- [
- 0.70244,
- 51.49955
- ],
- [
- 0.62794,
- 51.50725
- ],
- [
- 0.52906,
- 51.50511
- ],
- [
- 0.52597,
- 51.41527
- ],
- [
- 0.31036,
- 51.41762
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1943",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-WarOffice-125k-1940-43",
- "max_zoom": 16,
- "min_zoom": 5,
- "name": "NLS - OS/War Office - GSGS 3906 1:25,000, 1940-43",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata3/gsgs3906/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -6.45854,
- 49.90441
- ],
- [
- -6.3872,
- 49.98411
- ],
- [
- -6.22968,
- 49.98962
- ],
- [
- -6.21713,
- 49.86801
- ],
- [
- -6.45512,
- 49.85918
- ],
- [
- -6.45854,
- 49.90441
- ]
- ],
- [
- [
- -1.44951,
- 60.86341
- ],
- [
- -0.71671,
- 60.85451
- ],
- [
- -0.73497,
- 60.43598
- ],
- [
- -0.69388,
- 60.41682
- ],
- [
- -0.72584,
- 60.39427
- ],
- [
- -0.73954,
- 60.04847
- ],
- [
- -0.92674,
- 60.04619
- ],
- [
- -0.93815,
- 59.82662
- ],
- [
- -1.45865,
- 59.8312
- ],
- [
- -1.44552,
- 60.0536
- ],
- [
- -1.46321,
- 60.0536
- ],
- [
- -1.46435,
- 60.063
- ],
- [
- -1.57165,
- 60.06385
- ],
- [
- -1.56936,
- 60.179
- ],
- [
- -1.64356,
- 60.1807
- ],
- [
- -1.64356,
- 60.18922
- ],
- [
- -1.82162,
- 60.1895
- ],
- [
- -1.82048,
- 60.36155
- ],
- [
- -1.8416,
- 60.36973
- ],
- [
- -1.82162,
- 60.38328
- ],
- [
- -1.81799,
- 60.59343
- ],
- [
- -1.45317,
- 60.59343
- ],
- [
- -1.44951,
- 60.86341
- ]
- ],
- [
- [
- -4.90892,
- 54.42421
- ],
- [
- -4.2826,
- 54.44299
- ],
- [
- -4.25354,
- 54.02977
- ],
- [
- -4.87664,
- 54.02218
- ],
- [
- -4.90892,
- 54.42421
- ]
- ],
- [
- [
- -5.86674,
- 59.14446
- ],
- [
- -5.776,
- 59.14709
- ],
- [
- -5.772,
- 59.10141
- ],
- [
- -5.86218,
- 59.09906
- ],
- [
- -5.86674,
- 59.14446
- ]
- ],
- [
- [
- -1.70659,
- 59.57036
- ],
- [
- -1.55792,
- 59.56935
- ],
- [
- -1.55649,
- 59.49657
- ],
- [
- -1.70545,
- 59.49758
- ],
- [
- -1.70659,
- 59.57036
- ]
- ],
- [
- [
- -7.68658,
- 58.2941
- ],
- [
- -7.53306,
- 58.3007
- ],
- [
- -7.52564,
- 58.26469
- ],
- [
- -7.67973,
- 58.25779
- ],
- [
- -7.68658,
- 58.2941
- ]
- ],
- [
- [
- -4.53383,
- 59.03599
- ],
- [
- -4.48132,
- 59.03716
- ],
- [
- -4.47961,
- 59.01866
- ],
- [
- -4.53326,
- 59.01807
- ],
- [
- -4.53383,
- 59.03599
- ]
- ],
- [
- [
- -8.67107,
- 57.87699
- ],
- [
- -8.46732,
- 57.88973
- ],
- [
- -8.44678,
- 57.7907
- ],
- [
- -8.65109,
- 57.77792
- ],
- [
- -8.67107,
- 57.87699
- ]
- ],
- [
- [
- -5.23955,
- 50.35306
- ],
- [
- -5.79201,
- 50.33849
- ],
- [
- -5.76005,
- 49.9317
- ],
- [
- -4.65514,
- 49.95815
- ],
- [
- -4.67797,
- 50.28601
- ],
- [
- -4.24422,
- 50.28017
- ],
- [
- -4.24878,
- 50.20425
- ],
- [
- -3.38129,
- 50.20425
- ],
- [
- -3.42238,
- 50.51882
- ],
- [
- -3.11648,
- 50.52463
- ],
- [
- -3.12105,
- 50.65796
- ],
- [
- -2.67364,
- 50.66195
- ],
- [
- -2.59535,
- 50.63943
- ],
- [
- -2.5905,
- 50.57284
- ],
- [
- -2.47912,
- 50.57335
- ],
- [
- -2.47589,
- 50.50667
- ],
- [
- -2.39679,
- 50.50564
- ],
- [
- -2.40164,
- 50.57233
- ],
- [
- -1.04003,
- 50.57182
- ],
- [
- -1.03357,
- 50.70593
- ],
- [
- -0.5493,
- 50.70388
- ],
- [
- -0.54607,
- 50.78866
- ],
- [
- -0.09247,
- 50.7856
- ],
- [
- -0.08763,
- 50.71819
- ],
- [
- 0.47897,
- 50.71206
- ],
- [
- 0.48704,
- 50.81825
- ],
- [
- 0.97615,
- 50.80499
- ],
- [
- 0.99229,
- 51.01263
- ],
- [
- 1.44912,
- 51.00044
- ],
- [
- 1.47818,
- 51.40904
- ],
- [
- 1.02296,
- 51.42716
- ],
- [
- 1.03588,
- 51.76409
- ],
- [
- 1.61054,
- 51.7501
- ],
- [
- 1.64606,
- 52.156
- ],
- [
- 1.72677,
- 52.15402
- ],
- [
- 1.74937,
- 52.44818
- ],
- [
- 1.78707,
- 52.48116
- ],
- [
- 1.7591,
- 52.52251
- ],
- [
- 1.79335,
- 52.96027
- ],
- [
- 0.37981,
- 52.99585
- ],
- [
- 0.38952,
- 53.25112
- ],
- [
- 0.34786,
- 53.25112
- ],
- [
- 0.32389,
- 53.28219
- ],
- [
- 0.34615,
- 53.65385
- ],
- [
- 0.12849,
- 53.65755
- ],
- [
- 0.11658,
- 53.66747
- ],
- [
- 0.13506,
- 54.06557
- ],
- [
- -0.06098,
- 54.06591
- ],
- [
- -0.04142,
- 54.47094
- ],
- [
- -0.56627,
- 54.47718
- ],
- [
- -0.55921,
- 54.65651
- ],
- [
- -1.16656,
- 54.66235
- ],
- [
- -1.16374,
- 54.84261
- ],
- [
- -1.33162,
- 54.84391
- ],
- [
- -1.32571,
- 55.24708
- ],
- [
- -1.52945,
- 55.24871
- ],
- [
- -1.52418,
- 55.65401
- ],
- [
- -1.76388,
- 55.65401
- ],
- [
- -1.77337,
- 55.97191
- ],
- [
- -2.16079,
- 55.9683
- ],
- [
- -2.15433,
- 56.06214
- ],
- [
- -2.45781,
- 56.05853
- ],
- [
- -2.41906,
- 56.64172
- ],
- [
- -2.09622,
- 56.64172
- ],
- [
- -2.0833,
- 57.00213
- ],
- [
- -1.92834,
- 57.01268
- ],
- [
- -1.9181,
- 57.35909
- ],
- [
- -1.75022,
- 57.36257
- ],
- [
- -1.76959,
- 57.76086
- ],
- [
- -3.69376,
- 57.75742
- ],
- [
- -3.70667,
- 57.98064
- ],
- [
- -3.5969,
- 57.97721
- ],
- [
- -3.60336,
- 58.12073
- ],
- [
- -3.02223,
- 58.13096
- ],
- [
- -3.02869,
- 58.54108
- ],
- [
- -2.8479,
- 58.53097
- ],
- [
- -2.86081,
- 58.84305
- ],
- [
- -2.67962,
- 58.8415
- ],
- [
- -2.68419,
- 58.88517
- ],
- [
- -2.63397,
- 58.90522
- ],
- [
- -2.67962,
- 58.93351
- ],
- [
- -2.68876,
- 59.02292
- ],
- [
- -2.36687,
- 59.02292
- ],
- [
- -2.37029,
- 59.26529
- ],
- [
- -2.3429,
- 59.2822
- ],
- [
- -2.37144,
- 59.29969
- ],
- [
- -2.37372,
- 59.37071
- ],
- [
- -2.3429,
- 59.38582
- ],
- [
- -2.37258,
- 59.40035
- ],
- [
- -2.37144,
- 59.42591
- ],
- [
- -3.07342,
- 59.42301
- ],
- [
- -3.07114,
- 59.34336
- ],
- [
- -3.1031,
- 59.33114
- ],
- [
- -3.07456,
- 59.31367
- ],
- [
- -3.07228,
- 59.2326
- ],
- [
- -3.38503,
- 59.14842
- ],
- [
- -3.37476,
- 58.93528
- ],
- [
- -3.56538,
- 58.93233
- ],
- [
- -3.55483,
- 58.69759
- ],
- [
- -5.28086,
- 58.66677
- ],
- [
- -5.25342,
- 58.35141
- ],
- [
- -5.50685,
- 58.34379
- ],
- [
- -5.47618,
- 58.03236
- ],
- [
- -5.8975,
- 58.02124
- ],
- [
- -5.8523,
- 57.61718
- ],
- [
- -6.13963,
- 57.61372
- ],
- [
- -6.15416,
- 57.74232
- ],
- [
- -6.29137,
- 57.73801
- ],
- [
- -6.33657,
- 58.13988
- ],
- [
- -6.11219,
- 58.14669
- ],
- [
- -6.14738,
- 58.51063
- ],
- [
- -6.29348,
- 58.54162
- ],
- [
- -6.84137,
- 58.29773
- ],
- [
- -7.00574,
- 58.29293
- ],
- [
- -7.10162,
- 58.20644
- ],
- [
- -7.25731,
- 58.17931
- ],
- [
- -7.25311,
- 58.10049
- ],
- [
- -7.40707,
- 58.09056
- ],
- [
- -7.39135,
- 57.79114
- ],
- [
- -7.79099,
- 57.77332
- ],
- [
- -7.76242,
- 57.54442
- ],
- [
- -7.6985,
- 57.14532
- ],
- [
- -7.79438,
- 57.13045
- ],
- [
- -7.71676,
- 56.73686
- ],
- [
- -7.01221,
- 56.76544
- ],
- [
- -6.97992,
- 56.54539
- ],
- [
- -7.06386,
- 56.54539
- ],
- [
- -7.04449,
- 56.35626
- ],
- [
- -6.50068,
- 56.38129
- ],
- [
- -6.44914,
- 55.97936
- ],
- [
- -6.56329,
- 55.96915
- ],
- [
- -6.53937,
- 55.70301
- ],
- [
- -6.55955,
- 55.69073
- ],
- [
- -6.53453,
- 55.67617
- ],
- [
- -6.52162,
- 55.57044
- ],
- [
- -5.89126,
- 55.59234
- ],
- [
- -5.85601,
- 55.23207
- ],
- [
- -5.22936,
- 55.2516
- ],
- [
- -5.18371,
- 54.62541
- ],
- [
- -3.6656,
- 54.65184
- ],
- [
- -3.64962,
- 54.432
- ],
- [
- -3.54004,
- 54.43067
- ],
- [
- -3.53091,
- 54.02902
- ],
- [
- -3.06977,
- 54.03036
- ],
- [
- -3.06757,
- 53.82214
- ],
- [
- -3.08049,
- 53.77399
- ],
- [
- -3.06192,
- 53.74775
- ],
- [
- -3.06112,
- 53.6737
- ],
- [
- -3.21447,
- 53.67084
- ],
- [
- -3.20577,
- 53.42262
- ],
- [
- -3.27996,
- 53.35522
- ],
- [
- -3.28967,
- 53.36084
- ],
- [
- -3.33275,
- 53.36493
- ],
- [
- -3.37613,
- 53.35403
- ],
- [
- -4.0889,
- 53.34331
- ],
- [
- -4.09455,
- 53.4612
- ],
- [
- -4.69741,
- 53.44486
- ],
- [
- -4.68828,
- 53.33186
- ],
- [
- -4.72024,
- 53.28958
- ],
- [
- -4.68371,
- 53.24862
- ],
- [
- -4.67687,
- 53.15426
- ],
- [
- -4.84808,
- 53.14468
- ],
- [
- -4.81783,
- 52.74403
- ],
- [
- -4.25458,
- 52.75589
- ],
- [
- -4.22888,
- 52.25488
- ],
- [
- -4.26076,
- 52.25364
- ],
- [
- -4.27246,
- 52.24326
- ],
- [
- -4.81363,
- 52.23009
- ],
- [
- -4.80792,
- 52.11389
- ],
- [
- -5.38891,
- 52.09917
- ],
- [
- -5.37179,
- 51.91297
- ],
- [
- -5.42087,
- 51.91015
- ],
- [
- -5.41402,
- 51.84532
- ],
- [
- -5.36836,
- 51.84744
- ],
- [
- -5.34668,
- 51.55953
- ],
- [
- -4.77368,
- 51.57585
- ],
- [
- -4.76569,
- 51.48851
- ],
- [
- -4.19154,
- 51.49704
- ],
- [
- -4.18698,
- 51.43447
- ],
- [
- -3.61512,
- 51.44443
- ],
- [
- -3.61055,
- 51.37465
- ],
- [
- -3.14941,
- 51.37893
- ],
- [
- -3.14941,
- 51.29193
- ],
- [
- -4.30387,
- 51.27459
- ],
- [
- -4.28612,
- 51.05087
- ],
- [
- -4.85433,
- 51.03666
- ],
- [
- -4.83722,
- 50.72128
- ],
- [
- -5.26183,
- 50.70827
- ],
- [
- -5.23955,
- 50.35306
- ]
- ],
- [
- [
- -2.15027,
- 60.17132
- ],
- [
- -2.00302,
- 60.16961
- ],
- [
- -2.00131,
- 60.0997
- ],
- [
- -2.14855,
- 60.10112
- ],
- [
- -2.15027,
- 60.17132
- ]
- ],
- [
- [
- -6.2086,
- 59.11635
- ],
- [
- -6.12299,
- 59.11664
- ],
- [
- -6.12185,
- 59.0715
- ],
- [
- -6.20974,
- 59.0715
- ],
- [
- -6.2086,
- 59.11635
- ]
- ],
- [
- [
- -4.41596,
- 59.0889
- ],
- [
- -4.4212,
- 59.07708
- ],
- [
- -4.39719,
- 59.07791
- ],
- [
- -4.39134,
- 59.08973
- ],
- [
- -4.41596,
- 59.0889
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1962",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-7th_Series",
- "max_zoom": 16,
- "min_zoom": 5,
- "name": "NLS - OS 1-inch 7th Series 1955-61",
- "start_date": "1955",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata2/os/seventh/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.71572,
- 54.67966
- ],
- [
- -4.68507,
- 54.68003
- ],
- [
- -4.68358,
- 54.66232
- ],
- [
- -4.71488,
- 54.66158
- ],
- [
- -4.71572,
- 54.67966
- ]
- ],
- [
- [
- -3.70857,
- 58.33712
- ],
- [
- -3.54059,
- 58.33807
- ],
- [
- -3.53151,
- 58.1608
- ],
- [
- -3.36081,
- 58.16224
- ],
- [
- -3.36535,
- 58.25217
- ],
- [
- -3.16105,
- 58.25361
- ],
- [
- -3.16105,
- 58.32615
- ],
- [
- -3.02757,
- 58.3271
- ],
- [
- -3.03665,
- 58.6139
- ],
- [
- -3.00215,
- 58.61437
- ],
- [
- -3.00305,
- 58.70363
- ],
- [
- -3.41801,
- 58.70033
- ],
- [
- -3.4171,
- 58.62903
- ],
- [
- -3.72401,
- 58.62667
- ],
- [
- -3.7231,
- 58.60681
- ],
- [
- -4.23613,
- 58.59924
- ],
- [
- -4.2334,
- 58.50923
- ],
- [
- -3.88836,
- 58.51445
- ],
- [
- -3.88291,
- 58.42613
- ],
- [
- -3.71584,
- 58.42708
- ],
- [
- -3.70857,
- 58.33712
- ]
- ],
- [
- [
- -6.46676,
- 49.99436
- ],
- [
- -6.18891,
- 50.00487
- ],
- [
- -6.17892,
- 49.89678
- ],
- [
- -6.31694,
- 49.89152
- ],
- [
- -6.3124,
- 49.8201
- ],
- [
- -6.45042,
- 49.816
- ],
- [
- -6.46676,
- 49.99436
- ]
- ],
- [
- [
- -5.64533,
- 50.20298
- ],
- [
- -5.78013,
- 50.20141
- ],
- [
- -5.76379,
- 50.01973
- ],
- [
- -5.34792,
- 50.02906
- ],
- [
- -5.33884,
- 49.94149
- ],
- [
- -5.02467,
- 49.94733
- ],
- [
- -5.03557,
- 50.03839
- ],
- [
- -5.00106,
- 50.04539
- ],
- [
- -4.99743,
- 50.13045
- ],
- [
- -4.85578,
- 50.13394
- ],
- [
- -4.86123,
- 50.20606
- ],
- [
- -4.65461,
- 50.21402
- ],
- [
- -4.65589,
- 50.30186
- ],
- [
- -4.51849,
- 50.30268
- ],
- [
- -4.51464,
- 50.32564
- ],
- [
- -4.24883,
- 50.32646
- ],
- [
- -4.24883,
- 50.31006
- ],
- [
- -4.10886,
- 50.31416
- ],
- [
- -4.10629,
- 50.24113
- ],
- [
- -3.96481,
- 50.2432
- ],
- [
- -3.96408,
- 50.22542
- ],
- [
- -3.85223,
- 50.22736
- ],
- [
- -3.85038,
- 50.15526
- ],
- [
- -3.69218,
- 50.15725
- ],
- [
- -3.54146,
- 50.16022
- ],
- [
- -3.54658,
- 50.32268
- ],
- [
- -3.4068,
- 50.3241
- ],
- [
- -3.41658,
- 50.58927
- ],
- [
- -3.27467,
- 50.59627
- ],
- [
- -3.27492,
- 50.61063
- ],
- [
- -2.99717,
- 50.61397
- ],
- [
- -2.9896,
- 50.68854
- ],
- [
- -2.71203,
- 50.69056
- ],
- [
- -2.71091,
- 50.6196
- ],
- [
- -2.56955,
- 50.61575
- ],
- [
- -2.5651,
- 50.51341
- ],
- [
- -2.40145,
- 50.51338
- ],
- [
- -2.39406,
- 50.61603
- ],
- [
- -2.28941,
- 50.61474
- ],
- [
- -2.28762,
- 50.60085
- ],
- [
- -2.14779,
- 50.60485
- ],
- [
- -2.1451,
- 50.53254
- ],
- [
- -1.93351,
- 50.53475
- ],
- [
- -1.93621,
- 50.61704
- ],
- [
- -1.8573,
- 50.62281
- ],
- [
- -1.85549,
- 50.70914
- ],
- [
- -1.60669,
- 50.70914
- ],
- [
- -1.60851,
- 50.62396
- ],
- [
- -1.44507,
- 50.62281
- ],
- [
- -1.44325,
- 50.5317
- ],
- [
- -1.15451,
- 50.5294
- ],
- [
- -1.14724,
- 50.61705
- ],
- [
- -1.01104,
- 50.62051
- ],
- [
- -1.01104,
- 50.70569
- ],
- [
- -0.70413,
- 50.70454
- ],
- [
- -0.7005,
- 50.77694
- ],
- [
- -0.58609,
- 50.77235
- ],
- [
- -0.58791,
- 50.79072
- ],
- [
- -0.01496,
- 50.77981
- ],
- [
- -0.01859,
- 50.76258
- ],
- [
- 0.09673,
- 50.76201
- ],
- [
- 0.09219,
- 50.69131
- ],
- [
- 0.30466,
- 50.68901
- ],
- [
- 0.31011,
- 50.77579
- ],
- [
- 0.55118,
- 50.77263
- ],
- [
- 0.553,
- 50.84321
- ],
- [
- 0.69556,
- 50.84034
- ],
- [
- 0.69646,
- 50.85926
- ],
- [
- 0.98521,
- 50.85238
- ],
- [
- 0.99066,
- 50.94172
- ],
- [
- 1.01608,
- 50.94115
- ],
- [
- 1.02153,
- 51.03032
- ],
- [
- 1.28122,
- 51.02404
- ],
- [
- 1.28485,
- 51.0948
- ],
- [
- 1.42778,
- 51.0948
- ],
- [
- 1.43868,
- 51.28829
- ],
- [
- 1.47137,
- 51.28715
- ],
- [
- 1.48045,
- 51.39945
- ],
- [
- 1.15902,
- 51.40738
- ],
- [
- 1.15902,
- 51.38699
- ],
- [
- 1.01918,
- 51.39039
- ],
- [
- 1.02281,
- 51.47982
- ],
- [
- 0.87935,
- 51.48435
- ],
- [
- 0.88298,
- 51.55667
- ],
- [
- 1.02645,
- 51.55441
- ],
- [
- 1.03734,
- 51.74933
- ],
- [
- 1.26071,
- 51.74821
- ],
- [
- 1.26616,
- 51.82796
- ],
- [
- 1.33517,
- 51.83358
- ],
- [
- 1.34788,
- 51.9199
- ],
- [
- 1.48408,
- 51.9199
- ],
- [
- 1.49861,
- 52.00383
- ],
- [
- 1.64389,
- 52.00271
- ],
- [
- 1.66568,
- 52.27022
- ],
- [
- 1.73106,
- 52.27022
- ],
- [
- 1.75285,
- 52.44656
- ],
- [
- 1.82549,
- 52.44767
- ],
- [
- 1.83457,
- 52.62441
- ],
- [
- 1.76903,
- 52.62914
- ],
- [
- 1.77417,
- 52.7179
- ],
- [
- 1.69969,
- 52.72179
- ],
- [
- 1.70611,
- 52.81037
- ],
- [
- 1.55972,
- 52.81658
- ],
- [
- 1.56486,
- 52.90341
- ],
- [
- 1.41847,
- 52.91038
- ],
- [
- 1.42232,
- 52.92819
- ],
- [
- 1.34399,
- 52.92896
- ],
- [
- 1.34913,
- 53.00012
- ],
- [
- 0.45158,
- 53.02259
- ],
- [
- 0.44976,
- 52.93511
- ],
- [
- 0.37894,
- 52.93511
- ],
- [
- 0.37167,
- 52.84636
- ],
- [
- 0.22276,
- 52.84966
- ],
- [
- 0.23366,
- 52.93292
- ],
- [
- 0.3063,
- 52.93511
- ],
- [
- 0.30811,
- 53.02259
- ],
- [
- 0.38075,
- 53.02368
- ],
- [
- 0.39937,
- 53.29337
- ],
- [
- 0.32489,
- 53.29875
- ],
- [
- 0.32746,
- 53.38538
- ],
- [
- 0.25041,
- 53.38691
- ],
- [
- 0.25812,
- 53.47489
- ],
- [
- 0.18621,
- 53.47795
- ],
- [
- 0.19134,
- 53.65488
- ],
- [
- 0.15025,
- 53.65944
- ],
- [
- 0.15282,
- 53.7666
- ],
- [
- 0.0013,
- 53.77343
- ],
- [
- 0.00258,
- 53.84243
- ],
- [
- -0.02824,
- 53.84168
- ],
- [
- -0.02266,
- 53.93115
- ],
- [
- -0.1407,
- 53.93222
- ],
- [
- -0.14161,
- 54.02193
- ],
- [
- -0.17066,
- 54.02353
- ],
- [
- -0.16794,
- 54.09495
- ],
- [
- -0.01267,
- 54.09122
- ],
- [
- -0.00995,
- 54.18112
- ],
- [
- -0.16158,
- 54.18378
- ],
- [
- -0.16067,
- 54.2029
- ],
- [
- -0.24058,
- 54.20343
- ],
- [
- -0.23785,
- 54.29362
- ],
- [
- -0.38949,
- 54.29415
- ],
- [
- -0.38575,
- 54.38373
- ],
- [
- -0.46164,
- 54.38564
- ],
- [
- -0.45711,
- 54.49391
- ],
- [
- -0.61057,
- 54.49654
- ],
- [
- -0.60966,
- 54.56767
- ],
- [
- -0.76674,
- 54.56978
- ],
- [
- -0.76402,
- 54.58872
- ],
- [
- -0.91929,
- 54.59083
- ],
- [
- -0.91481,
- 54.66083
- ],
- [
- -1.14852,
- 54.66343
- ],
- [
- -1.14724,
- 54.75283
- ],
- [
- -1.22685,
- 54.7532
- ],
- [
- -1.22654,
- 54.84299
- ],
- [
- -1.29918,
- 54.84351
- ],
- [
- -1.29918,
- 54.93334
- ],
- [
- -1.34549,
- 54.93543
- ],
- [
- -1.34367,
- 55.02349
- ],
- [
- -1.37727,
- 55.02557
- ],
- [
- -1.37545,
- 55.13109
- ],
- [
- -1.49974,
- 55.13157
- ],
- [
- -1.49693,
- 55.29283
- ],
- [
- -1.52967,
- 55.29429
- ],
- [
- -1.52582,
- 55.65238
- ],
- [
- -1.76595,
- 55.65455
- ],
- [
- -1.7621,
- 55.74356
- ],
- [
- -1.96884,
- 55.74356
- ],
- [
- -1.9698,
- 55.83345
- ],
- [
- -2.00191,
- 55.83363
- ],
- [
- -2.00158,
- 55.92355
- ],
- [
- -2.16049,
- 55.92406
- ],
- [
- -2.16139,
- 55.94135
- ],
- [
- -2.32029,
- 55.94085
- ],
- [
- -2.3212,
- 56.01451
- ],
- [
- -2.56273,
- 56.01248
- ],
- [
- -2.56455,
- 56.10222
- ],
- [
- -2.96589,
- 56.09918
- ],
- [
- -2.96679,
- 56.17103
- ],
- [
- -2.48283,
- 56.17558
- ],
- [
- -2.48828,
- 56.28561
- ],
- [
- -2.56455,
- 56.28359
- ],
- [
- -2.56818,
- 56.37421
- ],
- [
- -2.72617,
- 56.3732
- ],
- [
- -2.73162,
- 56.44253
- ],
- [
- -2.61903,
- 56.44253
- ],
- [
- -2.6154,
- 56.53177
- ],
- [
- -2.45377,
- 56.53477
- ],
- [
- -2.45347,
- 56.64202
- ],
- [
- -2.40625,
- 56.64402
- ],
- [
- -2.39536,
- 56.7298
- ],
- [
- -2.29366,
- 56.73378
- ],
- [
- -2.29729,
- 56.80742
- ],
- [
- -2.16291,
- 56.8114
- ],
- [
- -2.15927,
- 56.99584
- ],
- [
- -1.9922,
- 57.00178
- ],
- [
- -2.00673,
- 57.27375
- ],
- [
- -1.91956,
- 57.27571
- ],
- [
- -1.93046,
- 57.34829
- ],
- [
- -1.8106,
- 57.34437
- ],
- [
- -1.7997,
- 57.44027
- ],
- [
- -1.66169,
- 57.42854
- ],
- [
- -1.66895,
- 57.53983
- ],
- [
- -1.74522,
- 57.53983
- ],
- [
- -1.75249,
- 57.63133
- ],
- [
- -1.82876,
- 57.63327
- ],
- [
- -1.82876,
- 57.71873
- ],
- [
- -3.17685,
- 57.71712
- ],
- [
- -3.17942,
- 57.73426
- ],
- [
- -3.51341,
- 57.72921
- ],
- [
- -3.51295,
- 57.71127
- ],
- [
- -3.76356,
- 57.70763
- ],
- [
- -3.75985,
- 57.63571
- ],
- [
- -3.84204,
- 57.63434
- ],
- [
- -3.84589,
- 57.61784
- ],
- [
- -3.97944,
- 57.61577
- ],
- [
- -3.97944,
- 57.68654
- ],
- [
- -3.81507,
- 57.68998
- ],
- [
- -3.81764,
- 57.79689
- ],
- [
- -3.68538,
- 57.79894
- ],
- [
- -3.68923,
- 57.88916
- ],
- [
- -3.93835,
- 57.88779
- ],
- [
- -3.9422,
- 57.97506
- ],
- [
- -3.69436,
- 57.97846
- ],
- [
- -3.69693,
- 58.06959
- ],
- [
- -4.03722,
- 58.06415
- ],
- [
- -4.03465,
- 57.97302
- ],
- [
- -4.20031,
- 57.97029
- ],
- [
- -4.18328,
- 57.70129
- ],
- [
- -4.51875,
- 57.69511
- ],
- [
- -4.51229,
- 57.60507
- ],
- [
- -4.67891,
- 57.60166
- ],
- [
- -4.66602,
- 57.42183
- ],
- [
- -3.66777,
- 57.43947
- ],
- [
- -3.67128,
- 57.52954
- ],
- [
- -3.3385,
- 57.53319
- ],
- [
- -3.33305,
- 57.44389
- ],
- [
- -2.83365,
- 57.44853
- ],
- [
- -2.82364,
- 56.99927
- ],
- [
- -2.33054,
- 57.00067
- ],
- [
- -2.3299,
- 56.91139
- ],
- [
- -2.65799,
- 56.90929
- ],
- [
- -2.65596,
- 56.81984
- ],
- [
- -2.82167,
- 56.81885
- ],
- [
- -2.8185,
- 56.72954
- ],
- [
- -3.14492,
- 56.72655
- ],
- [
- -3.14356,
- 56.63627
- ],
- [
- -3.46791,
- 56.63503
- ],
- [
- -3.47426,
- 56.72381
- ],
- [
- -3.80115,
- 56.71883
- ],
- [
- -3.78571,
- 56.4493
- ],
- [
- -3.94643,
- 56.44579
- ],
- [
- -3.94289,
- 56.26598
- ],
- [
- -4.42315,
- 56.25885
- ],
- [
- -4.41416,
- 56.08155
- ],
- [
- -4.89442,
- 56.0708
- ],
- [
- -4.87911,
- 55.8897
- ],
- [
- -5.19942,
- 55.88214
- ],
- [
- -5.18529,
- 55.70238
- ],
- [
- -5.02734,
- 55.70672
- ],
- [
- -5.02221,
- 55.6879
- ],
- [
- -4.89765,
- 55.6908
- ],
- [
- -4.88802,
- 55.60028
- ],
- [
- -4.73392,
- 55.60463
- ],
- [
- -4.7275,
- 55.53421
- ],
- [
- -4.77373,
- 55.53348
- ],
- [
- -4.7686,
- 55.44472
- ],
- [
- -4.84949,
- 55.44181
- ],
- [
- -4.84051,
- 55.35065
- ],
- [
- -4.87004,
- 55.35138
- ],
- [
- -4.8649,
- 55.26295
- ],
- [
- -4.99203,
- 55.25929
- ],
- [
- -4.99075,
- 55.16918
- ],
- [
- -5.06009,
- 55.16551
- ],
- [
- -5.05752,
- 55.07519
- ],
- [
- -5.21418,
- 55.07225
- ],
- [
- -5.19918,
- 54.80203
- ],
- [
- -5.04663,
- 54.80622
- ],
- [
- -5.05026,
- 54.7245
- ],
- [
- -4.97036,
- 54.7203
- ],
- [
- -4.97762,
- 54.62159
- ],
- [
- -4.79602,
- 54.63421
- ],
- [
- -4.79602,
- 54.73079
- ],
- [
- -4.89772,
- 54.7266
- ],
- [
- -4.90861,
- 54.81459
- ],
- [
- -4.80692,
- 54.81669
- ],
- [
- -4.81055,
- 54.79156
- ],
- [
- -4.69433,
- 54.79785
- ],
- [
- -4.67617,
- 54.7245
- ],
- [
- -4.57447,
- 54.7245
- ],
- [
- -4.55994,
- 54.64261
- ],
- [
- -4.30933,
- 54.63841
- ],
- [
- -4.33333,
- 54.82299
- ],
- [
- -4.2627,
- 54.82743
- ],
- [
- -4.255,
- 54.73486
- ],
- [
- -3.83381,
- 54.74005
- ],
- [
- -3.83637,
- 54.81411
- ],
- [
- -3.71181,
- 54.81337
- ],
- [
- -3.71438,
- 54.83187
- ],
- [
- -3.53461,
- 54.83556
- ],
- [
- -3.5271,
- 54.90662
- ],
- [
- -3.48088,
- 54.90847
- ],
- [
- -3.47767,
- 54.74573
- ],
- [
- -3.58746,
- 54.74462
- ],
- [
- -3.5836,
- 54.65462
- ],
- [
- -3.71073,
- 54.65313
- ],
- [
- -3.69918,
- 54.45504
- ],
- [
- -3.57462,
- 54.45728
- ],
- [
- -3.5759,
- 54.3863
- ],
- [
- -3.53994,
- 54.38556
- ],
- [
- -3.53866,
- 54.29722
- ],
- [
- -3.46033,
- 54.29573
- ],
- [
- -3.45905,
- 54.20795
- ],
- [
- -3.38071,
- 54.2102
- ],
- [
- -3.382,
- 54.11698
- ],
- [
- -3.30288,
- 54.11607
- ],
- [
- -3.30015,
- 54.02762
- ],
- [
- -3.1013,
- 54.02922
- ],
- [
- -3.0936,
- 53.60622
- ],
- [
- -3.2066,
- 53.60164
- ],
- [
- -3.20917,
- 53.49178
- ],
- [
- -3.24512,
- 53.48872
- ],
- [
- -3.23485,
- 53.40459
- ],
- [
- -3.52763,
- 53.4
- ],
- [
- -3.5344,
- 53.32848
- ],
- [
- -3.64881,
- 53.32523
- ],
- [
- -3.65273,
- 53.30577
- ],
- [
- -3.72719,
- 53.30469
- ],
- [
- -3.7315,
- 53.39453
- ],
- [
- -3.91083,
- 53.39128
- ],
- [
- -3.9072,
- 53.30238
- ],
- [
- -3.95215,
- 53.30157
- ],
- [
- -3.95667,
- 53.39122
- ],
- [
- -4.1082,
- 53.38892
- ],
- [
- -4.1082,
- 53.4073
- ],
- [
- -4.26229,
- 53.40653
- ],
- [
- -4.26358,
- 53.47537
- ],
- [
- -4.63854,
- 53.46773
- ],
- [
- -4.63468,
- 53.38126
- ],
- [
- -4.70916,
- 53.37743
- ],
- [
- -4.70017,
- 53.1955
- ],
- [
- -4.54993,
- 53.19627
- ],
- [
- -4.54351,
- 53.10925
- ],
- [
- -4.39199,
- 53.11002
- ],
- [
- -4.38557,
- 53.0236
- ],
- [
- -4.61157,
- 53.02051
- ],
- [
- -4.60387,
- 52.92849
- ],
- [
- -4.75668,
- 52.92617
- ],
- [
- -4.74769,
- 52.83706
- ],
- [
- -4.82088,
- 52.83318
- ],
- [
- -4.82088,
- 52.74465
- ],
- [
- -4.37016,
- 52.75397
- ],
- [
- -4.37658,
- 52.84016
- ],
- [
- -4.23147,
- 52.84559
- ],
- [
- -4.22377,
- 52.75864
- ],
- [
- -4.10563,
- 52.75708
- ],
- [
- -4.10152,
- 52.67149
- ],
- [
- -4.14874,
- 52.67039
- ],
- [
- -4.13058,
- 52.40086
- ],
- [
- -4.19958,
- 52.39864
- ],
- [
- -4.20503,
- 52.31102
- ],
- [
- -4.34668,
- 52.30325
- ],
- [
- -4.3485,
- 52.23657
- ],
- [
- -4.49015,
- 52.23323
- ],
- [
- -4.48833,
- 52.20987
- ],
- [
- -4.65722,
- 52.20987
- ],
- [
- -4.65903,
- 52.13859
- ],
- [
- -4.77889,
- 52.13525
- ],
- [
- -4.78071,
- 52.1163
- ],
- [
- -4.92599,
- 52.11407
- ],
- [
- -4.91872,
- 52.03929
- ],
- [
- -5.23653,
- 52.03147
- ],
- [
- -5.23471,
- 51.94423
- ],
- [
- -5.3473,
- 51.94088
- ],
- [
- -5.3473,
- 51.9196
- ],
- [
- -5.49258,
- 51.91624
- ],
- [
- -5.48532,
- 51.82654
- ],
- [
- -5.19839,
- 51.83215
- ],
- [
- -5.18931,
- 51.76252
- ],
- [
- -5.33582,
- 51.75895
- ],
- [
- -5.32812,
- 51.66865
- ],
- [
- -5.18366,
- 51.67303
- ],
- [
- -5.18366,
- 51.65391
- ],
- [
- -5.06745,
- 51.6579
- ],
- [
- -5.06038,
- 51.56779
- ],
- [
- -4.59746,
- 51.58096
- ],
- [
- -4.60388,
- 51.67263
- ],
- [
- -4.34577,
- 51.67263
- ],
- [
- -4.3355,
- 51.4963
- ],
- [
- -3.95283,
- 51.51068
- ],
- [
- -3.94256,
- 51.59053
- ],
- [
- -3.88092,
- 51.59532
- ],
- [
- -3.87065,
- 51.50749
- ],
- [
- -3.76792,
- 51.4979
- ],
- [
- -3.75508,
- 51.42429
- ],
- [
- -3.58558,
- 51.41468
- ],
- [
- -3.57787,
- 51.33292
- ],
- [
- -3.07964,
- 51.33292
- ],
- [
- -3.07707,
- 51.2494
- ],
- [
- -3.72169,
- 51.23815
- ],
- [
- -3.72169,
- 51.25583
- ],
- [
- -3.87065,
- 51.25583
- ],
- [
- -3.86808,
- 51.23654
- ],
- [
- -4.29441,
- 51.22528
- ],
- [
- -4.28927,
- 51.04964
- ],
- [
- -4.56921,
- 51.04318
- ],
- [
- -4.56241,
- 50.94974
- ],
- [
- -4.59056,
- 50.95203
- ],
- [
- -4.58965,
- 50.86271
- ],
- [
- -4.6296,
- 50.85927
- ],
- [
- -4.62264,
- 50.76915
- ],
- [
- -4.69528,
- 50.768
- ],
- [
- -4.69347,
- 50.69674
- ],
- [
- -4.83421,
- 50.69386
- ],
- [
- -4.82967,
- 50.60462
- ],
- [
- -4.96768,
- 50.60001
- ],
- [
- -4.96859,
- 50.58214
- ],
- [
- -5.10842,
- 50.57868
- ],
- [
- -5.10298,
- 50.48923
- ],
- [
- -5.13112,
- 50.48807
- ],
- [
- -5.12749,
- 50.41638
- ],
- [
- -5.26642,
- 50.41175
- ],
- [
- -5.26097,
- 50.30342
- ],
- [
- -5.51249,
- 50.29762
- ],
- [
- -5.50613,
- 50.22564
- ],
- [
- -5.64687,
- 50.221
- ],
- [
- -5.64533,
- 50.20298
- ]
- ],
- [
- [
- -5.13366,
- 55.26302
- ],
- [
- -5.1022,
- 55.26394
- ],
- [
- -5.09995,
- 55.24582
- ],
- [
- -5.13222,
- 55.24463
- ],
- [
- -5.13366,
- 55.26302
- ]
- ],
- [
- [
- -5.64319,
- 55.50957
- ],
- [
- -5.4861,
- 55.51266
- ],
- [
- -5.47157,
- 55.33488
- ],
- [
- -5.62775,
- 55.33023
- ],
- [
- -5.64319,
- 55.50957
- ]
- ],
- [
- [
- -4.72135,
- 51.21802
- ],
- [
- -4.58042,
- 51.22124
- ],
- [
- -4.57464,
- 51.13067
- ],
- [
- -4.7175,
- 51.12805
- ],
- [
- -4.72135,
- 51.21802
- ]
- ],
- [
- [
- -5.16088,
- 55.41536
- ],
- [
- -5.00454,
- 55.41901
- ],
- [
- -5.01848,
- 55.61535
- ],
- [
- -5.17556,
- 55.61381
- ],
- [
- -5.16088,
- 55.41536
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1962",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-1st_Series",
- "max_zoom": 16,
- "min_zoom": 5,
- "name": "NLS - OS 1:25k 1st Series 1937-61",
- "start_date": "1937",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata2/os/25000/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.21122,
- 54.80186
- ],
- [
- -5.06428,
- 54.80265
- ],
- [
- -5.05604,
- 54.63052
- ],
- [
- -4.31583,
- 54.62972
- ],
- [
- -4.31171,
- 54.74483
- ],
- [
- -3.85303,
- 54.74641
- ],
- [
- -3.85303,
- 54.80344
- ],
- [
- -3.55228,
- 54.80344
- ],
- [
- -3.55228,
- 54.83746
- ],
- [
- -3.46851,
- 54.84063
- ],
- [
- -3.46576,
- 54.89832
- ],
- [
- -3.38474,
- 54.89911
- ],
- [
- -3.38886,
- 54.95592
- ],
- [
- -3.09208,
- 54.95395
- ],
- [
- -3.03924,
- 54.99233
- ],
- [
- -3.02127,
- 55.04939
- ],
- [
- -2.95912,
- 55.04633
- ],
- [
- -2.92028,
- 55.06663
- ],
- [
- -2.78571,
- 55.06865
- ],
- [
- -2.78522,
- 55.09144
- ],
- [
- -2.73376,
- 55.09228
- ],
- [
- -2.73762,
- 55.1512
- ],
- [
- -2.76484,
- 55.15107
- ],
- [
- -2.70131,
- 55.17225
- ],
- [
- -2.66355,
- 55.21928
- ],
- [
- -2.64604,
- 55.21889
- ],
- [
- -2.62904,
- 55.22339
- ],
- [
- -2.63179,
- 55.22878
- ],
- [
- -2.62355,
- 55.24463
- ],
- [
- -2.61977,
- 55.24547
- ],
- [
- -2.6099,
- 55.24542
- ],
- [
- -2.60999,
- 55.24865
- ],
- [
- -2.64081,
- 55.259
- ],
- [
- -2.62479,
- 55.26156
- ],
- [
- -2.60452,
- 55.28231
- ],
- [
- -2.56932,
- 55.29613
- ],
- [
- -2.54795,
- 55.31216
- ],
- [
- -2.50911,
- 55.32349
- ],
- [
- -2.47804,
- 55.34945
- ],
- [
- -2.44211,
- 55.35331
- ],
- [
- -2.40521,
- 55.34393
- ],
- [
- -2.37268,
- 55.34475
- ],
- [
- -2.32218,
- 55.36877
- ],
- [
- -2.32412,
- 55.39993
- ],
- [
- -2.25761,
- 55.42502
- ],
- [
- -2.19855,
- 55.42735
- ],
- [
- -2.14843,
- 55.47175
- ],
- [
- -2.19443,
- 55.4842
- ],
- [
- -2.20405,
- 55.52931
- ],
- [
- -2.29606,
- 55.63797
- ],
- [
- -2.21778,
- 55.63797
- ],
- [
- -2.10593,
- 55.74525
- ],
- [
- -1.97169,
- 55.74622
- ],
- [
- -1.96975,
- 55.9191
- ],
- [
- -2.12017,
- 55.92071
- ],
- [
- -2.12429,
- 55.97761
- ],
- [
- -2.34402,
- 55.97838
- ],
- [
- -2.34402,
- 56.03903
- ],
- [
- -2.50469,
- 56.04134
- ],
- [
- -2.50057,
- 56.10036
- ],
- [
- -2.88235,
- 56.09576
- ],
- [
- -2.88235,
- 56.17229
- ],
- [
- -2.41268,
- 56.16923
- ],
- [
- -2.41817,
- 56.2334
- ],
- [
- -2.58572,
- 56.23035
- ],
- [
- -2.57198,
- 56.34164
- ],
- [
- -2.72579,
- 56.3462
- ],
- [
- -2.73128,
- 56.43438
- ],
- [
- -2.69283,
- 56.43438
- ],
- [
- -2.69283,
- 56.48598
- ],
- [
- -2.53078,
- 56.49356
- ],
- [
- -2.53078,
- 56.57081
- ],
- [
- -2.53029,
- 56.60479
- ],
- [
- -2.37324,
- 56.60445
- ],
- [
- -2.36844,
- 56.73988
- ],
- [
- -2.3293,
- 56.73988
- ],
- [
- -2.3293,
- 56.78881
- ],
- [
- -2.31453,
- 56.78918
- ],
- [
- -2.31488,
- 56.7967
- ],
- [
- -2.17137,
- 56.7967
- ],
- [
- -2.1704,
- 56.97106
- ],
- [
- -2.01017,
- 56.96947
- ],
- [
- -2.01017,
- 57.08468
- ],
- [
- -2.08177,
- 57.08535
- ],
- [
- -2.04881,
- 57.126
- ],
- [
- -2.04091,
- 57.12637
- ],
- [
- -2.03834,
- 57.24111
- ],
- [
- -1.87812,
- 57.24216
- ],
- [
- -1.87715,
- 57.29782
- ],
- [
- -1.98688,
- 57.29834
- ],
- [
- -1.90822,
- 57.35601
- ],
- [
- -1.8752,
- 57.35601
- ],
- [
- -1.87618,
- 57.37695
- ],
- [
- -1.81209,
- 57.41201
- ],
- [
- -1.71207,
- 57.41201
- ],
- [
- -1.70346,
- 57.64414
- ],
- [
- -1.8666,
- 57.64518
- ],
- [
- -1.86466,
- 57.70334
- ],
- [
- -3.12043,
- 57.70647
- ],
- [
- -3.1218,
- 57.75047
- ],
- [
- -3.44453,
- 57.75266
- ],
- [
- -3.44727,
- 57.71381
- ],
- [
- -3.51456,
- 57.70941
- ],
- [
- -3.51182,
- 57.694
- ],
- [
- -3.7645,
- 57.69179
- ],
- [
- -3.76725,
- 57.6345
- ],
- [
- -3.84238,
- 57.62883
- ],
- [
- -3.84383,
- 57.59658
- ],
- [
- -3.94143,
- 57.59164
- ],
- [
- -3.94046,
- 57.65378
- ],
- [
- -3.88947,
- 57.653
- ],
- [
- -3.88268,
- 57.76764
- ],
- [
- -3.72245,
- 57.76609
- ],
- [
- -3.71954,
- 57.88192
- ],
- [
- -3.91469,
- 57.88534
- ],
- [
- -3.91606,
- 57.95462
- ],
- [
- -3.74577,
- 57.9539
- ],
- [
- -3.74715,
- 58.06884
- ],
- [
- -3.58373,
- 58.06957
- ],
- [
- -3.58373,
- 58.11167
- ],
- [
- -3.45601,
- 58.11385
- ],
- [
- -3.45446,
- 58.2285
- ],
- [
- -3.43799,
- 58.22832
- ],
- [
- -3.42432,
- 58.24277
- ],
- [
- -3.41231,
- 58.24386
- ],
- [
- -3.37351,
- 58.26951
- ],
- [
- -3.30639,
- 58.2862
- ],
- [
- -3.12292,
- 58.28594
- ],
- [
- -3.1236,
- 58.34437
- ],
- [
- -2.95743,
- 58.34473
- ],
- [
- -2.95125,
- 58.6422
- ],
- [
- -2.88122,
- 58.64292
- ],
- [
- -2.8851,
- 58.81128
- ],
- [
- -2.71808,
- 58.8143
- ],
- [
- -2.71614,
- 58.87157
- ],
- [
- -2.55688,
- 58.8776
- ],
- [
- -2.55445,
- 58.99235
- ],
- [
- -2.55676,
- 59.04838
- ],
- [
- -2.39189,
- 59.0486
- ],
- [
- -2.3918,
- 59.1107
- ],
- [
- -2.47337,
- 59.1107
- ],
- [
- -2.55916,
- 59.1783
- ],
- [
- -2.56304,
- 59.22106
- ],
- [
- -2.39213,
- 59.22405
- ],
- [
- -2.39114,
- 59.27401
- ],
- [
- -2.36395,
- 59.2745
- ],
- [
- -2.36589,
- 59.28542
- ],
- [
- -2.39114,
- 59.28492
- ],
- [
- -2.39114,
- 59.33795
- ],
- [
- -2.22218,
- 59.3382
- ],
- [
- -2.22339,
- 59.39596
- ],
- [
- -2.37585,
- 59.39658
- ],
- [
- -2.38993,
- 59.40264
- ],
- [
- -2.40085,
- 59.39621
- ],
- [
- -2.56379,
- 59.39526
- ],
- [
- -2.56379,
- 59.33858
- ],
- [
- -2.73202,
- 59.33753
- ],
- [
- -2.73339,
- 59.39526
- ],
- [
- -3.07265,
- 59.39312
- ],
- [
- -3.07034,
- 59.33548
- ],
- [
- -3.07532,
- 59.33556
- ],
- [
- -3.07498,
- 59.32926
- ],
- [
- -3.06983,
- 59.32891
- ],
- [
- -3.0698,
- 59.21962
- ],
- [
- -3.23634,
- 59.21663
- ],
- [
- -3.23368,
- 59.16065
- ],
- [
- -3.40328,
- 59.15889
- ],
- [
- -3.39409,
- 58.92793
- ],
- [
- -3.56645,
- 58.92593
- ],
- [
- -3.56111,
- 58.86799
- ],
- [
- -3.39251,
- 58.86993
- ],
- [
- -3.38947,
- 58.86987
- ],
- [
- -3.38911,
- 58.86849
- ],
- [
- -3.39129,
- 58.86862
- ],
- [
- -3.38842,
- 58.75431
- ],
- [
- -3.22382,
- 58.75557
- ],
- [
- -3.21897,
- 58.69129
- ],
- [
- -3.46341,
- 58.69058
- ],
- [
- -3.45517,
- 58.63415
- ],
- [
- -3.78751,
- 58.63415
- ],
- [
- -3.78613,
- 58.57692
- ],
- [
- -3.90286,
- 58.57334
- ],
- [
- -3.90286,
- 58.64773
- ],
- [
- -4.06903,
- 58.64916
- ],
- [
- -4.06903,
- 58.59124
- ],
- [
- -4.73645,
- 58.59338
- ],
- [
- -4.73645,
- 58.65059
- ],
- [
- -5.07154,
- 58.65202
- ],
- [
- -5.06548,
- 58.53259
- ],
- [
- -5.2332,
- 58.53161
- ],
- [
- -5.22835,
- 58.47199
- ],
- [
- -5.24243,
- 58.47199
- ],
- [
- -5.2366,
- 58.40897
- ],
- [
- -5.22835,
- 58.40948
- ],
- [
- -5.22107,
- 58.30059
- ],
- [
- -5.56579,
- 58.29599
- ],
- [
- -5.55803,
- 58.23726
- ],
- [
- -5.41467,
- 58.24013
- ],
- [
- -5.41419,
- 58.22678
- ],
- [
- -5.38857,
- 58.22722
- ],
- [
- -5.38271,
- 58.11986
- ],
- [
- -5.51043,
- 58.11914
- ],
- [
- -5.5114,
- 58.00621
- ],
- [
- -5.67454,
- 58.00416
- ],
- [
- -5.67163,
- 57.94494
- ],
- [
- -5.67163,
- 57.88872
- ],
- [
- -5.83477,
- 57.88562
- ],
- [
- -5.82771,
- 57.5989
- ],
- [
- -6.03843,
- 57.59864
- ],
- [
- -6.03891,
- 57.64596
- ],
- [
- -6.19817,
- 57.6457
- ],
- [
- -6.20761,
- 57.76001
- ],
- [
- -6.53707,
- 57.7544
- ],
- [
- -6.53124,
- 57.64024
- ],
- [
- -6.70021,
- 57.63608
- ],
- [
- -6.68078,
- 57.52363
- ],
- [
- -6.85169,
- 57.51529
- ],
- [
- -6.83615,
- 57.33858
- ],
- [
- -6.67302,
- 57.34382
- ],
- [
- -6.67496,
- 57.28509
- ],
- [
- -6.50988,
- 57.28509
- ],
- [
- -6.49822,
- 57.17576
- ],
- [
- -6.35062,
- 57.18208
- ],
- [
- -6.3312,
- 57.1252
- ],
- [
- -6.17972,
- 57.12309
- ],
- [
- -6.17195,
- 57.06823
- ],
- [
- -6.45938,
- 57.05978
- ],
- [
- -6.45647,
- 57.10938
- ],
- [
- -6.66719,
- 57.10622
- ],
- [
- -6.67302,
- 57.00271
- ],
- [
- -6.50211,
- 57.00482
- ],
- [
- -6.48361,
- 56.89175
- ],
- [
- -6.32661,
- 56.88941
- ],
- [
- -6.31566,
- 56.77993
- ],
- [
- -6.21467,
- 56.77567
- ],
- [
- -6.21467,
- 56.7235
- ],
- [
- -6.68661,
- 56.72243
- ],
- [
- -6.6769,
- 56.61144
- ],
- [
- -6.84198,
- 56.60717
- ],
- [
- -6.84004,
- 56.54833
- ],
- [
- -7.15466,
- 56.54619
- ],
- [
- -7.14884,
- 56.48726
- ],
- [
- -6.99152,
- 56.49048
- ],
- [
- -6.98764,
- 56.43253
- ],
- [
- -6.68273,
- 56.43146
- ],
- [
- -6.6769,
- 56.54726
- ],
- [
- -6.5293,
- 56.55047
- ],
- [
- -6.52347,
- 56.4379
- ],
- [
- -6.36616,
- 56.43683
- ],
- [
- -6.36422,
- 56.37665
- ],
- [
- -6.52736,
- 56.37127
- ],
- [
- -6.51717,
- 56.24284
- ],
- [
- -6.48696,
- 56.24742
- ],
- [
- -6.48696,
- 56.18939
- ],
- [
- -6.30019,
- 56.19856
- ],
- [
- -6.30294,
- 56.2581
- ],
- [
- -5.90194,
- 56.25658
- ],
- [
- -5.89645,
- 56.09605
- ],
- [
- -6.02828,
- 56.08839
- ],
- [
- -6.03927,
- 56.15575
- ],
- [
- -6.38534,
- 56.15422
- ],
- [
- -6.36062,
- 55.96099
- ],
- [
- -6.2123,
- 55.96406
- ],
- [
- -6.20475,
- 55.92023
- ],
- [
- -6.51855,
- 55.91292
- ],
- [
- -6.50619,
- 55.75018
- ],
- [
- -6.67648,
- 55.7409
- ],
- [
- -6.66,
- 55.62632
- ],
- [
- -6.35513,
- 55.62322
- ],
- [
- -6.35787,
- 55.5689
- ],
- [
- -6.03927,
- 55.57201
- ],
- [
- -6.03103,
- 55.62477
- ],
- [
- -5.73989,
- 55.63097
- ],
- [
- -5.73715,
- 55.45693
- ],
- [
- -5.89645,
- 55.46004
- ],
- [
- -5.89645,
- 55.27899
- ],
- [
- -5.43502,
- 55.28212
- ],
- [
- -5.44051,
- 55.4507
- ],
- [
- -5.28671,
- 55.45693
- ],
- [
- -5.30868,
- 55.40706
- ],
- [
- -4.9736,
- 55.40082
- ],
- [
- -4.98458,
- 55.20382
- ],
- [
- -5.14938,
- 55.20382
- ],
- [
- -5.14114,
- 55.03734
- ],
- [
- -5.21529,
- 55.03419
- ],
- [
- -5.21122,
- 54.80186
- ]
- ],
- [
- [
- -2.16466,
- 60.16221
- ],
- [
- -1.99303,
- 60.16098
- ],
- [
- -1.99469,
- 60.10352
- ],
- [
- -2.16631,
- 60.10474
- ],
- [
- -2.16466,
- 60.16221
- ]
- ],
- [
- [
- -1.53607,
- 59.85708
- ],
- [
- -1.36536,
- 59.85598
- ],
- [
- -1.36685,
- 59.79756
- ],
- [
- -1.19063,
- 59.79642
- ],
- [
- -1.1862,
- 59.96954
- ],
- [
- -1.00787,
- 59.96839
- ],
- [
- -1.00412,
- 60.11415
- ],
- [
- -0.83608,
- 60.11307
- ],
- [
- -0.83457,
- 60.17168
- ],
- [
- -1.00743,
- 60.17278
- ],
- [
- -1.00522,
- 60.25839
- ],
- [
- -0.82997,
- 60.25728
- ],
- [
- -0.82698,
- 60.37266
- ],
- [
- -0.65075,
- 60.37154
- ],
- [
- -0.64772,
- 60.48823
- ],
- [
- -0.99849,
- 60.49044
- ],
- [
- -0.99703,
- 60.54655
- ],
- [
- -0.64253,
- 60.54432
- ],
- [
- -0.63949,
- 60.66068
- ],
- [
- -0.81481,
- 60.66178
- ],
- [
- -0.8133,
- 60.71961
- ],
- [
- -0.63833,
- 60.71851
- ],
- [
- -0.63547,
- 60.82754
- ],
- [
- -0.79757,
- 60.82855
- ],
- [
- -0.99414,
- 60.82978
- ],
- [
- -0.9955,
- 60.77827
- ],
- [
- -1.16703,
- 60.77934
- ],
- [
- -1.17004,
- 60.66462
- ],
- [
- -1.52226,
- 60.66683
- ],
- [
- -1.52379,
- 60.60844
- ],
- [
- -1.69757,
- 60.60954
- ],
- [
- -1.70213,
- 60.43452
- ],
- [
- -1.52606,
- 60.43341
- ],
- [
- -1.52752,
- 60.37707
- ],
- [
- -1.87511,
- 60.37927
- ],
- [
- -1.87814,
- 60.26246
- ],
- [
- -1.70196,
- 60.26134
- ],
- [
- -1.70491,
- 60.14705
- ],
- [
- -1.52866,
- 60.14593
- ],
- [
- -1.53607,
- 59.85708
- ]
- ],
- [
- [
- -0.98477,
- 60.89438
- ],
- [
- -0.98603,
- 60.83611
- ],
- [
- -0.80784,
- 60.83519
- ],
- [
- -0.80657,
- 60.89346
- ],
- [
- -0.98477,
- 60.89438
- ]
- ],
- [
- [
- -7.76969,
- 56.87882
- ],
- [
- -7.76145,
- 56.76083
- ],
- [
- -7.6009,
- 56.76419
- ],
- [
- -7.59725,
- 56.81933
- ],
- [
- -7.44799,
- 56.82039
- ],
- [
- -7.44893,
- 56.87941
- ],
- [
- -7.28414,
- 56.87941
- ],
- [
- -7.28139,
- 57.04712
- ],
- [
- -7.13033,
- 57.0516
- ],
- [
- -7.13307,
- 57.5118
- ],
- [
- -6.96828,
- 57.51475
- ],
- [
- -6.97652,
- 57.68547
- ],
- [
- -6.80623,
- 57.69134
- ],
- [
- -6.80898,
- 57.8042
- ],
- [
- -6.64968,
- 57.80713
- ],
- [
- -6.64418,
- 57.86123
- ],
- [
- -6.32009,
- 57.86269
- ],
- [
- -6.32009,
- 58.15516
- ],
- [
- -6.16078,
- 58.15226
- ],
- [
- -6.15529,
- 58.20874
- ],
- [
- -5.985,
- 58.21019
- ],
- [
- -5.9905,
- 58.26802
- ],
- [
- -6.1498,
- 58.26657
- ],
- [
- -6.14156,
- 58.55575
- ],
- [
- -6.31734,
- 58.55575
- ],
- [
- -6.3091,
- 58.49839
- ],
- [
- -6.48763,
- 58.49552
- ],
- [
- -6.48763,
- 58.44238
- ],
- [
- -6.66066,
- 58.4395
- ],
- [
- -6.64693,
- 58.38195
- ],
- [
- -6.81172,
- 58.38051
- ],
- [
- -6.81172,
- 58.32864
- ],
- [
- -6.97927,
- 58.32864
- ],
- [
- -6.97103,
- 58.26946
- ],
- [
- -7.14131,
- 58.26802
- ],
- [
- -7.14038,
- 58.03587
- ],
- [
- -7.30206,
- 58.0351
- ],
- [
- -7.30303,
- 57.97748
- ],
- [
- -7.13795,
- 57.97774
- ],
- [
- -7.14135,
- 57.92028
- ],
- [
- -7.1399,
- 57.86402
- ],
- [
- -7.30206,
- 57.86247
- ],
- [
- -7.29848,
- 57.74423
- ],
- [
- -7.45092,
- 57.7457
- ],
- [
- -7.45504,
- 57.68995
- ],
- [
- -7.61861,
- 57.6906
- ],
- [
- -7.61983,
- 57.7457
- ],
- [
- -7.79012,
- 57.74423
- ],
- [
- -7.78738,
- 57.68555
- ],
- [
- -7.62223,
- 57.68538
- ],
- [
- -7.61738,
- 57.57126
- ],
- [
- -7.78829,
- 57.571
- ],
- [
- -7.78926,
- 57.51211
- ],
- [
- -7.7038,
- 57.51159
- ],
- [
- -7.69992,
- 57.45469
- ],
- [
- -7.53678,
- 57.45521
- ],
- [
- -7.53484,
- 57.51263
- ],
- [
- -7.45812,
- 57.51315
- ],
- [
- -7.45521,
- 57.28242
- ],
- [
- -7.61155,
- 57.28452
- ],
- [
- -7.61446,
- 57.22727
- ],
- [
- -7.45133,
- 57.22569
- ],
- [
- -7.45133,
- 57.11039
- ],
- [
- -7.61641,
- 57.10881
- ],
- [
- -7.60378,
- 56.87924
- ],
- [
- -7.76969,
- 56.87882
- ]
- ],
- [
- [
- -1.71066,
- 59.56263
- ],
- [
- -1.54175,
- 59.56222
- ],
- [
- -1.54231,
- 59.50372
- ],
- [
- -1.71122,
- 59.50414
- ],
- [
- -1.71066,
- 59.56263
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1906",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-25inch-hist",
- "max_zoom": 18,
- "name": "NLS - OS 25-inch (Scotland), 1892-1905",
- "start_date": "1892",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata2/os/25_inch/scotland_1/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.21122,
- 54.80186
- ],
- [
- -5.06428,
- 54.80265
- ],
- [
- -5.05604,
- 54.63052
- ],
- [
- -4.31583,
- 54.62972
- ],
- [
- -4.31171,
- 54.74483
- ],
- [
- -3.85303,
- 54.74641
- ],
- [
- -3.85303,
- 54.80344
- ],
- [
- -3.55228,
- 54.80344
- ],
- [
- -3.55228,
- 54.83746
- ],
- [
- -3.46851,
- 54.84063
- ],
- [
- -3.46576,
- 54.89832
- ],
- [
- -3.38474,
- 54.89911
- ],
- [
- -3.38886,
- 54.95592
- ],
- [
- -3.09208,
- 54.95395
- ],
- [
- -3.03924,
- 54.99233
- ],
- [
- -3.02127,
- 55.04939
- ],
- [
- -2.95912,
- 55.04633
- ],
- [
- -2.92028,
- 55.06663
- ],
- [
- -2.78571,
- 55.06865
- ],
- [
- -2.78522,
- 55.09144
- ],
- [
- -2.73376,
- 55.09228
- ],
- [
- -2.73762,
- 55.1512
- ],
- [
- -2.76484,
- 55.15107
- ],
- [
- -2.70131,
- 55.17225
- ],
- [
- -2.66355,
- 55.21928
- ],
- [
- -2.64604,
- 55.21889
- ],
- [
- -2.62904,
- 55.22339
- ],
- [
- -2.63179,
- 55.22878
- ],
- [
- -2.62355,
- 55.24463
- ],
- [
- -2.61977,
- 55.24547
- ],
- [
- -2.6099,
- 55.24542
- ],
- [
- -2.60999,
- 55.24865
- ],
- [
- -2.64081,
- 55.259
- ],
- [
- -2.62479,
- 55.26156
- ],
- [
- -2.60452,
- 55.28231
- ],
- [
- -2.56932,
- 55.29613
- ],
- [
- -2.54795,
- 55.31216
- ],
- [
- -2.50911,
- 55.32349
- ],
- [
- -2.47804,
- 55.34945
- ],
- [
- -2.44211,
- 55.35331
- ],
- [
- -2.40521,
- 55.34393
- ],
- [
- -2.37268,
- 55.34475
- ],
- [
- -2.32218,
- 55.36877
- ],
- [
- -2.32412,
- 55.39993
- ],
- [
- -2.25761,
- 55.42502
- ],
- [
- -2.19855,
- 55.42735
- ],
- [
- -2.14843,
- 55.47175
- ],
- [
- -2.19443,
- 55.4842
- ],
- [
- -2.20405,
- 55.52931
- ],
- [
- -2.29606,
- 55.63797
- ],
- [
- -2.21778,
- 55.63797
- ],
- [
- -2.10593,
- 55.74525
- ],
- [
- -1.97169,
- 55.74622
- ],
- [
- -1.96975,
- 55.9191
- ],
- [
- -2.12017,
- 55.92071
- ],
- [
- -2.12429,
- 55.97761
- ],
- [
- -2.34402,
- 55.97838
- ],
- [
- -2.34402,
- 56.03903
- ],
- [
- -2.50469,
- 56.04134
- ],
- [
- -2.50057,
- 56.10036
- ],
- [
- -2.88235,
- 56.09576
- ],
- [
- -2.88235,
- 56.17229
- ],
- [
- -2.41268,
- 56.16923
- ],
- [
- -2.41817,
- 56.2334
- ],
- [
- -2.58572,
- 56.23035
- ],
- [
- -2.57198,
- 56.34164
- ],
- [
- -2.72579,
- 56.3462
- ],
- [
- -2.73128,
- 56.43438
- ],
- [
- -2.69283,
- 56.43438
- ],
- [
- -2.69283,
- 56.48598
- ],
- [
- -2.53078,
- 56.49356
- ],
- [
- -2.53078,
- 56.57081
- ],
- [
- -2.53029,
- 56.60479
- ],
- [
- -2.37324,
- 56.60445
- ],
- [
- -2.36844,
- 56.73988
- ],
- [
- -2.3293,
- 56.73988
- ],
- [
- -2.3293,
- 56.78881
- ],
- [
- -2.31453,
- 56.78918
- ],
- [
- -2.31488,
- 56.7967
- ],
- [
- -2.17137,
- 56.7967
- ],
- [
- -2.1704,
- 56.97106
- ],
- [
- -2.01017,
- 56.96947
- ],
- [
- -2.01017,
- 57.08468
- ],
- [
- -2.08177,
- 57.08535
- ],
- [
- -2.04881,
- 57.126
- ],
- [
- -2.04091,
- 57.12637
- ],
- [
- -2.03834,
- 57.24111
- ],
- [
- -1.87812,
- 57.24216
- ],
- [
- -1.87715,
- 57.29782
- ],
- [
- -1.98688,
- 57.29834
- ],
- [
- -1.90822,
- 57.35601
- ],
- [
- -1.8752,
- 57.35601
- ],
- [
- -1.87618,
- 57.37695
- ],
- [
- -1.81209,
- 57.41201
- ],
- [
- -1.71207,
- 57.41201
- ],
- [
- -1.70346,
- 57.64414
- ],
- [
- -1.8666,
- 57.64518
- ],
- [
- -1.86466,
- 57.70334
- ],
- [
- -3.12043,
- 57.70647
- ],
- [
- -3.1218,
- 57.75047
- ],
- [
- -3.44453,
- 57.75266
- ],
- [
- -3.44727,
- 57.71381
- ],
- [
- -3.51456,
- 57.70941
- ],
- [
- -3.51182,
- 57.694
- ],
- [
- -3.7645,
- 57.69179
- ],
- [
- -3.76725,
- 57.6345
- ],
- [
- -3.84238,
- 57.62883
- ],
- [
- -3.84383,
- 57.59658
- ],
- [
- -3.94143,
- 57.59164
- ],
- [
- -3.94046,
- 57.65378
- ],
- [
- -3.88947,
- 57.653
- ],
- [
- -3.88268,
- 57.76764
- ],
- [
- -3.72245,
- 57.76609
- ],
- [
- -3.71954,
- 57.88192
- ],
- [
- -3.91469,
- 57.88534
- ],
- [
- -3.91606,
- 57.95462
- ],
- [
- -3.74577,
- 57.9539
- ],
- [
- -3.74715,
- 58.06884
- ],
- [
- -3.58373,
- 58.06957
- ],
- [
- -3.58373,
- 58.11167
- ],
- [
- -3.45601,
- 58.11385
- ],
- [
- -3.45446,
- 58.2285
- ],
- [
- -3.43799,
- 58.22832
- ],
- [
- -3.42432,
- 58.24277
- ],
- [
- -3.41231,
- 58.24386
- ],
- [
- -3.37351,
- 58.26951
- ],
- [
- -3.30639,
- 58.2862
- ],
- [
- -3.12292,
- 58.28594
- ],
- [
- -3.1236,
- 58.34437
- ],
- [
- -2.95743,
- 58.34473
- ],
- [
- -2.95125,
- 58.6422
- ],
- [
- -2.88122,
- 58.64292
- ],
- [
- -2.8851,
- 58.81128
- ],
- [
- -2.71808,
- 58.8143
- ],
- [
- -2.71614,
- 58.87157
- ],
- [
- -2.55688,
- 58.8776
- ],
- [
- -2.55445,
- 58.99235
- ],
- [
- -2.55676,
- 59.04838
- ],
- [
- -2.39189,
- 59.0486
- ],
- [
- -2.3918,
- 59.1107
- ],
- [
- -2.47337,
- 59.1107
- ],
- [
- -2.55916,
- 59.1783
- ],
- [
- -2.56304,
- 59.22106
- ],
- [
- -2.39213,
- 59.22405
- ],
- [
- -2.39114,
- 59.27401
- ],
- [
- -2.36395,
- 59.2745
- ],
- [
- -2.36589,
- 59.28542
- ],
- [
- -2.39114,
- 59.28492
- ],
- [
- -2.39114,
- 59.33795
- ],
- [
- -2.22218,
- 59.3382
- ],
- [
- -2.22339,
- 59.39596
- ],
- [
- -2.37585,
- 59.39658
- ],
- [
- -2.38993,
- 59.40264
- ],
- [
- -2.40085,
- 59.39621
- ],
- [
- -2.56379,
- 59.39526
- ],
- [
- -2.56379,
- 59.33858
- ],
- [
- -2.73202,
- 59.33753
- ],
- [
- -2.73339,
- 59.39526
- ],
- [
- -3.07265,
- 59.39312
- ],
- [
- -3.07034,
- 59.33548
- ],
- [
- -3.07532,
- 59.33556
- ],
- [
- -3.07498,
- 59.32926
- ],
- [
- -3.06983,
- 59.32891
- ],
- [
- -3.0698,
- 59.21962
- ],
- [
- -3.23634,
- 59.21663
- ],
- [
- -3.23368,
- 59.16065
- ],
- [
- -3.40328,
- 59.15889
- ],
- [
- -3.39409,
- 58.92793
- ],
- [
- -3.56645,
- 58.92593
- ],
- [
- -3.56111,
- 58.86799
- ],
- [
- -3.39251,
- 58.86993
- ],
- [
- -3.38947,
- 58.86987
- ],
- [
- -3.38911,
- 58.86849
- ],
- [
- -3.39129,
- 58.86862
- ],
- [
- -3.38842,
- 58.75431
- ],
- [
- -3.22382,
- 58.75557
- ],
- [
- -3.21897,
- 58.69129
- ],
- [
- -3.46341,
- 58.69058
- ],
- [
- -3.45517,
- 58.63415
- ],
- [
- -3.78751,
- 58.63415
- ],
- [
- -3.78613,
- 58.57692
- ],
- [
- -3.90286,
- 58.57334
- ],
- [
- -3.90286,
- 58.64773
- ],
- [
- -4.06903,
- 58.64916
- ],
- [
- -4.06903,
- 58.59124
- ],
- [
- -4.73645,
- 58.59338
- ],
- [
- -4.73645,
- 58.65059
- ],
- [
- -5.07154,
- 58.65202
- ],
- [
- -5.06548,
- 58.53259
- ],
- [
- -5.2332,
- 58.53161
- ],
- [
- -5.22835,
- 58.47199
- ],
- [
- -5.24243,
- 58.47199
- ],
- [
- -5.2366,
- 58.40897
- ],
- [
- -5.22835,
- 58.40948
- ],
- [
- -5.22107,
- 58.30059
- ],
- [
- -5.56579,
- 58.29599
- ],
- [
- -5.55803,
- 58.23726
- ],
- [
- -5.41467,
- 58.24013
- ],
- [
- -5.41419,
- 58.22678
- ],
- [
- -5.38857,
- 58.22722
- ],
- [
- -5.38271,
- 58.11986
- ],
- [
- -5.51043,
- 58.11914
- ],
- [
- -5.5114,
- 58.00621
- ],
- [
- -5.67454,
- 58.00416
- ],
- [
- -5.67163,
- 57.94494
- ],
- [
- -5.67163,
- 57.88872
- ],
- [
- -5.83477,
- 57.88562
- ],
- [
- -5.82771,
- 57.5989
- ],
- [
- -6.03843,
- 57.59864
- ],
- [
- -6.03891,
- 57.64596
- ],
- [
- -6.19817,
- 57.6457
- ],
- [
- -6.20761,
- 57.76001
- ],
- [
- -6.53707,
- 57.7544
- ],
- [
- -6.53124,
- 57.64024
- ],
- [
- -6.70021,
- 57.63608
- ],
- [
- -6.68078,
- 57.52363
- ],
- [
- -6.85169,
- 57.51529
- ],
- [
- -6.83615,
- 57.33858
- ],
- [
- -6.67302,
- 57.34382
- ],
- [
- -6.67496,
- 57.28509
- ],
- [
- -6.50988,
- 57.28509
- ],
- [
- -6.49822,
- 57.17576
- ],
- [
- -6.35062,
- 57.18208
- ],
- [
- -6.3312,
- 57.1252
- ],
- [
- -6.17972,
- 57.12309
- ],
- [
- -6.17195,
- 57.06823
- ],
- [
- -6.45938,
- 57.05978
- ],
- [
- -6.45647,
- 57.10938
- ],
- [
- -6.66719,
- 57.10622
- ],
- [
- -6.67302,
- 57.00271
- ],
- [
- -6.50211,
- 57.00482
- ],
- [
- -6.48361,
- 56.89175
- ],
- [
- -6.32661,
- 56.88941
- ],
- [
- -6.31566,
- 56.77993
- ],
- [
- -6.21467,
- 56.77567
- ],
- [
- -6.21467,
- 56.7235
- ],
- [
- -6.68661,
- 56.72243
- ],
- [
- -6.6769,
- 56.61144
- ],
- [
- -6.84198,
- 56.60717
- ],
- [
- -6.84004,
- 56.54833
- ],
- [
- -7.15466,
- 56.54619
- ],
- [
- -7.14884,
- 56.48726
- ],
- [
- -6.99152,
- 56.49048
- ],
- [
- -6.98764,
- 56.43253
- ],
- [
- -6.68273,
- 56.43146
- ],
- [
- -6.6769,
- 56.54726
- ],
- [
- -6.5293,
- 56.55047
- ],
- [
- -6.52347,
- 56.4379
- ],
- [
- -6.36616,
- 56.43683
- ],
- [
- -6.36422,
- 56.37665
- ],
- [
- -6.52736,
- 56.37127
- ],
- [
- -6.51717,
- 56.24284
- ],
- [
- -6.48696,
- 56.24742
- ],
- [
- -6.48696,
- 56.18939
- ],
- [
- -6.30019,
- 56.19856
- ],
- [
- -6.30294,
- 56.2581
- ],
- [
- -5.90194,
- 56.25658
- ],
- [
- -5.89645,
- 56.09605
- ],
- [
- -6.02828,
- 56.08839
- ],
- [
- -6.03927,
- 56.15575
- ],
- [
- -6.38534,
- 56.15422
- ],
- [
- -6.36062,
- 55.96099
- ],
- [
- -6.2123,
- 55.96406
- ],
- [
- -6.20475,
- 55.92023
- ],
- [
- -6.51855,
- 55.91292
- ],
- [
- -6.50619,
- 55.75018
- ],
- [
- -6.67648,
- 55.7409
- ],
- [
- -6.66,
- 55.62632
- ],
- [
- -6.35513,
- 55.62322
- ],
- [
- -6.35787,
- 55.5689
- ],
- [
- -6.03927,
- 55.57201
- ],
- [
- -6.03103,
- 55.62477
- ],
- [
- -5.73989,
- 55.63097
- ],
- [
- -5.73715,
- 55.45693
- ],
- [
- -5.89645,
- 55.46004
- ],
- [
- -5.89645,
- 55.27899
- ],
- [
- -5.43502,
- 55.28212
- ],
- [
- -5.44051,
- 55.4507
- ],
- [
- -5.28671,
- 55.45693
- ],
- [
- -5.30868,
- 55.40706
- ],
- [
- -4.9736,
- 55.40082
- ],
- [
- -4.98458,
- 55.20382
- ],
- [
- -5.14938,
- 55.20382
- ],
- [
- -5.14114,
- 55.03734
- ],
- [
- -5.21529,
- 55.03419
- ],
- [
- -5.21122,
- 54.80186
- ]
- ],
- [
- [
- -2.16466,
- 60.16221
- ],
- [
- -1.99303,
- 60.16098
- ],
- [
- -1.99469,
- 60.10352
- ],
- [
- -2.16631,
- 60.10474
- ],
- [
- -2.16466,
- 60.16221
- ]
- ],
- [
- [
- -1.53607,
- 59.85708
- ],
- [
- -1.36536,
- 59.85598
- ],
- [
- -1.36685,
- 59.79756
- ],
- [
- -1.19063,
- 59.79642
- ],
- [
- -1.1862,
- 59.96954
- ],
- [
- -1.00787,
- 59.96839
- ],
- [
- -1.00412,
- 60.11415
- ],
- [
- -0.83608,
- 60.11307
- ],
- [
- -0.83457,
- 60.17168
- ],
- [
- -1.00743,
- 60.17278
- ],
- [
- -1.00522,
- 60.25839
- ],
- [
- -0.82997,
- 60.25728
- ],
- [
- -0.82698,
- 60.37266
- ],
- [
- -0.65075,
- 60.37154
- ],
- [
- -0.64772,
- 60.48823
- ],
- [
- -0.99849,
- 60.49044
- ],
- [
- -0.99703,
- 60.54655
- ],
- [
- -0.64253,
- 60.54432
- ],
- [
- -0.63949,
- 60.66068
- ],
- [
- -0.81481,
- 60.66178
- ],
- [
- -0.8133,
- 60.71961
- ],
- [
- -0.63833,
- 60.71851
- ],
- [
- -0.63547,
- 60.82754
- ],
- [
- -0.79757,
- 60.82855
- ],
- [
- -0.99414,
- 60.82978
- ],
- [
- -0.9955,
- 60.77827
- ],
- [
- -1.16703,
- 60.77934
- ],
- [
- -1.17004,
- 60.66462
- ],
- [
- -1.52226,
- 60.66683
- ],
- [
- -1.52379,
- 60.60844
- ],
- [
- -1.69757,
- 60.60954
- ],
- [
- -1.70213,
- 60.43452
- ],
- [
- -1.52606,
- 60.43341
- ],
- [
- -1.52752,
- 60.37707
- ],
- [
- -1.87511,
- 60.37927
- ],
- [
- -1.87814,
- 60.26246
- ],
- [
- -1.70196,
- 60.26134
- ],
- [
- -1.70491,
- 60.14705
- ],
- [
- -1.52866,
- 60.14593
- ],
- [
- -1.53607,
- 59.85708
- ]
- ],
- [
- [
- -0.98477,
- 60.89438
- ],
- [
- -0.98603,
- 60.83611
- ],
- [
- -0.80784,
- 60.83519
- ],
- [
- -0.80657,
- 60.89346
- ],
- [
- -0.98477,
- 60.89438
- ]
- ],
- [
- [
- -7.76969,
- 56.87882
- ],
- [
- -7.76145,
- 56.76083
- ],
- [
- -7.6009,
- 56.76419
- ],
- [
- -7.59725,
- 56.81933
- ],
- [
- -7.44799,
- 56.82039
- ],
- [
- -7.44893,
- 56.87941
- ],
- [
- -7.28414,
- 56.87941
- ],
- [
- -7.28139,
- 57.04712
- ],
- [
- -7.13033,
- 57.0516
- ],
- [
- -7.13307,
- 57.5118
- ],
- [
- -6.96828,
- 57.51475
- ],
- [
- -6.97652,
- 57.68547
- ],
- [
- -6.80623,
- 57.69134
- ],
- [
- -6.80898,
- 57.8042
- ],
- [
- -6.64968,
- 57.80713
- ],
- [
- -6.64418,
- 57.86123
- ],
- [
- -6.32009,
- 57.86269
- ],
- [
- -6.32009,
- 58.15516
- ],
- [
- -6.16078,
- 58.15226
- ],
- [
- -6.15529,
- 58.20874
- ],
- [
- -5.985,
- 58.21019
- ],
- [
- -5.9905,
- 58.26802
- ],
- [
- -6.1498,
- 58.26657
- ],
- [
- -6.14156,
- 58.55575
- ],
- [
- -6.31734,
- 58.55575
- ],
- [
- -6.3091,
- 58.49839
- ],
- [
- -6.48763,
- 58.49552
- ],
- [
- -6.48763,
- 58.44238
- ],
- [
- -6.66066,
- 58.4395
- ],
- [
- -6.64693,
- 58.38195
- ],
- [
- -6.81172,
- 58.38051
- ],
- [
- -6.81172,
- 58.32864
- ],
- [
- -6.97927,
- 58.32864
- ],
- [
- -6.97103,
- 58.26946
- ],
- [
- -7.14131,
- 58.26802
- ],
- [
- -7.14038,
- 58.03587
- ],
- [
- -7.30206,
- 58.0351
- ],
- [
- -7.30303,
- 57.97748
- ],
- [
- -7.13795,
- 57.97774
- ],
- [
- -7.14135,
- 57.92028
- ],
- [
- -7.1399,
- 57.86402
- ],
- [
- -7.30206,
- 57.86247
- ],
- [
- -7.29848,
- 57.74423
- ],
- [
- -7.45092,
- 57.7457
- ],
- [
- -7.45504,
- 57.68995
- ],
- [
- -7.61861,
- 57.6906
- ],
- [
- -7.61983,
- 57.7457
- ],
- [
- -7.79012,
- 57.74423
- ],
- [
- -7.78738,
- 57.68555
- ],
- [
- -7.62223,
- 57.68538
- ],
- [
- -7.61738,
- 57.57126
- ],
- [
- -7.78829,
- 57.571
- ],
- [
- -7.78926,
- 57.51211
- ],
- [
- -7.7038,
- 57.51159
- ],
- [
- -7.69992,
- 57.45469
- ],
- [
- -7.53678,
- 57.45521
- ],
- [
- -7.53484,
- 57.51263
- ],
- [
- -7.45812,
- 57.51315
- ],
- [
- -7.45521,
- 57.28242
- ],
- [
- -7.61155,
- 57.28452
- ],
- [
- -7.61446,
- 57.22727
- ],
- [
- -7.45133,
- 57.22569
- ],
- [
- -7.45133,
- 57.11039
- ],
- [
- -7.61641,
- 57.10881
- ],
- [
- -7.60378,
- 56.87924
- ],
- [
- -7.76969,
- 56.87882
- ]
- ],
- [
- [
- -1.71066,
- 59.56263
- ],
- [
- -1.54175,
- 59.56222
- ],
- [
- -1.54231,
- 59.50372
- ],
- [
- -1.71122,
- 59.50414
- ],
- [
- -1.71066,
- 59.56263
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "GB",
- "end_date": "1883",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS-OS-6inch-Scotland-hist",
- "max_zoom": 16,
- "min_zoom": 5,
- "name": "NLS - OS 6-inch Scotland 1842-82",
- "start_date": "1842",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata3/os/6inchfirst/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.14039,
- 57.11219
- ],
- [
- -2.14065,
- 57.17894
- ],
- [
- -2.04502,
- 57.17901
- ],
- [
- -2.04494,
- 57.11226
- ],
- [
- -2.14039,
- 57.11219
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Aberdeen 1866-1867",
- "url": "https://maps.nls.uk/townplans/aberdeen.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Aberdeen 1866-1867, courtesy of National Library of Scotland.",
- "end_date": "1868",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_aberdeen1866_1867",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Aberdeen 1866-1867 (NLS)",
- "start_date": "1866",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/aberdeen/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.99292,
- 55.86408
- ],
- [
- -3.99339,
- 55.87329
- ],
- [
- -3.96911,
- 55.87368
- ],
- [
- -3.96864,
- 55.86447
- ],
- [
- -3.99292,
- 55.86408
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Airdrie 1858",
- "url": "https://maps.nls.uk/townplans/airdrie.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Airdrie 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_airdrie1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Airdrie 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/airdrie/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.58974,
- 55.97537
- ],
- [
- -4.59104,
- 55.99493
- ],
- [
- -4.55985,
- 55.99558
- ],
- [
- -4.55856,
- 55.97602
- ],
- [
- -4.58974,
- 55.97537
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Alexandria 1859",
- "url": "https://maps.nls.uk/townplans/alexandria.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Alexandria 1859, courtesy of National Library of Scotland.",
- "end_date": "1860",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_alexandria1859",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Alexandria 1859 (NLS)",
- "start_date": "1859",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/alexandria/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.81166,
- 56.09864
- ],
- [
- -3.81274,
- 56.1217
- ],
- [
- -3.78046,
- 56.12217
- ],
- [
- -3.7794,
- 56.09911
- ],
- [
- -3.81166,
- 56.09864
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Alloa 1861-1862",
- "url": "https://maps.nls.uk/townplans/alloa.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Alloa 1861-1862, courtesy of National Library of Scotland.",
- "end_date": "1863",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_alloa1861_1862",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Alloa 1861-1862 (NLS)",
- "start_date": "1861",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/alloa/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.27921,
- 54.98252
- ],
- [
- -3.2796,
- 54.99466
- ],
- [
- -3.24866,
- 54.99498
- ],
- [
- -3.24829,
- 54.98284
- ],
- [
- -3.27921,
- 54.98252
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Annan 1859",
- "url": "https://maps.nls.uk/townplans/annan.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Annan 1859, courtesy of National Library of Scotland.",
- "end_date": "1860",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_annan1859",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Annan 1859 (NLS)",
- "start_date": "1859",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/annan/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.60716,
- 56.53995
- ],
- [
- -2.60765,
- 56.57022
- ],
- [
- -2.56499,
- 56.57043
- ],
- [
- -2.56454,
- 56.54015
- ],
- [
- -2.60716,
- 56.53995
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Arbroath 1858",
- "url": "https://maps.nls.uk/townplans/arbroath.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Arbroath 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_arbroath1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Arbroath 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/arbroath/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.66768,
- 55.43749
- ],
- [
- -4.6708,
- 55.48364
- ],
- [
- -4.6061,
- 55.48503
- ],
- [
- -4.60305,
- 55.43888
- ],
- [
- -4.66768,
- 55.43749
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Ayr 1855",
- "url": "https://maps.nls.uk/townplans/ayr.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Ayr 1855, courtesy of National Library of Scotland.",
- "end_date": "1856",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_ayr1855",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Ayr 1855 (NLS)",
- "start_date": "1855",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/ayr/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.02117,
- 55.75578
- ],
- [
- -2.02119,
- 55.77904
- ],
- [
- -1.98977,
- 55.77904
- ],
- [
- -1.98978,
- 55.75578
- ],
- [
- -2.02117,
- 55.75578
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Berwick-upon-Tweed 1852",
- "url": "https://maps.nls.uk/townplans/berwick.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Berwick-upon-Tweed 1852, courtesy of National Library of Scotland.",
- "end_date": "1853",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_berwick1852",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Berwick-upon-Tweed 1852 (NLS)",
- "start_date": "1852",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/berwick/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.6748,
- 56.71457
- ],
- [
- -2.67521,
- 56.7374
- ],
- [
- -2.6432,
- 56.73757
- ],
- [
- -2.64281,
- 56.71474
- ],
- [
- -2.6748,
- 56.71457
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Brechin 1862",
- "url": "https://maps.nls.uk/townplans/brechin.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Brechin 1862, courtesy of National Library of Scotland.",
- "end_date": "1863",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_brechin1862",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Brechin 1862 (NLS)",
- "start_date": "1862",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/brechin/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.2488,
- 56.0424
- ],
- [
- -3.24952,
- 56.06473
- ],
- [
- -3.21831,
- 56.06504
- ],
- [
- -3.2176,
- 56.04271
- ],
- [
- -3.2488,
- 56.0424
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Burntisland 1894",
- "url": "https://maps.nls.uk/townplans/burntisland.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Burntisland 1894, courtesy of National Library of Scotland.",
- "end_date": "1895",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_burntisland1894",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Burntisland 1894 (NLS)",
- "start_date": "1894",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/burntisland/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.62345,
- 55.40256
- ],
- [
- -5.62631,
- 55.43375
- ],
- [
- -5.58277,
- 55.43504
- ],
- [
- -5.57994,
- 55.40384
- ],
- [
- -5.62345,
- 55.40256
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Campbelton 1865",
- "url": "https://maps.nls.uk/townplans/campbelton.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Campbelton 1865, courtesy of National Library of Scotland.",
- "end_date": "1866",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_campbeltown1865",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Campbelton 1865 (NLS)",
- "start_date": "1865",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/campbeltown/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.05036,
- 55.84649
- ],
- [
- -4.05157,
- 55.86947
- ],
- [
- -4.01954,
- 55.87
- ],
- [
- -4.01835,
- 55.84702
- ],
- [
- -4.05036,
- 55.84649
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Coatbridge 1858",
- "url": "https://maps.nls.uk/townplans/coatbridge.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Coatbridge 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_coatbridge1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Coatbridge 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/coatbridge/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.04766,
- 56.28653
- ],
- [
- -3.04891,
- 56.33219
- ],
- [
- -2.98499,
- 56.33272
- ],
- [
- -2.98381,
- 56.28706
- ],
- [
- -3.04766,
- 56.28653
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Cupar 1854",
- "url": "https://maps.nls.uk/townplans/cupar_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Cupar 1854, courtesy of National Library of Scotland.",
- "end_date": "1855",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "OS-Town_Plans-Cupar-1854",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Cupar 1854 (NLS)",
- "start_date": "1854",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/cupar1854/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.03277,
- 56.30244
- ],
- [
- -3.03338,
- 56.3252
- ],
- [
- -3.00147,
- 56.32546
- ],
- [
- -3.00087,
- 56.3027
- ],
- [
- -3.03277,
- 56.30244
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Cupar 1893-1894",
- "url": "https://maps.nls.uk/townplans/cupar_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Cupar 1893-1894, courtesy of National Library of Scotland.",
- "end_date": "1895",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_cupar1893_1894",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Cupar 1893-1894 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/cupar1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.07862,
- 55.889
- ],
- [
- -3.07904,
- 55.9039
- ],
- [
- -3.05836,
- 55.90408
- ],
- [
- -3.05795,
- 55.88918
- ],
- [
- -3.07862,
- 55.889
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dalkeith 1852",
- "url": "https://maps.nls.uk/townplans/dalkeith_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dalkeith 1852, courtesy of National Library of Scotland.",
- "end_date": "1853",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dalkeith1852",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dalkeith 1852 (NLS)",
- "start_date": "1852",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dalkeith1852/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.086,
- 55.87936
- ],
- [
- -3.08659,
- 55.90026
- ],
- [
- -3.04365,
- 55.90063
- ],
- [
- -3.04309,
- 55.87973
- ],
- [
- -3.086,
- 55.87936
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dalkeith 1893",
- "url": "https://maps.nls.uk/townplans/dalkeith_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dalkeith 1893, courtesy of National Library of Scotland.",
- "end_date": "1894",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dalkeith1893",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dalkeith 1893 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dalkeith1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.5856,
- 55.92743
- ],
- [
- -4.58714,
- 55.95056
- ],
- [
- -4.55463,
- 55.95124
- ],
- [
- -4.55311,
- 55.9281
- ],
- [
- -4.5856,
- 55.92743
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dumbarton 1859",
- "url": "https://maps.nls.uk/townplans/dumbarton.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dumbarton 1859, courtesy of National Library of Scotland.",
- "end_date": "1860",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dumbarton1859",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dumbarton 1859 (NLS)",
- "start_date": "1859",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dumbarton/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.63928,
- 55.03716
- ],
- [
- -3.64116,
- 55.08319
- ],
- [
- -3.57823,
- 55.08402
- ],
- [
- -3.57642,
- 55.03799
- ],
- [
- -3.63928,
- 55.03716
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dumfries 1850",
- "url": "https://maps.nls.uk/townplans/dumfries_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dumfries 1850, courtesy of National Library of Scotland.",
- "end_date": "1851",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dumfries1850",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dumfries 1850 (NLS)",
- "start_date": "1850",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dumfries1850/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.63179,
- 55.0415
- ],
- [
- -3.63331,
- 55.07873
- ],
- [
- -3.58259,
- 55.0794
- ],
- [
- -3.58112,
- 55.04217
- ],
- [
- -3.63179,
- 55.0415
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dumfries 1893",
- "url": "https://maps.nls.uk/townplans/dumfries_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dumfries 1893, courtesy of National Library of Scotland.",
- "end_date": "1894",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dumfries1893",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dumfries 1893 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dumfries1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.02584,
- 56.44879
- ],
- [
- -3.02657,
- 56.47567
- ],
- [
- -2.9471,
- 56.4763
- ],
- [
- -2.94643,
- 56.44942
- ],
- [
- -3.02584,
- 56.44879
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dundee 1857-1858",
- "url": "https://maps.nls.uk/townplans/dundee_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dundee 1857-1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dundee1857_1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dundee 1857-1858 (NLS)",
- "start_date": "1857",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dundee1857/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.034,
- 56.4485
- ],
- [
- -3.03497,
- 56.48435
- ],
- [
- -2.92353,
- 56.48523
- ],
- [
- -2.92266,
- 56.44937
- ],
- [
- -3.034,
- 56.4485
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dundee 1870-1872",
- "url": "https://maps.nls.uk/townplans/dundee_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dundee 1870-1872, courtesy of National Library of Scotland.",
- "end_date": "1873",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dundee1870_1872",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dundee 1870-1872 (NLS)",
- "start_date": "1870",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dundee1870/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.49045,
- 56.0606
- ],
- [
- -3.49116,
- 56.07899
- ],
- [
- -3.44374,
- 56.07955
- ],
- [
- -3.44305,
- 56.06116
- ],
- [
- -3.49045,
- 56.0606
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dunfermline 1854",
- "url": "https://maps.nls.uk/townplans/dunfermline_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dunfermline 1854, courtesy of National Library of Scotland.",
- "end_date": "1855",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dunfermline1854",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dunfermline 1854 (NLS)",
- "start_date": "1854",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dunfermline1854/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.48284,
- 56.05198
- ],
- [
- -3.48399,
- 56.08199
- ],
- [
- -3.4421,
- 56.08249
- ],
- [
- -3.44098,
- 56.05248
- ],
- [
- -3.48284,
- 56.05198
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Dunfermline 1894",
- "url": "https://maps.nls.uk/townplans/dunfermline_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Dunfermline 1894, courtesy of National Library of Scotland.",
- "end_date": "1895",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_dunfermline1894",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Dunfermline 1894 (NLS)",
- "start_date": "1894",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/dunfermline1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.2361,
- 55.92137
- ],
- [
- -3.23836,
- 55.99217
- ],
- [
- -3.14197,
- 55.9931
- ],
- [
- -3.13989,
- 55.92229
- ],
- [
- -3.2361,
- 55.92137
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Edinburgh 1849-1851",
- "url": "https://maps.nls.uk/townplans/edinburgh1056_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Edinburgh 1849-1851, courtesy of National Library of Scotland.",
- "end_date": "1852",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_edinburgh1849_1851",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Edinburgh 1849-1851 (NLS)",
- "start_date": "1849",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/edinburgh1849/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.2474,
- 55.92117
- ],
- [
- -3.2499,
- 55.99851
- ],
- [
- -3.13061,
- 55.99966
- ],
- [
- -3.12836,
- 55.92231
- ],
- [
- -3.2474,
- 55.92117
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Edinburgh 1876-1877",
- "url": "https://maps.nls.uk/townplans/edinburgh1056_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Edinburgh 1876-1877, courtesy of National Library of Scotland.",
- "end_date": "1878",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_edinburgh1876_1877",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Edinburgh 1876-1877 (NLS)",
- "start_date": "1876",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/edinburgh1876/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.26111,
- 55.89555
- ],
- [
- -3.2645,
- 55.99979
- ],
- [
- -3.11971,
- 56.00119
- ],
- [
- -3.1167,
- 55.89695
- ],
- [
- -3.26111,
- 55.89555
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Edinburgh 1893-1894",
- "url": "https://maps.nls.uk/townplans/edinburgh500.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Edinburgh 1893-1894, courtesy of National Library of Scotland.",
- "end_date": "1895",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_edinburgh1893_1894",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Edinburgh 1893-1894 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/edinburgh1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.23605,
- 55.89151
- ],
- [
- -3.30465,
- 55.89572
- ],
- [
- -3.31495,
- 55.92718
- ],
- [
- -3.32216,
- 55.95026
- ],
- [
- -3.32045,
- 55.96313
- ],
- [
- -3.2983,
- 55.98571
- ],
- [
- -3.23944,
- 55.99576
- ],
- [
- -3.17402,
- 55.99819
- ],
- [
- -3.10844,
- 55.986
- ],
- [
- -3.07308,
- 55.95391
- ],
- [
- -2.99669,
- 55.96237
- ],
- [
- -2.9682,
- 55.93391
- ],
- [
- -2.96476,
- 55.8677
- ],
- [
- -2.98571,
- 55.80389
- ],
- [
- -3.04836,
- 55.81498
- ],
- [
- -3.29453,
- 55.81556
- ],
- [
- -3.19342,
- 55.89091
- ],
- [
- -3.23605,
- 55.89151
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Edinburgh 1940s-1960s",
- "url": "https://maps.nls.uk/os/national-grid/index.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Edinburgh 1940s-1960s, courtesy of National Library of Scotland.",
- "end_date": "1960",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_edinburgh1940_1960",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Edinburgh 1940s-1960s (NLS)",
- "start_date": "1940",
- "type": "tms",
- "url": "https://geo.nls.uk/mapdata3/os/edinburgh_1250_out/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.33665,
- 57.62879
- ],
- [
- -3.33777,
- 57.65907
- ],
- [
- -3.29381,
- 57.65953
- ],
- [
- -3.29273,
- 57.62925
- ],
- [
- -3.33665,
- 57.62879
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Elgin 1868",
- "url": "https://maps.nls.uk/townplans/elgin.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Elgin 1868, courtesy of National Library of Scotland.",
- "end_date": "1869",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_elgin1868",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Elgin 1868 (NLS)",
- "start_date": "1868",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/elgin/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.79587,
- 55.99343
- ],
- [
- -3.79698,
- 56.0172
- ],
- [
- -3.76648,
- 56.01764
- ],
- [
- -3.7654,
- 55.99387
- ],
- [
- -3.79587,
- 55.99343
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Falkirk 1858-1859",
- "url": "https://maps.nls.uk/townplans/falkirk.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Falkirk 1858-1859, courtesy of National Library of Scotland.",
- "end_date": "1860",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_falkirk1858_1859",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Falkirk 1858-1859 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/falkirk/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.90326,
- 56.62895
- ],
- [
- -2.90379,
- 56.65095
- ],
- [
- -2.87228,
- 56.65117
- ],
- [
- -2.87178,
- 56.62917
- ],
- [
- -2.90326,
- 56.62895
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Forfar 1860-1861",
- "url": "https://maps.nls.uk/townplans/forfar.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Forfar 1860-1861, courtesy of National Library of Scotland.",
- "end_date": "1862",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_forfar1860_1861",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Forfar 1860-1861 (NLS)",
- "start_date": "1860",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/forfar/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.63517,
- 57.58888
- ],
- [
- -3.63648,
- 57.618
- ],
- [
- -3.57751,
- 57.61875
- ],
- [
- -3.57625,
- 57.58963
- ],
- [
- -3.63517,
- 57.58888
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Forres 1868",
- "url": "https://maps.nls.uk/townplans/forres.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Forres 1868, courtesy of National Library of Scotland.",
- "end_date": "1869",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_forres1868",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Forres 1868 (NLS)",
- "start_date": "1868",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/forres/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.82919,
- 55.59586
- ],
- [
- -2.82981,
- 55.62554
- ],
- [
- -2.78895,
- 55.62581
- ],
- [
- -2.78836,
- 55.59613
- ],
- [
- -2.82919,
- 55.59586
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Galashiels 1858",
- "url": "https://maps.nls.uk/townplans/galashiels.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Galashiels 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_galashiels1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Galashiels 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/galashiels/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.87424,
- 55.2268
- ],
- [
- -4.87588,
- 55.24946
- ],
- [
- -4.84447,
- 55.2502
- ],
- [
- -4.84286,
- 55.22753
- ],
- [
- -4.87424,
- 55.2268
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Girvan 1857",
- "url": "https://maps.nls.uk/townplans/girvan.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Girvan 1857, courtesy of National Library of Scotland.",
- "end_date": "1858",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_girvan1857",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Girvan 1857 (NLS)",
- "start_date": "1857",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/girvan/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.31575,
- 55.82072
- ],
- [
- -4.31968,
- 55.88668
- ],
- [
- -4.17713,
- 55.88928
- ],
- [
- -4.17344,
- 55.82332
- ],
- [
- -4.31575,
- 55.82072
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Glasgow 1857-1858",
- "url": "https://maps.nls.uk/townplans/glasgow_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Glasgow 1857-1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_glasgow1857_1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Glasgow 1857-1858 (NLS)",
- "start_date": "1857",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/glasgow1857/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.34654,
- 55.81456
- ],
- [
- -4.35158,
- 55.89806
- ],
- [
- -4.17789,
- 55.90126
- ],
- [
- -4.17322,
- 55.81775
- ],
- [
- -4.34654,
- 55.81456
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Glasgow 1892-1894",
- "url": "https://maps.nls.uk/townplans/glasgow_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Glasgow 1892-1894, courtesy of National Library of Scotland.",
- "end_date": "1895",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_glasgow1892_1894",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Glasgow 1892-1894 (NLS)",
- "start_date": "1892",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/glasgow1894/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.78109,
- 55.92618
- ],
- [
- -4.78383,
- 55.96437
- ],
- [
- -4.73023,
- 55.96557
- ],
- [
- -4.72754,
- 55.92738
- ],
- [
- -4.78109,
- 55.92618
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Greenock 1857",
- "url": "https://maps.nls.uk/townplans/greenock.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Greenock 1857, courtesy of National Library of Scotland.",
- "end_date": "1858",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_greenock1857",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Greenock 1857 (NLS)",
- "start_date": "1857",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/greenock/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.78856,
- 55.94519
- ],
- [
- -2.78888,
- 55.96124
- ],
- [
- -2.76674,
- 55.96138
- ],
- [
- -2.76643,
- 55.94533
- ],
- [
- -2.78856,
- 55.94519
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Haddington 1853",
- "url": "https://maps.nls.uk/townplans/haddington_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Haddington 1853, courtesy of National Library of Scotland.",
- "end_date": "1854",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_haddington1853",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Haddington 1853 (NLS)",
- "start_date": "1853",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/haddington1853/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.80152,
- 55.93429
- ],
- [
- -2.80215,
- 55.96447
- ],
- [
- -2.76038,
- 55.96474
- ],
- [
- -2.75979,
- 55.93455
- ],
- [
- -2.80152,
- 55.93429
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Haddington 1893",
- "url": "https://maps.nls.uk/townplans/haddington_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Haddington 1893, courtesy of National Library of Scotland.",
- "end_date": "1894",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_haddington1893",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Haddington 1893 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/haddington1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.06722,
- 55.74877
- ],
- [
- -4.06924,
- 55.78699
- ],
- [
- -4.01679,
- 55.78786
- ],
- [
- -4.01482,
- 55.74964
- ],
- [
- -4.06722,
- 55.74877
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Hamilton 1858",
- "url": "https://maps.nls.uk/townplans/hamilton.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Hamilton 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_hamilton1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Hamilton 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/hamilton/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.8013,
- 55.41025
- ],
- [
- -2.80176,
- 55.43305
- ],
- [
- -2.77088,
- 55.43324
- ],
- [
- -2.77044,
- 55.41045
- ],
- [
- -2.8013,
- 55.41025
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Hawick 1857-1858",
- "url": "https://maps.nls.uk/townplans/hawick.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Hawick 1857-1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_hawick1857_1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Hawick 1857-1858 (NLS)",
- "start_date": "1857",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/hawick/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.25482,
- 57.45916
- ],
- [
- -4.25752,
- 57.50302
- ],
- [
- -4.19714,
- 57.50409
- ],
- [
- -4.1945,
- 57.46023
- ],
- [
- -4.25482,
- 57.45916
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Inverness 1867-1868",
- "url": "https://maps.nls.uk/townplans/inverness.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Inverness 1867-1868, courtesy of National Library of Scotland.",
- "end_date": "1869",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_inverness1867_1868",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Inverness 1867-1868 (NLS)",
- "start_date": "1867",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/inverness/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.6754,
- 55.6065
- ],
- [
- -4.67643,
- 55.62159
- ],
- [
- -4.65538,
- 55.62205
- ],
- [
- -4.65436,
- 55.60696
- ],
- [
- -4.6754,
- 55.6065
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Irvine 1859",
- "url": "https://maps.nls.uk/townplans/irvine.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Irvine 1859, courtesy of National Library of Scotland.",
- "end_date": "1860",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_irvine1859",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Irvine 1859 (NLS)",
- "start_date": "1859",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/irvine/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.56333,
- 55.47105
- ],
- [
- -2.56356,
- 55.48716
- ],
- [
- -2.54168,
- 55.48725
- ],
- [
- -2.54146,
- 55.47115
- ],
- [
- -2.56333,
- 55.47105
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Jedburgh 1858",
- "url": "https://maps.nls.uk/townplans/jedburgh.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Jedburgh 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_jedburgh1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Jedburgh 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/jedburgh/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.44925,
- 55.58391
- ],
- [
- -2.4495,
- 55.60596
- ],
- [
- -2.41902,
- 55.60607
- ],
- [
- -2.41879,
- 55.58402
- ],
- [
- -2.44925,
- 55.58391
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Kelso 1857",
- "url": "https://maps.nls.uk/townplans/kelso.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Kelso 1857, courtesy of National Library of Scotland.",
- "end_date": "1858",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_kelso1857",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Kelso 1857 (NLS)",
- "start_date": "1857",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/kelso/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.51747,
- 55.58951
- ],
- [
- -4.51943,
- 55.62017
- ],
- [
- -4.47676,
- 55.62104
- ],
- [
- -4.47482,
- 55.59038
- ],
- [
- -4.51747,
- 55.58951
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Kilmarnock 1857-1859",
- "url": "https://maps.nls.uk/townplans/kilmarnock.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Kilmarnock 1857-1859, courtesy of National Library of Scotland.",
- "end_date": "1860",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_kilmarnock1857_1859",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Kilmarnock 1857-1859 (NLS)",
- "start_date": "1857",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/kilmarnock/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.17455,
- 56.09519
- ],
- [
- -3.17555,
- 56.1279
- ],
- [
- -3.12991,
- 56.12833
- ],
- [
- -3.12896,
- 56.09561
- ],
- [
- -3.17455,
- 56.09519
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Kirkcaldy 1855",
- "url": "https://maps.nls.uk/townplans/kirkcaldy_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Kirkcaldy 1855, courtesy of National Library of Scotland.",
- "end_date": "1856",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_kirkcaldy1855",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Kirkcaldy 1855 (NLS)",
- "start_date": "1855",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/kirkcaldy1855/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.1746,
- 56.09513
- ],
- [
- -3.1756,
- 56.12794
- ],
- [
- -3.1299,
- 56.12837
- ],
- [
- -3.12893,
- 56.09556
- ],
- [
- -3.1746,
- 56.09513
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Kirkcaldy 1894",
- "url": "https://maps.nls.uk/townplans/kirkcaldy_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Kirkcaldy 1894, courtesy of National Library of Scotland.",
- "end_date": "1895",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_kirkcaldy1894",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Kirkcaldy 1894 (NLS)",
- "start_date": "1894",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/kirkcaldy1894/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.06154,
- 54.82586
- ],
- [
- -4.06231,
- 54.84086
- ],
- [
- -4.04202,
- 54.8412
- ],
- [
- -4.04126,
- 54.82621
- ],
- [
- -4.06154,
- 54.82586
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Kirkcudbright 1850",
- "url": "https://maps.nls.uk/townplans/kirkcudbright_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Kirkcudbright 1850, courtesy of National Library of Scotland.",
- "end_date": "1851",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_kirkcudbright1850",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Kirkcudbright 1850 (NLS)",
- "start_date": "1850",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/kirkcudbright1850/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.06002,
- 54.8272
- ],
- [
- -4.06079,
- 54.84234
- ],
- [
- -4.04025,
- 54.84269
- ],
- [
- -4.03949,
- 54.82755
- ],
- [
- -4.06002,
- 54.8272
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Kirkcudbright 1893",
- "url": "https://maps.nls.uk/townplans/kirkcudbright_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Kirkcudbright 1893, courtesy of National Library of Scotland.",
- "end_date": "1894",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_kirkcudbright1893",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Kirkcudbright 1893 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/kirkcudbright1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.16664,
- 55.93124
- ],
- [
- -4.16748,
- 55.94631
- ],
- [
- -4.14637,
- 55.94668
- ],
- [
- -4.14554,
- 55.93161
- ],
- [
- -4.16664,
- 55.93124
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Kirkintilloch 1859",
- "url": "https://maps.nls.uk/townplans/kirkintilloch.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Kirkintilloch 1859, courtesy of National Library of Scotland.",
- "end_date": "1860",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_kirkintilloch1859",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Kirkintilloch 1859 (NLS)",
- "start_date": "1859",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/kirkintilloch/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.01256,
- 56.65896
- ],
- [
- -3.01303,
- 56.67645
- ],
- [
- -2.98816,
- 56.67665
- ],
- [
- -2.9877,
- 56.65916
- ],
- [
- -3.01256,
- 56.65896
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Kirriemuir 1861",
- "url": "https://maps.nls.uk/townplans/kirriemuir.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Kirriemuir 1861, courtesy of National Library of Scotland.",
- "end_date": "1862",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_kirriemuir1861",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Kirriemuir 1861 (NLS)",
- "start_date": "1861",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/kirriemuir/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.78643,
- 55.66309
- ],
- [
- -3.78711,
- 55.67801
- ],
- [
- -3.76633,
- 55.67831
- ],
- [
- -3.76566,
- 55.66339
- ],
- [
- -3.78643,
- 55.66309
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Lanark 1858",
- "url": "https://maps.nls.uk/townplans/lanark.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Lanark 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_lanark1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Lanark 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/lanark/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.61908,
- 55.9555
- ],
- [
- -3.62033,
- 55.98539
- ],
- [
- -3.57838,
- 55.98593
- ],
- [
- -3.57717,
- 55.95604
- ],
- [
- -3.61908,
- 55.9555
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Linlithgow 1856",
- "url": "https://maps.nls.uk/townplans/linlithgow.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Linlithgow 1856, courtesy of National Library of Scotland.",
- "end_date": "1857",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_linlithgow1856",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Linlithgow 1856 (NLS)",
- "start_date": "1856",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/linlithgow/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.69086,
- 55.3434
- ],
- [
- -4.69189,
- 55.3585
- ],
- [
- -4.6709,
- 55.35896
- ],
- [
- -4.66988,
- 55.34386
- ],
- [
- -4.69086,
- 55.3434
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Mayole 1856-1857",
- "url": "https://maps.nls.uk/townplans/maybole.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Mayole 1856-1857, courtesy of National Library of Scotland.",
- "end_date": "1858",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_maybole1856_1857",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Mayole 1856-1857 (NLS)",
- "start_date": "1856",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/maybole/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.48593,
- 56.69645
- ],
- [
- -2.48623,
- 56.71919
- ],
- [
- -2.45405,
- 56.71931
- ],
- [
- -2.45378,
- 56.69657
- ],
- [
- -2.48593,
- 56.69645
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Montrose 1861-1862",
- "url": "https://maps.nls.uk/townplans/montrose.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Montrose 1861-1862, courtesy of National Library of Scotland.",
- "end_date": "1863",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_montrose1861_1862",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Montrose 1861-1862 (NLS)",
- "start_date": "1861",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/montrose/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.07889,
- 55.93372
- ],
- [
- -3.07954,
- 55.9573
- ],
- [
- -3.03241,
- 55.9577
- ],
- [
- -3.03178,
- 55.93412
- ],
- [
- -3.07889,
- 55.93372
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Musselburgh 1853",
- "url": "https://maps.nls.uk/townplans/musselburgh_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Musselburgh 1853, courtesy of National Library of Scotland.",
- "end_date": "1854",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_musselburgh1853",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Musselburgh 1853 (NLS)",
- "start_date": "1853",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/musselburgh1853/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.07018,
- 55.92694
- ],
- [
- -3.07079,
- 55.94918
- ],
- [
- -3.03988,
- 55.94944
- ],
- [
- -3.03929,
- 55.92721
- ],
- [
- -3.07018,
- 55.92694
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Musselburgh 1893",
- "url": "https://maps.nls.uk/townplans/musselburgh_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Musselburgh 1893, courtesy of National Library of Scotland.",
- "end_date": "1894",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_musselburgh1893",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Musselburgh 1893 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/musselburgh1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.88434,
- 57.57899
- ],
- [
- -3.8851,
- 57.59368
- ],
- [
- -3.85931,
- 57.59406
- ],
- [
- -3.85856,
- 57.57937
- ],
- [
- -3.88434,
- 57.57899
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Nairn 1867-1868",
- "url": "https://maps.nls.uk/townplans/nairn.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Nairn 1867-1868, courtesy of National Library of Scotland.",
- "end_date": "1869",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_nairn1867_1868",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Nairn 1867-1868 (NLS)",
- "start_date": "1867",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/nairn/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.49548,
- 56.3908
- ],
- [
- -5.49837,
- 56.42219
- ],
- [
- -5.45384,
- 56.42344
- ],
- [
- -5.45099,
- 56.39205
- ],
- [
- -5.49548,
- 56.3908
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Oban 1867-1868",
- "url": "https://maps.nls.uk/townplans/oban.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Oban 1867-1868, courtesy of National Library of Scotland.",
- "end_date": "1869",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_oban1867_1868",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Oban 1867-1868 (NLS)",
- "start_date": "1867",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/oban/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.45145,
- 55.85448
- ],
- [
- -4.40368,
- 55.85421
- ],
- [
- -4.40371,
- 55.83065
- ],
- [
- -4.45145,
- 55.83093
- ],
- [
- -4.45145,
- 55.85448
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Paisley 1858",
- "url": "https://maps.nls.uk/townplans/paisley.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Paisley 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_paisley1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Paisley 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/paisley/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.20921,
- 55.63636
- ],
- [
- -3.2099,
- 55.65874
- ],
- [
- -3.17896,
- 55.65904
- ],
- [
- -3.17829,
- 55.63666
- ],
- [
- -3.20921,
- 55.63636
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Peebles 1856",
- "url": "https://maps.nls.uk/townplans/peebles.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Peebles 1856, courtesy of National Library of Scotland.",
- "end_date": "1857",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_peebles1856",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Peebles 1856 (NLS)",
- "start_date": "1856",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/peebles/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.45302,
- 56.37794
- ],
- [
- -3.45417,
- 56.4079
- ],
- [
- -3.41188,
- 56.40839
- ],
- [
- -3.41077,
- 56.37843
- ],
- [
- -3.45302,
- 56.37794
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Perth 1860",
- "url": "https://maps.nls.uk/townplans/perth.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Perth 1860, courtesy of National Library of Scotland.",
- "end_date": "1861",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_perth1860",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Perth 1860 (NLS)",
- "start_date": "1860",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/perth/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -1.80514,
- 57.48047
- ],
- [
- -1.80494,
- 57.51755
- ],
- [
- -1.75135,
- 57.51746
- ],
- [
- -1.75161,
- 57.48038
- ],
- [
- -1.80514,
- 57.48047
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Peterhead 1868",
- "url": "https://maps.nls.uk/townplans/peterhead"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Peterhead 1868, courtesy of National Library of Scotland.",
- "end_date": "1869",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_peterhead1868",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Peterhead 1868 (NLS)",
- "start_date": "1868",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/peterhead/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.70063,
- 55.91996
- ],
- [
- -4.70222,
- 55.94277
- ],
- [
- -4.67085,
- 55.94345
- ],
- [
- -4.66928,
- 55.92064
- ],
- [
- -4.70063,
- 55.91996
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Port Glasgow 1856-1857",
- "url": "https://maps.nls.uk/townplans/port-glasgow.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Port Glasgow 1856-1857, courtesy of National Library of Scotland.",
- "end_date": "1858",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_portglasgow1856_1857",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Port Glasgow 1856-1857 (NLS)",
- "start_date": "1856",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/portglasgow/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.12438,
- 55.93847
- ],
- [
- -3.12502,
- 55.96069
- ],
- [
- -3.09395,
- 55.96097
- ],
- [
- -3.09332,
- 55.93875
- ],
- [
- -3.12438,
- 55.93847
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Portobello 1893-1894",
- "url": "https://maps.nls.uk/townplans/portobello.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Portobello 1893-1894, courtesy of National Library of Scotland.",
- "end_date": "1895",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_portobello1893_1894",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Portobello 1893-1894 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/portobello/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.0645,
- 55.82864
- ],
- [
- -5.0657,
- 55.84386
- ],
- [
- -5.04413,
- 55.8444
- ],
- [
- -5.04294,
- 55.82918
- ],
- [
- -5.0645,
- 55.82864
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Rothesay 1862-1863",
- "url": "https://maps.nls.uk/townplans/rothesay.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Rothesay 1862-1863, courtesy of National Library of Scotland.",
- "end_date": "1864",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_rothesay1862_1863",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Rothesay 1862-1863 (NLS)",
- "start_date": "1862",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/rothesay/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.85999,
- 55.535
- ],
- [
- -2.86063,
- 55.5646
- ],
- [
- -2.82003,
- 55.56488
- ],
- [
- -2.81942,
- 55.53527
- ],
- [
- -2.85999,
- 55.535
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Selkirk 1865",
- "url": "https://maps.nls.uk/townplans/selkirk.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Selkirk 1865, courtesy of National Library of Scotland.",
- "end_date": "1866",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_selkirk1865",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Selkirk 1865 (NLS)",
- "start_date": "1865",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/selkirk/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.81343,
- 56.32097
- ],
- [
- -2.81406,
- 56.35062
- ],
- [
- -2.77244,
- 56.35089
- ],
- [
- -2.77184,
- 56.32124
- ],
- [
- -2.81343,
- 56.32097
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - St Andrews 1854",
- "url": "https://maps.nls.uk/townplans/st-andrews_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of St Andrews 1854, courtesy of National Library of Scotland.",
- "end_date": "1855",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_standrews1854",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, St Andrews 1854 (NLS)",
- "start_date": "1854",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/standrews1854/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.81546,
- 56.31862
- ],
- [
- -2.8161,
- 56.34877
- ],
- [
- -2.77388,
- 56.34904
- ],
- [
- -2.77327,
- 56.31889
- ],
- [
- -2.81546,
- 56.31862
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - St Andrews 1893",
- "url": "https://maps.nls.uk/townplans/st-andrews_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of St Andrews 1893, courtesy of National Library of Scotland.",
- "end_date": "1894",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_standrews1893",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, St Andrews 1893 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/standrews1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.95768,
- 56.10754
- ],
- [
- -3.95883,
- 56.13007
- ],
- [
- -3.92711,
- 56.13057
- ],
- [
- -3.92598,
- 56.10804
- ],
- [
- -3.95768,
- 56.10754
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Stirling 1858",
- "url": "https://maps.nls.uk/townplans/stirling.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Stirling 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_stirling1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Stirling 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/stirling/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -2.22017,
- 56.95651
- ],
- [
- -2.22025,
- 56.97129
- ],
- [
- -2.19924,
- 56.97133
- ],
- [
- -2.19917,
- 56.95655
- ],
- [
- -2.22017,
- 56.95651
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Stonehaven 1864",
- "url": "https://maps.nls.uk/townplans/stonehaven.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Stonehaven 1864, courtesy of National Library of Scotland.",
- "end_date": "1865",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_stonehaven1864",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Stonehaven 1864 (NLS)",
- "start_date": "1864",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/stonehaven/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.0486,
- 54.8823
- ],
- [
- -5.0509,
- 54.91268
- ],
- [
- -5.00954,
- 54.91371
- ],
- [
- -5.00727,
- 54.88333
- ],
- [
- -5.0486,
- 54.8823
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Stranraer 1847",
- "url": "https://maps.nls.uk/townplans/stranraer_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Stranraer 1847, courtesy of National Library of Scotland.",
- "end_date": "1848",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_stranraer1847",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Stranraer 1847 (NLS)",
- "start_date": "1847",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/stranraer1847/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.04877,
- 54.88229
- ],
- [
- -5.05107,
- 54.9127
- ],
- [
- -5.00947,
- 54.91374
- ],
- [
- -5.0072,
- 54.88332
- ],
- [
- -5.04877,
- 54.88229
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Stranraer 1863-1877",
- "url": "https://maps.nls.uk/townplans/stranraer_1a.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Stranraer 1863-1877, courtesy of National Library of Scotland.",
- "end_date": "1878",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_stranraer1867_1877",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Stranraer 1863-1877 (NLS)",
- "start_date": "1863",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/stranraer1867/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.04418,
- 54.89774
- ],
- [
- -5.04511,
- 54.91
- ],
- [
- -5.01405,
- 54.91077
- ],
- [
- -5.01313,
- 54.89851
- ],
- [
- -5.04418,
- 54.89774
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Stranraer 1893",
- "url": "https://maps.nls.uk/townplans/stranraer_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Stranraer 1893, courtesy of National Library of Scotland.",
- "end_date": "1894",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_stranraer1893",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Stranraer 1893 (NLS)",
- "start_date": "1893",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/stranraer1893/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.06915,
- 55.67242
- ],
- [
- -4.06954,
- 55.6799
- ],
- [
- -4.05917,
- 55.68007
- ],
- [
- -4.05878,
- 55.6726
- ],
- [
- -4.06915,
- 55.67242
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Strathaven 1858",
- "url": "https://maps.nls.uk/townplans/strathaven.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Strathaven 1858, courtesy of National Library of Scotland.",
- "end_date": "1859",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_strathaven1858",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Strathaven 1858 (NLS)",
- "start_date": "1858",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/strathaven/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.1147,
- 58.41345
- ],
- [
- -3.11589,
- 58.45101
- ],
- [
- -3.0595,
- 58.45149
- ],
- [
- -3.05837,
- 58.41393
- ],
- [
- -3.1147,
- 58.41345
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Wick 1872",
- "url": "https://maps.nls.uk/townplans/wick.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Wick 1872, courtesy of National Library of Scotland.",
- "end_date": "1873",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_wick1872",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Wick 1872 (NLS)",
- "start_date": "1872",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/wick/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.45236,
- 54.85723
- ],
- [
- -4.45327,
- 54.87233
- ],
- [
- -4.43254,
- 54.87274
- ],
- [
- -4.43164,
- 54.85765
- ],
- [
- -4.45236,
- 54.85723
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Wigtown 1848",
- "url": "https://maps.nls.uk/townplans/wigtown_1.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Wigtown 1848, courtesy of National Library of Scotland.",
- "end_date": "1849",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_wigtown1848",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Wigtown 1848 (NLS)",
- "start_date": "1848",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/wigtown1848/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -4.45233,
- 54.85721
- ],
- [
- -4.45325,
- 54.87237
- ],
- [
- -4.43258,
- 54.87278
- ],
- [
- -4.43167,
- 54.85763
- ],
- [
- -4.45233,
- 54.85721
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland - Wigtown 1894",
- "url": "https://maps.nls.uk/townplans/wigtown_2.html"
- },
- "country_code": "GB",
- "description": "Detailed town plan of Wigtown 1894, courtesy of National Library of Scotland.",
- "end_date": "1895",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "NLS_wigtown1894",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "OS Town Plans, Wigtown 1894 (NLS)",
- "start_date": "1894",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/towns/wigtown1894/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -6.45854,
- 49.90441
- ],
- [
- -6.3872,
- 49.98411
- ],
- [
- -6.22968,
- 49.98962
- ],
- [
- -6.21713,
- 49.86801
- ],
- [
- -6.45512,
- 49.85918
- ],
- [
- -6.45854,
- 49.90441
- ]
- ],
- [
- [
- -1.44951,
- 60.86341
- ],
- [
- -0.71671,
- 60.85451
- ],
- [
- -0.73497,
- 60.43598
- ],
- [
- -0.69388,
- 60.41682
- ],
- [
- -0.72584,
- 60.39427
- ],
- [
- -0.73954,
- 60.04847
- ],
- [
- -0.92674,
- 60.04619
- ],
- [
- -0.93815,
- 59.82662
- ],
- [
- -1.45865,
- 59.8312
- ],
- [
- -1.44552,
- 60.0536
- ],
- [
- -1.46321,
- 60.0536
- ],
- [
- -1.46435,
- 60.063
- ],
- [
- -1.57165,
- 60.06385
- ],
- [
- -1.56936,
- 60.179
- ],
- [
- -1.64356,
- 60.1807
- ],
- [
- -1.64356,
- 60.18922
- ],
- [
- -1.82162,
- 60.1895
- ],
- [
- -1.82048,
- 60.36155
- ],
- [
- -1.8416,
- 60.36973
- ],
- [
- -1.82162,
- 60.38328
- ],
- [
- -1.81799,
- 60.59343
- ],
- [
- -1.45317,
- 60.59343
- ],
- [
- -1.44951,
- 60.86341
- ]
- ],
- [
- [
- -4.90892,
- 54.42421
- ],
- [
- -4.2826,
- 54.44299
- ],
- [
- -4.25354,
- 54.02977
- ],
- [
- -4.87664,
- 54.02218
- ],
- [
- -4.90892,
- 54.42421
- ]
- ],
- [
- [
- -5.86674,
- 59.14446
- ],
- [
- -5.776,
- 59.14709
- ],
- [
- -5.772,
- 59.10141
- ],
- [
- -5.86218,
- 59.09906
- ],
- [
- -5.86674,
- 59.14446
- ]
- ],
- [
- [
- -1.70659,
- 59.57036
- ],
- [
- -1.55792,
- 59.56935
- ],
- [
- -1.55649,
- 59.49657
- ],
- [
- -1.70545,
- 59.49758
- ],
- [
- -1.70659,
- 59.57036
- ]
- ],
- [
- [
- -7.68658,
- 58.2941
- ],
- [
- -7.53306,
- 58.3007
- ],
- [
- -7.52564,
- 58.26469
- ],
- [
- -7.67973,
- 58.25779
- ],
- [
- -7.68658,
- 58.2941
- ]
- ],
- [
- [
- -4.53383,
- 59.03599
- ],
- [
- -4.48132,
- 59.03716
- ],
- [
- -4.47961,
- 59.01866
- ],
- [
- -4.53326,
- 59.01807
- ],
- [
- -4.53383,
- 59.03599
- ]
- ],
- [
- [
- -8.67107,
- 57.87699
- ],
- [
- -8.46732,
- 57.88973
- ],
- [
- -8.44678,
- 57.7907
- ],
- [
- -8.65109,
- 57.77792
- ],
- [
- -8.67107,
- 57.87699
- ]
- ],
- [
- [
- -5.23955,
- 50.35306
- ],
- [
- -5.79201,
- 50.33849
- ],
- [
- -5.76005,
- 49.9317
- ],
- [
- -4.65514,
- 49.95815
- ],
- [
- -4.67797,
- 50.28601
- ],
- [
- -4.24422,
- 50.28017
- ],
- [
- -4.24878,
- 50.20425
- ],
- [
- -3.38129,
- 50.20425
- ],
- [
- -3.42238,
- 50.51882
- ],
- [
- -3.11648,
- 50.52463
- ],
- [
- -3.12105,
- 50.65796
- ],
- [
- -2.67364,
- 50.66195
- ],
- [
- -2.59535,
- 50.63943
- ],
- [
- -2.5905,
- 50.57284
- ],
- [
- -2.47912,
- 50.57335
- ],
- [
- -2.47589,
- 50.50667
- ],
- [
- -2.39679,
- 50.50564
- ],
- [
- -2.40164,
- 50.57233
- ],
- [
- -1.04003,
- 50.57182
- ],
- [
- -1.03357,
- 50.70593
- ],
- [
- -0.5493,
- 50.70388
- ],
- [
- -0.54607,
- 50.78866
- ],
- [
- -0.09247,
- 50.7856
- ],
- [
- -0.08763,
- 50.71819
- ],
- [
- 0.47897,
- 50.71206
- ],
- [
- 0.48704,
- 50.81825
- ],
- [
- 0.97615,
- 50.80499
- ],
- [
- 0.99229,
- 51.01263
- ],
- [
- 1.44912,
- 51.00044
- ],
- [
- 1.47818,
- 51.40904
- ],
- [
- 1.02296,
- 51.42716
- ],
- [
- 1.03588,
- 51.76409
- ],
- [
- 1.61054,
- 51.7501
- ],
- [
- 1.64606,
- 52.156
- ],
- [
- 1.72677,
- 52.15402
- ],
- [
- 1.74937,
- 52.44818
- ],
- [
- 1.78707,
- 52.48116
- ],
- [
- 1.7591,
- 52.52251
- ],
- [
- 1.79335,
- 52.96027
- ],
- [
- 0.37981,
- 52.99585
- ],
- [
- 0.38952,
- 53.25112
- ],
- [
- 0.34786,
- 53.25112
- ],
- [
- 0.32389,
- 53.28219
- ],
- [
- 0.34615,
- 53.65385
- ],
- [
- 0.12849,
- 53.65755
- ],
- [
- 0.11658,
- 53.66747
- ],
- [
- 0.13506,
- 54.06557
- ],
- [
- -0.06098,
- 54.06591
- ],
- [
- -0.04142,
- 54.47094
- ],
- [
- -0.56627,
- 54.47718
- ],
- [
- -0.55921,
- 54.65651
- ],
- [
- -1.16656,
- 54.66235
- ],
- [
- -1.16374,
- 54.84261
- ],
- [
- -1.33162,
- 54.84391
- ],
- [
- -1.32571,
- 55.24708
- ],
- [
- -1.52945,
- 55.24871
- ],
- [
- -1.52418,
- 55.65401
- ],
- [
- -1.76388,
- 55.65401
- ],
- [
- -1.77337,
- 55.97191
- ],
- [
- -2.16079,
- 55.9683
- ],
- [
- -2.15433,
- 56.06214
- ],
- [
- -2.45781,
- 56.05853
- ],
- [
- -2.41906,
- 56.64172
- ],
- [
- -2.09622,
- 56.64172
- ],
- [
- -2.0833,
- 57.00213
- ],
- [
- -1.92834,
- 57.01268
- ],
- [
- -1.9181,
- 57.35909
- ],
- [
- -1.75022,
- 57.36257
- ],
- [
- -1.76959,
- 57.76086
- ],
- [
- -3.69376,
- 57.75742
- ],
- [
- -3.70667,
- 57.98064
- ],
- [
- -3.5969,
- 57.97721
- ],
- [
- -3.60336,
- 58.12073
- ],
- [
- -3.02223,
- 58.13096
- ],
- [
- -3.02869,
- 58.54108
- ],
- [
- -2.8479,
- 58.53097
- ],
- [
- -2.86081,
- 58.84305
- ],
- [
- -2.67962,
- 58.8415
- ],
- [
- -2.68419,
- 58.88517
- ],
- [
- -2.63397,
- 58.90522
- ],
- [
- -2.67962,
- 58.93351
- ],
- [
- -2.68876,
- 59.02292
- ],
- [
- -2.36687,
- 59.02292
- ],
- [
- -2.37029,
- 59.26529
- ],
- [
- -2.3429,
- 59.2822
- ],
- [
- -2.37144,
- 59.29969
- ],
- [
- -2.37372,
- 59.37071
- ],
- [
- -2.3429,
- 59.38582
- ],
- [
- -2.37258,
- 59.40035
- ],
- [
- -2.37144,
- 59.42591
- ],
- [
- -3.07342,
- 59.42301
- ],
- [
- -3.07114,
- 59.34336
- ],
- [
- -3.1031,
- 59.33114
- ],
- [
- -3.07456,
- 59.31367
- ],
- [
- -3.07228,
- 59.2326
- ],
- [
- -3.38503,
- 59.14842
- ],
- [
- -3.37476,
- 58.93528
- ],
- [
- -3.56538,
- 58.93233
- ],
- [
- -3.55483,
- 58.69759
- ],
- [
- -5.28086,
- 58.66677
- ],
- [
- -5.25342,
- 58.35141
- ],
- [
- -5.50685,
- 58.34379
- ],
- [
- -5.47618,
- 58.03236
- ],
- [
- -5.8975,
- 58.02124
- ],
- [
- -5.8523,
- 57.61718
- ],
- [
- -6.13963,
- 57.61372
- ],
- [
- -6.15416,
- 57.74232
- ],
- [
- -6.29137,
- 57.73801
- ],
- [
- -6.33657,
- 58.13988
- ],
- [
- -6.11219,
- 58.14669
- ],
- [
- -6.14738,
- 58.51063
- ],
- [
- -6.29348,
- 58.54162
- ],
- [
- -6.84137,
- 58.29773
- ],
- [
- -7.00574,
- 58.29293
- ],
- [
- -7.10162,
- 58.20644
- ],
- [
- -7.25731,
- 58.17931
- ],
- [
- -7.25311,
- 58.10049
- ],
- [
- -7.40707,
- 58.09056
- ],
- [
- -7.39135,
- 57.79114
- ],
- [
- -7.79099,
- 57.77332
- ],
- [
- -7.76242,
- 57.54442
- ],
- [
- -7.6985,
- 57.14532
- ],
- [
- -7.79438,
- 57.13045
- ],
- [
- -7.71676,
- 56.73686
- ],
- [
- -7.01221,
- 56.76544
- ],
- [
- -6.97992,
- 56.54539
- ],
- [
- -7.06386,
- 56.54539
- ],
- [
- -7.04449,
- 56.35626
- ],
- [
- -6.50068,
- 56.38129
- ],
- [
- -6.44914,
- 55.97936
- ],
- [
- -6.56329,
- 55.96915
- ],
- [
- -6.53937,
- 55.70301
- ],
- [
- -6.55955,
- 55.69073
- ],
- [
- -6.53453,
- 55.67617
- ],
- [
- -6.52162,
- 55.57044
- ],
- [
- -5.89126,
- 55.59234
- ],
- [
- -5.85601,
- 55.23207
- ],
- [
- -5.22936,
- 55.2516
- ],
- [
- -5.18371,
- 54.62541
- ],
- [
- -3.6656,
- 54.65184
- ],
- [
- -3.64962,
- 54.432
- ],
- [
- -3.54004,
- 54.43067
- ],
- [
- -3.53091,
- 54.02902
- ],
- [
- -3.06977,
- 54.03036
- ],
- [
- -3.06757,
- 53.82214
- ],
- [
- -3.08049,
- 53.77399
- ],
- [
- -3.06192,
- 53.74775
- ],
- [
- -3.06112,
- 53.6737
- ],
- [
- -3.21447,
- 53.67084
- ],
- [
- -3.20577,
- 53.42262
- ],
- [
- -3.27996,
- 53.35522
- ],
- [
- -3.28967,
- 53.36084
- ],
- [
- -3.33275,
- 53.36493
- ],
- [
- -3.37613,
- 53.35403
- ],
- [
- -4.0889,
- 53.34331
- ],
- [
- -4.09455,
- 53.4612
- ],
- [
- -4.69741,
- 53.44486
- ],
- [
- -4.68828,
- 53.33186
- ],
- [
- -4.72024,
- 53.28958
- ],
- [
- -4.68371,
- 53.24862
- ],
- [
- -4.67687,
- 53.15426
- ],
- [
- -4.84808,
- 53.14468
- ],
- [
- -4.81783,
- 52.74403
- ],
- [
- -4.25458,
- 52.75589
- ],
- [
- -4.22888,
- 52.25488
- ],
- [
- -4.26076,
- 52.25364
- ],
- [
- -4.27246,
- 52.24326
- ],
- [
- -4.81363,
- 52.23009
- ],
- [
- -4.80792,
- 52.11389
- ],
- [
- -5.38891,
- 52.09917
- ],
- [
- -5.37179,
- 51.91297
- ],
- [
- -5.42087,
- 51.91015
- ],
- [
- -5.41402,
- 51.84532
- ],
- [
- -5.36836,
- 51.84744
- ],
- [
- -5.34668,
- 51.55953
- ],
- [
- -4.77368,
- 51.57585
- ],
- [
- -4.76569,
- 51.48851
- ],
- [
- -4.19154,
- 51.49704
- ],
- [
- -4.18698,
- 51.43447
- ],
- [
- -3.61512,
- 51.44443
- ],
- [
- -3.61055,
- 51.37465
- ],
- [
- -3.14941,
- 51.37893
- ],
- [
- -3.14941,
- 51.29193
- ],
- [
- -4.30387,
- 51.27459
- ],
- [
- -4.28612,
- 51.05087
- ],
- [
- -4.85433,
- 51.03666
- ],
- [
- -4.83722,
- 50.72128
- ],
- [
- -5.26183,
- 50.70827
- ],
- [
- -5.23955,
- 50.35306
- ]
- ],
- [
- [
- -2.15027,
- 60.17132
- ],
- [
- -2.00302,
- 60.16961
- ],
- [
- -2.00131,
- 60.0997
- ],
- [
- -2.14855,
- 60.10112
- ],
- [
- -2.15027,
- 60.17132
- ]
- ],
- [
- [
- -6.2086,
- 59.11635
- ],
- [
- -6.12299,
- 59.11664
- ],
- [
- -6.12185,
- 59.0715
- ],
- [
- -6.20974,
- 59.0715
- ],
- [
- -6.2086,
- 59.11635
- ]
- ],
- [
- [
- -4.41596,
- 59.0889
- ],
- [
- -4.4212,
- 59.07708
- ],
- [
- -4.39719,
- 59.07791
- ],
- [
- -4.39134,
- 59.08973
- ],
- [
- -4.41596,
- 59.0889
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "end_date": "1962",
- "id": "OS-historic-25k-OSM_Limited",
- "max_zoom": 17,
- "min_zoom": 6,
- "name": "OS 1:25k historic (OSM)",
- "start_date": "1937",
- "type": "tms",
- "url": "https://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -3.68466,
- 55.23744
- ],
- [
- -3.65106,
- 54.42892
- ],
- [
- -3.54463,
- 54.43072
- ],
- [
- -3.52815,
- 54.02593
- ],
- [
- -3.07016,
- 54.03137
- ],
- [
- -3.06123,
- 53.6717
- ],
- [
- -3.21298,
- 53.67048
- ],
- [
- -3.20371,
- 53.35568
- ],
- [
- -4.10424,
- 53.34297
- ],
- [
- -4.11042,
- 53.46005
- ],
- [
- -4.71124,
- 53.44799
- ],
- [
- -4.69339,
- 53.15171
- ],
- [
- -4.84307,
- 53.1476
- ],
- [
- -4.81595,
- 52.74378
- ],
- [
- -4.25342,
- 52.75541
- ],
- [
- -4.22733,
- 52.24378
- ],
- [
- -4.81303,
- 52.23117
- ],
- [
- -4.80754,
- 52.11452
- ],
- [
- -5.38913,
- 52.09892
- ],
- [
- -5.3493,
- 51.56085
- ],
- [
- -4.77252,
- 51.57622
- ],
- [
- -4.76772,
- 51.48652
- ],
- [
- -4.19299,
- 51.49806
- ],
- [
- -4.18956,
- 51.43518
- ],
- [
- -3.61278,
- 51.44502
- ],
- [
- -3.61072,
- 51.37307
- ],
- [
- -3.15067,
- 51.37864
- ],
- [
- -3.14723,
- 51.28984
- ],
- [
- -4.29462,
- 51.2718
- ],
- [
- -4.28363,
- 51.04744
- ],
- [
- -4.85423,
- 51.03406
- ],
- [
- -4.83707,
- 50.76556
- ],
- [
- -5.2621,
- 50.75427
- ],
- [
- -5.23395,
- 50.34984
- ],
- [
- -5.79562,
- 50.33319
- ],
- [
- -5.76228,
- 49.92913
- ],
- [
- -4.64717,
- 49.96094
- ],
- [
- -4.66914,
- 50.2753
- ],
- [
- -4.25166,
- 50.2832
- ],
- [
- -4.24617,
- 50.19361
- ],
- [
- -3.40159,
- 50.20679
- ],
- [
- -3.41395,
- 50.52041
- ],
- [
- -3.13105,
- 50.52391
- ],
- [
- -3.1338,
- 50.66078
- ],
- [
- -2.66963,
- 50.66252
- ],
- [
- -2.66688,
- 50.5719
- ],
- [
- -1.04228,
- 50.56929
- ],
- [
- -1.04502,
- 50.70429
- ],
- [
- -0.54652,
- 50.69994
- ],
- [
- -0.54103,
- 50.79031
- ],
- [
- -0.08784,
- 50.78424
- ],
- [
- -0.08887,
- 50.72211
- ],
- [
- 0.47693,
- 50.70907
- ],
- [
- 0.48242,
- 50.81939
- ],
- [
- 0.98024,
- 50.8068
- ],
- [
- 0.99328,
- 51.01333
- ],
- [
- 1.44784,
- 51.00036
- ],
- [
- 1.47805,
- 51.40478
- ],
- [
- 1.018,
- 51.41634
- ],
- [
- 1.04272,
- 51.76742
- ],
- [
- 1.6195,
- 51.75084
- ],
- [
- 1.65246,
- 52.15456
- ],
- [
- 1.72662,
- 52.15245
- ],
- [
- 1.79529,
- 52.9594
- ],
- [
- 0.60396,
- 52.99123
- ],
- [
- 0.60327,
- 52.97222
- ],
- [
- 0.38148,
- 52.97883
- ],
- [
- 0.39625,
- 53.24796
- ],
- [
- 0.31934,
- 53.24961
- ],
- [
- 0.34269,
- 53.65319
- ],
- [
- 0.11609,
- 53.65726
- ],
- [
- 0.13738,
- 54.06181
- ],
- [
- -0.06243,
- 54.06584
- ],
- [
- -0.04183,
- 54.46924
- ],
- [
- -0.56781,
- 54.47722
- ],
- [
- -0.56163,
- 54.65715
- ],
- [
- -1.18098,
- 54.66271
- ],
- [
- -1.17755,
- 54.84183
- ],
- [
- -1.33342,
- 54.84381
- ],
- [
- -1.32655,
- 55.24743
- ],
- [
- -1.53117,
- 55.24821
- ],
- [
- -1.52636,
- 55.6528
- ],
- [
- -1.76394,
- 55.6528
- ],
- [
- -1.76257,
- 55.96765
- ],
- [
- -2.40321,
- 55.96727
- ],
- [
- -2.39772,
- 55.56243
- ],
- [
- -2.16151,
- 55.56282
- ],
- [
- -2.15808,
- 55.2486
- ],
- [
- -2.92158,
- 55.24571
- ],
- [
- -3.68466,
- 55.23744
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "end_date": "1955",
- "id": "OS-New_Popular_Edition-historic",
- "max_zoom": 15,
- "min_zoom": 6,
- "name": "OS New Popular Edition historic",
- "type": "tms",
- "url": "https://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -0.88639,
- 61.11666
- ],
- [
- -9.24009,
- 57.92465
- ],
- [
- -6.61235,
- 55.46835
- ],
- [
- -6.1039,
- 55.40191
- ],
- [
- -5.61358,
- 55.06607
- ],
- [
- -5.40088,
- 54.90562
- ],
- [
- -5.29371,
- 54.77201
- ],
- [
- -5.11832,
- 54.5911
- ],
- [
- -4.92368,
- 54.38599
- ],
- [
- -4.94067,
- 53.59884
- ],
- [
- -5.44172,
- 52.27725
- ],
- [
- -6.03376,
- 51.6012
- ],
- [
- -7.54473,
- 49.33762
- ],
- [
- -2.59721,
- 50.2588
- ],
- [
- 0.65674,
- 50.64047
- ],
- [
- 1.32419,
- 50.83256
- ],
- [
- 1.87586,
- 51.19234
- ],
- [
- 2.05883,
- 52.88863
- ],
- [
- -1.61452,
- 56.47933
- ],
- [
- -1.21085,
- 57.64972
- ],
- [
- -1.69525,
- 59.08903
- ],
- [
- 0.21543,
- 60.43058
- ],
- [
- -0.88639,
- 61.11666
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "id": "OS-OpenData_Locator",
- "max_zoom": 22,
- "name": "OS OpenData Locator",
- "overlay": true,
- "type": "tms",
- "url": "https://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -5.82929,
- 50.02297
- ],
- [
- -5.82929,
- 50.25482
- ],
- [
- -5.37336,
- 50.25482
- ],
- [
- -5.37336,
- 50.35306
- ],
- [
- -5.1756,
- 50.35306
- ],
- [
- -5.1756,
- 50.59254
- ],
- [
- -4.99707,
- 50.59254
- ],
- [
- -4.99707,
- 50.69356
- ],
- [
- -4.79657,
- 50.69356
- ],
- [
- -4.79657,
- 50.78221
- ],
- [
- -4.69495,
- 50.78221
- ],
- [
- -4.69495,
- 50.96074
- ],
- [
- -4.60431,
- 50.96074
- ],
- [
- -4.60431,
- 51.06921
- ],
- [
- -4.37922,
- 51.06921
- ],
- [
- -4.37922,
- 51.25218
- ],
- [
- -3.90393,
- 51.25218
- ],
- [
- -3.90393,
- 51.2917
- ],
- [
- -3.71717,
- 51.2917
- ],
- [
- -3.71717,
- 51.2453
- ],
- [
- -3.14862,
- 51.2453
- ],
- [
- -3.14862,
- 51.36207
- ],
- [
- -3.74463,
- 51.36207
- ],
- [
- -3.74463,
- 51.43404
- ],
- [
- -3.82978,
- 51.43404
- ],
- [
- -3.82978,
- 51.52982
- ],
- [
- -4.08521,
- 51.52982
- ],
- [
- -4.08521,
- 51.49393
- ],
- [
- -4.37922,
- 51.49393
- ],
- [
- -4.37922,
- 51.54272
- ],
- [
- -5.14442,
- 51.54272
- ],
- [
- -5.14442,
- 51.6296
- ],
- [
- -5.73871,
- 51.6296
- ],
- [
- -5.73871,
- 51.77404
- ],
- [
- -5.50954,
- 51.77404
- ],
- [
- -5.50954,
- 51.98026
- ],
- [
- -5.1988,
- 51.98026
- ],
- [
- -5.1988,
- 52.09734
- ],
- [
- -4.88806,
- 52.09734
- ],
- [
- -4.88806,
- 52.18316
- ],
- [
- -4.49575,
- 52.18316
- ],
- [
- -4.49575,
- 52.29257
- ],
- [
- -4.30154,
- 52.29257
- ],
- [
- -4.30154,
- 52.36853
- ],
- [
- -4.18112,
- 52.36853
- ],
- [
- -4.18112,
- 52.79337
- ],
- [
- -4.44137,
- 52.79337
- ],
- [
- -4.44137,
- 52.73696
- ],
- [
- -4.85698,
- 52.73696
- ],
- [
- -4.85698,
- 52.93173
- ],
- [
- -4.7288,
- 52.93173
- ],
- [
- -4.7288,
- 53.50386
- ],
- [
- -4.15782,
- 53.50386
- ],
- [
- -4.15782,
- 53.41135
- ],
- [
- -3.31105,
- 53.41135
- ],
- [
- -3.31105,
- 53.50386
- ],
- [
- -3.23337,
- 53.50386
- ],
- [
- -3.23337,
- 54.01592
- ],
- [
- -3.39262,
- 54.01592
- ],
- [
- -3.39262,
- 54.1981
- ],
- [
- -3.55964,
- 54.1981
- ],
- [
- -3.55964,
- 54.43373
- ],
- [
- -3.7189,
- 54.43373
- ],
- [
- -3.7189,
- 54.7219
- ],
- [
- -4.30154,
- 54.7219
- ],
- [
- -4.30154,
- 54.61407
- ],
- [
- -5.04731,
- 54.61407
- ],
- [
- -5.04731,
- 54.75329
- ],
- [
- -5.22987,
- 54.75329
- ],
- [
- -5.22987,
- 55.21908
- ],
- [
- -5.65326,
- 55.21908
- ],
- [
- -5.65326,
- 55.25009
- ],
- [
- -5.89796,
- 55.25009
- ],
- [
- -5.89796,
- 55.48225
- ],
- [
- -6.59332,
- 55.48225
- ],
- [
- -6.59332,
- 56.30134
- ],
- [
- -7.17277,
- 56.30134
- ],
- [
- -7.17277,
- 56.56018
- ],
- [
- -6.81717,
- 56.56018
- ],
- [
- -6.81717,
- 56.69917
- ],
- [
- -6.53153,
- 56.69917
- ],
- [
- -6.53153,
- 56.9067
- ],
- [
- -6.81168,
- 56.9067
- ],
- [
- -6.81168,
- 57.37166
- ],
- [
- -6.8721,
- 57.37166
- ],
- [
- -6.8721,
- 57.55189
- ],
- [
- -7.09732,
- 57.55189
- ],
- [
- -7.09732,
- 57.24111
- ],
- [
- -7.17423,
- 57.24111
- ],
- [
- -7.17423,
- 56.9067
- ],
- [
- -7.37198,
- 56.9067
- ],
- [
- -7.37198,
- 56.80759
- ],
- [
- -7.5203,
- 56.80759
- ],
- [
- -7.5203,
- 56.71425
- ],
- [
- -7.83068,
- 56.71425
- ],
- [
- -7.83068,
- 56.89946
- ],
- [
- -7.64941,
- 56.89946
- ],
- [
- -7.64941,
- 57.47396
- ],
- [
- -7.83068,
- 57.47396
- ],
- [
- -7.83068,
- 57.79156
- ],
- [
- -7.47362,
- 57.79156
- ],
- [
- -7.47362,
- 58.08606
- ],
- [
- -7.18798,
- 58.08606
- ],
- [
- -7.18798,
- 58.3672
- ],
- [
- -6.80346,
- 58.3672
- ],
- [
- -6.80346,
- 58.41558
- ],
- [
- -6.63866,
- 58.41558
- ],
- [
- -6.63866,
- 58.46733
- ],
- [
- -6.51781,
- 58.46733
- ],
- [
- -6.51781,
- 58.56256
- ],
- [
- -6.05362,
- 58.56256
- ],
- [
- -6.05362,
- 58.15688
- ],
- [
- -6.14701,
- 58.15688
- ],
- [
- -6.14701,
- 58.11059
- ],
- [
- -6.27998,
- 58.11059
- ],
- [
- -6.27998,
- 57.71227
- ],
- [
- -6.15913,
- 57.71227
- ],
- [
- -6.15913,
- 57.66676
- ],
- [
- -5.93391,
- 57.66676
- ],
- [
- -5.93391,
- 57.88925
- ],
- [
- -5.80643,
- 57.88925
- ],
- [
- -5.80643,
- 57.96218
- ],
- [
- -5.61417,
- 57.96218
- ],
- [
- -5.61417,
- 58.09112
- ],
- [
- -5.49082,
- 58.09112
- ],
- [
- -5.49082,
- 58.37333
- ],
- [
- -5.31991,
- 58.37333
- ],
- [
- -5.31991,
- 58.75015
- ],
- [
- -3.572,
- 58.75015
- ],
- [
- -3.572,
- 59.20918
- ],
- [
- -3.19445,
- 59.20918
- ],
- [
- -3.19445,
- 59.47592
- ],
- [
- -2.24358,
- 59.47592
- ],
- [
- -2.24358,
- 59.13887
- ],
- [
- -2.4611,
- 59.13887
- ],
- [
- -2.4611,
- 58.81859
- ],
- [
- -2.74077,
- 58.81859
- ],
- [
- -2.74077,
- 58.58047
- ],
- [
- -2.91167,
- 58.58047
- ],
- [
- -2.91167,
- 58.11575
- ],
- [
- -3.48654,
- 58.11575
- ],
- [
- -3.48654,
- 57.74039
- ],
- [
- -1.71532,
- 57.74039
- ],
- [
- -1.71532,
- 57.22256
- ],
- [
- -1.97945,
- 57.22256
- ],
- [
- -1.97945,
- 56.87607
- ],
- [
- -2.1659,
- 56.87607
- ],
- [
- -2.1659,
- 56.63332
- ],
- [
- -2.36011,
- 56.63332
- ],
- [
- -2.36011,
- 56.04775
- ],
- [
- -1.97945,
- 56.04775
- ],
- [
- -1.97945,
- 55.86509
- ],
- [
- -1.4745,
- 55.86509
- ],
- [
- -1.4745,
- 55.24999
- ],
- [
- -1.3222,
- 55.24999
- ],
- [
- -1.3222,
- 54.82217
- ],
- [
- -1.055,
- 54.82217
- ],
- [
- -1.055,
- 54.67466
- ],
- [
- -0.66188,
- 54.67466
- ],
- [
- -0.66188,
- 54.55275
- ],
- [
- -0.32476,
- 54.55275
- ],
- [
- -0.32476,
- 54.28652
- ],
- [
- 0.00928,
- 54.28652
- ],
- [
- 0.00928,
- 53.79385
- ],
- [
- 0.2082,
- 53.79385
- ],
- [
- 0.2082,
- 53.52177
- ],
- [
- 0.41635,
- 53.52177
- ],
- [
- 0.41635,
- 53.02989
- ],
- [
- 1.42734,
- 53.02989
- ],
- [
- 1.42734,
- 52.92021
- ],
- [
- 1.83339,
- 52.92021
- ],
- [
- 1.83339,
- 52.04249
- ],
- [
- 1.52355,
- 52.04249
- ],
- [
- 1.52355,
- 51.82613
- ],
- [
- 1.2697,
- 51.82613
- ],
- [
- 1.2697,
- 51.69675
- ],
- [
- 1.11665,
- 51.69675
- ],
- [
- 1.11665,
- 51.44035
- ],
- [
- 1.52355,
- 51.44035
- ],
- [
- 1.52355,
- 51.33318
- ],
- [
- 1.45076,
- 51.33318
- ],
- [
- 1.45076,
- 51.02076
- ],
- [
- 1.06999,
- 51.02076
- ],
- [
- 1.06999,
- 50.90084
- ],
- [
- 0.77881,
- 50.90084
- ],
- [
- 0.77881,
- 50.72984
- ],
- [
- -0.7256,
- 50.72984
- ],
- [
- -0.7256,
- 50.70384
- ],
- [
- -1.00744,
- 50.70384
- ],
- [
- -1.00744,
- 50.57363
- ],
- [
- -2.36253,
- 50.57363
- ],
- [
- -2.36253,
- 50.48464
- ],
- [
- -2.49878,
- 50.48464
- ],
- [
- -2.49878,
- 50.57363
- ],
- [
- -3.40964,
- 50.57363
- ],
- [
- -3.40964,
- 50.20578
- ],
- [
- -3.69224,
- 50.20578
- ],
- [
- -3.69224,
- 50.13477
- ],
- [
- -5.00547,
- 50.13477
- ],
- [
- -5.00547,
- 49.94745
- ],
- [
- -5.28395,
- 49.94745
- ],
- [
- -5.28395,
- 50.02297
- ],
- [
- -5.82929,
- 50.02297
- ]
- ],
- [
- [
- -6.45807,
- 49.86736
- ],
- [
- -6.45807,
- 49.94999
- ],
- [
- -6.39788,
- 49.94999
- ],
- [
- -6.39788,
- 50.00538
- ],
- [
- -6.17996,
- 50.00538
- ],
- [
- -6.17996,
- 49.91686
- ],
- [
- -6.25402,
- 49.91686
- ],
- [
- -6.25402,
- 49.86736
- ],
- [
- -6.45807,
- 49.86736
- ]
- ],
- [
- [
- -5.83432,
- 49.93216
- ],
- [
- -5.83432,
- 49.97546
- ],
- [
- -5.76833,
- 49.97546
- ],
- [
- -5.76833,
- 49.93216
- ],
- [
- -5.83432,
- 49.93216
- ]
- ],
- [
- [
- -1.94838,
- 60.68857
- ],
- [
- -1.94838,
- 60.30588
- ],
- [
- -1.75431,
- 60.30588
- ],
- [
- -1.75431,
- 60.12844
- ],
- [
- -1.57549,
- 60.12844
- ],
- [
- -1.57549,
- 59.79792
- ],
- [
- -1.0317,
- 59.79792
- ],
- [
- -1.0317,
- 60.03545
- ],
- [
- -0.66269,
- 60.03545
- ],
- [
- -0.66269,
- 60.91039
- ],
- [
- -1.10344,
- 60.91039
- ],
- [
- -1.10344,
- 60.804
- ],
- [
- -1.35063,
- 60.804
- ],
- [
- -1.35063,
- 60.68857
- ],
- [
- -1.94838,
- 60.68857
- ]
- ],
- [
- [
- -2.20338,
- 60.19686
- ],
- [
- -2.20338,
- 60.09294
- ],
- [
- -1.9864,
- 60.09294
- ],
- [
- -1.9864,
- 60.19686
- ],
- [
- -2.20338,
- 60.19686
- ]
- ],
- [
- [
- -1.75431,
- 59.56983
- ],
- [
- -1.75431,
- 59.46394
- ],
- [
- -1.53733,
- 59.46394
- ],
- [
- -1.53733,
- 59.56983
- ],
- [
- -1.75431,
- 59.56983
- ]
- ],
- [
- [
- -4.5586,
- 59.13705
- ],
- [
- -4.5586,
- 58.95691
- ],
- [
- -4.2867,
- 58.95691
- ],
- [
- -4.2867,
- 59.13705
- ],
- [
- -4.5586,
- 59.13705
- ]
- ],
- [
- [
- -6.27877,
- 59.20257
- ],
- [
- -6.27877,
- 59.02278
- ],
- [
- -5.66506,
- 59.02278
- ],
- [
- -5.66506,
- 59.20257
- ],
- [
- -6.27877,
- 59.20257
- ]
- ],
- [
- [
- -8.71635,
- 57.94406
- ],
- [
- -8.71635,
- 57.73059
- ],
- [
- -8.35929,
- 57.73059
- ],
- [
- -8.35929,
- 57.94406
- ],
- [
- -8.71635,
- 57.94406
- ]
- ],
- [
- [
- -7.6077,
- 50.4021
- ],
- [
- -7.6077,
- 50.26887
- ],
- [
- -7.39072,
- 50.26887
- ],
- [
- -7.39072,
- 50.4021
- ],
- [
- -7.6077,
- 50.4021
- ]
- ],
- [
- [
- -7.73043,
- 58.35799
- ],
- [
- -7.73043,
- 58.24831
- ],
- [
- -7.51345,
- 58.24831
- ],
- [
- -7.51345,
- 58.35799
- ],
- [
- -7.73043,
- 58.35799
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "id": "OS-OpenData_StreetView",
- "max_zoom": 18,
- "min_zoom": 1,
- "name": "OS OpenData StreetView",
- "type": "tms",
- "url": "https://{switch:a,b,c}.os.openstreetmap.org/sv/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -6.37546,
- 57.1045
- ],
- [
- -6.12998,
- 57.11183
- ],
- [
- -6.12586,
- 56.94143
- ],
- [
- -6.26045,
- 56.93892
- ],
- [
- -6.26045,
- 56.83765
- ],
- [
- -6.24259,
- 56.65806
- ],
- [
- -6.3552,
- 56.65655
- ],
- [
- -6.37649,
- 56.79029
- ],
- [
- -7.02812,
- 56.76396
- ],
- [
- -6.99636,
- 56.54246
- ],
- [
- -7.04391,
- 56.53937
- ],
- [
- -7.03206,
- 56.44201
- ],
- [
- -6.98331,
- 56.44353
- ],
- [
- -6.97593,
- 56.36063
- ],
- [
- -6.45271,
- 56.37964
- ],
- [
- -6.44035,
- 56.2013
- ],
- [
- -6.19315,
- 56.21199
- ],
- [
- -6.18354,
- 56.12483
- ],
- [
- -6.36379,
- 56.11641
- ],
- [
- -6.36173,
- 55.98258
- ],
- [
- -6.48944,
- 55.97912
- ],
- [
- -6.47777,
- 55.84134
- ],
- [
- -6.55467,
- 55.8371
- ],
- [
- -6.53545,
- 55.66049
- ],
- [
- -6.45442,
- 55.66087
- ],
- [
- -6.44412,
- 55.57285
- ],
- [
- -6.19985,
- 55.57266
- ],
- [
- -5.96845,
- 55.58857
- ],
- [
- -5.98562,
- 55.7686
- ],
- [
- -5.90665,
- 55.77169
- ],
- [
- -5.88949,
- 55.59284
- ],
- [
- -5.80983,
- 55.594
- ],
- [
- -5.79335,
- 55.41395
- ],
- [
- -5.827,
- 55.41395
- ],
- [
- -5.80915,
- 55.24247
- ],
- [
- -5.61826,
- 55.24873
- ],
- [
- -5.62101,
- 55.26713
- ],
- [
- -5.46239,
- 55.27026
- ],
- [
- -5.48642,
- 55.514
- ],
- [
- -5.43836,
- 55.51516
- ],
- [
- -5.42943,
- 55.42681
- ],
- [
- -5.24129,
- 55.43071
- ],
- [
- -5.19464,
- 54.80351
- ],
- [
- -5.07105,
- 54.80668
- ],
- [
- -5.05221,
- 54.62471
- ],
- [
- -4.3223,
- 54.65173
- ],
- [
- -4.33123,
- 54.7319
- ],
- [
- -4.06786,
- 54.73697
- ],
- [
- -4.06786,
- 54.76471
- ],
- [
- -3.55699,
- 54.77342
- ],
- [
- -3.55837,
- 54.83754
- ],
- [
- -2.42098,
- 54.84671
- ],
- [
- -2.42647,
- 55.25265
- ],
- [
- -2.03097,
- 55.25265
- ],
- [
- -2.01449,
- 55.56606
- ],
- [
- -1.76455,
- 55.56606
- ],
- [
- -1.76455,
- 55.9724
- ],
- [
- -2.35026,
- 55.96548
- ],
- [
- -2.5796,
- 56.06527
- ],
- [
- -2.58234,
- 56.37071
- ],
- [
- -2.65032,
- 56.36919
- ],
- [
- -2.65581,
- 56.50585
- ],
- [
- -2.48965,
- 56.50509
- ],
- [
- -2.42785,
- 56.55356
- ],
- [
- -2.42373,
- 56.73026
- ],
- [
- -2.1628,
- 56.73177
- ],
- [
- -2.17104,
- 56.99301
- ],
- [
- -2.00075,
- 56.99301
- ],
- [
- -1.98479,
- 57.3159
- ],
- [
- -1.83476,
- 57.31553
- ],
- [
- -1.83441,
- 57.36074
- ],
- [
- -1.75167,
- 57.36111
- ],
- [
- -1.74893,
- 57.63046
- ],
- [
- -1.83613,
- 57.63009
- ],
- [
- -1.83544,
- 57.70171
- ],
- [
- -2.00436,
- 57.70207
- ],
- [
- -2.00367,
- 57.71968
- ],
- [
- -3.22281,
- 57.71418
- ],
- [
- -3.22629,
- 57.76157
- ],
- [
- -3.51331,
- 57.77622
- ],
- [
- -3.50914,
- 57.71051
- ],
- [
- -3.84766,
- 57.70611
- ],
- [
- -3.85182,
- 57.76853
- ],
- [
- -3.79925,
- 57.76989
- ],
- [
- -3.80474,
- 57.88578
- ],
- [
- -3.85556,
- 57.88651
- ],
- [
- -3.85937,
- 57.97558
- ],
- [
- -3.79513,
- 57.97656
- ],
- [
- -3.79483,
- 58.03052
- ],
- [
- -3.69733,
- 58.03161
- ],
- [
- -3.69458,
- 58.06722
- ],
- [
- -3.52391,
- 58.07437
- ],
- [
- -3.52978,
- 58.16007
- ],
- [
- -3.35774,
- 58.16286
- ],
- [
- -3.3483,
- 58.28742
- ],
- [
- -3.07638,
- 58.29121
- ],
- [
- -3.03004,
- 58.43744
- ],
- [
- -3.01768,
- 58.65814
- ],
- [
- -2.85837,
- 58.66028
- ],
- [
- -2.86524,
- 58.7943
- ],
- [
- -2.75812,
- 58.79715
- ],
- [
- -2.76636,
- 58.87461
- ],
- [
- -2.6208,
- 58.88668
- ],
- [
- -2.62766,
- 58.97527
- ],
- [
- -2.54114,
- 58.97668
- ],
- [
- -2.54217,
- 59.0841
- ],
- [
- -2.52363,
- 59.08375
- ],
- [
- -2.52913,
- 59.1574
- ],
- [
- -2.43849,
- 59.15705
- ],
- [
- -2.4378,
- 59.246
- ],
- [
- -2.36914,
- 59.24705
- ],
- [
- -2.3688,
- 59.40748
- ],
- [
- -2.52947,
- 59.40748
- ],
- [
- -2.52741,
- 59.33436
- ],
- [
- -2.70319,
- 59.33576
- ],
- [
- -2.70525,
- 59.40608
- ],
- [
- -3.12891,
- 59.40433
- ],
- [
- -3.12411,
- 59.15951
- ],
- [
- -3.40288,
- 59.1574
- ],
- [
- -3.39464,
- 58.9689
- ],
- [
- -3.4276,
- 58.96961
- ],
- [
- -3.42572,
- 58.88526
- ],
- [
- -3.45215,
- 58.87071
- ],
- [
- -3.51017,
- 58.86911
- ],
- [
- -3.50708,
- 58.78826
- ],
- [
- -3.38555,
- 58.79004
- ],
- [
- -3.3828,
- 58.6999
- ],
- [
- -3.4494,
- 58.69847
- ],
- [
- -3.45078,
- 58.65385
- ],
- [
- -3.50159,
- 58.65421
- ],
- [
- -3.5009,
- 58.62705
- ],
- [
- -3.72612,
- 58.62383
- ],
- [
- -3.72475,
- 58.60595
- ],
- [
- -4.6476,
- 58.5895
- ],
- [
- -4.65996,
- 58.67171
- ],
- [
- -5.10697,
- 58.66135
- ],
- [
- -5.09804,
- 58.58091
- ],
- [
- -5.23743,
- 58.57769
- ],
- [
- -5.22455,
- 58.26305
- ],
- [
- -5.4127,
- 58.25818
- ],
- [
- -5.39965,
- 58.12245
- ],
- [
- -5.53286,
- 58.11991
- ],
- [
- -5.52393,
- 57.99494
- ],
- [
- -5.55346,
- 57.99422
- ],
- [
- -5.54728,
- 57.93995
- ],
- [
- -5.85696,
- 57.93157
- ],
- [
- -5.83181,
- 57.73361
- ],
- [
- -5.86374,
- 57.73224
- ],
- [
- -5.85773,
- 57.66096
- ],
- [
- -6.19624,
- 57.64975
- ],
- [
- -6.20242,
- 57.72353
- ],
- [
- -6.41666,
- 57.7162
- ],
- [
- -6.42421,
- 57.75945
- ],
- [
- -6.4764,
- 57.75725
- ],
- [
- -6.46884,
- 57.71326
- ],
- [
- -6.53339,
- 57.71216
- ],
- [
- -6.52721,
- 57.6391
- ],
- [
- -6.692,
- 57.63395
- ],
- [
- -6.68102,
- 57.54341
- ],
- [
- -6.78195,
- 57.53826
- ],
- [
- -6.75311,
- 57.31608
- ],
- [
- -6.50592,
- 57.32498
- ],
- [
- -6.49768,
- 57.28084
- ],
- [
- -6.4812,
- 57.27824
- ],
- [
- -6.47159,
- 57.19203
- ],
- [
- -6.38644,
- 57.19352
- ],
- [
- -6.37546,
- 57.1045
- ]
- ],
- [
- [
- -7.65043,
- 56.77461
- ],
- [
- -7.40667,
- 56.79304
- ],
- [
- -7.41972,
- 56.88281
- ],
- [
- -7.38676,
- 56.90268
- ],
- [
- -7.25836,
- 56.91056
- ],
- [
- -7.24806,
- 57.07141
- ],
- [
- -7.11485,
- 57.077
- ],
- [
- -7.16772,
- 57.43466
- ],
- [
- -7.0352,
- 57.44094
- ],
- [
- -7.05236,
- 57.69026
- ],
- [
- -6.86834,
- 57.6976
- ],
- [
- -6.87315,
- 57.71631
- ],
- [
- -6.70286,
- 57.72217
- ],
- [
- -6.71591,
- 57.81117
- ],
- [
- -6.53188,
- 57.81958
- ],
- [
- -6.53875,
- 57.88133
- ],
- [
- -6.22015,
- 57.89265
- ],
- [
- -6.24143,
- 58.09935
- ],
- [
- -6.12676,
- 58.10152
- ],
- [
- -6.17758,
- 58.53105
- ],
- [
- -6.46734,
- 58.52029
- ],
- [
- -6.4591,
- 58.45102
- ],
- [
- -6.63145,
- 58.44455
- ],
- [
- -6.6239,
- 58.39169
- ],
- [
- -6.79212,
- 58.38485
- ],
- [
- -6.78869,
- 58.34956
- ],
- [
- -6.90885,
- 58.34415
- ],
- [
- -6.89718,
- 58.25503
- ],
- [
- -7.20136,
- 58.24166
- ],
- [
- -7.14094,
- 57.83201
- ],
- [
- -7.37509,
- 57.82104
- ],
- [
- -7.36822,
- 57.69503
- ],
- [
- -7.6573,
- 57.68292
- ],
- [
- -7.67652,
- 57.80715
- ],
- [
- -7.79257,
- 57.80202
- ],
- [
- -7.77327,
- 57.67734
- ],
- [
- -7.70756,
- 57.68024
- ],
- [
- -7.69376,
- 57.59088
- ],
- [
- -7.75947,
- 57.58797
- ],
- [
- -7.74587,
- 57.49965
- ],
- [
- -7.51241,
- 57.5085
- ],
- [
- -7.47911,
- 57.29468
- ],
- [
- -7.52855,
- 57.2932
- ],
- [
- -7.51276,
- 57.05871
- ],
- [
- -7.61163,
- 57.05386
- ],
- [
- -7.59859,
- 56.87493
- ],
- [
- -7.66725,
- 56.87268
- ],
- [
- -7.65043,
- 56.77461
- ]
- ],
- [
- [
- -1.46238,
- 59.82831
- ],
- [
- -1.21519,
- 59.83107
- ],
- [
- -1.21519,
- 59.96194
- ],
- [
- -1.10533,
- 59.96056
- ],
- [
- -1.0986,
- 60.09498
- ],
- [
- -0.97632,
- 60.09346
- ],
- [
- -0.96352,
- 60.3476
- ],
- [
- -0.74028,
- 60.34484
- ],
- [
- -0.7147,
- 60.84722
- ],
- [
- -1.08215,
- 60.85901
- ],
- [
- -1.08455,
- 60.76944
- ],
- [
- -1.21296,
- 60.77011
- ],
- [
- -1.21579,
- 60.68079
- ],
- [
- -1.23364,
- 60.68113
- ],
- [
- -1.23467,
- 60.5909
- ],
- [
- -1.27132,
- 60.59191
- ],
- [
- -1.27338,
- 60.64581
- ],
- [
- -1.45466,
- 60.64648
- ],
- [
- -1.45397,
- 60.59224
- ],
- [
- -1.6373,
- 60.59292
- ],
- [
- -1.63954,
- 60.3507
- ],
- [
- -1.73172,
- 60.35095
- ],
- [
- -1.73172,
- 60.18067
- ],
- [
- -1.64177,
- 60.17931
- ],
- [
- -1.64177,
- 60.1448
- ],
- [
- -1.46393,
- 60.14344
- ],
- [
- -1.46238,
- 59.82831
- ]
- ],
- [
- [
- -6.21496,
- 56.97437
- ],
- [
- -6.22525,
- 57.06445
- ],
- [
- -6.29117,
- 57.06184
- ],
- [
- -6.29237,
- 57.08062
- ],
- [
- -6.62162,
- 57.06943
- ],
- [
- -6.61338,
- 57.00629
- ],
- [
- -6.46163,
- 57.01302
- ],
- [
- -6.4582,
- 56.96776
- ],
- [
- -6.21496,
- 56.97437
- ]
- ],
- [
- [
- -2.12774,
- 60.10855
- ],
- [
- -2.12803,
- 60.16207
- ],
- [
- -2.00203,
- 60.16224
- ],
- [
- -2.00174,
- 60.10872
- ],
- [
- -2.12774,
- 60.10855
- ]
- ],
- [
- [
- -6.68977,
- 56.95804
- ],
- [
- -6.69228,
- 56.9759
- ],
- [
- -6.65984,
- 56.97726
- ],
- [
- -6.65733,
- 56.9594
- ],
- [
- -6.68977,
- 56.95804
- ]
- ],
- [
- [
- -7.66365,
- 58.25846
- ],
- [
- -7.66844,
- 58.28502
- ],
- [
- -7.54896,
- 58.29098
- ],
- [
- -7.54417,
- 58.26442
- ],
- [
- -7.66365,
- 58.25846
- ]
- ],
- [
- [
- -8.65104,
- 57.78885
- ],
- [
- -8.66674,
- 57.875
- ],
- [
- -8.48272,
- 57.88449
- ],
- [
- -8.46702,
- 57.79836
- ],
- [
- -8.65104,
- 57.78885
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "end_date": "1955",
- "id": "OS-Scottish_Popular-historic",
- "max_zoom": 15,
- "min_zoom": 6,
- "name": "OS Scottish Popular historic",
- "type": "tms",
- "url": "https://ooc.openstreetmap.org/npescotland/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -0.75248,
- 51.08219
- ],
- [
- -0.75952,
- 51.08563
- ],
- [
- -0.80143,
- 51.14579
- ],
- [
- -0.83989,
- 51.14407
- ],
- [
- -0.83577,
- 51.18024
- ],
- [
- -0.85295,
- 51.20113
- ],
- [
- -0.85227,
- 51.20962
- ],
- [
- -0.84952,
- 51.2179
- ],
- [
- -0.82669,
- 51.24037
- ],
- [
- -0.8121,
- 51.24692
- ],
- [
- -0.77365,
- 51.24596
- ],
- [
- -0.75442,
- 51.23811
- ],
- [
- -0.75408,
- 51.23392
- ],
- [
- -0.74464,
- 51.23338
- ],
- [
- -0.74307,
- 51.28472
- ],
- [
- -0.7515,
- 51.30695
- ],
- [
- -0.76644,
- 51.3121
- ],
- [
- -0.78206,
- 51.32702
- ],
- [
- -0.78154,
- 51.33881
- ],
- [
- -0.73743,
- 51.37205
- ],
- [
- -0.71923,
- 51.37697
- ],
- [
- -0.67958,
- 51.3848
- ],
- [
- -0.68078,
- 51.39015
- ],
- [
- -0.65314,
- 51.39176
- ],
- [
- -0.63014,
- 51.39058
- ],
- [
- -0.62911,
- 51.39701
- ],
- [
- -0.62344,
- 51.39776
- ],
- [
- -0.61314,
- 51.42956
- ],
- [
- -0.60025,
- 51.44591
- ],
- [
- -0.58671,
- 51.44454
- ],
- [
- -0.57624,
- 51.4532
- ],
- [
- -0.56268,
- 51.45235
- ],
- [
- -0.54774,
- 51.447
- ],
- [
- -0.53727,
- 51.44486
- ],
- [
- -0.5371,
- 51.45267
- ],
- [
- -0.54396,
- 51.45459
- ],
- [
- -0.54053,
- 51.46989
- ],
- [
- -0.53092,
- 51.47609
- ],
- [
- -0.50912,
- 51.47448
- ],
- [
- -0.5086,
- 51.46957
- ],
- [
- -0.49006,
- 51.46828
- ],
- [
- -0.45264,
- 51.46069
- ],
- [
- -0.44869,
- 51.44293
- ],
- [
- -0.44148,
- 51.44186
- ],
- [
- -0.44183,
- 51.43694
- ],
- [
- -0.41127,
- 51.43801
- ],
- [
- -0.40149,
- 51.42795
- ],
- [
- -0.38071,
- 51.42624
- ],
- [
- -0.38054,
- 51.41617
- ],
- [
- -0.34913,
- 51.41382
- ],
- [
- -0.3275,
- 51.40375
- ],
- [
- -0.30398,
- 51.39904
- ],
- [
- -0.30192,
- 51.37547
- ],
- [
- -0.30948,
- 51.36969
- ],
- [
- -0.31119,
- 51.35297
- ],
- [
- -0.29557,
- 51.35415
- ],
- [
- -0.29231,
- 51.36733
- ],
- [
- -0.2851,
- 51.36808
- ],
- [
- -0.27875,
- 51.37719
- ],
- [
- -0.26553,
- 51.38372
- ],
- [
- -0.24115,
- 51.3848
- ],
- [
- -0.21231,
- 51.36283
- ],
- [
- -0.21077,
- 51.34986
- ],
- [
- -0.19086,
- 51.35029
- ],
- [
- -0.15429,
- 51.33388
- ],
- [
- -0.14966,
- 51.30577
- ],
- [
- -0.10743,
- 51.29665
- ],
- [
- -0.08872,
- 51.30996
- ],
- [
- -0.08786,
- 51.32208
- ],
- [
- -0.0652,
- 51.32154
- ],
- [
- -0.06417,
- 51.32648
- ],
- [
- -0.05198,
- 51.32637
- ],
- [
- -0.05284,
- 51.33463
- ],
- [
- -0.03308,
- 51.34309
- ],
- [
- 0.00192,
- 51.33763
- ],
- [
- 0.01188,
- 51.3282
- ],
- [
- 0.01393,
- 51.29944
- ],
- [
- 0.02029,
- 51.29944
- ],
- [
- 0.02406,
- 51.30727
- ],
- [
- 0.03316,
- 51.30867
- ],
- [
- 0.04552,
- 51.30545
- ],
- [
- 0.05239,
- 51.28774
- ],
- [
- 0.06166,
- 51.25778
- ],
- [
- 0.06406,
- 51.24155
- ],
- [
- 0.04621,
- 51.21263
- ],
- [
- 0.04071,
- 51.21091
- ],
- [
- 0.04483,
- 51.19898
- ],
- [
- 0.04947,
- 51.19973
- ],
- [
- 0.05582,
- 51.19446
- ],
- [
- 0.06114,
- 51.17907
- ],
- [
- 0.06234,
- 51.15421
- ],
- [
- 0.05771,
- 51.14171
- ],
- [
- 0.02046,
- 51.13654
- ],
- [
- -0.0446,
- 51.13364
- ],
- [
- -0.1567,
- 51.13525
- ],
- [
- -0.15721,
- 51.129
- ],
- [
- -0.22879,
- 51.11834
- ],
- [
- -0.24733,
- 51.11834
- ],
- [
- -0.25008,
- 51.12114
- ],
- [
- -0.29935,
- 51.1137
- ],
- [
- -0.32218,
- 51.11198
- ],
- [
- -0.32235,
- 51.10584
- ],
- [
- -0.3596,
- 51.10196
- ],
- [
- -0.35891,
- 51.11133
- ],
- [
- -0.38638,
- 51.11176
- ],
- [
- -0.3869,
- 51.10625
- ],
- [
- -0.4281,
- 51.09472
- ],
- [
- -0.48568,
- 51.09516
- ],
- [
- -0.48713,
- 51.08723
- ],
- [
- -0.52974,
- 51.08654
- ],
- [
- -0.53023,
- 51.07899
- ],
- [
- -0.61046,
- 51.07655
- ],
- [
- -0.60997,
- 51.08067
- ],
- [
- -0.6578,
- 51.07922
- ],
- [
- -0.65828,
- 51.07434
- ],
- [
- -0.68365,
- 51.07075
- ],
- [
- -0.6998,
- 51.07083
- ],
- [
- -0.72966,
- 51.07449
- ],
- [
- -0.75248,
- 51.08219
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "GB",
- "end_date": "2009",
- "id": "Surrey-Air_Survey",
- "max_zoom": 21,
- "min_zoom": 8,
- "name": "Surrey Air Survey",
- "start_date": "2007",
- "type": "tms",
- "url": "https://{switch:a,b,c}.surrey.aerial.openstreetmap.org.uk/layer/gb_surrey_aerial/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.2996,
- 46.38154
- ],
- [
- 16.2369,
- 46.4981
- ],
- [
- 16.36449,
- 46.55763
- ],
- [
- 16.52243,
- 46.48295
- ],
- [
- 16.66846,
- 46.46184
- ],
- [
- 16.70966,
- 46.40541
- ],
- [
- 16.87361,
- 46.35365
- ],
- [
- 16.89119,
- 46.28228
- ],
- [
- 16.97844,
- 46.22821
- ],
- [
- 17.16198,
- 46.17292
- ],
- [
- 17.18392,
- 46.11177
- ],
- [
- 17.22194,
- 46.11398
- ],
- [
- 17.29813,
- 46.03422
- ],
- [
- 17.26272,
- 46.01265
- ],
- [
- 17.37936,
- 45.99119
- ],
- [
- 17.41445,
- 45.93808
- ],
- [
- 17.57404,
- 45.93991
- ],
- [
- 17.67025,
- 45.83833
- ],
- [
- 17.83202,
- 45.81131
- ],
- [
- 17.86526,
- 45.77067
- ],
- [
- 17.90763,
- 45.79537
- ],
- [
- 18.08054,
- 45.76834
- ],
- [
- 18.18763,
- 45.79041
- ],
- [
- 18.34028,
- 45.75291
- ],
- [
- 18.36506,
- 45.77628
- ],
- [
- 18.44336,
- 45.74187
- ],
- [
- 18.48413,
- 45.79491
- ],
- [
- 18.55212,
- 45.79695
- ],
- [
- 18.61719,
- 45.84118
- ],
- [
- 18.65729,
- 45.91935
- ],
- [
- 18.79064,
- 45.88142
- ],
- [
- 18.82036,
- 45.91772
- ],
- [
- 18.90217,
- 45.92088
- ],
- [
- 18.87259,
- 45.89554
- ],
- [
- 18.90522,
- 45.86687
- ],
- [
- 18.86071,
- 45.85998
- ],
- [
- 18.85158,
- 45.81307
- ],
- [
- 18.90807,
- 45.82487
- ],
- [
- 18.92214,
- 45.78927
- ],
- [
- 18.85405,
- 45.77335
- ],
- [
- 18.91634,
- 45.74661
- ],
- [
- 18.96932,
- 45.76765
- ],
- [
- 18.98301,
- 45.74223
- ],
- [
- 18.9716,
- 45.69436
- ],
- [
- 18.92081,
- 45.7012
- ],
- [
- 18.97826,
- 45.65389
- ],
- [
- 18.90122,
- 45.57133
- ],
- [
- 18.94963,
- 45.53863
- ],
- [
- 19.02191,
- 45.55954
- ],
- [
- 19.10712,
- 45.51124
- ],
- [
- 19.08297,
- 45.48304
- ],
- [
- 19.00346,
- 45.49158
- ],
- [
- 19.03342,
- 45.40972
- ],
- [
- 18.97303,
- 45.38127
- ],
- [
- 19.08915,
- 45.34237
- ],
- [
- 19.17636,
- 45.27054
- ],
- [
- 19.26699,
- 45.28238
- ],
- [
- 19.26243,
- 45.24597
- ],
- [
- 19.42202,
- 45.23666
- ],
- [
- 19.44988,
- 45.19546
- ],
- [
- 19.43162,
- 45.16858
- ],
- [
- 19.35639,
- 45.16308
- ],
- [
- 19.31769,
- 45.20625
- ],
- [
- 19.28602,
- 45.20377
- ],
- [
- 19.28915,
- 45.16938
- ],
- [
- 19.1756,
- 45.20035
- ],
- [
- 19.19709,
- 45.17897
- ],
- [
- 19.14222,
- 45.12726
- ],
- [
- 19.08905,
- 45.14323
- ],
- [
- 19.10612,
- 45.01045
- ],
- [
- 19.05765,
- 44.97822
- ],
- [
- 19.14008,
- 44.98338
- ],
- [
- 19.16024,
- 44.95324
- ],
- [
- 19.07103,
- 44.89893
- ],
- [
- 19.00562,
- 44.91331
- ],
- [
- 19.02647,
- 44.85137
- ],
- [
- 18.96225,
- 44.84597
- ],
- [
- 18.85055,
- 44.849
- ],
- [
- 18.7633,
- 44.8992
- ],
- [
- 18.74471,
- 44.93786
- ],
- [
- 18.79579,
- 44.93987
- ],
- [
- 18.78901,
- 44.99224
- ],
- [
- 18.72679,
- 44.99017
- ],
- [
- 18.66466,
- 45.05817
- ],
- [
- 18.58771,
- 45.08384
- ],
- [
- 18.53161,
- 45.03995
- ],
- [
- 18.41924,
- 45.10518
- ],
- [
- 18.32169,
- 45.09696
- ],
- [
- 18.25755,
- 45.13614
- ],
- [
- 18.19994,
- 45.07562
- ],
- [
- 18.12115,
- 45.07621
- ],
- [
- 18.06597,
- 45.13909
- ],
- [
- 18.03733,
- 45.12196
- ],
- [
- 18.0097,
- 45.14872
- ],
- [
- 17.85061,
- 45.04019
- ],
- [
- 17.66363,
- 45.13094
- ],
- [
- 17.6005,
- 45.10181
- ],
- [
- 17.5495,
- 45.12663
- ],
- [
- 17.48821,
- 45.10589
- ],
- [
- 17.44509,
- 45.15769
- ],
- [
- 17.41754,
- 45.13253
- ],
- [
- 17.3426,
- 45.13809
- ],
- [
- 17.27318,
- 45.18585
- ],
- [
- 17.25141,
- 45.1444
- ],
- [
- 17.16542,
- 45.14694
- ],
- [
- 17.03437,
- 45.21983
- ],
- [
- 16.93264,
- 45.22703
- ],
- [
- 16.9282,
- 45.27307
- ],
- [
- 16.82178,
- 45.1824
- ],
- [
- 16.59808,
- 45.22881
- ],
- [
- 16.49998,
- 45.21198
- ],
- [
- 16.46679,
- 45.14146
- ],
- [
- 16.39821,
- 45.11157
- ],
- [
- 16.3583,
- 45.00232
- ],
- [
- 16.28569,
- 44.9923
- ],
- [
- 16.08617,
- 45.10185
- ],
- [
- 16.01122,
- 45.21415
- ],
- [
- 15.84351,
- 45.22157
- ],
- [
- 15.79069,
- 45.19066
- ],
- [
- 15.79588,
- 45.11433
- ],
- [
- 15.75122,
- 45.06121
- ],
- [
- 15.78847,
- 44.97482
- ],
- [
- 15.74281,
- 44.93655
- ],
- [
- 15.79834,
- 44.84699
- ],
- [
- 15.73551,
- 44.82288
- ],
- [
- 15.82615,
- 44.72649
- ],
- [
- 15.90631,
- 44.74978
- ],
- [
- 16.0592,
- 44.627
- ],
- [
- 16.02335,
- 44.56378
- ],
- [
- 16.12673,
- 44.51464
- ],
- [
- 16.17742,
- 44.40236
- ],
- [
- 16.13524,
- 44.38112
- ],
- [
- 16.22406,
- 44.3489
- ],
- [
- 16.1923,
- 44.29936
- ],
- [
- 16.21765,
- 44.21695
- ],
- [
- 16.37192,
- 44.08445
- ],
- [
- 16.4303,
- 44.08448
- ],
- [
- 16.43997,
- 44.03188
- ],
- [
- 16.50428,
- 44.02631
- ],
- [
- 16.55289,
- 43.9553
- ],
- [
- 16.71315,
- 43.85609
- ],
- [
- 16.7541,
- 43.77221
- ],
- [
- 16.81478,
- 43.75664
- ],
- [
- 17.0165,
- 43.5733
- ],
- [
- 17.15204,
- 43.49746
- ],
- [
- 17.28532,
- 43.46933
- ],
- [
- 17.25664,
- 43.40208
- ],
- [
- 17.341,
- 43.25936
- ],
- [
- 17.42366,
- 43.23203
- ],
- [
- 17.43346,
- 43.18123
- ],
- [
- 17.64429,
- 43.09027
- ],
- [
- 17.71408,
- 42.97496
- ],
- [
- 17.54079,
- 42.92978
- ],
- [
- 17.64304,
- 42.88436
- ],
- [
- 17.68764,
- 42.92563
- ],
- [
- 17.84605,
- 42.90453
- ],
- [
- 17.89327,
- 42.81196
- ],
- [
- 18.10392,
- 42.71713
- ],
- [
- 18.24679,
- 42.60541
- ],
- [
- 18.37062,
- 42.61669
- ],
- [
- 18.43954,
- 42.56497
- ],
- [
- 18.43987,
- 42.48498
- ],
- [
- 18.55128,
- 42.40206
- ],
- [
- 18.5331,
- 42.38603
- ],
- [
- 18.06182,
- 42.6374
- ],
- [
- 17.06039,
- 42.69152
- ],
- [
- 16.35138,
- 42.37123
- ],
- [
- 16.23677,
- 42.38453
- ],
- [
- 16.39023,
- 42.73995
- ],
- [
- 15.43075,
- 43.08152
- ],
- [
- 15.63066,
- 43.43802
- ],
- [
- 14.62071,
- 44.3094
- ],
- [
- 14.29287,
- 44.49332
- ],
- [
- 14.00808,
- 44.80011
- ],
- [
- 13.88603,
- 44.75271
- ],
- [
- 13.89153,
- 44.8023
- ],
- [
- 13.70853,
- 44.9134
- ],
- [
- 13.72398,
- 44.94888
- ],
- [
- 13.7959,
- 44.92877
- ],
- [
- 13.76116,
- 44.98088
- ],
- [
- 13.60777,
- 45.03763
- ],
- [
- 13.56139,
- 45.19789
- ],
- [
- 13.58211,
- 45.24115
- ],
- [
- 13.48227,
- 45.48675
- ],
- [
- 13.5136,
- 45.5099
- ],
- [
- 13.67463,
- 45.44773
- ],
- [
- 13.76432,
- 45.47054
- ],
- [
- 13.88238,
- 45.429
- ],
- [
- 13.98027,
- 45.45832
- ],
- [
- 13.95822,
- 45.5071
- ],
- [
- 14.00195,
- 45.52298
- ],
- [
- 14.07602,
- 45.48728
- ],
- [
- 14.20335,
- 45.47325
- ],
- [
- 14.24884,
- 45.50803
- ],
- [
- 14.32381,
- 45.47413
- ],
- [
- 14.48749,
- 45.54141
- ],
- [
- 14.4953,
- 45.60824
- ],
- [
- 14.56821,
- 45.67686
- ],
- [
- 14.69391,
- 45.58134
- ],
- [
- 14.69169,
- 45.53064
- ],
- [
- 14.79864,
- 45.50514
- ],
- [
- 14.82058,
- 45.46316
- ],
- [
- 14.90782,
- 45.4814
- ],
- [
- 14.93136,
- 45.53217
- ],
- [
- 15.08738,
- 45.48583
- ],
- [
- 15.16778,
- 45.42529
- ],
- [
- 15.26912,
- 45.46833
- ],
- [
- 15.3438,
- 45.45993
- ],
- [
- 15.37766,
- 45.48781
- ],
- [
- 15.29879,
- 45.53386
- ],
- [
- 15.27225,
- 45.6053
- ],
- [
- 15.39836,
- 45.64787
- ],
- [
- 15.36734,
- 45.68233
- ],
- [
- 15.34575,
- 45.66692
- ],
- [
- 15.35424,
- 45.7101
- ],
- [
- 15.32451,
- 45.67005
- ],
- [
- 15.23367,
- 45.72238
- ],
- [
- 15.47062,
- 45.79902
- ],
- [
- 15.46272,
- 45.82041
- ],
- [
- 15.5364,
- 45.85015
- ],
- [
- 15.64191,
- 45.82462
- ],
- [
- 15.69817,
- 45.85137
- ],
- [
- 15.67547,
- 45.90472
- ],
- [
- 15.72545,
- 46.04492
- ],
- [
- 15.6009,
- 46.1108
- ],
- [
- 15.63844,
- 46.21388
- ],
- [
- 15.76893,
- 46.21269
- ],
- [
- 15.79102,
- 46.2621
- ],
- [
- 16.01284,
- 46.3133
- ],
- [
- 16.07131,
- 46.3449
- ],
- [
- 16.05625,
- 46.39644
- ],
- [
- 16.2996,
- 46.38154
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "category": "historicphoto",
- "country_code": "HR",
- "end_date": "2011",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-dof-2011",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: Croatia 2011 Aerial imagery",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "2011",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/dof/ows?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DOF5_2011&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.66846,
- 46.46184
- ],
- [
- 16.70966,
- 46.40541
- ],
- [
- 16.83743,
- 46.37895
- ],
- [
- 16.91732,
- 46.26434
- ],
- [
- 17.16198,
- 46.17292
- ],
- [
- 17.18392,
- 46.11177
- ],
- [
- 17.22194,
- 46.11398
- ],
- [
- 17.29813,
- 46.03422
- ],
- [
- 17.26272,
- 46.01265
- ],
- [
- 17.37936,
- 45.99119
- ],
- [
- 17.39024,
- 45.93723
- ],
- [
- 17.57404,
- 45.93991
- ],
- [
- 17.67025,
- 45.83833
- ],
- [
- 17.83202,
- 45.81131
- ],
- [
- 17.86526,
- 45.77067
- ],
- [
- 17.90763,
- 45.79537
- ],
- [
- 18.08054,
- 45.76834
- ],
- [
- 18.18763,
- 45.79041
- ],
- [
- 18.34028,
- 45.75291
- ],
- [
- 18.36506,
- 45.77628
- ],
- [
- 18.44336,
- 45.74187
- ],
- [
- 18.48413,
- 45.79491
- ],
- [
- 18.55212,
- 45.79695
- ],
- [
- 18.61719,
- 45.84118
- ],
- [
- 18.65729,
- 45.91935
- ],
- [
- 18.79064,
- 45.88142
- ],
- [
- 18.81521,
- 45.91536
- ],
- [
- 18.87237,
- 45.91897
- ],
- [
- 18.85574,
- 45.7726
- ],
- [
- 18.92405,
- 45.74455
- ],
- [
- 18.90242,
- 45.57188
- ],
- [
- 18.9269,
- 45.5301
- ],
- [
- 19.00355,
- 45.53163
- ],
- [
- 18.97987,
- 45.34745
- ],
- [
- 19.06927,
- 45.34532
- ],
- [
- 19.15525,
- 45.27971
- ],
- [
- 19.16362,
- 45.16268
- ],
- [
- 19.07065,
- 45.14698
- ],
- [
- 19.10952,
- 45.05083
- ],
- [
- 19.05765,
- 44.97822
- ],
- [
- 19.14008,
- 44.98338
- ],
- [
- 19.16024,
- 44.95324
- ],
- [
- 19.07103,
- 44.89893
- ],
- [
- 18.99675,
- 44.90679
- ],
- [
- 19.02647,
- 44.85137
- ],
- [
- 18.83925,
- 44.8547
- ],
- [
- 18.74655,
- 44.9263
- ],
- [
- 18.79579,
- 44.93987
- ],
- [
- 18.78901,
- 44.99224
- ],
- [
- 18.72679,
- 44.99017
- ],
- [
- 18.71155,
- 45.03475
- ],
- [
- 18.58771,
- 45.08384
- ],
- [
- 18.53161,
- 45.03995
- ],
- [
- 18.41924,
- 45.10518
- ],
- [
- 18.32169,
- 45.09696
- ],
- [
- 18.25755,
- 45.13614
- ],
- [
- 18.19994,
- 45.07562
- ],
- [
- 18.12115,
- 45.07621
- ],
- [
- 18.06597,
- 45.13909
- ],
- [
- 18.03733,
- 45.12196
- ],
- [
- 18.0097,
- 45.14872
- ],
- [
- 17.85061,
- 45.04019
- ],
- [
- 17.66363,
- 45.13094
- ],
- [
- 17.6005,
- 45.10181
- ],
- [
- 17.5495,
- 45.12663
- ],
- [
- 17.48821,
- 45.10589
- ],
- [
- 17.44509,
- 45.15769
- ],
- [
- 17.41754,
- 45.13253
- ],
- [
- 17.3426,
- 45.13809
- ],
- [
- 17.27318,
- 45.18585
- ],
- [
- 17.25141,
- 45.1444
- ],
- [
- 17.16542,
- 45.14694
- ],
- [
- 17.03437,
- 45.21983
- ],
- [
- 16.93264,
- 45.22703
- ],
- [
- 16.9282,
- 45.27307
- ],
- [
- 16.82178,
- 45.1824
- ],
- [
- 16.52186,
- 45.22151
- ],
- [
- 16.46768,
- 45.13997
- ],
- [
- 16.3992,
- 45.11095
- ],
- [
- 16.35817,
- 45.00121
- ],
- [
- 16.28569,
- 44.9923
- ],
- [
- 16.08617,
- 45.10185
- ],
- [
- 16.01122,
- 45.21415
- ],
- [
- 15.84351,
- 45.22157
- ],
- [
- 15.77021,
- 45.16383
- ],
- [
- 15.79588,
- 45.11433
- ],
- [
- 15.75122,
- 45.06121
- ],
- [
- 15.78847,
- 44.97482
- ],
- [
- 15.74281,
- 44.93655
- ],
- [
- 15.79834,
- 44.84699
- ],
- [
- 15.73551,
- 44.82288
- ],
- [
- 15.82615,
- 44.72649
- ],
- [
- 15.90631,
- 44.74978
- ],
- [
- 16.03586,
- 44.65529
- ],
- [
- 16.06263,
- 44.60805
- ],
- [
- 16.02335,
- 44.56378
- ],
- [
- 16.12673,
- 44.51464
- ],
- [
- 16.17742,
- 44.40236
- ],
- [
- 16.13524,
- 44.38112
- ],
- [
- 16.22406,
- 44.3489
- ],
- [
- 16.1923,
- 44.29936
- ],
- [
- 16.21765,
- 44.21695
- ],
- [
- 16.32072,
- 44.11655
- ],
- [
- 16.4303,
- 44.08448
- ],
- [
- 16.43997,
- 44.03188
- ],
- [
- 16.50428,
- 44.02631
- ],
- [
- 16.60009,
- 43.91158
- ],
- [
- 16.72161,
- 43.84086
- ],
- [
- 16.7541,
- 43.77221
- ],
- [
- 16.81478,
- 43.75664
- ],
- [
- 17.0165,
- 43.5733
- ],
- [
- 17.15204,
- 43.49746
- ],
- [
- 17.28139,
- 43.47296
- ],
- [
- 17.25664,
- 43.40208
- ],
- [
- 17.34462,
- 43.25537
- ],
- [
- 17.42366,
- 43.23203
- ],
- [
- 17.43346,
- 43.18123
- ],
- [
- 17.64429,
- 43.09027
- ],
- [
- 17.71384,
- 42.9707
- ],
- [
- 17.52028,
- 42.92815
- ],
- [
- 17.64361,
- 42.88081
- ],
- [
- 17.68764,
- 42.92563
- ],
- [
- 17.84605,
- 42.90453
- ],
- [
- 17.89327,
- 42.81196
- ],
- [
- 18.10392,
- 42.71713
- ],
- [
- 18.24679,
- 42.60541
- ],
- [
- 18.36845,
- 42.61827
- ],
- [
- 18.43954,
- 42.56497
- ],
- [
- 18.43987,
- 42.48498
- ],
- [
- 18.55131,
- 42.40193
- ],
- [
- 18.53311,
- 42.38604
- ],
- [
- 18.06174,
- 42.63737
- ],
- [
- 17.06039,
- 42.69152
- ],
- [
- 16.35138,
- 42.37123
- ],
- [
- 16.23677,
- 42.38453
- ],
- [
- 16.39023,
- 42.73995
- ],
- [
- 15.43075,
- 43.08152
- ],
- [
- 15.63066,
- 43.43802
- ],
- [
- 14.62071,
- 44.3094
- ],
- [
- 14.29287,
- 44.49332
- ],
- [
- 13.99641,
- 44.82337
- ],
- [
- 14.00808,
- 44.80011
- ],
- [
- 13.88603,
- 44.75271
- ],
- [
- 13.89153,
- 44.8023
- ],
- [
- 13.70853,
- 44.9134
- ],
- [
- 13.70336,
- 44.94822
- ],
- [
- 13.76862,
- 44.94342
- ],
- [
- 13.76116,
- 44.98088
- ],
- [
- 13.60777,
- 45.03763
- ],
- [
- 13.56139,
- 45.19789
- ],
- [
- 13.58211,
- 45.24115
- ],
- [
- 13.48227,
- 45.48675
- ],
- [
- 13.50899,
- 45.50995
- ],
- [
- 13.62167,
- 45.43361
- ],
- [
- 13.8722,
- 45.40671
- ],
- [
- 14.58984,
- 45.47778
- ],
- [
- 15.19316,
- 45.40185
- ],
- [
- 15.3636,
- 45.44264
- ],
- [
- 15.40276,
- 45.47625
- ],
- [
- 15.43753,
- 45.70368
- ],
- [
- 15.53001,
- 45.68943
- ],
- [
- 15.52357,
- 45.74392
- ],
- [
- 15.72324,
- 45.8379
- ],
- [
- 15.76007,
- 46.11836
- ],
- [
- 15.82492,
- 46.11357
- ],
- [
- 15.80066,
- 46.18612
- ],
- [
- 15.903,
- 46.22
- ],
- [
- 15.88479,
- 46.24679
- ],
- [
- 16.17091,
- 46.34181
- ],
- [
- 16.18926,
- 46.3143
- ],
- [
- 16.30466,
- 46.35117
- ],
- [
- 16.23649,
- 46.48339
- ],
- [
- 16.26168,
- 46.5177
- ],
- [
- 16.3701,
- 46.55838
- ],
- [
- 16.66846,
- 46.46184
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "category": "historicphoto",
- "country_code": "HR",
- "end_date": "2016",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-dof-2014-2016",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: Croatia 2014-2016 Aerial imagery",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "2014",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/inspire/orthophoto_2014-2016/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.OrthoImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.30898,
- 45.22981
- ],
- [
- 16.59808,
- 45.22881
- ],
- [
- 16.81516,
- 45.18187
- ],
- [
- 16.93331,
- 45.27307
- ],
- [
- 16.93264,
- 45.22703
- ],
- [
- 17.03437,
- 45.21983
- ],
- [
- 17.16542,
- 45.14694
- ],
- [
- 17.25141,
- 45.1444
- ],
- [
- 17.27318,
- 45.18585
- ],
- [
- 17.3426,
- 45.13809
- ],
- [
- 17.41754,
- 45.13253
- ],
- [
- 17.44509,
- 45.15769
- ],
- [
- 17.48821,
- 45.10589
- ],
- [
- 17.5495,
- 45.12663
- ],
- [
- 17.6005,
- 45.10181
- ],
- [
- 17.66363,
- 45.13094
- ],
- [
- 17.85061,
- 45.04019
- ],
- [
- 18.0097,
- 45.14872
- ],
- [
- 18.03733,
- 45.12196
- ],
- [
- 18.06597,
- 45.13909
- ],
- [
- 18.12115,
- 45.07621
- ],
- [
- 18.19994,
- 45.07562
- ],
- [
- 18.25755,
- 45.13614
- ],
- [
- 18.32169,
- 45.09696
- ],
- [
- 18.41924,
- 45.10518
- ],
- [
- 18.53161,
- 45.03995
- ],
- [
- 18.58771,
- 45.08384
- ],
- [
- 18.66466,
- 45.05817
- ],
- [
- 18.72679,
- 44.99017
- ],
- [
- 18.78901,
- 44.99224
- ],
- [
- 18.79579,
- 44.93987
- ],
- [
- 18.74471,
- 44.93786
- ],
- [
- 18.7633,
- 44.8992
- ],
- [
- 18.85055,
- 44.849
- ],
- [
- 18.92499,
- 44.8468
- ],
- [
- 19.02647,
- 44.85137
- ],
- [
- 18.99675,
- 44.90679
- ],
- [
- 19.09204,
- 44.9164
- ],
- [
- 19.09514,
- 44.97513
- ],
- [
- 19.06357,
- 44.97797
- ],
- [
- 19.09656,
- 44.99355
- ],
- [
- 19.09354,
- 45.1395
- ],
- [
- 19.13491,
- 45.12692
- ],
- [
- 19.21077,
- 45.1852
- ],
- [
- 19.24803,
- 45.17269
- ],
- [
- 19.29316,
- 45.20196
- ],
- [
- 19.40162,
- 45.19073
- ],
- [
- 19.40389,
- 45.23548
- ],
- [
- 19.18113,
- 45.27092
- ],
- [
- 19.09426,
- 45.33823
- ],
- [
- 18.97736,
- 45.37577
- ],
- [
- 19.01538,
- 45.40732
- ],
- [
- 18.99591,
- 45.48099
- ],
- [
- 19.05766,
- 45.48369
- ],
- [
- 19.07831,
- 45.51814
- ],
- [
- 18.94705,
- 45.53685
- ],
- [
- 18.90242,
- 45.57188
- ],
- [
- 18.95593,
- 45.62403
- ],
- [
- 18.96012,
- 45.68346
- ],
- [
- 18.92202,
- 45.7023
- ],
- [
- 18.95919,
- 45.69186
- ],
- [
- 18.96016,
- 45.73185
- ],
- [
- 18.85574,
- 45.7726
- ],
- [
- 18.8835,
- 45.92227
- ],
- [
- 18.81521,
- 45.91536
- ],
- [
- 18.79801,
- 45.88151
- ],
- [
- 18.65729,
- 45.91935
- ],
- [
- 18.61719,
- 45.84118
- ],
- [
- 18.55212,
- 45.79695
- ],
- [
- 18.48413,
- 45.79491
- ],
- [
- 18.44336,
- 45.74187
- ],
- [
- 18.36506,
- 45.77628
- ],
- [
- 18.34028,
- 45.75291
- ],
- [
- 18.18763,
- 45.79041
- ],
- [
- 18.08054,
- 45.76834
- ],
- [
- 17.90763,
- 45.79537
- ],
- [
- 17.86526,
- 45.77067
- ],
- [
- 17.83202,
- 45.81131
- ],
- [
- 17.67025,
- 45.83833
- ],
- [
- 17.57404,
- 45.93991
- ],
- [
- 17.39024,
- 45.93723
- ],
- [
- 17.37936,
- 45.99119
- ],
- [
- 17.26272,
- 46.01265
- ],
- [
- 17.29813,
- 46.03422
- ],
- [
- 17.22194,
- 46.11398
- ],
- [
- 17.18392,
- 46.11177
- ],
- [
- 17.16198,
- 46.17292
- ],
- [
- 16.89119,
- 46.28228
- ],
- [
- 16.83743,
- 46.37895
- ],
- [
- 16.74466,
- 46.38981
- ],
- [
- 16.66846,
- 46.46184
- ],
- [
- 16.52243,
- 46.48295
- ],
- [
- 16.35161,
- 46.55198
- ],
- [
- 16.2364,
- 46.48318
- ],
- [
- 16.30489,
- 46.3793
- ],
- [
- 16.30898,
- 45.22981
- ]
- ],
- [
- [
- 15.45776,
- 43.0729
- ],
- [
- 15.45639,
- 43.10499
- ],
- [
- 16.30096,
- 43.2312
- ],
- [
- 15.8828,
- 43.53461
- ],
- [
- 15.86851,
- 43.58153
- ],
- [
- 15.91202,
- 43.57501
- ],
- [
- 15.91328,
- 43.60843
- ],
- [
- 16.12836,
- 43.60933
- ],
- [
- 16.12499,
- 44.14937
- ],
- [
- 16.3091,
- 44.14984
- ],
- [
- 16.37192,
- 44.08445
- ],
- [
- 16.4303,
- 44.08448
- ],
- [
- 16.43997,
- 44.03188
- ],
- [
- 16.50428,
- 44.02631
- ],
- [
- 16.55289,
- 43.9553
- ],
- [
- 16.71315,
- 43.85609
- ],
- [
- 16.7541,
- 43.77221
- ],
- [
- 16.81478,
- 43.75664
- ],
- [
- 17.0165,
- 43.5733
- ],
- [
- 17.15204,
- 43.49746
- ],
- [
- 17.22801,
- 43.49976
- ],
- [
- 17.28532,
- 43.46933
- ],
- [
- 17.25664,
- 43.40208
- ],
- [
- 17.341,
- 43.25936
- ],
- [
- 17.42366,
- 43.23203
- ],
- [
- 17.43346,
- 43.18123
- ],
- [
- 17.64429,
- 43.09027
- ],
- [
- 17.71408,
- 42.97496
- ],
- [
- 17.52028,
- 42.92815
- ],
- [
- 17.64361,
- 42.88081
- ],
- [
- 17.68764,
- 42.92563
- ],
- [
- 17.7879,
- 42.89439
- ],
- [
- 17.80648,
- 42.91838
- ],
- [
- 17.84605,
- 42.90453
- ],
- [
- 17.90334,
- 42.8331
- ],
- [
- 17.89327,
- 42.81196
- ],
- [
- 18.10392,
- 42.71713
- ],
- [
- 18.24679,
- 42.60541
- ],
- [
- 18.36845,
- 42.61827
- ],
- [
- 18.43954,
- 42.56497
- ],
- [
- 18.43987,
- 42.48498
- ],
- [
- 18.50708,
- 42.4355
- ],
- [
- 18.48158,
- 42.4112
- ],
- [
- 18.0617,
- 42.63737
- ],
- [
- 17.06039,
- 42.69152
- ],
- [
- 16.34491,
- 42.37123
- ],
- [
- 16.22612,
- 42.3834
- ],
- [
- 16.39023,
- 42.73995
- ],
- [
- 15.45776,
- 43.0729
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "HR",
- "end_date": "2017",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-dof-2017-s-e",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: Croatia 2017 South+East Aerial imagery",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "2017",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/inspire/orthophoto_2017/ows?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.OrthoImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.29963,
- 46.3815
- ],
- [
- 16.30862,
- 45.22967
- ],
- [
- 16.49996,
- 45.22994
- ],
- [
- 16.48159,
- 45.15965
- ],
- [
- 16.39821,
- 45.11157
- ],
- [
- 16.3583,
- 45.00232
- ],
- [
- 16.28569,
- 44.9923
- ],
- [
- 16.17582,
- 45.03205
- ],
- [
- 16.16192,
- 45.07231
- ],
- [
- 16.08175,
- 45.10321
- ],
- [
- 16.00794,
- 45.213
- ],
- [
- 15.84108,
- 45.21869
- ],
- [
- 15.77476,
- 45.17354
- ],
- [
- 15.79516,
- 45.11278
- ],
- [
- 15.75122,
- 45.06121
- ],
- [
- 15.79001,
- 44.99352
- ],
- [
- 15.74281,
- 44.93655
- ],
- [
- 15.79834,
- 44.84699
- ],
- [
- 15.73551,
- 44.82288
- ],
- [
- 15.82615,
- 44.72649
- ],
- [
- 15.90631,
- 44.74978
- ],
- [
- 15.9767,
- 44.6772
- ],
- [
- 16.0397,
- 44.654
- ],
- [
- 16.0651,
- 44.60538
- ],
- [
- 16.0294,
- 44.56185
- ],
- [
- 16.12724,
- 44.51585
- ],
- [
- 16.14819,
- 44.42716
- ],
- [
- 16.17977,
- 44.4019
- ],
- [
- 16.13754,
- 44.38031
- ],
- [
- 16.22406,
- 44.3489
- ],
- [
- 16.19797,
- 44.272
- ],
- [
- 16.30577,
- 44.15084
- ],
- [
- 16.12495,
- 44.1494
- ],
- [
- 16.12815,
- 43.60943
- ],
- [
- 15.52195,
- 43.61231
- ],
- [
- 14.78331,
- 44.11942
- ],
- [
- 14.28198,
- 44.49521
- ],
- [
- 13.88603,
- 44.75271
- ],
- [
- 13.80363,
- 44.85648
- ],
- [
- 13.73428,
- 44.88604
- ],
- [
- 13.70905,
- 44.94646
- ],
- [
- 13.76862,
- 44.94342
- ],
- [
- 13.76673,
- 44.96128
- ],
- [
- 13.64605,
- 45.03605
- ],
- [
- 13.60777,
- 45.03763
- ],
- [
- 13.55372,
- 45.31784
- ],
- [
- 13.52898,
- 45.32753
- ],
- [
- 13.48331,
- 45.48595
- ],
- [
- 13.51439,
- 45.51032
- ],
- [
- 13.67463,
- 45.44773
- ],
- [
- 13.76432,
- 45.47054
- ],
- [
- 13.88238,
- 45.429
- ],
- [
- 13.91371,
- 45.45664
- ],
- [
- 13.98027,
- 45.45832
- ],
- [
- 13.95822,
- 45.5071
- ],
- [
- 14.00195,
- 45.52298
- ],
- [
- 14.07602,
- 45.48728
- ],
- [
- 14.20335,
- 45.47325
- ],
- [
- 14.24884,
- 45.50803
- ],
- [
- 14.32381,
- 45.47413
- ],
- [
- 14.48749,
- 45.54141
- ],
- [
- 14.4953,
- 45.60824
- ],
- [
- 14.54144,
- 45.62448
- ],
- [
- 14.56821,
- 45.67686
- ],
- [
- 14.61164,
- 45.66673
- ],
- [
- 14.60522,
- 45.62774
- ],
- [
- 14.69391,
- 45.58134
- ],
- [
- 14.69169,
- 45.53064
- ],
- [
- 14.79864,
- 45.50514
- ],
- [
- 14.82058,
- 45.46316
- ],
- [
- 14.90782,
- 45.4814
- ],
- [
- 14.93136,
- 45.53217
- ],
- [
- 14.98516,
- 45.50063
- ],
- [
- 15.08738,
- 45.48583
- ],
- [
- 15.16778,
- 45.42529
- ],
- [
- 15.22158,
- 45.42864
- ],
- [
- 15.26912,
- 45.46833
- ],
- [
- 15.3438,
- 45.45993
- ],
- [
- 15.37766,
- 45.48781
- ],
- [
- 15.29879,
- 45.53386
- ],
- [
- 15.27225,
- 45.6053
- ],
- [
- 15.34292,
- 45.64903
- ],
- [
- 15.39836,
- 45.64787
- ],
- [
- 15.36734,
- 45.68233
- ],
- [
- 15.34575,
- 45.66692
- ],
- [
- 15.35424,
- 45.7101
- ],
- [
- 15.32451,
- 45.67005
- ],
- [
- 15.23367,
- 45.72238
- ],
- [
- 15.39851,
- 45.79415
- ],
- [
- 15.47062,
- 45.79902
- ],
- [
- 15.46272,
- 45.82041
- ],
- [
- 15.52513,
- 45.82641
- ],
- [
- 15.5364,
- 45.85015
- ],
- [
- 15.55871,
- 45.83936
- ],
- [
- 15.57316,
- 45.85585
- ],
- [
- 15.64191,
- 45.82462
- ],
- [
- 15.69817,
- 45.85137
- ],
- [
- 15.67547,
- 45.90472
- ],
- [
- 15.7023,
- 45.92368
- ],
- [
- 15.69584,
- 45.99749
- ],
- [
- 15.72545,
- 46.04492
- ],
- [
- 15.6009,
- 46.1108
- ],
- [
- 15.59179,
- 46.14731
- ],
- [
- 15.63844,
- 46.21388
- ],
- [
- 15.67652,
- 46.22955
- ],
- [
- 15.76893,
- 46.21269
- ],
- [
- 15.79102,
- 46.2621
- ],
- [
- 16.01284,
- 46.3133
- ],
- [
- 16.07131,
- 46.3449
- ],
- [
- 16.05625,
- 46.39644
- ],
- [
- 16.1501,
- 46.40762
- ],
- [
- 16.19405,
- 46.38224
- ],
- [
- 16.29963,
- 46.3815
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "HR",
- "end_date": "2018",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-dof-2018-w",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: Croatia 2018 West Aerial imagery",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "2018",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/inspire/orthophoto_2018/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.OrthoImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.34155,
- 45.63868
- ],
- [
- 15.34189,
- 45.6658
- ],
- [
- 15.28409,
- 45.66592
- ],
- [
- 15.28413,
- 45.69284
- ],
- [
- 15.22636,
- 45.69305
- ],
- [
- 15.22662,
- 45.74698
- ],
- [
- 15.28451,
- 45.74695
- ],
- [
- 15.2846,
- 45.7739
- ],
- [
- 15.34236,
- 45.77372
- ],
- [
- 15.34254,
- 45.80068
- ],
- [
- 15.45841,
- 45.80029
- ],
- [
- 15.45879,
- 45.85439
- ],
- [
- 15.66157,
- 45.85331
- ],
- [
- 15.66243,
- 45.93435
- ],
- [
- 15.69152,
- 45.93405
- ],
- [
- 15.6929,
- 46.04211
- ],
- [
- 15.6638,
- 46.04223
- ],
- [
- 15.66414,
- 46.06921
- ],
- [
- 15.60599,
- 46.06951
- ],
- [
- 15.60621,
- 46.09654
- ],
- [
- 15.57707,
- 46.09666
- ],
- [
- 15.57806,
- 46.17763
- ],
- [
- 15.63625,
- 46.17733
- ],
- [
- 15.63702,
- 46.23139
- ],
- [
- 15.7828,
- 46.23041
- ],
- [
- 15.78358,
- 46.28441
- ],
- [
- 15.87117,
- 46.28382
- ],
- [
- 15.8716,
- 46.3108
- ],
- [
- 15.95914,
- 46.31006
- ],
- [
- 15.95979,
- 46.33703
- ],
- [
- 16.01811,
- 46.33653
- ],
- [
- 16.01862,
- 46.36357
- ],
- [
- 16.04789,
- 46.36331
- ],
- [
- 16.04884,
- 46.41724
- ],
- [
- 16.19531,
- 46.41579
- ],
- [
- 16.19471,
- 46.38889
- ],
- [
- 16.25311,
- 46.38812
- ],
- [
- 16.25492,
- 46.47124
- ],
- [
- 16.22578,
- 46.47156
- ],
- [
- 16.22694,
- 46.5235
- ],
- [
- 16.3147,
- 46.52252
- ],
- [
- 16.31551,
- 46.54945
- ],
- [
- 16.49498,
- 46.54726
- ],
- [
- 16.49507,
- 46.52025
- ],
- [
- 16.5285,
- 46.52066
- ],
- [
- 16.52923,
- 46.49372
- ],
- [
- 16.61721,
- 46.49476
- ],
- [
- 16.61798,
- 46.46787
- ],
- [
- 16.67639,
- 46.46855
- ],
- [
- 16.67703,
- 46.44152
- ],
- [
- 16.7063,
- 46.44188
- ],
- [
- 16.70699,
- 46.41487
- ],
- [
- 16.76552,
- 46.41549
- ],
- [
- 16.76617,
- 46.38853
- ],
- [
- 16.85389,
- 46.38939
- ],
- [
- 16.85449,
- 46.36248
- ],
- [
- 16.88367,
- 46.36271
- ],
- [
- 16.88474,
- 46.30879
- ],
- [
- 16.91401,
- 46.30911
- ],
- [
- 16.91452,
- 46.2821
- ],
- [
- 16.94362,
- 46.28228
- ],
- [
- 16.94422,
- 46.25534
- ],
- [
- 16.9734,
- 46.25567
- ],
- [
- 16.97392,
- 46.2286
- ],
- [
- 17.06134,
- 46.22946
- ],
- [
- 17.0619,
- 46.20241
- ],
- [
- 17.14931,
- 46.20303
- ],
- [
- 17.14974,
- 46.17606
- ],
- [
- 17.20798,
- 46.17647
- ],
- [
- 17.20888,
- 46.12257
- ],
- [
- 17.23786,
- 46.1227
- ],
- [
- 17.23824,
- 46.0957
- ],
- [
- 17.26734,
- 46.09594
- ],
- [
- 17.2678,
- 46.06891
- ],
- [
- 17.29669,
- 46.06918
- ],
- [
- 17.29746,
- 46.01514
- ],
- [
- 17.38458,
- 46.01562
- ],
- [
- 17.38501,
- 45.98861
- ],
- [
- 17.41389,
- 45.98879
- ],
- [
- 17.41432,
- 45.96183
- ],
- [
- 17.58847,
- 45.96255
- ],
- [
- 17.58864,
- 45.93557
- ],
- [
- 17.61761,
- 45.93566
- ],
- [
- 17.61786,
- 45.9087
- ],
- [
- 17.64683,
- 45.90879
- ],
- [
- 17.647,
- 45.88182
- ],
- [
- 17.67597,
- 45.88185
- ],
- [
- 17.67619,
- 45.85487
- ],
- [
- 17.76296,
- 45.85505
- ],
- [
- 17.76318,
- 45.82808
- ],
- [
- 17.85004,
- 45.82823
- ],
- [
- 17.85012,
- 45.80125
- ],
- [
- 18.05273,
- 45.80131
- ],
- [
- 18.05268,
- 45.77432
- ],
- [
- 18.11053,
- 45.77426
- ],
- [
- 18.11058,
- 45.80131
- ],
- [
- 18.25533,
- 45.80104
- ],
- [
- 18.2552,
- 45.77405
- ],
- [
- 18.39974,
- 45.7736
- ],
- [
- 18.39961,
- 45.74662
- ],
- [
- 18.42871,
- 45.74656
- ],
- [
- 18.42879,
- 45.77354
- ],
- [
- 18.45772,
- 45.77333
- ],
- [
- 18.45793,
- 45.80038
- ],
- [
- 18.54488,
- 45.80014
- ],
- [
- 18.54509,
- 45.82698
- ],
- [
- 18.57415,
- 45.82689
- ],
- [
- 18.57436,
- 45.85388
- ],
- [
- 18.60329,
- 45.8537
- ],
- [
- 18.60354,
- 45.88072
- ],
- [
- 18.63264,
- 45.8806
- ],
- [
- 18.63316,
- 45.93459
- ],
- [
- 18.72019,
- 45.93399
- ],
- [
- 18.71984,
- 45.90706
- ],
- [
- 18.80688,
- 45.90643
- ],
- [
- 18.80726,
- 45.93339
- ],
- [
- 18.83627,
- 45.93318
- ],
- [
- 18.8355,
- 45.87925
- ],
- [
- 18.86438,
- 45.87904
- ],
- [
- 18.8631,
- 45.79808
- ],
- [
- 18.89206,
- 45.79793
- ],
- [
- 18.89172,
- 45.77085
- ],
- [
- 18.97845,
- 45.7701
- ],
- [
- 18.97609,
- 45.60815
- ],
- [
- 18.94674,
- 45.60836
- ],
- [
- 18.94635,
- 45.58143
- ],
- [
- 19.06167,
- 45.58044
- ],
- [
- 19.06145,
- 45.55343
- ],
- [
- 19.08986,
- 45.55325
- ],
- [
- 19.08952,
- 45.52622
- ],
- [
- 19.1181,
- 45.52595
- ],
- [
- 19.11716,
- 45.47187
- ],
- [
- 19.00223,
- 45.47295
- ],
- [
- 19.00167,
- 45.44598
- ],
- [
- 19.05918,
- 45.44556
- ],
- [
- 19.05823,
- 45.39143
- ],
- [
- 19.00055,
- 45.39197
- ],
- [
- 19.00014,
- 45.36502
- ],
- [
- 19.08625,
- 45.36421
- ],
- [
- 19.08573,
- 45.33727
- ],
- [
- 19.11448,
- 45.3371
- ],
- [
- 19.11397,
- 45.31
- ],
- [
- 19.14267,
- 45.30979
- ],
- [
- 19.14207,
- 45.28274
- ],
- [
- 19.28549,
- 45.28127
- ],
- [
- 19.28489,
- 45.25415
- ],
- [
- 19.4568,
- 45.25211
- ],
- [
- 19.45472,
- 45.17123
- ],
- [
- 19.16856,
- 45.17445
- ],
- [
- 19.16817,
- 45.14748
- ],
- [
- 19.13939,
- 45.14775
- ],
- [
- 19.13879,
- 45.12072
- ],
- [
- 19.08165,
- 45.12126
- ],
- [
- 19.08114,
- 45.09439
- ],
- [
- 19.10975,
- 45.09406
- ],
- [
- 19.10873,
- 45.04013
- ],
- [
- 19.08016,
- 45.04028
- ],
- [
- 19.07909,
- 44.98637
- ],
- [
- 19.13611,
- 44.98592
- ],
- [
- 19.13517,
- 44.93186
- ],
- [
- 19.10656,
- 44.9321
- ],
- [
- 19.10609,
- 44.90514
- ],
- [
- 18.99209,
- 44.90614
- ],
- [
- 18.99124,
- 44.85213
- ],
- [
- 18.79191,
- 44.85367
- ],
- [
- 18.79234,
- 44.8808
- ],
- [
- 18.73541,
- 44.88107
- ],
- [
- 18.73651,
- 44.96209
- ],
- [
- 18.76496,
- 44.96185
- ],
- [
- 18.76538,
- 44.98887
- ],
- [
- 18.70828,
- 44.98926
- ],
- [
- 18.70866,
- 45.0163
- ],
- [
- 18.68009,
- 45.01642
- ],
- [
- 18.6803,
- 45.04344
- ],
- [
- 18.42323,
- 45.04465
- ],
- [
- 18.42374,
- 45.09866
- ],
- [
- 18.2236,
- 45.09923
- ],
- [
- 18.22349,
- 45.07223
- ],
- [
- 18.08061,
- 45.07241
- ],
- [
- 18.08057,
- 45.09944
- ],
- [
- 18.02342,
- 45.09938
- ],
- [
- 18.02346,
- 45.12646
- ],
- [
- 17.99489,
- 45.12649
- ],
- [
- 17.99502,
- 45.0995
- ],
- [
- 17.9377,
- 45.09947
- ],
- [
- 17.93774,
- 45.04546
- ],
- [
- 17.88064,
- 45.04546
- ],
- [
- 17.88077,
- 45.01844
- ],
- [
- 17.82362,
- 45.01831
- ],
- [
- 17.82354,
- 45.04528
- ],
- [
- 17.76635,
- 45.04519
- ],
- [
- 17.76626,
- 45.0722
- ],
- [
- 17.70911,
- 45.07196
- ],
- [
- 17.70894,
- 45.09908
- ],
- [
- 17.42317,
- 45.09794
- ],
- [
- 17.42287,
- 45.12498
- ],
- [
- 17.30845,
- 45.12429
- ],
- [
- 17.3082,
- 45.1513
- ],
- [
- 17.27945,
- 45.15115
- ],
- [
- 17.27988,
- 45.1242
- ],
- [
- 17.16546,
- 45.12342
- ],
- [
- 17.16503,
- 45.15034
- ],
- [
- 17.10789,
- 45.14992
- ],
- [
- 17.10755,
- 45.17694
- ],
- [
- 17.05014,
- 45.17634
- ],
- [
- 17.04972,
- 45.20347
- ],
- [
- 16.93521,
- 45.20239
- ],
- [
- 16.93428,
- 45.25649
- ],
- [
- 16.90553,
- 45.25619
- ],
- [
- 16.9066,
- 45.20233
- ],
- [
- 16.84932,
- 45.20161
- ],
- [
- 16.84996,
- 45.17466
- ],
- [
- 16.67818,
- 45.1727
- ],
- [
- 16.6775,
- 45.19975
- ],
- [
- 16.49516,
- 45.19753
- ],
- [
- 16.49495,
- 45.17051
- ],
- [
- 16.48371,
- 45.17063
- ],
- [
- 16.48239,
- 45.11675
- ],
- [
- 16.42516,
- 45.11744
- ],
- [
- 16.42384,
- 45.06345
- ],
- [
- 16.39526,
- 45.06375
- ],
- [
- 16.39462,
- 45.03685
- ],
- [
- 16.36605,
- 45.03715
- ],
- [
- 16.36473,
- 44.98321
- ],
- [
- 16.25065,
- 44.98453
- ],
- [
- 16.2512,
- 45.01145
- ],
- [
- 16.16557,
- 45.01229
- ],
- [
- 16.16668,
- 45.06634
- ],
- [
- 16.10953,
- 45.06691
- ],
- [
- 16.11017,
- 45.0925
- ],
- [
- 16.10689,
- 45.094
- ],
- [
- 16.08143,
- 45.09424
- ],
- [
- 16.08202,
- 45.12129
- ],
- [
- 16.05341,
- 45.12147
- ],
- [
- 16.05405,
- 45.14847
- ],
- [
- 16.02539,
- 45.1488
- ],
- [
- 16.02581,
- 45.17571
- ],
- [
- 15.99724,
- 45.17598
- ],
- [
- 15.99775,
- 45.20305
- ],
- [
- 15.79723,
- 45.20455
- ],
- [
- 15.79531,
- 45.06961
- ],
- [
- 15.76665,
- 45.06979
- ],
- [
- 15.7664,
- 45.04278
- ],
- [
- 15.79489,
- 45.04263
- ],
- [
- 15.79382,
- 44.96167
- ],
- [
- 15.76529,
- 44.9618
- ],
- [
- 15.76423,
- 44.88077
- ],
- [
- 15.79271,
- 44.88062
- ],
- [
- 15.79199,
- 44.82667
- ],
- [
- 15.76355,
- 44.82685
- ],
- [
- 15.7632,
- 44.79982
- ],
- [
- 15.79156,
- 44.79967
- ],
- [
- 15.79088,
- 44.74562
- ],
- [
- 15.87618,
- 44.74498
- ],
- [
- 15.87656,
- 44.77185
- ],
- [
- 15.9049,
- 44.77176
- ],
- [
- 15.90449,
- 44.74477
- ],
- [
- 15.93273,
- 44.74465
- ],
- [
- 15.93243,
- 44.71754
- ],
- [
- 15.98923,
- 44.71706
- ],
- [
- 15.98885,
- 44.69012
- ],
- [
- 16.01713,
- 44.68985
- ],
- [
- 16.01679,
- 44.66278
- ],
- [
- 16.0451,
- 44.6626
- ],
- [
- 16.04459,
- 44.6356
- ],
- [
- 16.07287,
- 44.6353
- ],
- [
- 16.07197,
- 44.5814
- ],
- [
- 16.01525,
- 44.58182
- ],
- [
- 16.01483,
- 44.55486
- ],
- [
- 16.12797,
- 44.55379
- ],
- [
- 16.12712,
- 44.49979
- ],
- [
- 16.15522,
- 44.49954
- ],
- [
- 16.15429,
- 44.44558
- ],
- [
- 16.1826,
- 44.44527
- ],
- [
- 16.1815,
- 44.39122
- ],
- [
- 16.20964,
- 44.39101
- ],
- [
- 16.20905,
- 44.36395
- ],
- [
- 16.23741,
- 44.36368
- ],
- [
- 16.23673,
- 44.33664
- ],
- [
- 16.20858,
- 44.33691
- ],
- [
- 16.207,
- 44.25603
- ],
- [
- 16.2349,
- 44.25572
- ],
- [
- 16.23396,
- 44.20168
- ],
- [
- 16.29013,
- 44.20104
- ],
- [
- 16.2897,
- 44.17414
- ],
- [
- 16.31772,
- 44.17379
- ],
- [
- 16.31663,
- 44.11979
- ],
- [
- 16.37272,
- 44.11914
- ],
- [
- 16.37225,
- 44.09218
- ],
- [
- 16.45636,
- 44.09113
- ],
- [
- 16.4552,
- 44.0371
- ],
- [
- 16.5352,
- 44.0371
- ],
- [
- 16.53597,
- 44.0101
- ],
- [
- 16.56391,
- 44.01041
- ],
- [
- 16.56528,
- 43.95653
- ],
- [
- 16.62128,
- 43.95714
- ],
- [
- 16.6218,
- 43.93011
- ],
- [
- 16.62798,
- 43.93014
- ],
- [
- 16.62875,
- 43.90327
- ],
- [
- 16.67858,
- 43.90383
- ],
- [
- 16.67918,
- 43.87683
- ],
- [
- 16.7351,
- 43.87739
- ],
- [
- 16.73686,
- 43.79647
- ],
- [
- 16.76479,
- 43.79672
- ],
- [
- 16.76535,
- 43.76982
- ],
- [
- 16.82123,
- 43.77041
- ],
- [
- 16.82174,
- 43.74335
- ],
- [
- 16.84959,
- 43.74366
- ],
- [
- 16.85019,
- 43.71671
- ],
- [
- 16.90603,
- 43.71718
- ],
- [
- 16.90646,
- 43.69013
- ],
- [
- 16.93431,
- 43.69047
- ],
- [
- 16.93508,
- 43.66353
- ],
- [
- 16.96272,
- 43.66368
- ],
- [
- 16.96323,
- 43.63673
- ],
- [
- 16.99104,
- 43.63698
- ],
- [
- 16.99169,
- 43.60998
- ],
- [
- 17.01932,
- 43.61026
- ],
- [
- 17.01993,
- 43.58328
- ],
- [
- 17.04773,
- 43.58347
- ],
- [
- 17.04829,
- 43.55648
- ],
- [
- 17.10378,
- 43.55688
- ],
- [
- 17.10421,
- 43.52991
- ],
- [
- 17.15987,
- 43.53038
- ],
- [
- 17.1603,
- 43.50337
- ],
- [
- 17.27149,
- 43.50415
- ],
- [
- 17.27192,
- 43.47709
- ],
- [
- 17.29969,
- 43.47728
- ],
- [
- 17.30055,
- 43.39625
- ],
- [
- 17.27283,
- 43.39607
- ],
- [
- 17.27325,
- 43.36912
- ],
- [
- 17.30093,
- 43.36928
- ],
- [
- 17.30149,
- 43.31522
- ],
- [
- 17.3293,
- 43.31544
- ],
- [
- 17.32995,
- 43.28845
- ],
- [
- 17.35728,
- 43.28855
- ],
- [
- 17.35758,
- 43.26158
- ],
- [
- 17.44067,
- 43.26202
- ],
- [
- 17.44148,
- 43.18102
- ],
- [
- 17.4968,
- 43.18121
- ],
- [
- 17.49706,
- 43.15426
- ],
- [
- 17.58006,
- 43.15454
- ],
- [
- 17.58023,
- 43.12755
- ],
- [
- 17.60782,
- 43.12758
- ],
- [
- 17.60808,
- 43.1007
- ],
- [
- 17.66331,
- 43.10079
- ],
- [
- 17.66361,
- 43.04688
- ],
- [
- 17.69116,
- 43.04688
- ],
- [
- 17.69142,
- 43.01974
- ],
- [
- 17.71897,
- 43.01993
- ],
- [
- 17.71927,
- 42.93889
- ],
- [
- 17.77442,
- 42.93902
- ],
- [
- 17.77459,
- 42.91203
- ],
- [
- 17.80223,
- 42.91215
- ],
- [
- 17.80197,
- 42.93911
- ],
- [
- 17.82952,
- 42.93918
- ],
- [
- 17.82969,
- 42.91221
- ],
- [
- 17.88476,
- 42.91221
- ],
- [
- 17.88488,
- 42.85819
- ],
- [
- 17.91248,
- 42.85826
- ],
- [
- 17.91248,
- 42.8312
- ],
- [
- 17.93999,
- 42.83116
- ],
- [
- 17.9399,
- 42.80422
- ],
- [
- 17.995,
- 42.80428
- ],
- [
- 17.995,
- 42.77726
- ],
- [
- 18.05002,
- 42.77716
- ],
- [
- 18.05002,
- 42.75023
- ],
- [
- 18.105,
- 42.75023
- ],
- [
- 18.105,
- 42.72318
- ],
- [
- 18.13229,
- 42.72309
- ],
- [
- 18.13233,
- 42.69616
- ],
- [
- 18.1598,
- 42.69619
- ],
- [
- 18.15976,
- 42.66906
- ],
- [
- 18.21456,
- 42.66899
- ],
- [
- 18.21443,
- 42.64201
- ],
- [
- 18.24203,
- 42.64191
- ],
- [
- 18.2419,
- 42.61495
- ],
- [
- 18.26928,
- 42.61489
- ],
- [
- 18.26941,
- 42.64185
- ],
- [
- 18.37913,
- 42.64156
- ],
- [
- 18.37897,
- 42.61457
- ],
- [
- 18.40648,
- 42.61444
- ],
- [
- 18.40635,
- 42.58753
- ],
- [
- 18.46111,
- 42.58718
- ],
- [
- 18.46025,
- 42.47925
- ],
- [
- 18.48763,
- 42.47909
- ],
- [
- 18.48746,
- 42.45215
- ],
- [
- 18.54218,
- 42.45187
- ],
- [
- 18.54149,
- 42.37078
- ],
- [
- 18.51411,
- 42.37097
- ],
- [
- 18.51424,
- 42.39792
- ],
- [
- 16.48009,
- 42.74046
- ],
- [
- 15.71251,
- 42.99134
- ],
- [
- 13.71386,
- 44.87631
- ],
- [
- 13.59592,
- 45.03763
- ],
- [
- 13.56502,
- 45.11763
- ],
- [
- 13.56067,
- 45.30623
- ],
- [
- 13.53207,
- 45.30586
- ],
- [
- 13.52983,
- 45.38682
- ],
- [
- 13.50211,
- 45.38736
- ],
- [
- 13.49885,
- 45.46741
- ],
- [
- 13.47018,
- 45.46705
- ],
- [
- 13.46956,
- 45.49407
- ],
- [
- 13.49675,
- 45.49442
- ],
- [
- 13.49658,
- 45.49889
- ],
- [
- 13.49816,
- 45.49892
- ],
- [
- 13.49761,
- 45.52141
- ],
- [
- 13.55507,
- 45.52207
- ],
- [
- 13.5558,
- 45.49522
- ],
- [
- 13.61331,
- 45.49597
- ],
- [
- 13.61403,
- 45.46895
- ],
- [
- 13.84428,
- 45.47145
- ],
- [
- 13.84488,
- 45.44442
- ],
- [
- 13.90234,
- 45.44505
- ],
- [
- 13.90182,
- 45.47205
- ],
- [
- 13.98808,
- 45.47289
- ],
- [
- 13.98757,
- 45.49985
- ],
- [
- 14.10275,
- 45.50081
- ],
- [
- 14.10305,
- 45.47379
- ],
- [
- 14.33334,
- 45.47533
- ],
- [
- 14.33308,
- 45.50232
- ],
- [
- 14.39059,
- 45.50268
- ],
- [
- 14.39042,
- 45.52959
- ],
- [
- 14.44797,
- 45.52995
- ],
- [
- 14.44771,
- 45.55697
- ],
- [
- 14.47642,
- 45.55712
- ],
- [
- 14.47625,
- 45.58419
- ],
- [
- 14.50504,
- 45.58422
- ],
- [
- 14.50487,
- 45.61128
- ],
- [
- 14.53375,
- 45.61137
- ],
- [
- 14.53354,
- 45.63832
- ],
- [
- 14.56229,
- 45.63844
- ],
- [
- 14.56186,
- 45.69242
- ],
- [
- 14.59074,
- 45.69257
- ],
- [
- 14.59109,
- 45.66553
- ],
- [
- 14.61984,
- 45.66568
- ],
- [
- 14.62014,
- 45.63868
- ],
- [
- 14.64885,
- 45.63871
- ],
- [
- 14.6492,
- 45.61173
- ],
- [
- 14.70683,
- 45.61194
- ],
- [
- 14.70713,
- 45.5579
- ],
- [
- 14.7358,
- 45.55793
- ],
- [
- 14.73601,
- 45.531
- ],
- [
- 14.79378,
- 45.53112
- ],
- [
- 14.79382,
- 45.50415
- ],
- [
- 14.82236,
- 45.50421
- ],
- [
- 14.82262,
- 45.47717
- ],
- [
- 14.88004,
- 45.47735
- ],
- [
- 14.88008,
- 45.5043
- ],
- [
- 15.11036,
- 45.50421
- ],
- [
- 15.11028,
- 45.47735
- ],
- [
- 15.1392,
- 45.4772
- ],
- [
- 15.13899,
- 45.45029
- ],
- [
- 15.22533,
- 45.45011
- ],
- [
- 15.22593,
- 45.47704
- ],
- [
- 15.34056,
- 45.47674
- ],
- [
- 15.34073,
- 45.50379
- ],
- [
- 15.28314,
- 45.50394
- ],
- [
- 15.28391,
- 45.63895
- ],
- [
- 15.34155,
- 45.63868
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "HR",
- "end_date": "2009",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-hok",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: HOK",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "1954",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/hok/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=HOK5&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.98923,
- 43.00063
- ],
- [
- 15.49553,
- 43.00063
- ],
- [
- 15.49553,
- 43.07165
- ],
- [
- 15.45605,
- 43.07202
- ],
- [
- 15.45708,
- 43.10336
- ],
- [
- 15.49519,
- 43.10362
- ],
- [
- 15.49484,
- 43.50075
- ],
- [
- 14.99496,
- 43.50125
- ],
- [
- 14.99496,
- 43.99874
- ],
- [
- 14.4947,
- 44.00171
- ],
- [
- 14.49431,
- 44.4891
- ],
- [
- 14.48633,
- 44.4891
- ],
- [
- 14.48642,
- 44.50024
- ],
- [
- 14.30995,
- 44.50036
- ],
- [
- 14.30695,
- 44.49736
- ],
- [
- 14.2969,
- 44.50024
- ],
- [
- 13.4955,
- 44.50024
- ],
- [
- 13.49595,
- 46.00078
- ],
- [
- 15.49278,
- 46.0003
- ],
- [
- 15.49347,
- 46.50028
- ],
- [
- 15.98789,
- 46.50027
- ],
- [
- 15.99609,
- 46.99805
- ],
- [
- 16.49563,
- 46.99922
- ],
- [
- 16.49666,
- 46.50123
- ],
- [
- 17.50122,
- 46.50091
- ],
- [
- 17.49453,
- 45.99982
- ],
- [
- 19.49477,
- 46.00078
- ],
- [
- 19.4949,
- 44.50042
- ],
- [
- 18.49547,
- 44.50091
- ],
- [
- 18.49445,
- 44.99977
- ],
- [
- 16.49631,
- 44.99928
- ],
- [
- 16.49528,
- 44.50043
- ],
- [
- 16.99465,
- 44.49969
- ],
- [
- 16.9955,
- 43.99973
- ],
- [
- 17.49504,
- 44.00029
- ],
- [
- 17.49504,
- 43.50125
- ],
- [
- 17.99285,
- 43.501
- ],
- [
- 17.99492,
- 43.00264
- ],
- [
- 18.49411,
- 43.00264
- ],
- [
- 18.49342,
- 42.50197
- ],
- [
- 18.99467,
- 42.50248
- ],
- [
- 18.99605,
- 41.99675
- ],
- [
- 17.99149,
- 41.9965
- ],
- [
- 17.9908,
- 42.49742
- ],
- [
- 15.99472,
- 42.49944
- ],
- [
- 15.98923,
- 43.00063
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "HR",
- "end_date": "1984",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-topo-100",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: Topo 100",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "1980",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/tk/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tk:TK100&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.2474,
- 42.50052
- ],
- [
- 15.49553,
- 42.49995
- ],
- [
- 15.49553,
- 43.07165
- ],
- [
- 15.45605,
- 43.07202
- ],
- [
- 15.45708,
- 43.10336
- ],
- [
- 15.49519,
- 43.10362
- ],
- [
- 15.49484,
- 43.50075
- ],
- [
- 14.49509,
- 43.50175
- ],
- [
- 14.49431,
- 44.4891
- ],
- [
- 14.48633,
- 44.4891
- ],
- [
- 14.48642,
- 44.50024
- ],
- [
- 14.30995,
- 44.50036
- ],
- [
- 14.30695,
- 44.49736
- ],
- [
- 14.2969,
- 44.50024
- ],
- [
- 13.4955,
- 44.50024
- ],
- [
- 13.4967,
- 46.2226
- ],
- [
- 13.44589,
- 46.22617
- ],
- [
- 13.44418,
- 46.21334
- ],
- [
- 13.42289,
- 46.20526
- ],
- [
- 13.4095,
- 46.21381
- ],
- [
- 13.42289,
- 46.23234
- ],
- [
- 13.37654,
- 46.29666
- ],
- [
- 13.41431,
- 46.30473
- ],
- [
- 13.42392,
- 46.32109
- ],
- [
- 13.44864,
- 46.33294
- ],
- [
- 13.43319,
- 46.35807
- ],
- [
- 13.49636,
- 46.37062
- ],
- [
- 13.49121,
- 46.50028
- ],
- [
- 13.69995,
- 46.50028
- ],
- [
- 13.71643,
- 46.52202
- ],
- [
- 13.94028,
- 46.51919
- ],
- [
- 13.96499,
- 46.50217
- ],
- [
- 15.49347,
- 46.50028
- ],
- [
- 15.49621,
- 47.50143
- ],
- [
- 16.49803,
- 47.5019
- ],
- [
- 16.49563,
- 46.56453
- ],
- [
- 16.5152,
- 46.56358
- ],
- [
- 16.53099,
- 46.5017
- ],
- [
- 19.49472,
- 46.50028
- ],
- [
- 19.4949,
- 44.50042
- ],
- [
- 17.49367,
- 44.5014
- ],
- [
- 17.49504,
- 43.50125
- ],
- [
- 18.4948,
- 43.50075
- ],
- [
- 18.49342,
- 42.50197
- ],
- [
- 19.49455,
- 42.50045
- ],
- [
- 19.49593,
- 41.50086
- ],
- [
- 17.49435,
- 41.50061
- ],
- [
- 17.49641,
- 42.50147
- ],
- [
- 16.37581,
- 42.50062
- ],
- [
- 16.37306,
- 42.33317
- ],
- [
- 16.24466,
- 42.3352
- ],
- [
- 16.2474,
- 42.50052
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "HR",
- "end_date": "1986",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-topo-200",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: Topo 200",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "1982",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/tk/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tk:TK200&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.49987,
- 42.70991
- ],
- [
- 17.04993,
- 42.70902
- ],
- [
- 17.04963,
- 42.7443
- ],
- [
- 17.17218,
- 42.74374
- ],
- [
- 17.17218,
- 42.77966
- ],
- [
- 17.04993,
- 42.78022
- ],
- [
- 17.05023,
- 42.79823
- ],
- [
- 17.00138,
- 42.79873
- ],
- [
- 17.00138,
- 42.82574
- ],
- [
- 16.96479,
- 42.82585
- ],
- [
- 16.96456,
- 42.79895
- ],
- [
- 16.49941,
- 42.79968
- ],
- [
- 16.49987,
- 42.7711
- ],
- [
- 16.4826,
- 42.7711
- ],
- [
- 16.4826,
- 42.74363
- ],
- [
- 16.50002,
- 42.74363
- ],
- [
- 16.49987,
- 42.70991
- ]
- ],
- [
- [
- 13.42719,
- 45.54859
- ],
- [
- 13.61807,
- 45.55389
- ],
- [
- 13.62292,
- 45.46386
- ],
- [
- 13.76198,
- 45.4671
- ],
- [
- 13.76191,
- 45.46936
- ],
- [
- 13.77081,
- 45.46955
- ],
- [
- 13.77088,
- 45.46742
- ],
- [
- 14.58109,
- 45.48389
- ],
- [
- 14.58723,
- 45.30405
- ],
- [
- 14.77841,
- 45.30701
- ],
- [
- 14.78114,
- 45.21712
- ],
- [
- 14.97186,
- 45.21981
- ],
- [
- 14.97694,
- 45.03983
- ],
- [
- 14.78659,
- 45.03716
- ],
- [
- 14.78924,
- 44.94727
- ],
- [
- 14.5992,
- 44.94406
- ],
- [
- 14.6051,
- 44.76444
- ],
- [
- 14.2263,
- 44.75745
- ],
- [
- 14.21941,
- 44.93719
- ],
- [
- 14.05163,
- 44.93381
- ],
- [
- 14.05277,
- 44.91124
- ],
- [
- 14.03103,
- 44.91065
- ],
- [
- 14.03717,
- 44.75352
- ],
- [
- 13.8478,
- 44.74922
- ],
- [
- 13.845,
- 44.81933
- ],
- [
- 13.82273,
- 44.8189
- ],
- [
- 13.82175,
- 44.83856
- ],
- [
- 13.65443,
- 44.83453
- ],
- [
- 13.64534,
- 45.01441
- ],
- [
- 13.45529,
- 45.00943
- ],
- [
- 13.42719,
- 45.54859
- ]
- ],
- [
- [
- 15.44375,
- 43.10094
- ],
- [
- 15.48034,
- 43.10133
- ],
- [
- 15.48064,
- 43.08341
- ],
- [
- 15.44383,
- 43.08352
- ],
- [
- 15.44375,
- 43.10094
- ]
- ],
- [
- [
- 15.72242,
- 46.21722
- ],
- [
- 15.91671,
- 46.21827
- ],
- [
- 15.91962,
- 45.94844
- ],
- [
- 15.7261,
- 45.94721
- ],
- [
- 15.72242,
- 46.21722
- ]
- ],
- [
- [
- 15.57866,
- 43.0662
- ],
- [
- 15.58047,
- 42.97671
- ],
- [
- 15.76423,
- 42.97704
- ],
- [
- 15.76438,
- 42.99522
- ],
- [
- 15.81316,
- 42.99588
- ],
- [
- 15.81347,
- 43.01328
- ],
- [
- 15.7715,
- 43.0135
- ],
- [
- 15.77181,
- 43.04041
- ],
- [
- 15.76363,
- 43.04041
- ],
- [
- 15.76393,
- 43.06764
- ],
- [
- 15.57866,
- 43.0662
- ]
- ],
- [
- [
- 16.3049,
- 46.48965
- ],
- [
- 16.49957,
- 46.48986
- ],
- [
- 16.49972,
- 46.39978
- ],
- [
- 16.30505,
- 46.39967
- ],
- [
- 16.3049,
- 46.48965
- ]
- ],
- [
- [
- 15.53442,
- 45.85567
- ],
- [
- 16.30679,
- 45.85976
- ],
- [
- 16.30619,
- 46.03979
- ],
- [
- 16.50032,
- 46.04037
- ],
- [
- 16.49998,
- 46.12978
- ],
- [
- 16.69404,
- 46.12965
- ],
- [
- 16.6944,
- 46.21962
- ],
- [
- 16.88874,
- 46.21911
- ],
- [
- 16.88837,
- 46.12915
- ],
- [
- 17.27626,
- 46.12721
- ],
- [
- 17.27514,
- 46.03719
- ],
- [
- 17.0814,
- 46.0383
- ],
- [
- 17.08045,
- 45.94841
- ],
- [
- 17.27391,
- 45.94717
- ],
- [
- 17.27268,
- 45.85726
- ],
- [
- 17.46569,
- 45.8558
- ],
- [
- 17.46429,
- 45.76578
- ],
- [
- 17.84972,
- 45.762
- ],
- [
- 17.84113,
- 45.40218
- ],
- [
- 18.03272,
- 45.39968
- ],
- [
- 18.03778,
- 45.57956
- ],
- [
- 18.22977,
- 45.57683
- ],
- [
- 18.22707,
- 45.48686
- ],
- [
- 18.41895,
- 45.48394
- ],
- [
- 18.42194,
- 45.57372
- ],
- [
- 18.806,
- 45.56667
- ],
- [
- 18.7986,
- 45.38682
- ],
- [
- 19.18132,
- 45.37853
- ],
- [
- 19.17731,
- 45.28839
- ],
- [
- 18.98605,
- 45.29292
- ],
- [
- 18.97825,
- 45.11311
- ],
- [
- 18.78775,
- 45.11707
- ],
- [
- 18.78419,
- 45.02731
- ],
- [
- 18.59384,
- 45.03073
- ],
- [
- 18.60395,
- 45.30056
- ],
- [
- 18.22152,
- 45.30697
- ],
- [
- 18.22428,
- 45.39693
- ],
- [
- 18.03286,
- 45.39964
- ],
- [
- 18.02795,
- 45.21976
- ],
- [
- 18.21887,
- 45.2172
- ],
- [
- 18.21341,
- 45.03721
- ],
- [
- 17.4521,
- 45.04599
- ],
- [
- 17.45339,
- 45.12428
- ],
- [
- 17.44581,
- 45.12431
- ],
- [
- 17.44577,
- 45.13107
- ],
- [
- 17.45339,
- 45.13107
- ],
- [
- 17.45346,
- 45.13599
- ],
- [
- 17.42309,
- 45.13617
- ],
- [
- 17.42309,
- 45.13131
- ],
- [
- 17.35944,
- 45.13181
- ],
- [
- 17.35954,
- 45.13676
- ],
- [
- 16.49994,
- 45.13997
- ],
- [
- 16.50032,
- 44.96003
- ],
- [
- 16.11978,
- 44.95936
- ],
- [
- 16.11914,
- 45.04937
- ],
- [
- 15.92881,
- 45.04857
- ],
- [
- 15.92784,
- 45.13855
- ],
- [
- 15.54639,
- 45.13604
- ],
- [
- 15.54942,
- 44.95604
- ],
- [
- 15.7395,
- 44.95747
- ],
- [
- 15.74304,
- 44.68753
- ],
- [
- 15.93235,
- 44.68862
- ],
- [
- 15.93144,
- 44.7785
- ],
- [
- 16.12088,
- 44.77934
- ],
- [
- 16.1258,
- 44.50938
- ],
- [
- 16.31126,
- 44.50983
- ],
- [
- 16.3125,
- 44.14984
- ],
- [
- 16.49991,
- 44.14998
- ],
- [
- 16.50002,
- 44.06
- ],
- [
- 16.68726,
- 44.05983
- ],
- [
- 16.68669,
- 43.87982
- ],
- [
- 16.87325,
- 43.87936
- ],
- [
- 16.87221,
- 43.70925
- ],
- [
- 16.87842,
- 43.70922
- ],
- [
- 16.87837,
- 43.69932
- ],
- [
- 17.05822,
- 43.6986
- ],
- [
- 17.05747,
- 43.6086
- ],
- [
- 17.24319,
- 43.6075
- ],
- [
- 17.24217,
- 43.51755
- ],
- [
- 17.42761,
- 43.51622
- ],
- [
- 17.4236,
- 43.24615
- ],
- [
- 17.60821,
- 43.24448
- ],
- [
- 17.60668,
- 43.15452
- ],
- [
- 17.791,
- 43.15255
- ],
- [
- 17.78723,
- 42.97258
- ],
- [
- 17.9711,
- 42.97037
- ],
- [
- 17.96681,
- 42.79042
- ],
- [
- 18.15005,
- 42.78789
- ],
- [
- 18.14778,
- 42.69789
- ],
- [
- 18.3307,
- 42.6951
- ],
- [
- 18.32853,
- 42.62021
- ],
- [
- 18.37964,
- 42.61937
- ],
- [
- 18.37926,
- 42.60432
- ],
- [
- 18.51071,
- 42.60206
- ],
- [
- 18.50551,
- 42.43715
- ],
- [
- 18.55404,
- 42.43625
- ],
- [
- 18.55355,
- 42.42127
- ],
- [
- 18.68705,
- 42.41881
- ],
- [
- 18.68394,
- 42.32883
- ],
- [
- 18.50215,
- 42.33212
- ],
- [
- 18.50454,
- 42.40708
- ],
- [
- 18.48025,
- 42.40746
- ],
- [
- 18.48072,
- 42.42256
- ],
- [
- 18.32286,
- 42.42516
- ],
- [
- 18.32527,
- 42.5084
- ],
- [
- 18.31006,
- 42.50865
- ],
- [
- 18.31025,
- 42.51538
- ],
- [
- 18.14308,
- 42.51789
- ],
- [
- 18.14539,
- 42.60794
- ],
- [
- 17.59706,
- 42.61447
- ],
- [
- 17.59861,
- 42.70448
- ],
- [
- 17.23248,
- 42.7074
- ],
- [
- 17.23346,
- 42.79734
- ],
- [
- 17.33863,
- 42.79667
- ],
- [
- 17.33875,
- 42.80837
- ],
- [
- 17.40722,
- 42.80784
- ],
- [
- 17.40714,
- 42.7962
- ],
- [
- 17.41691,
- 42.79617
- ],
- [
- 17.41813,
- 42.88612
- ],
- [
- 16.50006,
- 42.88987
- ],
- [
- 16.49994,
- 43.06991
- ],
- [
- 16.31585,
- 43.06971
- ],
- [
- 16.31611,
- 42.97987
- ],
- [
- 16.13228,
- 42.9792
- ],
- [
- 16.13273,
- 42.88914
- ],
- [
- 15.94913,
- 42.88859
- ],
- [
- 15.94746,
- 43.07965
- ],
- [
- 16.13152,
- 43.08075
- ],
- [
- 16.13114,
- 43.15921
- ],
- [
- 16.31573,
- 43.15987
- ],
- [
- 16.31543,
- 43.16694
- ],
- [
- 16.30505,
- 43.167
- ],
- [
- 16.30498,
- 43.17777
- ],
- [
- 16.31558,
- 43.17788
- ],
- [
- 16.31497,
- 43.33975
- ],
- [
- 16.13008,
- 43.33926
- ],
- [
- 16.12955,
- 43.41313
- ],
- [
- 16.11724,
- 43.41305
- ],
- [
- 16.11717,
- 43.42569
- ],
- [
- 16.10607,
- 43.42567
- ],
- [
- 16.106,
- 43.42923
- ],
- [
- 15.9442,
- 43.42857
- ],
- [
- 15.94344,
- 43.5087
- ],
- [
- 15.91625,
- 43.50859
- ],
- [
- 15.91618,
- 43.51839
- ],
- [
- 15.75789,
- 43.51755
- ],
- [
- 15.75673,
- 43.60747
- ],
- [
- 15.3852,
- 43.6044
- ],
- [
- 15.38335,
- 43.69456
- ],
- [
- 15.19751,
- 43.69259
- ],
- [
- 15.19372,
- 43.8618
- ],
- [
- 15.17509,
- 43.86158
- ],
- [
- 15.17463,
- 43.87207
- ],
- [
- 15.00701,
- 43.87026
- ],
- [
- 15.00481,
- 43.96046
- ],
- [
- 15.37823,
- 43.9646
- ],
- [
- 15.37687,
- 44.05438
- ],
- [
- 15.18963,
- 44.05242
- ],
- [
- 15.18357,
- 44.32247
- ],
- [
- 14.99572,
- 44.32011
- ],
- [
- 14.98633,
- 44.67999
- ],
- [
- 15.17548,
- 44.68236
- ],
- [
- 15.16299,
- 45.22216
- ],
- [
- 15.35396,
- 45.22424
- ],
- [
- 15.35218,
- 45.31423
- ],
- [
- 15.5434,
- 45.31596
- ],
- [
- 15.53442,
- 45.85567
- ]
- ],
- [
- [
- 16.23264,
- 42.36768
- ],
- [
- 16.35459,
- 42.36858
- ],
- [
- 16.35413,
- 42.4036
- ],
- [
- 16.23218,
- 42.40349
- ],
- [
- 16.23264,
- 42.36768
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "HR",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-topo-25-new",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: Topo 25 new",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "2011",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/tk/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tk:TK25_NOVI&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.245,
- 46.6248
- ],
- [
- 16.49546,
- 46.62492
- ],
- [
- 16.49503,
- 46.50016
- ],
- [
- 16.87019,
- 46.49981
- ],
- [
- 16.86968,
- 46.375
- ],
- [
- 16.99482,
- 46.375
- ],
- [
- 16.99448,
- 46.25003
- ],
- [
- 17.24459,
- 46.25015
- ],
- [
- 17.24476,
- 46.12501
- ],
- [
- 17.3699,
- 46.12489
- ],
- [
- 17.37007,
- 46.00018
- ],
- [
- 17.74498,
- 45.99994
- ],
- [
- 17.74481,
- 45.87483
- ],
- [
- 18.61994,
- 45.87507
- ],
- [
- 18.61959,
- 46.00018
- ],
- [
- 18.99485,
- 45.99982
- ],
- [
- 18.99485,
- 45.62499
- ],
- [
- 19.1199,
- 45.62496
- ],
- [
- 19.11982,
- 45.37476
- ],
- [
- 19.36984,
- 45.37494
- ],
- [
- 19.3701,
- 45.25012
- ],
- [
- 19.49507,
- 45.25
- ],
- [
- 19.49524,
- 45.12502
- ],
- [
- 19.12016,
- 45.12466
- ],
- [
- 19.11982,
- 44.99989
- ],
- [
- 19.24444,
- 45.00013
- ],
- [
- 19.24496,
- 44.87509
- ],
- [
- 19.11982,
- 44.87485
- ],
- [
- 19.11982,
- 44.75015
- ],
- [
- 18.74474,
- 44.74978
- ],
- [
- 18.74508,
- 44.9903
- ],
- [
- 18.72568,
- 44.9903
- ],
- [
- 18.72568,
- 44.99977
- ],
- [
- 17.37007,
- 44.99965
- ],
- [
- 17.37024,
- 45.12514
- ],
- [
- 16.49528,
- 45.1249
- ],
- [
- 16.49546,
- 45.00001
- ],
- [
- 16.31693,
- 45.00013
- ],
- [
- 16.31676,
- 44.99491
- ],
- [
- 16.28483,
- 44.99491
- ],
- [
- 16.28534,
- 44.99977
- ],
- [
- 15.99524,
- 45.00013
- ],
- [
- 15.99506,
- 45.12514
- ],
- [
- 15.87009,
- 45.12502
- ],
- [
- 15.87044,
- 44.75015
- ],
- [
- 16.1202,
- 44.75015
- ],
- [
- 16.11986,
- 44.51671
- ],
- [
- 16.1257,
- 44.51646
- ],
- [
- 16.12553,
- 44.50006
- ],
- [
- 16.245,
- 44.49993
- ],
- [
- 16.24517,
- 44.25012
- ],
- [
- 16.37014,
- 44.25012
- ],
- [
- 16.3698,
- 44.12506
- ],
- [
- 16.62043,
- 44.1253
- ],
- [
- 16.62077,
- 44.00035
- ],
- [
- 16.74488,
- 43.99998
- ],
- [
- 16.7454,
- 43.87587
- ],
- [
- 16.87054,
- 43.87538
- ],
- [
- 16.87019,
- 43.75039
- ],
- [
- 16.99482,
- 43.75002
- ],
- [
- 16.99533,
- 43.62551
- ],
- [
- 17.24493,
- 43.62489
- ],
- [
- 17.24527,
- 43.50013
- ],
- [
- 17.36973,
- 43.50001
- ],
- [
- 17.37024,
- 43.24995
- ],
- [
- 17.61967,
- 43.25008
- ],
- [
- 17.62018,
- 43.12517
- ],
- [
- 17.74498,
- 43.12529
- ],
- [
- 17.74498,
- 43.00038
- ],
- [
- 17.87012,
- 43.00025
- ],
- [
- 17.86995,
- 42.87546
- ],
- [
- 18.11989,
- 42.87559
- ],
- [
- 18.12006,
- 42.75016
- ],
- [
- 18.24503,
- 42.75016
- ],
- [
- 18.2452,
- 42.62512
- ],
- [
- 18.49462,
- 42.62537
- ],
- [
- 18.49514,
- 42.50058
- ],
- [
- 18.61994,
- 42.50033
- ],
- [
- 18.62011,
- 42.37491
- ],
- [
- 18.37017,
- 42.37529
- ],
- [
- 18.37017,
- 42.48919
- ],
- [
- 18.34528,
- 42.48931
- ],
- [
- 18.34528,
- 42.50045
- ],
- [
- 18.12023,
- 42.50007
- ],
- [
- 18.12006,
- 42.61817
- ],
- [
- 18.11079,
- 42.6183
- ],
- [
- 18.11062,
- 42.62512
- ],
- [
- 17.49487,
- 42.62487
- ],
- [
- 17.49453,
- 42.73831
- ],
- [
- 17.43324,
- 42.73806
- ],
- [
- 17.43324,
- 42.74991
- ],
- [
- 17.2451,
- 42.75016
- ],
- [
- 17.2451,
- 42.87521
- ],
- [
- 16.99516,
- 42.87508
- ],
- [
- 16.99516,
- 42.83368
- ],
- [
- 17.17043,
- 42.83343
- ],
- [
- 17.17026,
- 42.75016
- ],
- [
- 16.95345,
- 42.75016
- ],
- [
- 16.95345,
- 42.66716
- ],
- [
- 16.77887,
- 42.66716
- ],
- [
- 16.77835,
- 42.75016
- ],
- [
- 16.72832,
- 42.7502
- ],
- [
- 16.72829,
- 42.74769
- ],
- [
- 16.70636,
- 42.74775
- ],
- [
- 16.70628,
- 42.75026
- ],
- [
- 16.62008,
- 42.75029
- ],
- [
- 16.62008,
- 42.97947
- ],
- [
- 16.60605,
- 42.9795
- ],
- [
- 16.60601,
- 42.99109
- ],
- [
- 16.62013,
- 42.99137
- ],
- [
- 16.61991,
- 43.12523
- ],
- [
- 16.36989,
- 43.12504
- ],
- [
- 16.36989,
- 43.00006
- ],
- [
- 16.12003,
- 43.00038
- ],
- [
- 16.12038,
- 42.95831
- ],
- [
- 16.01266,
- 42.95824
- ],
- [
- 16.0124,
- 42.9502
- ],
- [
- 15.99515,
- 42.95008
- ],
- [
- 15.99524,
- 43.08356
- ],
- [
- 16.1202,
- 43.08356
- ],
- [
- 16.1202,
- 43.12529
- ],
- [
- 16.24552,
- 43.12492
- ],
- [
- 16.24466,
- 43.37486
- ],
- [
- 15.99524,
- 43.37511
- ],
- [
- 15.99524,
- 43.48902
- ],
- [
- 15.99309,
- 43.48911
- ],
- [
- 15.99313,
- 43.49558
- ],
- [
- 15.99524,
- 43.49558
- ],
- [
- 15.99524,
- 43.49848
- ],
- [
- 15.9827,
- 43.49854
- ],
- [
- 15.98266,
- 43.49042
- ],
- [
- 15.95648,
- 43.49032
- ],
- [
- 15.95657,
- 43.50007
- ],
- [
- 15.87018,
- 43.50007
- ],
- [
- 15.87018,
- 43.62508
- ],
- [
- 15.74555,
- 43.62483
- ],
- [
- 15.74547,
- 43.61949
- ],
- [
- 15.62011,
- 43.61936
- ],
- [
- 15.62024,
- 43.62085
- ],
- [
- 15.49544,
- 43.62085
- ],
- [
- 15.49527,
- 43.62508
- ],
- [
- 15.3703,
- 43.62502
- ],
- [
- 15.37028,
- 43.74428
- ],
- [
- 15.35541,
- 43.74433
- ],
- [
- 15.35537,
- 43.74996
- ],
- [
- 15.12019,
- 43.74996
- ],
- [
- 15.12011,
- 43.87507
- ],
- [
- 14.99539,
- 43.87507
- ],
- [
- 14.99522,
- 44.00004
- ],
- [
- 14.87051,
- 44.00004
- ],
- [
- 14.87025,
- 44.12487
- ],
- [
- 14.7452,
- 44.12493
- ],
- [
- 14.74545,
- 44.24557
- ],
- [
- 14.7331,
- 44.24557
- ],
- [
- 14.73292,
- 44.24999
- ],
- [
- 14.49543,
- 44.24993
- ],
- [
- 14.49552,
- 44.4913
- ],
- [
- 14.48419,
- 44.49987
- ],
- [
- 14.31004,
- 44.49987
- ],
- [
- 14.31004,
- 44.49706
- ],
- [
- 14.29871,
- 44.49709
- ],
- [
- 14.29871,
- 44.49999
- ],
- [
- 14.24549,
- 44.50006
- ],
- [
- 14.24515,
- 44.61552
- ],
- [
- 14.22884,
- 44.61577
- ],
- [
- 14.22884,
- 44.62493
- ],
- [
- 14.12035,
- 44.62444
- ],
- [
- 14.12052,
- 44.7499
- ],
- [
- 14.24532,
- 44.75003
- ],
- [
- 14.24515,
- 44.87497
- ],
- [
- 14.00448,
- 44.87497
- ],
- [
- 14.00499,
- 44.7995
- ],
- [
- 13.99555,
- 44.79938
- ],
- [
- 13.99538,
- 44.75015
- ],
- [
- 13.74544,
- 44.74978
- ],
- [
- 13.74561,
- 44.87497
- ],
- [
- 13.62064,
- 44.87509
- ],
- [
- 13.62039,
- 45.04157
- ],
- [
- 13.60382,
- 45.04139
- ],
- [
- 13.60391,
- 45.12478
- ],
- [
- 13.4955,
- 45.12478
- ],
- [
- 13.49567,
- 45.46519
- ],
- [
- 13.48675,
- 45.46519
- ],
- [
- 13.4864,
- 45.49648
- ],
- [
- 13.49533,
- 45.49648
- ],
- [
- 13.49516,
- 45.50683
- ],
- [
- 13.53807,
- 45.50719
- ],
- [
- 13.53807,
- 45.49997
- ],
- [
- 13.87041,
- 45.49985
- ],
- [
- 13.87058,
- 45.62472
- ],
- [
- 14.11983,
- 45.62472
- ],
- [
- 14.12052,
- 45.49997
- ],
- [
- 14.20618,
- 45.50033
- ],
- [
- 14.20618,
- 45.5096
- ],
- [
- 14.27708,
- 45.50996
- ],
- [
- 14.27725,
- 45.50021
- ],
- [
- 14.36995,
- 45.50009
- ],
- [
- 14.37012,
- 45.62484
- ],
- [
- 14.49526,
- 45.62472
- ],
- [
- 14.4956,
- 45.7498
- ],
- [
- 14.62023,
- 45.74992
- ],
- [
- 14.6204,
- 45.62496
- ],
- [
- 14.99514,
- 45.62484
- ],
- [
- 14.99548,
- 45.50009
- ],
- [
- 15.24508,
- 45.49997
- ],
- [
- 15.24525,
- 45.71649
- ],
- [
- 15.23701,
- 45.71661
- ],
- [
- 15.23701,
- 45.72524
- ],
- [
- 15.24542,
- 45.72524
- ],
- [
- 15.24559,
- 45.87483
- ],
- [
- 15.61998,
- 45.87507
- ],
- [
- 15.61981,
- 45.9997
- ],
- [
- 15.49519,
- 45.99947
- ],
- [
- 15.49484,
- 46.25003
- ],
- [
- 15.74512,
- 46.24979
- ],
- [
- 15.7453,
- 46.37489
- ],
- [
- 15.99472,
- 46.37512
- ],
- [
- 15.99472,
- 46.49993
- ],
- [
- 16.24517,
- 46.49981
- ],
- [
- 16.245,
- 46.6248
- ]
- ],
- [
- [
- 15.68264,
- 42.95868
- ],
- [
- 15.80795,
- 42.95818
- ],
- [
- 15.80761,
- 43.08318
- ],
- [
- 15.68264,
- 43.08368
- ],
- [
- 15.68264,
- 42.95868
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sadrži podatke Državne geodetske uprave",
- "url": "https://dgu.gov.hr/"
- },
- "available_projections": [
- "EPSG:3765",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "HR",
- "end_date": "2011",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png",
- "id": "dgu-topo-25",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "name": "dgu.hr: Topo 25",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://geoportal.dgu.hr/#/menu/uvjeti-koristenja",
- "start_date": "1996",
- "type": "wms",
- "url": "https://geoportal.dgu.hr/services/tk/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tk:TK25&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.21712,
- 44.08054
- ],
- [
- 16.22916,
- 44.08041
- ],
- [
- 16.22938,
- 44.06055
- ],
- [
- 16.2303,
- 44.05757
- ],
- [
- 16.23715,
- 44.04213
- ],
- [
- 16.23715,
- 44.03615
- ],
- [
- 16.23041,
- 44.03599
- ],
- [
- 16.22494,
- 44.03627
- ],
- [
- 16.2243,
- 44.03599
- ],
- [
- 16.22404,
- 44.03504
- ],
- [
- 16.21608,
- 44.02178
- ],
- [
- 16.21286,
- 44.01661
- ],
- [
- 16.20391,
- 44.01672
- ],
- [
- 16.19269,
- 44.02601
- ],
- [
- 16.18003,
- 44.03662
- ],
- [
- 16.18011,
- 44.03772
- ],
- [
- 16.21129,
- 44.06685
- ],
- [
- 16.21712,
- 44.08054
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "category": "historicphoto",
- "country_code": "HR",
- "end_date": "2007",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png",
- "id": "osm-hr-knin-2007",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "max_zoom": 20,
- "min_zoom": 0,
- "name": "osm-hr: Knin 2007 Aerial imagery",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://tms.osm-hr.org/privacy.htm",
- "start_date": "2007",
- "type": "tms",
- "url": "https://tms.osm-hr.org/knin-2007/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.59394,
- 45.00171
- ],
- [
- 19.70329,
- 45.00547
- ],
- [
- 19.70441,
- 43.01839
- ],
- [
- 19.77633,
- 43.02304
- ],
- [
- 19.77427,
- 42.11507
- ],
- [
- 19.66935,
- 42.11019
- ],
- [
- 19.66656,
- 42.98104
- ],
- [
- 19.59377,
- 42.97665
- ],
- [
- 19.59394,
- 45.00171
- ]
- ],
- [
- [
- 21.49434,
- 44.00064
- ],
- [
- 21.60243,
- 44.00519
- ],
- [
- 21.60273,
- 41.98521
- ],
- [
- 21.49527,
- 41.97908
- ],
- [
- 21.49434,
- 44.00064
- ]
- ],
- [
- [
- 15.48386,
- 45.51525
- ],
- [
- 15.59338,
- 45.5102
- ],
- [
- 15.59355,
- 44.51169
- ],
- [
- 15.66994,
- 44.5156
- ],
- [
- 15.672,
- 45.25531
- ],
- [
- 15.77499,
- 45.25411
- ],
- [
- 15.77568,
- 44.47642
- ],
- [
- 15.75886,
- 44.47618
- ],
- [
- 15.75611,
- 44.24569
- ],
- [
- 15.82169,
- 44.2452
- ],
- [
- 15.82203,
- 44.51156
- ],
- [
- 15.92279,
- 44.51046
- ],
- [
- 15.92245,
- 44.2618
- ],
- [
- 15.98837,
- 44.26094
- ],
- [
- 15.98614,
- 44.51022
- ],
- [
- 16.09531,
- 44.5156
- ],
- [
- 16.09016,
- 43.4736
- ],
- [
- 15.9918,
- 43.4746
- ],
- [
- 15.98991,
- 43.99825
- ],
- [
- 15.92365,
- 43.99924
- ],
- [
- 15.92674,
- 43.48132
- ],
- [
- 15.64453,
- 43.46987
- ],
- [
- 15.65277,
- 43.97898
- ],
- [
- 15.48385,
- 43.97602
- ],
- [
- 15.48042,
- 44.2393
- ],
- [
- 15.56145,
- 44.24274
- ],
- [
- 15.55904,
- 44.4725
- ],
- [
- 15.48489,
- 44.47201
- ],
- [
- 15.48386,
- 45.51525
- ]
- ],
- [
- [
- 18.79237,
- 44.00158
- ],
- [
- 18.90404,
- 44.00813
- ],
- [
- 18.8994,
- 42.19012
- ],
- [
- 18.79864,
- 42.18821
- ],
- [
- 18.79237,
- 44.00158
- ]
- ],
- [
- [
- 19.39593,
- 42.03272
- ],
- [
- 19.50138,
- 42.03734
- ],
- [
- 19.50056,
- 44.59982
- ],
- [
- 19.39748,
- 44.59838
- ],
- [
- 19.39593,
- 42.03272
- ]
- ],
- [
- [
- 21.35021,
- 45.06504
- ],
- [
- 21.46076,
- 45.04982
- ],
- [
- 21.21554,
- 44.33975
- ],
- [
- 21.11795,
- 44.35651
- ],
- [
- 21.35021,
- 45.06504
- ]
- ],
- [
- [
- 16.90521,
- 45.22606
- ],
- [
- 17.02057,
- 45.22606
- ],
- [
- 17.01713,
- 46.01461
- ],
- [
- 16.92238,
- 46.02128
- ],
- [
- 16.92032,
- 46.16889
- ],
- [
- 17.01096,
- 46.16937
- ],
- [
- 17.01507,
- 46.7963
- ],
- [
- 16.92169,
- 46.79677
- ],
- [
- 16.92169,
- 47.01397
- ],
- [
- 16.53511,
- 47.01818
- ],
- [
- 16.53717,
- 46.48397
- ],
- [
- 16.45889,
- 46.48705
- ],
- [
- 16.46061,
- 47.01561
- ],
- [
- 15.98305,
- 47.01608
- ],
- [
- 15.98339,
- 46.95542
- ],
- [
- 15.90031,
- 46.95143
- ],
- [
- 15.90752,
- 45.84399
- ],
- [
- 16.00965,
- 45.84339
- ],
- [
- 16.00914,
- 45.97334
- ],
- [
- 16.37031,
- 45.97549
- ],
- [
- 16.36825,
- 46.23258
- ],
- [
- 16.44379,
- 46.23305
- ],
- [
- 16.44722,
- 45.96452
- ],
- [
- 16.64978,
- 45.95736
- ],
- [
- 16.64978,
- 45.97358
- ],
- [
- 16.90315,
- 45.97072
- ],
- [
- 16.90521,
- 45.22606
- ]
- ],
- [
- [
- 15.29674,
- 45.59698
- ],
- [
- 15.40112,
- 45.59795
- ],
- [
- 15.39974,
- 45.00632
- ],
- [
- 15.2988,
- 45.00632
- ],
- [
- 15.29674,
- 45.59698
- ]
- ],
- [
- [
- 15.97412,
- 45.78345
- ],
- [
- 16.13153,
- 45.78446
- ],
- [
- 16.13814,
- 45.69833
- ],
- [
- 15.97936,
- 45.69959
- ],
- [
- 15.97412,
- 45.78345
- ]
- ],
- [
- [
- 20.4847,
- 44.95994
- ],
- [
- 20.67661,
- 44.96091
- ],
- [
- 20.67541,
- 44.65815
- ],
- [
- 20.48658,
- 44.65937
- ],
- [
- 20.4847,
- 44.95994
- ]
- ],
- [
- [
- 18.98403,
- 47.01631
- ],
- [
- 19.27586,
- 47.01631
- ],
- [
- 19.27654,
- 45.97788
- ],
- [
- 19.16977,
- 45.97549
- ],
- [
- 19.17114,
- 46.48965
- ],
- [
- 19.09098,
- 46.48906
- ],
- [
- 19.09115,
- 46.23329
- ],
- [
- 18.98678,
- 46.23246
- ],
- [
- 18.98403,
- 47.01631
- ]
- ],
- [
- [
- 13.59695,
- 45.63229
- ],
- [
- 14.01031,
- 45.61884
- ],
- [
- 14.01581,
- 44.96893
- ],
- [
- 13.70441,
- 44.96796
- ],
- [
- 13.70407,
- 44.87461
- ],
- [
- 13.59283,
- 44.87242
- ],
- [
- 13.59695,
- 45.63229
- ]
- ],
- [
- [
- 16.30663,
- 45.51074
- ],
- [
- 16.51623,
- 45.51429
- ],
- [
- 16.51211,
- 44.73015
- ],
- [
- 16.4043,
- 44.73417
- ],
- [
- 16.4043,
- 45.24903
- ],
- [
- 16.30955,
- 45.25
- ],
- [
- 16.30663,
- 45.51074
- ]
- ],
- [
- [
- 20.33295,
- 44.96067
- ],
- [
- 20.44933,
- 44.9597
- ],
- [
- 20.4483,
- 44.65449
- ],
- [
- 20.33535,
- 44.65937
- ],
- [
- 20.33295,
- 44.96067
- ]
- ],
- [
- [
- 19.35362,
- 47.01502
- ],
- [
- 19.46005,
- 47.01549
- ],
- [
- 19.46056,
- 45.96845
- ],
- [
- 19.35379,
- 45.96666
- ],
- [
- 19.35362,
- 47.01502
- ]
- ],
- [
- [
- 16.15505,
- 44.50899
- ],
- [
- 16.26595,
- 44.51585
- ],
- [
- 16.26217,
- 44.24077
- ],
- [
- 16.32465,
- 44.24151
- ],
- [
- 16.32397,
- 44.5112
- ],
- [
- 16.4352,
- 44.51658
- ],
- [
- 16.42997,
- 43.47553
- ],
- [
- 16.24535,
- 43.47385
- ],
- [
- 16.24466,
- 43.72707
- ],
- [
- 16.16055,
- 43.72794
- ],
- [
- 16.15505,
- 44.50899
- ]
- ],
- [
- [
- 19.92714,
- 43.97651
- ],
- [
- 20.03632,
- 43.98244
- ],
- [
- 20.03717,
- 46.00686
- ],
- [
- 20.0116,
- 46.00573
- ],
- [
- 20.02052,
- 47.02474
- ],
- [
- 19.533,
- 47.01397
- ],
- [
- 19.53953,
- 45.97382
- ],
- [
- 19.73556,
- 45.97096
- ],
- [
- 19.73848,
- 46.73951
- ],
- [
- 19.81007,
- 46.7361
- ],
- [
- 19.81676,
- 45.97442
- ],
- [
- 19.92336,
- 45.97334
- ],
- [
- 19.92714,
- 43.97651
- ]
- ],
- [
- [
- 21.98055,
- 42.96107
- ],
- [
- 21.98038,
- 44.79377
- ],
- [
- 22.08801,
- 44.79329
- ],
- [
- 22.08681,
- 44.5868
- ],
- [
- 22.1517,
- 44.58594
- ],
- [
- 22.14809,
- 45.01542
- ],
- [
- 22.25933,
- 45.01967
- ],
- [
- 22.25281,
- 44.12407
- ],
- [
- 22.31872,
- 44.12358
- ],
- [
- 22.31666,
- 44.75697
- ],
- [
- 22.39357,
- 44.75844
- ],
- [
- 22.39494,
- 45.0022
- ],
- [
- 22.59484,
- 45.01606
- ],
- [
- 22.5927,
- 43.60377
- ],
- [
- 22.49382,
- 43.60526
- ],
- [
- 22.49382,
- 43.76961
- ],
- [
- 22.4231,
- 43.7701
- ],
- [
- 22.42378,
- 43.53312
- ],
- [
- 22.49794,
- 43.53212
- ],
- [
- 22.50069,
- 43.31818
- ],
- [
- 22.58789,
- 43.31619
- ],
- [
- 22.5872,
- 43.27521
- ],
- [
- 22.60368,
- 43.27371
- ],
- [
- 22.603,
- 42.97602
- ],
- [
- 22.5872,
- 42.97451
- ],
- [
- 22.58446,
- 42.88502
- ],
- [
- 22.48764,
- 42.88603
- ],
- [
- 22.48695,
- 42.97099
- ],
- [
- 22.22465,
- 42.94587
- ],
- [
- 22.22603,
- 42.97501
- ],
- [
- 21.98055,
- 42.96107
- ]
- ],
- [
- [
- 15.90666,
- 45.64165
- ],
- [
- 16.00965,
- 45.64201
- ],
- [
- 16.01352,
- 44.96404
- ],
- [
- 15.90314,
- 44.95927
- ],
- [
- 15.90666,
- 45.64165
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "category": "historicphoto",
- "country_code": "HR",
- "end_date": "2007",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png",
- "id": "osm-hr-orbview",
- "license_url": "https://lists.openstreetmap.org/pipermail/talk/2012-January/061546.html",
- "max_zoom": 17,
- "min_zoom": 0,
- "name": "osm-hr: Orbview",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://tms.osm-hr.org/privacy.htm",
- "start_date": "2003",
- "type": "tms",
- "url": "https://tms.osm-hr.org/orbview/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 14.70005,
- 45.75004
- ],
- [
- 15.00046,
- 45.75004
- ],
- [
- 15.00046,
- 45.50081
- ],
- [
- 14.70005,
- 45.50033
- ],
- [
- 14.70005,
- 45.75004
- ]
- ],
- [
- [
- 20.99995,
- 42.00004
- ],
- [
- 20.99899,
- 41.49932
- ],
- [
- 21.90262,
- 41.49932
- ],
- [
- 21.8985,
- 41.7498
- ],
- [
- 22.19993,
- 41.75004
- ],
- [
- 22.19959,
- 41.50061
- ],
- [
- 22.80006,
- 41.50086
- ],
- [
- 22.79938,
- 41.99982
- ],
- [
- 22.50069,
- 42.00084
- ],
- [
- 22.49931,
- 42.24987
- ],
- [
- 22.19994,
- 42.24987
- ],
- [
- 22.19788,
- 42.00186
- ],
- [
- 21.59912,
- 42.00084
- ],
- [
- 21.59981,
- 42.24987
- ],
- [
- 21.30043,
- 42.24987
- ],
- [
- 21.29974,
- 42.00033
- ],
- [
- 20.99995,
- 42.00004
- ]
- ],
- [
- [
- 13.49962,
- 46.50217
- ],
- [
- 13.49945,
- 45.50009
- ],
- [
- 14.09958,
- 45.50105
- ],
- [
- 14.09958,
- 45.75028
- ],
- [
- 13.79883,
- 45.75028
- ],
- [
- 13.8002,
- 45.99982
- ],
- [
- 14.39964,
- 46.0003
- ],
- [
- 14.40102,
- 46.2492
- ],
- [
- 14.09958,
- 46.24967
- ],
- [
- 14.10026,
- 46.49981
- ],
- [
- 13.49962,
- 46.50217
- ]
- ],
- [
- [
- 15.89996,
- 46.75115
- ],
- [
- 16.19968,
- 46.75048
- ],
- [
- 16.19917,
- 46.5004
- ],
- [
- 15.89979,
- 46.5004
- ],
- [
- 15.89996,
- 46.75115
- ]
- ],
- [
- [
- 15.59964,
- 45.25006
- ],
- [
- 16.80084,
- 45.25
- ],
- [
- 16.80016,
- 45.49985
- ],
- [
- 16.50009,
- 45.50009
- ],
- [
- 16.49975,
- 45.75004
- ],
- [
- 16.79981,
- 45.75004
- ],
- [
- 16.80018,
- 45.50012
- ],
- [
- 17.0997,
- 45.50009
- ],
- [
- 17.10005,
- 45.24988
- ],
- [
- 18.89854,
- 45.25193
- ],
- [
- 18.89992,
- 45.75052
- ],
- [
- 18.6002,
- 45.75052
- ],
- [
- 18.60054,
- 45.99982
- ],
- [
- 19.49936,
- 45.99887
- ],
- [
- 19.49867,
- 46.24944
- ],
- [
- 20.39921,
- 46.24896
- ],
- [
- 20.39886,
- 46.00006
- ],
- [
- 20.69893,
- 45.99959
- ],
- [
- 20.69824,
- 45.50009
- ],
- [
- 20.99899,
- 45.50009
- ],
- [
- 21.00037,
- 45.25024
- ],
- [
- 21.29837,
- 45.25169
- ],
- [
- 21.297,
- 45.00171
- ],
- [
- 21.60187,
- 45.00171
- ],
- [
- 21.59912,
- 44.74673
- ],
- [
- 21.89438,
- 44.74673
- ],
- [
- 21.89987,
- 44.50238
- ],
- [
- 22.1965,
- 44.49944
- ],
- [
- 22.20062,
- 44.75064
- ],
- [
- 22.49863,
- 44.74868
- ],
- [
- 22.49863,
- 43.50075
- ],
- [
- 22.798,
- 43.49876
- ],
- [
- 22.79938,
- 43.25021
- ],
- [
- 23.09875,
- 43.2492
- ],
- [
- 23.1015,
- 43.00164
- ],
- [
- 22.49588,
- 42.99963
- ],
- [
- 22.49863,
- 42.50045
- ],
- [
- 21.89712,
- 42.50045
- ],
- [
- 21.90262,
- 42.74903
- ],
- [
- 21.59775,
- 42.74802
- ],
- [
- 21.59775,
- 42.50147
- ],
- [
- 21.30112,
- 42.50147
- ],
- [
- 21.29837,
- 42.74903
- ],
- [
- 20.99762,
- 42.75105
- ],
- [
- 20.99899,
- 43.00063
- ],
- [
- 20.69961,
- 43.00063
- ],
- [
- 20.69961,
- 42.75105
- ],
- [
- 19.80148,
- 42.75206
- ],
- [
- 19.80423,
- 42.50248
- ],
- [
- 19.49936,
- 42.49944
- ],
- [
- 19.50073,
- 42.00237
- ],
- [
- 18.88962,
- 42.00033
- ],
- [
- 18.88824,
- 42.24987
- ],
- [
- 18.29773,
- 42.24784
- ],
- [
- 18.2991,
- 42.49944
- ],
- [
- 17.70035,
- 42.50147
- ],
- [
- 17.69897,
- 42.74903
- ],
- [
- 17.3996,
- 42.75004
- ],
- [
- 17.40234,
- 43.00164
- ],
- [
- 17.10022,
- 43.00063
- ],
- [
- 17.10022,
- 43.50075
- ],
- [
- 16.79947,
- 43.50275
- ],
- [
- 16.80084,
- 43.74927
- ],
- [
- 16.50284,
- 43.74828
- ],
- [
- 16.49872,
- 43.50374
- ],
- [
- 16.20209,
- 43.50075
- ],
- [
- 16.19797,
- 43.74927
- ],
- [
- 16.49803,
- 43.75082
- ],
- [
- 16.49872,
- 44.00121
- ],
- [
- 15.90134,
- 43.99973
- ],
- [
- 15.89928,
- 44.49993
- ],
- [
- 15.60059,
- 44.49944
- ],
- [
- 15.59964,
- 45.25006
- ]
- ],
- [
- [
- 14.40033,
- 45.25024
- ],
- [
- 14.69902,
- 45.25024
- ],
- [
- 14.70002,
- 44.99997
- ],
- [
- 14.4017,
- 45.00074
- ],
- [
- 14.40033,
- 45.25024
- ]
- ],
- [
- [
- 21.59997,
- 41.25002
- ],
- [
- 21.89996,
- 41.25052
- ],
- [
- 21.90056,
- 41.00218
- ],
- [
- 21.60118,
- 41.00115
- ],
- [
- 21.59997,
- 41.25002
- ]
- ],
- [
- [
- 14.69996,
- 46.49996
- ],
- [
- 14.99984,
- 46.50017
- ],
- [
- 14.99951,
- 46.25039
- ],
- [
- 14.69962,
- 46.25005
- ],
- [
- 14.69996,
- 46.49996
- ]
- ],
- [
- [
- 13.7996,
- 45.25018
- ],
- [
- 14.09992,
- 45.25048
- ],
- [
- 14.10027,
- 44.74966
- ],
- [
- 13.80089,
- 44.75063
- ],
- [
- 13.7996,
- 45.25018
- ]
- ],
- [
- [
- 20.39886,
- 41.75185
- ],
- [
- 20.40024,
- 41.00218
- ],
- [
- 21.29974,
- 41.00011
- ],
- [
- 21.29837,
- 41.25045
- ],
- [
- 20.7003,
- 41.25097
- ],
- [
- 20.69824,
- 41.74929
- ],
- [
- 20.39886,
- 41.75185
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "category": "map",
- "country_code": "HR",
- "end_date": "2002",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png",
- "id": "osm-hr-ustopo50",
- "license_url": "https://legacy.lib.utexas.edu/maps/faq.html#3.html",
- "max_zoom": 15,
- "min_zoom": 0,
- "name": "osm-hr: US Topo 50",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://tms.osm-hr.org/privacy.htm",
- "start_date": "1992",
- "type": "tms",
- "url": "https://tms.osm-hr.org/ustopo/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.15334,
- 45.96857
- ],
- [
- 16.17462,
- 45.94041
- ],
- [
- 16.17599,
- 45.91796
- ],
- [
- 16.18595,
- 45.90793
- ],
- [
- 16.18423,
- 45.89789
- ],
- [
- 16.19728,
- 45.8924
- ],
- [
- 16.22578,
- 45.86085
- ],
- [
- 16.22097,
- 45.85248
- ],
- [
- 16.22938,
- 45.84638
- ],
- [
- 16.22921,
- 45.84148
- ],
- [
- 16.24088,
- 45.83645
- ],
- [
- 16.21719,
- 45.83885
- ],
- [
- 16.20655,
- 45.82784
- ],
- [
- 16.19865,
- 45.77638
- ],
- [
- 16.1602,
- 45.79554
- ],
- [
- 16.12827,
- 45.80224
- ],
- [
- 16.13033,
- 45.79434
- ],
- [
- 16.12278,
- 45.78716
- ],
- [
- 16.10081,
- 45.7862
- ],
- [
- 16.07677,
- 45.77303
- ],
- [
- 16.0572,
- 45.75746
- ],
- [
- 16.03901,
- 45.76082
- ],
- [
- 16.03695,
- 45.7577
- ],
- [
- 16.03935,
- 45.75411
- ],
- [
- 16.02699,
- 45.75507
- ],
- [
- 16.01772,
- 45.74453
- ],
- [
- 16.01772,
- 45.71936
- ],
- [
- 15.98785,
- 45.71601
- ],
- [
- 15.96554,
- 45.69131
- ],
- [
- 15.96725,
- 45.67236
- ],
- [
- 15.95077,
- 45.65125
- ],
- [
- 15.95077,
- 45.63589
- ],
- [
- 15.94768,
- 45.62989
- ],
- [
- 15.94288,
- 45.63109
- ],
- [
- 15.93395,
- 45.62172
- ],
- [
- 15.92606,
- 45.61932
- ],
- [
- 15.92125,
- 45.6138
- ],
- [
- 15.90031,
- 45.62244
- ],
- [
- 15.90717,
- 45.63229
- ],
- [
- 15.89619,
- 45.63565
- ],
- [
- 15.87421,
- 45.65557
- ],
- [
- 15.83885,
- 45.66517
- ],
- [
- 15.81722,
- 45.67044
- ],
- [
- 15.8131,
- 45.67716
- ],
- [
- 15.77568,
- 45.68915
- ],
- [
- 15.77396,
- 45.7081
- ],
- [
- 15.78941,
- 45.73398
- ],
- [
- 15.79285,
- 45.73159
- ],
- [
- 15.80898,
- 45.7383
- ],
- [
- 15.81001,
- 45.73063
- ],
- [
- 15.82237,
- 45.72344
- ],
- [
- 15.83473,
- 45.72871
- ],
- [
- 15.85155,
- 45.71673
- ],
- [
- 15.87078,
- 45.73159
- ],
- [
- 15.84434,
- 45.73159
- ],
- [
- 15.84469,
- 45.76465
- ],
- [
- 15.83834,
- 45.76764
- ],
- [
- 15.81276,
- 45.76764
- ],
- [
- 15.80555,
- 45.77543
- ],
- [
- 15.80538,
- 45.80403
- ],
- [
- 15.8325,
- 45.80391
- ],
- [
- 15.82993,
- 45.80762
- ],
- [
- 15.83319,
- 45.81062
- ],
- [
- 15.82289,
- 45.82581
- ],
- [
- 15.82186,
- 45.83837
- ],
- [
- 15.82975,
- 45.84136
- ],
- [
- 15.84074,
- 45.83992
- ],
- [
- 15.8452,
- 45.84112
- ],
- [
- 15.84434,
- 45.84459
- ],
- [
- 15.84984,
- 45.84805
- ],
- [
- 15.85052,
- 45.85236
- ],
- [
- 15.85979,
- 45.85511
- ],
- [
- 15.86031,
- 45.85308
- ],
- [
- 15.86477,
- 45.85272
- ],
- [
- 15.87301,
- 45.85451
- ],
- [
- 15.87378,
- 45.85755
- ],
- [
- 15.87328,
- 45.86081
- ],
- [
- 15.87816,
- 45.8621
- ],
- [
- 15.87782,
- 45.86563
- ],
- [
- 15.88263,
- 45.8618
- ],
- [
- 15.88649,
- 45.86306
- ],
- [
- 15.88529,
- 45.86545
- ],
- [
- 15.89026,
- 45.87603
- ],
- [
- 15.89709,
- 45.88143
- ],
- [
- 15.9082,
- 45.88642
- ],
- [
- 15.92125,
- 45.88953
- ],
- [
- 15.9288,
- 45.88762
- ],
- [
- 15.93876,
- 45.89359
- ],
- [
- 15.92194,
- 45.89431
- ],
- [
- 15.91988,
- 45.89789
- ],
- [
- 15.92983,
- 45.90339
- ],
- [
- 15.94768,
- 45.90434
- ],
- [
- 15.95352,
- 45.90554
- ],
- [
- 15.95524,
- 45.91223
- ],
- [
- 15.97412,
- 45.91271
- ],
- [
- 15.99918,
- 45.92369
- ],
- [
- 16.00811,
- 45.9299
- ],
- [
- 16.02802,
- 45.93324
- ],
- [
- 16.03043,
- 45.93611
- ],
- [
- 16.04313,
- 45.93969
- ],
- [
- 16.05206,
- 45.93563
- ],
- [
- 16.05171,
- 45.94447
- ],
- [
- 16.06476,
- 45.94661
- ],
- [
- 16.06579,
- 45.95115
- ],
- [
- 16.0778,
- 45.95569
- ],
- [
- 16.09325,
- 45.95903
- ],
- [
- 16.09497,
- 45.95449
- ],
- [
- 16.10767,
- 45.95688
- ],
- [
- 16.11317,
- 45.96165
- ],
- [
- 16.11282,
- 45.96762
- ],
- [
- 16.12038,
- 45.96905
- ],
- [
- 16.13205,
- 45.96475
- ],
- [
- 16.1372,
- 45.96523
- ],
- [
- 16.13823,
- 45.96786
- ],
- [
- 16.15334,
- 45.96857
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada",
- "url": "https://geoportal.zagreb.hr/"
- },
- "category": "historicphoto",
- "country_code": "HR",
- "end_date": "2012",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png",
- "id": "osm-hr-zagreb-2012",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "max_zoom": 20,
- "min_zoom": 0,
- "name": "osm-hr: Zagreb 2012 Aerial imagery",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://tms.osm-hr.org/privacy.htm",
- "start_date": "2012",
- "type": "tms",
- "url": "https://tms.osm-hr.org/zagreb-2012/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.87649,
- 45.87423
- ],
- [
- 15.87739,
- 45.87821
- ],
- [
- 15.88087,
- 45.88248
- ],
- [
- 15.88503,
- 45.8849
- ],
- [
- 15.88773,
- 45.88741
- ],
- [
- 15.89112,
- 45.88953
- ],
- [
- 15.89357,
- 45.89019
- ],
- [
- 15.89773,
- 45.89311
- ],
- [
- 15.90151,
- 45.8944
- ],
- [
- 15.90687,
- 45.89527
- ],
- [
- 15.91116,
- 45.89652
- ],
- [
- 15.91455,
- 45.89691
- ],
- [
- 15.91953,
- 45.89837
- ],
- [
- 15.92378,
- 45.89891
- ],
- [
- 15.92786,
- 45.89849
- ],
- [
- 15.93035,
- 45.90133
- ],
- [
- 15.9343,
- 45.90408
- ],
- [
- 15.93854,
- 45.90599
- ],
- [
- 15.94155,
- 45.90817
- ],
- [
- 15.94567,
- 45.9096
- ],
- [
- 15.9509,
- 45.91008
- ],
- [
- 15.95326,
- 45.91166
- ],
- [
- 15.95605,
- 45.91378
- ],
- [
- 15.96138,
- 45.9159
- ],
- [
- 15.96507,
- 45.92053
- ],
- [
- 15.96923,
- 45.92298
- ],
- [
- 15.97734,
- 45.92536
- ],
- [
- 15.98232,
- 45.92814
- ],
- [
- 15.9873,
- 45.9305
- ],
- [
- 15.99047,
- 45.93104
- ],
- [
- 15.99463,
- 45.93405
- ],
- [
- 16.00287,
- 45.93802
- ],
- [
- 16.00687,
- 45.93924
- ],
- [
- 16.01219,
- 45.93945
- ],
- [
- 16.01648,
- 45.93996
- ],
- [
- 16.01789,
- 45.94056
- ],
- [
- 16.0191,
- 45.94262
- ],
- [
- 16.02219,
- 45.9447
- ],
- [
- 16.02579,
- 45.94605
- ],
- [
- 16.03141,
- 45.94721
- ],
- [
- 16.03618,
- 45.94834
- ],
- [
- 16.04103,
- 45.94849
- ],
- [
- 16.04352,
- 45.95094
- ],
- [
- 16.04759,
- 45.95267
- ],
- [
- 16.05025,
- 45.95339
- ],
- [
- 16.05326,
- 45.95401
- ],
- [
- 16.05609,
- 45.95673
- ],
- [
- 16.06008,
- 45.95876
- ],
- [
- 16.06536,
- 45.9598
- ],
- [
- 16.06819,
- 45.96252
- ],
- [
- 16.07167,
- 45.96407
- ],
- [
- 16.07549,
- 45.96493
- ],
- [
- 16.07931,
- 45.96508
- ],
- [
- 16.08141,
- 45.96538
- ],
- [
- 16.08411,
- 45.96669
- ],
- [
- 16.08707,
- 45.96744
- ],
- [
- 16.09076,
- 45.96762
- ],
- [
- 16.0936,
- 45.96729
- ],
- [
- 16.09566,
- 45.96657
- ],
- [
- 16.09755,
- 45.96562
- ],
- [
- 16.09922,
- 45.96463
- ],
- [
- 16.10034,
- 45.96475
- ],
- [
- 16.10089,
- 45.96565
- ],
- [
- 16.10098,
- 45.96693
- ],
- [
- 16.10132,
- 45.97027
- ],
- [
- 16.1027,
- 45.97281
- ],
- [
- 16.10527,
- 45.97504
- ],
- [
- 16.10827,
- 45.97648
- ],
- [
- 16.11205,
- 45.9774
- ],
- [
- 16.11407,
- 45.97755
- ],
- [
- 16.11669,
- 45.97803
- ],
- [
- 16.11948,
- 45.97815
- ],
- [
- 16.12334,
- 45.97758
- ],
- [
- 16.12707,
- 45.97633
- ],
- [
- 16.12939,
- 45.97603
- ],
- [
- 16.13179,
- 45.9754
- ],
- [
- 16.13402,
- 45.97618
- ],
- [
- 16.13703,
- 45.97683
- ],
- [
- 16.13892,
- 45.97698
- ],
- [
- 16.14145,
- 45.97743
- ],
- [
- 16.14428,
- 45.9774
- ],
- [
- 16.14557,
- 45.97722
- ],
- [
- 16.1481,
- 45.97767
- ],
- [
- 16.15145,
- 45.97761
- ],
- [
- 16.15415,
- 45.97797
- ],
- [
- 16.15724,
- 45.97797
- ],
- [
- 16.1599,
- 45.97734
- ],
- [
- 16.16235,
- 45.97663
- ],
- [
- 16.16458,
- 45.97525
- ],
- [
- 16.16651,
- 45.97334
- ],
- [
- 16.16793,
- 45.9712
- ],
- [
- 16.16844,
- 45.9689
- ],
- [
- 16.16896,
- 45.96726
- ],
- [
- 16.16913,
- 45.96529
- ],
- [
- 16.17123,
- 45.96443
- ],
- [
- 16.17376,
- 45.96264
- ],
- [
- 16.17621,
- 45.96076
- ],
- [
- 16.1778,
- 45.95888
- ],
- [
- 16.17866,
- 45.95664
- ],
- [
- 16.17866,
- 45.95524
- ],
- [
- 16.17956,
- 45.95321
- ],
- [
- 16.17964,
- 45.95082
- ],
- [
- 16.17986,
- 45.94945
- ],
- [
- 16.18278,
- 45.94736
- ],
- [
- 16.18462,
- 45.94521
- ],
- [
- 16.18582,
- 45.94276
- ],
- [
- 16.18595,
- 45.94065
- ],
- [
- 16.18578,
- 45.93874
- ],
- [
- 16.18509,
- 45.93727
- ],
- [
- 16.18582,
- 45.93506
- ],
- [
- 16.18617,
- 45.93256
- ],
- [
- 16.18578,
- 45.93059
- ],
- [
- 16.18608,
- 45.92721
- ],
- [
- 16.18728,
- 45.92548
- ],
- [
- 16.18771,
- 45.9228
- ],
- [
- 16.19067,
- 45.92077
- ],
- [
- 16.1923,
- 45.91856
- ],
- [
- 16.19308,
- 45.91644
- ],
- [
- 16.19329,
- 45.91515
- ],
- [
- 16.19535,
- 45.91309
- ],
- [
- 16.19698,
- 45.91059
- ],
- [
- 16.19741,
- 45.90784
- ],
- [
- 16.19737,
- 45.90605
- ],
- [
- 16.19647,
- 45.90378
- ],
- [
- 16.19651,
- 45.90279
- ],
- [
- 16.19951,
- 45.9027
- ],
- [
- 16.20359,
- 45.90163
- ],
- [
- 16.20625,
- 45.90022
- ],
- [
- 16.20827,
- 45.89822
- ],
- [
- 16.2117,
- 45.89365
- ],
- [
- 16.21505,
- 45.88854
- ],
- [
- 16.21664,
- 45.88553
- ],
- [
- 16.21977,
- 45.88338
- ],
- [
- 16.22204,
- 45.8806
- ],
- [
- 16.22591,
- 45.87531
- ],
- [
- 16.2338,
- 45.86969
- ],
- [
- 16.2359,
- 45.86862
- ],
- [
- 16.23874,
- 45.86626
- ],
- [
- 16.24032,
- 45.86327
- ],
- [
- 16.24071,
- 45.85983
- ],
- [
- 16.2405,
- 45.85855
- ],
- [
- 16.24002,
- 45.85598
- ],
- [
- 16.23904,
- 45.85409
- ],
- [
- 16.23779,
- 45.85281
- ],
- [
- 16.23972,
- 45.85122
- ],
- [
- 16.24093,
- 45.84949
- ],
- [
- 16.2417,
- 45.84737
- ],
- [
- 16.24487,
- 45.84641
- ],
- [
- 16.24779,
- 45.84474
- ],
- [
- 16.25041,
- 45.84231
- ],
- [
- 16.25191,
- 45.8401
- ],
- [
- 16.25247,
- 45.83795
- ],
- [
- 16.25204,
- 45.83517
- ],
- [
- 16.26826,
- 45.83511
- ],
- [
- 16.26831,
- 45.8236
- ],
- [
- 16.22974,
- 45.82356
- ],
- [
- 16.2299,
- 45.78591
- ],
- [
- 16.21109,
- 45.78616
- ],
- [
- 16.21101,
- 45.78447
- ],
- [
- 16.21243,
- 45.7827
- ],
- [
- 16.21333,
- 45.78039
- ],
- [
- 16.21333,
- 45.77797
- ],
- [
- 16.2123,
- 45.77558
- ],
- [
- 16.2099,
- 45.77309
- ],
- [
- 16.20788,
- 45.77129
- ],
- [
- 16.20543,
- 45.76977
- ],
- [
- 16.20217,
- 45.76878
- ],
- [
- 16.19934,
- 45.76827
- ],
- [
- 16.19552,
- 45.76851
- ],
- [
- 16.19174,
- 45.7695
- ],
- [
- 16.17531,
- 45.77818
- ],
- [
- 16.16934,
- 45.78081
- ],
- [
- 16.1578,
- 45.78497
- ],
- [
- 16.1508,
- 45.78692
- ],
- [
- 16.14394,
- 45.78701
- ],
- [
- 16.14368,
- 45.77965
- ],
- [
- 16.11181,
- 45.69503
- ],
- [
- 16.07629,
- 45.69513
- ],
- [
- 16.07624,
- 45.69708
- ],
- [
- 16.02624,
- 45.69689
- ],
- [
- 16.01491,
- 45.70991
- ],
- [
- 16.01129,
- 45.70996
- ],
- [
- 16.00871,
- 45.71028
- ],
- [
- 16.00373,
- 45.71008
- ],
- [
- 15.99841,
- 45.70879
- ],
- [
- 15.99472,
- 45.70513
- ],
- [
- 15.99386,
- 45.70237
- ],
- [
- 15.99172,
- 45.69914
- ],
- [
- 15.9888,
- 45.69698
- ],
- [
- 15.98657,
- 45.69581
- ],
- [
- 15.98369,
- 45.69365
- ],
- [
- 15.97949,
- 45.69185
- ],
- [
- 15.97923,
- 45.68954
- ],
- [
- 15.97803,
- 45.68739
- ],
- [
- 15.98022,
- 45.68427
- ],
- [
- 15.98077,
- 45.68091
- ],
- [
- 15.98043,
- 45.67911
- ],
- [
- 15.9797,
- 45.67755
- ],
- [
- 15.97944,
- 45.6756
- ],
- [
- 15.97858,
- 45.67314
- ],
- [
- 15.97906,
- 45.6711
- ],
- [
- 15.97871,
- 45.66844
- ],
- [
- 15.97704,
- 45.66604
- ],
- [
- 15.97459,
- 45.66379
- ],
- [
- 15.97305,
- 45.66196
- ],
- [
- 15.97052,
- 45.65968
- ],
- [
- 15.97034,
- 45.65614
- ],
- [
- 15.96846,
- 45.6526
- ],
- [
- 15.96627,
- 45.65023
- ],
- [
- 15.96215,
- 45.64795
- ],
- [
- 15.96223,
- 45.64567
- ],
- [
- 15.96288,
- 45.64225
- ],
- [
- 15.96271,
- 45.64
- ],
- [
- 15.96335,
- 45.63724
- ],
- [
- 15.96279,
- 45.63478
- ],
- [
- 15.95987,
- 45.63049
- ],
- [
- 15.95944,
- 45.6273
- ],
- [
- 15.95768,
- 45.62454
- ],
- [
- 15.95429,
- 45.62211
- ],
- [
- 15.95163,
- 45.62118
- ],
- [
- 15.94803,
- 45.62061
- ],
- [
- 15.94494,
- 45.61761
- ],
- [
- 15.94082,
- 45.61515
- ],
- [
- 15.93799,
- 45.61389
- ],
- [
- 15.93408,
- 45.61305
- ],
- [
- 15.93099,
- 45.60935
- ],
- [
- 15.92764,
- 45.60704
- ],
- [
- 15.92322,
- 45.60542
- ],
- [
- 15.91816,
- 45.605
- ],
- [
- 15.91352,
- 45.60596
- ],
- [
- 15.91181,
- 45.60671
- ],
- [
- 15.90885,
- 45.6074
- ],
- [
- 15.90387,
- 45.6083
- ],
- [
- 15.90074,
- 45.60989
- ],
- [
- 15.89812,
- 45.6114
- ],
- [
- 15.89464,
- 45.61263
- ],
- [
- 15.89194,
- 45.61431
- ],
- [
- 15.8885,
- 45.61665
- ],
- [
- 15.8864,
- 45.61911
- ],
- [
- 15.88554,
- 45.62199
- ],
- [
- 15.88584,
- 45.6246
- ],
- [
- 15.88747,
- 45.62697
- ],
- [
- 15.88816,
- 45.62808
- ],
- [
- 15.88464,
- 45.63013
- ],
- [
- 15.88224,
- 45.63256
- ],
- [
- 15.88134,
- 45.63436
- ],
- [
- 15.88095,
- 45.63577
- ],
- [
- 15.87778,
- 45.63718
- ],
- [
- 15.87554,
- 45.63859
- ],
- [
- 15.87215,
- 45.64033
- ],
- [
- 15.86984,
- 45.64267
- ],
- [
- 15.86821,
- 45.64525
- ],
- [
- 15.86666,
- 45.64738
- ],
- [
- 15.86318,
- 45.64744
- ],
- [
- 15.85962,
- 45.64807
- ],
- [
- 15.85696,
- 45.64912
- ],
- [
- 15.85413,
- 45.6502
- ],
- [
- 15.85138,
- 45.65014
- ],
- [
- 15.84731,
- 45.65104
- ],
- [
- 15.84426,
- 45.65242
- ],
- [
- 15.84224,
- 45.65395
- ],
- [
- 15.83967,
- 45.65515
- ],
- [
- 15.83417,
- 45.6562
- ],
- [
- 15.83027,
- 45.65755
- ],
- [
- 15.82709,
- 45.65923
- ],
- [
- 15.8246,
- 45.66118
- ],
- [
- 15.82044,
- 45.66112
- ],
- [
- 15.81563,
- 45.66136
- ],
- [
- 15.81048,
- 45.66271
- ],
- [
- 15.80641,
- 45.66514
- ],
- [
- 15.80435,
- 45.66796
- ],
- [
- 15.80306,
- 45.67008
- ],
- [
- 15.79851,
- 45.67149
- ],
- [
- 15.79529,
- 45.67338
- ],
- [
- 15.7928,
- 45.6735
- ],
- [
- 15.78817,
- 45.6747
- ],
- [
- 15.78349,
- 45.67632
- ],
- [
- 15.77521,
- 45.67992
- ],
- [
- 15.76791,
- 45.6837
- ],
- [
- 15.76525,
- 45.68649
- ],
- [
- 15.76431,
- 45.68909
- ],
- [
- 15.76427,
- 45.69158
- ],
- [
- 15.76379,
- 45.69539
- ],
- [
- 15.76405,
- 45.69944
- ],
- [
- 15.76281,
- 45.70246
- ],
- [
- 15.76079,
- 45.70606
- ],
- [
- 15.7607,
- 45.70957
- ],
- [
- 15.76221,
- 45.71289
- ],
- [
- 15.76598,
- 45.71652
- ],
- [
- 15.76856,
- 45.72287
- ],
- [
- 15.77143,
- 45.72748
- ],
- [
- 15.77345,
- 45.73264
- ],
- [
- 15.77748,
- 45.73713
- ],
- [
- 15.77989,
- 45.73985
- ],
- [
- 15.78371,
- 45.74183
- ],
- [
- 15.78787,
- 45.74282
- ],
- [
- 15.79169,
- 45.74255
- ],
- [
- 15.79551,
- 45.74387
- ],
- [
- 15.79808,
- 45.74474
- ],
- [
- 15.8013,
- 45.74617
- ],
- [
- 15.80615,
- 45.74716
- ],
- [
- 15.80438,
- 45.87573
- ],
- [
- 15.83911,
- 45.87594
- ],
- [
- 15.84298,
- 45.8754
- ],
- [
- 15.84322,
- 45.85968
- ],
- [
- 15.84542,
- 45.86074
- ],
- [
- 15.84866,
- 45.86191
- ],
- [
- 15.85106,
- 45.86268
- ],
- [
- 15.85246,
- 45.86304
- ],
- [
- 15.85518,
- 45.86382
- ],
- [
- 15.85733,
- 45.86421
- ],
- [
- 15.8599,
- 45.86422
- ],
- [
- 15.8617,
- 45.86397
- ],
- [
- 15.8637,
- 45.86682
- ],
- [
- 15.86499,
- 45.86781
- ],
- [
- 15.86726,
- 45.87077
- ],
- [
- 15.87035,
- 45.87286
- ],
- [
- 15.87301,
- 45.8737
- ],
- [
- 15.87649,
- 45.87423
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada",
- "url": "https://geoportal.zagreb.hr/"
- },
- "best": true,
- "category": "photo",
- "country_code": "HR",
- "end_date": "2018",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png",
- "id": "osm-hr-zagreb-2018",
- "license_url": "https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html",
- "max_zoom": 20,
- "min_zoom": 0,
- "name": "osm-hr: Zagreb 2018 Aerial imagery",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://tms.osm-hr.org/privacy.htm",
- "start_date": "2018",
- "type": "tms",
- "url": "https://tms.osm-hr.org/zagreb-2018/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.04767,
- 47.48789
- ],
- [
- 19.05157,
- 47.4899
- ],
- [
- 19.06434,
- 47.4792
- ],
- [
- 19.0665,
- 47.47632
- ],
- [
- 19.06766,
- 47.47343
- ],
- [
- 19.06837,
- 47.47077
- ],
- [
- 19.06846,
- 47.46876
- ],
- [
- 19.06722,
- 47.46501
- ],
- [
- 19.05683,
- 47.45259
- ],
- [
- 19.0549,
- 47.44906
- ],
- [
- 19.05176,
- 47.43499
- ],
- [
- 19.04863,
- 47.429
- ],
- [
- 19.04384,
- 47.42968
- ],
- [
- 19.04023,
- 47.42932
- ],
- [
- 19.03509,
- 47.43818
- ],
- [
- 19.03221,
- 47.43779
- ],
- [
- 19.0252,
- 47.442
- ],
- [
- 19.0207,
- 47.44576
- ],
- [
- 19.01915,
- 47.44658
- ],
- [
- 19.01545,
- 47.44759
- ],
- [
- 19.01347,
- 47.44361
- ],
- [
- 19.01266,
- 47.44271
- ],
- [
- 19.01178,
- 47.44247
- ],
- [
- 19.0119,
- 47.44188
- ],
- [
- 19.0098,
- 47.43944
- ],
- [
- 19.0057,
- 47.43111
- ],
- [
- 19.00046,
- 47.43097
- ],
- [
- 18.99534,
- 47.42821
- ],
- [
- 18.97545,
- 47.42818
- ],
- [
- 18.97343,
- 47.42904
- ],
- [
- 18.97361,
- 47.42998
- ],
- [
- 18.97548,
- 47.43067
- ],
- [
- 18.97719,
- 47.43402
- ],
- [
- 18.97823,
- 47.43817
- ],
- [
- 18.97733,
- 47.44657
- ],
- [
- 18.97004,
- 47.44988
- ],
- [
- 18.96861,
- 47.45142
- ],
- [
- 18.97568,
- 47.45506
- ],
- [
- 18.97586,
- 47.45556
- ],
- [
- 18.97625,
- 47.45584
- ],
- [
- 18.97658,
- 47.45594
- ],
- [
- 18.97763,
- 47.45597
- ],
- [
- 18.98017,
- 47.45605
- ],
- [
- 18.98162,
- 47.46067
- ],
- [
- 18.97793,
- 47.46857
- ],
- [
- 18.96867,
- 47.47643
- ],
- [
- 18.97745,
- 47.48194
- ],
- [
- 18.98035,
- 47.48169
- ],
- [
- 18.98565,
- 47.4782
- ],
- [
- 18.98907,
- 47.47838
- ],
- [
- 18.99117,
- 47.47898
- ],
- [
- 18.99177,
- 47.48102
- ],
- [
- 18.99288,
- 47.48182
- ],
- [
- 18.99836,
- 47.48238
- ],
- [
- 18.99902,
- 47.483
- ],
- [
- 19.004,
- 47.48189
- ],
- [
- 19.00416,
- 47.48399
- ],
- [
- 19.01027,
- 47.48535
- ],
- [
- 19.01237,
- 47.48404
- ],
- [
- 19.0138,
- 47.48351
- ],
- [
- 19.01674,
- 47.48465
- ],
- [
- 19.0163,
- 47.48539
- ],
- [
- 19.01689,
- 47.48595
- ],
- [
- 19.01808,
- 47.48605
- ],
- [
- 19.02108,
- 47.48492
- ],
- [
- 19.02124,
- 47.48612
- ],
- [
- 19.02301,
- 47.48741
- ],
- [
- 19.02637,
- 47.48885
- ],
- [
- 19.02995,
- 47.48904
- ],
- [
- 19.03135,
- 47.48855
- ],
- [
- 19.03189,
- 47.48759
- ],
- [
- 19.03286,
- 47.48712
- ],
- [
- 19.03364,
- 47.48702
- ],
- [
- 19.03514,
- 47.48725
- ],
- [
- 19.03585,
- 47.48729
- ],
- [
- 19.03616,
- 47.48751
- ],
- [
- 19.03665,
- 47.48767
- ],
- [
- 19.03748,
- 47.48774
- ],
- [
- 19.03847,
- 47.48737
- ],
- [
- 19.03918,
- 47.48679
- ],
- [
- 19.04105,
- 47.48649
- ],
- [
- 19.04181,
- 47.48737
- ],
- [
- 19.04387,
- 47.4881
- ],
- [
- 19.04542,
- 47.48817
- ],
- [
- 19.04695,
- 47.4881
- ],
- [
- 19.04767,
- 47.48789
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Budapest XI. kerület önkormányzata",
- "url": "https://terinfo.ujbuda.hu"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:23700"
- ],
- "country_code": "HU",
- "description": "5 cm resolution bald image",
- "end_date": "2015",
- "id": "Budapest_XI_2015",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofotók#Budapest_XI._ker.C3.BClet",
- "name": "Budapest district XI orthophoto 2015",
- "start_date": "2015",
- "type": "wms",
- "url": "https://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto2015_20160304&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.04767,
- 47.48789
- ],
- [
- 19.05157,
- 47.4899
- ],
- [
- 19.06434,
- 47.4792
- ],
- [
- 19.0665,
- 47.47632
- ],
- [
- 19.06766,
- 47.47343
- ],
- [
- 19.06837,
- 47.47077
- ],
- [
- 19.06846,
- 47.46876
- ],
- [
- 19.06722,
- 47.46501
- ],
- [
- 19.05683,
- 47.45259
- ],
- [
- 19.0549,
- 47.44906
- ],
- [
- 19.05176,
- 47.43499
- ],
- [
- 19.04863,
- 47.429
- ],
- [
- 19.04384,
- 47.42968
- ],
- [
- 19.04023,
- 47.42932
- ],
- [
- 19.03509,
- 47.43818
- ],
- [
- 19.03221,
- 47.43779
- ],
- [
- 19.0252,
- 47.442
- ],
- [
- 19.0207,
- 47.44576
- ],
- [
- 19.01915,
- 47.44658
- ],
- [
- 19.01545,
- 47.44759
- ],
- [
- 19.01347,
- 47.44361
- ],
- [
- 19.01266,
- 47.44271
- ],
- [
- 19.01178,
- 47.44247
- ],
- [
- 19.0119,
- 47.44188
- ],
- [
- 19.0098,
- 47.43944
- ],
- [
- 19.0057,
- 47.43111
- ],
- [
- 19.00046,
- 47.43097
- ],
- [
- 18.99534,
- 47.42821
- ],
- [
- 18.97545,
- 47.42818
- ],
- [
- 18.97343,
- 47.42904
- ],
- [
- 18.97361,
- 47.42998
- ],
- [
- 18.97548,
- 47.43067
- ],
- [
- 18.97719,
- 47.43402
- ],
- [
- 18.97823,
- 47.43817
- ],
- [
- 18.97733,
- 47.44657
- ],
- [
- 18.97004,
- 47.44988
- ],
- [
- 18.96861,
- 47.45142
- ],
- [
- 18.97568,
- 47.45506
- ],
- [
- 18.97586,
- 47.45556
- ],
- [
- 18.97625,
- 47.45584
- ],
- [
- 18.97658,
- 47.45594
- ],
- [
- 18.97763,
- 47.45597
- ],
- [
- 18.98017,
- 47.45605
- ],
- [
- 18.98162,
- 47.46067
- ],
- [
- 18.97793,
- 47.46857
- ],
- [
- 18.96867,
- 47.47643
- ],
- [
- 18.97745,
- 47.48194
- ],
- [
- 18.98035,
- 47.48169
- ],
- [
- 18.98565,
- 47.4782
- ],
- [
- 18.98907,
- 47.47838
- ],
- [
- 18.99117,
- 47.47898
- ],
- [
- 18.99177,
- 47.48102
- ],
- [
- 18.99288,
- 47.48182
- ],
- [
- 18.99836,
- 47.48238
- ],
- [
- 18.99902,
- 47.483
- ],
- [
- 19.004,
- 47.48189
- ],
- [
- 19.00416,
- 47.48399
- ],
- [
- 19.01027,
- 47.48535
- ],
- [
- 19.01237,
- 47.48404
- ],
- [
- 19.0138,
- 47.48351
- ],
- [
- 19.01674,
- 47.48465
- ],
- [
- 19.0163,
- 47.48539
- ],
- [
- 19.01689,
- 47.48595
- ],
- [
- 19.01808,
- 47.48605
- ],
- [
- 19.02108,
- 47.48492
- ],
- [
- 19.02124,
- 47.48612
- ],
- [
- 19.02301,
- 47.48741
- ],
- [
- 19.02637,
- 47.48885
- ],
- [
- 19.02995,
- 47.48904
- ],
- [
- 19.03135,
- 47.48855
- ],
- [
- 19.03189,
- 47.48759
- ],
- [
- 19.03286,
- 47.48712
- ],
- [
- 19.03364,
- 47.48702
- ],
- [
- 19.03514,
- 47.48725
- ],
- [
- 19.03585,
- 47.48729
- ],
- [
- 19.03616,
- 47.48751
- ],
- [
- 19.03665,
- 47.48767
- ],
- [
- 19.03748,
- 47.48774
- ],
- [
- 19.03847,
- 47.48737
- ],
- [
- 19.03918,
- 47.48679
- ],
- [
- 19.04105,
- 47.48649
- ],
- [
- 19.04181,
- 47.48737
- ],
- [
- 19.04387,
- 47.4881
- ],
- [
- 19.04542,
- 47.48817
- ],
- [
- 19.04695,
- 47.4881
- ],
- [
- 19.04767,
- 47.48789
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Budapest XI. kerület önkormányzata",
- "url": "https://terinfo.ujbuda.hu"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:23700"
- ],
- "country_code": "HU",
- "description": "5 cm resolution bald image",
- "end_date": "2017-03",
- "id": "Budapest_XI_2017",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofotók#Budapest_XI._ker.C3.BClet",
- "name": "Budapest district XI orthophoto 2017",
- "privacy_policy_url": "https://kozigazgatas.ujbuda.hu/adatvedelem",
- "start_date": "2017-03",
- "type": "wms",
- "url": "https://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.04767,
- 47.48789
- ],
- [
- 19.05157,
- 47.4899
- ],
- [
- 19.06434,
- 47.4792
- ],
- [
- 19.0665,
- 47.47632
- ],
- [
- 19.06766,
- 47.47343
- ],
- [
- 19.06837,
- 47.47077
- ],
- [
- 19.06846,
- 47.46876
- ],
- [
- 19.06722,
- 47.46501
- ],
- [
- 19.05683,
- 47.45259
- ],
- [
- 19.0549,
- 47.44906
- ],
- [
- 19.05176,
- 47.43499
- ],
- [
- 19.04863,
- 47.429
- ],
- [
- 19.04384,
- 47.42968
- ],
- [
- 19.04023,
- 47.42932
- ],
- [
- 19.03509,
- 47.43818
- ],
- [
- 19.03221,
- 47.43779
- ],
- [
- 19.0252,
- 47.442
- ],
- [
- 19.0207,
- 47.44576
- ],
- [
- 19.01915,
- 47.44658
- ],
- [
- 19.01545,
- 47.44759
- ],
- [
- 19.01347,
- 47.44361
- ],
- [
- 19.01266,
- 47.44271
- ],
- [
- 19.01178,
- 47.44247
- ],
- [
- 19.0119,
- 47.44188
- ],
- [
- 19.0098,
- 47.43944
- ],
- [
- 19.0057,
- 47.43111
- ],
- [
- 19.00046,
- 47.43097
- ],
- [
- 18.99534,
- 47.42821
- ],
- [
- 18.97545,
- 47.42818
- ],
- [
- 18.97343,
- 47.42904
- ],
- [
- 18.97361,
- 47.42998
- ],
- [
- 18.97548,
- 47.43067
- ],
- [
- 18.97719,
- 47.43402
- ],
- [
- 18.97823,
- 47.43817
- ],
- [
- 18.97733,
- 47.44657
- ],
- [
- 18.97004,
- 47.44988
- ],
- [
- 18.96861,
- 47.45142
- ],
- [
- 18.97568,
- 47.45506
- ],
- [
- 18.97586,
- 47.45556
- ],
- [
- 18.97625,
- 47.45584
- ],
- [
- 18.97658,
- 47.45594
- ],
- [
- 18.97763,
- 47.45597
- ],
- [
- 18.98017,
- 47.45605
- ],
- [
- 18.98162,
- 47.46067
- ],
- [
- 18.97793,
- 47.46857
- ],
- [
- 18.96867,
- 47.47643
- ],
- [
- 18.97745,
- 47.48194
- ],
- [
- 18.98035,
- 47.48169
- ],
- [
- 18.98565,
- 47.4782
- ],
- [
- 18.98907,
- 47.47838
- ],
- [
- 18.99117,
- 47.47898
- ],
- [
- 18.99177,
- 47.48102
- ],
- [
- 18.99288,
- 47.48182
- ],
- [
- 18.99836,
- 47.48238
- ],
- [
- 18.99902,
- 47.483
- ],
- [
- 19.004,
- 47.48189
- ],
- [
- 19.00416,
- 47.48399
- ],
- [
- 19.01027,
- 47.48535
- ],
- [
- 19.01237,
- 47.48404
- ],
- [
- 19.0138,
- 47.48351
- ],
- [
- 19.01674,
- 47.48465
- ],
- [
- 19.0163,
- 47.48539
- ],
- [
- 19.01689,
- 47.48595
- ],
- [
- 19.01808,
- 47.48605
- ],
- [
- 19.02108,
- 47.48492
- ],
- [
- 19.02124,
- 47.48612
- ],
- [
- 19.02301,
- 47.48741
- ],
- [
- 19.02637,
- 47.48885
- ],
- [
- 19.02995,
- 47.48904
- ],
- [
- 19.03135,
- 47.48855
- ],
- [
- 19.03189,
- 47.48759
- ],
- [
- 19.03286,
- 47.48712
- ],
- [
- 19.03364,
- 47.48702
- ],
- [
- 19.03514,
- 47.48725
- ],
- [
- 19.03585,
- 47.48729
- ],
- [
- 19.03616,
- 47.48751
- ],
- [
- 19.03665,
- 47.48767
- ],
- [
- 19.03748,
- 47.48774
- ],
- [
- 19.03847,
- 47.48737
- ],
- [
- 19.03918,
- 47.48679
- ],
- [
- 19.04105,
- 47.48649
- ],
- [
- 19.04181,
- 47.48737
- ],
- [
- 19.04387,
- 47.4881
- ],
- [
- 19.04542,
- 47.48817
- ],
- [
- 19.04695,
- 47.4881
- ],
- [
- 19.04767,
- 47.48789
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Budapest XI. kerület önkormányzata",
- "url": "http://terinfo.ujbuda.hu"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:23700"
- ],
- "best": true,
- "country_code": "HU",
- "description": "5 cm resolution bald image",
- "end_date": "2019",
- "id": "Budapest_XI_2019",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofotók#Budapest_XI._ker.C3.BClet",
- "name": "Budapest district XI orthophoto 2019",
- "privacy_policy_url": "https://kozigazgatas.ujbuda.hu/adatvedelem",
- "start_date": "2019",
- "type": "wms",
- "url": "https://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2019&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.07732,
- 47.69597
- ],
- [
- 19.07799,
- 47.69598
- ],
- [
- 19.09462,
- 47.69446
- ],
- [
- 19.08056,
- 47.59587
- ],
- [
- 19.07434,
- 47.58909
- ],
- [
- 19.07952,
- 47.58883
- ],
- [
- 19.07717,
- 47.57241
- ],
- [
- 19.05779,
- 47.57209
- ],
- [
- 19.07732,
- 47.69597
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Fotótérkép.hu",
- "url": "http://fototerkep.hu"
- },
- "country_code": "HU",
- "description": "Riverbank of Danube at Budapest, Szentendre and Szigetmonostor",
- "end_date": "2013",
- "id": "Duna_2013",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#.C3.81rv.C3.ADzi_ortofot.C3.B3_a_Dun.C3.A1r.C3.B3l",
- "max_zoom": 20,
- "min_zoom": 10,
- "name": "Danube flood orthophoto 2013",
- "start_date": "2013",
- "type": "tms",
- "url": "http://e.tile.openstreetmap.hu/dunai-arviz-2013/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.17918,
- 46.98502
- ],
- [
- 18.17773,
- 47.01816
- ],
- [
- 18.08176,
- 47.05643
- ],
- [
- 18.10281,
- 47.06311
- ],
- [
- 18.08152,
- 47.09344
- ],
- [
- 18.06436,
- 47.09049
- ],
- [
- 18.03537,
- 47.07983
- ],
- [
- 18.03344,
- 47.08262
- ],
- [
- 17.9582,
- 47.05567
- ],
- [
- 17.99436,
- 47.00449
- ],
- [
- 17.86441,
- 46.95517
- ],
- [
- 17.80274,
- 47.0103
- ],
- [
- 17.67184,
- 46.97207
- ],
- [
- 17.23875,
- 46.77079
- ],
- [
- 17.22244,
- 46.6796
- ],
- [
- 17.47175,
- 46.70306
- ],
- [
- 18.16735,
- 46.94133
- ],
- [
- 18.17918,
- 46.98502
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "EUFAR Balaton ortofotó 2010",
- "url": "http://www.bli.okologia.mta.hu/"
- },
- "best": true,
- "country_code": "HU",
- "default": false,
- "description": "1940 geo-tagged photography from Balaton Limnological Institute.",
- "end_date": "2010-08-31",
- "i18n": true,
- "id": "eufar-balaton",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#Balaton",
- "max_zoom": 19,
- "min_zoom": 12,
- "name": "EUFAR Balaton orthophotos",
- "overlay": false,
- "permission_osm": "explicit",
- "start_date": "2010-08-01",
- "type": "tms",
- "url": "http://e.tile.openstreetmap.hu/balaton/0/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.0,
- 45.0
- ],
- [
- 24.0,
- 45.0
- ],
- [
- 24.0,
- 49.0
- ],
- [
- 15.0,
- 49.0
- ],
- [
- 15.0,
- 45.0
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "SRTM"
- },
- "country_code": "HU",
- "id": "hu-hillshade",
- "max_zoom": 18,
- "name": "Hillshade Hungary",
- "overlay": true,
- "type": "tms",
- "url": "https://{switch:a,b,c}.map.turistautak.hu/tiles/shading/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.11391,
- 46.8691
- ],
- [
- 16.17897,
- 46.90662
- ],
- [
- 16.20004,
- 46.94151
- ],
- [
- 16.22175,
- 46.93554
- ],
- [
- 16.24628,
- 46.94639
- ],
- [
- 16.25532,
- 46.96421
- ],
- [
- 16.27647,
- 46.96261
- ],
- [
- 16.29058,
- 47.01398
- ],
- [
- 16.30162,
- 46.99923
- ],
- [
- 16.34146,
- 46.99652
- ],
- [
- 16.35052,
- 47.01063
- ],
- [
- 16.3734,
- 46.99859
- ],
- [
- 16.41277,
- 47.00475
- ],
- [
- 16.43327,
- 46.99274
- ],
- [
- 16.44781,
- 47.00389
- ],
- [
- 16.48,
- 46.99412
- ],
- [
- 16.5122,
- 47.00117
- ],
- [
- 16.46356,
- 47.03227
- ],
- [
- 16.44786,
- 47.02275
- ],
- [
- 16.43912,
- 47.02966
- ],
- [
- 16.44567,
- 47.03887
- ],
- [
- 16.52032,
- 47.0561
- ],
- [
- 16.47321,
- 47.07362
- ],
- [
- 16.46372,
- 47.09392
- ],
- [
- 16.5008,
- 47.11006
- ],
- [
- 16.50004,
- 47.12329
- ],
- [
- 16.52953,
- 47.12874
- ],
- [
- 16.51716,
- 47.14969
- ],
- [
- 16.45495,
- 47.14259
- ],
- [
- 16.46487,
- 47.16833
- ],
- [
- 16.45556,
- 47.18756
- ],
- [
- 16.43056,
- 47.1847
- ],
- [
- 16.4195,
- 47.19491
- ],
- [
- 16.41892,
- 47.21071
- ],
- [
- 16.43713,
- 47.2097
- ],
- [
- 16.44263,
- 47.23371
- ],
- [
- 16.43131,
- 47.25276
- ],
- [
- 16.46715,
- 47.25317
- ],
- [
- 16.48923,
- 47.27989
- ],
- [
- 16.46463,
- 47.33385
- ],
- [
- 16.4337,
- 47.35281
- ],
- [
- 16.45851,
- 47.36705
- ],
- [
- 16.44546,
- 47.40702
- ],
- [
- 16.48317,
- 47.40936
- ],
- [
- 16.49638,
- 47.38927
- ],
- [
- 16.51709,
- 47.41002
- ],
- [
- 16.57491,
- 47.40542
- ],
- [
- 16.58073,
- 47.41917
- ],
- [
- 16.66185,
- 47.4556
- ],
- [
- 16.67064,
- 47.47422
- ],
- [
- 16.65234,
- 47.50034
- ],
- [
- 16.68956,
- 47.51016
- ],
- [
- 16.71478,
- 47.5402
- ],
- [
- 16.66354,
- 47.56773
- ],
- [
- 16.6732,
- 47.60495
- ],
- [
- 16.65953,
- 47.6061
- ],
- [
- 16.65276,
- 47.62285
- ],
- [
- 16.63142,
- 47.62832
- ],
- [
- 16.57391,
- 47.61967
- ],
- [
- 16.51474,
- 47.6462
- ],
- [
- 16.49675,
- 47.63931
- ],
- [
- 16.42546,
- 47.66217
- ],
- [
- 16.44374,
- 47.67421
- ],
- [
- 16.44805,
- 47.69647
- ],
- [
- 16.4747,
- 47.68116
- ],
- [
- 16.48722,
- 47.69798
- ],
- [
- 16.55217,
- 47.72255
- ],
- [
- 16.53638,
- 47.73678
- ],
- [
- 16.54798,
- 47.75154
- ],
- [
- 16.60952,
- 47.76037
- ],
- [
- 16.63441,
- 47.75908
- ],
- [
- 16.65729,
- 47.74149
- ],
- [
- 16.72094,
- 47.73536
- ],
- [
- 16.75341,
- 47.68282
- ],
- [
- 16.83016,
- 47.68106
- ],
- [
- 16.83943,
- 47.70451
- ],
- [
- 16.86689,
- 47.72115
- ],
- [
- 16.87668,
- 47.68765
- ],
- [
- 17.09374,
- 47.70777
- ],
- [
- 17.07066,
- 47.72854
- ],
- [
- 17.0516,
- 47.79385
- ],
- [
- 17.07495,
- 47.8085
- ],
- [
- 17.04714,
- 47.82856
- ],
- [
- 17.05195,
- 47.83777
- ],
- [
- 17.01055,
- 47.85818
- ],
- [
- 17.01639,
- 47.86733
- ],
- [
- 17.08575,
- 47.87462
- ],
- [
- 17.11317,
- 47.92716
- ],
- [
- 17.09171,
- 47.93429
- ],
- [
- 17.11838,
- 47.96011
- ],
- [
- 17.09466,
- 47.97088
- ],
- [
- 17.20103,
- 48.01999
- ],
- [
- 17.24177,
- 48.02247
- ],
- [
- 17.25795,
- 47.99865
- ],
- [
- 17.33465,
- 47.99312
- ],
- [
- 17.40299,
- 47.94785
- ],
- [
- 17.45392,
- 47.88526
- ],
- [
- 17.52674,
- 47.86551
- ],
- [
- 17.56758,
- 47.81513
- ],
- [
- 17.6084,
- 47.82189
- ],
- [
- 17.70858,
- 47.75668
- ],
- [
- 17.77987,
- 47.73949
- ],
- [
- 17.8661,
- 47.74575
- ],
- [
- 17.90013,
- 47.73926
- ],
- [
- 17.94687,
- 47.74467
- ],
- [
- 17.97087,
- 47.75784
- ],
- [
- 18.00441,
- 47.74634
- ],
- [
- 18.03806,
- 47.75768
- ],
- [
- 18.29588,
- 47.73146
- ],
- [
- 18.45407,
- 47.76512
- ],
- [
- 18.49316,
- 47.75276
- ],
- [
- 18.55908,
- 47.766
- ],
- [
- 18.64609,
- 47.75909
- ],
- [
- 18.72607,
- 47.78904
- ],
- [
- 18.74118,
- 47.81382
- ],
- [
- 18.792,
- 47.82309
- ],
- [
- 18.84854,
- 47.81672
- ],
- [
- 18.85588,
- 47.82608
- ],
- [
- 18.82801,
- 47.83429
- ],
- [
- 18.81357,
- 47.85555
- ],
- [
- 18.76353,
- 47.8716
- ],
- [
- 18.75686,
- 47.89684
- ],
- [
- 18.77675,
- 47.95509
- ],
- [
- 18.75525,
- 47.97635
- ],
- [
- 18.81574,
- 47.99344
- ],
- [
- 18.82,
- 48.03968
- ],
- [
- 18.83327,
- 48.04824
- ],
- [
- 18.87494,
- 48.04707
- ],
- [
- 18.88667,
- 48.05868
- ],
- [
- 18.90898,
- 48.05114
- ],
- [
- 18.9439,
- 48.05886
- ],
- [
- 18.98161,
- 48.0536
- ],
- [
- 19.01486,
- 48.07818
- ],
- [
- 19.05852,
- 48.05735
- ],
- [
- 19.08436,
- 48.07278
- ],
- [
- 19.1074,
- 48.0656
- ],
- [
- 19.13529,
- 48.07415
- ],
- [
- 19.24137,
- 48.05365
- ],
- [
- 19.25578,
- 48.07156
- ],
- [
- 19.30311,
- 48.08871
- ],
- [
- 19.3866,
- 48.09191
- ],
- [
- 19.40002,
- 48.0823
- ],
- [
- 19.45405,
- 48.10144
- ],
- [
- 19.46735,
- 48.08393
- ],
- [
- 19.49442,
- 48.10991
- ],
- [
- 19.49238,
- 48.13966
- ],
- [
- 19.51282,
- 48.15466
- ],
- [
- 19.50452,
- 48.17344
- ],
- [
- 19.52897,
- 48.19036
- ],
- [
- 19.52604,
- 48.20313
- ],
- [
- 19.5775,
- 48.21601
- ],
- [
- 19.63083,
- 48.25007
- ],
- [
- 19.64452,
- 48.23917
- ],
- [
- 19.66986,
- 48.23921
- ],
- [
- 19.69122,
- 48.20389
- ],
- [
- 19.72113,
- 48.20147
- ],
- [
- 19.74618,
- 48.21651
- ],
- [
- 19.78716,
- 48.19253
- ],
- [
- 19.79873,
- 48.19482
- ],
- [
- 19.80528,
- 48.18373
- ],
- [
- 19.78242,
- 48.16504
- ],
- [
- 19.79481,
- 48.15353
- ],
- [
- 19.82133,
- 48.16908
- ],
- [
- 19.84528,
- 48.16274
- ],
- [
- 19.85517,
- 48.17843
- ],
- [
- 19.86013,
- 48.16941
- ],
- [
- 19.89875,
- 48.16631
- ],
- [
- 19.91454,
- 48.14686
- ],
- [
- 19.8983,
- 48.1249
- ],
- [
- 19.93738,
- 48.13112
- ],
- [
- 19.97439,
- 48.166
- ],
- [
- 19.98871,
- 48.16217
- ],
- [
- 20.02904,
- 48.17768
- ],
- [
- 20.04945,
- 48.1672
- ],
- [
- 20.07299,
- 48.17961
- ],
- [
- 20.07004,
- 48.1917
- ],
- [
- 20.13409,
- 48.22518
- ],
- [
- 20.13319,
- 48.25398
- ],
- [
- 20.20616,
- 48.25098
- ],
- [
- 20.20383,
- 48.26191
- ],
- [
- 20.22847,
- 48.26278
- ],
- [
- 20.23495,
- 48.27993
- ],
- [
- 20.28686,
- 48.26164
- ],
- [
- 20.32571,
- 48.27279
- ],
- [
- 20.33746,
- 48.30167
- ],
- [
- 20.36566,
- 48.31661
- ],
- [
- 20.38408,
- 48.35118
- ],
- [
- 20.40983,
- 48.36586
- ],
- [
- 20.40253,
- 48.38256
- ],
- [
- 20.42053,
- 48.40386
- ],
- [
- 20.41623,
- 48.41854
- ],
- [
- 20.50793,
- 48.48936
- ],
- [
- 20.50651,
- 48.53442
- ],
- [
- 20.53747,
- 48.52788
- ],
- [
- 20.54649,
- 48.54429
- ],
- [
- 20.58659,
- 48.53576
- ],
- [
- 20.65387,
- 48.56141
- ],
- [
- 20.83636,
- 48.58284
- ],
- [
- 20.8378,
- 48.57421
- ],
- [
- 20.85044,
- 48.58163
- ],
- [
- 20.84533,
- 48.5665
- ],
- [
- 20.86815,
- 48.55182
- ],
- [
- 20.92232,
- 48.55945
- ],
- [
- 20.93463,
- 48.53834
- ],
- [
- 20.95588,
- 48.53396
- ],
- [
- 20.9562,
- 48.52167
- ],
- [
- 20.98158,
- 48.51777
- ],
- [
- 21.01511,
- 48.53231
- ],
- [
- 21.06632,
- 48.52589
- ],
- [
- 21.11745,
- 48.49105
- ],
- [
- 21.16087,
- 48.5215
- ],
- [
- 21.17963,
- 48.51823
- ],
- [
- 21.22106,
- 48.5375
- ],
- [
- 21.30549,
- 48.52225
- ],
- [
- 21.31338,
- 48.55084
- ],
- [
- 21.32688,
- 48.55413
- ],
- [
- 21.31938,
- 48.5612
- ],
- [
- 21.41545,
- 48.55895
- ],
- [
- 21.42266,
- 48.57882
- ],
- [
- 21.44061,
- 48.5851
- ],
- [
- 21.51409,
- 48.55107
- ],
- [
- 21.54202,
- 48.5084
- ],
- [
- 21.61393,
- 48.50942
- ],
- [
- 21.62019,
- 48.46983
- ],
- [
- 21.66355,
- 48.41796
- ],
- [
- 21.66456,
- 48.39216
- ],
- [
- 21.70174,
- 48.3807
- ],
- [
- 21.71187,
- 48.35762
- ],
- [
- 21.81741,
- 48.33279
- ],
- [
- 21.8352,
- 48.33464
- ],
- [
- 21.83721,
- 48.36325
- ],
- [
- 21.8843,
- 48.35605
- ],
- [
- 21.88484,
- 48.36754
- ],
- [
- 21.89788,
- 48.36256
- ],
- [
- 21.8998,
- 48.37022
- ],
- [
- 21.92819,
- 48.3616
- ],
- [
- 21.92681,
- 48.3709
- ],
- [
- 21.9492,
- 48.37873
- ],
- [
- 21.99446,
- 48.37732
- ],
- [
- 22.02133,
- 48.39275
- ],
- [
- 22.0546,
- 48.37753
- ],
- [
- 22.07649,
- 48.38724
- ],
- [
- 22.08674,
- 48.37156
- ],
- [
- 22.13591,
- 48.38052
- ],
- [
- 22.13106,
- 48.39123
- ],
- [
- 22.15277,
- 48.39624
- ],
- [
- 22.15619,
- 48.40931
- ],
- [
- 22.21257,
- 48.42565
- ],
- [
- 22.23714,
- 48.41004
- ],
- [
- 22.26549,
- 48.40987
- ],
- [
- 22.23988,
- 48.38701
- ],
- [
- 22.26757,
- 48.36116
- ],
- [
- 22.31781,
- 48.35454
- ],
- [
- 22.31329,
- 48.32507
- ],
- [
- 22.33729,
- 48.30791
- ],
- [
- 22.33843,
- 48.27921
- ],
- [
- 22.38475,
- 48.23396
- ],
- [
- 22.40064,
- 48.2492
- ],
- [
- 22.43284,
- 48.25252
- ],
- [
- 22.45639,
- 48.24231
- ],
- [
- 22.4899,
- 48.25342
- ],
- [
- 22.49722,
- 48.23955
- ],
- [
- 22.51615,
- 48.23797
- ],
- [
- 22.53111,
- 48.20943
- ],
- [
- 22.57114,
- 48.19614
- ],
- [
- 22.56164,
- 48.18161
- ],
- [
- 22.59824,
- 48.14476
- ],
- [
- 22.59028,
- 48.10734
- ],
- [
- 22.67545,
- 48.092
- ],
- [
- 22.73472,
- 48.11985
- ],
- [
- 22.75762,
- 48.12006
- ],
- [
- 22.77039,
- 48.10902
- ],
- [
- 22.77232,
- 48.12187
- ],
- [
- 22.80277,
- 48.12211
- ],
- [
- 22.80253,
- 48.10708
- ],
- [
- 22.82543,
- 48.11751
- ],
- [
- 22.83644,
- 48.08025
- ],
- [
- 22.86113,
- 48.07503
- ],
- [
- 22.8678,
- 48.05243
- ],
- [
- 22.88204,
- 48.05481
- ],
- [
- 22.86597,
- 48.01132
- ],
- [
- 22.83556,
- 47.9906
- ],
- [
- 22.84076,
- 47.98136
- ],
- [
- 22.87257,
- 47.97527
- ],
- [
- 22.86973,
- 47.96596
- ],
- [
- 22.89157,
- 47.96724
- ],
- [
- 22.89744,
- 47.95406
- ],
- [
- 22.84733,
- 47.90776
- ],
- [
- 22.79281,
- 47.89086
- ],
- [
- 22.75869,
- 47.89414
- ],
- [
- 22.77775,
- 47.84225
- ],
- [
- 22.71363,
- 47.83609
- ],
- [
- 22.68019,
- 47.78775
- ],
- [
- 22.61112,
- 47.77175
- ],
- [
- 22.549,
- 47.77222
- ],
- [
- 22.48121,
- 47.81089
- ],
- [
- 22.45131,
- 47.80339
- ],
- [
- 22.43133,
- 47.73981
- ],
- [
- 22.35662,
- 47.74862
- ],
- [
- 22.31777,
- 47.76609
- ],
- [
- 22.31762,
- 47.74337
- ],
- [
- 22.28514,
- 47.72928
- ],
- [
- 22.26432,
- 47.73107
- ],
- [
- 22.259,
- 47.69791
- ],
- [
- 22.23068,
- 47.6932
- ],
- [
- 22.17965,
- 47.59161
- ],
- [
- 22.12892,
- 47.5979
- ],
- [
- 22.09428,
- 47.55836
- ],
- [
- 22.07826,
- 47.56213
- ],
- [
- 22.05345,
- 47.54748
- ],
- [
- 22.07122,
- 47.53807
- ],
- [
- 22.06179,
- 47.5288
- ],
- [
- 22.04513,
- 47.53989
- ],
- [
- 22.03672,
- 47.53267
- ],
- [
- 22.00719,
- 47.48362
- ],
- [
- 22.03279,
- 47.45084
- ],
- [
- 22.02388,
- 47.39086
- ],
- [
- 22.01198,
- 47.3758
- ],
- [
- 21.96274,
- 47.38105
- ],
- [
- 21.93825,
- 47.37253
- ],
- [
- 21.87779,
- 47.28578
- ],
- [
- 21.88728,
- 47.27305
- ],
- [
- 21.85349,
- 47.23976
- ],
- [
- 21.85807,
- 47.18736
- ],
- [
- 21.81248,
- 47.16675
- ],
- [
- 21.79241,
- 47.10598
- ],
- [
- 21.72683,
- 47.09839
- ],
- [
- 21.6976,
- 47.05792
- ],
- [
- 21.65042,
- 47.04083
- ],
- [
- 21.68887,
- 47.002
- ],
- [
- 21.66787,
- 46.97123
- ],
- [
- 21.68149,
- 46.96521
- ],
- [
- 21.6382,
- 46.93305
- ],
- [
- 21.59845,
- 46.92747
- ],
- [
- 21.61429,
- 46.88673
- ],
- [
- 21.60167,
- 46.86682
- ],
- [
- 21.52033,
- 46.83737
- ],
- [
- 21.51861,
- 46.80007
- ],
- [
- 21.48318,
- 46.76502
- ],
- [
- 21.52634,
- 46.73932
- ],
- [
- 21.52937,
- 46.72097
- ],
- [
- 21.49233,
- 46.68597
- ],
- [
- 21.47284,
- 46.69591
- ],
- [
- 21.4299,
- 46.69394
- ],
- [
- 21.43096,
- 46.67814
- ],
- [
- 21.45467,
- 46.66086
- ],
- [
- 21.41624,
- 46.64262
- ],
- [
- 21.4098,
- 46.62181
- ],
- [
- 21.3657,
- 46.63795
- ],
- [
- 21.33005,
- 46.63182
- ],
- [
- 21.31397,
- 46.61767
- ],
- [
- 21.30124,
- 46.59087
- ],
- [
- 21.32079,
- 46.58286
- ],
- [
- 21.2743,
- 46.54074
- ],
- [
- 21.26003,
- 46.50216
- ],
- [
- 21.27442,
- 46.47673
- ],
- [
- 21.29645,
- 46.4763
- ],
- [
- 21.31743,
- 46.45073
- ],
- [
- 21.28952,
- 46.41548
- ],
- [
- 21.29633,
- 46.40696
- ],
- [
- 21.22501,
- 46.41369
- ],
- [
- 21.20642,
- 46.40338
- ],
- [
- 21.19926,
- 46.3479
- ],
- [
- 21.17623,
- 46.33577
- ],
- [
- 21.1805,
- 46.30445
- ],
- [
- 21.11554,
- 46.30185
- ],
- [
- 21.10305,
- 46.26246
- ],
- [
- 21.07088,
- 46.2539
- ],
- [
- 21.06608,
- 46.24294
- ],
- [
- 21.03662,
- 46.24804
- ],
- [
- 21.02467,
- 46.26653
- ],
- [
- 20.96082,
- 46.2623
- ],
- [
- 20.94658,
- 46.2793
- ],
- [
- 20.92507,
- 46.27662
- ],
- [
- 20.92181,
- 46.26181
- ],
- [
- 20.87327,
- 46.28776
- ],
- [
- 20.77565,
- 46.27596
- ],
- [
- 20.74905,
- 46.25085
- ],
- [
- 20.76186,
- 46.20456
- ],
- [
- 20.7274,
- 46.20775
- ],
- [
- 20.73411,
- 46.19394
- ],
- [
- 20.71405,
- 46.16605
- ],
- [
- 20.68436,
- 46.14478
- ],
- [
- 20.65492,
- 46.14977
- ],
- [
- 20.63945,
- 46.12676
- ],
- [
- 20.54505,
- 46.17909
- ],
- [
- 20.50148,
- 46.19033
- ],
- [
- 20.49494,
- 46.17099
- ],
- [
- 20.45923,
- 46.14288
- ],
- [
- 20.39751,
- 46.15747
- ],
- [
- 20.36853,
- 46.15286
- ],
- [
- 20.35571,
- 46.16963
- ],
- [
- 20.29681,
- 46.15215
- ],
- [
- 20.2549,
- 46.11585
- ],
- [
- 20.24848,
- 46.1301
- ],
- [
- 20.23301,
- 46.12417
- ],
- [
- 20.18174,
- 46.16011
- ],
- [
- 20.1365,
- 46.14495
- ],
- [
- 20.10097,
- 46.17728
- ],
- [
- 20.06362,
- 46.14373
- ],
- [
- 20.03461,
- 46.14589
- ],
- [
- 20.01581,
- 46.17684
- ],
- [
- 19.93541,
- 46.17642
- ],
- [
- 19.85335,
- 46.15
- ],
- [
- 19.81797,
- 46.12817
- ],
- [
- 19.75854,
- 46.14798
- ],
- [
- 19.69821,
- 46.18793
- ],
- [
- 19.68277,
- 46.18004
- ],
- [
- 19.66151,
- 46.19044
- ],
- [
- 19.63174,
- 46.1693
- ],
- [
- 19.56765,
- 46.17911
- ],
- [
- 19.5604,
- 46.16658
- ],
- [
- 19.50266,
- 46.14245
- ],
- [
- 19.52712,
- 46.12103
- ],
- [
- 19.4645,
- 46.09538
- ],
- [
- 19.46658,
- 46.08204
- ],
- [
- 19.416,
- 46.04605
- ],
- [
- 19.3804,
- 46.03587
- ],
- [
- 19.36409,
- 46.0523
- ],
- [
- 19.2819,
- 46.0148
- ],
- [
- 19.29653,
- 45.98812
- ],
- [
- 19.28565,
- 45.9969
- ],
- [
- 19.14799,
- 45.99634
- ],
- [
- 19.13384,
- 46.0371
- ],
- [
- 19.10487,
- 46.04017
- ],
- [
- 19.06604,
- 46.0002
- ],
- [
- 19.07968,
- 45.96364
- ],
- [
- 19.00598,
- 45.95907
- ],
- [
- 19.00927,
- 45.92366
- ],
- [
- 18.90613,
- 45.93538
- ],
- [
- 18.87946,
- 45.91668
- ],
- [
- 18.86471,
- 45.92085
- ],
- [
- 18.86856,
- 45.91134
- ],
- [
- 18.82768,
- 45.90517
- ],
- [
- 18.822,
- 45.91459
- ],
- [
- 18.80751,
- 45.90361
- ],
- [
- 18.80925,
- 45.87962
- ],
- [
- 18.79562,
- 45.87845
- ],
- [
- 18.70489,
- 45.91819
- ],
- [
- 18.67002,
- 45.91084
- ],
- [
- 18.65966,
- 45.91689
- ],
- [
- 18.66513,
- 45.89928
- ],
- [
- 18.64128,
- 45.88904
- ],
- [
- 18.65502,
- 45.87424
- ],
- [
- 18.62777,
- 45.87338
- ],
- [
- 18.61484,
- 45.85314
- ],
- [
- 18.62367,
- 45.83985
- ],
- [
- 18.57324,
- 45.81376
- ],
- [
- 18.57498,
- 45.80043
- ],
- [
- 18.55972,
- 45.8038
- ],
- [
- 18.52235,
- 45.78269
- ],
- [
- 18.49067,
- 45.79472
- ],
- [
- 18.48219,
- 45.7655
- ],
- [
- 18.45628,
- 45.76952
- ],
- [
- 18.44508,
- 45.76052
- ],
- [
- 18.44685,
- 45.73713
- ],
- [
- 18.40763,
- 45.73971
- ],
- [
- 18.39189,
- 45.7617
- ],
- [
- 18.36423,
- 45.77294
- ],
- [
- 18.33942,
- 45.74716
- ],
- [
- 18.29682,
- 45.76122
- ],
- [
- 18.24405,
- 45.76123
- ],
- [
- 18.23073,
- 45.77903
- ],
- [
- 18.19087,
- 45.78788
- ],
- [
- 18.16819,
- 45.77627
- ],
- [
- 18.12465,
- 45.78963
- ],
- [
- 18.10681,
- 45.77083
- ],
- [
- 18.08189,
- 45.76452
- ],
- [
- 17.99588,
- 45.79573
- ],
- [
- 17.93021,
- 45.78633
- ],
- [
- 17.90668,
- 45.79257
- ],
- [
- 17.86531,
- 45.76701
- ],
- [
- 17.82627,
- 45.81
- ],
- [
- 17.80898,
- 45.8041
- ],
- [
- 17.78091,
- 45.81749
- ],
- [
- 17.76034,
- 45.81192
- ],
- [
- 17.74086,
- 45.8296
- ],
- [
- 17.66329,
- 45.83818
- ],
- [
- 17.62762,
- 45.89794
- ],
- [
- 17.57007,
- 45.93582
- ],
- [
- 17.43783,
- 45.95038
- ],
- [
- 17.4259,
- 45.92727
- ],
- [
- 17.41081,
- 45.93997
- ],
- [
- 17.39215,
- 45.93021
- ],
- [
- 17.38287,
- 45.94757
- ],
- [
- 17.34762,
- 45.94234
- ],
- [
- 17.34388,
- 45.96053
- ],
- [
- 17.35377,
- 45.9525
- ],
- [
- 17.39054,
- 45.95819
- ],
- [
- 17.38742,
- 45.96618
- ],
- [
- 17.35835,
- 45.96427
- ],
- [
- 17.37549,
- 45.96869
- ],
- [
- 17.37519,
- 45.98811
- ],
- [
- 17.36357,
- 45.99154
- ],
- [
- 17.35672,
- 45.97358
- ],
- [
- 17.33396,
- 45.99608
- ],
- [
- 17.33198,
- 45.97289
- ],
- [
- 17.313,
- 45.96653
- ],
- [
- 17.32365,
- 45.98878
- ],
- [
- 17.29877,
- 45.98387
- ],
- [
- 17.3042,
- 46.00211
- ],
- [
- 17.25797,
- 46.01103
- ],
- [
- 17.29632,
- 46.02852
- ],
- [
- 17.25415,
- 46.03001
- ],
- [
- 17.27096,
- 46.05671
- ],
- [
- 17.23248,
- 46.0592
- ],
- [
- 17.25251,
- 46.06647
- ],
- [
- 17.23131,
- 46.07903
- ],
- [
- 17.20199,
- 46.07655
- ],
- [
- 17.23313,
- 46.09896
- ],
- [
- 17.2104,
- 46.10017
- ],
- [
- 17.21297,
- 46.11386
- ],
- [
- 17.17593,
- 46.10846
- ],
- [
- 17.17434,
- 46.12876
- ],
- [
- 17.18652,
- 46.13323
- ],
- [
- 17.1811,
- 46.15055
- ],
- [
- 17.15623,
- 46.15858
- ],
- [
- 17.15929,
- 46.16968
- ],
- [
- 17.1261,
- 46.16845
- ],
- [
- 17.12274,
- 46.17898
- ],
- [
- 17.07525,
- 46.18895
- ],
- [
- 17.06616,
- 46.2023
- ],
- [
- 16.97354,
- 46.2252
- ],
- [
- 16.97395,
- 46.24311
- ],
- [
- 16.95041,
- 46.24153
- ],
- [
- 16.88624,
- 46.28146
- ],
- [
- 16.87137,
- 46.32528
- ],
- [
- 16.88021,
- 46.3357
- ],
- [
- 16.86154,
- 46.34524
- ],
- [
- 16.86562,
- 46.35565
- ],
- [
- 16.8522,
- 46.35172
- ],
- [
- 16.84986,
- 46.36262
- ],
- [
- 16.83529,
- 46.36382
- ],
- [
- 16.83765,
- 46.3748
- ],
- [
- 16.82617,
- 46.3671
- ],
- [
- 16.79334,
- 46.38739
- ],
- [
- 16.75921,
- 46.37766
- ],
- [
- 16.72987,
- 46.40149
- ],
- [
- 16.71821,
- 46.38987
- ],
- [
- 16.67729,
- 46.44945
- ],
- [
- 16.66318,
- 46.4487
- ],
- [
- 16.66637,
- 46.4583
- ],
- [
- 16.61879,
- 46.46199
- ],
- [
- 16.60447,
- 46.47608
- ],
- [
- 16.5236,
- 46.50538
- ],
- [
- 16.53258,
- 46.5314
- ],
- [
- 16.51767,
- 46.53635
- ],
- [
- 16.50841,
- 46.56527
- ],
- [
- 16.483,
- 46.56604
- ],
- [
- 16.4834,
- 46.5786
- ],
- [
- 16.44557,
- 46.61095
- ],
- [
- 16.42486,
- 46.61316
- ],
- [
- 16.38594,
- 46.64425
- ],
- [
- 16.39154,
- 46.66373
- ],
- [
- 16.41985,
- 46.65848
- ],
- [
- 16.42863,
- 46.69397
- ],
- [
- 16.36892,
- 46.70401
- ],
- [
- 16.37983,
- 46.71539
- ],
- [
- 16.37109,
- 46.72229
- ],
- [
- 16.35706,
- 46.71424
- ],
- [
- 16.3186,
- 46.75414
- ],
- [
- 16.33054,
- 46.77521
- ],
- [
- 16.31216,
- 46.778
- ],
- [
- 16.31277,
- 46.79731
- ],
- [
- 16.34064,
- 46.80519
- ],
- [
- 16.35084,
- 46.83006
- ],
- [
- 16.34033,
- 46.84688
- ],
- [
- 16.3015,
- 46.85951
- ],
- [
- 16.29139,
- 46.87283
- ],
- [
- 16.23323,
- 46.87667
- ],
- [
- 16.15609,
- 46.85371
- ],
- [
- 16.12657,
- 46.85691
- ],
- [
- 16.11391,
- 46.8691
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Földmérési és Távérzékelési Intézet",
- "url": "https://www.fomi.hu"
- },
- "country_code": "HU",
- "end_date": "2000",
- "id": "FOMI_2000",
- "license_url": "http://e.tile.openstreetmap.hu/ortofoto2000/license.txt",
- "max_zoom": 17,
- "name": "FÖMI orthophoto 2000",
- "start_date": "2000",
- "type": "tms",
- "url": "http://e.tile.openstreetmap.hu/ortofoto2000/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.11391,
- 46.8691
- ],
- [
- 16.17897,
- 46.90662
- ],
- [
- 16.20004,
- 46.94151
- ],
- [
- 16.22175,
- 46.93554
- ],
- [
- 16.24628,
- 46.94639
- ],
- [
- 16.25532,
- 46.96421
- ],
- [
- 16.27647,
- 46.96261
- ],
- [
- 16.29058,
- 47.01398
- ],
- [
- 16.30162,
- 46.99923
- ],
- [
- 16.34146,
- 46.99652
- ],
- [
- 16.35052,
- 47.01063
- ],
- [
- 16.3734,
- 46.99859
- ],
- [
- 16.41277,
- 47.00475
- ],
- [
- 16.43327,
- 46.99274
- ],
- [
- 16.44781,
- 47.00389
- ],
- [
- 16.48,
- 46.99412
- ],
- [
- 16.5122,
- 47.00117
- ],
- [
- 16.46356,
- 47.03227
- ],
- [
- 16.44786,
- 47.02275
- ],
- [
- 16.43912,
- 47.02966
- ],
- [
- 16.44567,
- 47.03887
- ],
- [
- 16.52032,
- 47.0561
- ],
- [
- 16.47321,
- 47.07362
- ],
- [
- 16.46372,
- 47.09392
- ],
- [
- 16.5008,
- 47.11006
- ],
- [
- 16.50004,
- 47.12329
- ],
- [
- 16.52953,
- 47.12874
- ],
- [
- 16.51716,
- 47.14969
- ],
- [
- 16.45495,
- 47.14259
- ],
- [
- 16.46487,
- 47.16833
- ],
- [
- 16.45556,
- 47.18756
- ],
- [
- 16.43056,
- 47.1847
- ],
- [
- 16.4195,
- 47.19491
- ],
- [
- 16.41892,
- 47.21071
- ],
- [
- 16.43713,
- 47.2097
- ],
- [
- 16.44263,
- 47.23371
- ],
- [
- 16.43131,
- 47.25276
- ],
- [
- 16.46715,
- 47.25317
- ],
- [
- 16.48923,
- 47.27989
- ],
- [
- 16.46463,
- 47.33385
- ],
- [
- 16.4337,
- 47.35281
- ],
- [
- 16.45851,
- 47.36705
- ],
- [
- 16.44546,
- 47.40702
- ],
- [
- 16.48317,
- 47.40936
- ],
- [
- 16.49638,
- 47.38927
- ],
- [
- 16.51709,
- 47.41002
- ],
- [
- 16.57491,
- 47.40542
- ],
- [
- 16.58073,
- 47.41917
- ],
- [
- 16.66185,
- 47.4556
- ],
- [
- 16.67064,
- 47.47422
- ],
- [
- 16.65234,
- 47.50034
- ],
- [
- 16.68956,
- 47.51016
- ],
- [
- 16.71478,
- 47.5402
- ],
- [
- 16.66354,
- 47.56773
- ],
- [
- 16.6732,
- 47.60495
- ],
- [
- 16.65953,
- 47.6061
- ],
- [
- 16.65276,
- 47.62285
- ],
- [
- 16.63142,
- 47.62832
- ],
- [
- 16.57391,
- 47.61967
- ],
- [
- 16.51474,
- 47.6462
- ],
- [
- 16.49675,
- 47.63931
- ],
- [
- 16.42546,
- 47.66217
- ],
- [
- 16.44374,
- 47.67421
- ],
- [
- 16.44805,
- 47.69647
- ],
- [
- 16.4747,
- 47.68116
- ],
- [
- 16.48722,
- 47.69798
- ],
- [
- 16.55217,
- 47.72255
- ],
- [
- 16.53638,
- 47.73678
- ],
- [
- 16.54798,
- 47.75154
- ],
- [
- 16.60952,
- 47.76037
- ],
- [
- 16.63441,
- 47.75908
- ],
- [
- 16.65729,
- 47.74149
- ],
- [
- 16.72094,
- 47.73536
- ],
- [
- 16.75341,
- 47.68282
- ],
- [
- 16.83016,
- 47.68106
- ],
- [
- 16.83943,
- 47.70451
- ],
- [
- 16.86689,
- 47.72115
- ],
- [
- 16.87668,
- 47.68765
- ],
- [
- 17.09374,
- 47.70777
- ],
- [
- 17.07066,
- 47.72854
- ],
- [
- 17.0516,
- 47.79385
- ],
- [
- 17.07495,
- 47.8085
- ],
- [
- 17.04714,
- 47.82856
- ],
- [
- 17.05195,
- 47.83777
- ],
- [
- 17.01055,
- 47.85818
- ],
- [
- 17.01639,
- 47.86733
- ],
- [
- 17.08575,
- 47.87462
- ],
- [
- 17.11317,
- 47.92716
- ],
- [
- 17.09171,
- 47.93429
- ],
- [
- 17.11838,
- 47.96011
- ],
- [
- 17.09466,
- 47.97088
- ],
- [
- 17.20103,
- 48.01999
- ],
- [
- 17.24177,
- 48.02247
- ],
- [
- 17.25795,
- 47.99865
- ],
- [
- 17.33465,
- 47.99312
- ],
- [
- 17.40299,
- 47.94785
- ],
- [
- 17.45392,
- 47.88526
- ],
- [
- 17.52674,
- 47.86551
- ],
- [
- 17.56758,
- 47.81513
- ],
- [
- 17.6084,
- 47.82189
- ],
- [
- 17.70858,
- 47.75668
- ],
- [
- 17.77987,
- 47.73949
- ],
- [
- 17.8661,
- 47.74575
- ],
- [
- 17.90013,
- 47.73926
- ],
- [
- 17.94687,
- 47.74467
- ],
- [
- 17.97087,
- 47.75784
- ],
- [
- 18.00441,
- 47.74634
- ],
- [
- 18.03806,
- 47.75768
- ],
- [
- 18.29588,
- 47.73146
- ],
- [
- 18.45407,
- 47.76512
- ],
- [
- 18.49316,
- 47.75276
- ],
- [
- 18.55908,
- 47.766
- ],
- [
- 18.64609,
- 47.75909
- ],
- [
- 18.72607,
- 47.78904
- ],
- [
- 18.74118,
- 47.81382
- ],
- [
- 18.792,
- 47.82309
- ],
- [
- 18.84854,
- 47.81672
- ],
- [
- 18.85588,
- 47.82608
- ],
- [
- 18.82801,
- 47.83429
- ],
- [
- 18.81357,
- 47.85555
- ],
- [
- 18.76353,
- 47.8716
- ],
- [
- 18.75686,
- 47.89684
- ],
- [
- 18.77675,
- 47.95509
- ],
- [
- 18.75525,
- 47.97635
- ],
- [
- 18.81574,
- 47.99344
- ],
- [
- 18.82,
- 48.03968
- ],
- [
- 18.83327,
- 48.04824
- ],
- [
- 18.87494,
- 48.04707
- ],
- [
- 18.88667,
- 48.05868
- ],
- [
- 18.90898,
- 48.05114
- ],
- [
- 18.9439,
- 48.05886
- ],
- [
- 18.98161,
- 48.0536
- ],
- [
- 19.01486,
- 48.07818
- ],
- [
- 19.05852,
- 48.05735
- ],
- [
- 19.08436,
- 48.07278
- ],
- [
- 19.1074,
- 48.0656
- ],
- [
- 19.13529,
- 48.07415
- ],
- [
- 19.24137,
- 48.05365
- ],
- [
- 19.25578,
- 48.07156
- ],
- [
- 19.30311,
- 48.08871
- ],
- [
- 19.3866,
- 48.09191
- ],
- [
- 19.40002,
- 48.0823
- ],
- [
- 19.45405,
- 48.10144
- ],
- [
- 19.46735,
- 48.08393
- ],
- [
- 19.49442,
- 48.10991
- ],
- [
- 19.49238,
- 48.13966
- ],
- [
- 19.51282,
- 48.15466
- ],
- [
- 19.50452,
- 48.17344
- ],
- [
- 19.52897,
- 48.19036
- ],
- [
- 19.52604,
- 48.20313
- ],
- [
- 19.5775,
- 48.21601
- ],
- [
- 19.63083,
- 48.25007
- ],
- [
- 19.64452,
- 48.23917
- ],
- [
- 19.66986,
- 48.23921
- ],
- [
- 19.69122,
- 48.20389
- ],
- [
- 19.72113,
- 48.20147
- ],
- [
- 19.74618,
- 48.21651
- ],
- [
- 19.78716,
- 48.19253
- ],
- [
- 19.79873,
- 48.19482
- ],
- [
- 19.80528,
- 48.18373
- ],
- [
- 19.78242,
- 48.16504
- ],
- [
- 19.79481,
- 48.15353
- ],
- [
- 19.82133,
- 48.16908
- ],
- [
- 19.84528,
- 48.16274
- ],
- [
- 19.85517,
- 48.17843
- ],
- [
- 19.86013,
- 48.16941
- ],
- [
- 19.89875,
- 48.16631
- ],
- [
- 19.91454,
- 48.14686
- ],
- [
- 19.8983,
- 48.1249
- ],
- [
- 19.93738,
- 48.13112
- ],
- [
- 19.97439,
- 48.166
- ],
- [
- 19.98871,
- 48.16217
- ],
- [
- 20.02904,
- 48.17768
- ],
- [
- 20.04945,
- 48.1672
- ],
- [
- 20.07299,
- 48.17961
- ],
- [
- 20.07004,
- 48.1917
- ],
- [
- 20.13409,
- 48.22518
- ],
- [
- 20.13319,
- 48.25398
- ],
- [
- 20.20616,
- 48.25098
- ],
- [
- 20.20383,
- 48.26191
- ],
- [
- 20.22847,
- 48.26278
- ],
- [
- 20.23495,
- 48.27993
- ],
- [
- 20.28686,
- 48.26164
- ],
- [
- 20.32571,
- 48.27279
- ],
- [
- 20.33746,
- 48.30167
- ],
- [
- 20.36566,
- 48.31661
- ],
- [
- 20.38408,
- 48.35118
- ],
- [
- 20.40983,
- 48.36586
- ],
- [
- 20.40253,
- 48.38256
- ],
- [
- 20.42053,
- 48.40386
- ],
- [
- 20.41623,
- 48.41854
- ],
- [
- 20.50793,
- 48.48936
- ],
- [
- 20.50651,
- 48.53442
- ],
- [
- 20.53747,
- 48.52788
- ],
- [
- 20.54649,
- 48.54429
- ],
- [
- 20.58659,
- 48.53576
- ],
- [
- 20.65387,
- 48.56141
- ],
- [
- 20.83636,
- 48.58284
- ],
- [
- 20.8378,
- 48.57421
- ],
- [
- 20.85044,
- 48.58163
- ],
- [
- 20.84533,
- 48.5665
- ],
- [
- 20.86815,
- 48.55182
- ],
- [
- 20.92232,
- 48.55945
- ],
- [
- 20.93463,
- 48.53834
- ],
- [
- 20.95588,
- 48.53396
- ],
- [
- 20.9562,
- 48.52167
- ],
- [
- 20.98158,
- 48.51777
- ],
- [
- 21.01511,
- 48.53231
- ],
- [
- 21.06632,
- 48.52589
- ],
- [
- 21.11745,
- 48.49105
- ],
- [
- 21.16087,
- 48.5215
- ],
- [
- 21.17963,
- 48.51823
- ],
- [
- 21.22106,
- 48.5375
- ],
- [
- 21.30549,
- 48.52225
- ],
- [
- 21.31338,
- 48.55084
- ],
- [
- 21.32688,
- 48.55413
- ],
- [
- 21.31938,
- 48.5612
- ],
- [
- 21.41545,
- 48.55895
- ],
- [
- 21.42266,
- 48.57882
- ],
- [
- 21.44061,
- 48.5851
- ],
- [
- 21.51409,
- 48.55107
- ],
- [
- 21.54202,
- 48.5084
- ],
- [
- 21.61393,
- 48.50942
- ],
- [
- 21.62019,
- 48.46983
- ],
- [
- 21.66355,
- 48.41796
- ],
- [
- 21.66456,
- 48.39216
- ],
- [
- 21.70174,
- 48.3807
- ],
- [
- 21.71187,
- 48.35762
- ],
- [
- 21.81741,
- 48.33279
- ],
- [
- 21.8352,
- 48.33464
- ],
- [
- 21.83721,
- 48.36325
- ],
- [
- 21.8843,
- 48.35605
- ],
- [
- 21.88484,
- 48.36754
- ],
- [
- 21.89788,
- 48.36256
- ],
- [
- 21.8998,
- 48.37022
- ],
- [
- 21.92819,
- 48.3616
- ],
- [
- 21.92681,
- 48.3709
- ],
- [
- 21.9492,
- 48.37873
- ],
- [
- 21.99446,
- 48.37732
- ],
- [
- 22.02133,
- 48.39275
- ],
- [
- 22.0546,
- 48.37753
- ],
- [
- 22.07649,
- 48.38724
- ],
- [
- 22.08674,
- 48.37156
- ],
- [
- 22.13591,
- 48.38052
- ],
- [
- 22.13106,
- 48.39123
- ],
- [
- 22.15277,
- 48.39624
- ],
- [
- 22.15619,
- 48.40931
- ],
- [
- 22.21257,
- 48.42565
- ],
- [
- 22.23714,
- 48.41004
- ],
- [
- 22.26549,
- 48.40987
- ],
- [
- 22.23988,
- 48.38701
- ],
- [
- 22.26757,
- 48.36116
- ],
- [
- 22.31781,
- 48.35454
- ],
- [
- 22.31329,
- 48.32507
- ],
- [
- 22.33729,
- 48.30791
- ],
- [
- 22.33843,
- 48.27921
- ],
- [
- 22.38475,
- 48.23396
- ],
- [
- 22.40064,
- 48.2492
- ],
- [
- 22.43284,
- 48.25252
- ],
- [
- 22.45639,
- 48.24231
- ],
- [
- 22.4899,
- 48.25342
- ],
- [
- 22.49722,
- 48.23955
- ],
- [
- 22.51615,
- 48.23797
- ],
- [
- 22.53111,
- 48.20943
- ],
- [
- 22.57114,
- 48.19614
- ],
- [
- 22.56164,
- 48.18161
- ],
- [
- 22.59824,
- 48.14476
- ],
- [
- 22.59028,
- 48.10734
- ],
- [
- 22.67545,
- 48.092
- ],
- [
- 22.73472,
- 48.11985
- ],
- [
- 22.75762,
- 48.12006
- ],
- [
- 22.77039,
- 48.10902
- ],
- [
- 22.77232,
- 48.12187
- ],
- [
- 22.80277,
- 48.12211
- ],
- [
- 22.80253,
- 48.10708
- ],
- [
- 22.82543,
- 48.11751
- ],
- [
- 22.83644,
- 48.08025
- ],
- [
- 22.86113,
- 48.07503
- ],
- [
- 22.8678,
- 48.05243
- ],
- [
- 22.88204,
- 48.05481
- ],
- [
- 22.86597,
- 48.01132
- ],
- [
- 22.83556,
- 47.9906
- ],
- [
- 22.84076,
- 47.98136
- ],
- [
- 22.87257,
- 47.97527
- ],
- [
- 22.86973,
- 47.96596
- ],
- [
- 22.89157,
- 47.96724
- ],
- [
- 22.89744,
- 47.95406
- ],
- [
- 22.84733,
- 47.90776
- ],
- [
- 22.79281,
- 47.89086
- ],
- [
- 22.75869,
- 47.89414
- ],
- [
- 22.77775,
- 47.84225
- ],
- [
- 22.71363,
- 47.83609
- ],
- [
- 22.68019,
- 47.78775
- ],
- [
- 22.61112,
- 47.77175
- ],
- [
- 22.549,
- 47.77222
- ],
- [
- 22.48121,
- 47.81089
- ],
- [
- 22.45131,
- 47.80339
- ],
- [
- 22.43133,
- 47.73981
- ],
- [
- 22.35662,
- 47.74862
- ],
- [
- 22.31777,
- 47.76609
- ],
- [
- 22.31762,
- 47.74337
- ],
- [
- 22.28514,
- 47.72928
- ],
- [
- 22.26432,
- 47.73107
- ],
- [
- 22.259,
- 47.69791
- ],
- [
- 22.23068,
- 47.6932
- ],
- [
- 22.17965,
- 47.59161
- ],
- [
- 22.12892,
- 47.5979
- ],
- [
- 22.09428,
- 47.55836
- ],
- [
- 22.07826,
- 47.56213
- ],
- [
- 22.05345,
- 47.54748
- ],
- [
- 22.07122,
- 47.53807
- ],
- [
- 22.06179,
- 47.5288
- ],
- [
- 22.04513,
- 47.53989
- ],
- [
- 22.03672,
- 47.53267
- ],
- [
- 22.00719,
- 47.48362
- ],
- [
- 22.03279,
- 47.45084
- ],
- [
- 22.02388,
- 47.39086
- ],
- [
- 22.01198,
- 47.3758
- ],
- [
- 21.96274,
- 47.38105
- ],
- [
- 21.93825,
- 47.37253
- ],
- [
- 21.87779,
- 47.28578
- ],
- [
- 21.88728,
- 47.27305
- ],
- [
- 21.85349,
- 47.23976
- ],
- [
- 21.85807,
- 47.18736
- ],
- [
- 21.81248,
- 47.16675
- ],
- [
- 21.79241,
- 47.10598
- ],
- [
- 21.72683,
- 47.09839
- ],
- [
- 21.6976,
- 47.05792
- ],
- [
- 21.65042,
- 47.04083
- ],
- [
- 21.68887,
- 47.002
- ],
- [
- 21.66787,
- 46.97123
- ],
- [
- 21.68149,
- 46.96521
- ],
- [
- 21.6382,
- 46.93305
- ],
- [
- 21.59845,
- 46.92747
- ],
- [
- 21.61429,
- 46.88673
- ],
- [
- 21.60167,
- 46.86682
- ],
- [
- 21.52033,
- 46.83737
- ],
- [
- 21.51861,
- 46.80007
- ],
- [
- 21.48318,
- 46.76502
- ],
- [
- 21.52634,
- 46.73932
- ],
- [
- 21.52937,
- 46.72097
- ],
- [
- 21.49233,
- 46.68597
- ],
- [
- 21.47284,
- 46.69591
- ],
- [
- 21.4299,
- 46.69394
- ],
- [
- 21.43096,
- 46.67814
- ],
- [
- 21.45467,
- 46.66086
- ],
- [
- 21.41624,
- 46.64262
- ],
- [
- 21.4098,
- 46.62181
- ],
- [
- 21.3657,
- 46.63795
- ],
- [
- 21.33005,
- 46.63182
- ],
- [
- 21.31397,
- 46.61767
- ],
- [
- 21.30124,
- 46.59087
- ],
- [
- 21.32079,
- 46.58286
- ],
- [
- 21.2743,
- 46.54074
- ],
- [
- 21.26003,
- 46.50216
- ],
- [
- 21.27442,
- 46.47673
- ],
- [
- 21.29645,
- 46.4763
- ],
- [
- 21.31743,
- 46.45073
- ],
- [
- 21.28952,
- 46.41548
- ],
- [
- 21.29633,
- 46.40696
- ],
- [
- 21.22501,
- 46.41369
- ],
- [
- 21.20642,
- 46.40338
- ],
- [
- 21.19926,
- 46.3479
- ],
- [
- 21.17623,
- 46.33577
- ],
- [
- 21.1805,
- 46.30445
- ],
- [
- 21.11554,
- 46.30185
- ],
- [
- 21.10305,
- 46.26246
- ],
- [
- 21.07088,
- 46.2539
- ],
- [
- 21.06608,
- 46.24294
- ],
- [
- 21.03662,
- 46.24804
- ],
- [
- 21.02467,
- 46.26653
- ],
- [
- 20.96082,
- 46.2623
- ],
- [
- 20.94658,
- 46.2793
- ],
- [
- 20.92507,
- 46.27662
- ],
- [
- 20.92181,
- 46.26181
- ],
- [
- 20.87327,
- 46.28776
- ],
- [
- 20.77565,
- 46.27596
- ],
- [
- 20.74905,
- 46.25085
- ],
- [
- 20.76186,
- 46.20456
- ],
- [
- 20.7274,
- 46.20775
- ],
- [
- 20.73411,
- 46.19394
- ],
- [
- 20.71405,
- 46.16605
- ],
- [
- 20.68436,
- 46.14478
- ],
- [
- 20.65492,
- 46.14977
- ],
- [
- 20.63945,
- 46.12676
- ],
- [
- 20.54505,
- 46.17909
- ],
- [
- 20.50148,
- 46.19033
- ],
- [
- 20.49494,
- 46.17099
- ],
- [
- 20.45923,
- 46.14288
- ],
- [
- 20.39751,
- 46.15747
- ],
- [
- 20.36853,
- 46.15286
- ],
- [
- 20.35571,
- 46.16963
- ],
- [
- 20.29681,
- 46.15215
- ],
- [
- 20.2549,
- 46.11585
- ],
- [
- 20.24848,
- 46.1301
- ],
- [
- 20.23301,
- 46.12417
- ],
- [
- 20.18174,
- 46.16011
- ],
- [
- 20.1365,
- 46.14495
- ],
- [
- 20.10097,
- 46.17728
- ],
- [
- 20.06362,
- 46.14373
- ],
- [
- 20.03461,
- 46.14589
- ],
- [
- 20.01581,
- 46.17684
- ],
- [
- 19.93541,
- 46.17642
- ],
- [
- 19.85335,
- 46.15
- ],
- [
- 19.81797,
- 46.12817
- ],
- [
- 19.75854,
- 46.14798
- ],
- [
- 19.69821,
- 46.18793
- ],
- [
- 19.68277,
- 46.18004
- ],
- [
- 19.66151,
- 46.19044
- ],
- [
- 19.63174,
- 46.1693
- ],
- [
- 19.56765,
- 46.17911
- ],
- [
- 19.5604,
- 46.16658
- ],
- [
- 19.50266,
- 46.14245
- ],
- [
- 19.52712,
- 46.12103
- ],
- [
- 19.4645,
- 46.09538
- ],
- [
- 19.46658,
- 46.08204
- ],
- [
- 19.416,
- 46.04605
- ],
- [
- 19.3804,
- 46.03587
- ],
- [
- 19.36409,
- 46.0523
- ],
- [
- 19.2819,
- 46.0148
- ],
- [
- 19.29653,
- 45.98812
- ],
- [
- 19.28565,
- 45.9969
- ],
- [
- 19.14799,
- 45.99634
- ],
- [
- 19.13384,
- 46.0371
- ],
- [
- 19.10487,
- 46.04017
- ],
- [
- 19.06604,
- 46.0002
- ],
- [
- 19.07968,
- 45.96364
- ],
- [
- 19.00598,
- 45.95907
- ],
- [
- 19.00927,
- 45.92366
- ],
- [
- 18.90613,
- 45.93538
- ],
- [
- 18.87946,
- 45.91668
- ],
- [
- 18.86471,
- 45.92085
- ],
- [
- 18.86856,
- 45.91134
- ],
- [
- 18.82768,
- 45.90517
- ],
- [
- 18.822,
- 45.91459
- ],
- [
- 18.80751,
- 45.90361
- ],
- [
- 18.80925,
- 45.87962
- ],
- [
- 18.79562,
- 45.87845
- ],
- [
- 18.70489,
- 45.91819
- ],
- [
- 18.67002,
- 45.91084
- ],
- [
- 18.65966,
- 45.91689
- ],
- [
- 18.66513,
- 45.89928
- ],
- [
- 18.64128,
- 45.88904
- ],
- [
- 18.65502,
- 45.87424
- ],
- [
- 18.62777,
- 45.87338
- ],
- [
- 18.61484,
- 45.85314
- ],
- [
- 18.62367,
- 45.83985
- ],
- [
- 18.57324,
- 45.81376
- ],
- [
- 18.57498,
- 45.80043
- ],
- [
- 18.55972,
- 45.8038
- ],
- [
- 18.52235,
- 45.78269
- ],
- [
- 18.49067,
- 45.79472
- ],
- [
- 18.48219,
- 45.7655
- ],
- [
- 18.45628,
- 45.76952
- ],
- [
- 18.44508,
- 45.76052
- ],
- [
- 18.44685,
- 45.73713
- ],
- [
- 18.40763,
- 45.73971
- ],
- [
- 18.39189,
- 45.7617
- ],
- [
- 18.36423,
- 45.77294
- ],
- [
- 18.33942,
- 45.74716
- ],
- [
- 18.29682,
- 45.76122
- ],
- [
- 18.24405,
- 45.76123
- ],
- [
- 18.23073,
- 45.77903
- ],
- [
- 18.19087,
- 45.78788
- ],
- [
- 18.16819,
- 45.77627
- ],
- [
- 18.12465,
- 45.78963
- ],
- [
- 18.10681,
- 45.77083
- ],
- [
- 18.08189,
- 45.76452
- ],
- [
- 17.99588,
- 45.79573
- ],
- [
- 17.93021,
- 45.78633
- ],
- [
- 17.90668,
- 45.79257
- ],
- [
- 17.86531,
- 45.76701
- ],
- [
- 17.82627,
- 45.81
- ],
- [
- 17.80898,
- 45.8041
- ],
- [
- 17.78091,
- 45.81749
- ],
- [
- 17.76034,
- 45.81192
- ],
- [
- 17.74086,
- 45.8296
- ],
- [
- 17.66329,
- 45.83818
- ],
- [
- 17.62762,
- 45.89794
- ],
- [
- 17.57007,
- 45.93582
- ],
- [
- 17.43783,
- 45.95038
- ],
- [
- 17.4259,
- 45.92727
- ],
- [
- 17.41081,
- 45.93997
- ],
- [
- 17.39215,
- 45.93021
- ],
- [
- 17.38287,
- 45.94757
- ],
- [
- 17.34762,
- 45.94234
- ],
- [
- 17.34388,
- 45.96053
- ],
- [
- 17.35377,
- 45.9525
- ],
- [
- 17.39054,
- 45.95819
- ],
- [
- 17.38742,
- 45.96618
- ],
- [
- 17.35835,
- 45.96427
- ],
- [
- 17.37549,
- 45.96869
- ],
- [
- 17.37519,
- 45.98811
- ],
- [
- 17.36357,
- 45.99154
- ],
- [
- 17.35672,
- 45.97358
- ],
- [
- 17.33396,
- 45.99608
- ],
- [
- 17.33198,
- 45.97289
- ],
- [
- 17.313,
- 45.96653
- ],
- [
- 17.32365,
- 45.98878
- ],
- [
- 17.29877,
- 45.98387
- ],
- [
- 17.3042,
- 46.00211
- ],
- [
- 17.25797,
- 46.01103
- ],
- [
- 17.29632,
- 46.02852
- ],
- [
- 17.25415,
- 46.03001
- ],
- [
- 17.27096,
- 46.05671
- ],
- [
- 17.23248,
- 46.0592
- ],
- [
- 17.25251,
- 46.06647
- ],
- [
- 17.23131,
- 46.07903
- ],
- [
- 17.20199,
- 46.07655
- ],
- [
- 17.23313,
- 46.09896
- ],
- [
- 17.2104,
- 46.10017
- ],
- [
- 17.21297,
- 46.11386
- ],
- [
- 17.17593,
- 46.10846
- ],
- [
- 17.17434,
- 46.12876
- ],
- [
- 17.18652,
- 46.13323
- ],
- [
- 17.1811,
- 46.15055
- ],
- [
- 17.15623,
- 46.15858
- ],
- [
- 17.15929,
- 46.16968
- ],
- [
- 17.1261,
- 46.16845
- ],
- [
- 17.12274,
- 46.17898
- ],
- [
- 17.07525,
- 46.18895
- ],
- [
- 17.06616,
- 46.2023
- ],
- [
- 16.97354,
- 46.2252
- ],
- [
- 16.97395,
- 46.24311
- ],
- [
- 16.95041,
- 46.24153
- ],
- [
- 16.88624,
- 46.28146
- ],
- [
- 16.87137,
- 46.32528
- ],
- [
- 16.88021,
- 46.3357
- ],
- [
- 16.86154,
- 46.34524
- ],
- [
- 16.86562,
- 46.35565
- ],
- [
- 16.8522,
- 46.35172
- ],
- [
- 16.84986,
- 46.36262
- ],
- [
- 16.83529,
- 46.36382
- ],
- [
- 16.83765,
- 46.3748
- ],
- [
- 16.82617,
- 46.3671
- ],
- [
- 16.79334,
- 46.38739
- ],
- [
- 16.75921,
- 46.37766
- ],
- [
- 16.72987,
- 46.40149
- ],
- [
- 16.71821,
- 46.38987
- ],
- [
- 16.67729,
- 46.44945
- ],
- [
- 16.66318,
- 46.4487
- ],
- [
- 16.66637,
- 46.4583
- ],
- [
- 16.61879,
- 46.46199
- ],
- [
- 16.60447,
- 46.47608
- ],
- [
- 16.5236,
- 46.50538
- ],
- [
- 16.53258,
- 46.5314
- ],
- [
- 16.51767,
- 46.53635
- ],
- [
- 16.50841,
- 46.56527
- ],
- [
- 16.483,
- 46.56604
- ],
- [
- 16.4834,
- 46.5786
- ],
- [
- 16.44557,
- 46.61095
- ],
- [
- 16.42486,
- 46.61316
- ],
- [
- 16.38594,
- 46.64425
- ],
- [
- 16.39154,
- 46.66373
- ],
- [
- 16.41985,
- 46.65848
- ],
- [
- 16.42863,
- 46.69397
- ],
- [
- 16.36892,
- 46.70401
- ],
- [
- 16.37983,
- 46.71539
- ],
- [
- 16.37109,
- 46.72229
- ],
- [
- 16.35706,
- 46.71424
- ],
- [
- 16.3186,
- 46.75414
- ],
- [
- 16.33054,
- 46.77521
- ],
- [
- 16.31216,
- 46.778
- ],
- [
- 16.31277,
- 46.79731
- ],
- [
- 16.34064,
- 46.80519
- ],
- [
- 16.35084,
- 46.83006
- ],
- [
- 16.34033,
- 46.84688
- ],
- [
- 16.3015,
- 46.85951
- ],
- [
- 16.29139,
- 46.87283
- ],
- [
- 16.23323,
- 46.87667
- ],
- [
- 16.15609,
- 46.85371
- ],
- [
- 16.12657,
- 46.85691
- ],
- [
- 16.11391,
- 46.8691
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Földmérési és Távérzékelési Intézet",
- "url": "https://www.fomi.hu"
- },
- "country_code": "HU",
- "end_date": "2005",
- "id": "FOMI_2005",
- "license_url": "http://e.tile.openstreetmap.hu/ortofoto2005/license.txt",
- "max_zoom": 17,
- "name": "FÖMI orthophoto 2005",
- "start_date": "2005",
- "type": "tms",
- "url": "http://e.tile.openstreetmap.hu/ortofoto2005/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.11391,
- 46.8691
- ],
- [
- 16.17897,
- 46.90662
- ],
- [
- 16.20004,
- 46.94151
- ],
- [
- 16.22175,
- 46.93554
- ],
- [
- 16.24628,
- 46.94639
- ],
- [
- 16.25532,
- 46.96421
- ],
- [
- 16.27647,
- 46.96261
- ],
- [
- 16.29058,
- 47.01398
- ],
- [
- 16.30162,
- 46.99923
- ],
- [
- 16.34146,
- 46.99652
- ],
- [
- 16.35052,
- 47.01063
- ],
- [
- 16.3734,
- 46.99859
- ],
- [
- 16.41277,
- 47.00475
- ],
- [
- 16.43327,
- 46.99274
- ],
- [
- 16.44781,
- 47.00389
- ],
- [
- 16.48,
- 46.99412
- ],
- [
- 16.5122,
- 47.00117
- ],
- [
- 16.46356,
- 47.03227
- ],
- [
- 16.44786,
- 47.02275
- ],
- [
- 16.43912,
- 47.02966
- ],
- [
- 16.44567,
- 47.03887
- ],
- [
- 16.52032,
- 47.0561
- ],
- [
- 16.47321,
- 47.07362
- ],
- [
- 16.46372,
- 47.09392
- ],
- [
- 16.5008,
- 47.11006
- ],
- [
- 16.50004,
- 47.12329
- ],
- [
- 16.52953,
- 47.12874
- ],
- [
- 16.51716,
- 47.14969
- ],
- [
- 16.45495,
- 47.14259
- ],
- [
- 16.46487,
- 47.16833
- ],
- [
- 16.45556,
- 47.18756
- ],
- [
- 16.43056,
- 47.1847
- ],
- [
- 16.4195,
- 47.19491
- ],
- [
- 16.41892,
- 47.21071
- ],
- [
- 16.43713,
- 47.2097
- ],
- [
- 16.44263,
- 47.23371
- ],
- [
- 16.43131,
- 47.25276
- ],
- [
- 16.46715,
- 47.25317
- ],
- [
- 16.48923,
- 47.27989
- ],
- [
- 16.46463,
- 47.33385
- ],
- [
- 16.4337,
- 47.35281
- ],
- [
- 16.45851,
- 47.36705
- ],
- [
- 16.44546,
- 47.40702
- ],
- [
- 16.48317,
- 47.40936
- ],
- [
- 16.49638,
- 47.38927
- ],
- [
- 16.51709,
- 47.41002
- ],
- [
- 16.57491,
- 47.40542
- ],
- [
- 16.58073,
- 47.41917
- ],
- [
- 16.66185,
- 47.4556
- ],
- [
- 16.67064,
- 47.47422
- ],
- [
- 16.65234,
- 47.50034
- ],
- [
- 16.68956,
- 47.51016
- ],
- [
- 16.71478,
- 47.5402
- ],
- [
- 16.66354,
- 47.56773
- ],
- [
- 16.6732,
- 47.60495
- ],
- [
- 16.65953,
- 47.6061
- ],
- [
- 16.65276,
- 47.62285
- ],
- [
- 16.63142,
- 47.62832
- ],
- [
- 16.57391,
- 47.61967
- ],
- [
- 16.51474,
- 47.6462
- ],
- [
- 16.49675,
- 47.63931
- ],
- [
- 16.42546,
- 47.66217
- ],
- [
- 16.44374,
- 47.67421
- ],
- [
- 16.44805,
- 47.69647
- ],
- [
- 16.4747,
- 47.68116
- ],
- [
- 16.48722,
- 47.69798
- ],
- [
- 16.55217,
- 47.72255
- ],
- [
- 16.53638,
- 47.73678
- ],
- [
- 16.54798,
- 47.75154
- ],
- [
- 16.60952,
- 47.76037
- ],
- [
- 16.63441,
- 47.75908
- ],
- [
- 16.65729,
- 47.74149
- ],
- [
- 16.72094,
- 47.73536
- ],
- [
- 16.75341,
- 47.68282
- ],
- [
- 16.83016,
- 47.68106
- ],
- [
- 16.83943,
- 47.70451
- ],
- [
- 16.86689,
- 47.72115
- ],
- [
- 16.87668,
- 47.68765
- ],
- [
- 17.09374,
- 47.70777
- ],
- [
- 17.07066,
- 47.72854
- ],
- [
- 17.0516,
- 47.79385
- ],
- [
- 17.07495,
- 47.8085
- ],
- [
- 17.04714,
- 47.82856
- ],
- [
- 17.05195,
- 47.83777
- ],
- [
- 17.01055,
- 47.85818
- ],
- [
- 17.01639,
- 47.86733
- ],
- [
- 17.08575,
- 47.87462
- ],
- [
- 17.11317,
- 47.92716
- ],
- [
- 17.09171,
- 47.93429
- ],
- [
- 17.11838,
- 47.96011
- ],
- [
- 17.09466,
- 47.97088
- ],
- [
- 17.20103,
- 48.01999
- ],
- [
- 17.24177,
- 48.02247
- ],
- [
- 17.25795,
- 47.99865
- ],
- [
- 17.33465,
- 47.99312
- ],
- [
- 17.40299,
- 47.94785
- ],
- [
- 17.45392,
- 47.88526
- ],
- [
- 17.52674,
- 47.86551
- ],
- [
- 17.56758,
- 47.81513
- ],
- [
- 17.6084,
- 47.82189
- ],
- [
- 17.70858,
- 47.75668
- ],
- [
- 17.77987,
- 47.73949
- ],
- [
- 17.8661,
- 47.74575
- ],
- [
- 17.90013,
- 47.73926
- ],
- [
- 17.94687,
- 47.74467
- ],
- [
- 17.97087,
- 47.75784
- ],
- [
- 18.00441,
- 47.74634
- ],
- [
- 18.03806,
- 47.75768
- ],
- [
- 18.29588,
- 47.73146
- ],
- [
- 18.45407,
- 47.76512
- ],
- [
- 18.49316,
- 47.75276
- ],
- [
- 18.55908,
- 47.766
- ],
- [
- 18.64609,
- 47.75909
- ],
- [
- 18.72607,
- 47.78904
- ],
- [
- 18.74118,
- 47.81382
- ],
- [
- 18.792,
- 47.82309
- ],
- [
- 18.84854,
- 47.81672
- ],
- [
- 18.85588,
- 47.82608
- ],
- [
- 18.82801,
- 47.83429
- ],
- [
- 18.81357,
- 47.85555
- ],
- [
- 18.76353,
- 47.8716
- ],
- [
- 18.75686,
- 47.89684
- ],
- [
- 18.77675,
- 47.95509
- ],
- [
- 18.75525,
- 47.97635
- ],
- [
- 18.81574,
- 47.99344
- ],
- [
- 18.82,
- 48.03968
- ],
- [
- 18.83327,
- 48.04824
- ],
- [
- 18.87494,
- 48.04707
- ],
- [
- 18.88667,
- 48.05868
- ],
- [
- 18.90898,
- 48.05114
- ],
- [
- 18.9439,
- 48.05886
- ],
- [
- 18.98161,
- 48.0536
- ],
- [
- 19.01486,
- 48.07818
- ],
- [
- 19.05852,
- 48.05735
- ],
- [
- 19.08436,
- 48.07278
- ],
- [
- 19.1074,
- 48.0656
- ],
- [
- 19.13529,
- 48.07415
- ],
- [
- 19.24137,
- 48.05365
- ],
- [
- 19.25578,
- 48.07156
- ],
- [
- 19.30311,
- 48.08871
- ],
- [
- 19.3866,
- 48.09191
- ],
- [
- 19.40002,
- 48.0823
- ],
- [
- 19.45405,
- 48.10144
- ],
- [
- 19.46735,
- 48.08393
- ],
- [
- 19.49442,
- 48.10991
- ],
- [
- 19.49238,
- 48.13966
- ],
- [
- 19.51282,
- 48.15466
- ],
- [
- 19.50452,
- 48.17344
- ],
- [
- 19.52897,
- 48.19036
- ],
- [
- 19.52604,
- 48.20313
- ],
- [
- 19.5775,
- 48.21601
- ],
- [
- 19.63083,
- 48.25007
- ],
- [
- 19.64452,
- 48.23917
- ],
- [
- 19.66986,
- 48.23921
- ],
- [
- 19.69122,
- 48.20389
- ],
- [
- 19.72113,
- 48.20147
- ],
- [
- 19.74618,
- 48.21651
- ],
- [
- 19.78716,
- 48.19253
- ],
- [
- 19.79873,
- 48.19482
- ],
- [
- 19.80528,
- 48.18373
- ],
- [
- 19.78242,
- 48.16504
- ],
- [
- 19.79481,
- 48.15353
- ],
- [
- 19.82133,
- 48.16908
- ],
- [
- 19.84528,
- 48.16274
- ],
- [
- 19.85517,
- 48.17843
- ],
- [
- 19.86013,
- 48.16941
- ],
- [
- 19.89875,
- 48.16631
- ],
- [
- 19.91454,
- 48.14686
- ],
- [
- 19.8983,
- 48.1249
- ],
- [
- 19.93738,
- 48.13112
- ],
- [
- 19.97439,
- 48.166
- ],
- [
- 19.98871,
- 48.16217
- ],
- [
- 20.02904,
- 48.17768
- ],
- [
- 20.04945,
- 48.1672
- ],
- [
- 20.07299,
- 48.17961
- ],
- [
- 20.07004,
- 48.1917
- ],
- [
- 20.13409,
- 48.22518
- ],
- [
- 20.13319,
- 48.25398
- ],
- [
- 20.20616,
- 48.25098
- ],
- [
- 20.20383,
- 48.26191
- ],
- [
- 20.22847,
- 48.26278
- ],
- [
- 20.23495,
- 48.27993
- ],
- [
- 20.28686,
- 48.26164
- ],
- [
- 20.32571,
- 48.27279
- ],
- [
- 20.33746,
- 48.30167
- ],
- [
- 20.36566,
- 48.31661
- ],
- [
- 20.38408,
- 48.35118
- ],
- [
- 20.40983,
- 48.36586
- ],
- [
- 20.40253,
- 48.38256
- ],
- [
- 20.42053,
- 48.40386
- ],
- [
- 20.41623,
- 48.41854
- ],
- [
- 20.50793,
- 48.48936
- ],
- [
- 20.50651,
- 48.53442
- ],
- [
- 20.53747,
- 48.52788
- ],
- [
- 20.54649,
- 48.54429
- ],
- [
- 20.58659,
- 48.53576
- ],
- [
- 20.65387,
- 48.56141
- ],
- [
- 20.83636,
- 48.58284
- ],
- [
- 20.8378,
- 48.57421
- ],
- [
- 20.85044,
- 48.58163
- ],
- [
- 20.84533,
- 48.5665
- ],
- [
- 20.86815,
- 48.55182
- ],
- [
- 20.92232,
- 48.55945
- ],
- [
- 20.93463,
- 48.53834
- ],
- [
- 20.95588,
- 48.53396
- ],
- [
- 20.9562,
- 48.52167
- ],
- [
- 20.98158,
- 48.51777
- ],
- [
- 21.01511,
- 48.53231
- ],
- [
- 21.06632,
- 48.52589
- ],
- [
- 21.11745,
- 48.49105
- ],
- [
- 21.16087,
- 48.5215
- ],
- [
- 21.17963,
- 48.51823
- ],
- [
- 21.22106,
- 48.5375
- ],
- [
- 21.30549,
- 48.52225
- ],
- [
- 21.31338,
- 48.55084
- ],
- [
- 21.32688,
- 48.55413
- ],
- [
- 21.31938,
- 48.5612
- ],
- [
- 21.41545,
- 48.55895
- ],
- [
- 21.42266,
- 48.57882
- ],
- [
- 21.44061,
- 48.5851
- ],
- [
- 21.51409,
- 48.55107
- ],
- [
- 21.54202,
- 48.5084
- ],
- [
- 21.61393,
- 48.50942
- ],
- [
- 21.62019,
- 48.46983
- ],
- [
- 21.66355,
- 48.41796
- ],
- [
- 21.66456,
- 48.39216
- ],
- [
- 21.70174,
- 48.3807
- ],
- [
- 21.71187,
- 48.35762
- ],
- [
- 21.81741,
- 48.33279
- ],
- [
- 21.8352,
- 48.33464
- ],
- [
- 21.83721,
- 48.36325
- ],
- [
- 21.8843,
- 48.35605
- ],
- [
- 21.88484,
- 48.36754
- ],
- [
- 21.89788,
- 48.36256
- ],
- [
- 21.8998,
- 48.37022
- ],
- [
- 21.92819,
- 48.3616
- ],
- [
- 21.92681,
- 48.3709
- ],
- [
- 21.9492,
- 48.37873
- ],
- [
- 21.99446,
- 48.37732
- ],
- [
- 22.02133,
- 48.39275
- ],
- [
- 22.0546,
- 48.37753
- ],
- [
- 22.07649,
- 48.38724
- ],
- [
- 22.08674,
- 48.37156
- ],
- [
- 22.13591,
- 48.38052
- ],
- [
- 22.13106,
- 48.39123
- ],
- [
- 22.15277,
- 48.39624
- ],
- [
- 22.15619,
- 48.40931
- ],
- [
- 22.21257,
- 48.42565
- ],
- [
- 22.23714,
- 48.41004
- ],
- [
- 22.26549,
- 48.40987
- ],
- [
- 22.23988,
- 48.38701
- ],
- [
- 22.26757,
- 48.36116
- ],
- [
- 22.31781,
- 48.35454
- ],
- [
- 22.31329,
- 48.32507
- ],
- [
- 22.33729,
- 48.30791
- ],
- [
- 22.33843,
- 48.27921
- ],
- [
- 22.38475,
- 48.23396
- ],
- [
- 22.40064,
- 48.2492
- ],
- [
- 22.43284,
- 48.25252
- ],
- [
- 22.45639,
- 48.24231
- ],
- [
- 22.4899,
- 48.25342
- ],
- [
- 22.49722,
- 48.23955
- ],
- [
- 22.51615,
- 48.23797
- ],
- [
- 22.53111,
- 48.20943
- ],
- [
- 22.57114,
- 48.19614
- ],
- [
- 22.56164,
- 48.18161
- ],
- [
- 22.59824,
- 48.14476
- ],
- [
- 22.59028,
- 48.10734
- ],
- [
- 22.67545,
- 48.092
- ],
- [
- 22.73472,
- 48.11985
- ],
- [
- 22.75762,
- 48.12006
- ],
- [
- 22.77039,
- 48.10902
- ],
- [
- 22.77232,
- 48.12187
- ],
- [
- 22.80277,
- 48.12211
- ],
- [
- 22.80253,
- 48.10708
- ],
- [
- 22.82543,
- 48.11751
- ],
- [
- 22.83644,
- 48.08025
- ],
- [
- 22.86113,
- 48.07503
- ],
- [
- 22.8678,
- 48.05243
- ],
- [
- 22.88204,
- 48.05481
- ],
- [
- 22.86597,
- 48.01132
- ],
- [
- 22.83556,
- 47.9906
- ],
- [
- 22.84076,
- 47.98136
- ],
- [
- 22.87257,
- 47.97527
- ],
- [
- 22.86973,
- 47.96596
- ],
- [
- 22.89157,
- 47.96724
- ],
- [
- 22.89744,
- 47.95406
- ],
- [
- 22.84733,
- 47.90776
- ],
- [
- 22.79281,
- 47.89086
- ],
- [
- 22.75869,
- 47.89414
- ],
- [
- 22.77775,
- 47.84225
- ],
- [
- 22.71363,
- 47.83609
- ],
- [
- 22.68019,
- 47.78775
- ],
- [
- 22.61112,
- 47.77175
- ],
- [
- 22.549,
- 47.77222
- ],
- [
- 22.48121,
- 47.81089
- ],
- [
- 22.45131,
- 47.80339
- ],
- [
- 22.43133,
- 47.73981
- ],
- [
- 22.35662,
- 47.74862
- ],
- [
- 22.31777,
- 47.76609
- ],
- [
- 22.31762,
- 47.74337
- ],
- [
- 22.28514,
- 47.72928
- ],
- [
- 22.26432,
- 47.73107
- ],
- [
- 22.259,
- 47.69791
- ],
- [
- 22.23068,
- 47.6932
- ],
- [
- 22.17965,
- 47.59161
- ],
- [
- 22.12892,
- 47.5979
- ],
- [
- 22.09428,
- 47.55836
- ],
- [
- 22.07826,
- 47.56213
- ],
- [
- 22.05345,
- 47.54748
- ],
- [
- 22.07122,
- 47.53807
- ],
- [
- 22.06179,
- 47.5288
- ],
- [
- 22.04513,
- 47.53989
- ],
- [
- 22.03672,
- 47.53267
- ],
- [
- 22.00719,
- 47.48362
- ],
- [
- 22.03279,
- 47.45084
- ],
- [
- 22.02388,
- 47.39086
- ],
- [
- 22.01198,
- 47.3758
- ],
- [
- 21.96274,
- 47.38105
- ],
- [
- 21.93825,
- 47.37253
- ],
- [
- 21.87779,
- 47.28578
- ],
- [
- 21.88728,
- 47.27305
- ],
- [
- 21.85349,
- 47.23976
- ],
- [
- 21.85807,
- 47.18736
- ],
- [
- 21.81248,
- 47.16675
- ],
- [
- 21.79241,
- 47.10598
- ],
- [
- 21.72683,
- 47.09839
- ],
- [
- 21.6976,
- 47.05792
- ],
- [
- 21.65042,
- 47.04083
- ],
- [
- 21.68887,
- 47.002
- ],
- [
- 21.66787,
- 46.97123
- ],
- [
- 21.68149,
- 46.96521
- ],
- [
- 21.6382,
- 46.93305
- ],
- [
- 21.59845,
- 46.92747
- ],
- [
- 21.61429,
- 46.88673
- ],
- [
- 21.60167,
- 46.86682
- ],
- [
- 21.52033,
- 46.83737
- ],
- [
- 21.51861,
- 46.80007
- ],
- [
- 21.48318,
- 46.76502
- ],
- [
- 21.52634,
- 46.73932
- ],
- [
- 21.52937,
- 46.72097
- ],
- [
- 21.49233,
- 46.68597
- ],
- [
- 21.47284,
- 46.69591
- ],
- [
- 21.4299,
- 46.69394
- ],
- [
- 21.43096,
- 46.67814
- ],
- [
- 21.45467,
- 46.66086
- ],
- [
- 21.41624,
- 46.64262
- ],
- [
- 21.4098,
- 46.62181
- ],
- [
- 21.3657,
- 46.63795
- ],
- [
- 21.33005,
- 46.63182
- ],
- [
- 21.31397,
- 46.61767
- ],
- [
- 21.30124,
- 46.59087
- ],
- [
- 21.32079,
- 46.58286
- ],
- [
- 21.2743,
- 46.54074
- ],
- [
- 21.26003,
- 46.50216
- ],
- [
- 21.27442,
- 46.47673
- ],
- [
- 21.29645,
- 46.4763
- ],
- [
- 21.31743,
- 46.45073
- ],
- [
- 21.28952,
- 46.41548
- ],
- [
- 21.29633,
- 46.40696
- ],
- [
- 21.22501,
- 46.41369
- ],
- [
- 21.20642,
- 46.40338
- ],
- [
- 21.19926,
- 46.3479
- ],
- [
- 21.17623,
- 46.33577
- ],
- [
- 21.1805,
- 46.30445
- ],
- [
- 21.11554,
- 46.30185
- ],
- [
- 21.10305,
- 46.26246
- ],
- [
- 21.07088,
- 46.2539
- ],
- [
- 21.06608,
- 46.24294
- ],
- [
- 21.03662,
- 46.24804
- ],
- [
- 21.02467,
- 46.26653
- ],
- [
- 20.96082,
- 46.2623
- ],
- [
- 20.94658,
- 46.2793
- ],
- [
- 20.92507,
- 46.27662
- ],
- [
- 20.92181,
- 46.26181
- ],
- [
- 20.87327,
- 46.28776
- ],
- [
- 20.77565,
- 46.27596
- ],
- [
- 20.74905,
- 46.25085
- ],
- [
- 20.76186,
- 46.20456
- ],
- [
- 20.7274,
- 46.20775
- ],
- [
- 20.73411,
- 46.19394
- ],
- [
- 20.71405,
- 46.16605
- ],
- [
- 20.68436,
- 46.14478
- ],
- [
- 20.65492,
- 46.14977
- ],
- [
- 20.63945,
- 46.12676
- ],
- [
- 20.54505,
- 46.17909
- ],
- [
- 20.50148,
- 46.19033
- ],
- [
- 20.49494,
- 46.17099
- ],
- [
- 20.45923,
- 46.14288
- ],
- [
- 20.39751,
- 46.15747
- ],
- [
- 20.36853,
- 46.15286
- ],
- [
- 20.35571,
- 46.16963
- ],
- [
- 20.29681,
- 46.15215
- ],
- [
- 20.2549,
- 46.11585
- ],
- [
- 20.24848,
- 46.1301
- ],
- [
- 20.23301,
- 46.12417
- ],
- [
- 20.18174,
- 46.16011
- ],
- [
- 20.1365,
- 46.14495
- ],
- [
- 20.10097,
- 46.17728
- ],
- [
- 20.06362,
- 46.14373
- ],
- [
- 20.03461,
- 46.14589
- ],
- [
- 20.01581,
- 46.17684
- ],
- [
- 19.93541,
- 46.17642
- ],
- [
- 19.85335,
- 46.15
- ],
- [
- 19.81797,
- 46.12817
- ],
- [
- 19.75854,
- 46.14798
- ],
- [
- 19.69821,
- 46.18793
- ],
- [
- 19.68277,
- 46.18004
- ],
- [
- 19.66151,
- 46.19044
- ],
- [
- 19.63174,
- 46.1693
- ],
- [
- 19.56765,
- 46.17911
- ],
- [
- 19.5604,
- 46.16658
- ],
- [
- 19.50266,
- 46.14245
- ],
- [
- 19.52712,
- 46.12103
- ],
- [
- 19.4645,
- 46.09538
- ],
- [
- 19.46658,
- 46.08204
- ],
- [
- 19.416,
- 46.04605
- ],
- [
- 19.3804,
- 46.03587
- ],
- [
- 19.36409,
- 46.0523
- ],
- [
- 19.2819,
- 46.0148
- ],
- [
- 19.29653,
- 45.98812
- ],
- [
- 19.28565,
- 45.9969
- ],
- [
- 19.14799,
- 45.99634
- ],
- [
- 19.13384,
- 46.0371
- ],
- [
- 19.10487,
- 46.04017
- ],
- [
- 19.06604,
- 46.0002
- ],
- [
- 19.07968,
- 45.96364
- ],
- [
- 19.00598,
- 45.95907
- ],
- [
- 19.00927,
- 45.92366
- ],
- [
- 18.90613,
- 45.93538
- ],
- [
- 18.87946,
- 45.91668
- ],
- [
- 18.86471,
- 45.92085
- ],
- [
- 18.86856,
- 45.91134
- ],
- [
- 18.82768,
- 45.90517
- ],
- [
- 18.822,
- 45.91459
- ],
- [
- 18.80751,
- 45.90361
- ],
- [
- 18.80925,
- 45.87962
- ],
- [
- 18.79562,
- 45.87845
- ],
- [
- 18.70489,
- 45.91819
- ],
- [
- 18.67002,
- 45.91084
- ],
- [
- 18.65966,
- 45.91689
- ],
- [
- 18.66513,
- 45.89928
- ],
- [
- 18.64128,
- 45.88904
- ],
- [
- 18.65502,
- 45.87424
- ],
- [
- 18.62777,
- 45.87338
- ],
- [
- 18.61484,
- 45.85314
- ],
- [
- 18.62367,
- 45.83985
- ],
- [
- 18.57324,
- 45.81376
- ],
- [
- 18.57498,
- 45.80043
- ],
- [
- 18.55972,
- 45.8038
- ],
- [
- 18.52235,
- 45.78269
- ],
- [
- 18.49067,
- 45.79472
- ],
- [
- 18.48219,
- 45.7655
- ],
- [
- 18.45628,
- 45.76952
- ],
- [
- 18.44508,
- 45.76052
- ],
- [
- 18.44685,
- 45.73713
- ],
- [
- 18.40763,
- 45.73971
- ],
- [
- 18.39189,
- 45.7617
- ],
- [
- 18.36423,
- 45.77294
- ],
- [
- 18.33942,
- 45.74716
- ],
- [
- 18.29682,
- 45.76122
- ],
- [
- 18.24405,
- 45.76123
- ],
- [
- 18.23073,
- 45.77903
- ],
- [
- 18.19087,
- 45.78788
- ],
- [
- 18.16819,
- 45.77627
- ],
- [
- 18.12465,
- 45.78963
- ],
- [
- 18.10681,
- 45.77083
- ],
- [
- 18.08189,
- 45.76452
- ],
- [
- 17.99588,
- 45.79573
- ],
- [
- 17.93021,
- 45.78633
- ],
- [
- 17.90668,
- 45.79257
- ],
- [
- 17.86531,
- 45.76701
- ],
- [
- 17.82627,
- 45.81
- ],
- [
- 17.80898,
- 45.8041
- ],
- [
- 17.78091,
- 45.81749
- ],
- [
- 17.76034,
- 45.81192
- ],
- [
- 17.74086,
- 45.8296
- ],
- [
- 17.66329,
- 45.83818
- ],
- [
- 17.62762,
- 45.89794
- ],
- [
- 17.57007,
- 45.93582
- ],
- [
- 17.43783,
- 45.95038
- ],
- [
- 17.4259,
- 45.92727
- ],
- [
- 17.41081,
- 45.93997
- ],
- [
- 17.39215,
- 45.93021
- ],
- [
- 17.38287,
- 45.94757
- ],
- [
- 17.34762,
- 45.94234
- ],
- [
- 17.34388,
- 45.96053
- ],
- [
- 17.35377,
- 45.9525
- ],
- [
- 17.39054,
- 45.95819
- ],
- [
- 17.38742,
- 45.96618
- ],
- [
- 17.35835,
- 45.96427
- ],
- [
- 17.37549,
- 45.96869
- ],
- [
- 17.37519,
- 45.98811
- ],
- [
- 17.36357,
- 45.99154
- ],
- [
- 17.35672,
- 45.97358
- ],
- [
- 17.33396,
- 45.99608
- ],
- [
- 17.33198,
- 45.97289
- ],
- [
- 17.313,
- 45.96653
- ],
- [
- 17.32365,
- 45.98878
- ],
- [
- 17.29877,
- 45.98387
- ],
- [
- 17.3042,
- 46.00211
- ],
- [
- 17.25797,
- 46.01103
- ],
- [
- 17.29632,
- 46.02852
- ],
- [
- 17.25415,
- 46.03001
- ],
- [
- 17.27096,
- 46.05671
- ],
- [
- 17.23248,
- 46.0592
- ],
- [
- 17.25251,
- 46.06647
- ],
- [
- 17.23131,
- 46.07903
- ],
- [
- 17.20199,
- 46.07655
- ],
- [
- 17.23313,
- 46.09896
- ],
- [
- 17.2104,
- 46.10017
- ],
- [
- 17.21297,
- 46.11386
- ],
- [
- 17.17593,
- 46.10846
- ],
- [
- 17.17434,
- 46.12876
- ],
- [
- 17.18652,
- 46.13323
- ],
- [
- 17.1811,
- 46.15055
- ],
- [
- 17.15623,
- 46.15858
- ],
- [
- 17.15929,
- 46.16968
- ],
- [
- 17.1261,
- 46.16845
- ],
- [
- 17.12274,
- 46.17898
- ],
- [
- 17.07525,
- 46.18895
- ],
- [
- 17.06616,
- 46.2023
- ],
- [
- 16.97354,
- 46.2252
- ],
- [
- 16.97395,
- 46.24311
- ],
- [
- 16.95041,
- 46.24153
- ],
- [
- 16.88624,
- 46.28146
- ],
- [
- 16.87137,
- 46.32528
- ],
- [
- 16.88021,
- 46.3357
- ],
- [
- 16.86154,
- 46.34524
- ],
- [
- 16.86562,
- 46.35565
- ],
- [
- 16.8522,
- 46.35172
- ],
- [
- 16.84986,
- 46.36262
- ],
- [
- 16.83529,
- 46.36382
- ],
- [
- 16.83765,
- 46.3748
- ],
- [
- 16.82617,
- 46.3671
- ],
- [
- 16.79334,
- 46.38739
- ],
- [
- 16.75921,
- 46.37766
- ],
- [
- 16.72987,
- 46.40149
- ],
- [
- 16.71821,
- 46.38987
- ],
- [
- 16.67729,
- 46.44945
- ],
- [
- 16.66318,
- 46.4487
- ],
- [
- 16.66637,
- 46.4583
- ],
- [
- 16.61879,
- 46.46199
- ],
- [
- 16.60447,
- 46.47608
- ],
- [
- 16.5236,
- 46.50538
- ],
- [
- 16.53258,
- 46.5314
- ],
- [
- 16.51767,
- 46.53635
- ],
- [
- 16.50841,
- 46.56527
- ],
- [
- 16.483,
- 46.56604
- ],
- [
- 16.4834,
- 46.5786
- ],
- [
- 16.44557,
- 46.61095
- ],
- [
- 16.42486,
- 46.61316
- ],
- [
- 16.38594,
- 46.64425
- ],
- [
- 16.39154,
- 46.66373
- ],
- [
- 16.41985,
- 46.65848
- ],
- [
- 16.42863,
- 46.69397
- ],
- [
- 16.36892,
- 46.70401
- ],
- [
- 16.37983,
- 46.71539
- ],
- [
- 16.37109,
- 46.72229
- ],
- [
- 16.35706,
- 46.71424
- ],
- [
- 16.3186,
- 46.75414
- ],
- [
- 16.33054,
- 46.77521
- ],
- [
- 16.31216,
- 46.778
- ],
- [
- 16.31277,
- 46.79731
- ],
- [
- 16.34064,
- 46.80519
- ],
- [
- 16.35084,
- 46.83006
- ],
- [
- 16.34033,
- 46.84688
- ],
- [
- 16.3015,
- 46.85951
- ],
- [
- 16.29139,
- 46.87283
- ],
- [
- 16.23323,
- 46.87667
- ],
- [
- 16.15609,
- 46.85371
- ],
- [
- 16.12657,
- 46.85691
- ],
- [
- 16.11391,
- 46.8691
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Földmérési és Távérzékelési Intézet",
- "url": "https://www.fomi.hu"
- },
- "country_code": "HU",
- "end_date": "2010",
- "id": "FOMI_2007_2010",
- "license_url": "http://e.tile.openstreetmap.hu/ortofoto-2007-2010/license.txt",
- "max_zoom": 18,
- "name": "FÖMI orthophoto 2007-2010",
- "start_date": "2007",
- "type": "tms",
- "url": "http://e.tile.openstreetmap.hu/ortofoto-2007-2010/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.11391,
- 46.8691
- ],
- [
- 16.17897,
- 46.90662
- ],
- [
- 16.20004,
- 46.94151
- ],
- [
- 16.22175,
- 46.93554
- ],
- [
- 16.24628,
- 46.94639
- ],
- [
- 16.25532,
- 46.96421
- ],
- [
- 16.27647,
- 46.96261
- ],
- [
- 16.29058,
- 47.01398
- ],
- [
- 16.30162,
- 46.99923
- ],
- [
- 16.34146,
- 46.99652
- ],
- [
- 16.35052,
- 47.01063
- ],
- [
- 16.3734,
- 46.99859
- ],
- [
- 16.41277,
- 47.00475
- ],
- [
- 16.43327,
- 46.99274
- ],
- [
- 16.44781,
- 47.00389
- ],
- [
- 16.48,
- 46.99412
- ],
- [
- 16.5122,
- 47.00117
- ],
- [
- 16.46356,
- 47.03227
- ],
- [
- 16.44786,
- 47.02275
- ],
- [
- 16.43912,
- 47.02966
- ],
- [
- 16.44567,
- 47.03887
- ],
- [
- 16.52032,
- 47.0561
- ],
- [
- 16.47321,
- 47.07362
- ],
- [
- 16.46372,
- 47.09392
- ],
- [
- 16.5008,
- 47.11006
- ],
- [
- 16.50004,
- 47.12329
- ],
- [
- 16.52953,
- 47.12874
- ],
- [
- 16.51716,
- 47.14969
- ],
- [
- 16.45495,
- 47.14259
- ],
- [
- 16.46487,
- 47.16833
- ],
- [
- 16.45556,
- 47.18756
- ],
- [
- 16.43056,
- 47.1847
- ],
- [
- 16.4195,
- 47.19491
- ],
- [
- 16.41892,
- 47.21071
- ],
- [
- 16.43713,
- 47.2097
- ],
- [
- 16.44263,
- 47.23371
- ],
- [
- 16.43131,
- 47.25276
- ],
- [
- 16.46715,
- 47.25317
- ],
- [
- 16.48923,
- 47.27989
- ],
- [
- 16.46463,
- 47.33385
- ],
- [
- 16.4337,
- 47.35281
- ],
- [
- 16.45851,
- 47.36705
- ],
- [
- 16.44546,
- 47.40702
- ],
- [
- 16.48317,
- 47.40936
- ],
- [
- 16.49638,
- 47.38927
- ],
- [
- 16.51709,
- 47.41002
- ],
- [
- 16.57491,
- 47.40542
- ],
- [
- 16.58073,
- 47.41917
- ],
- [
- 16.66185,
- 47.4556
- ],
- [
- 16.67064,
- 47.47422
- ],
- [
- 16.65234,
- 47.50034
- ],
- [
- 16.68956,
- 47.51016
- ],
- [
- 16.71478,
- 47.5402
- ],
- [
- 16.66354,
- 47.56773
- ],
- [
- 16.6732,
- 47.60495
- ],
- [
- 16.65953,
- 47.6061
- ],
- [
- 16.65276,
- 47.62285
- ],
- [
- 16.63142,
- 47.62832
- ],
- [
- 16.57391,
- 47.61967
- ],
- [
- 16.51474,
- 47.6462
- ],
- [
- 16.49675,
- 47.63931
- ],
- [
- 16.42546,
- 47.66217
- ],
- [
- 16.44374,
- 47.67421
- ],
- [
- 16.44805,
- 47.69647
- ],
- [
- 16.4747,
- 47.68116
- ],
- [
- 16.48722,
- 47.69798
- ],
- [
- 16.55217,
- 47.72255
- ],
- [
- 16.53638,
- 47.73678
- ],
- [
- 16.54798,
- 47.75154
- ],
- [
- 16.60952,
- 47.76037
- ],
- [
- 16.63441,
- 47.75908
- ],
- [
- 16.65729,
- 47.74149
- ],
- [
- 16.72094,
- 47.73536
- ],
- [
- 16.75341,
- 47.68282
- ],
- [
- 16.83016,
- 47.68106
- ],
- [
- 16.83943,
- 47.70451
- ],
- [
- 16.86689,
- 47.72115
- ],
- [
- 16.87668,
- 47.68765
- ],
- [
- 17.09374,
- 47.70777
- ],
- [
- 17.07066,
- 47.72854
- ],
- [
- 17.0516,
- 47.79385
- ],
- [
- 17.07495,
- 47.8085
- ],
- [
- 17.04714,
- 47.82856
- ],
- [
- 17.05195,
- 47.83777
- ],
- [
- 17.01055,
- 47.85818
- ],
- [
- 17.01639,
- 47.86733
- ],
- [
- 17.08575,
- 47.87462
- ],
- [
- 17.11317,
- 47.92716
- ],
- [
- 17.09171,
- 47.93429
- ],
- [
- 17.11838,
- 47.96011
- ],
- [
- 17.09466,
- 47.97088
- ],
- [
- 17.20103,
- 48.01999
- ],
- [
- 17.24177,
- 48.02247
- ],
- [
- 17.25795,
- 47.99865
- ],
- [
- 17.33465,
- 47.99312
- ],
- [
- 17.40299,
- 47.94785
- ],
- [
- 17.45392,
- 47.88526
- ],
- [
- 17.52674,
- 47.86551
- ],
- [
- 17.56758,
- 47.81513
- ],
- [
- 17.6084,
- 47.82189
- ],
- [
- 17.70858,
- 47.75668
- ],
- [
- 17.77987,
- 47.73949
- ],
- [
- 17.8661,
- 47.74575
- ],
- [
- 17.90013,
- 47.73926
- ],
- [
- 17.94687,
- 47.74467
- ],
- [
- 17.97087,
- 47.75784
- ],
- [
- 18.00441,
- 47.74634
- ],
- [
- 18.03806,
- 47.75768
- ],
- [
- 18.29588,
- 47.73146
- ],
- [
- 18.45407,
- 47.76512
- ],
- [
- 18.49316,
- 47.75276
- ],
- [
- 18.55908,
- 47.766
- ],
- [
- 18.64609,
- 47.75909
- ],
- [
- 18.72607,
- 47.78904
- ],
- [
- 18.74118,
- 47.81382
- ],
- [
- 18.792,
- 47.82309
- ],
- [
- 18.84854,
- 47.81672
- ],
- [
- 18.85588,
- 47.82608
- ],
- [
- 18.82801,
- 47.83429
- ],
- [
- 18.81357,
- 47.85555
- ],
- [
- 18.76353,
- 47.8716
- ],
- [
- 18.75686,
- 47.89684
- ],
- [
- 18.77675,
- 47.95509
- ],
- [
- 18.75525,
- 47.97635
- ],
- [
- 18.81574,
- 47.99344
- ],
- [
- 18.82,
- 48.03968
- ],
- [
- 18.83327,
- 48.04824
- ],
- [
- 18.87494,
- 48.04707
- ],
- [
- 18.88667,
- 48.05868
- ],
- [
- 18.90898,
- 48.05114
- ],
- [
- 18.9439,
- 48.05886
- ],
- [
- 18.98161,
- 48.0536
- ],
- [
- 19.01486,
- 48.07818
- ],
- [
- 19.05852,
- 48.05735
- ],
- [
- 19.08436,
- 48.07278
- ],
- [
- 19.1074,
- 48.0656
- ],
- [
- 19.13529,
- 48.07415
- ],
- [
- 19.24137,
- 48.05365
- ],
- [
- 19.25578,
- 48.07156
- ],
- [
- 19.30311,
- 48.08871
- ],
- [
- 19.3866,
- 48.09191
- ],
- [
- 19.40002,
- 48.0823
- ],
- [
- 19.45405,
- 48.10144
- ],
- [
- 19.46735,
- 48.08393
- ],
- [
- 19.49442,
- 48.10991
- ],
- [
- 19.49238,
- 48.13966
- ],
- [
- 19.51282,
- 48.15466
- ],
- [
- 19.50452,
- 48.17344
- ],
- [
- 19.52897,
- 48.19036
- ],
- [
- 19.52604,
- 48.20313
- ],
- [
- 19.5775,
- 48.21601
- ],
- [
- 19.63083,
- 48.25007
- ],
- [
- 19.64452,
- 48.23917
- ],
- [
- 19.66986,
- 48.23921
- ],
- [
- 19.69122,
- 48.20389
- ],
- [
- 19.72113,
- 48.20147
- ],
- [
- 19.74618,
- 48.21651
- ],
- [
- 19.78716,
- 48.19253
- ],
- [
- 19.79873,
- 48.19482
- ],
- [
- 19.80528,
- 48.18373
- ],
- [
- 19.78242,
- 48.16504
- ],
- [
- 19.79481,
- 48.15353
- ],
- [
- 19.82133,
- 48.16908
- ],
- [
- 19.84528,
- 48.16274
- ],
- [
- 19.85517,
- 48.17843
- ],
- [
- 19.86013,
- 48.16941
- ],
- [
- 19.89875,
- 48.16631
- ],
- [
- 19.91454,
- 48.14686
- ],
- [
- 19.8983,
- 48.1249
- ],
- [
- 19.93738,
- 48.13112
- ],
- [
- 19.97439,
- 48.166
- ],
- [
- 19.98871,
- 48.16217
- ],
- [
- 20.02904,
- 48.17768
- ],
- [
- 20.04945,
- 48.1672
- ],
- [
- 20.07299,
- 48.17961
- ],
- [
- 20.07004,
- 48.1917
- ],
- [
- 20.13409,
- 48.22518
- ],
- [
- 20.13319,
- 48.25398
- ],
- [
- 20.20616,
- 48.25098
- ],
- [
- 20.20383,
- 48.26191
- ],
- [
- 20.22847,
- 48.26278
- ],
- [
- 20.23495,
- 48.27993
- ],
- [
- 20.28686,
- 48.26164
- ],
- [
- 20.32571,
- 48.27279
- ],
- [
- 20.33746,
- 48.30167
- ],
- [
- 20.36566,
- 48.31661
- ],
- [
- 20.38408,
- 48.35118
- ],
- [
- 20.40983,
- 48.36586
- ],
- [
- 20.40253,
- 48.38256
- ],
- [
- 20.42053,
- 48.40386
- ],
- [
- 20.41623,
- 48.41854
- ],
- [
- 20.50793,
- 48.48936
- ],
- [
- 20.50651,
- 48.53442
- ],
- [
- 20.53747,
- 48.52788
- ],
- [
- 20.54649,
- 48.54429
- ],
- [
- 20.58659,
- 48.53576
- ],
- [
- 20.65387,
- 48.56141
- ],
- [
- 20.83636,
- 48.58284
- ],
- [
- 20.8378,
- 48.57421
- ],
- [
- 20.85044,
- 48.58163
- ],
- [
- 20.84533,
- 48.5665
- ],
- [
- 20.86815,
- 48.55182
- ],
- [
- 20.92232,
- 48.55945
- ],
- [
- 20.93463,
- 48.53834
- ],
- [
- 20.95588,
- 48.53396
- ],
- [
- 20.9562,
- 48.52167
- ],
- [
- 20.98158,
- 48.51777
- ],
- [
- 21.01511,
- 48.53231
- ],
- [
- 21.06632,
- 48.52589
- ],
- [
- 21.11745,
- 48.49105
- ],
- [
- 21.16087,
- 48.5215
- ],
- [
- 21.17963,
- 48.51823
- ],
- [
- 21.22106,
- 48.5375
- ],
- [
- 21.30549,
- 48.52225
- ],
- [
- 21.31338,
- 48.55084
- ],
- [
- 21.32688,
- 48.55413
- ],
- [
- 21.31938,
- 48.5612
- ],
- [
- 21.41545,
- 48.55895
- ],
- [
- 21.42266,
- 48.57882
- ],
- [
- 21.44061,
- 48.5851
- ],
- [
- 21.51409,
- 48.55107
- ],
- [
- 21.54202,
- 48.5084
- ],
- [
- 21.61393,
- 48.50942
- ],
- [
- 21.62019,
- 48.46983
- ],
- [
- 21.66355,
- 48.41796
- ],
- [
- 21.66456,
- 48.39216
- ],
- [
- 21.70174,
- 48.3807
- ],
- [
- 21.71187,
- 48.35762
- ],
- [
- 21.81741,
- 48.33279
- ],
- [
- 21.8352,
- 48.33464
- ],
- [
- 21.83721,
- 48.36325
- ],
- [
- 21.8843,
- 48.35605
- ],
- [
- 21.88484,
- 48.36754
- ],
- [
- 21.89788,
- 48.36256
- ],
- [
- 21.8998,
- 48.37022
- ],
- [
- 21.92819,
- 48.3616
- ],
- [
- 21.92681,
- 48.3709
- ],
- [
- 21.9492,
- 48.37873
- ],
- [
- 21.99446,
- 48.37732
- ],
- [
- 22.02133,
- 48.39275
- ],
- [
- 22.0546,
- 48.37753
- ],
- [
- 22.07649,
- 48.38724
- ],
- [
- 22.08674,
- 48.37156
- ],
- [
- 22.13591,
- 48.38052
- ],
- [
- 22.13106,
- 48.39123
- ],
- [
- 22.15277,
- 48.39624
- ],
- [
- 22.15619,
- 48.40931
- ],
- [
- 22.21257,
- 48.42565
- ],
- [
- 22.23714,
- 48.41004
- ],
- [
- 22.26549,
- 48.40987
- ],
- [
- 22.23988,
- 48.38701
- ],
- [
- 22.26757,
- 48.36116
- ],
- [
- 22.31781,
- 48.35454
- ],
- [
- 22.31329,
- 48.32507
- ],
- [
- 22.33729,
- 48.30791
- ],
- [
- 22.33843,
- 48.27921
- ],
- [
- 22.38475,
- 48.23396
- ],
- [
- 22.40064,
- 48.2492
- ],
- [
- 22.43284,
- 48.25252
- ],
- [
- 22.45639,
- 48.24231
- ],
- [
- 22.4899,
- 48.25342
- ],
- [
- 22.49722,
- 48.23955
- ],
- [
- 22.51615,
- 48.23797
- ],
- [
- 22.53111,
- 48.20943
- ],
- [
- 22.57114,
- 48.19614
- ],
- [
- 22.56164,
- 48.18161
- ],
- [
- 22.59824,
- 48.14476
- ],
- [
- 22.59028,
- 48.10734
- ],
- [
- 22.67545,
- 48.092
- ],
- [
- 22.73472,
- 48.11985
- ],
- [
- 22.75762,
- 48.12006
- ],
- [
- 22.77039,
- 48.10902
- ],
- [
- 22.77232,
- 48.12187
- ],
- [
- 22.80277,
- 48.12211
- ],
- [
- 22.80253,
- 48.10708
- ],
- [
- 22.82543,
- 48.11751
- ],
- [
- 22.83644,
- 48.08025
- ],
- [
- 22.86113,
- 48.07503
- ],
- [
- 22.8678,
- 48.05243
- ],
- [
- 22.88204,
- 48.05481
- ],
- [
- 22.86597,
- 48.01132
- ],
- [
- 22.83556,
- 47.9906
- ],
- [
- 22.84076,
- 47.98136
- ],
- [
- 22.87257,
- 47.97527
- ],
- [
- 22.86973,
- 47.96596
- ],
- [
- 22.89157,
- 47.96724
- ],
- [
- 22.89744,
- 47.95406
- ],
- [
- 22.84733,
- 47.90776
- ],
- [
- 22.79281,
- 47.89086
- ],
- [
- 22.75869,
- 47.89414
- ],
- [
- 22.77775,
- 47.84225
- ],
- [
- 22.71363,
- 47.83609
- ],
- [
- 22.68019,
- 47.78775
- ],
- [
- 22.61112,
- 47.77175
- ],
- [
- 22.549,
- 47.77222
- ],
- [
- 22.48121,
- 47.81089
- ],
- [
- 22.45131,
- 47.80339
- ],
- [
- 22.43133,
- 47.73981
- ],
- [
- 22.35662,
- 47.74862
- ],
- [
- 22.31777,
- 47.76609
- ],
- [
- 22.31762,
- 47.74337
- ],
- [
- 22.28514,
- 47.72928
- ],
- [
- 22.26432,
- 47.73107
- ],
- [
- 22.259,
- 47.69791
- ],
- [
- 22.23068,
- 47.6932
- ],
- [
- 22.17965,
- 47.59161
- ],
- [
- 22.12892,
- 47.5979
- ],
- [
- 22.09428,
- 47.55836
- ],
- [
- 22.07826,
- 47.56213
- ],
- [
- 22.05345,
- 47.54748
- ],
- [
- 22.07122,
- 47.53807
- ],
- [
- 22.06179,
- 47.5288
- ],
- [
- 22.04513,
- 47.53989
- ],
- [
- 22.03672,
- 47.53267
- ],
- [
- 22.00719,
- 47.48362
- ],
- [
- 22.03279,
- 47.45084
- ],
- [
- 22.02388,
- 47.39086
- ],
- [
- 22.01198,
- 47.3758
- ],
- [
- 21.96274,
- 47.38105
- ],
- [
- 21.93825,
- 47.37253
- ],
- [
- 21.87779,
- 47.28578
- ],
- [
- 21.88728,
- 47.27305
- ],
- [
- 21.85349,
- 47.23976
- ],
- [
- 21.85807,
- 47.18736
- ],
- [
- 21.81248,
- 47.16675
- ],
- [
- 21.79241,
- 47.10598
- ],
- [
- 21.72683,
- 47.09839
- ],
- [
- 21.6976,
- 47.05792
- ],
- [
- 21.65042,
- 47.04083
- ],
- [
- 21.68887,
- 47.002
- ],
- [
- 21.66787,
- 46.97123
- ],
- [
- 21.68149,
- 46.96521
- ],
- [
- 21.6382,
- 46.93305
- ],
- [
- 21.59845,
- 46.92747
- ],
- [
- 21.61429,
- 46.88673
- ],
- [
- 21.60167,
- 46.86682
- ],
- [
- 21.52033,
- 46.83737
- ],
- [
- 21.51861,
- 46.80007
- ],
- [
- 21.48318,
- 46.76502
- ],
- [
- 21.52634,
- 46.73932
- ],
- [
- 21.52937,
- 46.72097
- ],
- [
- 21.49233,
- 46.68597
- ],
- [
- 21.47284,
- 46.69591
- ],
- [
- 21.4299,
- 46.69394
- ],
- [
- 21.43096,
- 46.67814
- ],
- [
- 21.45467,
- 46.66086
- ],
- [
- 21.41624,
- 46.64262
- ],
- [
- 21.4098,
- 46.62181
- ],
- [
- 21.3657,
- 46.63795
- ],
- [
- 21.33005,
- 46.63182
- ],
- [
- 21.31397,
- 46.61767
- ],
- [
- 21.30124,
- 46.59087
- ],
- [
- 21.32079,
- 46.58286
- ],
- [
- 21.2743,
- 46.54074
- ],
- [
- 21.26003,
- 46.50216
- ],
- [
- 21.27442,
- 46.47673
- ],
- [
- 21.29645,
- 46.4763
- ],
- [
- 21.31743,
- 46.45073
- ],
- [
- 21.28952,
- 46.41548
- ],
- [
- 21.29633,
- 46.40696
- ],
- [
- 21.22501,
- 46.41369
- ],
- [
- 21.20642,
- 46.40338
- ],
- [
- 21.19926,
- 46.3479
- ],
- [
- 21.17623,
- 46.33577
- ],
- [
- 21.1805,
- 46.30445
- ],
- [
- 21.11554,
- 46.30185
- ],
- [
- 21.10305,
- 46.26246
- ],
- [
- 21.07088,
- 46.2539
- ],
- [
- 21.06608,
- 46.24294
- ],
- [
- 21.03662,
- 46.24804
- ],
- [
- 21.02467,
- 46.26653
- ],
- [
- 20.96082,
- 46.2623
- ],
- [
- 20.94658,
- 46.2793
- ],
- [
- 20.92507,
- 46.27662
- ],
- [
- 20.92181,
- 46.26181
- ],
- [
- 20.87327,
- 46.28776
- ],
- [
- 20.77565,
- 46.27596
- ],
- [
- 20.74905,
- 46.25085
- ],
- [
- 20.76186,
- 46.20456
- ],
- [
- 20.7274,
- 46.20775
- ],
- [
- 20.73411,
- 46.19394
- ],
- [
- 20.71405,
- 46.16605
- ],
- [
- 20.68436,
- 46.14478
- ],
- [
- 20.65492,
- 46.14977
- ],
- [
- 20.63945,
- 46.12676
- ],
- [
- 20.54505,
- 46.17909
- ],
- [
- 20.50148,
- 46.19033
- ],
- [
- 20.49494,
- 46.17099
- ],
- [
- 20.45923,
- 46.14288
- ],
- [
- 20.39751,
- 46.15747
- ],
- [
- 20.36853,
- 46.15286
- ],
- [
- 20.35571,
- 46.16963
- ],
- [
- 20.29681,
- 46.15215
- ],
- [
- 20.2549,
- 46.11585
- ],
- [
- 20.24848,
- 46.1301
- ],
- [
- 20.23301,
- 46.12417
- ],
- [
- 20.18174,
- 46.16011
- ],
- [
- 20.1365,
- 46.14495
- ],
- [
- 20.10097,
- 46.17728
- ],
- [
- 20.06362,
- 46.14373
- ],
- [
- 20.03461,
- 46.14589
- ],
- [
- 20.01581,
- 46.17684
- ],
- [
- 19.93541,
- 46.17642
- ],
- [
- 19.85335,
- 46.15
- ],
- [
- 19.81797,
- 46.12817
- ],
- [
- 19.75854,
- 46.14798
- ],
- [
- 19.69821,
- 46.18793
- ],
- [
- 19.68277,
- 46.18004
- ],
- [
- 19.66151,
- 46.19044
- ],
- [
- 19.63174,
- 46.1693
- ],
- [
- 19.56765,
- 46.17911
- ],
- [
- 19.5604,
- 46.16658
- ],
- [
- 19.50266,
- 46.14245
- ],
- [
- 19.52712,
- 46.12103
- ],
- [
- 19.4645,
- 46.09538
- ],
- [
- 19.46658,
- 46.08204
- ],
- [
- 19.416,
- 46.04605
- ],
- [
- 19.3804,
- 46.03587
- ],
- [
- 19.36409,
- 46.0523
- ],
- [
- 19.2819,
- 46.0148
- ],
- [
- 19.29653,
- 45.98812
- ],
- [
- 19.28565,
- 45.9969
- ],
- [
- 19.14799,
- 45.99634
- ],
- [
- 19.13384,
- 46.0371
- ],
- [
- 19.10487,
- 46.04017
- ],
- [
- 19.06604,
- 46.0002
- ],
- [
- 19.07968,
- 45.96364
- ],
- [
- 19.00598,
- 45.95907
- ],
- [
- 19.00927,
- 45.92366
- ],
- [
- 18.90613,
- 45.93538
- ],
- [
- 18.87946,
- 45.91668
- ],
- [
- 18.86471,
- 45.92085
- ],
- [
- 18.86856,
- 45.91134
- ],
- [
- 18.82768,
- 45.90517
- ],
- [
- 18.822,
- 45.91459
- ],
- [
- 18.80751,
- 45.90361
- ],
- [
- 18.80925,
- 45.87962
- ],
- [
- 18.79562,
- 45.87845
- ],
- [
- 18.70489,
- 45.91819
- ],
- [
- 18.67002,
- 45.91084
- ],
- [
- 18.65966,
- 45.91689
- ],
- [
- 18.66513,
- 45.89928
- ],
- [
- 18.64128,
- 45.88904
- ],
- [
- 18.65502,
- 45.87424
- ],
- [
- 18.62777,
- 45.87338
- ],
- [
- 18.61484,
- 45.85314
- ],
- [
- 18.62367,
- 45.83985
- ],
- [
- 18.57324,
- 45.81376
- ],
- [
- 18.57498,
- 45.80043
- ],
- [
- 18.55972,
- 45.8038
- ],
- [
- 18.52235,
- 45.78269
- ],
- [
- 18.49067,
- 45.79472
- ],
- [
- 18.48219,
- 45.7655
- ],
- [
- 18.45628,
- 45.76952
- ],
- [
- 18.44508,
- 45.76052
- ],
- [
- 18.44685,
- 45.73713
- ],
- [
- 18.40763,
- 45.73971
- ],
- [
- 18.39189,
- 45.7617
- ],
- [
- 18.36423,
- 45.77294
- ],
- [
- 18.33942,
- 45.74716
- ],
- [
- 18.29682,
- 45.76122
- ],
- [
- 18.24405,
- 45.76123
- ],
- [
- 18.23073,
- 45.77903
- ],
- [
- 18.19087,
- 45.78788
- ],
- [
- 18.16819,
- 45.77627
- ],
- [
- 18.12465,
- 45.78963
- ],
- [
- 18.10681,
- 45.77083
- ],
- [
- 18.08189,
- 45.76452
- ],
- [
- 17.99588,
- 45.79573
- ],
- [
- 17.93021,
- 45.78633
- ],
- [
- 17.90668,
- 45.79257
- ],
- [
- 17.86531,
- 45.76701
- ],
- [
- 17.82627,
- 45.81
- ],
- [
- 17.80898,
- 45.8041
- ],
- [
- 17.78091,
- 45.81749
- ],
- [
- 17.76034,
- 45.81192
- ],
- [
- 17.74086,
- 45.8296
- ],
- [
- 17.66329,
- 45.83818
- ],
- [
- 17.62762,
- 45.89794
- ],
- [
- 17.57007,
- 45.93582
- ],
- [
- 17.43783,
- 45.95038
- ],
- [
- 17.4259,
- 45.92727
- ],
- [
- 17.41081,
- 45.93997
- ],
- [
- 17.39215,
- 45.93021
- ],
- [
- 17.38287,
- 45.94757
- ],
- [
- 17.34762,
- 45.94234
- ],
- [
- 17.34388,
- 45.96053
- ],
- [
- 17.35377,
- 45.9525
- ],
- [
- 17.39054,
- 45.95819
- ],
- [
- 17.38742,
- 45.96618
- ],
- [
- 17.35835,
- 45.96427
- ],
- [
- 17.37549,
- 45.96869
- ],
- [
- 17.37519,
- 45.98811
- ],
- [
- 17.36357,
- 45.99154
- ],
- [
- 17.35672,
- 45.97358
- ],
- [
- 17.33396,
- 45.99608
- ],
- [
- 17.33198,
- 45.97289
- ],
- [
- 17.313,
- 45.96653
- ],
- [
- 17.32365,
- 45.98878
- ],
- [
- 17.29877,
- 45.98387
- ],
- [
- 17.3042,
- 46.00211
- ],
- [
- 17.25797,
- 46.01103
- ],
- [
- 17.29632,
- 46.02852
- ],
- [
- 17.25415,
- 46.03001
- ],
- [
- 17.27096,
- 46.05671
- ],
- [
- 17.23248,
- 46.0592
- ],
- [
- 17.25251,
- 46.06647
- ],
- [
- 17.23131,
- 46.07903
- ],
- [
- 17.20199,
- 46.07655
- ],
- [
- 17.23313,
- 46.09896
- ],
- [
- 17.2104,
- 46.10017
- ],
- [
- 17.21297,
- 46.11386
- ],
- [
- 17.17593,
- 46.10846
- ],
- [
- 17.17434,
- 46.12876
- ],
- [
- 17.18652,
- 46.13323
- ],
- [
- 17.1811,
- 46.15055
- ],
- [
- 17.15623,
- 46.15858
- ],
- [
- 17.15929,
- 46.16968
- ],
- [
- 17.1261,
- 46.16845
- ],
- [
- 17.12274,
- 46.17898
- ],
- [
- 17.07525,
- 46.18895
- ],
- [
- 17.06616,
- 46.2023
- ],
- [
- 16.97354,
- 46.2252
- ],
- [
- 16.97395,
- 46.24311
- ],
- [
- 16.95041,
- 46.24153
- ],
- [
- 16.88624,
- 46.28146
- ],
- [
- 16.87137,
- 46.32528
- ],
- [
- 16.88021,
- 46.3357
- ],
- [
- 16.86154,
- 46.34524
- ],
- [
- 16.86562,
- 46.35565
- ],
- [
- 16.8522,
- 46.35172
- ],
- [
- 16.84986,
- 46.36262
- ],
- [
- 16.83529,
- 46.36382
- ],
- [
- 16.83765,
- 46.3748
- ],
- [
- 16.82617,
- 46.3671
- ],
- [
- 16.79334,
- 46.38739
- ],
- [
- 16.75921,
- 46.37766
- ],
- [
- 16.72987,
- 46.40149
- ],
- [
- 16.71821,
- 46.38987
- ],
- [
- 16.67729,
- 46.44945
- ],
- [
- 16.66318,
- 46.4487
- ],
- [
- 16.66637,
- 46.4583
- ],
- [
- 16.61879,
- 46.46199
- ],
- [
- 16.60447,
- 46.47608
- ],
- [
- 16.5236,
- 46.50538
- ],
- [
- 16.53258,
- 46.5314
- ],
- [
- 16.51767,
- 46.53635
- ],
- [
- 16.50841,
- 46.56527
- ],
- [
- 16.483,
- 46.56604
- ],
- [
- 16.4834,
- 46.5786
- ],
- [
- 16.44557,
- 46.61095
- ],
- [
- 16.42486,
- 46.61316
- ],
- [
- 16.38594,
- 46.64425
- ],
- [
- 16.39154,
- 46.66373
- ],
- [
- 16.41985,
- 46.65848
- ],
- [
- 16.42863,
- 46.69397
- ],
- [
- 16.36892,
- 46.70401
- ],
- [
- 16.37983,
- 46.71539
- ],
- [
- 16.37109,
- 46.72229
- ],
- [
- 16.35706,
- 46.71424
- ],
- [
- 16.3186,
- 46.75414
- ],
- [
- 16.33054,
- 46.77521
- ],
- [
- 16.31216,
- 46.778
- ],
- [
- 16.31277,
- 46.79731
- ],
- [
- 16.34064,
- 46.80519
- ],
- [
- 16.35084,
- 46.83006
- ],
- [
- 16.34033,
- 46.84688
- ],
- [
- 16.3015,
- 46.85951
- ],
- [
- 16.29139,
- 46.87283
- ],
- [
- 16.23323,
- 46.87667
- ],
- [
- 16.15609,
- 46.85371
- ],
- [
- 16.12657,
- 46.85691
- ],
- [
- 16.11391,
- 46.8691
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors",
- "url": "https://www.openstreetmap.org"
- },
- "country_code": "HU",
- "id": "OpenStreetMap-turistautak",
- "license_url": "http://www.openstreetmap.hu",
- "max_zoom": 18,
- "name": "OpenStreetMap (turistautak)",
- "type": "tms",
- "url": "http://{switch:h,i,j}.tile.openstreetmap.hu/turistautak/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.79273,
- 47.37079
- ],
- [
- 18.79194,
- 47.37048
- ],
- [
- 18.79139,
- 47.37063
- ],
- [
- 18.79011,
- 47.37176
- ],
- [
- 18.78916,
- 47.37345
- ],
- [
- 18.78722,
- 47.37566
- ],
- [
- 18.78603,
- 47.37765
- ],
- [
- 18.78498,
- 47.37905
- ],
- [
- 18.7837,
- 47.38032
- ],
- [
- 18.78267,
- 47.38195
- ],
- [
- 18.7814,
- 47.38368
- ],
- [
- 18.77934,
- 47.38713
- ],
- [
- 18.77666,
- 47.3894
- ],
- [
- 18.76472,
- 47.3967
- ],
- [
- 18.7617,
- 47.39966
- ],
- [
- 18.75631,
- 47.40328
- ],
- [
- 18.75837,
- 47.40653
- ],
- [
- 18.7588,
- 47.40776
- ],
- [
- 18.762,
- 47.41217
- ],
- [
- 18.76304,
- 47.41315
- ],
- [
- 18.76593,
- 47.41471
- ],
- [
- 18.77041,
- 47.41766
- ],
- [
- 18.77247,
- 47.41809
- ],
- [
- 18.77248,
- 47.4203
- ],
- [
- 18.8086,
- 47.44041
- ],
- [
- 18.81742,
- 47.43539
- ],
- [
- 18.82092,
- 47.43572
- ],
- [
- 18.82804,
- 47.43755
- ],
- [
- 18.83021,
- 47.43526
- ],
- [
- 18.83585,
- 47.43754
- ],
- [
- 18.84049,
- 47.43346
- ],
- [
- 18.84765,
- 47.43572
- ],
- [
- 18.851,
- 47.43281
- ],
- [
- 18.869,
- 47.43961
- ],
- [
- 18.87361,
- 47.43597
- ],
- [
- 18.87499,
- 47.43342
- ],
- [
- 18.87386,
- 47.43248
- ],
- [
- 18.87604,
- 47.42797
- ],
- [
- 18.8605,
- 47.423
- ],
- [
- 18.86621,
- 47.41798
- ],
- [
- 18.87243,
- 47.41086
- ],
- [
- 18.8663,
- 47.40773
- ],
- [
- 18.86964,
- 47.40471
- ],
- [
- 18.86777,
- 47.40207
- ],
- [
- 18.86509,
- 47.40052
- ],
- [
- 18.87081,
- 47.39838
- ],
- [
- 18.86772,
- 47.39699
- ],
- [
- 18.86992,
- 47.39655
- ],
- [
- 18.87649,
- 47.39478
- ],
- [
- 18.87749,
- 47.39495
- ],
- [
- 18.87867,
- 47.39462
- ],
- [
- 18.88358,
- 47.38996
- ],
- [
- 18.88291,
- 47.38967
- ],
- [
- 18.88539,
- 47.3853
- ],
- [
- 18.87748,
- 47.38339
- ],
- [
- 18.88181,
- 47.37605
- ],
- [
- 18.87914,
- 47.37393
- ],
- [
- 18.88638,
- 47.36923
- ],
- [
- 18.88206,
- 47.36773
- ],
- [
- 18.87973,
- 47.36641
- ],
- [
- 18.8747,
- 47.36252
- ],
- [
- 18.87282,
- 47.36137
- ],
- [
- 18.87028,
- 47.36063
- ],
- [
- 18.86688,
- 47.35853
- ],
- [
- 18.86234,
- 47.35637
- ],
- [
- 18.85567,
- 47.35199
- ],
- [
- 18.84874,
- 47.34728
- ],
- [
- 18.83192,
- 47.33841
- ],
- [
- 18.82497,
- 47.34258
- ],
- [
- 18.8162,
- 47.34925
- ],
- [
- 18.81079,
- 47.35357
- ],
- [
- 18.80823,
- 47.356
- ],
- [
- 18.80645,
- 47.35854
- ],
- [
- 18.80708,
- 47.35902
- ],
- [
- 18.80635,
- 47.36021
- ],
- [
- 18.80465,
- 47.36175
- ],
- [
- 18.80381,
- 47.36335
- ],
- [
- 18.80055,
- 47.36545
- ],
- [
- 18.79988,
- 47.36617
- ],
- [
- 18.79416,
- 47.36975
- ],
- [
- 18.79273,
- 47.37079
- ]
- ],
- [
- [
- 18.91871,
- 47.40938
- ],
- [
- 18.91826,
- 47.40998
- ],
- [
- 18.92067,
- 47.41156
- ],
- [
- 18.9251,
- 47.41372
- ],
- [
- 18.93473,
- 47.41917
- ],
- [
- 18.94063,
- 47.42241
- ],
- [
- 18.94982,
- 47.41938
- ],
- [
- 18.95155,
- 47.4175
- ],
- [
- 18.9569,
- 47.41923
- ],
- [
- 18.9577,
- 47.41878
- ],
- [
- 18.95755,
- 47.41435
- ],
- [
- 18.96211,
- 47.40507
- ],
- [
- 18.96266,
- 47.40118
- ],
- [
- 18.96316,
- 47.39903
- ],
- [
- 18.95446,
- 47.39673
- ],
- [
- 18.95276,
- 47.39526
- ],
- [
- 18.95202,
- 47.39362
- ],
- [
- 18.95119,
- 47.39356
- ],
- [
- 18.94692,
- 47.39799
- ],
- [
- 18.94411,
- 47.39845
- ],
- [
- 18.94161,
- 47.39869
- ],
- [
- 18.93735,
- 47.39633
- ],
- [
- 18.93617,
- 47.39683
- ],
- [
- 18.93122,
- 47.4
- ],
- [
- 18.9312,
- 47.40023
- ],
- [
- 18.92924,
- 47.40205
- ],
- [
- 18.92561,
- 47.40605
- ],
- [
- 18.92466,
- 47.40635
- ],
- [
- 18.92293,
- 47.40926
- ],
- [
- 18.91871,
- 47.40938
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Fototerkep.hu",
- "url": "http://fototerkep.hu"
- },
- "best": true,
- "country_code": "HU",
- "description": "5 cm resolution bald image of 4 settlement",
- "end_date": "2017-03",
- "id": "Soskut_Pusztazamor_Tarnok_Diosd_orto_2017",
- "max_zoom": 20,
- "min_zoom": 11,
- "name": "Sóskút, Pusztazámor, Tárnok, Diósd ortophoto 2017",
- "start_date": "2017-03",
- "type": "tms",
- "url": "http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/Soskut-Tarnok-Pusztazamor-Diosd/mercator/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 20.14599,
- 46.22811
- ],
- [
- 20.13323,
- 46.22904
- ],
- [
- 20.12584,
- 46.22987
- ],
- [
- 20.12233,
- 46.23099
- ],
- [
- 20.12085,
- 46.23175
- ],
- [
- 20.11897,
- 46.23351
- ],
- [
- 20.11312,
- 46.24136
- ],
- [
- 20.11203,
- 46.2433
- ],
- [
- 20.11157,
- 46.245
- ],
- [
- 20.11119,
- 46.24709
- ],
- [
- 20.11129,
- 46.24877
- ],
- [
- 20.11159,
- 46.25097
- ],
- [
- 20.11222,
- 46.2528
- ],
- [
- 20.11299,
- 46.25427
- ],
- [
- 20.11354,
- 46.25535
- ],
- [
- 20.11477,
- 46.2568
- ],
- [
- 20.13523,
- 46.27685
- ],
- [
- 20.13664,
- 46.27751
- ],
- [
- 20.13789,
- 46.27803
- ],
- [
- 20.13939,
- 46.27835
- ],
- [
- 20.14088,
- 46.27846
- ],
- [
- 20.16115,
- 46.27816
- ],
- [
- 20.16211,
- 46.27816
- ],
- [
- 20.16359,
- 46.2777
- ],
- [
- 20.16618,
- 46.27615
- ],
- [
- 20.16878,
- 46.27386
- ],
- [
- 20.16961,
- 46.27144
- ],
- [
- 20.16959,
- 46.27045
- ],
- [
- 20.17009,
- 46.27044
- ],
- [
- 20.17399,
- 46.26433
- ],
- [
- 20.17662,
- 46.25829
- ],
- [
- 20.1948,
- 46.25492
- ],
- [
- 20.18587,
- 46.24481
- ],
- [
- 20.18466,
- 46.24531
- ],
- [
- 20.17804,
- 46.23831
- ],
- [
- 20.17818,
- 46.23771
- ],
- [
- 20.17953,
- 46.2371
- ],
- [
- 20.17257,
- 46.23002
- ],
- [
- 20.16983,
- 46.23504
- ],
- [
- 20.16877,
- 46.23629
- ],
- [
- 20.16703,
- 46.23785
- ],
- [
- 20.16594,
- 46.23873
- ],
- [
- 20.16544,
- 46.239
- ],
- [
- 20.16548,
- 46.239
- ],
- [
- 20.16352,
- 46.24014
- ],
- [
- 20.16021,
- 46.2412
- ],
- [
- 20.15927,
- 46.24153
- ],
- [
- 20.15927,
- 46.24158
- ],
- [
- 20.15835,
- 46.24185
- ],
- [
- 20.15495,
- 46.24229
- ],
- [
- 20.15108,
- 46.23515
- ],
- [
- 20.14938,
- 46.23246
- ],
- [
- 20.14599,
- 46.22811
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "SZTE TFGT - University of Szeged",
- "url": "http://www.geo.u-szeged.hu"
- },
- "best": true,
- "country_code": "HU",
- "description": "Inner part of Szeged",
- "end_date": "2011",
- "id": "Szeged_2011",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#Szeged",
- "max_zoom": 22,
- "min_zoom": 10,
- "name": "Szeged orthophoto 2011",
- "start_date": "2011",
- "type": "tms",
- "url": "http://e.tile.openstreetmap.hu/szeged-2011-10cm/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.91731,
- 47.40854
- ],
- [
- 18.91691,
- 47.40849
- ],
- [
- 18.91606,
- 47.40885
- ],
- [
- 18.91565,
- 47.40905
- ],
- [
- 18.91458,
- 47.40938
- ],
- [
- 18.91385,
- 47.4097
- ],
- [
- 18.91376,
- 47.40976
- ],
- [
- 18.91314,
- 47.41038
- ],
- [
- 18.9122,
- 47.41098
- ],
- [
- 18.91041,
- 47.41175
- ],
- [
- 18.90932,
- 47.41258
- ],
- [
- 18.90841,
- 47.41317
- ],
- [
- 18.90676,
- 47.41443
- ],
- [
- 18.90481,
- 47.41568
- ],
- [
- 18.90362,
- 47.41597
- ],
- [
- 18.90317,
- 47.41616
- ],
- [
- 18.90062,
- 47.41742
- ],
- [
- 18.90042,
- 47.41755
- ],
- [
- 18.89968,
- 47.41797
- ],
- [
- 18.89888,
- 47.41818
- ],
- [
- 18.89814,
- 47.41835
- ],
- [
- 18.89752,
- 47.41855
- ],
- [
- 18.89666,
- 47.41901
- ],
- [
- 18.8958,
- 47.41954
- ],
- [
- 18.89421,
- 47.4205
- ],
- [
- 18.89055,
- 47.42209
- ],
- [
- 18.88743,
- 47.42332
- ],
- [
- 18.88554,
- 47.42424
- ],
- [
- 18.88436,
- 47.42476
- ],
- [
- 18.88189,
- 47.42553
- ],
- [
- 18.88085,
- 47.42598
- ],
- [
- 18.8801,
- 47.42629
- ],
- [
- 18.87956,
- 47.42649
- ],
- [
- 18.87741,
- 47.42738
- ],
- [
- 18.87602,
- 47.42789
- ],
- [
- 18.87508,
- 47.42836
- ],
- [
- 18.87281,
- 47.42934
- ],
- [
- 18.87164,
- 47.42968
- ],
- [
- 18.8714,
- 47.43001
- ],
- [
- 18.87259,
- 47.4323
- ],
- [
- 18.87273,
- 47.43278
- ],
- [
- 18.87274,
- 47.43324
- ],
- [
- 18.87244,
- 47.43482
- ],
- [
- 18.87206,
- 47.43526
- ],
- [
- 18.86891,
- 47.43712
- ],
- [
- 18.86561,
- 47.4375
- ],
- [
- 18.86466,
- 47.43774
- ],
- [
- 18.86404,
- 47.43809
- ],
- [
- 18.86378,
- 47.43791
- ],
- [
- 18.8634,
- 47.43784
- ],
- [
- 18.863,
- 47.43798
- ],
- [
- 18.85195,
- 47.44715
- ],
- [
- 18.85217,
- 47.44847
- ],
- [
- 18.8593,
- 47.45387
- ],
- [
- 18.85839,
- 47.45512
- ],
- [
- 18.85777,
- 47.45568
- ],
- [
- 18.85718,
- 47.456
- ],
- [
- 18.8572,
- 47.45636
- ],
- [
- 18.86015,
- 47.45839
- ],
- [
- 18.86194,
- 47.4595
- ],
- [
- 18.86099,
- 47.46071
- ],
- [
- 18.85979,
- 47.46201
- ],
- [
- 18.85929,
- 47.46236
- ],
- [
- 18.85859,
- 47.46272
- ],
- [
- 18.85713,
- 47.46333
- ],
- [
- 18.85634,
- 47.4636
- ],
- [
- 18.85628,
- 47.46403
- ],
- [
- 18.85719,
- 47.46528
- ],
- [
- 18.85663,
- 47.46551
- ],
- [
- 18.85653,
- 47.4658
- ],
- [
- 18.85693,
- 47.46656
- ],
- [
- 18.85836,
- 47.46953
- ],
- [
- 18.85826,
- 47.4698
- ],
- [
- 18.85827,
- 47.46991
- ],
- [
- 18.85838,
- 47.47019
- ],
- [
- 18.85844,
- 47.47027
- ],
- [
- 18.85852,
- 47.47033
- ],
- [
- 18.85862,
- 47.47036
- ],
- [
- 18.85873,
- 47.47038
- ],
- [
- 18.8589,
- 47.47036
- ],
- [
- 18.86146,
- 47.46973
- ],
- [
- 18.86277,
- 47.46929
- ],
- [
- 18.86617,
- 47.46785
- ],
- [
- 18.86794,
- 47.46656
- ],
- [
- 18.86997,
- 47.46524
- ],
- [
- 18.8708,
- 47.46457
- ],
- [
- 18.87268,
- 47.46333
- ],
- [
- 18.87536,
- 47.46113
- ],
- [
- 18.87687,
- 47.45927
- ],
- [
- 18.88943,
- 47.45987
- ],
- [
- 18.89024,
- 47.45988
- ],
- [
- 18.90371,
- 47.45534
- ],
- [
- 18.90427,
- 47.4552
- ],
- [
- 18.90493,
- 47.45506
- ],
- [
- 18.90542,
- 47.4551
- ],
- [
- 18.90567,
- 47.45505
- ],
- [
- 18.90629,
- 47.45477
- ],
- [
- 18.90648,
- 47.45453
- ],
- [
- 18.9066,
- 47.45447
- ],
- [
- 18.90678,
- 47.45439
- ],
- [
- 18.90811,
- 47.45399
- ],
- [
- 18.90837,
- 47.45395
- ],
- [
- 18.9089,
- 47.45384
- ],
- [
- 18.90954,
- 47.4537
- ],
- [
- 18.91326,
- 47.45317
- ],
- [
- 18.91353,
- 47.4532
- ],
- [
- 18.91372,
- 47.45317
- ],
- [
- 18.91386,
- 47.45307
- ],
- [
- 18.91431,
- 47.45294
- ],
- [
- 18.91598,
- 47.453
- ],
- [
- 18.91807,
- 47.45317
- ],
- [
- 18.91846,
- 47.453
- ],
- [
- 18.91903,
- 47.45161
- ],
- [
- 18.92173,
- 47.4508
- ],
- [
- 18.92246,
- 47.45069
- ],
- [
- 18.92418,
- 47.45025
- ],
- [
- 18.92756,
- 47.44989
- ],
- [
- 18.92972,
- 47.44951
- ],
- [
- 18.93221,
- 47.44922
- ],
- [
- 18.93347,
- 47.44932
- ],
- [
- 18.93921,
- 47.44935
- ],
- [
- 18.94229,
- 47.44903
- ],
- [
- 18.94549,
- 47.4489
- ],
- [
- 18.94826,
- 47.4487
- ],
- [
- 18.95003,
- 47.44824
- ],
- [
- 18.9547,
- 47.44722
- ],
- [
- 18.95749,
- 47.44692
- ],
- [
- 18.95802,
- 47.44715
- ],
- [
- 18.95844,
- 47.44708
- ],
- [
- 18.95877,
- 47.44666
- ],
- [
- 18.96145,
- 47.4393
- ],
- [
- 18.96368,
- 47.4358
- ],
- [
- 18.96598,
- 47.43288
- ],
- [
- 18.96899,
- 47.4297
- ],
- [
- 18.9701,
- 47.42704
- ],
- [
- 18.97009,
- 47.42679
- ],
- [
- 18.96695,
- 47.4246
- ],
- [
- 18.95735,
- 47.41842
- ],
- [
- 18.95676,
- 47.4184
- ],
- [
- 18.95606,
- 47.41813
- ],
- [
- 18.95385,
- 47.41739
- ],
- [
- 18.95144,
- 47.41665
- ],
- [
- 18.95131,
- 47.41664
- ],
- [
- 18.9327,
- 47.41703
- ],
- [
- 18.93257,
- 47.41696
- ],
- [
- 18.93201,
- 47.41674
- ],
- [
- 18.93149,
- 47.4164
- ],
- [
- 18.93114,
- 47.41612
- ],
- [
- 18.92123,
- 47.41091
- ],
- [
- 18.91957,
- 47.40987
- ],
- [
- 18.91927,
- 47.40961
- ],
- [
- 18.91731,
- 47.40854
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Törökbálint",
- "url": "http://www.torokbalint.hu"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:23700",
- "EPSG:3857"
- ],
- "country_code": "HU",
- "description": "5 cm resolution bald image",
- "end_date": "2013-09",
- "id": "Torokbalint-orthophoto-2013",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#T.C3.B6r.C3.B6kb.C3.A1lint",
- "name": "Törökbálint orthophoto 2013",
- "start_date": "2013-09",
- "type": "wms",
- "url": "https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ORTO_2013_5CM_2013SZEPT_TAKARASSAL_512_512&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.91731,
- 47.40854
- ],
- [
- 18.91691,
- 47.40849
- ],
- [
- 18.91606,
- 47.40885
- ],
- [
- 18.91565,
- 47.40905
- ],
- [
- 18.91458,
- 47.40938
- ],
- [
- 18.91385,
- 47.4097
- ],
- [
- 18.91376,
- 47.40976
- ],
- [
- 18.91314,
- 47.41038
- ],
- [
- 18.9122,
- 47.41098
- ],
- [
- 18.91041,
- 47.41175
- ],
- [
- 18.90932,
- 47.41258
- ],
- [
- 18.90841,
- 47.41317
- ],
- [
- 18.90676,
- 47.41443
- ],
- [
- 18.90481,
- 47.41568
- ],
- [
- 18.90362,
- 47.41597
- ],
- [
- 18.90317,
- 47.41616
- ],
- [
- 18.90062,
- 47.41742
- ],
- [
- 18.90042,
- 47.41755
- ],
- [
- 18.89968,
- 47.41797
- ],
- [
- 18.89888,
- 47.41818
- ],
- [
- 18.89814,
- 47.41835
- ],
- [
- 18.89752,
- 47.41855
- ],
- [
- 18.89666,
- 47.41901
- ],
- [
- 18.8958,
- 47.41954
- ],
- [
- 18.89421,
- 47.4205
- ],
- [
- 18.89055,
- 47.42209
- ],
- [
- 18.88743,
- 47.42332
- ],
- [
- 18.88554,
- 47.42424
- ],
- [
- 18.88436,
- 47.42476
- ],
- [
- 18.88189,
- 47.42553
- ],
- [
- 18.88085,
- 47.42598
- ],
- [
- 18.8801,
- 47.42629
- ],
- [
- 18.87956,
- 47.42649
- ],
- [
- 18.87741,
- 47.42738
- ],
- [
- 18.87602,
- 47.42789
- ],
- [
- 18.87508,
- 47.42836
- ],
- [
- 18.87281,
- 47.42934
- ],
- [
- 18.87164,
- 47.42968
- ],
- [
- 18.8714,
- 47.43001
- ],
- [
- 18.87259,
- 47.4323
- ],
- [
- 18.87273,
- 47.43278
- ],
- [
- 18.87274,
- 47.43324
- ],
- [
- 18.87244,
- 47.43482
- ],
- [
- 18.87206,
- 47.43526
- ],
- [
- 18.86891,
- 47.43712
- ],
- [
- 18.86561,
- 47.4375
- ],
- [
- 18.86466,
- 47.43774
- ],
- [
- 18.86404,
- 47.43809
- ],
- [
- 18.86378,
- 47.43791
- ],
- [
- 18.8634,
- 47.43784
- ],
- [
- 18.863,
- 47.43798
- ],
- [
- 18.85195,
- 47.44715
- ],
- [
- 18.85217,
- 47.44847
- ],
- [
- 18.8593,
- 47.45387
- ],
- [
- 18.85839,
- 47.45512
- ],
- [
- 18.85777,
- 47.45568
- ],
- [
- 18.85718,
- 47.456
- ],
- [
- 18.8572,
- 47.45636
- ],
- [
- 18.86015,
- 47.45839
- ],
- [
- 18.86194,
- 47.4595
- ],
- [
- 18.86099,
- 47.46071
- ],
- [
- 18.85979,
- 47.46201
- ],
- [
- 18.85929,
- 47.46236
- ],
- [
- 18.85859,
- 47.46272
- ],
- [
- 18.85713,
- 47.46333
- ],
- [
- 18.85634,
- 47.4636
- ],
- [
- 18.85628,
- 47.46403
- ],
- [
- 18.85719,
- 47.46528
- ],
- [
- 18.85663,
- 47.46551
- ],
- [
- 18.85653,
- 47.4658
- ],
- [
- 18.85693,
- 47.46656
- ],
- [
- 18.85836,
- 47.46953
- ],
- [
- 18.85826,
- 47.4698
- ],
- [
- 18.85827,
- 47.46991
- ],
- [
- 18.85838,
- 47.47019
- ],
- [
- 18.85844,
- 47.47027
- ],
- [
- 18.85852,
- 47.47033
- ],
- [
- 18.85862,
- 47.47036
- ],
- [
- 18.85873,
- 47.47038
- ],
- [
- 18.8589,
- 47.47036
- ],
- [
- 18.86146,
- 47.46973
- ],
- [
- 18.86277,
- 47.46929
- ],
- [
- 18.86617,
- 47.46785
- ],
- [
- 18.86794,
- 47.46656
- ],
- [
- 18.86997,
- 47.46524
- ],
- [
- 18.8708,
- 47.46457
- ],
- [
- 18.87268,
- 47.46333
- ],
- [
- 18.87536,
- 47.46113
- ],
- [
- 18.87687,
- 47.45927
- ],
- [
- 18.88943,
- 47.45987
- ],
- [
- 18.89024,
- 47.45988
- ],
- [
- 18.90371,
- 47.45534
- ],
- [
- 18.90427,
- 47.4552
- ],
- [
- 18.90493,
- 47.45506
- ],
- [
- 18.90542,
- 47.4551
- ],
- [
- 18.90567,
- 47.45505
- ],
- [
- 18.90629,
- 47.45477
- ],
- [
- 18.90648,
- 47.45453
- ],
- [
- 18.9066,
- 47.45447
- ],
- [
- 18.90678,
- 47.45439
- ],
- [
- 18.90811,
- 47.45399
- ],
- [
- 18.90837,
- 47.45395
- ],
- [
- 18.9089,
- 47.45384
- ],
- [
- 18.90954,
- 47.4537
- ],
- [
- 18.91326,
- 47.45317
- ],
- [
- 18.91353,
- 47.4532
- ],
- [
- 18.91372,
- 47.45317
- ],
- [
- 18.91386,
- 47.45307
- ],
- [
- 18.91431,
- 47.45294
- ],
- [
- 18.91598,
- 47.453
- ],
- [
- 18.91807,
- 47.45317
- ],
- [
- 18.91846,
- 47.453
- ],
- [
- 18.91903,
- 47.45161
- ],
- [
- 18.92173,
- 47.4508
- ],
- [
- 18.92246,
- 47.45069
- ],
- [
- 18.92418,
- 47.45025
- ],
- [
- 18.92756,
- 47.44989
- ],
- [
- 18.92972,
- 47.44951
- ],
- [
- 18.93221,
- 47.44922
- ],
- [
- 18.93347,
- 47.44932
- ],
- [
- 18.93921,
- 47.44935
- ],
- [
- 18.94229,
- 47.44903
- ],
- [
- 18.94549,
- 47.4489
- ],
- [
- 18.94826,
- 47.4487
- ],
- [
- 18.95003,
- 47.44824
- ],
- [
- 18.9547,
- 47.44722
- ],
- [
- 18.95749,
- 47.44692
- ],
- [
- 18.95802,
- 47.44715
- ],
- [
- 18.95844,
- 47.44708
- ],
- [
- 18.95877,
- 47.44666
- ],
- [
- 18.96145,
- 47.4393
- ],
- [
- 18.96368,
- 47.4358
- ],
- [
- 18.96598,
- 47.43288
- ],
- [
- 18.96899,
- 47.4297
- ],
- [
- 18.9701,
- 47.42704
- ],
- [
- 18.97009,
- 47.42679
- ],
- [
- 18.96695,
- 47.4246
- ],
- [
- 18.95735,
- 47.41842
- ],
- [
- 18.95676,
- 47.4184
- ],
- [
- 18.95606,
- 47.41813
- ],
- [
- 18.95385,
- 47.41739
- ],
- [
- 18.95144,
- 47.41665
- ],
- [
- 18.95131,
- 47.41664
- ],
- [
- 18.9327,
- 47.41703
- ],
- [
- 18.93257,
- 47.41696
- ],
- [
- 18.93201,
- 47.41674
- ],
- [
- 18.93149,
- 47.4164
- ],
- [
- 18.93114,
- 47.41612
- ],
- [
- 18.92123,
- 47.41091
- ],
- [
- 18.91957,
- 47.40987
- ],
- [
- 18.91927,
- 47.40961
- ],
- [
- 18.91731,
- 47.40854
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Törökbálint",
- "url": "http://www.torokbalint.hu/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:23700",
- "EPSG:3857"
- ],
- "country_code": "HU",
- "description": "5 cm resolution bald image",
- "end_date": "2015",
- "id": "Torokbalint-orthophoto-2015",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#T.C3.B6r.C3.B6kb.C3.A1lint",
- "name": "Törökbálint orthophoto 2015",
- "privacy_policy_url": "https://www.torokbalint.hu/app/cms/TorokbalintApp/index?id=52",
- "start_date": "2015",
- "type": "wms",
- "url": "https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=TBORTO_2015_20160218&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.91731,
- 47.40854
- ],
- [
- 18.91691,
- 47.40849
- ],
- [
- 18.91606,
- 47.40885
- ],
- [
- 18.91565,
- 47.40905
- ],
- [
- 18.91458,
- 47.40938
- ],
- [
- 18.91385,
- 47.4097
- ],
- [
- 18.91376,
- 47.40976
- ],
- [
- 18.91314,
- 47.41038
- ],
- [
- 18.9122,
- 47.41098
- ],
- [
- 18.91041,
- 47.41175
- ],
- [
- 18.90932,
- 47.41258
- ],
- [
- 18.90841,
- 47.41317
- ],
- [
- 18.90676,
- 47.41443
- ],
- [
- 18.90481,
- 47.41568
- ],
- [
- 18.90362,
- 47.41597
- ],
- [
- 18.90317,
- 47.41616
- ],
- [
- 18.90062,
- 47.41742
- ],
- [
- 18.90042,
- 47.41755
- ],
- [
- 18.89968,
- 47.41797
- ],
- [
- 18.89888,
- 47.41818
- ],
- [
- 18.89814,
- 47.41835
- ],
- [
- 18.89752,
- 47.41855
- ],
- [
- 18.89666,
- 47.41901
- ],
- [
- 18.8958,
- 47.41954
- ],
- [
- 18.89421,
- 47.4205
- ],
- [
- 18.89055,
- 47.42209
- ],
- [
- 18.88743,
- 47.42332
- ],
- [
- 18.88554,
- 47.42424
- ],
- [
- 18.88436,
- 47.42476
- ],
- [
- 18.88189,
- 47.42553
- ],
- [
- 18.88085,
- 47.42598
- ],
- [
- 18.8801,
- 47.42629
- ],
- [
- 18.87956,
- 47.42649
- ],
- [
- 18.87741,
- 47.42738
- ],
- [
- 18.87602,
- 47.42789
- ],
- [
- 18.87508,
- 47.42836
- ],
- [
- 18.87281,
- 47.42934
- ],
- [
- 18.87164,
- 47.42968
- ],
- [
- 18.8714,
- 47.43001
- ],
- [
- 18.87259,
- 47.4323
- ],
- [
- 18.87273,
- 47.43278
- ],
- [
- 18.87274,
- 47.43324
- ],
- [
- 18.87244,
- 47.43482
- ],
- [
- 18.87206,
- 47.43526
- ],
- [
- 18.86891,
- 47.43712
- ],
- [
- 18.86561,
- 47.4375
- ],
- [
- 18.86466,
- 47.43774
- ],
- [
- 18.86404,
- 47.43809
- ],
- [
- 18.86378,
- 47.43791
- ],
- [
- 18.8634,
- 47.43784
- ],
- [
- 18.863,
- 47.43798
- ],
- [
- 18.85195,
- 47.44715
- ],
- [
- 18.85217,
- 47.44847
- ],
- [
- 18.8593,
- 47.45387
- ],
- [
- 18.85839,
- 47.45512
- ],
- [
- 18.85777,
- 47.45568
- ],
- [
- 18.85718,
- 47.456
- ],
- [
- 18.8572,
- 47.45636
- ],
- [
- 18.86015,
- 47.45839
- ],
- [
- 18.86194,
- 47.4595
- ],
- [
- 18.86099,
- 47.46071
- ],
- [
- 18.85979,
- 47.46201
- ],
- [
- 18.85929,
- 47.46236
- ],
- [
- 18.85859,
- 47.46272
- ],
- [
- 18.85713,
- 47.46333
- ],
- [
- 18.85634,
- 47.4636
- ],
- [
- 18.85628,
- 47.46403
- ],
- [
- 18.85719,
- 47.46528
- ],
- [
- 18.85663,
- 47.46551
- ],
- [
- 18.85653,
- 47.4658
- ],
- [
- 18.85693,
- 47.46656
- ],
- [
- 18.85836,
- 47.46953
- ],
- [
- 18.85826,
- 47.4698
- ],
- [
- 18.85827,
- 47.46991
- ],
- [
- 18.85838,
- 47.47019
- ],
- [
- 18.85844,
- 47.47027
- ],
- [
- 18.85852,
- 47.47033
- ],
- [
- 18.85862,
- 47.47036
- ],
- [
- 18.85873,
- 47.47038
- ],
- [
- 18.8589,
- 47.47036
- ],
- [
- 18.86146,
- 47.46973
- ],
- [
- 18.86277,
- 47.46929
- ],
- [
- 18.86617,
- 47.46785
- ],
- [
- 18.86794,
- 47.46656
- ],
- [
- 18.86997,
- 47.46524
- ],
- [
- 18.8708,
- 47.46457
- ],
- [
- 18.87268,
- 47.46333
- ],
- [
- 18.87536,
- 47.46113
- ],
- [
- 18.87687,
- 47.45927
- ],
- [
- 18.88943,
- 47.45987
- ],
- [
- 18.89024,
- 47.45988
- ],
- [
- 18.90371,
- 47.45534
- ],
- [
- 18.90427,
- 47.4552
- ],
- [
- 18.90493,
- 47.45506
- ],
- [
- 18.90542,
- 47.4551
- ],
- [
- 18.90567,
- 47.45505
- ],
- [
- 18.90629,
- 47.45477
- ],
- [
- 18.90648,
- 47.45453
- ],
- [
- 18.9066,
- 47.45447
- ],
- [
- 18.90678,
- 47.45439
- ],
- [
- 18.90811,
- 47.45399
- ],
- [
- 18.90837,
- 47.45395
- ],
- [
- 18.9089,
- 47.45384
- ],
- [
- 18.90954,
- 47.4537
- ],
- [
- 18.91326,
- 47.45317
- ],
- [
- 18.91353,
- 47.4532
- ],
- [
- 18.91372,
- 47.45317
- ],
- [
- 18.91386,
- 47.45307
- ],
- [
- 18.91431,
- 47.45294
- ],
- [
- 18.91598,
- 47.453
- ],
- [
- 18.91807,
- 47.45317
- ],
- [
- 18.91846,
- 47.453
- ],
- [
- 18.91903,
- 47.45161
- ],
- [
- 18.92173,
- 47.4508
- ],
- [
- 18.92246,
- 47.45069
- ],
- [
- 18.92418,
- 47.45025
- ],
- [
- 18.92756,
- 47.44989
- ],
- [
- 18.92972,
- 47.44951
- ],
- [
- 18.93221,
- 47.44922
- ],
- [
- 18.93347,
- 47.44932
- ],
- [
- 18.93921,
- 47.44935
- ],
- [
- 18.94229,
- 47.44903
- ],
- [
- 18.94549,
- 47.4489
- ],
- [
- 18.94826,
- 47.4487
- ],
- [
- 18.95003,
- 47.44824
- ],
- [
- 18.9547,
- 47.44722
- ],
- [
- 18.95749,
- 47.44692
- ],
- [
- 18.95802,
- 47.44715
- ],
- [
- 18.95844,
- 47.44708
- ],
- [
- 18.95877,
- 47.44666
- ],
- [
- 18.96145,
- 47.4393
- ],
- [
- 18.96368,
- 47.4358
- ],
- [
- 18.96598,
- 47.43288
- ],
- [
- 18.96899,
- 47.4297
- ],
- [
- 18.9701,
- 47.42704
- ],
- [
- 18.97009,
- 47.42679
- ],
- [
- 18.96695,
- 47.4246
- ],
- [
- 18.95735,
- 47.41842
- ],
- [
- 18.95676,
- 47.4184
- ],
- [
- 18.95606,
- 47.41813
- ],
- [
- 18.95385,
- 47.41739
- ],
- [
- 18.95144,
- 47.41665
- ],
- [
- 18.95131,
- 47.41664
- ],
- [
- 18.9327,
- 47.41703
- ],
- [
- 18.93257,
- 47.41696
- ],
- [
- 18.93201,
- 47.41674
- ],
- [
- 18.93149,
- 47.4164
- ],
- [
- 18.93114,
- 47.41612
- ],
- [
- 18.92123,
- 47.41091
- ],
- [
- 18.91957,
- 47.40987
- ],
- [
- 18.91927,
- 47.40961
- ],
- [
- 18.91731,
- 47.40854
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Törökbálint",
- "url": "http://www.torokbalint.hu/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:23700",
- "EPSG:3857"
- ],
- "best": true,
- "country_code": "HU",
- "description": "5 cm resolution bald image",
- "end_date": "2018",
- "id": "Torokbalint-orthophoto-2018",
- "license_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#T.C3.B6r.C3.B6kb.C3.A1lint",
- "name": "Törökbálint orthophoto 2018",
- "privacy_policy_url": "https://www.torokbalint.hu/app/cms/TorokbalintApp/index?id=52",
- "start_date": "2018",
- "type": "wms",
- "url": "https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=TBORTO_2018&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.8577,
- 47.44553
- ],
- [
- 18.86169,
- 47.44883
- ],
- [
- 18.86491,
- 47.44704
- ],
- [
- 18.8609,
- 47.44373
- ],
- [
- 18.8577,
- 47.44553
- ]
- ],
- [
- [
- 18.80614,
- 47.59304
- ],
- [
- 18.81376,
- 47.5974
- ],
- [
- 18.82295,
- 47.59011
- ],
- [
- 18.81533,
- 47.58574
- ],
- [
- 18.80614,
- 47.59304
- ]
- ],
- [
- [
- 17.66691,
- 46.92167
- ],
- [
- 17.66369,
- 46.93033
- ],
- [
- 17.67207,
- 46.93178
- ],
- [
- 17.67529,
- 46.92312
- ],
- [
- 17.66691,
- 46.92167
- ]
- ],
- [
- [
- 17.6725,
- 46.93546
- ],
- [
- 17.67529,
- 46.92708
- ],
- [
- 17.68409,
- 46.92845
- ],
- [
- 17.68129,
- 46.93683
- ],
- [
- 17.6725,
- 46.93546
- ]
- ],
- [
- [
- 17.82155,
- 46.96075
- ],
- [
- 17.82507,
- 46.9547
- ],
- [
- 17.83347,
- 46.95701
- ],
- [
- 17.82995,
- 46.96304
- ],
- [
- 17.82155,
- 46.96075
- ]
- ],
- [
- [
- 18.62796,
- 47.19818
- ],
- [
- 18.63943,
- 47.20324
- ],
- [
- 18.64953,
- 47.1926
- ],
- [
- 18.63806,
- 47.18753
- ],
- [
- 18.62796,
- 47.19818
- ]
- ],
- [
- [
- 17.51223,
- 46.8789
- ],
- [
- 17.51406,
- 46.88166
- ],
- [
- 17.5214,
- 46.87939
- ],
- [
- 17.51957,
- 46.87662
- ],
- [
- 17.51223,
- 46.8789
- ]
- ],
- [
- [
- 17.67724,
- 46.91844
- ],
- [
- 17.68718,
- 46.92344
- ],
- [
- 17.70594,
- 46.90603
- ],
- [
- 17.69249,
- 46.89926
- ],
- [
- 17.68144,
- 46.90951
- ],
- [
- 17.68275,
- 46.90595
- ],
- [
- 17.68198,
- 46.90582
- ],
- [
- 17.68667,
- 46.89926
- ],
- [
- 17.67947,
- 46.89686
- ],
- [
- 17.67405,
- 46.90445
- ],
- [
- 17.67131,
- 46.90398
- ],
- [
- 17.66666,
- 46.91662
- ],
- [
- 17.67724,
- 46.91844
- ]
- ],
- [
- [
- 18.80776,
- 47.55615
- ],
- [
- 18.81638,
- 47.55969
- ],
- [
- 18.81351,
- 47.56305
- ],
- [
- 18.80473,
- 47.55949
- ],
- [
- 18.80776,
- 47.55615
- ]
- ],
- [
- [
- 18.98706,
- 47.46989
- ],
- [
- 18.97962,
- 47.47042
- ],
- [
- 18.98056,
- 47.47648
- ],
- [
- 18.988,
- 47.47595
- ],
- [
- 18.98706,
- 47.46989
- ]
- ],
- [
- [
- 18.98356,
- 47.41149
- ],
- [
- 19.00839,
- 47.42511
- ],
- [
- 19.01568,
- 47.41932
- ],
- [
- 18.9907,
- 47.40518
- ],
- [
- 18.98356,
- 47.41149
- ]
- ],
- [
- [
- 19.02652,
- 47.87563
- ],
- [
- 19.03163,
- 47.87613
- ],
- [
- 19.03305,
- 47.86957
- ],
- [
- 19.02793,
- 47.86907
- ],
- [
- 19.02652,
- 47.87563
- ]
- ],
- [
- [
- 18.00803,
- 46.86674
- ],
- [
- 18.01095,
- 46.86028
- ],
- [
- 18.01323,
- 46.86064
- ],
- [
- 18.01626,
- 46.8536
- ],
- [
- 18.01682,
- 46.85371
- ],
- [
- 18.01852,
- 46.84948
- ],
- [
- 18.02021,
- 46.84631
- ],
- [
- 18.02961,
- 46.84829
- ],
- [
- 18.02742,
- 46.85392
- ],
- [
- 18.03388,
- 46.85534
- ],
- [
- 18.03056,
- 46.86395
- ],
- [
- 18.03367,
- 46.86456
- ],
- [
- 18.03058,
- 46.87154
- ],
- [
- 18.00803,
- 46.86674
- ]
- ],
- [
- [
- 17.99509,
- 46.87632
- ],
- [
- 17.98585,
- 46.87595
- ],
- [
- 17.98535,
- 46.88397
- ],
- [
- 17.98599,
- 46.88412
- ],
- [
- 17.98531,
- 46.88537
- ],
- [
- 17.95829,
- 46.87876
- ],
- [
- 17.96077,
- 46.87351
- ],
- [
- 17.92868,
- 46.86631
- ],
- [
- 17.92467,
- 46.87372
- ],
- [
- 17.93136,
- 46.87535
- ],
- [
- 17.92995,
- 46.87822
- ],
- [
- 17.9553,
- 46.88415
- ],
- [
- 17.9946,
- 46.89341
- ],
- [
- 17.99786,
- 46.88671
- ],
- [
- 17.98771,
- 46.88443
- ],
- [
- 17.98774,
- 46.88411
- ],
- [
- 17.99415,
- 46.88442
- ],
- [
- 17.99509,
- 46.87632
- ]
- ],
- [
- [
- 18.86533,
- 47.42808
- ],
- [
- 18.87291,
- 47.42455
- ],
- [
- 18.87701,
- 47.42871
- ],
- [
- 18.86799,
- 47.43238
- ],
- [
- 18.86774,
- 47.43208
- ],
- [
- 18.86517,
- 47.43317
- ],
- [
- 18.86477,
- 47.4327
- ],
- [
- 18.86441,
- 47.43285
- ],
- [
- 18.86288,
- 47.43108
- ],
- [
- 18.86328,
- 47.43092
- ],
- [
- 18.86288,
- 47.43046
- ],
- [
- 18.86516,
- 47.42947
- ],
- [
- 18.86448,
- 47.42875
- ],
- [
- 18.86553,
- 47.42829
- ],
- [
- 18.86533,
- 47.42808
- ]
- ],
- [
- [
- 19.16232,
- 47.59776
- ],
- [
- 19.16893,
- 47.59033
- ],
- [
- 19.17815,
- 47.59512
- ],
- [
- 19.17291,
- 47.60068
- ],
- [
- 19.16232,
- 47.59776
- ]
- ],
- [
- [
- 18.13162,
- 47.02619
- ],
- [
- 18.14103,
- 47.02111
- ],
- [
- 18.13923,
- 47.01957
- ],
- [
- 18.15704,
- 47.01044
- ],
- [
- 18.16271,
- 47.00242
- ],
- [
- 18.16463,
- 46.99571
- ],
- [
- 18.16639,
- 46.9959
- ],
- [
- 18.16702,
- 46.99363
- ],
- [
- 18.17101,
- 46.99454
- ],
- [
- 18.1722,
- 46.99571
- ],
- [
- 18.16977,
- 47.00416
- ],
- [
- 18.17656,
- 47.00709
- ],
- [
- 18.1761,
- 47.00771
- ],
- [
- 18.17639,
- 47.00781
- ],
- [
- 18.17057,
- 47.01414
- ],
- [
- 18.1748,
- 47.01815
- ],
- [
- 18.17782,
- 47.01428
- ],
- [
- 18.18518,
- 47.01746
- ],
- [
- 18.17933,
- 47.0239
- ],
- [
- 18.17589,
- 47.02268
- ],
- [
- 18.17277,
- 47.02434
- ],
- [
- 18.17219,
- 47.02377
- ],
- [
- 18.17159,
- 47.02407
- ],
- [
- 18.16938,
- 47.0221
- ],
- [
- 18.16216,
- 47.02596
- ],
- [
- 18.16485,
- 47.02832
- ],
- [
- 18.16245,
- 47.02947
- ],
- [
- 18.16323,
- 47.03025
- ],
- [
- 18.1521,
- 47.03554
- ],
- [
- 18.15156,
- 47.03498
- ],
- [
- 18.1503,
- 47.03563
- ],
- [
- 18.14513,
- 47.03112
- ],
- [
- 18.14337,
- 47.0322
- ],
- [
- 18.1454,
- 47.03419
- ],
- [
- 18.14441,
- 47.03467
- ],
- [
- 18.14522,
- 47.03539
- ],
- [
- 18.14168,
- 47.03697
- ],
- [
- 18.13111,
- 47.02745
- ],
- [
- 18.13226,
- 47.0269
- ],
- [
- 18.13162,
- 47.02619
- ]
- ],
- [
- [
- 17.79852,
- 46.81745
- ],
- [
- 17.79178,
- 46.81585
- ],
- [
- 17.79601,
- 46.80664
- ],
- [
- 17.7948,
- 46.80598
- ],
- [
- 17.79693,
- 46.80056
- ],
- [
- 17.80109,
- 46.79993
- ],
- [
- 17.80736,
- 46.80225
- ],
- [
- 17.79852,
- 46.81745
- ]
- ],
- [
- [
- 17.7788,
- 46.81461
- ],
- [
- 17.78446,
- 46.80714
- ],
- [
- 17.79083,
- 46.80925
- ],
- [
- 17.7853,
- 46.81683
- ],
- [
- 17.7788,
- 46.81461
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "openstreetmap.hu"
- },
- "country_code": "HU",
- "id": "osm-hu-ortho",
- "max_zoom": 21,
- "name": "openstreetmap.hu orthophotos",
- "type": "tms",
- "url": "http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/openstreetmap.hu.orthophotos/mercator/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -8.83128,
- 55.39633
- ],
- [
- -7.32213,
- 55.39861
- ],
- [
- -7.28913,
- 55.43332
- ],
- [
- -7.2368,
- 55.45308
- ],
- [
- -7.18881,
- 55.4498
- ],
- [
- -7.15281,
- 55.39684
- ],
- [
- -6.90561,
- 55.3949
- ],
- [
- -6.90472,
- 55.38421
- ],
- [
- -5.84853,
- 55.3923
- ],
- [
- -5.83786,
- 55.24868
- ],
- [
- -5.36148,
- 55.2507
- ],
- [
- -5.38992,
- 53.84665
- ],
- [
- -5.87341,
- 53.84874
- ],
- [
- -5.8983,
- 52.82563
- ],
- [
- -6.01917,
- 52.82563
- ],
- [
- -6.02628,
- 51.77124
- ],
- [
- -8.11314,
- 51.77124
- ],
- [
- -8.12736,
- 51.32688
- ],
- [
- -10.60528,
- 51.30911
- ],
- [
- -10.62719,
- 52.03283
- ],
- [
- -10.64698,
- 52.03225
- ],
- [
- -10.64698,
- 52.04404
- ],
- [
- -10.62719,
- 52.04481
- ],
- [
- -10.62907,
- 52.07456
- ],
- [
- -10.66992,
- 52.07437
- ],
- [
- -10.67024,
- 52.08769
- ],
- [
- -10.63127,
- 52.08982
- ],
- [
- -10.63931,
- 52.41472
- ],
- [
- -10.31377,
- 52.41855
- ],
- [
- -10.31664,
- 53.33413
- ],
- [
- -10.36997,
- 53.33307
- ],
- [
- -10.38597,
- 54.35345
- ],
- [
- -8.81638,
- 54.35863
- ],
- [
- -8.81734,
- 54.65957
- ],
- [
- -8.84134,
- 54.66163
- ],
- [
- -8.84223,
- 54.69297
- ],
- [
- -8.83156,
- 54.71454
- ],
- [
- -8.81512,
- 54.71454
- ],
- [
- -8.83128,
- 55.39633
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "IE",
- "end_date": "1940",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "bartholomew_qi1940",
- "max_zoom": 13,
- "min_zoom": 5,
- "name": "Ireland Bartholomew Quarter-Inch 1940",
- "start_date": "1940",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/ireland/bartholomew/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -9.31139,
- 51.43828
- ],
- [
- -7.36131,
- 51.99302
- ],
- [
- -7.33934,
- 52.13149
- ],
- [
- -6.9658,
- 52.06231
- ],
- [
- -6.23796,
- 52.1534
- ],
- [
- -6.21049,
- 52.52928
- ],
- [
- -5.98253,
- 52.80079
- ],
- [
- -5.96056,
- 53.67037
- ],
- [
- -6.20775,
- 53.67851
- ],
- [
- -6.22423,
- 53.95255
- ],
- [
- -5.86442,
- 54.12513
- ],
- [
- -5.85893,
- 54.20392
- ],
- [
- -5.53483,
- 54.23122
- ],
- [
- -5.39476,
- 54.44739
- ],
- [
- -5.50188,
- 54.70052
- ],
- [
- -6.21873,
- 55.38194
- ],
- [
- -6.86418,
- 55.2162
- ],
- [
- -7.25145,
- 55.46455
- ],
- [
- -7.53435,
- 55.30853
- ],
- [
- -8.25395,
- 55.26787
- ],
- [
- -8.61101,
- 54.97259
- ],
- [
- -8.49016,
- 54.89369
- ],
- [
- -8.83897,
- 54.68306
- ],
- [
- -8.42699,
- 54.52397
- ],
- [
- -8.75108,
- 54.31302
- ],
- [
- -9.29765,
- 54.38985
- ],
- [
- -10.05296,
- 54.37866
- ],
- [
- -10.30015,
- 54.05747
- ],
- [
- -10.02275,
- 53.79386
- ],
- [
- -10.30565,
- 53.55142
- ],
- [
- -9.99803,
- 53.24354
- ],
- [
- -9.09166,
- 53.19256
- ],
- [
- -9.81676,
- 53.1102
- ],
- [
- -9.48167,
- 52.96984
- ],
- [
- -9.70415,
- 52.68107
- ],
- [
- -10.00627,
- 52.63608
- ],
- [
- -9.78929,
- 52.52426
- ],
- [
- -9.99803,
- 52.32663
- ],
- [
- -10.64348,
- 52.1753
- ],
- [
- -10.39629,
- 51.9761
- ],
- [
- -10.16832,
- 51.64668
- ],
- [
- -10.28642,
- 51.57334
- ],
- [
- -9.88542,
- 51.57163
- ],
- [
- -9.79204,
- 51.44684
- ],
- [
- -9.31139,
- 51.43828
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Glucksman Map Library, Trinity College Dublin",
- "url": "https://wiki.openstreetmap.org/wiki/Ireland/Background_Imagery#Trinity_College_Dublin"
- },
- "country_code": "IE",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ie/IrelandBritishWarOffice-GSGS3906.png",
- "id": "GSGS3906",
- "max_zoom": 18,
- "name": "Ireland British War Office 1:25k GSGS 3906",
- "type": "tms",
- "url": "https://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -10.08474,
- 51.41479
- ],
- [
- -10.09065,
- 51.50641
- ],
- [
- -10.45642,
- 51.5004
- ],
- [
- -10.50059,
- 52.3043
- ],
- [
- -10.08375,
- 52.31274
- ],
- [
- -10.0841,
- 52.34047
- ],
- [
- -10.0558,
- 52.34089
- ],
- [
- -10.07685,
- 52.76282
- ],
- [
- -9.77802,
- 52.76846
- ],
- [
- -9.78182,
- 52.85773
- ],
- [
- -9.63379,
- 52.8596
- ],
- [
- -9.64496,
- 53.12945
- ],
- [
- -10.09197,
- 53.12272
- ],
- [
- -10.10514,
- 53.39129
- ],
- [
- -10.40526,
- 53.38663
- ],
- [
- -10.45308,
- 54.1935
- ],
- [
- -10.29985,
- 54.1975
- ],
- [
- -10.31498,
- 54.46696
- ],
- [
- -8.92761,
- 54.48539
- ],
- [
- -8.93395,
- 54.75466
- ],
- [
- -8.77731,
- 54.7555
- ],
- [
- -8.78267,
- 55.02522
- ],
- [
- -8.9403,
- 55.02382
- ],
- [
- -8.94518,
- 55.29342
- ],
- [
- -7.52804,
- 55.29703
- ],
- [
- -7.5256,
- 55.3875
- ],
- [
- -7.0542,
- 55.38417
- ],
- [
- -7.05566,
- 55.29397
- ],
- [
- -6.32415,
- 55.28591
- ],
- [
- -6.32171,
- 55.32536
- ],
- [
- -6.10358,
- 55.3223
- ],
- [
- -6.10456,
- 55.28286
- ],
- [
- -5.79858,
- 55.2773
- ],
- [
- -5.81176,
- 55.00871
- ],
- [
- -5.65658,
- 55.00564
- ],
- [
- -5.67219,
- 54.7355
- ],
- [
- -5.36183,
- 54.72959
- ],
- [
- -5.39648,
- 54.19179
- ],
- [
- -5.85568,
- 54.20178
- ],
- [
- -5.92205,
- 52.85245
- ],
- [
- -6.07088,
- 52.8551
- ],
- [
- -6.10309,
- 52.13733
- ],
- [
- -6.83313,
- 52.14632
- ],
- [
- -6.83557,
- 52.05789
- ],
- [
- -7.56415,
- 52.06179
- ],
- [
- -7.5661,
- 51.79216
- ],
- [
- -8.1473,
- 51.79276
- ],
- [
- -8.14633,
- 51.70333
- ],
- [
- -8.29126,
- 51.70273
- ],
- [
- -8.2898,
- 51.52273
- ],
- [
- -9.11744,
- 51.51696
- ],
- [
- -9.11793,
- 51.46257
- ],
- [
- -9.36925,
- 51.46166
- ],
- [
- -9.36729,
- 51.42546
- ],
- [
- -10.08474,
- 51.41479
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "National Library of Scotland Historic Maps",
- "url": "https://geo.nls.uk/maps"
- },
- "country_code": "IE",
- "end_date": "1943",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png",
- "id": "GSGS4136",
- "max_zoom": 15,
- "min_zoom": 5,
- "name": "Ireland British War Office One-Inch 1941-43 GSGS 4136",
- "start_date": "1941",
- "type": "tms",
- "url": "https://geo.nls.uk/maps/ireland/gsgs4136/{zoom}/{x}/{-y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -9.83169,
- 51.4427
- ],
- [
- -9.69848,
- 51.44399
- ],
- [
- -9.69574,
- 51.45511
- ],
- [
- -9.55772,
- 51.45554
- ],
- [
- -9.55703,
- 51.44484
- ],
- [
- -9.30503,
- 51.4457
- ],
- [
- -9.30503,
- 51.45426
- ],
- [
- -8.55728,
- 51.4626
- ],
- [
- -8.55384,
- 51.51455
- ],
- [
- -8.09516,
- 51.74981
- ],
- [
- -7.81776,
- 51.74726
- ],
- [
- -7.82188,
- 51.89157
- ],
- [
- -7.63786,
- 51.90683
- ],
- [
- -7.43049,
- 52.04471
- ],
- [
- -7.24235,
- 52.07173
- ],
- [
- -6.27555,
- 52.07173
- ],
- [
- -6.2783,
- 52.19565
- ],
- [
- -6.15058,
- 52.19902
- ],
- [
- -6.12552,
- 52.73674
- ],
- [
- -6.10698,
- 52.73882
- ],
- [
- -6.09737,
- 52.79989
- ],
- [
- -6.0239,
- 52.84844
- ],
- [
- -5.97309,
- 52.92715
- ],
- [
- -5.95832,
- 52.96832
- ],
- [
- -5.94322,
- 53.22149
- ],
- [
- -6.04759,
- 53.22395
- ],
- [
- -6.04209,
- 53.33152
- ],
- [
- -5.98442,
- 53.33234
- ],
- [
- -5.98991,
- 53.63551
- ],
- [
- -6.1063,
- 53.63409
- ],
- [
- -6.10218,
- 53.72681
- ],
- [
- -6.08501,
- 53.72763
- ],
- [
- -6.07643,
- 53.964
- ],
- [
- -5.34172,
- 54.34839
- ],
- [
- -5.40901,
- 54.39718
- ],
- [
- -5.20164,
- 54.50098
- ],
- [
- -5.57106,
- 54.74428
- ],
- [
- -5.66787,
- 54.69351
- ],
- [
- -5.69843,
- 54.71454
- ],
- [
- -5.63011,
- 54.73952
- ],
- [
- -5.615,
- 55.05776
- ],
- [
- -5.86769,
- 55.06169
- ],
- [
- -5.86906,
- 55.10021
- ],
- [
- -5.94596,
- 55.101
- ],
- [
- -5.94322,
- 55.32586
- ],
- [
- -6.68479,
- 55.33679
- ],
- [
- -6.69441,
- 55.29459
- ],
- [
- -6.90246,
- 55.30007
- ],
- [
- -6.90246,
- 55.24061
- ],
- [
- -7.20527,
- 55.45923
- ],
- [
- -7.28218,
- 55.42924
- ],
- [
- -7.32887,
- 55.46001
- ],
- [
- -7.54997,
- 55.36334
- ],
- [
- -7.76695,
- 55.51759
- ],
- [
- -8.92051,
- 54.99321
- ],
- [
- -8.72001,
- 54.84483
- ],
- [
- -8.86283,
- 54.78073
- ],
- [
- -8.80653,
- 54.73556
- ],
- [
- -8.8903,
- 54.70145
- ],
- [
- -8.69255,
- 54.55279
- ],
- [
- -8.61564,
- 54.58861
- ],
- [
- -8.47145,
- 54.48344
- ],
- [
- -8.731,
- 54.47785
- ],
- [
- -8.72413,
- 54.32357
- ],
- [
- -9.05715,
- 54.31876
- ],
- [
- -9.05441,
- 54.33398
- ],
- [
- -9.69917,
- 54.33758
- ],
- [
- -9.70397,
- 54.37879
- ],
- [
- -9.9031,
- 54.37559
- ],
- [
- -9.9031,
- 54.32397
- ],
- [
- -10.45722,
- 54.31035
- ],
- [
- -10.42701,
- 53.58378
- ],
- [
- -10.31234,
- 53.58296
- ],
- [
- -10.31715,
- 53.50136
- ],
- [
- -10.30548,
- 53.3762
- ],
- [
- -10.23887,
- 53.30322
- ],
- [
- -9.97657,
- 53.12353
- ],
- [
- -9.72732,
- 53.03361
- ],
- [
- -9.60578,
- 53.01296
- ],
- [
- -9.45266,
- 53.01089
- ],
- [
- -9.53437,
- 52.91618
- ],
- [
- -9.56596,
- 52.78681
- ],
- [
- -9.95666,
- 52.57785
- ],
- [
- -9.95872,
- 52.54487
- ],
- [
- -9.74105,
- 52.55364
- ],
- [
- -9.89761,
- 52.50435
- ],
- [
- -10.00816,
- 52.44328
- ],
- [
- -10.186,
- 52.31712
- ],
- [
- -10.2835,
- 52.29067
- ],
- [
- -10.45036,
- 52.28899
- ],
- [
- -10.44555,
- 52.21416
- ],
- [
- -10.49018,
- 52.19018
- ],
- [
- -10.50323,
- 52.15438
- ],
- [
- -10.65635,
- 52.14933
- ],
- [
- -10.65635,
- 52.1409
- ],
- [
- -10.73463,
- 52.13921
- ],
- [
- -10.72502,
- 52.01049
- ],
- [
- -10.55748,
- 52.01218
- ],
- [
- -10.46409,
- 52.03922
- ],
- [
- -10.45928,
- 52.08524
- ],
- [
- -10.43869,
- 52.07173
- ],
- [
- -10.4277,
- 51.92885
- ],
- [
- -10.4998,
- 51.88522
- ],
- [
- -10.45791,
- 51.82542
- ],
- [
- -10.41328,
- 51.82414
- ],
- [
- -10.41328,
- 51.80674
- ],
- [
- -10.44281,
- 51.81693
- ],
- [
- -10.55404,
- 51.78423
- ],
- [
- -10.5767,
- 51.75449
- ],
- [
- -10.46066,
- 51.77446
- ],
- [
- -10.41465,
- 51.77319
- ],
- [
- -10.41465,
- 51.70515
- ],
- [
- -10.09948,
- 51.71281
- ],
- [
- -10.00953,
- 51.74003
- ],
- [
- -10.42701,
- 51.55427
- ],
- [
- -10.42221,
- 51.50472
- ],
- [
- -9.86946,
- 51.58799
- ],
- [
- -9.86534,
- 51.45597
- ],
- [
- -9.831,
- 51.45597
- ],
- [
- -9.83169,
- 51.4427
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "James Hardiman Library, NUIG",
- "url": "https://library.nuigalway.ie/collections/archives/depositedcollections/digitisedarchives/"
- },
- "country_code": "IE",
- "description": "Memorial Atlas of Ireland (1901) L.J. Richards",
- "end_date": "1901",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ie/IrelandCivilParishesandBaronies-MemorialAtlas.png",
- "id": "antrimnuig",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Ireland Civil Parishes and Baronies - Memorial Atlas",
- "start_date": "1901",
- "type": "tms",
- "url": "https://mapwarper.net/layers/tile/295/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -6.32987,
- 52.38838
- ],
- [
- -6.16508,
- 52.58073
- ],
- [
- -5.9893,
- 52.9811
- ],
- [
- -6.05796,
- 53.31713
- ],
- [
- -5.9838,
- 53.50704
- ],
- [
- -6.24473,
- 53.86326
- ],
- [
- -6.35459,
- 53.91182
- ],
- [
- -6.31614,
- 53.98133
- ],
- [
- -6.13487,
- 53.97002
- ],
- [
- -5.61851,
- 54.23574
- ],
- [
- -5.3878,
- 54.44708
- ],
- [
- -5.53886,
- 54.67641
- ],
- [
- -6.07444,
- 55.21277
- ],
- [
- -6.21452,
- 55.33168
- ],
- [
- -6.78306,
- 55.17828
- ],
- [
- -6.9506,
- 55.25505
- ],
- [
- -7.17582,
- 55.35355
- ],
- [
- -7.22526,
- 55.45024
- ],
- [
- -7.50816,
- 55.28791
- ],
- [
- -7.63999,
- 55.28009
- ],
- [
- -8.02451,
- 55.2206
- ],
- [
- -8.25797,
- 55.27853
- ],
- [
- -8.28269,
- 55.172
- ],
- [
- -8.58482,
- 55.01168
- ],
- [
- -8.38432,
- 54.86021
- ],
- [
- -8.69743,
- 54.78901
- ],
- [
- -8.85124,
- 54.67641
- ],
- [
- -8.46946,
- 54.57942
- ],
- [
- -8.17008,
- 54.62397
- ],
- [
- -8.33763,
- 54.4854
- ],
- [
- -8.68644,
- 54.36556
- ],
- [
- -8.62876,
- 54.27625
- ],
- [
- -9.04075,
- 54.3051
- ],
- [
- -9.13688,
- 54.23614
- ],
- [
- -9.2852,
- 54.33834
- ],
- [
- -9.90043,
- 54.32233
- ],
- [
- -10.15037,
- 54.2245
- ],
- [
- -10.27397,
- 53.94578
- ],
- [
- -9.98832,
- 53.85678
- ],
- [
- -10.3289,
- 53.60982
- ],
- [
- -10.22727,
- 53.39418
- ],
- [
- -9.78233,
- 53.21857
- ],
- [
- -8.96934,
- 53.26952
- ],
- [
- -9.04624,
- 53.1762
- ],
- [
- -9.2852,
- 53.15644
- ],
- [
- -9.40879,
- 52.99433
- ],
- [
- -9.57084,
- 52.75562
- ],
- [
- -9.97321,
- 52.54316
- ],
- [
- -9.70405,
- 52.57071
- ],
- [
- -9.69444,
- 52.4855
- ],
- [
- -9.97733,
- 52.41854
- ],
- [
- -9.87296,
- 52.33387
- ],
- [
- -9.92378,
- 52.2381
- ],
- [
- -10.06523,
- 52.34478
- ],
- [
- -10.15586,
- 52.30113
- ],
- [
- -10.65849,
- 52.07212
- ],
- [
- -9.90318,
- 52.12274
- ],
- [
- -10.45799,
- 51.88772
- ],
- [
- -10.39344,
- 51.82411
- ],
- [
- -10.56098,
- 51.76635
- ],
- [
- -10.32478,
- 51.79014
- ],
- [
- -10.25749,
- 51.70937
- ],
- [
- -9.80705,
- 51.81816
- ],
- [
- -10.28289,
- 51.57045
- ],
- [
- -9.89631,
- 51.60032
- ],
- [
- -9.51454,
- 51.70256
- ],
- [
- -9.83177,
- 51.55082
- ],
- [
- -9.83039,
- 51.43368
- ],
- [
- -9.43351,
- 51.50468
- ],
- [
- -9.53788,
- 51.41741
- ],
- [
- -8.63151,
- 51.59179
- ],
- [
- -7.70316,
- 51.95209
- ],
- [
- -7.46421,
- 52.12105
- ],
- [
- -6.33537,
- 52.17667
- ],
- [
- -6.32987,
- 52.38838
- ]
- ],
- [
- [
- -9.89082,
- 53.14368
- ],
- [
- -9.51042,
- 53.03605
- ],
- [
- -9.45274,
- 53.08557
- ],
- [
- -9.82902,
- 53.18279
- ],
- [
- -9.89082,
- 53.14368
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "IE",
- "icon": "https://www.townlands.ie/static/logo_small.png",
- "id": "osmie_tie_not_counties",
- "max_zoom": 19,
- "min_zoom": 2,
- "name": "OSMIE T.ie Land not in Counties",
- "type": "tms",
- "url": "https://www.townlands.ie/tiles/not_counties/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -13.04701,
- 64.21109
- ],
- [
- -15.16496,
- 64.22408
- ],
- [
- -15.16805,
- 64.81573
- ],
- [
- -13.04357,
- 64.8036
- ],
- [
- -13.04701,
- 64.21109
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "IS",
- "description": "Missing islets and inaccurate coast (true color)",
- "end_date": "2013-08-27",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC82160152013239LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Eastern Iceland",
- "start_date": "2013-08-27",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC82160152013239LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.22962,
- 44.53077
- ],
- [
- 11.23184,
- 44.52461
- ],
- [
- 11.24123,
- 44.52167
- ],
- [
- 11.23251,
- 44.50893
- ],
- [
- 11.23572,
- 44.50323
- ],
- [
- 11.25009,
- 44.50116
- ],
- [
- 11.24765,
- 44.49644
- ],
- [
- 11.25708,
- 44.49765
- ],
- [
- 11.25653,
- 44.49294
- ],
- [
- 11.29461,
- 44.48981
- ],
- [
- 11.29676,
- 44.4857
- ],
- [
- 11.28807,
- 44.47586
- ],
- [
- 11.29226,
- 44.4609
- ],
- [
- 11.28447,
- 44.45459
- ],
- [
- 11.28228,
- 44.42572
- ],
- [
- 11.29347,
- 44.4276
- ],
- [
- 11.29254,
- 44.43377
- ],
- [
- 11.31339,
- 44.42103
- ],
- [
- 11.32504,
- 44.42274
- ],
- [
- 11.33695,
- 44.42772
- ],
- [
- 11.33765,
- 44.43167
- ],
- [
- 11.3315,
- 44.43273
- ],
- [
- 11.33453,
- 44.43867
- ],
- [
- 11.34466,
- 44.43594
- ],
- [
- 11.34498,
- 44.44093
- ],
- [
- 11.36235,
- 44.45099
- ],
- [
- 11.37312,
- 44.44935
- ],
- [
- 11.37498,
- 44.45897
- ],
- [
- 11.39499,
- 44.46368
- ],
- [
- 11.4011,
- 44.46122
- ],
- [
- 11.39464,
- 44.46803
- ],
- [
- 11.41577,
- 44.48376
- ],
- [
- 11.42559,
- 44.4845
- ],
- [
- 11.42717,
- 44.48921
- ],
- [
- 11.41727,
- 44.4906
- ],
- [
- 11.43363,
- 44.51312
- ],
- [
- 11.42692,
- 44.51532
- ],
- [
- 11.43034,
- 44.5196
- ],
- [
- 11.42466,
- 44.51959
- ],
- [
- 11.41987,
- 44.52934
- ],
- [
- 11.4143,
- 44.52564
- ],
- [
- 11.40739,
- 44.52851
- ],
- [
- 11.41487,
- 44.53999
- ],
- [
- 11.38871,
- 44.54145
- ],
- [
- 11.39082,
- 44.54553
- ],
- [
- 11.36474,
- 44.55253
- ],
- [
- 11.36414,
- 44.55609
- ],
- [
- 11.3573,
- 44.5519
- ],
- [
- 11.34375,
- 44.55333
- ],
- [
- 11.33589,
- 44.54299
- ],
- [
- 11.33145,
- 44.54734
- ],
- [
- 11.31349,
- 44.54722
- ],
- [
- 11.30929,
- 44.5295
- ],
- [
- 11.29104,
- 44.53581
- ],
- [
- 11.28179,
- 44.54851
- ],
- [
- 11.26911,
- 44.53248
- ],
- [
- 11.25118,
- 44.55578
- ],
- [
- 11.24499,
- 44.55569
- ],
- [
- 11.22962,
- 44.53077
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Comune di Bologna cc-by 4.0 ODbL compliant",
- "url": "http://dati.comune.bologna.it/node/3449"
- },
- "best": true,
- "country_code": "IT",
- "end_date": "2017",
- "id": "Bologna-Orthophoto-2017",
- "license_url": "http://dati.comune.bologna.it/node/3449",
- "max_zoom": 19,
- "name": "Bologna ortofoto 2017",
- "start_date": "2017",
- "type": "tms",
- "url": "https://sitmappe.comune.bologna.it/tms/tileserver/Ortofoto2017/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.4816,
- 45.28938
- ],
- [
- 8.63085,
- 45.01372
- ],
- [
- 8.78009,
- 44.98189
- ],
- [
- 8.86775,
- 45.02712
- ],
- [
- 9.07148,
- 44.80063
- ],
- [
- 9.14966,
- 44.79055
- ],
- [
- 9.19467,
- 44.67106
- ],
- [
- 9.31549,
- 44.65758
- ],
- [
- 9.36997,
- 44.698
- ],
- [
- 9.37945,
- 44.82752
- ],
- [
- 9.33207,
- 44.91483
- ],
- [
- 9.41025,
- 45.03716
- ],
- [
- 9.78692,
- 45.04386
- ],
- [
- 9.78692,
- 45.00032
- ],
- [
- 9.93853,
- 45.002
- ],
- [
- 9.93379,
- 45.08903
- ],
- [
- 10.00013,
- 45.09071
- ],
- [
- 10.00013,
- 44.99697
- ],
- [
- 10.20149,
- 45.002
- ],
- [
- 10.20149,
- 44.95004
- ],
- [
- 10.40523,
- 44.9534
- ],
- [
- 10.40523,
- 44.90476
- ],
- [
- 10.49288,
- 44.90308
- ],
- [
- 10.49288,
- 44.8628
- ],
- [
- 10.6516,
- 44.85776
- ],
- [
- 10.64686,
- 44.90308
- ],
- [
- 11.35282,
- 44.89469
- ],
- [
- 11.35519,
- 44.93663
- ],
- [
- 11.45706,
- 44.93328
- ],
- [
- 11.44758,
- 44.97351
- ],
- [
- 11.3623,
- 45.00032
- ],
- [
- 11.35282,
- 45.09238
- ],
- [
- 11.25806,
- 45.09572
- ],
- [
- 11.25806,
- 45.13752
- ],
- [
- 11.16094,
- 45.14253
- ],
- [
- 11.16094,
- 45.18262
- ],
- [
- 11.05196,
- 45.19097
- ],
- [
- 11.05196,
- 45.23436
- ],
- [
- 10.9572,
- 45.23269
- ],
- [
- 10.9572,
- 45.28605
- ],
- [
- 10.8577,
- 45.28438
- ],
- [
- 10.85534,
- 45.32271
- ],
- [
- 10.74636,
- 45.32937
- ],
- [
- 10.75347,
- 45.47408
- ],
- [
- 10.64686,
- 45.48073
- ],
- [
- 10.60301,
- 45.51074
- ],
- [
- 10.57636,
- 45.47379
- ],
- [
- 10.53549,
- 45.50036
- ],
- [
- 10.59116,
- 45.53148
- ],
- [
- 10.61666,
- 45.61304
- ],
- [
- 10.87429,
- 45.84001
- ],
- [
- 10.82217,
- 45.85982
- ],
- [
- 10.67529,
- 45.85817
- ],
- [
- 10.57342,
- 45.8103
- ],
- [
- 10.58624,
- 46.00773
- ],
- [
- 10.5016,
- 46.01596
- ],
- [
- 10.59325,
- 46.11529
- ],
- [
- 10.60896,
- 46.35583
- ],
- [
- 10.65634,
- 46.38688
- ],
- [
- 10.64686,
- 46.46037
- ],
- [
- 10.4147,
- 46.57285
- ],
- [
- 10.32705,
- 46.56797
- ],
- [
- 10.25124,
- 46.65422
- ],
- [
- 10.07357,
- 46.62494
- ],
- [
- 10.02382,
- 46.53212
- ],
- [
- 10.02855,
- 46.43588
- ],
- [
- 10.07357,
- 46.39832
- ],
- [
- 10.12095,
- 46.39669
- ],
- [
- 10.0783,
- 46.32802
- ],
- [
- 10.14464,
- 46.26582
- ],
- [
- 10.10436,
- 46.24781
- ],
- [
- 9.97407,
- 46.40812
- ],
- [
- 9.71111,
- 46.3689
- ],
- [
- 9.68742,
- 46.32312
- ],
- [
- 9.61872,
- 46.30675
- ],
- [
- 9.55712,
- 46.32475
- ],
- [
- 9.50264,
- 46.39015
- ],
- [
- 9.47895,
- 46.5256
- ],
- [
- 9.25626,
- 46.51582
- ],
- [
- 9.22546,
- 46.44078
- ],
- [
- 9.27284,
- 46.34438
- ],
- [
- 9.17098,
- 46.19044
- ],
- [
- 9.04305,
- 46.12808
- ],
- [
- 9.062,
- 46.09195
- ],
- [
- 8.97435,
- 46.04593
- ],
- [
- 8.98856,
- 46.00152
- ],
- [
- 8.93882,
- 45.97354
- ],
- [
- 9.04068,
- 45.8961
- ],
- [
- 9.01936,
- 45.84827
- ],
- [
- 8.84879,
- 46.0081
- ],
- [
- 8.89854,
- 46.07059
- ],
- [
- 8.8251,
- 46.11823
- ],
- [
- 8.70902,
- 46.11659
- ],
- [
- 8.67823,
- 46.07552
- ],
- [
- 8.7185,
- 46.01468
- ],
- [
- 8.55504,
- 45.90434
- ],
- [
- 8.59768,
- 45.83836
- ],
- [
- 8.53372,
- 45.79378
- ],
- [
- 8.6877,
- 45.49235
- ],
- [
- 8.78009,
- 45.41591
- ],
- [
- 8.68533,
- 45.37931
- ],
- [
- 8.71139,
- 45.34103
- ],
- [
- 8.69481,
- 45.32104
- ],
- [
- 8.62848,
- 45.37765
- ],
- [
- 8.5124,
- 45.35768
- ],
- [
- 8.4816,
- 45.28938
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Regione Lombardia - Infrastruttura per l'informazione territoriale",
- "url": "https://www.dati.gov.it/content/italian-open-data-license-v20"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:32632",
- "EPSG:4326"
- ],
- "category": "map",
- "country_code": "IT",
- "id": "Lombardia-Italy-CTR",
- "license_url": "http://www.geoportale.regione.lombardia.it/en/metadati?p_p_id=PublishedMetadata_WAR_geoportalemetadataportlet&p_p_lifecycle=0&p_p_state=maximized&p_p_mode=view&_PublishedMetadata_WAR_geoportalemetadataportlet_view=editPublishedMetadata&_PublishedMetadata_WAR_geoportalemetadataportlet_uuid={4314F5A6-7099-4DFB-BCE2-F71001E1C615}&_PublishedMetadata_WAR_geoportalemetadataportlet_editType=view&_PublishedMetadata_WAR_geoportalemetadataportlet_fromAsset=true&rid=local",
- "name": "Lombardia - Italy (C.T.R. 10000 - 1980-94)",
- "privacy_policy_url": "http://www.geoportale.regione.lombardia.it/en/privacy",
- "type": "wms",
- "url": "https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?LAYERS=C.T.R. 10000 - 1980-94&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.4816,
- 45.28938
- ],
- [
- 8.63085,
- 45.01372
- ],
- [
- 8.78009,
- 44.98189
- ],
- [
- 8.86775,
- 45.02712
- ],
- [
- 9.07148,
- 44.80063
- ],
- [
- 9.14966,
- 44.79055
- ],
- [
- 9.19467,
- 44.67106
- ],
- [
- 9.31549,
- 44.65758
- ],
- [
- 9.36997,
- 44.698
- ],
- [
- 9.37945,
- 44.82752
- ],
- [
- 9.33207,
- 44.91483
- ],
- [
- 9.41025,
- 45.03716
- ],
- [
- 9.78692,
- 45.04386
- ],
- [
- 9.78692,
- 45.00032
- ],
- [
- 9.93853,
- 45.002
- ],
- [
- 9.93379,
- 45.08903
- ],
- [
- 10.00013,
- 45.09071
- ],
- [
- 10.00013,
- 44.99697
- ],
- [
- 10.20149,
- 45.002
- ],
- [
- 10.20149,
- 44.95004
- ],
- [
- 10.40523,
- 44.9534
- ],
- [
- 10.40523,
- 44.90476
- ],
- [
- 10.49288,
- 44.90308
- ],
- [
- 10.49288,
- 44.8628
- ],
- [
- 10.6516,
- 44.85776
- ],
- [
- 10.64686,
- 44.90308
- ],
- [
- 11.35282,
- 44.89469
- ],
- [
- 11.35519,
- 44.93663
- ],
- [
- 11.45706,
- 44.93328
- ],
- [
- 11.44758,
- 44.97351
- ],
- [
- 11.3623,
- 45.00032
- ],
- [
- 11.35282,
- 45.09238
- ],
- [
- 11.25806,
- 45.09572
- ],
- [
- 11.25806,
- 45.13752
- ],
- [
- 11.16094,
- 45.14253
- ],
- [
- 11.16094,
- 45.18262
- ],
- [
- 11.05196,
- 45.19097
- ],
- [
- 11.05196,
- 45.23436
- ],
- [
- 10.9572,
- 45.23269
- ],
- [
- 10.9572,
- 45.28605
- ],
- [
- 10.8577,
- 45.28438
- ],
- [
- 10.85534,
- 45.32271
- ],
- [
- 10.74636,
- 45.32937
- ],
- [
- 10.75347,
- 45.47408
- ],
- [
- 10.64686,
- 45.48073
- ],
- [
- 10.60301,
- 45.51074
- ],
- [
- 10.57636,
- 45.47379
- ],
- [
- 10.53549,
- 45.50036
- ],
- [
- 10.59116,
- 45.53148
- ],
- [
- 10.61666,
- 45.61304
- ],
- [
- 10.87429,
- 45.84001
- ],
- [
- 10.82217,
- 45.85982
- ],
- [
- 10.67529,
- 45.85817
- ],
- [
- 10.57342,
- 45.8103
- ],
- [
- 10.58624,
- 46.00773
- ],
- [
- 10.5016,
- 46.01596
- ],
- [
- 10.59325,
- 46.11529
- ],
- [
- 10.60896,
- 46.35583
- ],
- [
- 10.65634,
- 46.38688
- ],
- [
- 10.64686,
- 46.46037
- ],
- [
- 10.4147,
- 46.57285
- ],
- [
- 10.32705,
- 46.56797
- ],
- [
- 10.25124,
- 46.65422
- ],
- [
- 10.07357,
- 46.62494
- ],
- [
- 10.02382,
- 46.53212
- ],
- [
- 10.02855,
- 46.43588
- ],
- [
- 10.07357,
- 46.39832
- ],
- [
- 10.12095,
- 46.39669
- ],
- [
- 10.0783,
- 46.32802
- ],
- [
- 10.14464,
- 46.26582
- ],
- [
- 10.10436,
- 46.24781
- ],
- [
- 9.97407,
- 46.40812
- ],
- [
- 9.71111,
- 46.3689
- ],
- [
- 9.68742,
- 46.32312
- ],
- [
- 9.61872,
- 46.30675
- ],
- [
- 9.55712,
- 46.32475
- ],
- [
- 9.50264,
- 46.39015
- ],
- [
- 9.47895,
- 46.5256
- ],
- [
- 9.25626,
- 46.51582
- ],
- [
- 9.22546,
- 46.44078
- ],
- [
- 9.27284,
- 46.34438
- ],
- [
- 9.17098,
- 46.19044
- ],
- [
- 9.04305,
- 46.12808
- ],
- [
- 9.062,
- 46.09195
- ],
- [
- 8.97435,
- 46.04593
- ],
- [
- 8.98856,
- 46.00152
- ],
- [
- 8.93882,
- 45.97354
- ],
- [
- 9.04068,
- 45.8961
- ],
- [
- 9.01936,
- 45.84827
- ],
- [
- 8.84879,
- 46.0081
- ],
- [
- 8.89854,
- 46.07059
- ],
- [
- 8.8251,
- 46.11823
- ],
- [
- 8.70902,
- 46.11659
- ],
- [
- 8.67823,
- 46.07552
- ],
- [
- 8.7185,
- 46.01468
- ],
- [
- 8.55504,
- 45.90434
- ],
- [
- 8.59768,
- 45.83836
- ],
- [
- 8.53372,
- 45.79378
- ],
- [
- 8.6877,
- 45.49235
- ],
- [
- 8.78009,
- 45.41591
- ],
- [
- 8.68533,
- 45.37931
- ],
- [
- 8.71139,
- 45.34103
- ],
- [
- 8.69481,
- 45.32104
- ],
- [
- 8.62848,
- 45.37765
- ],
- [
- 8.5124,
- 45.35768
- ],
- [
- 8.4816,
- 45.28938
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "CTR DBT 10000 Regione Lombardia",
- "url": "https://www.dati.gov.it/content/italian-open-data-license-v20"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:32632",
- "EPSG:4326"
- ],
- "country_code": "IT",
- "id": "Lombardia-Italy-CTR-DBT",
- "name": "Lombardia - Italy (CTR DBT)",
- "type": "wms",
- "url": "https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sfondo%20C.T.R.%2010000&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.54795,
- 43.73118
- ],
- [
- 8.10697,
- 43.86701
- ],
- [
- 8.73593,
- 44.38944
- ],
- [
- 10.18338,
- 43.85116
- ],
- [
- 9.55016,
- 43.13605
- ],
- [
- 10.27725,
- 42.27515
- ],
- [
- 11.69748,
- 42.08118
- ],
- [
- 12.90059,
- 40.84897
- ],
- [
- 14.97466,
- 40.20869
- ],
- [
- 16.04773,
- 38.8953
- ],
- [
- 13.1086,
- 38.74113
- ],
- [
- 11.77717,
- 37.93605
- ],
- [
- 14.40624,
- 36.74299
- ],
- [
- 15.13467,
- 36.59364
- ],
- [
- 15.42867,
- 37.027
- ],
- [
- 15.21993,
- 37.43376
- ],
- [
- 15.4836,
- 37.92936
- ],
- [
- 16.01644,
- 37.8036
- ],
- [
- 17.21669,
- 38.87425
- ],
- [
- 17.21669,
- 39.40468
- ],
- [
- 16.55477,
- 39.78775
- ],
- [
- 17.05464,
- 40.45144
- ],
- [
- 18.32906,
- 39.70539
- ],
- [
- 18.68773,
- 40.0587
- ],
- [
- 18.04964,
- 40.67064
- ],
- [
- 16.00545,
- 41.52122
- ],
- [
- 16.38448,
- 41.85964
- ],
- [
- 15.51837,
- 42.1537
- ],
- [
- 14.57997,
- 42.2461
- ],
- [
- 13.56099,
- 43.65128
- ],
- [
- 12.57889,
- 44.0867
- ],
- [
- 12.28795,
- 44.62204
- ],
- [
- 12.56398,
- 44.97092
- ],
- [
- 12.34151,
- 45.17458
- ],
- [
- 12.41696,
- 45.40557
- ],
- [
- 13.09252,
- 45.62826
- ],
- [
- 13.69549,
- 45.70806
- ],
- [
- 13.78445,
- 45.5825
- ],
- [
- 13.9191,
- 45.6322
- ],
- [
- 13.8235,
- 45.7176
- ],
- [
- 13.59784,
- 45.8072
- ],
- [
- 13.64307,
- 45.98326
- ],
- [
- 13.52963,
- 45.96588
- ],
- [
- 13.47474,
- 46.00546
- ],
- [
- 13.66472,
- 46.17392
- ],
- [
- 13.47587,
- 46.22725
- ],
- [
- 13.42218,
- 46.20758
- ],
- [
- 13.37671,
- 46.29668
- ],
- [
- 13.59777,
- 46.44137
- ],
- [
- 13.68684,
- 46.43881
- ],
- [
- 13.7148,
- 46.5222
- ],
- [
- 12.9151,
- 46.60953
- ],
- [
- 12.38708,
- 46.71529
- ],
- [
- 12.27591,
- 46.88651
- ],
- [
- 12.17486,
- 46.90895
- ],
- [
- 12.11675,
- 47.01241
- ],
- [
- 12.21781,
- 47.03996
- ],
- [
- 12.19254,
- 47.09331
- ],
- [
- 11.74789,
- 46.98484
- ],
- [
- 11.33355,
- 46.99862
- ],
- [
- 11.10618,
- 46.92966
- ],
- [
- 11.00764,
- 46.76896
- ],
- [
- 10.72974,
- 46.78972
- ],
- [
- 10.75753,
- 46.82258
- ],
- [
- 10.66405,
- 46.87614
- ],
- [
- 10.47197,
- 46.85698
- ],
- [
- 10.38659,
- 46.67847
- ],
- [
- 10.49375,
- 46.62049
- ],
- [
- 10.46136,
- 46.53164
- ],
- [
- 10.25309,
- 46.57432
- ],
- [
- 10.23674,
- 46.63484
- ],
- [
- 10.10307,
- 46.61003
- ],
- [
- 10.03715,
- 46.44479
- ],
- [
- 10.165,
- 46.41051
- ],
- [
- 10.10506,
- 46.3372
- ],
- [
- 10.17862,
- 46.25626
- ],
- [
- 10.07055,
- 46.21668
- ],
- [
- 9.95249,
- 46.38045
- ],
- [
- 9.73086,
- 46.35071
- ],
- [
- 9.71273,
- 46.29266
- ],
- [
- 9.57015,
- 46.2958
- ],
- [
- 9.46117,
- 46.37481
- ],
- [
- 9.45936,
- 46.50873
- ],
- [
- 9.40487,
- 46.46621
- ],
- [
- 9.36128,
- 46.5081
- ],
- [
- 9.28136,
- 46.49685
- ],
- [
- 9.24503,
- 46.23616
- ],
- [
- 8.95601,
- 45.96503
- ],
- [
- 9.09065,
- 45.89906
- ],
- [
- 9.0298,
- 45.82127
- ],
- [
- 8.90992,
- 45.8333
- ],
- [
- 8.9408,
- 45.86682
- ],
- [
- 8.88904,
- 45.95465
- ],
- [
- 8.78551,
- 45.99063
- ],
- [
- 8.85617,
- 46.0748
- ],
- [
- 8.62242,
- 46.12112
- ],
- [
- 8.45032,
- 46.26869
- ],
- [
- 8.42464,
- 46.46367
- ],
- [
- 8.08814,
- 46.26692
- ],
- [
- 8.15493,
- 46.1834
- ],
- [
- 8.11383,
- 46.11577
- ],
- [
- 8.02906,
- 46.10331
- ],
- [
- 7.98881,
- 45.99867
- ],
- [
- 7.9049,
- 45.99945
- ],
- [
- 7.85949,
- 45.91485
- ],
- [
- 7.56343,
- 45.97421
- ],
- [
- 7.10685,
- 45.85653
- ],
- [
- 7.04151,
- 45.92435
- ],
- [
- 6.95315,
- 45.85163
- ],
- [
- 6.80785,
- 45.83265
- ],
- [
- 6.80785,
- 45.71864
- ],
- [
- 6.98948,
- 45.63869
- ],
- [
- 7.00037,
- 45.509
- ],
- [
- 7.18019,
- 45.40071
- ],
- [
- 7.10572,
- 45.32924
- ],
- [
- 7.13115,
- 45.25386
- ],
- [
- 6.85144,
- 45.13226
- ],
- [
- 6.7697,
- 45.16044
- ],
- [
- 6.62803,
- 45.11175
- ],
- [
- 6.66981,
- 45.02324
- ],
- [
- 6.74791,
- 45.01939
- ],
- [
- 6.75518,
- 44.89915
- ],
- [
- 7.02217,
- 44.82519
- ],
- [
- 7.07484,
- 44.68073
- ],
- [
- 6.95133,
- 44.66264
- ],
- [
- 6.85507,
- 44.53072
- ],
- [
- 6.94504,
- 44.43112
- ],
- [
- 6.88784,
- 44.42043
- ],
- [
- 6.89171,
- 44.36637
- ],
- [
- 7.00764,
- 44.23736
- ],
- [
- 7.36364,
- 44.11882
- ],
- [
- 7.68694,
- 44.17487
- ],
- [
- 7.72508,
- 44.07578
- ],
- [
- 7.49355,
- 43.86551
- ],
- [
- 7.54795,
- 43.73118
- ]
- ],
- [
- [
- 8.17134,
- 39.14848
- ],
- [
- 8.62453,
- 38.75119
- ],
- [
- 9.09831,
- 39.03764
- ],
- [
- 9.03102,
- 39.13144
- ],
- [
- 9.26585,
- 39.18575
- ],
- [
- 9.64076,
- 39.0227
- ],
- [
- 9.89894,
- 40.67991
- ],
- [
- 9.50068,
- 41.39257
- ],
- [
- 8.30317,
- 40.91071
- ],
- [
- 8.41304,
- 41.16139
- ],
- [
- 8.21254,
- 41.13864
- ],
- [
- 8.07521,
- 40.59862
- ],
- [
- 8.36154,
- 40.35
- ],
- [
- 8.27914,
- 39.98585
- ],
- [
- 8.38283,
- 39.6536
- ],
- [
- 8.17134,
- 39.14848
- ]
- ],
- [
- [
- 12.51489,
- 35.53423
- ],
- [
- 12.64054,
- 35.5306
- ],
- [
- 12.63861,
- 35.48641
- ],
- [
- 12.51296,
- 35.49005
- ],
- [
- 12.51489,
- 35.53423
- ]
- ],
- [
- [
- 11.91218,
- 36.85688
- ],
- [
- 12.08179,
- 36.85523
- ],
- [
- 12.07958,
- 36.70974
- ],
- [
- 11.90998,
- 36.71139
- ],
- [
- 11.91218,
- 36.85688
- ]
- ],
- [
- [
- 12.84019,
- 35.88131
- ],
- [
- 12.89186,
- 35.88145
- ],
- [
- 12.89198,
- 35.85003
- ],
- [
- 12.84031,
- 35.84989
- ],
- [
- 12.84019,
- 35.88131
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale",
- "url": "http://www.sitr.regione.sicilia.it"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:3003",
- "EPSG:3004",
- "EPSG:3035",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4265",
- "EPSG:4326",
- "EPSG:4806",
- "EPSG:900913"
- ],
- "category": "historicphoto",
- "country_code": "IT",
- "end_date": "2006",
- "id": "PCN-Italy-2006",
- "license_url": "https://wiki.openstreetmap.org/wiki/Italy/PCN",
- "name": "PCN 2006 - Italy",
- "privacy_policy_url": "http://www.pcn.minambiente.it/mattm/en/legal-notice/",
- "start_date": "2006",
- "type": "wms",
- "url": "http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_06.map&LAYERS=OI.ORTOIMMAGINI.2006.33,OI.ORTOIMMAGINI.2006.32&STYLES=,&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.33149,
- 41.64637
- ],
- [
- 12.41178,
- 41.64791
- ],
- [
- 12.41499,
- 41.54635
- ],
- [
- 12.49574,
- 41.54789
- ],
- [
- 12.4985,
- 41.49619
- ],
- [
- 12.57948,
- 41.49843
- ],
- [
- 12.58062,
- 41.42932
- ],
- [
- 12.60632,
- 41.4288
- ],
- [
- 12.60746,
- 41.39663
- ],
- [
- 12.8293,
- 41.39818
- ],
- [
- 12.83159,
- 41.34688
- ],
- [
- 12.9128,
- 41.34843
- ],
- [
- 12.9151,
- 41.29726
- ],
- [
- 12.99585,
- 41.2983
- ],
- [
- 12.99791,
- 41.19636
- ],
- [
- 13.1679,
- 41.19808
- ],
- [
- 13.16721,
- 41.24692
- ],
- [
- 13.41337,
- 41.24829
- ],
- [
- 13.4152,
- 41.19705
- ],
- [
- 13.8341,
- 41.19808
- ],
- [
- 13.83341,
- 41.2476
- ],
- [
- 13.91737,
- 41.24847
- ],
- [
- 13.91668,
- 41.39749
- ],
- [
- 14.0011,
- 41.39784
- ],
- [
- 13.99996,
- 41.49774
- ],
- [
- 14.08415,
- 41.49826
- ],
- [
- 14.08346,
- 41.65014
- ],
- [
- 14.00087,
- 41.6498
- ],
- [
- 13.99973,
- 41.75051
- ],
- [
- 13.83433,
- 41.74965
- ],
- [
- 13.83364,
- 41.80047
- ],
- [
- 13.75151,
- 41.79978
- ],
- [
- 13.7499,
- 41.84987
- ],
- [
- 13.41841,
- 41.8497
- ],
- [
- 13.41681,
- 41.95027
- ],
- [
- 13.33445,
- 41.94959
- ],
- [
- 13.3333,
- 42.00041
- ],
- [
- 13.25141,
- 41.99973
- ],
- [
- 13.25003,
- 42.05051
- ],
- [
- 13.08509,
- 42.04966
- ],
- [
- 13.08394,
- 42.097
- ],
- [
- 13.33399,
- 42.09819
- ],
- [
- 13.33376,
- 42.1472
- ],
- [
- 13.41772,
- 42.14822
- ],
- [
- 13.41635,
- 42.25052
- ],
- [
- 13.33399,
- 42.24984
- ],
- [
- 13.33353,
- 42.30094
- ],
- [
- 13.25141,
- 42.29992
- ],
- [
- 13.25003,
- 42.54699
- ],
- [
- 13.41795,
- 42.54817
- ],
- [
- 13.41589,
- 42.75065
- ],
- [
- 13.33468,
- 42.74947
- ],
- [
- 13.33307,
- 42.90056
- ],
- [
- 13.16836,
- 42.89938
- ],
- [
- 13.16721,
- 42.95079
- ],
- [
- 12.96419,
- 42.95012
- ],
- [
- 12.96258,
- 43.0003
- ],
- [
- 12.91877,
- 42.9998
- ],
- [
- 12.91601,
- 43.25078
- ],
- [
- 12.83526,
- 43.24994
- ],
- [
- 12.83228,
- 43.50107
- ],
- [
- 12.66321,
- 43.4994
- ],
- [
- 12.66482,
- 43.45112
- ],
- [
- 12.58567,
- 43.44996
- ],
- [
- 12.58246,
- 43.5508
- ],
- [
- 12.50171,
- 43.5498
- ],
- [
- 12.49987,
- 43.65131
- ],
- [
- 12.16242,
- 43.64915
- ],
- [
- 12.16494,
- 43.60132
- ],
- [
- 12.07891,
- 43.5995
- ],
- [
- 12.0819,
- 43.45196
- ],
- [
- 11.99541,
- 43.44913
- ],
- [
- 11.99862,
- 43.34661
- ],
- [
- 12.07891,
- 43.34795
- ],
- [
- 12.08075,
- 43.30189
- ],
- [
- 11.9961,
- 43.29955
- ],
- [
- 11.99862,
- 43.20214
- ],
- [
- 11.91237,
- 43.19929
- ],
- [
- 11.91466,
- 43.15212
- ],
- [
- 11.83207,
- 43.14944
- ],
- [
- 11.8323,
- 43.09653
- ],
- [
- 11.91099,
- 43.09837
- ],
- [
- 11.91466,
- 42.90191
- ],
- [
- 11.82909,
- 42.89922
- ],
- [
- 11.83139,
- 42.85231
- ],
- [
- 11.74582,
- 42.84945
- ],
- [
- 11.74811,
- 42.65236
- ],
- [
- 11.6731,
- 42.64966
- ],
- [
- 11.67493,
- 42.6105
- ],
- [
- 11.49485,
- 42.59936
- ],
- [
- 11.49852,
- 42.49593
- ],
- [
- 11.57812,
- 42.49796
- ],
- [
- 11.58156,
- 42.45244
- ],
- [
- 11.41226,
- 42.44872
- ],
- [
- 11.41524,
- 42.34656
- ],
- [
- 11.49599,
- 42.34792
- ],
- [
- 11.49921,
- 42.29636
- ],
- [
- 11.57835,
- 42.29822
- ],
- [
- 11.58225,
- 42.24628
- ],
- [
- 11.66185,
- 42.24832
- ],
- [
- 11.66621,
- 42.09649
- ],
- [
- 11.74536,
- 42.09819
- ],
- [
- 11.74903,
- 41.99666
- ],
- [
- 11.91443,
- 41.99922
- ],
- [
- 11.91535,
- 41.98626
- ],
- [
- 11.99403,
- 41.98745
- ],
- [
- 11.99862,
- 41.89685
- ],
- [
- 12.07868,
- 41.89907
- ],
- [
- 12.08144,
- 41.84594
- ],
- [
- 12.16311,
- 41.84799
- ],
- [
- 12.16563,
- 41.6964
- ],
- [
- 12.3292,
- 41.69863
- ],
- [
- 12.33149,
- 41.64637
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale",
- "url": "http://www.sitr.regione.sicilia.it"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:3003",
- "EPSG:3004",
- "EPSG:3035",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4265",
- "EPSG:4326",
- "EPSG:4806",
- "EPSG:900913"
- ],
- "category": "historicphoto",
- "country_code": "IT",
- "end_date": "2008",
- "id": "PCN-Lazio_Umbria-2008",
- "license_url": "https://wiki.openstreetmap.org/wiki/Italy/PCN",
- "name": "PCN 2008 - IT Lazio+Umbria",
- "privacy_policy_url": "http://www.pcn.minambiente.it/mattm/en/legal-notice/",
- "start_date": "2008",
- "type": "wms",
- "url": "http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_08.map&LAYERS=OI.ORTOIMMAGINI.2008.33&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.54795,
- 43.73118
- ],
- [
- 8.10697,
- 43.86701
- ],
- [
- 8.73593,
- 44.38944
- ],
- [
- 10.18338,
- 43.85116
- ],
- [
- 9.55016,
- 43.13605
- ],
- [
- 10.27725,
- 42.27515
- ],
- [
- 11.69748,
- 42.08118
- ],
- [
- 12.90059,
- 40.84897
- ],
- [
- 14.97466,
- 40.20869
- ],
- [
- 16.04773,
- 38.8953
- ],
- [
- 13.1086,
- 38.74113
- ],
- [
- 11.77717,
- 37.93605
- ],
- [
- 14.40624,
- 36.74299
- ],
- [
- 15.13467,
- 36.59364
- ],
- [
- 15.42867,
- 37.027
- ],
- [
- 15.21993,
- 37.43376
- ],
- [
- 15.4836,
- 37.92936
- ],
- [
- 16.01644,
- 37.8036
- ],
- [
- 17.21669,
- 38.87425
- ],
- [
- 17.21669,
- 39.40468
- ],
- [
- 16.55477,
- 39.78775
- ],
- [
- 17.05464,
- 40.45144
- ],
- [
- 18.32906,
- 39.70539
- ],
- [
- 18.68773,
- 40.0587
- ],
- [
- 18.04964,
- 40.67064
- ],
- [
- 16.00545,
- 41.52122
- ],
- [
- 16.38448,
- 41.85964
- ],
- [
- 15.51837,
- 42.1537
- ],
- [
- 14.57997,
- 42.2461
- ],
- [
- 13.56099,
- 43.65128
- ],
- [
- 12.57889,
- 44.0867
- ],
- [
- 12.28795,
- 44.62204
- ],
- [
- 12.56398,
- 44.97092
- ],
- [
- 12.34151,
- 45.17458
- ],
- [
- 12.41696,
- 45.40557
- ],
- [
- 13.09252,
- 45.62826
- ],
- [
- 13.69549,
- 45.70806
- ],
- [
- 13.78445,
- 45.5825
- ],
- [
- 13.9191,
- 45.6322
- ],
- [
- 13.8235,
- 45.7176
- ],
- [
- 13.59784,
- 45.8072
- ],
- [
- 13.64307,
- 45.98326
- ],
- [
- 13.52963,
- 45.96588
- ],
- [
- 13.47474,
- 46.00546
- ],
- [
- 13.66472,
- 46.17392
- ],
- [
- 13.47587,
- 46.22725
- ],
- [
- 13.42218,
- 46.20758
- ],
- [
- 13.37671,
- 46.29668
- ],
- [
- 13.59777,
- 46.44137
- ],
- [
- 13.68684,
- 46.43881
- ],
- [
- 13.7148,
- 46.5222
- ],
- [
- 12.9151,
- 46.60953
- ],
- [
- 12.38708,
- 46.71529
- ],
- [
- 12.27591,
- 46.88651
- ],
- [
- 12.17486,
- 46.90895
- ],
- [
- 12.11675,
- 47.01241
- ],
- [
- 12.21781,
- 47.03996
- ],
- [
- 12.19254,
- 47.09331
- ],
- [
- 11.74789,
- 46.98484
- ],
- [
- 11.33355,
- 46.99862
- ],
- [
- 11.10618,
- 46.92966
- ],
- [
- 11.00764,
- 46.76896
- ],
- [
- 10.72974,
- 46.78972
- ],
- [
- 10.75753,
- 46.82258
- ],
- [
- 10.66405,
- 46.87614
- ],
- [
- 10.47197,
- 46.85698
- ],
- [
- 10.38659,
- 46.67847
- ],
- [
- 10.49375,
- 46.62049
- ],
- [
- 10.46136,
- 46.53164
- ],
- [
- 10.25309,
- 46.57432
- ],
- [
- 10.23674,
- 46.63484
- ],
- [
- 10.10307,
- 46.61003
- ],
- [
- 10.03715,
- 46.44479
- ],
- [
- 10.165,
- 46.41051
- ],
- [
- 10.10506,
- 46.3372
- ],
- [
- 10.17862,
- 46.25626
- ],
- [
- 10.07055,
- 46.21668
- ],
- [
- 9.95249,
- 46.38045
- ],
- [
- 9.73086,
- 46.35071
- ],
- [
- 9.71273,
- 46.29266
- ],
- [
- 9.57015,
- 46.2958
- ],
- [
- 9.46117,
- 46.37481
- ],
- [
- 9.45936,
- 46.50873
- ],
- [
- 9.40487,
- 46.46621
- ],
- [
- 9.36128,
- 46.5081
- ],
- [
- 9.28136,
- 46.49685
- ],
- [
- 9.24503,
- 46.23616
- ],
- [
- 8.95601,
- 45.96503
- ],
- [
- 9.09065,
- 45.89906
- ],
- [
- 9.0298,
- 45.82127
- ],
- [
- 8.90992,
- 45.8333
- ],
- [
- 8.9408,
- 45.86682
- ],
- [
- 8.88904,
- 45.95465
- ],
- [
- 8.78551,
- 45.99063
- ],
- [
- 8.85617,
- 46.0748
- ],
- [
- 8.62242,
- 46.12112
- ],
- [
- 8.45032,
- 46.26869
- ],
- [
- 8.42464,
- 46.46367
- ],
- [
- 8.08814,
- 46.26692
- ],
- [
- 8.15493,
- 46.1834
- ],
- [
- 8.11383,
- 46.11577
- ],
- [
- 8.02906,
- 46.10331
- ],
- [
- 7.98881,
- 45.99867
- ],
- [
- 7.9049,
- 45.99945
- ],
- [
- 7.85949,
- 45.91485
- ],
- [
- 7.56343,
- 45.97421
- ],
- [
- 7.10685,
- 45.85653
- ],
- [
- 7.04151,
- 45.92435
- ],
- [
- 6.95315,
- 45.85163
- ],
- [
- 6.80785,
- 45.83265
- ],
- [
- 6.80785,
- 45.71864
- ],
- [
- 6.98948,
- 45.63869
- ],
- [
- 7.00037,
- 45.509
- ],
- [
- 7.18019,
- 45.40071
- ],
- [
- 7.10572,
- 45.32924
- ],
- [
- 7.13115,
- 45.25386
- ],
- [
- 6.85144,
- 45.13226
- ],
- [
- 6.7697,
- 45.16044
- ],
- [
- 6.62803,
- 45.11175
- ],
- [
- 6.66981,
- 45.02324
- ],
- [
- 6.74791,
- 45.01939
- ],
- [
- 6.75518,
- 44.89915
- ],
- [
- 7.02217,
- 44.82519
- ],
- [
- 7.07484,
- 44.68073
- ],
- [
- 6.95133,
- 44.66264
- ],
- [
- 6.85507,
- 44.53072
- ],
- [
- 6.94504,
- 44.43112
- ],
- [
- 6.88784,
- 44.42043
- ],
- [
- 6.89171,
- 44.36637
- ],
- [
- 7.00764,
- 44.23736
- ],
- [
- 7.36364,
- 44.11882
- ],
- [
- 7.68694,
- 44.17487
- ],
- [
- 7.72508,
- 44.07578
- ],
- [
- 7.49355,
- 43.86551
- ],
- [
- 7.54795,
- 43.73118
- ]
- ],
- [
- [
- 8.17134,
- 39.14848
- ],
- [
- 8.62453,
- 38.75119
- ],
- [
- 9.09831,
- 39.03764
- ],
- [
- 9.03102,
- 39.13144
- ],
- [
- 9.26585,
- 39.18575
- ],
- [
- 9.64076,
- 39.0227
- ],
- [
- 9.89894,
- 40.67991
- ],
- [
- 9.50068,
- 41.39257
- ],
- [
- 8.30317,
- 40.91071
- ],
- [
- 8.41304,
- 41.16139
- ],
- [
- 8.21254,
- 41.13864
- ],
- [
- 8.07521,
- 40.59862
- ],
- [
- 8.36154,
- 40.35
- ],
- [
- 8.27914,
- 39.98585
- ],
- [
- 8.38283,
- 39.6536
- ],
- [
- 8.17134,
- 39.14848
- ]
- ],
- [
- [
- 12.51489,
- 35.53423
- ],
- [
- 12.64054,
- 35.5306
- ],
- [
- 12.63861,
- 35.48641
- ],
- [
- 12.51296,
- 35.49005
- ],
- [
- 12.51489,
- 35.53423
- ]
- ],
- [
- [
- 11.91218,
- 36.85688
- ],
- [
- 12.08179,
- 36.85523
- ],
- [
- 12.07958,
- 36.70974
- ],
- [
- 11.90998,
- 36.71139
- ],
- [
- 11.91218,
- 36.85688
- ]
- ],
- [
- [
- 12.84019,
- 35.88131
- ],
- [
- 12.89186,
- 35.88145
- ],
- [
- 12.89198,
- 35.85003
- ],
- [
- 12.84031,
- 35.84989
- ],
- [
- 12.84019,
- 35.88131
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale",
- "url": "http://www.sitr.regione.sicilia.it"
- },
- "available_projections": [
- "EPSG:2056",
- "EPSG:21781",
- "EPSG:3003",
- "EPSG:3004",
- "EPSG:3035",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4265",
- "EPSG:4326",
- "EPSG:4806",
- "EPSG:900913"
- ],
- "category": "photo",
- "country_code": "IT",
- "end_date": "2012",
- "id": "PCN-Italy-2012",
- "license_url": "https://wiki.openstreetmap.org/wiki/Italy/PCN",
- "name": "PCN 2012 - Italy",
- "privacy_policy_url": "http://www.pcn.minambiente.it/mattm/en/legal-notice/",
- "start_date": "2012",
- "type": "wms",
- "url": "http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_12.map&LAYERS=OI.ORTOIMMAGINI.2012.32,OI.ORTOIMMAGINI.2012.33&STYLES=,&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.71165,
- 38.25894
- ],
- [
- 15.23718,
- 38.81938
- ],
- [
- 14.27124,
- 38.55246
- ],
- [
- 13.15063,
- 38.75408
- ],
- [
- 11.96411,
- 37.97451
- ],
- [
- 12.52441,
- 37.54022
- ],
- [
- 11.87897,
- 36.79609
- ],
- [
- 12.49695,
- 35.47409
- ],
- [
- 12.68921,
- 35.46962
- ],
- [
- 14.57336,
- 36.66401
- ],
- [
- 15.29709,
- 36.62875
- ],
- [
- 15.39854,
- 37.42171
- ],
- [
- 15.71165,
- 38.25894
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:32633"
- ],
- "country_code": "IT",
- "id": "Sicily-ATA2007",
- "name": "Sicily - Italy",
- "type": "wms",
- "url": "http://map.sitr.regione.sicilia.it/ArcGIS/services/WGS84_F33/Ortofoto_ATA20072008_f33/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&STYLES=default&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.38615,
- 46.68821
- ],
- [
- 10.39201,
- 46.69016
- ],
- [
- 10.40215,
- 46.70624
- ],
- [
- 10.41274,
- 46.70821
- ],
- [
- 10.41622,
- 46.71479
- ],
- [
- 10.4168,
- 46.71847
- ],
- [
- 10.39934,
- 46.73435
- ],
- [
- 10.43464,
- 46.75356
- ],
- [
- 10.44107,
- 46.75413
- ],
- [
- 10.44011,
- 46.77149
- ],
- [
- 10.42123,
- 46.78861
- ],
- [
- 10.42845,
- 46.79755
- ],
- [
- 10.43851,
- 46.79869
- ],
- [
- 10.44925,
- 46.80462
- ],
- [
- 10.45602,
- 46.81635
- ],
- [
- 10.45438,
- 46.82221
- ],
- [
- 10.4583,
- 46.82478
- ],
- [
- 10.45513,
- 46.83059
- ],
- [
- 10.45906,
- 46.83548
- ],
- [
- 10.46483,
- 46.83624
- ],
- [
- 10.46229,
- 46.8413
- ],
- [
- 10.46987,
- 46.84933
- ],
- [
- 10.46819,
- 46.8553
- ],
- [
- 10.47838,
- 46.86013
- ],
- [
- 10.48372,
- 46.85543
- ],
- [
- 10.49628,
- 46.85305
- ],
- [
- 10.49931,
- 46.84857
- ],
- [
- 10.52124,
- 46.84653
- ],
- [
- 10.5527,
- 46.8511
- ],
- [
- 10.55795,
- 46.84695
- ],
- [
- 10.55264,
- 46.8408
- ],
- [
- 10.55536,
- 46.84087
- ],
- [
- 10.58883,
- 46.85125
- ],
- [
- 10.59502,
- 46.85829
- ],
- [
- 10.60936,
- 46.8597
- ],
- [
- 10.62441,
- 46.86558
- ],
- [
- 10.64858,
- 46.86655
- ],
- [
- 10.66787,
- 46.87651
- ],
- [
- 10.67297,
- 46.87138
- ],
- [
- 10.69112,
- 46.86861
- ],
- [
- 10.69786,
- 46.86339
- ],
- [
- 10.69508,
- 46.85308
- ],
- [
- 10.70594,
- 46.84786
- ],
- [
- 10.71763,
- 46.84795
- ],
- [
- 10.72333,
- 46.83892
- ],
- [
- 10.75621,
- 46.83383
- ],
- [
- 10.76481,
- 46.82409
- ],
- [
- 10.76387,
- 46.81971
- ],
- [
- 10.75239,
- 46.81387
- ],
- [
- 10.74506,
- 46.80223
- ],
- [
- 10.7276,
- 46.79709
- ],
- [
- 10.73122,
- 46.78925
- ],
- [
- 10.75722,
- 46.78624
- ],
- [
- 10.77744,
- 46.79149
- ],
- [
- 10.78678,
- 46.79735
- ],
- [
- 10.81439,
- 46.77662
- ],
- [
- 10.82479,
- 46.77472
- ],
- [
- 10.83129,
- 46.78138
- ],
- [
- 10.84112,
- 46.78282
- ],
- [
- 10.85354,
- 46.77506
- ],
- [
- 10.86845,
- 46.77313
- ],
- [
- 10.86993,
- 46.7669
- ],
- [
- 10.88294,
- 46.76393
- ],
- [
- 10.88962,
- 46.76529
- ],
- [
- 10.8951,
- 46.77092
- ],
- [
- 10.90527,
- 46.76911
- ],
- [
- 10.92299,
- 46.7764
- ],
- [
- 10.92821,
- 46.77408
- ],
- [
- 10.94388,
- 46.77648
- ],
- [
- 10.97522,
- 46.77361
- ],
- [
- 10.97932,
- 46.77014
- ],
- [
- 10.99475,
- 46.76804
- ],
- [
- 11.01397,
- 46.77317
- ],
- [
- 11.02328,
- 46.76715
- ],
- [
- 11.0346,
- 46.79428
- ],
- [
- 11.04234,
- 46.801
- ],
- [
- 11.03792,
- 46.80562
- ],
- [
- 11.05633,
- 46.80928
- ],
- [
- 11.07279,
- 46.82092
- ],
- [
- 11.08171,
- 46.82252
- ],
- [
- 11.0762,
- 46.83384
- ],
- [
- 11.06887,
- 46.83793
- ],
- [
- 11.07303,
- 46.84345
- ],
- [
- 11.06988,
- 46.85348
- ],
- [
- 11.08742,
- 46.87927
- ],
- [
- 11.09961,
- 46.88922
- ],
- [
- 11.09538,
- 46.89178
- ],
- [
- 11.09795,
- 46.89844
- ],
- [
- 11.0946,
- 46.91247
- ],
- [
- 11.10792,
- 46.91706
- ],
- [
- 11.10804,
- 46.92632
- ],
- [
- 11.11418,
- 46.93234
- ],
- [
- 11.13851,
- 46.92865
- ],
- [
- 11.16322,
- 46.94091
- ],
- [
- 11.16642,
- 46.94479
- ],
- [
- 11.16114,
- 46.94979
- ],
- [
- 11.1637,
- 46.96677
- ],
- [
- 11.17598,
- 46.96367
- ],
- [
- 11.18658,
- 46.97062
- ],
- [
- 11.19527,
- 46.97152
- ],
- [
- 11.20418,
- 46.96877
- ],
- [
- 11.20688,
- 46.96403
- ],
- [
- 11.22047,
- 46.97025
- ],
- [
- 11.24139,
- 46.9708
- ],
- [
- 11.24865,
- 46.97517
- ],
- [
- 11.25582,
- 46.97535
- ],
- [
- 11.26272,
- 46.98169
- ],
- [
- 11.27662,
- 46.98168
- ],
- [
- 11.28762,
- 46.98699
- ],
- [
- 11.30709,
- 46.98525
- ],
- [
- 11.3205,
- 46.99345
- ],
- [
- 11.33765,
- 46.98606
- ],
- [
- 11.34516,
- 46.99169
- ],
- [
- 11.35932,
- 46.99154
- ],
- [
- 11.37697,
- 46.98025
- ],
- [
- 11.38324,
- 46.97168
- ],
- [
- 11.40465,
- 46.96609
- ],
- [
- 11.43929,
- 46.97601
- ],
- [
- 11.45134,
- 46.99294
- ],
- [
- 11.46803,
- 46.99582
- ],
- [
- 11.46859,
- 47.003
- ],
- [
- 11.47831,
- 47.01201
- ],
- [
- 11.50238,
- 47.01073
- ],
- [
- 11.50313,
- 47.00808
- ],
- [
- 11.51366,
- 47.00595
- ],
- [
- 11.51679,
- 47.00091
- ],
- [
- 11.53381,
- 46.99233
- ],
- [
- 11.53846,
- 46.98519
- ],
- [
- 11.55297,
- 46.99149
- ],
- [
- 11.57663,
- 46.99657
- ],
- [
- 11.58,
- 47.00277
- ],
- [
- 11.58879,
- 47.00641
- ],
- [
- 11.59901,
- 47.00657
- ],
- [
- 11.60944,
- 47.01207
- ],
- [
- 11.62697,
- 47.01437
- ],
- [
- 11.63629,
- 47.00383
- ],
- [
- 11.66542,
- 46.99304
- ],
- [
- 11.6885,
- 46.99658
- ],
- [
- 11.71226,
- 46.99416
- ],
- [
- 11.72897,
- 46.97322
- ],
- [
- 11.74698,
- 46.97013
- ],
- [
- 11.76411,
- 46.97412
- ],
- [
- 11.78106,
- 46.99342
- ],
- [
- 11.81526,
- 46.991
- ],
- [
- 11.83564,
- 46.99417
- ],
- [
- 11.84396,
- 47.0025
- ],
- [
- 11.85192,
- 47.0014
- ],
- [
- 11.86722,
- 47.01252
- ],
- [
- 11.87393,
- 47.01136
- ],
- [
- 11.8794,
- 47.01714
- ],
- [
- 11.89137,
- 47.01728
- ],
- [
- 11.91627,
- 47.03422
- ],
- [
- 11.9329,
- 47.03864
- ],
- [
- 11.94688,
- 47.03464
- ],
- [
- 11.95457,
- 47.04374
- ],
- [
- 11.96773,
- 47.04158
- ],
- [
- 11.97912,
- 47.0511
- ],
- [
- 11.98587,
- 47.04815
- ],
- [
- 11.99534,
- 47.05064
- ],
- [
- 12.02037,
- 47.04821
- ],
- [
- 12.02968,
- 47.05127
- ],
- [
- 12.03353,
- 47.0583
- ],
- [
- 12.04276,
- 47.06228
- ],
- [
- 12.07543,
- 47.0605
- ],
- [
- 12.08035,
- 47.06951
- ],
- [
- 12.09308,
- 47.07791
- ],
- [
- 12.10329,
- 47.07931
- ],
- [
- 12.11867,
- 47.07445
- ],
- [
- 12.13561,
- 47.08171
- ],
- [
- 12.15125,
- 47.08049
- ],
- [
- 12.15997,
- 47.08267
- ],
- [
- 12.18589,
- 47.09322
- ],
- [
- 12.2278,
- 47.08302
- ],
- [
- 12.24228,
- 47.06892
- ],
- [
- 12.23786,
- 47.0644
- ],
- [
- 12.21821,
- 47.05795
- ],
- [
- 12.2182,
- 47.04483
- ],
- [
- 12.20552,
- 47.02595
- ],
- [
- 12.18048,
- 47.02414
- ],
- [
- 12.16423,
- 47.01782
- ],
- [
- 12.14786,
- 47.02357
- ],
- [
- 12.12723,
- 47.01218
- ],
- [
- 12.12285,
- 47.00662
- ],
- [
- 12.1322,
- 46.99339
- ],
- [
- 12.12974,
- 46.98593
- ],
- [
- 12.13977,
- 46.982
- ],
- [
- 12.13808,
- 46.96514
- ],
- [
- 12.13328,
- 46.96292
- ],
- [
- 12.13882,
- 46.95764
- ],
- [
- 12.15927,
- 46.95133
- ],
- [
- 12.1702,
- 46.93758
- ],
- [
- 12.15414,
- 46.91654
- ],
- [
- 12.14675,
- 46.91413
- ],
- [
- 12.16205,
- 46.908
- ],
- [
- 12.16959,
- 46.91121
- ],
- [
- 12.19154,
- 46.90682
- ],
- [
- 12.20106,
- 46.8965
- ],
- [
- 12.2022,
- 46.88806
- ],
- [
- 12.21663,
- 46.87517
- ],
- [
- 12.22147,
- 46.88084
- ],
- [
- 12.23125,
- 46.88146
- ],
- [
- 12.2345,
- 46.88919
- ],
- [
- 12.24162,
- 46.89192
- ],
- [
- 12.27486,
- 46.88512
- ],
- [
- 12.27979,
- 46.87921
- ],
- [
- 12.27736,
- 46.87319
- ],
- [
- 12.29326,
- 46.86566
- ],
- [
- 12.2912,
- 46.85704
- ],
- [
- 12.29733,
- 46.84455
- ],
- [
- 12.30833,
- 46.84137
- ],
- [
- 12.30726,
- 46.83271
- ],
- [
- 12.285,
- 46.81503
- ],
- [
- 12.29383,
- 46.8027
- ],
- [
- 12.28905,
- 46.79948
- ],
- [
- 12.28889,
- 46.79427
- ],
- [
- 12.28232,
- 46.79153
- ],
- [
- 12.28539,
- 46.7839
- ],
- [
- 12.30943,
- 46.78603
- ],
- [
- 12.35837,
- 46.77583
- ],
- [
- 12.37036,
- 46.74163
- ],
- [
- 12.38475,
- 46.71745
- ],
- [
- 12.40283,
- 46.70811
- ],
- [
- 12.41103,
- 46.70701
- ],
- [
- 12.41522,
- 46.70163
- ],
- [
- 12.42862,
- 46.6997
- ],
- [
- 12.42943,
- 46.69567
- ],
- [
- 12.44268,
- 46.68979
- ],
- [
- 12.47501,
- 46.68756
- ],
- [
- 12.4795,
- 46.67969
- ],
- [
- 12.43473,
- 46.66714
- ],
- [
- 12.40648,
- 46.64167
- ],
- [
- 12.38115,
- 46.64183
- ],
- [
- 12.37944,
- 46.63733
- ],
- [
- 12.3915,
- 46.62765
- ],
- [
- 12.38577,
- 46.62154
- ],
- [
- 12.35939,
- 46.61829
- ],
- [
- 12.34465,
- 46.62376
- ],
- [
- 12.34034,
- 46.63022
- ],
- [
- 12.33578,
- 46.62732
- ],
- [
- 12.3172,
- 46.62876
- ],
- [
- 12.31785,
- 46.62355
- ],
- [
- 12.30802,
- 46.61811
- ],
- [
- 12.28413,
- 46.61623
- ],
- [
- 12.26982,
- 46.62003
- ],
- [
- 12.25931,
- 46.62809
- ],
- [
- 12.24502,
- 46.62326
- ],
- [
- 12.24198,
- 46.61586
- ],
- [
- 12.21241,
- 46.60918
- ],
- [
- 12.20444,
- 46.59836
- ],
- [
- 12.19228,
- 46.59321
- ],
- [
- 12.19261,
- 46.62059
- ],
- [
- 12.1818,
- 46.6192
- ],
- [
- 12.17117,
- 46.63275
- ],
- [
- 12.16062,
- 46.63574
- ],
- [
- 12.1511,
- 46.63215
- ],
- [
- 12.1436,
- 46.6327
- ],
- [
- 12.13739,
- 46.64122
- ],
- [
- 12.12342,
- 46.64475
- ],
- [
- 12.10949,
- 46.65204
- ],
- [
- 12.10609,
- 46.65783
- ],
- [
- 12.09345,
- 46.66123
- ],
- [
- 12.08826,
- 46.66638
- ],
- [
- 12.07985,
- 46.66686
- ],
- [
- 12.07038,
- 46.67386
- ],
- [
- 12.07173,
- 46.66064
- ],
- [
- 12.06686,
- 46.65364
- ],
- [
- 12.07479,
- 46.64329
- ],
- [
- 12.06837,
- 46.63997
- ],
- [
- 12.06495,
- 46.62121
- ],
- [
- 12.05448,
- 46.61778
- ],
- [
- 12.05318,
- 46.60989
- ],
- [
- 12.04613,
- 46.60716
- ],
- [
- 12.05043,
- 46.60016
- ],
- [
- 12.04763,
- 46.58357
- ],
- [
- 12.03665,
- 46.57668
- ],
- [
- 12.0266,
- 46.55871
- ],
- [
- 12.02189,
- 46.55791
- ],
- [
- 11.99941,
- 46.53208
- ],
- [
- 11.99411,
- 46.53345
- ],
- [
- 11.98704,
- 46.54417
- ],
- [
- 11.96633,
- 46.54363
- ],
- [
- 11.95094,
- 46.53869
- ],
- [
- 11.94719,
- 46.52879
- ],
- [
- 11.94147,
- 46.52689
- ],
- [
- 11.93294,
- 46.52631
- ],
- [
- 11.9121,
- 46.532
- ],
- [
- 11.8904,
- 46.52175
- ],
- [
- 11.85192,
- 46.51682
- ],
- [
- 11.82849,
- 46.50783
- ],
- [
- 11.82334,
- 46.51315
- ],
- [
- 11.82391,
- 46.52141
- ],
- [
- 11.81086,
- 46.53146
- ],
- [
- 11.79385,
- 46.52023
- ],
- [
- 11.79189,
- 46.51322
- ],
- [
- 11.76157,
- 46.50503
- ],
- [
- 11.74317,
- 46.50391
- ],
- [
- 11.73202,
- 46.50877
- ],
- [
- 11.71935,
- 46.50916
- ],
- [
- 11.71524,
- 46.51245
- ],
- [
- 11.69889,
- 46.50218
- ],
- [
- 11.6672,
- 46.49647
- ],
- [
- 11.64515,
- 46.49743
- ],
- [
- 11.63849,
- 46.50051
- ],
- [
- 11.63495,
- 46.49486
- ],
- [
- 11.64297,
- 46.49346
- ],
- [
- 11.65174,
- 46.48271
- ],
- [
- 11.64536,
- 46.47189
- ],
- [
- 11.64179,
- 46.47439
- ],
- [
- 11.62679,
- 46.4708
- ],
- [
- 11.62987,
- 46.46377
- ],
- [
- 11.61882,
- 46.44325
- ],
- [
- 11.62143,
- 46.42539
- ],
- [
- 11.60161,
- 46.39731
- ],
- [
- 11.60307,
- 46.38924
- ],
- [
- 11.5932,
- 46.38265
- ],
- [
- 11.56489,
- 46.38018
- ],
- [
- 11.55878,
- 46.35076
- ],
- [
- 11.55249,
- 46.34418
- ],
- [
- 11.54423,
- 46.34483
- ],
- [
- 11.53837,
- 46.35015
- ],
- [
- 11.52445,
- 46.35502
- ],
- [
- 11.47969,
- 46.36277
- ],
- [
- 11.48052,
- 46.3551
- ],
- [
- 11.46322,
- 46.34922
- ],
- [
- 11.45556,
- 46.33396
- ],
- [
- 11.42105,
- 46.32441
- ],
- [
- 11.40517,
- 46.32387
- ],
- [
- 11.39865,
- 46.31426
- ],
- [
- 11.39994,
- 46.30709
- ],
- [
- 11.39569,
- 46.3083
- ],
- [
- 11.38188,
- 46.30052
- ],
- [
- 11.36088,
- 46.29906
- ],
- [
- 11.36078,
- 46.29682
- ],
- [
- 11.38256,
- 46.29177
- ],
- [
- 11.3871,
- 46.28143
- ],
- [
- 11.39609,
- 46.27423
- ],
- [
- 11.39862,
- 46.264
- ],
- [
- 11.38756,
- 46.26029
- ],
- [
- 11.37347,
- 46.2629
- ],
- [
- 11.36836,
- 46.26135
- ],
- [
- 11.35783,
- 46.26481
- ],
- [
- 11.35495,
- 46.27564
- ],
- [
- 11.33912,
- 46.28306
- ],
- [
- 11.33379,
- 46.29049
- ],
- [
- 11.33471,
- 46.2962
- ],
- [
- 11.3129,
- 46.28256
- ],
- [
- 11.31737,
- 46.27303
- ],
- [
- 11.30645,
- 46.25786
- ],
- [
- 11.29124,
- 46.2604
- ],
- [
- 11.24743,
- 46.22933
- ],
- [
- 11.20622,
- 46.2187
- ],
- [
- 11.18267,
- 46.22496
- ],
- [
- 11.17077,
- 46.23806
- ],
- [
- 11.17994,
- 46.24434
- ],
- [
- 11.18351,
- 46.25269
- ],
- [
- 11.18935,
- 46.25354
- ],
- [
- 11.19448,
- 46.2461
- ],
- [
- 11.20029,
- 46.25566
- ],
- [
- 11.16604,
- 46.26129
- ],
- [
- 11.14885,
- 46.27904
- ],
- [
- 11.13725,
- 46.28336
- ],
- [
- 11.14293,
- 46.28934
- ],
- [
- 11.15847,
- 46.29059
- ],
- [
- 11.16439,
- 46.2986
- ],
- [
- 11.1761,
- 46.30346
- ],
- [
- 11.1847,
- 46.32104
- ],
- [
- 11.18894,
- 46.32151
- ],
- [
- 11.18696,
- 46.32673
- ],
- [
- 11.1942,
- 46.33016
- ],
- [
- 11.20204,
- 46.34212
- ],
- [
- 11.19001,
- 46.35984
- ],
- [
- 11.19263,
- 46.36578
- ],
- [
- 11.20393,
- 46.36765
- ],
- [
- 11.19792,
- 46.37232
- ],
- [
- 11.21275,
- 46.39804
- ],
- [
- 11.21345,
- 46.40675
- ],
- [
- 11.20565,
- 46.4166
- ],
- [
- 11.21026,
- 46.4206
- ],
- [
- 11.20347,
- 46.42682
- ],
- [
- 11.21416,
- 46.43556
- ],
- [
- 11.21634,
- 46.44255
- ],
- [
- 11.20903,
- 46.45293
- ],
- [
- 11.21419,
- 46.45807
- ],
- [
- 11.21736,
- 46.45731
- ],
- [
- 11.21886,
- 46.46199
- ],
- [
- 11.21626,
- 46.47277
- ],
- [
- 11.20939,
- 46.481
- ],
- [
- 11.20876,
- 46.49346
- ],
- [
- 11.19608,
- 46.50241
- ],
- [
- 11.1924,
- 46.501
- ],
- [
- 11.18686,
- 46.50734
- ],
- [
- 11.18002,
- 46.49823
- ],
- [
- 11.17014,
- 46.49635
- ],
- [
- 11.16095,
- 46.4878
- ],
- [
- 11.12934,
- 46.48058
- ],
- [
- 11.1103,
- 46.49643
- ],
- [
- 11.10449,
- 46.4948
- ],
- [
- 11.08812,
- 46.50128
- ],
- [
- 11.08173,
- 46.53021
- ],
- [
- 11.05915,
- 46.51508
- ],
- [
- 11.03795,
- 46.51357
- ],
- [
- 11.05006,
- 46.50784
- ],
- [
- 11.05773,
- 46.49235
- ],
- [
- 11.06278,
- 46.4894
- ],
- [
- 11.06894,
- 46.46619
- ],
- [
- 11.07625,
- 46.45487
- ],
- [
- 11.0778,
- 46.44569
- ],
- [
- 11.07301,
- 46.44042
- ],
- [
- 11.05394,
- 46.44849
- ],
- [
- 11.0414,
- 46.44569
- ],
- [
- 11.02817,
- 46.46116
- ],
- [
- 11.00952,
- 46.46917
- ],
- [
- 11.00462,
- 46.47607
- ],
- [
- 10.98695,
- 46.48289
- ],
- [
- 10.96543,
- 46.48103
- ],
- [
- 10.95791,
- 46.46983
- ],
- [
- 10.93819,
- 46.46578
- ],
- [
- 10.9325,
- 46.45831
- ],
- [
- 10.93332,
- 46.4528
- ],
- [
- 10.91305,
- 46.44284
- ],
- [
- 10.89161,
- 46.44366
- ],
- [
- 10.88324,
- 46.44995
- ],
- [
- 10.88093,
- 46.44579
- ],
- [
- 10.87162,
- 46.4438
- ],
- [
- 10.86174,
- 46.43509
- ],
- [
- 10.85113,
- 46.43817
- ],
- [
- 10.80034,
- 46.44185
- ],
- [
- 10.78906,
- 46.45164
- ],
- [
- 10.77835,
- 46.47112
- ],
- [
- 10.76934,
- 46.47609
- ],
- [
- 10.76463,
- 46.4848
- ],
- [
- 10.75906,
- 46.48547
- ],
- [
- 10.74422,
- 46.48333
- ],
- [
- 10.71753,
- 46.46022
- ],
- [
- 10.69667,
- 46.4573
- ],
- [
- 10.68293,
- 46.44846
- ],
- [
- 10.66821,
- 46.45122
- ],
- [
- 10.63303,
- 46.44309
- ],
- [
- 10.61439,
- 46.45098
- ],
- [
- 10.60128,
- 46.46139
- ],
- [
- 10.59995,
- 46.46766
- ],
- [
- 10.57672,
- 46.47237
- ],
- [
- 10.55875,
- 46.48187
- ],
- [
- 10.54986,
- 46.49123
- ],
- [
- 10.53685,
- 46.49062
- ],
- [
- 10.52657,
- 46.49425
- ],
- [
- 10.49366,
- 46.49719
- ],
- [
- 10.48141,
- 46.49337
- ],
- [
- 10.45714,
- 46.5096
- ],
- [
- 10.45124,
- 46.53083
- ],
- [
- 10.45814,
- 46.54215
- ],
- [
- 10.47056,
- 46.54377
- ],
- [
- 10.46954,
- 46.54856
- ],
- [
- 10.47617,
- 46.55749
- ],
- [
- 10.47321,
- 46.56701
- ],
- [
- 10.48305,
- 46.5777
- ],
- [
- 10.48575,
- 46.58921
- ],
- [
- 10.48221,
- 46.59199
- ],
- [
- 10.48576,
- 46.59805
- ],
- [
- 10.48291,
- 46.60512
- ],
- [
- 10.49055,
- 46.61394
- ],
- [
- 10.44632,
- 46.63989
- ],
- [
- 10.40935,
- 46.63389
- ],
- [
- 10.40011,
- 46.63648
- ],
- [
- 10.39873,
- 46.6455
- ],
- [
- 10.38946,
- 46.65862
- ],
- [
- 10.39057,
- 46.67089
- ],
- [
- 10.3803,
- 46.68399
- ],
- [
- 10.38615,
- 46.68821
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0",
- "url": "https://geoservices.buergernetz.bz.it/geokatalog"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "category": "historicphoto",
- "country_code": "IT",
- "description": "Orthophoto of South Tyrol from 2011 with up to 20cm resolution (larger valleys)",
- "end_date": "2011",
- "id": "South-Tyrol-Orthofoto2011-20cm",
- "license_url": "https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&REQUEST=GetCapabilities",
- "name": "South Tyrol Orthofoto 2011 (highres)",
- "start_date": "2011",
- "type": "wms",
- "url": "https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=P_BZ_OF_2011_EPSG3857,P_BZ_OF_2011_20cm_EPSG3857&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.38615,
- 46.68821
- ],
- [
- 10.39201,
- 46.69016
- ],
- [
- 10.40215,
- 46.70624
- ],
- [
- 10.41274,
- 46.70821
- ],
- [
- 10.41622,
- 46.71479
- ],
- [
- 10.4168,
- 46.71847
- ],
- [
- 10.39934,
- 46.73435
- ],
- [
- 10.43464,
- 46.75356
- ],
- [
- 10.44107,
- 46.75413
- ],
- [
- 10.44011,
- 46.77149
- ],
- [
- 10.42123,
- 46.78861
- ],
- [
- 10.42845,
- 46.79755
- ],
- [
- 10.43851,
- 46.79869
- ],
- [
- 10.44925,
- 46.80462
- ],
- [
- 10.45602,
- 46.81635
- ],
- [
- 10.45438,
- 46.82221
- ],
- [
- 10.4583,
- 46.82478
- ],
- [
- 10.45513,
- 46.83059
- ],
- [
- 10.45906,
- 46.83548
- ],
- [
- 10.46483,
- 46.83624
- ],
- [
- 10.46229,
- 46.8413
- ],
- [
- 10.46987,
- 46.84933
- ],
- [
- 10.46819,
- 46.8553
- ],
- [
- 10.47838,
- 46.86013
- ],
- [
- 10.48372,
- 46.85543
- ],
- [
- 10.49628,
- 46.85305
- ],
- [
- 10.49931,
- 46.84857
- ],
- [
- 10.52124,
- 46.84653
- ],
- [
- 10.5527,
- 46.8511
- ],
- [
- 10.55795,
- 46.84695
- ],
- [
- 10.55264,
- 46.8408
- ],
- [
- 10.55536,
- 46.84087
- ],
- [
- 10.58883,
- 46.85125
- ],
- [
- 10.59502,
- 46.85829
- ],
- [
- 10.60936,
- 46.8597
- ],
- [
- 10.62441,
- 46.86558
- ],
- [
- 10.64858,
- 46.86655
- ],
- [
- 10.66787,
- 46.87651
- ],
- [
- 10.67297,
- 46.87138
- ],
- [
- 10.69112,
- 46.86861
- ],
- [
- 10.69786,
- 46.86339
- ],
- [
- 10.69508,
- 46.85308
- ],
- [
- 10.70594,
- 46.84786
- ],
- [
- 10.71763,
- 46.84795
- ],
- [
- 10.72333,
- 46.83892
- ],
- [
- 10.75621,
- 46.83383
- ],
- [
- 10.76481,
- 46.82409
- ],
- [
- 10.76387,
- 46.81971
- ],
- [
- 10.75239,
- 46.81387
- ],
- [
- 10.74506,
- 46.80223
- ],
- [
- 10.7276,
- 46.79709
- ],
- [
- 10.73122,
- 46.78925
- ],
- [
- 10.75722,
- 46.78624
- ],
- [
- 10.77744,
- 46.79149
- ],
- [
- 10.78678,
- 46.79735
- ],
- [
- 10.81439,
- 46.77662
- ],
- [
- 10.82479,
- 46.77472
- ],
- [
- 10.83129,
- 46.78138
- ],
- [
- 10.84112,
- 46.78282
- ],
- [
- 10.85354,
- 46.77506
- ],
- [
- 10.86845,
- 46.77313
- ],
- [
- 10.86993,
- 46.7669
- ],
- [
- 10.88294,
- 46.76393
- ],
- [
- 10.88962,
- 46.76529
- ],
- [
- 10.8951,
- 46.77092
- ],
- [
- 10.90527,
- 46.76911
- ],
- [
- 10.92299,
- 46.7764
- ],
- [
- 10.92821,
- 46.77408
- ],
- [
- 10.94388,
- 46.77648
- ],
- [
- 10.97522,
- 46.77361
- ],
- [
- 10.97932,
- 46.77014
- ],
- [
- 10.99475,
- 46.76804
- ],
- [
- 11.01397,
- 46.77317
- ],
- [
- 11.02328,
- 46.76715
- ],
- [
- 11.0346,
- 46.79428
- ],
- [
- 11.04234,
- 46.801
- ],
- [
- 11.03792,
- 46.80562
- ],
- [
- 11.05633,
- 46.80928
- ],
- [
- 11.07279,
- 46.82092
- ],
- [
- 11.08171,
- 46.82252
- ],
- [
- 11.0762,
- 46.83384
- ],
- [
- 11.06887,
- 46.83793
- ],
- [
- 11.07303,
- 46.84345
- ],
- [
- 11.06988,
- 46.85348
- ],
- [
- 11.08742,
- 46.87927
- ],
- [
- 11.09961,
- 46.88922
- ],
- [
- 11.09538,
- 46.89178
- ],
- [
- 11.09795,
- 46.89844
- ],
- [
- 11.0946,
- 46.91247
- ],
- [
- 11.10792,
- 46.91706
- ],
- [
- 11.10804,
- 46.92632
- ],
- [
- 11.11418,
- 46.93234
- ],
- [
- 11.13851,
- 46.92865
- ],
- [
- 11.16322,
- 46.94091
- ],
- [
- 11.16642,
- 46.94479
- ],
- [
- 11.16114,
- 46.94979
- ],
- [
- 11.1637,
- 46.96677
- ],
- [
- 11.17598,
- 46.96367
- ],
- [
- 11.18658,
- 46.97062
- ],
- [
- 11.19527,
- 46.97152
- ],
- [
- 11.20418,
- 46.96877
- ],
- [
- 11.20688,
- 46.96403
- ],
- [
- 11.22047,
- 46.97025
- ],
- [
- 11.24139,
- 46.9708
- ],
- [
- 11.24865,
- 46.97517
- ],
- [
- 11.25582,
- 46.97535
- ],
- [
- 11.26272,
- 46.98169
- ],
- [
- 11.27662,
- 46.98168
- ],
- [
- 11.28762,
- 46.98699
- ],
- [
- 11.30709,
- 46.98525
- ],
- [
- 11.3205,
- 46.99345
- ],
- [
- 11.33765,
- 46.98606
- ],
- [
- 11.34516,
- 46.99169
- ],
- [
- 11.35932,
- 46.99154
- ],
- [
- 11.37697,
- 46.98025
- ],
- [
- 11.38324,
- 46.97168
- ],
- [
- 11.40465,
- 46.96609
- ],
- [
- 11.43929,
- 46.97601
- ],
- [
- 11.45134,
- 46.99294
- ],
- [
- 11.46803,
- 46.99582
- ],
- [
- 11.46859,
- 47.003
- ],
- [
- 11.47831,
- 47.01201
- ],
- [
- 11.50238,
- 47.01073
- ],
- [
- 11.50313,
- 47.00808
- ],
- [
- 11.51366,
- 47.00595
- ],
- [
- 11.51679,
- 47.00091
- ],
- [
- 11.53381,
- 46.99233
- ],
- [
- 11.53846,
- 46.98519
- ],
- [
- 11.55297,
- 46.99149
- ],
- [
- 11.57663,
- 46.99657
- ],
- [
- 11.58,
- 47.00277
- ],
- [
- 11.58879,
- 47.00641
- ],
- [
- 11.59901,
- 47.00657
- ],
- [
- 11.60944,
- 47.01207
- ],
- [
- 11.62697,
- 47.01437
- ],
- [
- 11.63629,
- 47.00383
- ],
- [
- 11.66542,
- 46.99304
- ],
- [
- 11.6885,
- 46.99658
- ],
- [
- 11.71226,
- 46.99416
- ],
- [
- 11.72897,
- 46.97322
- ],
- [
- 11.74698,
- 46.97013
- ],
- [
- 11.76411,
- 46.97412
- ],
- [
- 11.78106,
- 46.99342
- ],
- [
- 11.81526,
- 46.991
- ],
- [
- 11.83564,
- 46.99417
- ],
- [
- 11.84396,
- 47.0025
- ],
- [
- 11.85192,
- 47.0014
- ],
- [
- 11.86722,
- 47.01252
- ],
- [
- 11.87393,
- 47.01136
- ],
- [
- 11.8794,
- 47.01714
- ],
- [
- 11.89137,
- 47.01728
- ],
- [
- 11.91627,
- 47.03422
- ],
- [
- 11.9329,
- 47.03864
- ],
- [
- 11.94688,
- 47.03464
- ],
- [
- 11.95457,
- 47.04374
- ],
- [
- 11.96773,
- 47.04158
- ],
- [
- 11.97912,
- 47.0511
- ],
- [
- 11.98587,
- 47.04815
- ],
- [
- 11.99534,
- 47.05064
- ],
- [
- 12.02037,
- 47.04821
- ],
- [
- 12.02968,
- 47.05127
- ],
- [
- 12.03353,
- 47.0583
- ],
- [
- 12.04276,
- 47.06228
- ],
- [
- 12.07543,
- 47.0605
- ],
- [
- 12.08035,
- 47.06951
- ],
- [
- 12.09308,
- 47.07791
- ],
- [
- 12.10329,
- 47.07931
- ],
- [
- 12.11867,
- 47.07445
- ],
- [
- 12.13561,
- 47.08171
- ],
- [
- 12.15125,
- 47.08049
- ],
- [
- 12.15997,
- 47.08267
- ],
- [
- 12.18589,
- 47.09322
- ],
- [
- 12.2278,
- 47.08302
- ],
- [
- 12.24228,
- 47.06892
- ],
- [
- 12.23786,
- 47.0644
- ],
- [
- 12.21821,
- 47.05795
- ],
- [
- 12.2182,
- 47.04483
- ],
- [
- 12.20552,
- 47.02595
- ],
- [
- 12.18048,
- 47.02414
- ],
- [
- 12.16423,
- 47.01782
- ],
- [
- 12.14786,
- 47.02357
- ],
- [
- 12.12723,
- 47.01218
- ],
- [
- 12.12285,
- 47.00662
- ],
- [
- 12.1322,
- 46.99339
- ],
- [
- 12.12974,
- 46.98593
- ],
- [
- 12.13977,
- 46.982
- ],
- [
- 12.13808,
- 46.96514
- ],
- [
- 12.13328,
- 46.96292
- ],
- [
- 12.13882,
- 46.95764
- ],
- [
- 12.15927,
- 46.95133
- ],
- [
- 12.1702,
- 46.93758
- ],
- [
- 12.15414,
- 46.91654
- ],
- [
- 12.14675,
- 46.91413
- ],
- [
- 12.16205,
- 46.908
- ],
- [
- 12.16959,
- 46.91121
- ],
- [
- 12.19154,
- 46.90682
- ],
- [
- 12.20106,
- 46.8965
- ],
- [
- 12.2022,
- 46.88806
- ],
- [
- 12.21663,
- 46.87517
- ],
- [
- 12.22147,
- 46.88084
- ],
- [
- 12.23125,
- 46.88146
- ],
- [
- 12.2345,
- 46.88919
- ],
- [
- 12.24162,
- 46.89192
- ],
- [
- 12.27486,
- 46.88512
- ],
- [
- 12.27979,
- 46.87921
- ],
- [
- 12.27736,
- 46.87319
- ],
- [
- 12.29326,
- 46.86566
- ],
- [
- 12.2912,
- 46.85704
- ],
- [
- 12.29733,
- 46.84455
- ],
- [
- 12.30833,
- 46.84137
- ],
- [
- 12.30726,
- 46.83271
- ],
- [
- 12.285,
- 46.81503
- ],
- [
- 12.29383,
- 46.8027
- ],
- [
- 12.28905,
- 46.79948
- ],
- [
- 12.28889,
- 46.79427
- ],
- [
- 12.28232,
- 46.79153
- ],
- [
- 12.28539,
- 46.7839
- ],
- [
- 12.30943,
- 46.78603
- ],
- [
- 12.35837,
- 46.77583
- ],
- [
- 12.37036,
- 46.74163
- ],
- [
- 12.38475,
- 46.71745
- ],
- [
- 12.40283,
- 46.70811
- ],
- [
- 12.41103,
- 46.70701
- ],
- [
- 12.41522,
- 46.70163
- ],
- [
- 12.42862,
- 46.6997
- ],
- [
- 12.42943,
- 46.69567
- ],
- [
- 12.44268,
- 46.68979
- ],
- [
- 12.47501,
- 46.68756
- ],
- [
- 12.4795,
- 46.67969
- ],
- [
- 12.43473,
- 46.66714
- ],
- [
- 12.40648,
- 46.64167
- ],
- [
- 12.38115,
- 46.64183
- ],
- [
- 12.37944,
- 46.63733
- ],
- [
- 12.3915,
- 46.62765
- ],
- [
- 12.38577,
- 46.62154
- ],
- [
- 12.35939,
- 46.61829
- ],
- [
- 12.34465,
- 46.62376
- ],
- [
- 12.34034,
- 46.63022
- ],
- [
- 12.33578,
- 46.62732
- ],
- [
- 12.3172,
- 46.62876
- ],
- [
- 12.31785,
- 46.62355
- ],
- [
- 12.30802,
- 46.61811
- ],
- [
- 12.28413,
- 46.61623
- ],
- [
- 12.26982,
- 46.62003
- ],
- [
- 12.25931,
- 46.62809
- ],
- [
- 12.24502,
- 46.62326
- ],
- [
- 12.24198,
- 46.61586
- ],
- [
- 12.21241,
- 46.60918
- ],
- [
- 12.20444,
- 46.59836
- ],
- [
- 12.19228,
- 46.59321
- ],
- [
- 12.19261,
- 46.62059
- ],
- [
- 12.1818,
- 46.6192
- ],
- [
- 12.17117,
- 46.63275
- ],
- [
- 12.16062,
- 46.63574
- ],
- [
- 12.1511,
- 46.63215
- ],
- [
- 12.1436,
- 46.6327
- ],
- [
- 12.13739,
- 46.64122
- ],
- [
- 12.12342,
- 46.64475
- ],
- [
- 12.10949,
- 46.65204
- ],
- [
- 12.10609,
- 46.65783
- ],
- [
- 12.09345,
- 46.66123
- ],
- [
- 12.08826,
- 46.66638
- ],
- [
- 12.07985,
- 46.66686
- ],
- [
- 12.07038,
- 46.67386
- ],
- [
- 12.07173,
- 46.66064
- ],
- [
- 12.06686,
- 46.65364
- ],
- [
- 12.07479,
- 46.64329
- ],
- [
- 12.06837,
- 46.63997
- ],
- [
- 12.06495,
- 46.62121
- ],
- [
- 12.05448,
- 46.61778
- ],
- [
- 12.05318,
- 46.60989
- ],
- [
- 12.04613,
- 46.60716
- ],
- [
- 12.05043,
- 46.60016
- ],
- [
- 12.04763,
- 46.58357
- ],
- [
- 12.03665,
- 46.57668
- ],
- [
- 12.0266,
- 46.55871
- ],
- [
- 12.02189,
- 46.55791
- ],
- [
- 11.99941,
- 46.53208
- ],
- [
- 11.99411,
- 46.53345
- ],
- [
- 11.98704,
- 46.54417
- ],
- [
- 11.96633,
- 46.54363
- ],
- [
- 11.95094,
- 46.53869
- ],
- [
- 11.94719,
- 46.52879
- ],
- [
- 11.94147,
- 46.52689
- ],
- [
- 11.93294,
- 46.52631
- ],
- [
- 11.9121,
- 46.532
- ],
- [
- 11.8904,
- 46.52175
- ],
- [
- 11.85192,
- 46.51682
- ],
- [
- 11.82849,
- 46.50783
- ],
- [
- 11.82334,
- 46.51315
- ],
- [
- 11.82391,
- 46.52141
- ],
- [
- 11.81086,
- 46.53146
- ],
- [
- 11.79385,
- 46.52023
- ],
- [
- 11.79189,
- 46.51322
- ],
- [
- 11.76157,
- 46.50503
- ],
- [
- 11.74317,
- 46.50391
- ],
- [
- 11.73202,
- 46.50877
- ],
- [
- 11.71935,
- 46.50916
- ],
- [
- 11.71524,
- 46.51245
- ],
- [
- 11.69889,
- 46.50218
- ],
- [
- 11.6672,
- 46.49647
- ],
- [
- 11.64515,
- 46.49743
- ],
- [
- 11.63849,
- 46.50051
- ],
- [
- 11.63495,
- 46.49486
- ],
- [
- 11.64297,
- 46.49346
- ],
- [
- 11.65174,
- 46.48271
- ],
- [
- 11.64536,
- 46.47189
- ],
- [
- 11.64179,
- 46.47439
- ],
- [
- 11.62679,
- 46.4708
- ],
- [
- 11.62987,
- 46.46377
- ],
- [
- 11.61882,
- 46.44325
- ],
- [
- 11.62143,
- 46.42539
- ],
- [
- 11.60161,
- 46.39731
- ],
- [
- 11.60307,
- 46.38924
- ],
- [
- 11.5932,
- 46.38265
- ],
- [
- 11.56489,
- 46.38018
- ],
- [
- 11.55878,
- 46.35076
- ],
- [
- 11.55249,
- 46.34418
- ],
- [
- 11.54423,
- 46.34483
- ],
- [
- 11.53837,
- 46.35015
- ],
- [
- 11.52445,
- 46.35502
- ],
- [
- 11.47969,
- 46.36277
- ],
- [
- 11.48052,
- 46.3551
- ],
- [
- 11.46322,
- 46.34922
- ],
- [
- 11.45556,
- 46.33396
- ],
- [
- 11.42105,
- 46.32441
- ],
- [
- 11.40517,
- 46.32387
- ],
- [
- 11.39865,
- 46.31426
- ],
- [
- 11.39994,
- 46.30709
- ],
- [
- 11.39569,
- 46.3083
- ],
- [
- 11.38188,
- 46.30052
- ],
- [
- 11.36088,
- 46.29906
- ],
- [
- 11.36078,
- 46.29682
- ],
- [
- 11.38256,
- 46.29177
- ],
- [
- 11.3871,
- 46.28143
- ],
- [
- 11.39609,
- 46.27423
- ],
- [
- 11.39862,
- 46.264
- ],
- [
- 11.38756,
- 46.26029
- ],
- [
- 11.37347,
- 46.2629
- ],
- [
- 11.36836,
- 46.26135
- ],
- [
- 11.35783,
- 46.26481
- ],
- [
- 11.35495,
- 46.27564
- ],
- [
- 11.33912,
- 46.28306
- ],
- [
- 11.33379,
- 46.29049
- ],
- [
- 11.33471,
- 46.2962
- ],
- [
- 11.3129,
- 46.28256
- ],
- [
- 11.31737,
- 46.27303
- ],
- [
- 11.30645,
- 46.25786
- ],
- [
- 11.29124,
- 46.2604
- ],
- [
- 11.24743,
- 46.22933
- ],
- [
- 11.20622,
- 46.2187
- ],
- [
- 11.18267,
- 46.22496
- ],
- [
- 11.17077,
- 46.23806
- ],
- [
- 11.17994,
- 46.24434
- ],
- [
- 11.18351,
- 46.25269
- ],
- [
- 11.18935,
- 46.25354
- ],
- [
- 11.19448,
- 46.2461
- ],
- [
- 11.20029,
- 46.25566
- ],
- [
- 11.16604,
- 46.26129
- ],
- [
- 11.14885,
- 46.27904
- ],
- [
- 11.13725,
- 46.28336
- ],
- [
- 11.14293,
- 46.28934
- ],
- [
- 11.15847,
- 46.29059
- ],
- [
- 11.16439,
- 46.2986
- ],
- [
- 11.1761,
- 46.30346
- ],
- [
- 11.1847,
- 46.32104
- ],
- [
- 11.18894,
- 46.32151
- ],
- [
- 11.18696,
- 46.32673
- ],
- [
- 11.1942,
- 46.33016
- ],
- [
- 11.20204,
- 46.34212
- ],
- [
- 11.19001,
- 46.35984
- ],
- [
- 11.19263,
- 46.36578
- ],
- [
- 11.20393,
- 46.36765
- ],
- [
- 11.19792,
- 46.37232
- ],
- [
- 11.21275,
- 46.39804
- ],
- [
- 11.21345,
- 46.40675
- ],
- [
- 11.20565,
- 46.4166
- ],
- [
- 11.21026,
- 46.4206
- ],
- [
- 11.20347,
- 46.42682
- ],
- [
- 11.21416,
- 46.43556
- ],
- [
- 11.21634,
- 46.44255
- ],
- [
- 11.20903,
- 46.45293
- ],
- [
- 11.21419,
- 46.45807
- ],
- [
- 11.21736,
- 46.45731
- ],
- [
- 11.21886,
- 46.46199
- ],
- [
- 11.21626,
- 46.47277
- ],
- [
- 11.20939,
- 46.481
- ],
- [
- 11.20876,
- 46.49346
- ],
- [
- 11.19608,
- 46.50241
- ],
- [
- 11.1924,
- 46.501
- ],
- [
- 11.18686,
- 46.50734
- ],
- [
- 11.18002,
- 46.49823
- ],
- [
- 11.17014,
- 46.49635
- ],
- [
- 11.16095,
- 46.4878
- ],
- [
- 11.12934,
- 46.48058
- ],
- [
- 11.1103,
- 46.49643
- ],
- [
- 11.10449,
- 46.4948
- ],
- [
- 11.08812,
- 46.50128
- ],
- [
- 11.08173,
- 46.53021
- ],
- [
- 11.05915,
- 46.51508
- ],
- [
- 11.03795,
- 46.51357
- ],
- [
- 11.05006,
- 46.50784
- ],
- [
- 11.05773,
- 46.49235
- ],
- [
- 11.06278,
- 46.4894
- ],
- [
- 11.06894,
- 46.46619
- ],
- [
- 11.07625,
- 46.45487
- ],
- [
- 11.0778,
- 46.44569
- ],
- [
- 11.07301,
- 46.44042
- ],
- [
- 11.05394,
- 46.44849
- ],
- [
- 11.0414,
- 46.44569
- ],
- [
- 11.02817,
- 46.46116
- ],
- [
- 11.00952,
- 46.46917
- ],
- [
- 11.00462,
- 46.47607
- ],
- [
- 10.98695,
- 46.48289
- ],
- [
- 10.96543,
- 46.48103
- ],
- [
- 10.95791,
- 46.46983
- ],
- [
- 10.93819,
- 46.46578
- ],
- [
- 10.9325,
- 46.45831
- ],
- [
- 10.93332,
- 46.4528
- ],
- [
- 10.91305,
- 46.44284
- ],
- [
- 10.89161,
- 46.44366
- ],
- [
- 10.88324,
- 46.44995
- ],
- [
- 10.88093,
- 46.44579
- ],
- [
- 10.87162,
- 46.4438
- ],
- [
- 10.86174,
- 46.43509
- ],
- [
- 10.85113,
- 46.43817
- ],
- [
- 10.80034,
- 46.44185
- ],
- [
- 10.78906,
- 46.45164
- ],
- [
- 10.77835,
- 46.47112
- ],
- [
- 10.76934,
- 46.47609
- ],
- [
- 10.76463,
- 46.4848
- ],
- [
- 10.75906,
- 46.48547
- ],
- [
- 10.74422,
- 46.48333
- ],
- [
- 10.71753,
- 46.46022
- ],
- [
- 10.69667,
- 46.4573
- ],
- [
- 10.68293,
- 46.44846
- ],
- [
- 10.66821,
- 46.45122
- ],
- [
- 10.63303,
- 46.44309
- ],
- [
- 10.61439,
- 46.45098
- ],
- [
- 10.60128,
- 46.46139
- ],
- [
- 10.59995,
- 46.46766
- ],
- [
- 10.57672,
- 46.47237
- ],
- [
- 10.55875,
- 46.48187
- ],
- [
- 10.54986,
- 46.49123
- ],
- [
- 10.53685,
- 46.49062
- ],
- [
- 10.52657,
- 46.49425
- ],
- [
- 10.49366,
- 46.49719
- ],
- [
- 10.48141,
- 46.49337
- ],
- [
- 10.45714,
- 46.5096
- ],
- [
- 10.45124,
- 46.53083
- ],
- [
- 10.45814,
- 46.54215
- ],
- [
- 10.47056,
- 46.54377
- ],
- [
- 10.46954,
- 46.54856
- ],
- [
- 10.47617,
- 46.55749
- ],
- [
- 10.47321,
- 46.56701
- ],
- [
- 10.48305,
- 46.5777
- ],
- [
- 10.48575,
- 46.58921
- ],
- [
- 10.48221,
- 46.59199
- ],
- [
- 10.48576,
- 46.59805
- ],
- [
- 10.48291,
- 46.60512
- ],
- [
- 10.49055,
- 46.61394
- ],
- [
- 10.44632,
- 46.63989
- ],
- [
- 10.40935,
- 46.63389
- ],
- [
- 10.40011,
- 46.63648
- ],
- [
- 10.39873,
- 46.6455
- ],
- [
- 10.38946,
- 46.65862
- ],
- [
- 10.39057,
- 46.67089
- ],
- [
- 10.3803,
- 46.68399
- ],
- [
- 10.38615,
- 46.68821
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0",
- "url": "https://geoservices.buergernetz.bz.it/geokatalog"
- },
- "best": true,
- "category": "photo",
- "country_code": "IT",
- "end_date": "2015-11",
- "id": "South-Tyrol-Orthofoto-2014-2015",
- "license_url": "https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&REQUEST=GetCapabilities",
- "max_zoom": 18,
- "name": "South Tyrol Orthofoto 2014/2015",
- "start_date": "2014-07",
- "type": "tms",
- "url": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_2015_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.71495,
- 46.51227
- ],
- [
- 11.69889,
- 46.50218
- ],
- [
- 11.6672,
- 46.49647
- ],
- [
- 11.64515,
- 46.49743
- ],
- [
- 11.63849,
- 46.50051
- ],
- [
- 11.63495,
- 46.49486
- ],
- [
- 11.64297,
- 46.49346
- ],
- [
- 11.65174,
- 46.48271
- ],
- [
- 11.64536,
- 46.47189
- ],
- [
- 11.64179,
- 46.47439
- ],
- [
- 11.62679,
- 46.4708
- ],
- [
- 11.62987,
- 46.46377
- ],
- [
- 11.61882,
- 46.44325
- ],
- [
- 11.61936,
- 46.43957
- ],
- [
- 11.62508,
- 46.43957
- ],
- [
- 11.62508,
- 46.44797
- ],
- [
- 11.63349,
- 46.44587
- ],
- [
- 11.63769,
- 46.45846
- ],
- [
- 11.64399,
- 46.45846
- ],
- [
- 11.6608,
- 46.44587
- ],
- [
- 11.66711,
- 46.44587
- ],
- [
- 11.66711,
- 46.47525
- ],
- [
- 11.69442,
- 46.47735
- ],
- [
- 11.69652,
- 46.48575
- ],
- [
- 11.70913,
- 46.49624
- ],
- [
- 11.70913,
- 46.50254
- ],
- [
- 11.71333,
- 46.50254
- ],
- [
- 11.71495,
- 46.51227
- ]
- ],
- [
- [
- 11.61435,
- 46.41535
- ],
- [
- 11.60161,
- 46.39731
- ],
- [
- 11.60307,
- 46.38924
- ],
- [
- 11.5932,
- 46.38265
- ],
- [
- 11.56489,
- 46.38018
- ],
- [
- 11.55878,
- 46.35076
- ],
- [
- 11.55249,
- 46.34418
- ],
- [
- 11.54423,
- 46.34483
- ],
- [
- 11.53837,
- 46.35015
- ],
- [
- 11.52445,
- 46.35502
- ],
- [
- 11.47969,
- 46.36277
- ],
- [
- 11.48052,
- 46.3551
- ],
- [
- 11.46322,
- 46.34922
- ],
- [
- 11.45556,
- 46.33396
- ],
- [
- 11.42105,
- 46.32441
- ],
- [
- 11.40517,
- 46.32387
- ],
- [
- 11.39865,
- 46.31426
- ],
- [
- 11.39994,
- 46.30709
- ],
- [
- 11.39569,
- 46.3083
- ],
- [
- 11.38188,
- 46.30052
- ],
- [
- 11.36088,
- 46.29906
- ],
- [
- 11.36078,
- 46.29682
- ],
- [
- 11.38256,
- 46.29177
- ],
- [
- 11.3871,
- 46.28143
- ],
- [
- 11.39609,
- 46.27423
- ],
- [
- 11.39862,
- 46.264
- ],
- [
- 11.38756,
- 46.26029
- ],
- [
- 11.37347,
- 46.2629
- ],
- [
- 11.36836,
- 46.26135
- ],
- [
- 11.35783,
- 46.26481
- ],
- [
- 11.35495,
- 46.27564
- ],
- [
- 11.33912,
- 46.28306
- ],
- [
- 11.33379,
- 46.29049
- ],
- [
- 11.33471,
- 46.2962
- ],
- [
- 11.3129,
- 46.28256
- ],
- [
- 11.31737,
- 46.27303
- ],
- [
- 11.30645,
- 46.25786
- ],
- [
- 11.29124,
- 46.2604
- ],
- [
- 11.24743,
- 46.22933
- ],
- [
- 11.20622,
- 46.2187
- ],
- [
- 11.18267,
- 46.22496
- ],
- [
- 11.17077,
- 46.23806
- ],
- [
- 11.17994,
- 46.24434
- ],
- [
- 11.18351,
- 46.25269
- ],
- [
- 11.18935,
- 46.25354
- ],
- [
- 11.19448,
- 46.2461
- ],
- [
- 11.20029,
- 46.25566
- ],
- [
- 11.16604,
- 46.26129
- ],
- [
- 11.14885,
- 46.27904
- ],
- [
- 11.13725,
- 46.28336
- ],
- [
- 11.14293,
- 46.28934
- ],
- [
- 11.15847,
- 46.29059
- ],
- [
- 11.16439,
- 46.2986
- ],
- [
- 11.1761,
- 46.30346
- ],
- [
- 11.1847,
- 46.32104
- ],
- [
- 11.18894,
- 46.32151
- ],
- [
- 11.18696,
- 46.32673
- ],
- [
- 11.1942,
- 46.33016
- ],
- [
- 11.20204,
- 46.34212
- ],
- [
- 11.19001,
- 46.35984
- ],
- [
- 11.19263,
- 46.36578
- ],
- [
- 11.20393,
- 46.36765
- ],
- [
- 11.19792,
- 46.37232
- ],
- [
- 11.21275,
- 46.39804
- ],
- [
- 11.21345,
- 46.40675
- ],
- [
- 11.20644,
- 46.4156
- ],
- [
- 11.20485,
- 46.3997
- ],
- [
- 11.17754,
- 46.3997
- ],
- [
- 11.17543,
- 46.3871
- ],
- [
- 11.16703,
- 46.38081
- ],
- [
- 11.16703,
- 46.36821
- ],
- [
- 11.16283,
- 46.36821
- ],
- [
- 11.16283,
- 46.29895
- ],
- [
- 11.12501,
- 46.29895
- ],
- [
- 11.12291,
- 46.25488
- ],
- [
- 11.13131,
- 46.25278
- ],
- [
- 11.12711,
- 46.24858
- ],
- [
- 11.16283,
- 46.24858
- ],
- [
- 11.16283,
- 46.215
- ],
- [
- 11.24898,
- 46.2129
- ],
- [
- 11.25108,
- 46.2234
- ],
- [
- 11.2889,
- 46.2234
- ],
- [
- 11.2889,
- 46.24019
- ],
- [
- 11.3015,
- 46.25278
- ],
- [
- 11.30991,
- 46.25278
- ],
- [
- 11.31201,
- 46.24858
- ],
- [
- 11.33722,
- 46.25068
- ],
- [
- 11.34143,
- 46.26747
- ],
- [
- 11.34563,
- 46.26747
- ],
- [
- 11.34773,
- 46.25698
- ],
- [
- 11.35613,
- 46.24858
- ],
- [
- 11.41707,
- 46.25278
- ],
- [
- 11.41917,
- 46.32414
- ],
- [
- 11.49271,
- 46.32204
- ],
- [
- 11.48851,
- 46.33044
- ],
- [
- 11.49901,
- 46.32834
- ],
- [
- 11.50111,
- 46.34723
- ],
- [
- 11.52423,
- 46.34723
- ],
- [
- 11.53894,
- 46.34513
- ],
- [
- 11.53894,
- 46.32834
- ],
- [
- 11.55995,
- 46.32414
- ],
- [
- 11.58306,
- 46.34932
- ],
- [
- 11.58306,
- 46.37241
- ],
- [
- 11.60407,
- 46.37241
- ],
- [
- 11.60617,
- 46.38291
- ],
- [
- 11.61458,
- 46.38291
- ],
- [
- 11.62508,
- 46.3934
- ],
- [
- 11.62508,
- 46.41229
- ],
- [
- 11.61435,
- 46.41535
- ]
- ],
- [
- [
- 11.20663,
- 46.41745
- ],
- [
- 11.21026,
- 46.4206
- ],
- [
- 11.20347,
- 46.42682
- ],
- [
- 11.21416,
- 46.43556
- ],
- [
- 11.21634,
- 46.44255
- ],
- [
- 11.20903,
- 46.45293
- ],
- [
- 11.21419,
- 46.45807
- ],
- [
- 11.21736,
- 46.45731
- ],
- [
- 11.21886,
- 46.46199
- ],
- [
- 11.21626,
- 46.47277
- ],
- [
- 11.20939,
- 46.481
- ],
- [
- 11.20876,
- 46.49346
- ],
- [
- 11.19608,
- 46.50241
- ],
- [
- 11.1924,
- 46.501
- ],
- [
- 11.18686,
- 46.50734
- ],
- [
- 11.18002,
- 46.49823
- ],
- [
- 11.17014,
- 46.49635
- ],
- [
- 11.16095,
- 46.4878
- ],
- [
- 11.12934,
- 46.48058
- ],
- [
- 11.1103,
- 46.49643
- ],
- [
- 11.10449,
- 46.4948
- ],
- [
- 11.08812,
- 46.50128
- ],
- [
- 11.08173,
- 46.53021
- ],
- [
- 11.05915,
- 46.51508
- ],
- [
- 11.03795,
- 46.51357
- ],
- [
- 11.05006,
- 46.50784
- ],
- [
- 11.05773,
- 46.49235
- ],
- [
- 11.06278,
- 46.4894
- ],
- [
- 11.06894,
- 46.46619
- ],
- [
- 11.07625,
- 46.45487
- ],
- [
- 11.0778,
- 46.44569
- ],
- [
- 11.07301,
- 46.44042
- ],
- [
- 11.05394,
- 46.44849
- ],
- [
- 11.0414,
- 46.44569
- ],
- [
- 11.02817,
- 46.46116
- ],
- [
- 11.00952,
- 46.46917
- ],
- [
- 11.00462,
- 46.47607
- ],
- [
- 10.98695,
- 46.48289
- ],
- [
- 10.96543,
- 46.48103
- ],
- [
- 10.96285,
- 46.47718
- ],
- [
- 10.96952,
- 46.45217
- ],
- [
- 10.98423,
- 46.45217
- ],
- [
- 10.98843,
- 46.44587
- ],
- [
- 10.99894,
- 46.44587
- ],
- [
- 11.01154,
- 46.42068
- ],
- [
- 11.04096,
- 46.42068
- ],
- [
- 11.08088,
- 46.43537
- ],
- [
- 11.08298,
- 46.47525
- ],
- [
- 11.15232,
- 46.47525
- ],
- [
- 11.18804,
- 46.48365
- ],
- [
- 11.19014,
- 46.47525
- ],
- [
- 11.20695,
- 46.47315
- ],
- [
- 11.20485,
- 46.44587
- ],
- [
- 11.19855,
- 46.44167
- ],
- [
- 11.19435,
- 46.42698
- ],
- [
- 11.19014,
- 46.42698
- ],
- [
- 11.19014,
- 46.42068
- ],
- [
- 11.20695,
- 46.42068
- ],
- [
- 11.20663,
- 46.41745
- ]
- ],
- [
- [
- 10.47433,
- 46.55501
- ],
- [
- 10.47617,
- 46.55749
- ],
- [
- 10.47321,
- 46.56701
- ],
- [
- 10.48305,
- 46.5777
- ],
- [
- 10.48575,
- 46.58921
- ],
- [
- 10.48221,
- 46.59199
- ],
- [
- 10.48576,
- 46.59805
- ],
- [
- 10.48291,
- 46.60512
- ],
- [
- 10.49055,
- 46.61394
- ],
- [
- 10.46952,
- 46.62628
- ],
- [
- 10.47785,
- 46.61797
- ],
- [
- 10.47785,
- 46.59069
- ],
- [
- 10.47365,
- 46.59069
- ],
- [
- 10.47155,
- 46.5676
- ],
- [
- 10.46314,
- 46.55501
- ],
- [
- 10.47433,
- 46.55501
- ]
- ],
- [
- [
- 10.46925,
- 46.62643
- ],
- [
- 10.44632,
- 46.63989
- ],
- [
- 10.40935,
- 46.63389
- ],
- [
- 10.40011,
- 46.63648
- ],
- [
- 10.39873,
- 46.6455
- ],
- [
- 10.38946,
- 46.65862
- ],
- [
- 10.39057,
- 46.67089
- ],
- [
- 10.3803,
- 46.68399
- ],
- [
- 10.38615,
- 46.68821
- ],
- [
- 10.39201,
- 46.69016
- ],
- [
- 10.40215,
- 46.70624
- ],
- [
- 10.41274,
- 46.70821
- ],
- [
- 10.41622,
- 46.71479
- ],
- [
- 10.4168,
- 46.71847
- ],
- [
- 10.39934,
- 46.73435
- ],
- [
- 10.43464,
- 46.75356
- ],
- [
- 10.44107,
- 46.75413
- ],
- [
- 10.44011,
- 46.77149
- ],
- [
- 10.42123,
- 46.78861
- ],
- [
- 10.42845,
- 46.79755
- ],
- [
- 10.43626,
- 46.79843
- ],
- [
- 10.43373,
- 46.81106
- ],
- [
- 10.42532,
- 46.80686
- ],
- [
- 10.42532,
- 46.79847
- ],
- [
- 10.42112,
- 46.79847
- ],
- [
- 10.41692,
- 46.78587
- ],
- [
- 10.41692,
- 46.75229
- ],
- [
- 10.3938,
- 46.7376
- ],
- [
- 10.3896,
- 46.72081
- ],
- [
- 10.3854,
- 46.72081
- ],
- [
- 10.3791,
- 46.69353
- ],
- [
- 10.3791,
- 46.66834
- ],
- [
- 10.3833,
- 46.66414
- ],
- [
- 10.3812,
- 46.64735
- ],
- [
- 10.3896,
- 46.64525
- ],
- [
- 10.3938,
- 46.63056
- ],
- [
- 10.42532,
- 46.62846
- ],
- [
- 10.44843,
- 46.63476
- ],
- [
- 10.46925,
- 46.62643
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0",
- "url": "https://geoservices.buergernetz.bz.it/geokatalog/"
- },
- "category": "historicphoto",
- "country_code": "IT",
- "end_date": "2014",
- "id": "South-Tyrol-Orthofoto2014",
- "max_zoom": 18,
- "name": "South Tyrol Orthofoto 2014",
- "start_date": "2014",
- "type": "tms",
- "url": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.37851,
- 46.30096
- ],
- [
- 11.38516,
- 46.30241
- ],
- [
- 11.39571,
- 46.30998
- ],
- [
- 11.39893,
- 46.30771
- ],
- [
- 11.40047,
- 46.30835
- ],
- [
- 11.39922,
- 46.30922
- ],
- [
- 11.39641,
- 46.31043
- ],
- [
- 11.39752,
- 46.3114
- ],
- [
- 11.39759,
- 46.31529
- ],
- [
- 11.40432,
- 46.32512
- ],
- [
- 11.41239,
- 46.3245
- ],
- [
- 11.41531,
- 46.32568
- ],
- [
- 11.41956,
- 46.32559
- ],
- [
- 11.45325,
- 46.33531
- ],
- [
- 11.4632,
- 46.35096
- ],
- [
- 11.48003,
- 46.35439
- ],
- [
- 11.47676,
- 46.36434
- ],
- [
- 11.52706,
- 46.3557
- ],
- [
- 11.54972,
- 46.34515
- ],
- [
- 11.55762,
- 46.34977
- ],
- [
- 11.5638,
- 46.38164
- ],
- [
- 11.59641,
- 46.3872
- ],
- [
- 11.61907,
- 46.4252
- ],
- [
- 11.62525,
- 46.47109
- ],
- [
- 11.64705,
- 46.48445
- ],
- [
- 11.63315,
- 46.49875
- ],
- [
- 11.63847,
- 46.5017
- ],
- [
- 11.66456,
- 46.49804
- ],
- [
- 11.70632,
- 46.51086
- ],
- [
- 11.70362,
- 46.62244
- ],
- [
- 11.39677,
- 46.62433
- ],
- [
- 11.38982,
- 46.61077
- ],
- [
- 11.38124,
- 46.61248
- ],
- [
- 11.3742,
- 46.6172
- ],
- [
- 11.3736,
- 46.62351
- ],
- [
- 11.33308,
- 46.62445
- ],
- [
- 11.3324,
- 46.66169
- ],
- [
- 11.28639,
- 46.65415
- ],
- [
- 11.27008,
- 46.72256
- ],
- [
- 11.18099,
- 46.71845
- ],
- [
- 11.1779,
- 46.73045
- ],
- [
- 11.15988,
- 46.72433
- ],
- [
- 11.1331,
- 46.72321
- ],
- [
- 11.11404,
- 46.71539
- ],
- [
- 11.03371,
- 46.70832
- ],
- [
- 10.99869,
- 46.69655
- ],
- [
- 10.92607,
- 46.69632
- ],
- [
- 10.89226,
- 46.68431
- ],
- [
- 10.81879,
- 46.67159
- ],
- [
- 10.76729,
- 46.6697
- ],
- [
- 10.74531,
- 46.66452
- ],
- [
- 10.54001,
- 46.64237
- ],
- [
- 10.5098,
- 46.63247
- ],
- [
- 10.46448,
- 46.63341
- ],
- [
- 10.49143,
- 46.61407
- ],
- [
- 10.47546,
- 46.56476
- ],
- [
- 10.47787,
- 46.55756
- ],
- [
- 10.47049,
- 46.54257
- ],
- [
- 10.45916,
- 46.5408
- ],
- [
- 10.45057,
- 46.52863
- ],
- [
- 10.45504,
- 46.50879
- ],
- [
- 10.48199,
- 46.49296
- ],
- [
- 10.48851,
- 46.49567
- ],
- [
- 10.55065,
- 46.49071
- ],
- [
- 10.57966,
- 46.47369
- ],
- [
- 10.60181,
- 46.4692
- ],
- [
- 10.62138,
- 46.44779
- ],
- [
- 10.63992,
- 46.44555
- ],
- [
- 10.67116,
- 46.45252
- ],
- [
- 10.67888,
- 46.4485
- ],
- [
- 10.6933,
- 46.45737
- ],
- [
- 10.71562,
- 46.46104
- ],
- [
- 10.74188,
- 46.48386
- ],
- [
- 10.76385,
- 46.48539
- ],
- [
- 10.77913,
- 46.4705
- ],
- [
- 10.7975,
- 46.4446
- ],
- [
- 10.86205,
- 46.43656
- ],
- [
- 10.88333,
- 46.45099
- ],
- [
- 10.91183,
- 46.44401
- ],
- [
- 10.93191,
- 46.45335
- ],
- [
- 10.93809,
- 46.4666
- ],
- [
- 10.95491,
- 46.47014
- ],
- [
- 10.96075,
- 46.4744
- ],
- [
- 10.96556,
- 46.48232
- ],
- [
- 10.98753,
- 46.48362
- ],
- [
- 11.00573,
- 46.47735
- ],
- [
- 11.01002,
- 46.47121
- ],
- [
- 11.02993,
- 46.46116
- ],
- [
- 11.03525,
- 46.453
- ],
- [
- 11.03903,
- 46.45276
- ],
- [
- 11.04177,
- 46.44708
- ],
- [
- 11.04675,
- 46.44661
- ],
- [
- 11.05482,
- 46.45016
- ],
- [
- 11.06409,
- 46.4459
- ],
- [
- 11.0677,
- 46.44294
- ],
- [
- 11.07336,
- 46.44129
- ],
- [
- 11.07731,
- 46.44354
- ],
- [
- 11.07868,
- 46.44862
- ],
- [
- 11.06787,
- 46.46577
- ],
- [
- 11.0622,
- 46.48835
- ],
- [
- 11.0586,
- 46.48917
- ],
- [
- 11.05001,
- 46.50643
- ],
- [
- 11.03525,
- 46.51399
- ],
- [
- 11.04366,
- 46.51741
- ],
- [
- 11.05619,
- 46.51635
- ],
- [
- 11.0828,
- 46.53171
- ],
- [
- 11.08829,
- 46.50312
- ],
- [
- 11.10512,
- 46.49615
- ],
- [
- 11.11044,
- 46.49709
- ],
- [
- 11.13035,
- 46.4822
- ],
- [
- 11.15919,
- 46.48917
- ],
- [
- 11.1858,
- 46.50855
- ],
- [
- 11.20794,
- 46.49473
- ],
- [
- 11.21241,
- 46.48208
- ],
- [
- 11.21962,
- 46.46021
- ],
- [
- 11.20717,
- 46.41668
- ],
- [
- 11.21524,
- 46.4065
- ],
- [
- 11.20073,
- 46.37204
- ],
- [
- 11.20597,
- 46.36695
- ],
- [
- 11.19472,
- 46.3647
- ],
- [
- 11.19275,
- 46.36043
- ],
- [
- 11.20348,
- 46.34515
- ],
- [
- 11.18923,
- 46.3234
- ],
- [
- 11.17816,
- 46.30319
- ],
- [
- 11.16477,
- 46.29731
- ],
- [
- 11.16271,
- 46.29044
- ],
- [
- 11.14391,
- 46.28812
- ],
- [
- 11.13928,
- 46.28415
- ],
- [
- 11.15001,
- 46.27991
- ],
- [
- 11.15838,
- 46.26834
- ],
- [
- 11.16653,
- 46.2619
- ],
- [
- 11.17477,
- 46.25914
- ],
- [
- 11.18301,
- 46.25864
- ],
- [
- 11.18599,
- 46.25755
- ],
- [
- 11.19397,
- 46.25715
- ],
- [
- 11.19719,
- 46.2581
- ],
- [
- 11.19996,
- 46.25626
- ],
- [
- 11.1958,
- 46.25092
- ],
- [
- 11.19508,
- 46.249
- ],
- [
- 11.19183,
- 46.24901
- ],
- [
- 11.19168,
- 46.25283
- ],
- [
- 11.18932,
- 46.25395
- ],
- [
- 11.18704,
- 46.25405
- ],
- [
- 11.1826,
- 46.25209
- ],
- [
- 11.18116,
- 46.24865
- ],
- [
- 11.19484,
- 46.24838
- ],
- [
- 11.20756,
- 46.24807
- ],
- [
- 11.20683,
- 46.21877
- ],
- [
- 11.2073,
- 46.21773
- ],
- [
- 11.20923,
- 46.21948
- ],
- [
- 11.24657,
- 46.23109
- ],
- [
- 11.25433,
- 46.23872
- ],
- [
- 11.25966,
- 46.24089
- ],
- [
- 11.26365,
- 46.24199
- ],
- [
- 11.27442,
- 46.25184
- ],
- [
- 11.27652,
- 46.25181
- ],
- [
- 11.28266,
- 46.2565
- ],
- [
- 11.28631,
- 46.26107
- ],
- [
- 11.29429,
- 46.26086
- ],
- [
- 11.30313,
- 46.25929
- ],
- [
- 11.31042,
- 46.26599
- ],
- [
- 11.30888,
- 46.2676
- ],
- [
- 11.31145,
- 46.26872
- ],
- [
- 11.31485,
- 46.27341
- ],
- [
- 11.31334,
- 46.27943
- ],
- [
- 11.31025,
- 46.2816
- ],
- [
- 11.31073,
- 46.28367
- ],
- [
- 11.31575,
- 46.28596
- ],
- [
- 11.32317,
- 46.29224
- ],
- [
- 11.32291,
- 46.29319
- ],
- [
- 11.33167,
- 46.29479
- ],
- [
- 11.33201,
- 46.29708
- ],
- [
- 11.3333,
- 46.2982
- ],
- [
- 11.33566,
- 46.29776
- ],
- [
- 11.33815,
- 46.29951
- ],
- [
- 11.34017,
- 46.29838
- ],
- [
- 11.3375,
- 46.29432
- ],
- [
- 11.33858,
- 46.29195
- ],
- [
- 11.33583,
- 46.29067
- ],
- [
- 11.34158,
- 46.28207
- ],
- [
- 11.34562,
- 46.28023
- ],
- [
- 11.3475,
- 46.28026
- ],
- [
- 11.356,
- 46.2765
- ],
- [
- 11.35733,
- 46.27409
- ],
- [
- 11.35729,
- 46.27252
- ],
- [
- 11.35664,
- 46.2697
- ],
- [
- 11.35823,
- 46.26582
- ],
- [
- 11.36527,
- 46.26469
- ],
- [
- 11.36986,
- 46.26255
- ],
- [
- 11.373,
- 46.26398
- ],
- [
- 11.37763,
- 46.26226
- ],
- [
- 11.38857,
- 46.26166
- ],
- [
- 11.39308,
- 46.26499
- ],
- [
- 11.39789,
- 46.26472
- ],
- [
- 11.39565,
- 46.27282
- ],
- [
- 11.38917,
- 46.27863
- ],
- [
- 11.38643,
- 46.27988
- ],
- [
- 11.38505,
- 46.2813
- ],
- [
- 11.38441,
- 46.28705
- ],
- [
- 11.38093,
- 46.29127
- ],
- [
- 11.37887,
- 46.29221
- ],
- [
- 11.37102,
- 46.29324
- ],
- [
- 11.35862,
- 46.29613
- ],
- [
- 11.35896,
- 46.29889
- ],
- [
- 11.36025,
- 46.3009
- ],
- [
- 11.36458,
- 46.30191
- ],
- [
- 11.36797,
- 46.30072
- ],
- [
- 11.36815,
- 46.3017
- ],
- [
- 11.37851,
- 46.30096
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0",
- "url": "https://geoservices.buergernetz.bz.it/geokatalog"
- },
- "best": true,
- "category": "photo",
- "country_code": "IT",
- "end_date": "2017-10",
- "id": "South-Tyrol-Orthofoto-2017",
- "license_url": "https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&REQUEST=GetCapabilities",
- "max_zoom": 20,
- "name": "South Tyrol Orthofoto 2017",
- "start_date": "2017-07",
- "type": "tms",
- "url": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=p_bz-orthoimagery:P_BZ_OF_2017_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.38615,
- 46.68821
- ],
- [
- 10.39201,
- 46.69016
- ],
- [
- 10.40215,
- 46.70624
- ],
- [
- 10.41274,
- 46.70821
- ],
- [
- 10.41622,
- 46.71479
- ],
- [
- 10.4168,
- 46.71847
- ],
- [
- 10.39934,
- 46.73435
- ],
- [
- 10.43464,
- 46.75356
- ],
- [
- 10.44107,
- 46.75413
- ],
- [
- 10.44011,
- 46.77149
- ],
- [
- 10.42123,
- 46.78861
- ],
- [
- 10.42845,
- 46.79755
- ],
- [
- 10.43851,
- 46.79869
- ],
- [
- 10.44925,
- 46.80462
- ],
- [
- 10.45602,
- 46.81635
- ],
- [
- 10.45438,
- 46.82221
- ],
- [
- 10.4583,
- 46.82478
- ],
- [
- 10.45513,
- 46.83059
- ],
- [
- 10.45906,
- 46.83548
- ],
- [
- 10.46483,
- 46.83624
- ],
- [
- 10.46229,
- 46.8413
- ],
- [
- 10.46987,
- 46.84933
- ],
- [
- 10.46819,
- 46.8553
- ],
- [
- 10.47838,
- 46.86013
- ],
- [
- 10.48372,
- 46.85543
- ],
- [
- 10.49628,
- 46.85305
- ],
- [
- 10.49931,
- 46.84857
- ],
- [
- 10.52124,
- 46.84653
- ],
- [
- 10.5527,
- 46.8511
- ],
- [
- 10.55795,
- 46.84695
- ],
- [
- 10.55264,
- 46.8408
- ],
- [
- 10.55536,
- 46.84087
- ],
- [
- 10.58883,
- 46.85125
- ],
- [
- 10.59502,
- 46.85829
- ],
- [
- 10.60936,
- 46.8597
- ],
- [
- 10.62441,
- 46.86558
- ],
- [
- 10.64858,
- 46.86655
- ],
- [
- 10.66787,
- 46.87651
- ],
- [
- 10.67297,
- 46.87138
- ],
- [
- 10.69112,
- 46.86861
- ],
- [
- 10.69786,
- 46.86339
- ],
- [
- 10.69508,
- 46.85308
- ],
- [
- 10.70594,
- 46.84786
- ],
- [
- 10.71763,
- 46.84795
- ],
- [
- 10.72333,
- 46.83892
- ],
- [
- 10.75621,
- 46.83383
- ],
- [
- 10.76481,
- 46.82409
- ],
- [
- 10.76387,
- 46.81971
- ],
- [
- 10.75239,
- 46.81387
- ],
- [
- 10.74506,
- 46.80223
- ],
- [
- 10.7276,
- 46.79709
- ],
- [
- 10.73122,
- 46.78925
- ],
- [
- 10.75722,
- 46.78624
- ],
- [
- 10.77744,
- 46.79149
- ],
- [
- 10.78678,
- 46.79735
- ],
- [
- 10.81439,
- 46.77662
- ],
- [
- 10.82479,
- 46.77472
- ],
- [
- 10.83129,
- 46.78138
- ],
- [
- 10.84112,
- 46.78282
- ],
- [
- 10.85354,
- 46.77506
- ],
- [
- 10.86845,
- 46.77313
- ],
- [
- 10.86993,
- 46.7669
- ],
- [
- 10.88294,
- 46.76393
- ],
- [
- 10.88962,
- 46.76529
- ],
- [
- 10.8951,
- 46.77092
- ],
- [
- 10.90527,
- 46.76911
- ],
- [
- 10.92299,
- 46.7764
- ],
- [
- 10.92821,
- 46.77408
- ],
- [
- 10.94388,
- 46.77648
- ],
- [
- 10.97522,
- 46.77361
- ],
- [
- 10.97932,
- 46.77014
- ],
- [
- 10.99475,
- 46.76804
- ],
- [
- 11.01397,
- 46.77317
- ],
- [
- 11.02328,
- 46.76715
- ],
- [
- 11.0346,
- 46.79428
- ],
- [
- 11.04234,
- 46.801
- ],
- [
- 11.03792,
- 46.80562
- ],
- [
- 11.05633,
- 46.80928
- ],
- [
- 11.07279,
- 46.82092
- ],
- [
- 11.08171,
- 46.82252
- ],
- [
- 11.0762,
- 46.83384
- ],
- [
- 11.06887,
- 46.83793
- ],
- [
- 11.07303,
- 46.84345
- ],
- [
- 11.06988,
- 46.85348
- ],
- [
- 11.08742,
- 46.87927
- ],
- [
- 11.09961,
- 46.88922
- ],
- [
- 11.09538,
- 46.89178
- ],
- [
- 11.09795,
- 46.89844
- ],
- [
- 11.0946,
- 46.91247
- ],
- [
- 11.10792,
- 46.91706
- ],
- [
- 11.10804,
- 46.92632
- ],
- [
- 11.11418,
- 46.93234
- ],
- [
- 11.13851,
- 46.92865
- ],
- [
- 11.16322,
- 46.94091
- ],
- [
- 11.16642,
- 46.94479
- ],
- [
- 11.16114,
- 46.94979
- ],
- [
- 11.1637,
- 46.96677
- ],
- [
- 11.17598,
- 46.96367
- ],
- [
- 11.18658,
- 46.97062
- ],
- [
- 11.19527,
- 46.97152
- ],
- [
- 11.20418,
- 46.96877
- ],
- [
- 11.20688,
- 46.96403
- ],
- [
- 11.22047,
- 46.97025
- ],
- [
- 11.24139,
- 46.9708
- ],
- [
- 11.24865,
- 46.97517
- ],
- [
- 11.25582,
- 46.97535
- ],
- [
- 11.26272,
- 46.98169
- ],
- [
- 11.27662,
- 46.98168
- ],
- [
- 11.28762,
- 46.98699
- ],
- [
- 11.30709,
- 46.98525
- ],
- [
- 11.3205,
- 46.99345
- ],
- [
- 11.33765,
- 46.98606
- ],
- [
- 11.34516,
- 46.99169
- ],
- [
- 11.35932,
- 46.99154
- ],
- [
- 11.37697,
- 46.98025
- ],
- [
- 11.38324,
- 46.97168
- ],
- [
- 11.40465,
- 46.96609
- ],
- [
- 11.43929,
- 46.97601
- ],
- [
- 11.45134,
- 46.99294
- ],
- [
- 11.46803,
- 46.99582
- ],
- [
- 11.46859,
- 47.003
- ],
- [
- 11.47831,
- 47.01201
- ],
- [
- 11.50238,
- 47.01073
- ],
- [
- 11.50313,
- 47.00808
- ],
- [
- 11.51366,
- 47.00595
- ],
- [
- 11.51679,
- 47.00091
- ],
- [
- 11.53381,
- 46.99233
- ],
- [
- 11.53846,
- 46.98519
- ],
- [
- 11.55297,
- 46.99149
- ],
- [
- 11.57663,
- 46.99657
- ],
- [
- 11.58,
- 47.00277
- ],
- [
- 11.58879,
- 47.00641
- ],
- [
- 11.59901,
- 47.00657
- ],
- [
- 11.60944,
- 47.01207
- ],
- [
- 11.62697,
- 47.01437
- ],
- [
- 11.63629,
- 47.00383
- ],
- [
- 11.66542,
- 46.99304
- ],
- [
- 11.6885,
- 46.99658
- ],
- [
- 11.71226,
- 46.99416
- ],
- [
- 11.72897,
- 46.97322
- ],
- [
- 11.74698,
- 46.97013
- ],
- [
- 11.76411,
- 46.97412
- ],
- [
- 11.78106,
- 46.99342
- ],
- [
- 11.81526,
- 46.991
- ],
- [
- 11.83564,
- 46.99417
- ],
- [
- 11.84396,
- 47.0025
- ],
- [
- 11.85192,
- 47.0014
- ],
- [
- 11.86722,
- 47.01252
- ],
- [
- 11.87393,
- 47.01136
- ],
- [
- 11.8794,
- 47.01714
- ],
- [
- 11.89137,
- 47.01728
- ],
- [
- 11.91627,
- 47.03422
- ],
- [
- 11.9329,
- 47.03864
- ],
- [
- 11.94688,
- 47.03464
- ],
- [
- 11.95457,
- 47.04374
- ],
- [
- 11.96773,
- 47.04158
- ],
- [
- 11.97912,
- 47.0511
- ],
- [
- 11.98587,
- 47.04815
- ],
- [
- 11.99534,
- 47.05064
- ],
- [
- 12.02037,
- 47.04821
- ],
- [
- 12.02968,
- 47.05127
- ],
- [
- 12.03353,
- 47.0583
- ],
- [
- 12.04276,
- 47.06228
- ],
- [
- 12.07543,
- 47.0605
- ],
- [
- 12.08035,
- 47.06951
- ],
- [
- 12.09308,
- 47.07791
- ],
- [
- 12.10329,
- 47.07931
- ],
- [
- 12.11867,
- 47.07445
- ],
- [
- 12.13561,
- 47.08171
- ],
- [
- 12.15125,
- 47.08049
- ],
- [
- 12.15997,
- 47.08267
- ],
- [
- 12.18589,
- 47.09322
- ],
- [
- 12.2278,
- 47.08302
- ],
- [
- 12.24228,
- 47.06892
- ],
- [
- 12.23786,
- 47.0644
- ],
- [
- 12.21821,
- 47.05795
- ],
- [
- 12.2182,
- 47.04483
- ],
- [
- 12.20552,
- 47.02595
- ],
- [
- 12.18048,
- 47.02414
- ],
- [
- 12.16423,
- 47.01782
- ],
- [
- 12.14786,
- 47.02357
- ],
- [
- 12.12723,
- 47.01218
- ],
- [
- 12.12285,
- 47.00662
- ],
- [
- 12.1322,
- 46.99339
- ],
- [
- 12.12974,
- 46.98593
- ],
- [
- 12.13977,
- 46.982
- ],
- [
- 12.13808,
- 46.96514
- ],
- [
- 12.13328,
- 46.96292
- ],
- [
- 12.13882,
- 46.95764
- ],
- [
- 12.15927,
- 46.95133
- ],
- [
- 12.1702,
- 46.93758
- ],
- [
- 12.15414,
- 46.91654
- ],
- [
- 12.14675,
- 46.91413
- ],
- [
- 12.16205,
- 46.908
- ],
- [
- 12.16959,
- 46.91121
- ],
- [
- 12.19154,
- 46.90682
- ],
- [
- 12.20106,
- 46.8965
- ],
- [
- 12.2022,
- 46.88806
- ],
- [
- 12.21663,
- 46.87517
- ],
- [
- 12.22147,
- 46.88084
- ],
- [
- 12.23125,
- 46.88146
- ],
- [
- 12.2345,
- 46.88919
- ],
- [
- 12.24162,
- 46.89192
- ],
- [
- 12.27486,
- 46.88512
- ],
- [
- 12.27979,
- 46.87921
- ],
- [
- 12.27736,
- 46.87319
- ],
- [
- 12.29326,
- 46.86566
- ],
- [
- 12.2912,
- 46.85704
- ],
- [
- 12.29733,
- 46.84455
- ],
- [
- 12.30833,
- 46.84137
- ],
- [
- 12.30726,
- 46.83271
- ],
- [
- 12.285,
- 46.81503
- ],
- [
- 12.29383,
- 46.8027
- ],
- [
- 12.28905,
- 46.79948
- ],
- [
- 12.28889,
- 46.79427
- ],
- [
- 12.28232,
- 46.79153
- ],
- [
- 12.28539,
- 46.7839
- ],
- [
- 12.30943,
- 46.78603
- ],
- [
- 12.35837,
- 46.77583
- ],
- [
- 12.37036,
- 46.74163
- ],
- [
- 12.38475,
- 46.71745
- ],
- [
- 12.40283,
- 46.70811
- ],
- [
- 12.41103,
- 46.70701
- ],
- [
- 12.41522,
- 46.70163
- ],
- [
- 12.42862,
- 46.6997
- ],
- [
- 12.42943,
- 46.69567
- ],
- [
- 12.44268,
- 46.68979
- ],
- [
- 12.47501,
- 46.68756
- ],
- [
- 12.4795,
- 46.67969
- ],
- [
- 12.43473,
- 46.66714
- ],
- [
- 12.40648,
- 46.64167
- ],
- [
- 12.38115,
- 46.64183
- ],
- [
- 12.37944,
- 46.63733
- ],
- [
- 12.3915,
- 46.62765
- ],
- [
- 12.38577,
- 46.62154
- ],
- [
- 12.35939,
- 46.61829
- ],
- [
- 12.34465,
- 46.62376
- ],
- [
- 12.34034,
- 46.63022
- ],
- [
- 12.33578,
- 46.62732
- ],
- [
- 12.3172,
- 46.62876
- ],
- [
- 12.31785,
- 46.62355
- ],
- [
- 12.30802,
- 46.61811
- ],
- [
- 12.28413,
- 46.61623
- ],
- [
- 12.26982,
- 46.62003
- ],
- [
- 12.25931,
- 46.62809
- ],
- [
- 12.24502,
- 46.62326
- ],
- [
- 12.24198,
- 46.61586
- ],
- [
- 12.21241,
- 46.60918
- ],
- [
- 12.20444,
- 46.59836
- ],
- [
- 12.19228,
- 46.59321
- ],
- [
- 12.19261,
- 46.62059
- ],
- [
- 12.1818,
- 46.6192
- ],
- [
- 12.17117,
- 46.63275
- ],
- [
- 12.16062,
- 46.63574
- ],
- [
- 12.1511,
- 46.63215
- ],
- [
- 12.1436,
- 46.6327
- ],
- [
- 12.13739,
- 46.64122
- ],
- [
- 12.12342,
- 46.64475
- ],
- [
- 12.10949,
- 46.65204
- ],
- [
- 12.10609,
- 46.65783
- ],
- [
- 12.09345,
- 46.66123
- ],
- [
- 12.08826,
- 46.66638
- ],
- [
- 12.07985,
- 46.66686
- ],
- [
- 12.07038,
- 46.67386
- ],
- [
- 12.07173,
- 46.66064
- ],
- [
- 12.06686,
- 46.65364
- ],
- [
- 12.07479,
- 46.64329
- ],
- [
- 12.06837,
- 46.63997
- ],
- [
- 12.06495,
- 46.62121
- ],
- [
- 12.05448,
- 46.61778
- ],
- [
- 12.05318,
- 46.60989
- ],
- [
- 12.04613,
- 46.60716
- ],
- [
- 12.05043,
- 46.60016
- ],
- [
- 12.04763,
- 46.58357
- ],
- [
- 12.03665,
- 46.57668
- ],
- [
- 12.0266,
- 46.55871
- ],
- [
- 12.02189,
- 46.55791
- ],
- [
- 11.99941,
- 46.53208
- ],
- [
- 11.99411,
- 46.53345
- ],
- [
- 11.98704,
- 46.54417
- ],
- [
- 11.96633,
- 46.54363
- ],
- [
- 11.95094,
- 46.53869
- ],
- [
- 11.94719,
- 46.52879
- ],
- [
- 11.94147,
- 46.52689
- ],
- [
- 11.93294,
- 46.52631
- ],
- [
- 11.9121,
- 46.532
- ],
- [
- 11.8904,
- 46.52175
- ],
- [
- 11.85192,
- 46.51682
- ],
- [
- 11.82849,
- 46.50783
- ],
- [
- 11.82334,
- 46.51315
- ],
- [
- 11.82391,
- 46.52141
- ],
- [
- 11.81086,
- 46.53146
- ],
- [
- 11.79385,
- 46.52023
- ],
- [
- 11.79189,
- 46.51322
- ],
- [
- 11.76157,
- 46.50503
- ],
- [
- 11.74317,
- 46.50391
- ],
- [
- 11.73202,
- 46.50877
- ],
- [
- 11.71935,
- 46.50916
- ],
- [
- 11.71524,
- 46.51245
- ],
- [
- 11.69889,
- 46.50218
- ],
- [
- 11.6672,
- 46.49647
- ],
- [
- 11.64515,
- 46.49743
- ],
- [
- 11.63849,
- 46.50051
- ],
- [
- 11.63495,
- 46.49486
- ],
- [
- 11.64297,
- 46.49346
- ],
- [
- 11.65174,
- 46.48271
- ],
- [
- 11.64536,
- 46.47189
- ],
- [
- 11.64179,
- 46.47439
- ],
- [
- 11.62679,
- 46.4708
- ],
- [
- 11.62987,
- 46.46377
- ],
- [
- 11.61882,
- 46.44325
- ],
- [
- 11.62143,
- 46.42539
- ],
- [
- 11.60161,
- 46.39731
- ],
- [
- 11.60307,
- 46.38924
- ],
- [
- 11.5932,
- 46.38265
- ],
- [
- 11.56489,
- 46.38018
- ],
- [
- 11.55878,
- 46.35076
- ],
- [
- 11.55249,
- 46.34418
- ],
- [
- 11.54423,
- 46.34483
- ],
- [
- 11.53837,
- 46.35015
- ],
- [
- 11.52445,
- 46.35502
- ],
- [
- 11.47969,
- 46.36277
- ],
- [
- 11.48052,
- 46.3551
- ],
- [
- 11.46322,
- 46.34922
- ],
- [
- 11.45556,
- 46.33396
- ],
- [
- 11.42105,
- 46.32441
- ],
- [
- 11.40517,
- 46.32387
- ],
- [
- 11.39865,
- 46.31426
- ],
- [
- 11.39994,
- 46.30709
- ],
- [
- 11.39569,
- 46.3083
- ],
- [
- 11.38188,
- 46.30052
- ],
- [
- 11.36088,
- 46.29906
- ],
- [
- 11.36078,
- 46.29682
- ],
- [
- 11.38256,
- 46.29177
- ],
- [
- 11.3871,
- 46.28143
- ],
- [
- 11.39609,
- 46.27423
- ],
- [
- 11.39862,
- 46.264
- ],
- [
- 11.38756,
- 46.26029
- ],
- [
- 11.37347,
- 46.2629
- ],
- [
- 11.36836,
- 46.26135
- ],
- [
- 11.35783,
- 46.26481
- ],
- [
- 11.35495,
- 46.27564
- ],
- [
- 11.33912,
- 46.28306
- ],
- [
- 11.33379,
- 46.29049
- ],
- [
- 11.33471,
- 46.2962
- ],
- [
- 11.3129,
- 46.28256
- ],
- [
- 11.31737,
- 46.27303
- ],
- [
- 11.30645,
- 46.25786
- ],
- [
- 11.29124,
- 46.2604
- ],
- [
- 11.24743,
- 46.22933
- ],
- [
- 11.20622,
- 46.2187
- ],
- [
- 11.18267,
- 46.22496
- ],
- [
- 11.17077,
- 46.23806
- ],
- [
- 11.17994,
- 46.24434
- ],
- [
- 11.18351,
- 46.25269
- ],
- [
- 11.18935,
- 46.25354
- ],
- [
- 11.19448,
- 46.2461
- ],
- [
- 11.20029,
- 46.25566
- ],
- [
- 11.16604,
- 46.26129
- ],
- [
- 11.14885,
- 46.27904
- ],
- [
- 11.13725,
- 46.28336
- ],
- [
- 11.14293,
- 46.28934
- ],
- [
- 11.15847,
- 46.29059
- ],
- [
- 11.16439,
- 46.2986
- ],
- [
- 11.1761,
- 46.30346
- ],
- [
- 11.1847,
- 46.32104
- ],
- [
- 11.18894,
- 46.32151
- ],
- [
- 11.18696,
- 46.32673
- ],
- [
- 11.1942,
- 46.33016
- ],
- [
- 11.20204,
- 46.34212
- ],
- [
- 11.19001,
- 46.35984
- ],
- [
- 11.19263,
- 46.36578
- ],
- [
- 11.20393,
- 46.36765
- ],
- [
- 11.19792,
- 46.37232
- ],
- [
- 11.21275,
- 46.39804
- ],
- [
- 11.21345,
- 46.40675
- ],
- [
- 11.20565,
- 46.4166
- ],
- [
- 11.21026,
- 46.4206
- ],
- [
- 11.20347,
- 46.42682
- ],
- [
- 11.21416,
- 46.43556
- ],
- [
- 11.21634,
- 46.44255
- ],
- [
- 11.20903,
- 46.45293
- ],
- [
- 11.21419,
- 46.45807
- ],
- [
- 11.21736,
- 46.45731
- ],
- [
- 11.21886,
- 46.46199
- ],
- [
- 11.21626,
- 46.47277
- ],
- [
- 11.20939,
- 46.481
- ],
- [
- 11.20876,
- 46.49346
- ],
- [
- 11.19608,
- 46.50241
- ],
- [
- 11.1924,
- 46.501
- ],
- [
- 11.18686,
- 46.50734
- ],
- [
- 11.18002,
- 46.49823
- ],
- [
- 11.17014,
- 46.49635
- ],
- [
- 11.16095,
- 46.4878
- ],
- [
- 11.12934,
- 46.48058
- ],
- [
- 11.1103,
- 46.49643
- ],
- [
- 11.10449,
- 46.4948
- ],
- [
- 11.08812,
- 46.50128
- ],
- [
- 11.08173,
- 46.53021
- ],
- [
- 11.05915,
- 46.51508
- ],
- [
- 11.03795,
- 46.51357
- ],
- [
- 11.05006,
- 46.50784
- ],
- [
- 11.05773,
- 46.49235
- ],
- [
- 11.06278,
- 46.4894
- ],
- [
- 11.06894,
- 46.46619
- ],
- [
- 11.07625,
- 46.45487
- ],
- [
- 11.0778,
- 46.44569
- ],
- [
- 11.07301,
- 46.44042
- ],
- [
- 11.05394,
- 46.44849
- ],
- [
- 11.0414,
- 46.44569
- ],
- [
- 11.02817,
- 46.46116
- ],
- [
- 11.00952,
- 46.46917
- ],
- [
- 11.00462,
- 46.47607
- ],
- [
- 10.98695,
- 46.48289
- ],
- [
- 10.96543,
- 46.48103
- ],
- [
- 10.95791,
- 46.46983
- ],
- [
- 10.93819,
- 46.46578
- ],
- [
- 10.9325,
- 46.45831
- ],
- [
- 10.93332,
- 46.4528
- ],
- [
- 10.91305,
- 46.44284
- ],
- [
- 10.89161,
- 46.44366
- ],
- [
- 10.88324,
- 46.44995
- ],
- [
- 10.88093,
- 46.44579
- ],
- [
- 10.87162,
- 46.4438
- ],
- [
- 10.86174,
- 46.43509
- ],
- [
- 10.85113,
- 46.43817
- ],
- [
- 10.80034,
- 46.44185
- ],
- [
- 10.78906,
- 46.45164
- ],
- [
- 10.77835,
- 46.47112
- ],
- [
- 10.76934,
- 46.47609
- ],
- [
- 10.76463,
- 46.4848
- ],
- [
- 10.75906,
- 46.48547
- ],
- [
- 10.74422,
- 46.48333
- ],
- [
- 10.71753,
- 46.46022
- ],
- [
- 10.69667,
- 46.4573
- ],
- [
- 10.68293,
- 46.44846
- ],
- [
- 10.66821,
- 46.45122
- ],
- [
- 10.63303,
- 46.44309
- ],
- [
- 10.61439,
- 46.45098
- ],
- [
- 10.60128,
- 46.46139
- ],
- [
- 10.59995,
- 46.46766
- ],
- [
- 10.57672,
- 46.47237
- ],
- [
- 10.55875,
- 46.48187
- ],
- [
- 10.54986,
- 46.49123
- ],
- [
- 10.53685,
- 46.49062
- ],
- [
- 10.52657,
- 46.49425
- ],
- [
- 10.49366,
- 46.49719
- ],
- [
- 10.48141,
- 46.49337
- ],
- [
- 10.45714,
- 46.5096
- ],
- [
- 10.45124,
- 46.53083
- ],
- [
- 10.45814,
- 46.54215
- ],
- [
- 10.47056,
- 46.54377
- ],
- [
- 10.46954,
- 46.54856
- ],
- [
- 10.47617,
- 46.55749
- ],
- [
- 10.47321,
- 46.56701
- ],
- [
- 10.48305,
- 46.5777
- ],
- [
- 10.48575,
- 46.58921
- ],
- [
- 10.48221,
- 46.59199
- ],
- [
- 10.48576,
- 46.59805
- ],
- [
- 10.48291,
- 46.60512
- ],
- [
- 10.49055,
- 46.61394
- ],
- [
- 10.44632,
- 46.63989
- ],
- [
- 10.40935,
- 46.63389
- ],
- [
- 10.40011,
- 46.63648
- ],
- [
- 10.39873,
- 46.6455
- ],
- [
- 10.38946,
- 46.65862
- ],
- [
- 10.39057,
- 46.67089
- ],
- [
- 10.3803,
- 46.68399
- ],
- [
- 10.38615,
- 46.68821
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano",
- "url": "https://geoservices.buergernetz.bz.it/geokatalog"
- },
- "category": "map",
- "country_code": "IT",
- "description": "Topographical basemap of South Tyrol",
- "id": "South-Tyrol-Topomap",
- "license_url": "https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&REQUEST=GetCapabilities",
- "max_zoom": 20,
- "name": "South Tyrol Topomap",
- "type": "tms",
- "url": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_BASEMAP_TOPO&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 26.21384,
- 55.85075
- ],
- [
- 26.38583,
- 55.70453
- ],
- [
- 26.63036,
- 55.68067
- ],
- [
- 26.62053,
- 55.56892
- ],
- [
- 26.52422,
- 55.50992
- ],
- [
- 26.55415,
- 55.38883
- ],
- [
- 26.43993,
- 55.34794
- ],
- [
- 26.79197,
- 55.3212
- ],
- [
- 26.82913,
- 55.27635
- ],
- [
- 26.74346,
- 55.25399
- ],
- [
- 26.67648,
- 55.15883
- ],
- [
- 26.46112,
- 55.12856
- ],
- [
- 26.35774,
- 55.15054
- ],
- [
- 26.22963,
- 55.10732
- ],
- [
- 26.27138,
- 55.07759
- ],
- [
- 26.20851,
- 54.99741
- ],
- [
- 26.06191,
- 54.94161
- ],
- [
- 25.85782,
- 54.9276
- ],
- [
- 25.74298,
- 54.81506
- ],
- [
- 25.76261,
- 54.5769
- ],
- [
- 25.53194,
- 54.34182
- ],
- [
- 25.67716,
- 54.32381
- ],
- [
- 25.78573,
- 54.23362
- ],
- [
- 25.78588,
- 54.15506
- ],
- [
- 25.55508,
- 54.14619
- ],
- [
- 25.51095,
- 54.17503
- ],
- [
- 25.58967,
- 54.22858
- ],
- [
- 25.51362,
- 54.30785
- ],
- [
- 25.26893,
- 54.27447
- ],
- [
- 25.0706,
- 54.13363
- ],
- [
- 24.95737,
- 54.17206
- ],
- [
- 24.81338,
- 54.14486
- ],
- [
- 24.77902,
- 54.09991
- ],
- [
- 24.87128,
- 54.0349
- ],
- [
- 24.81957,
- 53.99772
- ],
- [
- 24.68459,
- 53.96211
- ],
- [
- 24.69787,
- 54.01714
- ],
- [
- 24.62591,
- 54.0105
- ],
- [
- 24.43426,
- 53.90144
- ],
- [
- 24.35206,
- 53.89679
- ],
- [
- 24.20161,
- 53.97001
- ],
- [
- 23.96833,
- 53.9267
- ],
- [
- 23.91302,
- 53.96968
- ],
- [
- 23.77812,
- 53.89892
- ],
- [
- 23.70977,
- 53.93945
- ],
- [
- 23.53704,
- 53.94307
- ],
- [
- 23.48224,
- 53.98938
- ],
- [
- 23.52734,
- 54.04735
- ],
- [
- 23.48586,
- 54.15323
- ],
- [
- 23.38679,
- 54.22484
- ],
- [
- 23.04212,
- 54.31597
- ],
- [
- 23.01021,
- 54.3828
- ],
- [
- 22.85469,
- 54.4104
- ],
- [
- 22.792,
- 54.36332
- ],
- [
- 22.70234,
- 54.4529
- ],
- [
- 22.68386,
- 54.58597
- ],
- [
- 22.74897,
- 54.63198
- ],
- [
- 22.74297,
- 54.72682
- ],
- [
- 22.88668,
- 54.8135
- ],
- [
- 22.8204,
- 54.91198
- ],
- [
- 22.6424,
- 54.97134
- ],
- [
- 22.58924,
- 55.07024
- ],
- [
- 22.0806,
- 55.02448
- ],
- [
- 22.03241,
- 55.0841
- ],
- [
- 21.91307,
- 55.08168
- ],
- [
- 21.64919,
- 55.18081
- ],
- [
- 21.50151,
- 55.18682
- ],
- [
- 21.38437,
- 55.2937
- ],
- [
- 21.27098,
- 55.24501
- ],
- [
- 21.09836,
- 55.25639
- ],
- [
- 20.94217,
- 55.28245
- ],
- [
- 21.08635,
- 55.56183
- ],
- [
- 21.03995,
- 55.83636
- ],
- [
- 21.06403,
- 56.06995
- ],
- [
- 21.20478,
- 56.08117
- ],
- [
- 21.2308,
- 56.16233
- ],
- [
- 21.5021,
- 56.2955
- ],
- [
- 21.72359,
- 56.31382
- ],
- [
- 21.83566,
- 56.37162
- ],
- [
- 21.96954,
- 56.37665
- ],
- [
- 22.0153,
- 56.42428
- ],
- [
- 22.43727,
- 56.4064
- ],
- [
- 22.68,
- 56.35159
- ],
- [
- 22.91917,
- 56.37902
- ],
- [
- 22.94668,
- 56.41465
- ],
- [
- 23.09325,
- 56.30464
- ],
- [
- 23.17034,
- 56.36677
- ],
- [
- 23.30645,
- 56.38305
- ],
- [
- 23.55717,
- 56.33382
- ],
- [
- 23.7648,
- 56.37332
- ],
- [
- 23.76669,
- 56.32381
- ],
- [
- 24.019,
- 56.32976
- ],
- [
- 24.12146,
- 56.2489
- ],
- [
- 24.28574,
- 56.30064
- ],
- [
- 24.45415,
- 56.25816
- ],
- [
- 24.57947,
- 56.28824
- ],
- [
- 24.62841,
- 56.37533
- ],
- [
- 24.90238,
- 56.48053
- ],
- [
- 25.12774,
- 56.20591
- ],
- [
- 25.57714,
- 56.18241
- ],
- [
- 25.67312,
- 56.14937
- ],
- [
- 26.21384,
- 55.85075
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "NŽT ORT10LT",
- "url": "https://www.geoportal.lt"
- },
- "best": true,
- "country_code": "LT",
- "end_date": "2016",
- "id": "ORT10LT",
- "max_zoom": 18,
- "min_zoom": 4,
- "name": "Lithuania - NŽT ORT10LT",
- "start_date": "2010",
- "type": "tms",
- "url": "https://ort10lt.openmap.lt/g16/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Administration du Cadastre et de la Topographie",
- "url": "https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts"
- },
- "country_code": "LU",
- "end_date": "2010-07-20",
- "icon": "https://www.geoportail.lu/static/img/lion.png",
- "id": "lu.geoportail.opendata.basemap",
- "license_url": "https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Basemap geoportail.lu",
- "start_date": "2013-07-19",
- "type": "tms",
- "url": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/basemap/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Administration du Cadastre et de la Topographie",
- "url": "https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts"
- },
- "country_code": "LU",
- "icon": "https://www.geoportail.lu/static/img/lion.png",
- "id": "lu.geoportail.opendata.cadastre",
- "license_url": "https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Cadastre geoportail.lu",
- "type": "tms",
- "url": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/cadastre/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 6.05001,
- 49.82175
- ],
- [
- 6.04979,
- 49.91166
- ],
- [
- 6.18901,
- 49.91172
- ],
- [
- 6.18897,
- 49.82181
- ],
- [
- 6.05001,
- 49.82175
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Administration du Cadastre et de la Topographie",
- "url": "https://act.public.lu/fr/cartographie/lidar"
- },
- "country_code": "LU",
- "end_date": "2017-04-09",
- "icon": "https://www.geoportail.lu/static/img/lion.png",
- "id": "lu.geoportail.opendata.ortho_10cm_proto_lidar",
- "license_url": "https://data.public.lu/en/datasets/lidar-projet-pilote-dun-releve-3d-du-territoire-luxembourgeois",
- "max_zoom": 21,
- "min_zoom": 6,
- "name": "geoportail.lu LIDAR prototype Nordstad 2017",
- "start_date": "2017-04-09",
- "type": "tms",
- "url": "https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_10cm_proto_lidar/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Administration du Cadastre et de la Topographie",
- "url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts"
- },
- "country_code": "LU",
- "icon": "https://www.geoportail.lu/static/img/lion.png",
- "id": "lu.geoportail.opendata.wms_endpoint",
- "license_url": "https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts",
- "name": "geoportail.lu all layers",
- "type": "wms_endpoint",
- "url": "https://wmts1.geoportail.lu/opendata/service?REQUEST=GetCapabilities"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Administration du Cadastre et de la Topographie",
- "url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts"
- },
- "country_code": "LU",
- "end_date": "2017-06-22",
- "icon": "https://www.geoportail.lu/static/img/lion.png",
- "id": "lu.geoportail.opendata.ortho2017",
- "license_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Ortho 2017 geoportail.lu",
- "start_date": "2017-06-14",
- "type": "tms",
- "url": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2017/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Administration du Cadastre et de la Topographie",
- "url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts"
- },
- "country_code": "LU",
- "end_date": "2018-08-05",
- "icon": "https://www.geoportail.lu/static/img/lion.png",
- "id": "lu.geoportail.opendata.ortho2018",
- "license_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Ortho 2018 geoportail.lu",
- "start_date": "2018-07-02",
- "type": "tms",
- "url": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2018/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Administration du Cadastre et de la Topographie",
- "url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts"
- },
- "best": true,
- "country_code": "LU",
- "end_date": "2019-08-22",
- "icon": "https://www.geoportail.lu/static/img/lion.png",
- "id": "lu.geoportail.opendata.ortholatest",
- "license_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Latest available ortho geoportail.lu",
- "start_date": "2019-07-04",
- "type": "tms",
- "url": "https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_latest/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Administration du Cadastre et de la Topographie",
- "url": "https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts"
- },
- "country_code": "LU",
- "end_date": "2010-07-20",
- "icon": "https://www.geoportail.lu/static/img/lion.png",
- "id": "lu.geoportail.opendata.topo",
- "license_url": "https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Topographical Map geoportail.lu",
- "start_date": "2013-07-19",
- "type": "tms",
- "url": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/topo/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 27.66415,
- 55.75354
- ],
- [
- 27.68475,
- 55.93319
- ],
- [
- 28.26703,
- 56.1908
- ],
- [
- 28.23682,
- 56.49827
- ],
- [
- 27.82757,
- 56.94886
- ],
- [
- 27.90997,
- 57.37037
- ],
- [
- 27.58313,
- 57.56387
- ],
- [
- 26.93219,
- 57.63598
- ],
- [
- 26.5202,
- 57.58596
- ],
- [
- 26.0368,
- 57.87192
- ],
- [
- 25.1991,
- 58.10487
- ],
- [
- 24.31744,
- 57.90258
- ],
- [
- 24.31744,
- 57.19669
- ],
- [
- 23.93567,
- 56.9788
- ],
- [
- 23.55115,
- 56.98479
- ],
- [
- 23.23804,
- 57.10283
- ],
- [
- 23.14465,
- 57.37333
- ],
- [
- 22.60632,
- 57.60215
- ],
- [
- 22.60083,
- 57.76953
- ],
- [
- 21.66699,
- 57.56681
- ],
- [
- 21.40057,
- 57.29625
- ],
- [
- 21.38409,
- 57.0177
- ],
- [
- 21.04626,
- 56.80026
- ],
- [
- 20.99133,
- 56.36615
- ],
- [
- 21.0545,
- 56.0392
- ],
- [
- 21.28796,
- 56.05608
- ],
- [
- 21.29895,
- 56.1908
- ],
- [
- 22.11743,
- 56.41936
- ],
- [
- 24.44379,
- 56.24425
- ],
- [
- 24.81183,
- 56.3996
- ],
- [
- 25.15515,
- 56.1694
- ],
- [
- 25.58087,
- 56.12962
- ],
- [
- 26.53668,
- 55.66146
- ],
- [
- 26.91296,
- 55.66766
- ],
- [
- 27.0805,
- 55.80991
- ],
- [
- 27.66415,
- 55.75354
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Latvijas Ģeotelpiskās informācijas aģentūras brīvais WMS serviss 1994 - 1999.gada Latvijas ortofotokarte"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:3059"
- ],
- "country_code": "LV",
- "id": "ORTOFOTO_V1",
- "name": "Orthophoto 1st cycle (1994-1999) - Latvia",
- "type": "wms",
- "url": "https://services.lgia.gov.lv/arcfree/services/Ortofoto_v1/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 26.63086,
- 57.56889
- ],
- [
- 25.16968,
- 58.04882
- ],
- [
- 22.54395,
- 57.76866
- ],
- [
- 21.54419,
- 57.53352
- ],
- [
- 21.01685,
- 56.81892
- ],
- [
- 21.01685,
- 56.03523
- ],
- [
- 22.03857,
- 56.38958
- ],
- [
- 24.71924,
- 56.33481
- ],
- [
- 26.75171,
- 55.66519
- ],
- [
- 28.19092,
- 56.13943
- ],
- [
- 27.78442,
- 57.40946
- ],
- [
- 26.63086,
- 57.56889
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3059",
- "EPSG:4269",
- "EPSG:25884"
- ],
- "country_code": "LV",
- "id": "USSR-Latvia",
- "name": "USSR - Latvia",
- "type": "wms",
- "url": "http://www.gisnet.lv/cgi-bin/topo?FORMAT=image/jpeg&VERSION=1.1.1&service=WMS&REQUEST=GetMap&LAYERS=DTO,DTC,DIVDPTC,PD,VS,DS,PS,M&SRS={proj}&WIDTH={width}&height={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 3.14377,
- 51.35984
- ],
- [
- 3.1575,
- 51.24113
- ],
- [
- 3.33878,
- 51.11544
- ],
- [
- 3.91281,
- 51.05851
- ],
- [
- 4.65714,
- 51.28067
- ],
- [
- 4.89334,
- 51.26348
- ],
- [
- 5.17899,
- 51.12579
- ],
- [
- 5.38498,
- 51.13096
- ],
- [
- 5.54428,
- 51.05678
- ],
- [
- 5.42069,
- 50.85956
- ],
- [
- 5.46738,
- 50.70326
- ],
- [
- 5.65689,
- 50.61926
- ],
- [
- 6.14853,
- 50.62143
- ],
- [
- 6.30234,
- 50.85782
- ],
- [
- 6.29959,
- 50.95438
- ],
- [
- 6.26389,
- 51.01835
- ],
- [
- 6.37238,
- 51.09259
- ],
- [
- 6.40122,
- 51.20114
- ],
- [
- 6.37375,
- 51.25102
- ],
- [
- 6.44516,
- 51.31587
- ],
- [
- 6.42044,
- 51.5496
- ],
- [
- 6.34354,
- 51.67922
- ],
- [
- 6.79672,
- 51.76429
- ],
- [
- 7.04666,
- 51.91024
- ],
- [
- 7.07138,
- 52.04559
- ],
- [
- 7.27188,
- 52.17041
- ],
- [
- 7.30759,
- 52.38551
- ],
- [
- 7.20596,
- 52.53195
- ],
- [
- 7.28287,
- 52.61458
- ],
- [
- 7.29935,
- 52.77853
- ],
- [
- 7.44217,
- 52.97827
- ],
- [
- 7.43393,
- 53.28314
- ],
- [
- 7.04392,
- 53.55159
- ],
- [
- 6.78299,
- 53.63635
- ],
- [
- 6.23917,
- 53.54016
- ],
- [
- 5.6871,
- 53.51241
- ],
- [
- 5.17349,
- 53.43885
- ],
- [
- 4.81644,
- 53.23384
- ],
- [
- 4.65164,
- 53.06583
- ],
- [
- 4.54178,
- 52.48598
- ],
- [
- 4.32205,
- 52.19568
- ],
- [
- 4.08104,
- 52.01369
- ],
- [
- 4.02199,
- 52.01623
- ],
- [
- 3.93684,
- 51.96379
- ],
- [
- 3.95195,
- 51.88079
- ],
- [
- 3.84483,
- 51.84942
- ],
- [
- 3.62373,
- 51.70752
- ],
- [
- 3.65532,
- 51.66069
- ],
- [
- 3.63335,
- 51.62746
- ],
- [
- 3.54683,
- 51.62234
- ],
- [
- 3.39577,
- 51.56091
- ],
- [
- 3.38203,
- 51.51735
- ],
- [
- 3.49876,
- 51.43267
- ],
- [
- 3.32985,
- 51.38556
- ],
- [
- 3.14377,
- 51.35984
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kadaster / Beeldmateriaal.nl, CC BY 4.0",
- "url": "https://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/search?facet.q=license%2FCC-BY&isChild=%27false%27&resultType=details&any_OR_title_OR_keyword=luchtfoto&fast=index&_content_type=json&from=1&to=20&sortBy=relevance"
- },
- "best": true,
- "country_code": "NL",
- "description": "Nationwide data set 25cm resolution color aerial imagery of the most recent year.",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/nl/PDOK-Luchtfoto-Beeldmateriaal-25cm-latest.png",
- "id": "Actueel_ortho25_WMS",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?pid=630995#p630995",
- "max_zoom": 19,
- "name": "PDOK aerial imagery Beeldmateriaal.nl 25cm latest",
- "type": "tms",
- "url": "https://geodata.nationaalgeoregister.nl/luchtfoto/rgb/wmts?FORMAT=image/jpeg&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Actueel_ortho25&STYLE=&FORMAT=image/jpeg&tileMatrixSet=OGC:1.0:GoogleMapsCompatible&tileMatrix={zoom}&tileRow={y}&tileCol={x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Fiskeridirektoratet",
- "url": "https://www.fiskeridir.no/Kart"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Aquaculture/marine farms (licensed sites, may not yet have any installations)",
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg/175px-Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg.png",
- "id": "fiskeridir-akvakultur",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-January/006347.html",
- "max_zoom": 22,
- "min_zoom": 3,
- "name": "Fiskeridirektoratet Aquaculture overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://ogc.fiskeridir.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_262&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Kartverket",
- "url": "https://wiki.openstreetmap.org/wiki/No:Kartverket_import"
- },
- "country_code": "NO",
- "description": "Topographic map N50, equivalent to Norway 1:50.000 paper map series.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-topo4",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 15,
- "min_zoom": 3,
- "name": "Kartverket N50 topo",
- "type": "tms",
- "url": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={zoom}&x={x}&y={y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Kartverket",
- "url": "https://kartverket.no/geodataarbeid/temadata/nasjonal-database-for-tur--og-friluftsruter/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326"
- ],
- "country_code": "NO",
- "description": "Hiking trails from the Norwegian database `Tur- og Friluftsruter´, including DNT routes.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-friluft",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 24,
- "min_zoom": 6,
- "name": "Kartverket Hiking Trails",
- "overlay": true,
- "type": "wms",
- "url": "https://wms.geonorge.no/skwms1/wms.friluftsruter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Fotrute&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Kartverket",
- "url": "https://www.kartverket.no/data/kartdata/vegdata/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3029",
- "EPSG:3030",
- "EPSG:3031",
- "EPSG:3032",
- "EPSG:3033",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3036",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:3575",
- "EPSG:23029",
- "EPSG:23030",
- "EPSG:23031",
- "EPSG:23032",
- "EPSG:23033",
- "EPSG:23034",
- "EPSG:23035",
- "EPSG:23036",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:27393",
- "EPSG:32629",
- "EPSG:32630",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Norwegian road network from the National Road database (NVDB). Colours represent national, county, municipal, private and forest roads + footways/cycleways.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-vegnett",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 24,
- "min_zoom": 3,
- "name": "Kartverket Road Network",
- "overlay": true,
- "type": "wms",
- "url": "https://openwms.statkart.no/skwms1/wms.vegnett?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=all&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://www.kartverket.no/geodataarbeid/Universell-utforming/"
- },
- "available_projections": [
- "EPSG:3034",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:27394",
- "EPSG:27395",
- "EPSG:27396",
- "EPSG:27397",
- "EPSG:27398",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Accessibility for the visually impaired, wheelchairs and electrical wheelchairs.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-tilgjengelighet",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 20,
- "min_zoom": 7,
- "name": "Kartverket Accessibility overlay",
- "overlay": true,
- "type": "wms_endpoint",
- "url": "https://openwms.statkart.no/skwms1/wms.tilgjengelighet2?request=GetCapabilities&service=WMS"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://www.kartverket.no/kunnskap/Norges-grenser/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3034",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:27391",
- "EPSG:27392",
- "EPSG:27393",
- "EPSG:27394",
- "EPSG:27395",
- "EPSG:27396",
- "EPSG:27397",
- "EPSG:27398",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Official administrative boundaries at the national, county and municipality levels",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-abas",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 22,
- "min_zoom": 1,
- "name": "Kartverket Administrative Boundaries overlay",
- "overlay": true,
- "privacy_policy_url": "https://www.kartverket.no/en/About-The-Norwegian-Mapping-Authority/privacy-policy/",
- "type": "wms",
- "url": "https://wms.geonorge.no/skwms1/wms.adm_enheter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=fylker_gjel,kommuner_gjel&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://kartverket.no/kart/Nasjonalt-register-over-luftfartshindre/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3029",
- "EPSG:3030",
- "EPSG:3031",
- "EPSG:3032",
- "EPSG:3033",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3036",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:3575",
- "EPSG:4258",
- "EPSG:23029",
- "EPSG:23030",
- "EPSG:23031",
- "EPSG:23032",
- "EPSG:23033",
- "EPSG:23034",
- "EPSG:23035",
- "EPSG:23036",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Vertical obstructions to aircrafts, above 15m in rural areas and 30m in urban areas (e.g. masts, towers, high buildings, power lines)",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-luftfartshindre",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 20,
- "min_zoom": 7,
- "name": "Kartverket Aviation Obstructions overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://openwms.statkart.no/skwms1/wms.nrl?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nrl3_wms&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://seeiendom.kartverket.no"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3034",
- "EPSG:5105",
- "EPSG:5106",
- "EPSG:5107",
- "EPSG:5108",
- "EPSG:5109",
- "EPSG:5110",
- "EPSG:5111",
- "EPSG:5112",
- "EPSG:5113",
- "EPSG:5114",
- "EPSG:5115",
- "EPSG:5116",
- "EPSG:5117",
- "EPSG:5118",
- "EPSG:5119",
- "EPSG:5120",
- "EPSG:5121",
- "EPSG:5122",
- "EPSG:5123",
- "EPSG:5124",
- "EPSG:5125",
- "EPSG:5126",
- "EPSG:5127",
- "EPSG:5128",
- "EPSG:5129",
- "EPSG:5130",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:27391",
- "EPSG:27392",
- "EPSG:27393",
- "EPSG:27394",
- "EPSG:27395",
- "EPSG:27396",
- "EPSG:27397",
- "EPSG:27398",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Real estate boundaries from the official land register (`matrikkelen´). Monthly update.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-matrikkel",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 20,
- "min_zoom": 14,
- "name": "Kartverket Cadastral overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://wms.geonorge.no/skwms1/wms.matrikkel?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=matrikkel_WMS&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://www.kartverket.no/Prosjekter/Nasjonal-detaljert-hoydemodell/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3029",
- "EPSG:3030",
- "EPSG:3031",
- "EPSG:3032",
- "EPSG:3033",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3036",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:3575",
- "EPSG:5105",
- "EPSG:5106",
- "EPSG:5107",
- "EPSG:5108",
- "EPSG:5109",
- "EPSG:5110",
- "EPSG:5111",
- "EPSG:5112",
- "EPSG:5113",
- "EPSG:5114",
- "EPSG:5115",
- "EPSG:5116",
- "EPSG:5117",
- "EPSG:5118",
- "EPSG:5119",
- "EPSG:5120",
- "EPSG:5121",
- "EPSG:5122",
- "EPSG:5123",
- "EPSG:5124",
- "EPSG:5125",
- "EPSG:5126",
- "EPSG:5127",
- "EPSG:5128",
- "EPSG:5129",
- "EPSG:5130",
- "EPSG:4258",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32629",
- "EPSG:32630",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636",
- "EPSG:23029",
- "EPSG:23030",
- "EPSG:23031",
- "EPSG:23032",
- "EPSG:23033",
- "EPSG:23034",
- "EPSG:23035",
- "EPSG:23036"
- ],
- "country_code": "NO",
- "description": "Contours for Norway",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-hoydekurver",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 22,
- "min_zoom": 9,
- "name": "Kartverket Contour Lines overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://openwms.statkart.no/skwms1/wms.topo4?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=hoydetall5linje,hoydetall5punkt,hoydepunkt,vannpunkt,hoydekurver_1m,hoydekurver_5m,N50Hoydekurver,N250Hoydekurver,N500Hoydekurver,N1000Hoydekurver,N2000Hoydekurver&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://www.kartverket.no/kunnskap/historie/kartverkets-historiske-arkiv/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3029",
- "EPSG:3030",
- "EPSG:3031",
- "EPSG:3032",
- "EPSG:3033",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3036",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:3575",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:27391",
- "EPSG:27392",
- "EPSG:27393",
- "EPSG:27394",
- "EPSG:27395",
- "EPSG:27396",
- "EPSG:27397",
- "EPSG:27398",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "1st edition of historic Economic maps for Norway 1960-90s (`Økonomisk kartverk´). Available from zoom 16. Please correct local imagery offset.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-ok-1st",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 20,
- "min_zoom": 11,
- "name": "Kartverket Economic Maps (historic)",
- "type": "wms",
- "url": "https://wms.geonorge.no/skwms1/wms.n5raster2?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n5raster_foerstegang_metadata,n5raster_foerstegang&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://kartkatalog.geonorge.no/metadata/kartverket/fjellskygge-cache/cca7c129-fe66-4c96-9091-40d92290dd81"
- },
- "country_code": "NO",
- "description": "Hillshade for Norway",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-fjellskygge",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 15,
- "min_zoom": 9,
- "name": "Kartverket Hillshade overlay",
- "overlay": true,
- "type": "tms",
- "url": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=fjellskygge&zoom={zoom}&x={x}&y={y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://www.kartverket.no/kart/historiske-kart/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3034",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:27391",
- "EPSG:27392",
- "EPSG:27393",
- "EPSG:27394",
- "EPSG:27395",
- "EPSG:27396",
- "EPSG:27397",
- "EPSG:27398",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Historic maps - for the time being `Amtskartserien´ 1826-1917.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-historic",
- "max_zoom": 15,
- "min_zoom": 5,
- "name": "Kartverket Historic maps",
- "type": "wms",
- "url": "https://wms.geonorge.no/skwms1/wms.historiskekart?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=amt1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -15.01273,
- -60.16205
- ],
- [
- 33.3326,
- -60.17016
- ],
- [
- 33.32144,
- -73.0009
- ],
- [
- -15.0239,
- -72.99613
- ],
- [
- -15.01273,
- -60.16205
- ]
- ],
- [
- [
- -173.00076,
- -70.54952
- ],
- [
- -125.00321,
- -70.54878
- ],
- [
- -125.00167,
- -78.99977
- ],
- [
- -172.99922,
- -79.0002
- ],
- [
- -173.00076,
- -70.54952
- ]
- ],
- [
- [
- 3.24857,
- 56.08599
- ],
- [
- 2.60924,
- 56.59428
- ],
- [
- 1.47215,
- 58.45924
- ],
- [
- 1.77704,
- 61.36251
- ],
- [
- -0.49301,
- 63.88665
- ],
- [
- -13.73292,
- 69.76376
- ],
- [
- -12.43655,
- 72.58741
- ],
- [
- -5.11965,
- 74.39626
- ],
- [
- -3.60356,
- 79.12998
- ],
- [
- 5.85587,
- 82.34863
- ],
- [
- 34.98861,
- 82.3401
- ],
- [
- 37.96874,
- 78.62784
- ],
- [
- 37.99619,
- 75.79673
- ],
- [
- 36.95796,
- 73.68962
- ],
- [
- 32.07458,
- 70.27336
- ],
- [
- 30.3511,
- 69.56882
- ],
- [
- 21.46179,
- 69.57098
- ],
- [
- 18.3032,
- 68.36681
- ],
- [
- 14.47997,
- 66.2558
- ],
- [
- 11.50266,
- 63.28307
- ],
- [
- 11.50166,
- 58.95444
- ],
- [
- 11.08246,
- 58.96771
- ],
- [
- 10.03051,
- 58.25173
- ],
- [
- 8.88244,
- 57.69534
- ],
- [
- 3.24857,
- 56.08599
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://www.kartverket.no/Kart/Sjokart/"
- },
- "country_code": "NO",
- "description": "Norwegian nautical charts (includes Spitsbergen/Svalbard and Antarctica). Raster representation of paper charts. Updated biweekly.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-sjokart",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 20,
- "min_zoom": 3,
- "name": "Kartverket Nautical Charts",
- "type": "tms",
- "url": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=sjokartraster&zoom={zoom}&x={x}&y={y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kartverket",
- "url": "https://www.kartverket.no/kart/stedsnavn/"
- },
- "country_code": "NO",
- "description": "Official Norwegian place names from the SSR database. Selectable categories.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-ssr2",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 22,
- "min_zoom": 8,
- "name": "Kartverket Place Names overlay",
- "overlay": true,
- "type": "wms_endpoint",
- "url": "https://openwms.statkart.no/skwms1/wms.ssr2?request=GetCapabilities&service=WMS"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 3.24857,
- 56.08599
- ],
- [
- 2.60924,
- 56.59428
- ],
- [
- 1.47215,
- 58.45924
- ],
- [
- 1.77704,
- 61.36251
- ],
- [
- -0.49301,
- 63.88665
- ],
- [
- -13.73292,
- 69.76376
- ],
- [
- -12.43655,
- 72.58741
- ],
- [
- -5.11965,
- 74.39626
- ],
- [
- -3.60356,
- 79.12998
- ],
- [
- 5.85587,
- 82.34863
- ],
- [
- 34.98861,
- 82.3401
- ],
- [
- 37.96874,
- 78.62784
- ],
- [
- 37.99619,
- 75.79673
- ],
- [
- 36.95796,
- 73.68962
- ],
- [
- 32.07458,
- 70.27336
- ],
- [
- 30.3511,
- 69.56882
- ],
- [
- 21.46179,
- 69.57098
- ],
- [
- 18.3032,
- 68.36681
- ],
- [
- 14.47997,
- 66.2558
- ],
- [
- 11.50266,
- 63.28307
- ],
- [
- 11.50166,
- 58.95444
- ],
- [
- 11.08246,
- 58.96771
- ],
- [
- 10.03051,
- 58.25173
- ],
- [
- 8.88244,
- 57.69534
- ],
- [
- 3.24857,
- 56.08599
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Kystverket",
- "url": "https://kystverket.no/Maritim-infrastruktur/Fyr-og-merker-/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:25833",
- "EPSG:32633"
- ],
- "country_code": "NO",
- "description": "Beacons, buoys, lights and fairways maintained by the Norwegian Coastal Administration",
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Coat_of_arms_of_the_Norwegian_Coastal_Administration.svg/143px-Coat_of_arms_of_the_Norwegian_Coastal_Administration.svg.png",
- "id": "kystverket-navigasjon",
- "license_url": "https://lists.nuug.no/pipermail/kart/2017-December/006320.html",
- "max_zoom": 19,
- "min_zoom": 12,
- "name": "Kystverket Navigational Aid overlay",
- "overlay": true,
- "privacy_policy_url": "https://www.kystverket.no/en/About-Kystverket/privacy-statement/",
- "type": "wms",
- "url": "https://nfs.kystverket.no/arcgis/services/nfs/NFSSistOperativ/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=13,12,10,8,6,5,4,3&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© MTBmap.no",
- "url": "https://www.mtbmap.no/"
- },
- "country_code": "NO",
- "description": "Norwegian mountain biking map from OSM (max zoom 14-16, varies per region)",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/no/MTBmapno.png",
- "id": "mtbmap-no",
- "max_zoom": 14,
- "min_zoom": 3,
- "name": "MTBmap.no",
- "type": "tms",
- "url": "https://mtbmap.no/tiles/osm/mtbmap/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -10.95725,
- 71.60964
- ],
- [
- -6.16765,
- 71.62095
- ],
- [
- -6.13756,
- 70.30991
- ],
- [
- -10.92717,
- 70.29784
- ],
- [
- -10.95725,
- 71.60964
- ]
- ],
- [
- [
- 16.81947,
- 74.9482
- ],
- [
- 21.25771,
- 74.94213
- ],
- [
- 21.23712,
- 73.8918
- ],
- [
- 16.79889,
- 73.89828
- ],
- [
- 16.81947,
- 74.9482
- ]
- ],
- [
- [
- 4.04288,
- 79.93593
- ],
- [
- 20.65421,
- 81.54417
- ],
- [
- 36.6503,
- 80.40108
- ],
- [
- 26.76265,
- 75.8129
- ],
- [
- 13.88667,
- 75.79135
- ],
- [
- 4.04288,
- 79.93593
- ]
- ],
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Miljødirektoratet",
- "url": "https://kart.naturbase.no"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:4267",
- "EPSG:4269",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Norwegian national parks, nature reserves and other protected areas and objects from Naturbase, including Svalbard/Spitsbergen",
- "icon": "https://www.miljodirektoratet.no/globalassets/profilbank/profilbank-bilder/m_logo_hoved_pos_rgb_thumb2.png",
- "id": "miljodirektoratet-vern",
- "license_url": "https://lists.nuug.no/pipermail/kart/2009-August/001095.html",
- "max_zoom": 22,
- "name": "Miljødirektoratet Protected Areas overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://kart.miljodirektoratet.no/arcgis/services/vern/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=naturvern_klasser_omrade&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Miljødirektoratet",
- "url": "https://kartkatalog.miljodirektoratet.no/Dataset/Details/30"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:4267",
- "EPSG:4269",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Public recreation areas with State ownership (\"friluftsområder\").",
- "icon": "https://www.miljodirektoratet.no/globalassets/profilbank/profilbank-bilder/m_logo_hoved_pos_rgb_thumb2.png",
- "id": "miljodirektoratet-friluftsomrader",
- "license_url": "https://lists.nuug.no/pipermail/kart/2009-August/001095.html",
- "max_zoom": 22,
- "name": "Miljødirektoratet Public Recreation Areas overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://kart.miljodirektoratet.no/arcgis/services/friluftsliv_statlig_sikra/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=friluftsliv_statlig_sikra&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 8.51989,
- 57.6454
- ],
- [
- 3.25195,
- 56.08737
- ],
- [
- 2.61185,
- 56.59434
- ],
- [
- 1.96321,
- 57.90482
- ],
- [
- 1.48178,
- 58.42936
- ],
- [
- 1.98303,
- 60.31063
- ],
- [
- 1.78802,
- 61.35659
- ],
- [
- -0.49061,
- 63.88725
- ],
- [
- 1.36226,
- 67.01603
- ],
- [
- 14.99771,
- 74.50082
- ],
- [
- 36.99371,
- 74.50155
- ],
- [
- 36.99989,
- 73.68633
- ],
- [
- 32.06909,
- 70.27429
- ],
- [
- 23.97215,
- 70.47356
- ],
- [
- 16.25974,
- 68.58447
- ],
- [
- 12.12888,
- 64.81157
- ],
- [
- 5.38328,
- 61.92862
- ],
- [
- 5.7678,
- 58.85355
- ],
- [
- 8.51989,
- 57.6454
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Oljedirektoratet",
- "url": "https://www.npd.no/no/Kart/Faktakart/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:3034",
- "EPSG:4230",
- "EPSG:23029",
- "EPSG:23030",
- "EPSG:23031",
- "EPSG:23032",
- "EPSG:23033",
- "EPSG:23034",
- "EPSG:23035",
- "EPSG:23036",
- "EPSG:32629",
- "EPSG:32630",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Production platforms and oil/natural gas fields on the Norwegian continental shelf",
- "icon": "https://register.geonorge.no/data/organizations/870917732_od_liten.png",
- "id": "npd-offshore",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-January/006333.html",
- "max_zoom": 20,
- "min_zoom": 6,
- "name": "NPD Offshore Installations overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://gis.npd.no/ogc/factmaps/2_0?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=fclFixed,pplAll,fldByStatus&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -9.98383,
- 71.45079
- ],
- [
- -7.01203,
- 71.44554
- ],
- [
- -7.09992,
- 70.53405
- ],
- [
- -9.93988,
- 70.54137
- ],
- [
- -9.98383,
- 71.45079
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Norwegian Polar Institute",
- "url": "https://geodata.npolar.no/"
- },
- "available_projections": [
- "EPSG:25829"
- ],
- "country_code": "NO",
- "description": "Topographic map for Jan Mayen from the Norwegian Polar Institute",
- "icon": "https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png",
- "id": "NPI-JanMayen-topo",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-February/006371.html",
- "max_zoom": 13,
- "name": "NPI Jan Mayen topo",
- "type": "wmts",
- "url": "https://geodata.npolar.no/arcgis/rest/services/Basisdata/NP_Basiskart_JanMayen_WMTS_25829/MapServer/WMTS/"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.08734,
- 79.3621
- ],
- [
- 14.63558,
- 79.37795
- ],
- [
- 14.51878,
- 79.79988
- ],
- [
- 15.45487,
- 79.89874
- ],
- [
- 15.98423,
- 80.10724
- ],
- [
- 16.80566,
- 80.09782
- ],
- [
- 20.31039,
- 79.39182
- ],
- [
- 21.53948,
- 78.85459
- ],
- [
- 21.35694,
- 78.61449
- ],
- [
- 19.40987,
- 78.48647
- ],
- [
- 15.25723,
- 78.42534
- ],
- [
- 14.03108,
- 78.17388
- ],
- [
- 12.8708,
- 78.15895
- ],
- [
- 11.26867,
- 78.709
- ],
- [
- 11.16101,
- 78.9777
- ],
- [
- 12.08734,
- 79.3621
- ]
- ],
- [
- [
- 13.45951,
- 77.83857
- ],
- [
- 13.42262,
- 78.0586
- ],
- [
- 13.79767,
- 78.1276
- ],
- [
- 14.84307,
- 78.15297
- ],
- [
- 15.7742,
- 78.38083
- ],
- [
- 16.72371,
- 78.36349
- ],
- [
- 17.16917,
- 78.42542
- ],
- [
- 17.57914,
- 78.40944
- ],
- [
- 17.68184,
- 78.28064
- ],
- [
- 17.52989,
- 78.18588
- ],
- [
- 17.94337,
- 78.05428
- ],
- [
- 17.49322,
- 77.94476
- ],
- [
- 16.80617,
- 77.8457
- ],
- [
- 15.16211,
- 77.7795
- ],
- [
- 13.70252,
- 77.69573
- ],
- [
- 13.45951,
- 77.83857
- ]
- ],
- [
- [
- 18.72826,
- 74.50288
- ],
- [
- 19.14894,
- 74.53028
- ],
- [
- 19.31346,
- 74.46805
- ],
- [
- 19.22015,
- 74.358
- ],
- [
- 19.09828,
- 74.32568
- ],
- [
- 19.01709,
- 74.32668
- ],
- [
- 18.71014,
- 74.46382
- ],
- [
- 18.72826,
- 74.50288
- ]
- ],
- [
- [
- 25.43293,
- 76.7571
- ],
- [
- 25.66268,
- 76.73028
- ],
- [
- 24.96582,
- 76.41238
- ],
- [
- 24.73606,
- 76.43982
- ],
- [
- 25.43293,
- 76.7571
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Norwegian Polar Institute",
- "url": "https://geodata.npolar.no/"
- },
- "available_projections": [
- "EPSG:25833"
- ],
- "country_code": "NO",
- "description": "Orthophoto for Svalbard/Spitsbergen from the Norwegian Polar Institute",
- "icon": "https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png",
- "id": "NPI-Svalbard-ortofoto",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-February/006371.html",
- "max_zoom": 17,
- "name": "NPI Svalbard Orthophoto",
- "type": "wmts",
- "url": "https://geodata.npolar.no/arcgis/rest/services/Basisdata/NP_Ortofoto_Svalbard_WMTS_25833/MapServer/WMTS/"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.48379,
- 78.1614
- ],
- [
- 16.20938,
- 78.13484
- ],
- [
- 16.33107,
- 78.15952
- ],
- [
- 16.25501,
- 78.22148
- ],
- [
- 15.72717,
- 78.27415
- ],
- [
- 15.72413,
- 78.32043
- ],
- [
- 15.64503,
- 78.3312
- ],
- [
- 15.22367,
- 78.22086
- ],
- [
- 15.48379,
- 78.1614
- ]
- ],
- [
- [
- 14.12844,
- 78.10948
- ],
- [
- 14.28892,
- 78.10948
- ],
- [
- 14.32011,
- 78.03213
- ],
- [
- 14.19689,
- 78.02992
- ],
- [
- 14.12844,
- 78.10948
- ]
- ],
- [
- [
- 11.70335,
- 78.9279
- ],
- [
- 11.83227,
- 78.95456
- ],
- [
- 12.10151,
- 78.91851
- ],
- [
- 12.00872,
- 78.89026
- ],
- [
- 11.90224,
- 78.89392
- ],
- [
- 11.70335,
- 78.9279
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Norwegian Polar Institute",
- "url": "https://geodata.npolar.no/"
- },
- "available_projections": [
- "EPSG:25833"
- ],
- "country_code": "NO",
- "description": "Detailed topographic map for Longyearbyen, Barentsburg and Ny-Ålesund from the Norwegian Polar Institute",
- "icon": "https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png",
- "id": "npi-svalbard-fkb",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-February/006371.html",
- "max_zoom": 17,
- "name": "NPI Svalbard detailed topo",
- "type": "wmts",
- "url": "https://geodata.npolar.no/arcgis/rest/services/Basisdata/FKB_Svalbard_WMTS_25833/MapServer/WMTS/"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.40258,
- 76.28434
- ],
- [
- 13.26049,
- 77.32217
- ],
- [
- 9.8657,
- 78.6948
- ],
- [
- 10.04148,
- 79.88974
- ],
- [
- 16.85301,
- 80.20866
- ],
- [
- 19.48972,
- 80.59332
- ],
- [
- 19.77537,
- 80.89372
- ],
- [
- 21.68699,
- 80.85539
- ],
- [
- 21.99461,
- 80.57535
- ],
- [
- 23.79636,
- 80.63274
- ],
- [
- 26.499,
- 80.55013
- ],
- [
- 28.76219,
- 80.08457
- ],
- [
- 26.14744,
- 79.26178
- ],
- [
- 24.26879,
- 79.10924
- ],
- [
- 22.58787,
- 79.1424
- ],
- [
- 22.06052,
- 78.77635
- ],
- [
- 26.19138,
- 77.80013
- ],
- [
- 22.25828,
- 76.66459
- ],
- [
- 21.06078,
- 76.70508
- ],
- [
- 19.13816,
- 77.47557
- ],
- [
- 17.30346,
- 76.34671
- ],
- [
- 16.40258,
- 76.28434
- ]
- ],
- [
- [
- 30.71227,
- 80.13552
- ],
- [
- 32.09106,
- 80.42394
- ],
- [
- 33.81042,
- 80.37263
- ],
- [
- 33.94775,
- 80.0571
- ],
- [
- 31.28906,
- 79.91863
- ],
- [
- 30.71227,
- 80.13552
- ]
- ],
- [
- [
- 25.92222,
- 78.84032
- ],
- [
- 28.21836,
- 79.04993
- ],
- [
- 30.73972,
- 79.04679
- ],
- [
- 29.43784,
- 78.71202
- ],
- [
- 26.45506,
- 78.55613
- ],
- [
- 25.92222,
- 78.84032
- ]
- ],
- [
- [
- 25.35644,
- 76.77249
- ],
- [
- 25.78491,
- 76.72275
- ],
- [
- 25.0653,
- 76.3862
- ],
- [
- 24.55993,
- 76.44684
- ],
- [
- 25.35644,
- 76.77249
- ]
- ],
- [
- [
- 18.01737,
- 74.68475
- ],
- [
- 19.92351,
- 74.6919
- ],
- [
- 19.95136,
- 74.16553
- ],
- [
- 18.04523,
- 74.15814
- ],
- [
- 18.01737,
- 74.68475
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Norwegian Polar Institute / USGS Landsat",
- "url": "https://geodata.npolar.no/"
- },
- "available_projections": [
- "EPSG:25833"
- ],
- "country_code": "NO",
- "description": "Satellite imagery for Svalbard from the Norwegian Polar Institute/USGS Landsat",
- "icon": "https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png",
- "id": "npi-svalbard-landsat",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-February/006371.html",
- "max_zoom": 13,
- "name": "NPI Svalbard satellite",
- "type": "wmts",
- "url": "https://geodata.npolar.no/arcgis/rest/services/Basisdata/NP_Satellitt_Svalbard_WMTS_25833/MapServer/WMTS/"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 7.46699,
- 81.08116
- ],
- [
- 21.92889,
- 81.09125
- ],
- [
- 36.04517,
- 80.54078
- ],
- [
- 27.17687,
- 73.73689
- ],
- [
- 10.75833,
- 74.04185
- ],
- [
- 7.46699,
- 81.08116
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Norwegian Polar Institute",
- "url": "https://geodata.npolar.no/"
- },
- "available_projections": [
- "EPSG:25833"
- ],
- "country_code": "NO",
- "description": "Topographic map for Svalbard from the Norwegian Polar Institute",
- "icon": "https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png",
- "id": "npi-svalbard-topo",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-February/006371.html",
- "max_zoom": 13,
- "name": "NPI Svalbard topo",
- "type": "wmts",
- "url": "https://geodata.npolar.no/arcgis/rest/services/Basisdata/NP_Basiskart_Svalbard_WMTS_25833/MapServer/WMTS/"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© NVE",
- "url": "https://www.nve.no/flaum-og-skred/kartlegging/aktsemdkart/aktsomhetskart-for-snoskred/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Potential snowslide areas, computed from theoretical height model. Valid for drops higher than 20-50 meters. Dark red=trigger area.",
- "icon": "https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png",
- "id": "nve-snoskred",
- "license_url": "https://lists.nuug.no/pipermail/kart/2017-December/006312.html",
- "max_zoom": 13,
- "min_zoom": 5,
- "name": "NVE Avalanche Danger Areas overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://gis3.nve.no/map/services/SkredSnoAktR/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Snoskred-Aktsomhetsomrader&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© NVE",
- "url": "https://www.nve.no/karttjenester/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Power lines (high voltage network) including transformers, submarine cables and pylons. Local distribution network is not included.",
- "icon": "https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png",
- "id": "nve-nettanlegg",
- "license_url": "https://lists.nuug.no/pipermail/kart/2017-December/006312.html",
- "max_zoom": 22,
- "min_zoom": 6,
- "name": "NVE Electricity Network overlay",
- "overlay": true,
- "privacy_policy_url": "https://www.nve.no/nves-personvernerklaering/",
- "type": "wms",
- "url": "https://gis3.nve.no/map/services/Nettanlegg2/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sentralnett,Regionalnett,Distribusjonsnett,Sjokabler,Master og stolper,Transformatorstasjoner&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© NVE",
- "url": "https://www.nve.no/karttjenester/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Hydropower plants including waterways (tunnel, canal, pipeline) and dams",
- "icon": "https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png",
- "id": "nve-vannkraft",
- "license_url": "https://lists.nuug.no/pipermail/kart/2017-December/006312.html",
- "max_zoom": 22,
- "min_zoom": 6,
- "name": "NVE Hydropower Plants overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://gis3.nve.no/map/services/Vannkraft1/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vannkraftverk,Vannvei,Dam&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© NVE",
- "url": "https://www.nve.no/karttjenester/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Wind power turbines, farms and concession areas (blue: planned, light green: construction, dark green: built).",
- "icon": "https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png",
- "id": "nve-vindkraft",
- "license_url": "https://lists.nuug.no/pipermail/kart/2017-December/006312.html",
- "max_zoom": 22,
- "min_zoom": 6,
- "name": "NVE Wind Power Plants overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://gis3.nve.no/map/services/Vindkraft2/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vindkraft_konsesjon_gitt_ikke_utbygd,Vindkraft_under_bygging,Vindkraft_utbygd,Vindkraftomrade,Vindturbin&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geovekst",
- "url": "https://www.norgeibilder.no"
- },
- "best": true,
- "country_code": "NO",
- "description": "Norwegian orthophotos (max zoom 21), courtesy of Geovekst and Norkart.",
- "icon": "https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png",
- "id": "geovekst-nib",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?id=62083",
- "max_zoom": 21,
- "name": "Norway Orthophoto",
- "type": "tms",
- "url": "https://waapi.webatlas.no/maptiles/tiles/webatlas-orto-newup/wa_grid/{zoom}/{x}/{y}.jpeg?api_key=b8e36d51-119a-423b-b156-d744d54123d5"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geovekst",
- "url": "https://www.norgeibilder.no"
- },
- "best": true,
- "country_code": "NO",
- "description": "Most recent Norwegian orthophotos (max zoom 19), courtesy of Geovekst and Kartverket.",
- "icon": "https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png",
- "id": "geovekst-nib2",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?id=62083",
- "max_zoom": 19,
- "name": "Norway Orthophoto (more recent, less zoom)",
- "type": "tms",
- "url": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_nib_web_mercator_wmts_v2?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Nibcache_web_mercator_v2&STYLE=default&FORMAT=image/jpgpng&tileMatrixSet=default028mm&tileMatrix={zoom}&tileRow={y}&tileCol={x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Geovekst",
- "url": "https://www.norgeibilder.no/"
- },
- "country_code": "NO",
- "description": "Historic Norwegian orthophotos and maps, courtesy of Geovekst and Norkart.",
- "icon": "https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png",
- "id": "geovekst-nib-historic",
- "license_url": "https://forum.openstreetmap.org/viewtopic.php?id=62083",
- "max_zoom": 21,
- "name": "Norway Orthophoto (historic)",
- "type": "wms_endpoint",
- "url": "https://waapi.webatlas.no/wms-orto-hist?request=GetCapabilities&service=WMS"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -10.95725,
- 71.60964
- ],
- [
- -6.16765,
- 71.62095
- ],
- [
- -6.13756,
- 70.30991
- ],
- [
- -10.92717,
- 70.29784
- ],
- [
- -10.95725,
- 71.60964
- ]
- ],
- [
- [
- 16.81947,
- 74.9482
- ],
- [
- 21.25771,
- 74.94213
- ],
- [
- 21.23712,
- 73.8918
- ],
- [
- 16.79889,
- 73.89828
- ],
- [
- 16.81947,
- 74.9482
- ]
- ],
- [
- [
- 4.04288,
- 79.93593
- ],
- [
- 20.65421,
- 81.54417
- ],
- [
- 36.6503,
- 80.40108
- ],
- [
- 26.76265,
- 75.8129
- ],
- [
- 13.88667,
- 75.79135
- ],
- [
- 4.04288,
- 79.93593
- ]
- ],
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Riksantikvaren",
- "url": "https://www.riksantikvaren.no/Veiledning/Data-og-tjenester/Karttjenester"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3034",
- "EPSG:4258",
- "EPSG:5105",
- "EPSG:5106",
- "EPSG:5107",
- "EPSG:5108",
- "EPSG:5109",
- "EPSG:5110",
- "EPSG:5111",
- "EPSG:5112",
- "EPSG:5113",
- "EPSG:5114",
- "EPSG:5115",
- "EPSG:5116",
- "EPSG:5117",
- "EPSG:5118",
- "EPSG:5119",
- "EPSG:5120",
- "EPSG:5121",
- "EPSG:5122",
- "EPSG:5123",
- "EPSG:5124",
- "EPSG:5125",
- "EPSG:5126",
- "EPSG:5127",
- "EPSG:5128",
- "EPSG:5129",
- "EPSG:5130",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:27391",
- "EPSG:27392",
- "EPSG:27393",
- "EPSG:27394",
- "EPSG:27395",
- "EPSG:27396",
- "EPSG:27397",
- "EPSG:27398",
- "EPSG:32636",
- "EPSG:32635",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32631",
- "EPSG:32632"
- ],
- "country_code": "NO",
- "description": "Archeological and architectural monuments/sites and cultural environments protected by law (''enkeltminner'') from the Norwegian Directorate for Cultural Heritage",
- "icon": "https://www.riksantikvaren.no/extension/riksantikvaren/design/internetsite/images/logo_na.png",
- "id": "riksantikvaren-kulturminner",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-January/006348.html",
- "max_zoom": 22,
- "min_zoom": 13,
- "name": "Riksantikvaren Heritage Sites overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://kart.ra.no/arcgis/services/Distribusjon/Kulturminner/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=3,6&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© SSB",
- "url": "https://www.ssb.no/arealsentrum/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Downtown areas with significant commercial and service activities.",
- "icon": "https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png",
- "id": "ssb-sentrum",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-January/006345.html",
- "max_zoom": 22,
- "name": "SSB City Centres overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://ogc.ssb.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_193&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© SSB",
- "url": "https://www.ssb.no/beftett"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25829",
- "EPSG:25830",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:32631",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:32636"
- ],
- "country_code": "NO",
- "description": "Human settlements of at least 200 people with less than 200 meters between households",
- "icon": "https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png",
- "id": "ssb-tettsteder",
- "license_url": "https://lists.nuug.no/pipermail/kart/2018-January/006345.html",
- "max_zoom": 22,
- "name": "SSB Urban Areas overlay",
- "overlay": true,
- "type": "wms",
- "url": "https://ogc.ssb.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_198&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Kartverket",
- "url": "https://hoydedata.no/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:5105",
- "EPSG:5106",
- "EPSG:5107",
- "EPSG:5108",
- "EPSG:5109",
- "EPSG:5110",
- "EPSG:5111",
- "EPSG:5112",
- "EPSG:5113",
- "EPSG:5114",
- "EPSG:5115",
- "EPSG:5116",
- "EPSG:5117",
- "EPSG:5118",
- "EPSG:5119",
- "EPSG:5120",
- "EPSG:5121",
- "EPSG:5122",
- "EPSG:5123",
- "EPSG:5124",
- "EPSG:5125",
- "EPSG:5126",
- "EPSG:5127",
- "EPSG:5128",
- "EPSG:5129",
- "EPSG:5130"
- ],
- "country_code": "NO",
- "description": "Shaded relief representation of the Norwegian digital surface model (DOM), i.e. earth surface including trees, buildings and other objects on top of it.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-dom-skygge",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 24,
- "name": "Kartverket DOM Digital Surface Model",
- "type": "wms",
- "url": "https://wms.geonorge.no/skwms1/wms.hoyde-dom_somlos_skyggerelieff?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=las_dom_skyggerelieff_somlos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Kartverket",
- "url": "https://hoydedata.no/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:25831",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835",
- "EPSG:25836",
- "EPSG:5105",
- "EPSG:5106",
- "EPSG:5107",
- "EPSG:5108",
- "EPSG:5109",
- "EPSG:5110",
- "EPSG:5111",
- "EPSG:5112",
- "EPSG:5113",
- "EPSG:5114",
- "EPSG:5115",
- "EPSG:5116",
- "EPSG:5117",
- "EPSG:5118",
- "EPSG:5119",
- "EPSG:5120",
- "EPSG:5121",
- "EPSG:5122",
- "EPSG:5123",
- "EPSG:5124",
- "EPSG:5125",
- "EPSG:5126",
- "EPSG:5127",
- "EPSG:5128",
- "EPSG:5129",
- "EPSG:5130"
- ],
- "country_code": "NO",
- "description": "Shaded relief representation of the Norwegian digital terrain model (DTM), i.e. earth surface without trees, buildings and other objects.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "id": "kartverket-dtm-skygge",
- "license_url": "https://lists.nuug.no/pipermail/kart/2014-August/004831.html",
- "max_zoom": 24,
- "name": "Kartverket DTM Digital Terrain Model",
- "type": "wms",
- "url": "https://wms.geonorge.no/skwms1/wms.hoyde-dtm_somlos_skyggerelieff?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=las_dtm_skyggerelieff_somlos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.6108,
- 76.4137
- ],
- [
- 16.4731,
- 76.4268
- ],
- [
- 16.3788,
- 76.4589
- ],
- [
- 14.4124,
- 77.1324
- ],
- [
- 14.0784,
- 77.2536
- ],
- [
- 10.9875,
- 78.4054
- ],
- [
- 10.631,
- 78.5605
- ],
- [
- 10.2314,
- 78.8392
- ],
- [
- 10.3952,
- 79.6074
- ],
- [
- 10.516,
- 79.7731
- ],
- [
- 10.9632,
- 79.8707
- ],
- [
- 20.2294,
- 80.849
- ],
- [
- 20.4702,
- 80.8493
- ],
- [
- 25.1752,
- 80.6817
- ],
- [
- 33.4391,
- 80.3438
- ],
- [
- 33.7809,
- 80.3016
- ],
- [
- 34.0395,
- 80.239
- ],
- [
- 33.977,
- 80.1527
- ],
- [
- 25.5722,
- 76.5917
- ],
- [
- 25.2739,
- 76.481
- ],
- [
- 25.1416,
- 76.4327
- ],
- [
- 24.937,
- 76.4176
- ],
- [
- 16.6108,
- 76.4137
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "NO",
- "description": "Sentinel-2 mosaic of Svalbard (true color)",
- "end_date": "2016",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-s2sval",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Svalbard mosaic",
- "start_date": "2016",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=s2sval&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.15085,
- 50.53004
- ],
- [
- 19.15127,
- 50.53913
- ],
- [
- 19.19589,
- 50.53855
- ],
- [
- 19.19635,
- 50.52946
- ],
- [
- 19.24115,
- 50.52887
- ],
- [
- 19.2413,
- 50.53801
- ],
- [
- 19.30921,
- 50.53708
- ],
- [
- 19.30822,
- 50.50131
- ],
- [
- 19.28574,
- 50.50188
- ],
- [
- 19.28451,
- 50.45659
- ],
- [
- 19.30766,
- 50.45615
- ],
- [
- 19.30594,
- 50.42935
- ],
- [
- 19.26171,
- 50.42977
- ],
- [
- 19.261,
- 50.4029
- ],
- [
- 19.21539,
- 50.39449
- ],
- [
- 19.21451,
- 50.36762
- ],
- [
- 19.19178,
- 50.36773
- ],
- [
- 19.19141,
- 50.33333
- ],
- [
- 19.4379,
- 50.33311
- ],
- [
- 19.43791,
- 50.24987
- ],
- [
- 19.2499,
- 50.24991
- ],
- [
- 19.24999,
- 50.33181
- ],
- [
- 19.16866,
- 50.3322
- ],
- [
- 19.1679,
- 50.30508
- ],
- [
- 19.1454,
- 50.30536
- ],
- [
- 19.14538,
- 50.29621
- ],
- [
- 19.12318,
- 50.29637
- ],
- [
- 19.12287,
- 50.28735
- ],
- [
- 19.03302,
- 50.28831
- ],
- [
- 19.0342,
- 50.34217
- ],
- [
- 19.01164,
- 50.3425
- ],
- [
- 19.01188,
- 50.3604
- ],
- [
- 18.96701,
- 50.36069
- ],
- [
- 18.96707,
- 50.36967
- ],
- [
- 18.94463,
- 50.36967
- ],
- [
- 18.94471,
- 50.38802
- ],
- [
- 18.96799,
- 50.38782
- ],
- [
- 18.96877,
- 50.43257
- ],
- [
- 18.99152,
- 50.43255
- ],
- [
- 18.99171,
- 50.44176
- ],
- [
- 19.01404,
- 50.44131
- ],
- [
- 19.01415,
- 50.45929
- ],
- [
- 19.08187,
- 50.45877
- ],
- [
- 19.08228,
- 50.47676
- ],
- [
- 19.10477,
- 50.47646
- ],
- [
- 19.10673,
- 50.53049
- ],
- [
- 19.15085,
- 50.53004
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Starostwo Powiatowe w Będzinie"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "id": "Bedzin-PL-buildings",
- "name": "Będzin: Buildings",
- "type": "wms",
- "url": "http://www.geo.powiat.bedzin.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=eg_budynki_geo,pkt_adr&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.15085,
- 50.53004
- ],
- [
- 19.15127,
- 50.53913
- ],
- [
- 19.19589,
- 50.53855
- ],
- [
- 19.19635,
- 50.52946
- ],
- [
- 19.24115,
- 50.52887
- ],
- [
- 19.2413,
- 50.53801
- ],
- [
- 19.30921,
- 50.53708
- ],
- [
- 19.30822,
- 50.50131
- ],
- [
- 19.28574,
- 50.50188
- ],
- [
- 19.28451,
- 50.45659
- ],
- [
- 19.30766,
- 50.45615
- ],
- [
- 19.30594,
- 50.42935
- ],
- [
- 19.26171,
- 50.42977
- ],
- [
- 19.261,
- 50.4029
- ],
- [
- 19.21539,
- 50.39449
- ],
- [
- 19.21451,
- 50.36762
- ],
- [
- 19.19178,
- 50.36773
- ],
- [
- 19.19141,
- 50.33333
- ],
- [
- 19.4379,
- 50.33311
- ],
- [
- 19.43791,
- 50.24987
- ],
- [
- 19.2499,
- 50.24991
- ],
- [
- 19.24999,
- 50.33181
- ],
- [
- 19.16866,
- 50.3322
- ],
- [
- 19.1679,
- 50.30508
- ],
- [
- 19.1454,
- 50.30536
- ],
- [
- 19.14538,
- 50.29621
- ],
- [
- 19.12318,
- 50.29637
- ],
- [
- 19.12287,
- 50.28735
- ],
- [
- 19.03302,
- 50.28831
- ],
- [
- 19.0342,
- 50.34217
- ],
- [
- 19.01164,
- 50.3425
- ],
- [
- 19.01188,
- 50.3604
- ],
- [
- 18.96701,
- 50.36069
- ],
- [
- 18.96707,
- 50.36967
- ],
- [
- 18.94463,
- 50.36967
- ],
- [
- 18.94471,
- 50.38802
- ],
- [
- 18.96799,
- 50.38782
- ],
- [
- 18.96877,
- 50.43257
- ],
- [
- 18.99152,
- 50.43255
- ],
- [
- 18.99171,
- 50.44176
- ],
- [
- 19.01404,
- 50.44131
- ],
- [
- 19.01415,
- 50.45929
- ],
- [
- 19.08187,
- 50.45877
- ],
- [
- 19.08228,
- 50.47676
- ],
- [
- 19.10477,
- 50.47646
- ],
- [
- 19.10673,
- 50.53049
- ],
- [
- 19.15085,
- 50.53004
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Starostwo Powiatowe w Będzinie"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2013",
- "id": "Bedzin-PL-aerial_image",
- "max_zoom": 23,
- "name": "Będzin: Orthophotomap 2013 (aerial image)",
- "start_date": "2013",
- "type": "wms",
- "url": "http://www.geo.powiat.bedzin.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.81033,
- 50.40715
- ],
- [
- 18.81032,
- 50.41611
- ],
- [
- 18.9008,
- 50.41513
- ],
- [
- 18.90012,
- 50.37923
- ],
- [
- 18.94532,
- 50.37856
- ],
- [
- 18.94515,
- 50.36992
- ],
- [
- 18.96735,
- 50.36984
- ],
- [
- 18.96593,
- 50.31573
- ],
- [
- 18.87708,
- 50.31654
- ],
- [
- 18.87661,
- 50.32559
- ],
- [
- 18.85443,
- 50.32576
- ],
- [
- 18.85508,
- 50.33481
- ],
- [
- 18.83176,
- 50.33467
- ],
- [
- 18.83241,
- 50.34382
- ],
- [
- 18.80925,
- 50.34399
- ],
- [
- 18.80971,
- 50.37073
- ],
- [
- 18.78751,
- 50.37099
- ],
- [
- 18.78812,
- 50.40741
- ],
- [
- 18.81033,
- 50.40715
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Bytomia"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "id": "Bytom-buildings",
- "name": "Bytom: Buildings",
- "type": "wms",
- "url": "http://sitplan.um.bytom.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=adr_osie_ulic,adr_punkty_adresowe,eg_budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.81033,
- 50.40715
- ],
- [
- 18.81032,
- 50.41611
- ],
- [
- 18.9008,
- 50.41513
- ],
- [
- 18.90012,
- 50.37923
- ],
- [
- 18.94532,
- 50.37856
- ],
- [
- 18.94515,
- 50.36992
- ],
- [
- 18.96735,
- 50.36984
- ],
- [
- 18.96593,
- 50.31573
- ],
- [
- 18.87708,
- 50.31654
- ],
- [
- 18.87661,
- 50.32559
- ],
- [
- 18.85443,
- 50.32576
- ],
- [
- 18.85508,
- 50.33481
- ],
- [
- 18.83176,
- 50.33467
- ],
- [
- 18.83241,
- 50.34382
- ],
- [
- 18.80925,
- 50.34399
- ],
- [
- 18.80971,
- 50.37073
- ],
- [
- 18.78751,
- 50.37099
- ],
- [
- 18.78812,
- 50.40741
- ],
- [
- 18.81033,
- 50.40715
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Bytomia"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2014",
- "id": "Bytom-2014",
- "name": "Bytom: Fotoplan 2014 (aerial image)",
- "start_date": "2014",
- "type": "wms",
- "url": "http://sitplan.um.bytom.pl:11180/isdp/gs/wms?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=default:fotoplan_2014&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.81033,
- 50.40715
- ],
- [
- 18.81032,
- 50.41611
- ],
- [
- 18.9008,
- 50.41513
- ],
- [
- 18.90012,
- 50.37923
- ],
- [
- 18.94532,
- 50.37856
- ],
- [
- 18.94515,
- 50.36992
- ],
- [
- 18.96735,
- 50.36984
- ],
- [
- 18.96593,
- 50.31573
- ],
- [
- 18.87708,
- 50.31654
- ],
- [
- 18.87661,
- 50.32559
- ],
- [
- 18.85443,
- 50.32576
- ],
- [
- 18.85508,
- 50.33481
- ],
- [
- 18.83176,
- 50.33467
- ],
- [
- 18.83241,
- 50.34382
- ],
- [
- 18.80925,
- 50.34399
- ],
- [
- 18.80971,
- 50.37073
- ],
- [
- 18.78751,
- 50.37099
- ],
- [
- 18.78812,
- 50.40741
- ],
- [
- 18.81033,
- 50.40715
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Bytomia"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2012",
- "id": "Bytom-2012",
- "max_zoom": 23,
- "name": "Bytom: Orthophotomap 2012 (aerial image)",
- "start_date": "2012",
- "type": "wms",
- "url": "http://sitplan.um.bytom.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tiff_ortofoto_2012&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.94562,
- 50.31836
- ],
- [
- 18.94349,
- 50.32385
- ],
- [
- 18.95466,
- 50.32599
- ],
- [
- 18.96426,
- 50.33307
- ],
- [
- 18.96521,
- 50.33777
- ],
- [
- 18.98692,
- 50.33621
- ],
- [
- 18.98468,
- 50.32501
- ],
- [
- 18.99777,
- 50.32204
- ],
- [
- 18.99686,
- 50.31716
- ],
- [
- 18.98774,
- 50.31736
- ],
- [
- 18.98695,
- 50.30989
- ],
- [
- 18.99736,
- 50.30031
- ],
- [
- 18.99744,
- 50.29722
- ],
- [
- 19.00546,
- 50.29548
- ],
- [
- 19.0073,
- 50.28342
- ],
- [
- 19.00574,
- 50.27871
- ],
- [
- 18.99236,
- 50.27091
- ],
- [
- 18.96792,
- 50.28661
- ],
- [
- 18.96215,
- 50.27972
- ],
- [
- 18.96169,
- 50.27337
- ],
- [
- 18.95824,
- 50.27291
- ],
- [
- 18.95492,
- 50.26193
- ],
- [
- 18.96014,
- 50.24927
- ],
- [
- 18.95672,
- 50.2452
- ],
- [
- 18.95555,
- 50.23891
- ],
- [
- 18.94132,
- 50.243
- ],
- [
- 18.93475,
- 50.25314
- ],
- [
- 18.93324,
- 50.26032
- ],
- [
- 18.93262,
- 50.26588
- ],
- [
- 18.9296,
- 50.26774
- ],
- [
- 18.92976,
- 50.27131
- ],
- [
- 18.92669,
- 50.27289
- ],
- [
- 18.92632,
- 50.27623
- ],
- [
- 18.93071,
- 50.27619
- ],
- [
- 18.93437,
- 50.28729
- ],
- [
- 18.92383,
- 50.29533
- ],
- [
- 18.92635,
- 50.29986
- ],
- [
- 18.91905,
- 50.30212
- ],
- [
- 18.91955,
- 50.30576
- ],
- [
- 18.92463,
- 50.31192
- ],
- [
- 18.9262,
- 50.31883
- ],
- [
- 18.94562,
- 50.31836
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Chorzowa"
- },
- "available_projections": [
- "EPSG:4326"
- ],
- "country_code": "PL",
- "id": "Chorzow-buildings",
- "name": "Chorzów: Buildings",
- "type": "wms",
- "url": "http://e-odgik.chorzow.eu/services/wms/wms_funkcje_bud/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=3,2,1,8,7,6&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.08183,
- 50.8554
- ],
- [
- 19.0888,
- 50.86563
- ],
- [
- 19.11082,
- 50.86616
- ],
- [
- 19.10961,
- 50.86092
- ],
- [
- 19.11709,
- 50.85933
- ],
- [
- 19.11531,
- 50.86283
- ],
- [
- 19.11997,
- 50.86327
- ],
- [
- 19.1227,
- 50.85452
- ],
- [
- 19.12938,
- 50.85519
- ],
- [
- 19.12566,
- 50.86165
- ],
- [
- 19.13364,
- 50.86147
- ],
- [
- 19.14318,
- 50.86815
- ],
- [
- 19.1498,
- 50.87916
- ],
- [
- 19.16507,
- 50.8794
- ],
- [
- 19.16816,
- 50.88501
- ],
- [
- 19.17265,
- 50.88477
- ],
- [
- 19.18346,
- 50.87706
- ],
- [
- 19.18084,
- 50.86562
- ],
- [
- 19.18711,
- 50.84712
- ],
- [
- 19.19973,
- 50.84395
- ],
- [
- 19.19637,
- 50.83678
- ],
- [
- 19.19358,
- 50.83357
- ],
- [
- 19.19454,
- 50.83145
- ],
- [
- 19.20696,
- 50.82985
- ],
- [
- 19.20838,
- 50.82484
- ],
- [
- 19.21831,
- 50.82571
- ],
- [
- 19.22564,
- 50.82475
- ],
- [
- 19.23075,
- 50.82509
- ],
- [
- 19.2308,
- 50.82666
- ],
- [
- 19.23351,
- 50.82683
- ],
- [
- 19.23303,
- 50.82335
- ],
- [
- 19.21868,
- 50.80115
- ],
- [
- 19.21753,
- 50.79272
- ],
- [
- 19.22592,
- 50.78822
- ],
- [
- 19.20889,
- 50.77561
- ],
- [
- 19.19891,
- 50.76355
- ],
- [
- 19.19521,
- 50.75182
- ],
- [
- 19.19074,
- 50.75211
- ],
- [
- 19.18245,
- 50.7545
- ],
- [
- 19.16504,
- 50.7535
- ],
- [
- 19.16417,
- 50.75586
- ],
- [
- 19.14559,
- 50.75805
- ],
- [
- 19.14282,
- 50.75543
- ],
- [
- 19.13021,
- 50.75786
- ],
- [
- 19.127,
- 50.75314
- ],
- [
- 19.1216,
- 50.75363
- ],
- [
- 19.12066,
- 50.74981
- ],
- [
- 19.10348,
- 50.75228
- ],
- [
- 19.09598,
- 50.75201
- ],
- [
- 19.0956,
- 50.74912
- ],
- [
- 19.09351,
- 50.7488
- ],
- [
- 19.09285,
- 50.75027
- ],
- [
- 19.08442,
- 50.74986
- ],
- [
- 19.08473,
- 50.74349
- ],
- [
- 19.08382,
- 50.73741
- ],
- [
- 19.07878,
- 50.73668
- ],
- [
- 19.07503,
- 50.73465
- ],
- [
- 19.07284,
- 50.73708
- ],
- [
- 19.07153,
- 50.74042
- ],
- [
- 19.0685,
- 50.74339
- ],
- [
- 19.06632,
- 50.74233
- ],
- [
- 19.06392,
- 50.74554
- ],
- [
- 19.06595,
- 50.7466
- ],
- [
- 19.06548,
- 50.7496
- ],
- [
- 19.06202,
- 50.75041
- ],
- [
- 19.06018,
- 50.74455
- ],
- [
- 19.04257,
- 50.74466
- ],
- [
- 19.0333,
- 50.74827
- ],
- [
- 19.01869,
- 50.76252
- ],
- [
- 19.01554,
- 50.77044
- ],
- [
- 19.01101,
- 50.7718
- ],
- [
- 19.01353,
- 50.77766
- ],
- [
- 19.01159,
- 50.78077
- ],
- [
- 19.01081,
- 50.78759
- ],
- [
- 19.01362,
- 50.79262
- ],
- [
- 19.01972,
- 50.79555
- ],
- [
- 19.01896,
- 50.80703
- ],
- [
- 19.03439,
- 50.80116
- ],
- [
- 19.03453,
- 50.804
- ],
- [
- 19.02593,
- 50.80731
- ],
- [
- 19.02308,
- 50.81499
- ],
- [
- 19.03154,
- 50.81614
- ],
- [
- 19.02909,
- 50.82435
- ],
- [
- 19.03787,
- 50.82584
- ],
- [
- 19.03921,
- 50.84083
- ],
- [
- 19.04676,
- 50.84934
- ],
- [
- 19.05993,
- 50.8532
- ],
- [
- 19.06209,
- 50.8596
- ],
- [
- 19.06492,
- 50.86134
- ],
- [
- 19.08183,
- 50.8554
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Częstochowy"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3120",
- "EPSG:3329",
- "EPSG:3330",
- "EPSG:3331",
- "EPSG:3332",
- "EPSG:3333",
- "EPSG:3334",
- "EPSG:2172",
- "EPSG:2173",
- "EPSG:2174",
- "EPSG:2175",
- "EPSG:2176",
- "EPSG:2177",
- "EPSG:2178",
- "EPSG:2179",
- "EPSG:2180",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635"
- ],
- "country_code": "PL",
- "id": "Czestochowa-buildings",
- "name": "Częstochowa: Buildings",
- "type": "wms",
- "url": "http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ieg_budynek&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.08183,
- 50.8554
- ],
- [
- 19.0888,
- 50.86563
- ],
- [
- 19.11082,
- 50.86616
- ],
- [
- 19.10961,
- 50.86092
- ],
- [
- 19.11709,
- 50.85933
- ],
- [
- 19.11531,
- 50.86283
- ],
- [
- 19.11997,
- 50.86327
- ],
- [
- 19.1227,
- 50.85452
- ],
- [
- 19.12938,
- 50.85519
- ],
- [
- 19.12566,
- 50.86165
- ],
- [
- 19.13364,
- 50.86147
- ],
- [
- 19.14318,
- 50.86815
- ],
- [
- 19.1498,
- 50.87916
- ],
- [
- 19.16507,
- 50.8794
- ],
- [
- 19.16816,
- 50.88501
- ],
- [
- 19.17265,
- 50.88477
- ],
- [
- 19.18346,
- 50.87706
- ],
- [
- 19.18084,
- 50.86562
- ],
- [
- 19.18711,
- 50.84712
- ],
- [
- 19.19973,
- 50.84395
- ],
- [
- 19.19637,
- 50.83678
- ],
- [
- 19.19358,
- 50.83357
- ],
- [
- 19.19454,
- 50.83145
- ],
- [
- 19.20696,
- 50.82985
- ],
- [
- 19.20838,
- 50.82484
- ],
- [
- 19.21831,
- 50.82571
- ],
- [
- 19.22564,
- 50.82475
- ],
- [
- 19.23075,
- 50.82509
- ],
- [
- 19.2308,
- 50.82666
- ],
- [
- 19.23351,
- 50.82683
- ],
- [
- 19.23303,
- 50.82335
- ],
- [
- 19.21868,
- 50.80115
- ],
- [
- 19.21753,
- 50.79272
- ],
- [
- 19.22592,
- 50.78822
- ],
- [
- 19.20889,
- 50.77561
- ],
- [
- 19.19891,
- 50.76355
- ],
- [
- 19.19521,
- 50.75182
- ],
- [
- 19.19074,
- 50.75211
- ],
- [
- 19.18245,
- 50.7545
- ],
- [
- 19.16504,
- 50.7535
- ],
- [
- 19.16417,
- 50.75586
- ],
- [
- 19.14559,
- 50.75805
- ],
- [
- 19.14282,
- 50.75543
- ],
- [
- 19.13021,
- 50.75786
- ],
- [
- 19.127,
- 50.75314
- ],
- [
- 19.1216,
- 50.75363
- ],
- [
- 19.12066,
- 50.74981
- ],
- [
- 19.10348,
- 50.75228
- ],
- [
- 19.09598,
- 50.75201
- ],
- [
- 19.0956,
- 50.74912
- ],
- [
- 19.09351,
- 50.7488
- ],
- [
- 19.09285,
- 50.75027
- ],
- [
- 19.08442,
- 50.74986
- ],
- [
- 19.08473,
- 50.74349
- ],
- [
- 19.08382,
- 50.73741
- ],
- [
- 19.07878,
- 50.73668
- ],
- [
- 19.07503,
- 50.73465
- ],
- [
- 19.07284,
- 50.73708
- ],
- [
- 19.07153,
- 50.74042
- ],
- [
- 19.0685,
- 50.74339
- ],
- [
- 19.06632,
- 50.74233
- ],
- [
- 19.06392,
- 50.74554
- ],
- [
- 19.06595,
- 50.7466
- ],
- [
- 19.06548,
- 50.7496
- ],
- [
- 19.06202,
- 50.75041
- ],
- [
- 19.06018,
- 50.74455
- ],
- [
- 19.04257,
- 50.74466
- ],
- [
- 19.0333,
- 50.74827
- ],
- [
- 19.01869,
- 50.76252
- ],
- [
- 19.01554,
- 50.77044
- ],
- [
- 19.01101,
- 50.7718
- ],
- [
- 19.01353,
- 50.77766
- ],
- [
- 19.01159,
- 50.78077
- ],
- [
- 19.01081,
- 50.78759
- ],
- [
- 19.01362,
- 50.79262
- ],
- [
- 19.01972,
- 50.79555
- ],
- [
- 19.01896,
- 50.80703
- ],
- [
- 19.03439,
- 50.80116
- ],
- [
- 19.03453,
- 50.804
- ],
- [
- 19.02593,
- 50.80731
- ],
- [
- 19.02308,
- 50.81499
- ],
- [
- 19.03154,
- 50.81614
- ],
- [
- 19.02909,
- 50.82435
- ],
- [
- 19.03787,
- 50.82584
- ],
- [
- 19.03921,
- 50.84083
- ],
- [
- 19.04676,
- 50.84934
- ],
- [
- 19.05993,
- 50.8532
- ],
- [
- 19.06209,
- 50.8596
- ],
- [
- 19.06492,
- 50.86134
- ],
- [
- 19.08183,
- 50.8554
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Częstochowy"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2011",
- "id": "Czestochowa-2011",
- "max_zoom": 23,
- "name": "Częstochowa: Orthophotomap 2011 (aerial image)",
- "start_date": "2011",
- "type": "wms",
- "url": "http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2011&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.08183,
- 50.8554
- ],
- [
- 19.0888,
- 50.86563
- ],
- [
- 19.11082,
- 50.86616
- ],
- [
- 19.10961,
- 50.86092
- ],
- [
- 19.11709,
- 50.85933
- ],
- [
- 19.11531,
- 50.86283
- ],
- [
- 19.11997,
- 50.86327
- ],
- [
- 19.1227,
- 50.85452
- ],
- [
- 19.12938,
- 50.85519
- ],
- [
- 19.12566,
- 50.86165
- ],
- [
- 19.13364,
- 50.86147
- ],
- [
- 19.14318,
- 50.86815
- ],
- [
- 19.1498,
- 50.87916
- ],
- [
- 19.16507,
- 50.8794
- ],
- [
- 19.16816,
- 50.88501
- ],
- [
- 19.17265,
- 50.88477
- ],
- [
- 19.18346,
- 50.87706
- ],
- [
- 19.18084,
- 50.86562
- ],
- [
- 19.18711,
- 50.84712
- ],
- [
- 19.19973,
- 50.84395
- ],
- [
- 19.19637,
- 50.83678
- ],
- [
- 19.19358,
- 50.83357
- ],
- [
- 19.19454,
- 50.83145
- ],
- [
- 19.20696,
- 50.82985
- ],
- [
- 19.20838,
- 50.82484
- ],
- [
- 19.21831,
- 50.82571
- ],
- [
- 19.22564,
- 50.82475
- ],
- [
- 19.23075,
- 50.82509
- ],
- [
- 19.2308,
- 50.82666
- ],
- [
- 19.23351,
- 50.82683
- ],
- [
- 19.23303,
- 50.82335
- ],
- [
- 19.21868,
- 50.80115
- ],
- [
- 19.21753,
- 50.79272
- ],
- [
- 19.22592,
- 50.78822
- ],
- [
- 19.20889,
- 50.77561
- ],
- [
- 19.19891,
- 50.76355
- ],
- [
- 19.19521,
- 50.75182
- ],
- [
- 19.19074,
- 50.75211
- ],
- [
- 19.18245,
- 50.7545
- ],
- [
- 19.16504,
- 50.7535
- ],
- [
- 19.16417,
- 50.75586
- ],
- [
- 19.14559,
- 50.75805
- ],
- [
- 19.14282,
- 50.75543
- ],
- [
- 19.13021,
- 50.75786
- ],
- [
- 19.127,
- 50.75314
- ],
- [
- 19.1216,
- 50.75363
- ],
- [
- 19.12066,
- 50.74981
- ],
- [
- 19.10348,
- 50.75228
- ],
- [
- 19.09598,
- 50.75201
- ],
- [
- 19.0956,
- 50.74912
- ],
- [
- 19.09351,
- 50.7488
- ],
- [
- 19.09285,
- 50.75027
- ],
- [
- 19.08442,
- 50.74986
- ],
- [
- 19.08473,
- 50.74349
- ],
- [
- 19.08382,
- 50.73741
- ],
- [
- 19.07878,
- 50.73668
- ],
- [
- 19.07503,
- 50.73465
- ],
- [
- 19.07284,
- 50.73708
- ],
- [
- 19.07153,
- 50.74042
- ],
- [
- 19.0685,
- 50.74339
- ],
- [
- 19.06632,
- 50.74233
- ],
- [
- 19.06392,
- 50.74554
- ],
- [
- 19.06595,
- 50.7466
- ],
- [
- 19.06548,
- 50.7496
- ],
- [
- 19.06202,
- 50.75041
- ],
- [
- 19.06018,
- 50.74455
- ],
- [
- 19.04257,
- 50.74466
- ],
- [
- 19.0333,
- 50.74827
- ],
- [
- 19.01869,
- 50.76252
- ],
- [
- 19.01554,
- 50.77044
- ],
- [
- 19.01101,
- 50.7718
- ],
- [
- 19.01353,
- 50.77766
- ],
- [
- 19.01159,
- 50.78077
- ],
- [
- 19.01081,
- 50.78759
- ],
- [
- 19.01362,
- 50.79262
- ],
- [
- 19.01972,
- 50.79555
- ],
- [
- 19.01896,
- 50.80703
- ],
- [
- 19.03439,
- 50.80116
- ],
- [
- 19.03453,
- 50.804
- ],
- [
- 19.02593,
- 50.80731
- ],
- [
- 19.02308,
- 50.81499
- ],
- [
- 19.03154,
- 50.81614
- ],
- [
- 19.02909,
- 50.82435
- ],
- [
- 19.03787,
- 50.82584
- ],
- [
- 19.03921,
- 50.84083
- ],
- [
- 19.04676,
- 50.84934
- ],
- [
- 19.05993,
- 50.8532
- ],
- [
- 19.06209,
- 50.8596
- ],
- [
- 19.06492,
- 50.86134
- ],
- [
- 19.08183,
- 50.8554
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Częstochowy"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2013",
- "id": "Czestochowa-2013",
- "max_zoom": 23,
- "name": "Częstochowa: Orthophotomap 2013 (aerial image)",
- "start_date": "2013",
- "type": "wms",
- "url": "http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.08183,
- 50.8554
- ],
- [
- 19.0888,
- 50.86563
- ],
- [
- 19.11082,
- 50.86616
- ],
- [
- 19.10961,
- 50.86092
- ],
- [
- 19.11709,
- 50.85933
- ],
- [
- 19.11531,
- 50.86283
- ],
- [
- 19.11997,
- 50.86327
- ],
- [
- 19.1227,
- 50.85452
- ],
- [
- 19.12938,
- 50.85519
- ],
- [
- 19.12566,
- 50.86165
- ],
- [
- 19.13364,
- 50.86147
- ],
- [
- 19.14318,
- 50.86815
- ],
- [
- 19.1498,
- 50.87916
- ],
- [
- 19.16507,
- 50.8794
- ],
- [
- 19.16816,
- 50.88501
- ],
- [
- 19.17265,
- 50.88477
- ],
- [
- 19.18346,
- 50.87706
- ],
- [
- 19.18084,
- 50.86562
- ],
- [
- 19.18711,
- 50.84712
- ],
- [
- 19.19973,
- 50.84395
- ],
- [
- 19.19637,
- 50.83678
- ],
- [
- 19.19358,
- 50.83357
- ],
- [
- 19.19454,
- 50.83145
- ],
- [
- 19.20696,
- 50.82985
- ],
- [
- 19.20838,
- 50.82484
- ],
- [
- 19.21831,
- 50.82571
- ],
- [
- 19.22564,
- 50.82475
- ],
- [
- 19.23075,
- 50.82509
- ],
- [
- 19.2308,
- 50.82666
- ],
- [
- 19.23351,
- 50.82683
- ],
- [
- 19.23303,
- 50.82335
- ],
- [
- 19.21868,
- 50.80115
- ],
- [
- 19.21753,
- 50.79272
- ],
- [
- 19.22592,
- 50.78822
- ],
- [
- 19.20889,
- 50.77561
- ],
- [
- 19.19891,
- 50.76355
- ],
- [
- 19.19521,
- 50.75182
- ],
- [
- 19.19074,
- 50.75211
- ],
- [
- 19.18245,
- 50.7545
- ],
- [
- 19.16504,
- 50.7535
- ],
- [
- 19.16417,
- 50.75586
- ],
- [
- 19.14559,
- 50.75805
- ],
- [
- 19.14282,
- 50.75543
- ],
- [
- 19.13021,
- 50.75786
- ],
- [
- 19.127,
- 50.75314
- ],
- [
- 19.1216,
- 50.75363
- ],
- [
- 19.12066,
- 50.74981
- ],
- [
- 19.10348,
- 50.75228
- ],
- [
- 19.09598,
- 50.75201
- ],
- [
- 19.0956,
- 50.74912
- ],
- [
- 19.09351,
- 50.7488
- ],
- [
- 19.09285,
- 50.75027
- ],
- [
- 19.08442,
- 50.74986
- ],
- [
- 19.08473,
- 50.74349
- ],
- [
- 19.08382,
- 50.73741
- ],
- [
- 19.07878,
- 50.73668
- ],
- [
- 19.07503,
- 50.73465
- ],
- [
- 19.07284,
- 50.73708
- ],
- [
- 19.07153,
- 50.74042
- ],
- [
- 19.0685,
- 50.74339
- ],
- [
- 19.06632,
- 50.74233
- ],
- [
- 19.06392,
- 50.74554
- ],
- [
- 19.06595,
- 50.7466
- ],
- [
- 19.06548,
- 50.7496
- ],
- [
- 19.06202,
- 50.75041
- ],
- [
- 19.06018,
- 50.74455
- ],
- [
- 19.04257,
- 50.74466
- ],
- [
- 19.0333,
- 50.74827
- ],
- [
- 19.01869,
- 50.76252
- ],
- [
- 19.01554,
- 50.77044
- ],
- [
- 19.01101,
- 50.7718
- ],
- [
- 19.01353,
- 50.77766
- ],
- [
- 19.01159,
- 50.78077
- ],
- [
- 19.01081,
- 50.78759
- ],
- [
- 19.01362,
- 50.79262
- ],
- [
- 19.01972,
- 50.79555
- ],
- [
- 19.01896,
- 50.80703
- ],
- [
- 19.03439,
- 50.80116
- ],
- [
- 19.03453,
- 50.804
- ],
- [
- 19.02593,
- 50.80731
- ],
- [
- 19.02308,
- 50.81499
- ],
- [
- 19.03154,
- 50.81614
- ],
- [
- 19.02909,
- 50.82435
- ],
- [
- 19.03787,
- 50.82584
- ],
- [
- 19.03921,
- 50.84083
- ],
- [
- 19.04676,
- 50.84934
- ],
- [
- 19.05993,
- 50.8532
- ],
- [
- 19.06209,
- 50.8596
- ],
- [
- 19.06492,
- 50.86134
- ],
- [
- 19.08183,
- 50.8554
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Częstochowy"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2014",
- "id": "Czestochowa-2014",
- "max_zoom": 23,
- "name": "Częstochowa: Orthophotomap 2014 (aerial image)",
- "start_date": "2014",
- "type": "wms",
- "url": "http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2014&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.08183,
- 50.8554
- ],
- [
- 19.0888,
- 50.86563
- ],
- [
- 19.11082,
- 50.86616
- ],
- [
- 19.10961,
- 50.86092
- ],
- [
- 19.11709,
- 50.85933
- ],
- [
- 19.11531,
- 50.86283
- ],
- [
- 19.11997,
- 50.86327
- ],
- [
- 19.1227,
- 50.85452
- ],
- [
- 19.12938,
- 50.85519
- ],
- [
- 19.12566,
- 50.86165
- ],
- [
- 19.13364,
- 50.86147
- ],
- [
- 19.14318,
- 50.86815
- ],
- [
- 19.1498,
- 50.87916
- ],
- [
- 19.16507,
- 50.8794
- ],
- [
- 19.16816,
- 50.88501
- ],
- [
- 19.17265,
- 50.88477
- ],
- [
- 19.18346,
- 50.87706
- ],
- [
- 19.18084,
- 50.86562
- ],
- [
- 19.18711,
- 50.84712
- ],
- [
- 19.19973,
- 50.84395
- ],
- [
- 19.19637,
- 50.83678
- ],
- [
- 19.19358,
- 50.83357
- ],
- [
- 19.19454,
- 50.83145
- ],
- [
- 19.20696,
- 50.82985
- ],
- [
- 19.20838,
- 50.82484
- ],
- [
- 19.21831,
- 50.82571
- ],
- [
- 19.22564,
- 50.82475
- ],
- [
- 19.23075,
- 50.82509
- ],
- [
- 19.2308,
- 50.82666
- ],
- [
- 19.23351,
- 50.82683
- ],
- [
- 19.23303,
- 50.82335
- ],
- [
- 19.21868,
- 50.80115
- ],
- [
- 19.21753,
- 50.79272
- ],
- [
- 19.22592,
- 50.78822
- ],
- [
- 19.20889,
- 50.77561
- ],
- [
- 19.19891,
- 50.76355
- ],
- [
- 19.19521,
- 50.75182
- ],
- [
- 19.19074,
- 50.75211
- ],
- [
- 19.18245,
- 50.7545
- ],
- [
- 19.16504,
- 50.7535
- ],
- [
- 19.16417,
- 50.75586
- ],
- [
- 19.14559,
- 50.75805
- ],
- [
- 19.14282,
- 50.75543
- ],
- [
- 19.13021,
- 50.75786
- ],
- [
- 19.127,
- 50.75314
- ],
- [
- 19.1216,
- 50.75363
- ],
- [
- 19.12066,
- 50.74981
- ],
- [
- 19.10348,
- 50.75228
- ],
- [
- 19.09598,
- 50.75201
- ],
- [
- 19.0956,
- 50.74912
- ],
- [
- 19.09351,
- 50.7488
- ],
- [
- 19.09285,
- 50.75027
- ],
- [
- 19.08442,
- 50.74986
- ],
- [
- 19.08473,
- 50.74349
- ],
- [
- 19.08382,
- 50.73741
- ],
- [
- 19.07878,
- 50.73668
- ],
- [
- 19.07503,
- 50.73465
- ],
- [
- 19.07284,
- 50.73708
- ],
- [
- 19.07153,
- 50.74042
- ],
- [
- 19.0685,
- 50.74339
- ],
- [
- 19.06632,
- 50.74233
- ],
- [
- 19.06392,
- 50.74554
- ],
- [
- 19.06595,
- 50.7466
- ],
- [
- 19.06548,
- 50.7496
- ],
- [
- 19.06202,
- 50.75041
- ],
- [
- 19.06018,
- 50.74455
- ],
- [
- 19.04257,
- 50.74466
- ],
- [
- 19.0333,
- 50.74827
- ],
- [
- 19.01869,
- 50.76252
- ],
- [
- 19.01554,
- 50.77044
- ],
- [
- 19.01101,
- 50.7718
- ],
- [
- 19.01353,
- 50.77766
- ],
- [
- 19.01159,
- 50.78077
- ],
- [
- 19.01081,
- 50.78759
- ],
- [
- 19.01362,
- 50.79262
- ],
- [
- 19.01972,
- 50.79555
- ],
- [
- 19.01896,
- 50.80703
- ],
- [
- 19.03439,
- 50.80116
- ],
- [
- 19.03453,
- 50.804
- ],
- [
- 19.02593,
- 50.80731
- ],
- [
- 19.02308,
- 50.81499
- ],
- [
- 19.03154,
- 50.81614
- ],
- [
- 19.02909,
- 50.82435
- ],
- [
- 19.03787,
- 50.82584
- ],
- [
- 19.03921,
- 50.84083
- ],
- [
- 19.04676,
- 50.84934
- ],
- [
- 19.05993,
- 50.8532
- ],
- [
- 19.06209,
- 50.8596
- ],
- [
- 19.06492,
- 50.86134
- ],
- [
- 19.08183,
- 50.8554
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Częstochowy"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2015",
- "id": "Czestochowa-2015",
- "max_zoom": 23,
- "name": "Częstochowa: Orthophotomap 2015 (aerial image)",
- "start_date": "2015",
- "type": "wms",
- "url": "http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2015&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.08183,
- 50.8554
- ],
- [
- 19.0888,
- 50.86563
- ],
- [
- 19.11082,
- 50.86616
- ],
- [
- 19.10961,
- 50.86092
- ],
- [
- 19.11709,
- 50.85933
- ],
- [
- 19.11531,
- 50.86283
- ],
- [
- 19.11997,
- 50.86327
- ],
- [
- 19.1227,
- 50.85452
- ],
- [
- 19.12938,
- 50.85519
- ],
- [
- 19.12566,
- 50.86165
- ],
- [
- 19.13364,
- 50.86147
- ],
- [
- 19.14318,
- 50.86815
- ],
- [
- 19.1498,
- 50.87916
- ],
- [
- 19.16507,
- 50.8794
- ],
- [
- 19.16816,
- 50.88501
- ],
- [
- 19.17265,
- 50.88477
- ],
- [
- 19.18346,
- 50.87706
- ],
- [
- 19.18084,
- 50.86562
- ],
- [
- 19.18711,
- 50.84712
- ],
- [
- 19.19973,
- 50.84395
- ],
- [
- 19.19637,
- 50.83678
- ],
- [
- 19.19358,
- 50.83357
- ],
- [
- 19.19454,
- 50.83145
- ],
- [
- 19.20696,
- 50.82985
- ],
- [
- 19.20838,
- 50.82484
- ],
- [
- 19.21831,
- 50.82571
- ],
- [
- 19.22564,
- 50.82475
- ],
- [
- 19.23075,
- 50.82509
- ],
- [
- 19.2308,
- 50.82666
- ],
- [
- 19.23351,
- 50.82683
- ],
- [
- 19.23303,
- 50.82335
- ],
- [
- 19.21868,
- 50.80115
- ],
- [
- 19.21753,
- 50.79272
- ],
- [
- 19.22592,
- 50.78822
- ],
- [
- 19.20889,
- 50.77561
- ],
- [
- 19.19891,
- 50.76355
- ],
- [
- 19.19521,
- 50.75182
- ],
- [
- 19.19074,
- 50.75211
- ],
- [
- 19.18245,
- 50.7545
- ],
- [
- 19.16504,
- 50.7535
- ],
- [
- 19.16417,
- 50.75586
- ],
- [
- 19.14559,
- 50.75805
- ],
- [
- 19.14282,
- 50.75543
- ],
- [
- 19.13021,
- 50.75786
- ],
- [
- 19.127,
- 50.75314
- ],
- [
- 19.1216,
- 50.75363
- ],
- [
- 19.12066,
- 50.74981
- ],
- [
- 19.10348,
- 50.75228
- ],
- [
- 19.09598,
- 50.75201
- ],
- [
- 19.0956,
- 50.74912
- ],
- [
- 19.09351,
- 50.7488
- ],
- [
- 19.09285,
- 50.75027
- ],
- [
- 19.08442,
- 50.74986
- ],
- [
- 19.08473,
- 50.74349
- ],
- [
- 19.08382,
- 50.73741
- ],
- [
- 19.07878,
- 50.73668
- ],
- [
- 19.07503,
- 50.73465
- ],
- [
- 19.07284,
- 50.73708
- ],
- [
- 19.07153,
- 50.74042
- ],
- [
- 19.0685,
- 50.74339
- ],
- [
- 19.06632,
- 50.74233
- ],
- [
- 19.06392,
- 50.74554
- ],
- [
- 19.06595,
- 50.7466
- ],
- [
- 19.06548,
- 50.7496
- ],
- [
- 19.06202,
- 50.75041
- ],
- [
- 19.06018,
- 50.74455
- ],
- [
- 19.04257,
- 50.74466
- ],
- [
- 19.0333,
- 50.74827
- ],
- [
- 19.01869,
- 50.76252
- ],
- [
- 19.01554,
- 50.77044
- ],
- [
- 19.01101,
- 50.7718
- ],
- [
- 19.01353,
- 50.77766
- ],
- [
- 19.01159,
- 50.78077
- ],
- [
- 19.01081,
- 50.78759
- ],
- [
- 19.01362,
- 50.79262
- ],
- [
- 19.01972,
- 50.79555
- ],
- [
- 19.01896,
- 50.80703
- ],
- [
- 19.03439,
- 50.80116
- ],
- [
- 19.03453,
- 50.804
- ],
- [
- 19.02593,
- 50.80731
- ],
- [
- 19.02308,
- 50.81499
- ],
- [
- 19.03154,
- 50.81614
- ],
- [
- 19.02909,
- 50.82435
- ],
- [
- 19.03787,
- 50.82584
- ],
- [
- 19.03921,
- 50.84083
- ],
- [
- 19.04676,
- 50.84934
- ],
- [
- 19.05993,
- 50.8532
- ],
- [
- 19.06209,
- 50.8596
- ],
- [
- 19.06492,
- 50.86134
- ],
- [
- 19.08183,
- 50.8554
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Częstochowy"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2016-11-08",
- "id": "Czestochowa-2016",
- "max_zoom": 23,
- "name": "Częstochowa: Orthophotomap 2016 (aerial image)",
- "start_date": "2016-11-05",
- "type": "wms",
- "url": "http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2016&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.08183,
- 50.8554
- ],
- [
- 19.0888,
- 50.86563
- ],
- [
- 19.11082,
- 50.86616
- ],
- [
- 19.10961,
- 50.86092
- ],
- [
- 19.11709,
- 50.85933
- ],
- [
- 19.11531,
- 50.86283
- ],
- [
- 19.11997,
- 50.86327
- ],
- [
- 19.1227,
- 50.85452
- ],
- [
- 19.12938,
- 50.85519
- ],
- [
- 19.12566,
- 50.86165
- ],
- [
- 19.13364,
- 50.86147
- ],
- [
- 19.14318,
- 50.86815
- ],
- [
- 19.1498,
- 50.87916
- ],
- [
- 19.16507,
- 50.8794
- ],
- [
- 19.16816,
- 50.88501
- ],
- [
- 19.17265,
- 50.88477
- ],
- [
- 19.18346,
- 50.87706
- ],
- [
- 19.18084,
- 50.86562
- ],
- [
- 19.18711,
- 50.84712
- ],
- [
- 19.19973,
- 50.84395
- ],
- [
- 19.19637,
- 50.83678
- ],
- [
- 19.19358,
- 50.83357
- ],
- [
- 19.19454,
- 50.83145
- ],
- [
- 19.20696,
- 50.82985
- ],
- [
- 19.20838,
- 50.82484
- ],
- [
- 19.21831,
- 50.82571
- ],
- [
- 19.22564,
- 50.82475
- ],
- [
- 19.23075,
- 50.82509
- ],
- [
- 19.2308,
- 50.82666
- ],
- [
- 19.23351,
- 50.82683
- ],
- [
- 19.23303,
- 50.82335
- ],
- [
- 19.21868,
- 50.80115
- ],
- [
- 19.21753,
- 50.79272
- ],
- [
- 19.22592,
- 50.78822
- ],
- [
- 19.20889,
- 50.77561
- ],
- [
- 19.19891,
- 50.76355
- ],
- [
- 19.19521,
- 50.75182
- ],
- [
- 19.19074,
- 50.75211
- ],
- [
- 19.18245,
- 50.7545
- ],
- [
- 19.16504,
- 50.7535
- ],
- [
- 19.16417,
- 50.75586
- ],
- [
- 19.14559,
- 50.75805
- ],
- [
- 19.14282,
- 50.75543
- ],
- [
- 19.13021,
- 50.75786
- ],
- [
- 19.127,
- 50.75314
- ],
- [
- 19.1216,
- 50.75363
- ],
- [
- 19.12066,
- 50.74981
- ],
- [
- 19.10348,
- 50.75228
- ],
- [
- 19.09598,
- 50.75201
- ],
- [
- 19.0956,
- 50.74912
- ],
- [
- 19.09351,
- 50.7488
- ],
- [
- 19.09285,
- 50.75027
- ],
- [
- 19.08442,
- 50.74986
- ],
- [
- 19.08473,
- 50.74349
- ],
- [
- 19.08382,
- 50.73741
- ],
- [
- 19.07878,
- 50.73668
- ],
- [
- 19.07503,
- 50.73465
- ],
- [
- 19.07284,
- 50.73708
- ],
- [
- 19.07153,
- 50.74042
- ],
- [
- 19.0685,
- 50.74339
- ],
- [
- 19.06632,
- 50.74233
- ],
- [
- 19.06392,
- 50.74554
- ],
- [
- 19.06595,
- 50.7466
- ],
- [
- 19.06548,
- 50.7496
- ],
- [
- 19.06202,
- 50.75041
- ],
- [
- 19.06018,
- 50.74455
- ],
- [
- 19.04257,
- 50.74466
- ],
- [
- 19.0333,
- 50.74827
- ],
- [
- 19.01869,
- 50.76252
- ],
- [
- 19.01554,
- 50.77044
- ],
- [
- 19.01101,
- 50.7718
- ],
- [
- 19.01353,
- 50.77766
- ],
- [
- 19.01159,
- 50.78077
- ],
- [
- 19.01081,
- 50.78759
- ],
- [
- 19.01362,
- 50.79262
- ],
- [
- 19.01972,
- 50.79555
- ],
- [
- 19.01896,
- 50.80703
- ],
- [
- 19.03439,
- 50.80116
- ],
- [
- 19.03453,
- 50.804
- ],
- [
- 19.02593,
- 50.80731
- ],
- [
- 19.02308,
- 50.81499
- ],
- [
- 19.03154,
- 50.81614
- ],
- [
- 19.02909,
- 50.82435
- ],
- [
- 19.03787,
- 50.82584
- ],
- [
- 19.03921,
- 50.84083
- ],
- [
- 19.04676,
- 50.84934
- ],
- [
- 19.05993,
- 50.8532
- ],
- [
- 19.06209,
- 50.8596
- ],
- [
- 19.06492,
- 50.86134
- ],
- [
- 19.08183,
- 50.8554
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Częstochowy"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2017-11-19",
- "id": "Czestochowa-2017",
- "max_zoom": 23,
- "name": "Częstochowa: Orthophotomap 2017 (aerial image)",
- "start_date": "2017-11-18",
- "type": "wms",
- "url": "http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.9751,
- 54.37092
- ],
- [
- 16.31116,
- 54.55618
- ],
- [
- 17.13919,
- 54.78457
- ],
- [
- 18.34485,
- 54.90227
- ],
- [
- 19.66137,
- 54.47372
- ],
- [
- 20.28152,
- 54.42135
- ],
- [
- 21.46639,
- 54.34064
- ],
- [
- 22.77599,
- 54.37698
- ],
- [
- 22.8626,
- 54.42336
- ],
- [
- 23.29567,
- 54.26786
- ],
- [
- 23.53472,
- 54.09553
- ],
- [
- 23.52086,
- 53.97752
- ],
- [
- 23.71834,
- 53.46296
- ],
- [
- 23.92968,
- 53.18567
- ],
- [
- 23.92968,
- 52.68873
- ],
- [
- 23.7322,
- 52.60675
- ],
- [
- 23.5659,
- 52.58781
- ],
- [
- 23.20905,
- 52.33026
- ],
- [
- 23.19519,
- 52.23701
- ],
- [
- 23.50354,
- 52.18606
- ],
- [
- 23.69062,
- 52.00301
- ],
- [
- 23.59708,
- 51.7399
- ],
- [
- 23.66291,
- 51.38886
- ],
- [
- 23.9366,
- 50.98278
- ],
- [
- 24.16873,
- 50.86048
- ],
- [
- 24.01975,
- 50.80358
- ],
- [
- 24.10983,
- 50.66105
- ],
- [
- 24.05786,
- 50.41884
- ],
- [
- 23.61787,
- 50.30834
- ],
- [
- 22.68244,
- 49.51635
- ],
- [
- 22.73788,
- 49.20949
- ],
- [
- 22.90417,
- 49.07804
- ],
- [
- 22.8626,
- 48.99401
- ],
- [
- 22.60969,
- 49.03718
- ],
- [
- 22.07615,
- 49.20044
- ],
- [
- 21.84749,
- 49.37219
- ],
- [
- 21.37631,
- 49.44883
- ],
- [
- 21.10262,
- 49.37219
- ],
- [
- 20.91207,
- 49.3022
- ],
- [
- 20.6453,
- 49.39023
- ],
- [
- 20.18451,
- 49.33156
- ],
- [
- 20.11869,
- 49.20044
- ],
- [
- 19.942,
- 49.13021
- ],
- [
- 19.76531,
- 49.21176
- ],
- [
- 19.74798,
- 49.39925
- ],
- [
- 19.60247,
- 49.41503
- ],
- [
- 19.50893,
- 49.58154
- ],
- [
- 19.42925,
- 49.59052
- ],
- [
- 19.23177,
- 49.41503
- ],
- [
- 18.99618,
- 49.38798
- ],
- [
- 18.93382,
- 49.4916
- ],
- [
- 18.83681,
- 49.49386
- ],
- [
- 18.80216,
- 49.66234
- ],
- [
- 18.6428,
- 49.70941
- ],
- [
- 18.52154,
- 49.89947
- ],
- [
- 18.08154,
- 50.01092
- ],
- [
- 17.88753,
- 49.98865
- ],
- [
- 17.73855,
- 50.06877
- ],
- [
- 17.6069,
- 50.17096
- ],
- [
- 17.74548,
- 50.21532
- ],
- [
- 17.71084,
- 50.3017
- ],
- [
- 17.41635,
- 50.26407
- ],
- [
- 16.94864,
- 50.44533
- ],
- [
- 16.89321,
- 50.40339
- ],
- [
- 17.00061,
- 50.31055
- ],
- [
- 17.01793,
- 50.22419
- ],
- [
- 16.81352,
- 50.18649
- ],
- [
- 16.64029,
- 50.09767
- ],
- [
- 16.43242,
- 50.28621
- ],
- [
- 16.19683,
- 50.42767
- ],
- [
- 16.42203,
- 50.58852
- ],
- [
- 16.33888,
- 50.66324
- ],
- [
- 16.22802,
- 50.63688
- ],
- [
- 16.05479,
- 50.61271
- ],
- [
- 15.57322,
- 50.76415
- ],
- [
- 15.26834,
- 50.89764
- ],
- [
- 15.24409,
- 50.9806
- ],
- [
- 15.02929,
- 51.0133
- ],
- [
- 15.00157,
- 50.85829
- ],
- [
- 14.81102,
- 50.87359
- ],
- [
- 14.95653,
- 51.07212
- ],
- [
- 15.01889,
- 51.29146
- ],
- [
- 14.93921,
- 51.46015
- ],
- [
- 14.72094,
- 51.55718
- ],
- [
- 14.75212,
- 51.62606
- ],
- [
- 14.59968,
- 51.84276
- ],
- [
- 14.70362,
- 52.07334
- ],
- [
- 14.55811,
- 52.24974
- ],
- [
- 14.51654,
- 52.42544
- ],
- [
- 14.60315,
- 52.58781
- ],
- [
- 14.11465,
- 52.82083
- ],
- [
- 14.15276,
- 52.9734
- ],
- [
- 14.35024,
- 53.07342
- ],
- [
- 14.42299,
- 53.26656
- ],
- [
- 14.1978,
- 53.87348
- ],
- [
- 14.22205,
- 53.99585
- ],
- [
- 15.9751,
- 54.37092
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Główny Urząd Geodezji i Kartografii",
- "url": "https://geoportal.gov.pl/web/guest/regulamin"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2180",
- "EPSG:2176",
- "EPSG:2177",
- "EPSG:2178",
- "EPSG:2179"
- ],
- "best": true,
- "country_code": "PL",
- "icon": "https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png",
- "id": "Geoportal2-PL-aerial_image",
- "license_url": "https://wiki.openstreetmap.org/wiki/Geoportal.gov.pl",
- "max_zoom": 23,
- "name": "Geoportal 2: Orthophotomap (aerial image)",
- "type": "wms",
- "url": "https://mapy.geoportal.gov.pl/wss/service/img/guest/ORTO/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Raster&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}{header(User-Agent,Mozilla/5.0 (JOSM)}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.9751,
- 54.37092
- ],
- [
- 16.31116,
- 54.55618
- ],
- [
- 17.13919,
- 54.78457
- ],
- [
- 18.34485,
- 54.90227
- ],
- [
- 19.66137,
- 54.47372
- ],
- [
- 20.28152,
- 54.42135
- ],
- [
- 21.46639,
- 54.34064
- ],
- [
- 22.77599,
- 54.37698
- ],
- [
- 22.8626,
- 54.42336
- ],
- [
- 23.29567,
- 54.26786
- ],
- [
- 23.53472,
- 54.09553
- ],
- [
- 23.52086,
- 53.97752
- ],
- [
- 23.71834,
- 53.46296
- ],
- [
- 23.92968,
- 53.18567
- ],
- [
- 23.92968,
- 52.68873
- ],
- [
- 23.7322,
- 52.60675
- ],
- [
- 23.5659,
- 52.58781
- ],
- [
- 23.20905,
- 52.33026
- ],
- [
- 23.19519,
- 52.23701
- ],
- [
- 23.50354,
- 52.18606
- ],
- [
- 23.69062,
- 52.00301
- ],
- [
- 23.59708,
- 51.7399
- ],
- [
- 23.66291,
- 51.38886
- ],
- [
- 23.9366,
- 50.98278
- ],
- [
- 24.16873,
- 50.86048
- ],
- [
- 24.01975,
- 50.80358
- ],
- [
- 24.10983,
- 50.66105
- ],
- [
- 24.05786,
- 50.41884
- ],
- [
- 23.61787,
- 50.30834
- ],
- [
- 22.68244,
- 49.51635
- ],
- [
- 22.73788,
- 49.20949
- ],
- [
- 22.90417,
- 49.07804
- ],
- [
- 22.8626,
- 48.99401
- ],
- [
- 22.60969,
- 49.03718
- ],
- [
- 22.07615,
- 49.20044
- ],
- [
- 21.84749,
- 49.37219
- ],
- [
- 21.37631,
- 49.44883
- ],
- [
- 21.10262,
- 49.37219
- ],
- [
- 20.91207,
- 49.3022
- ],
- [
- 20.6453,
- 49.39023
- ],
- [
- 20.18451,
- 49.33156
- ],
- [
- 20.11869,
- 49.20044
- ],
- [
- 19.942,
- 49.13021
- ],
- [
- 19.76531,
- 49.21176
- ],
- [
- 19.74798,
- 49.39925
- ],
- [
- 19.60247,
- 49.41503
- ],
- [
- 19.50893,
- 49.58154
- ],
- [
- 19.42925,
- 49.59052
- ],
- [
- 19.23177,
- 49.41503
- ],
- [
- 18.99618,
- 49.38798
- ],
- [
- 18.93382,
- 49.4916
- ],
- [
- 18.83681,
- 49.49386
- ],
- [
- 18.80216,
- 49.66234
- ],
- [
- 18.6428,
- 49.70941
- ],
- [
- 18.52154,
- 49.89947
- ],
- [
- 18.08154,
- 50.01092
- ],
- [
- 17.88753,
- 49.98865
- ],
- [
- 17.73855,
- 50.06877
- ],
- [
- 17.6069,
- 50.17096
- ],
- [
- 17.74548,
- 50.21532
- ],
- [
- 17.71084,
- 50.3017
- ],
- [
- 17.41635,
- 50.26407
- ],
- [
- 16.94864,
- 50.44533
- ],
- [
- 16.89321,
- 50.40339
- ],
- [
- 17.00061,
- 50.31055
- ],
- [
- 17.01793,
- 50.22419
- ],
- [
- 16.81352,
- 50.18649
- ],
- [
- 16.64029,
- 50.09767
- ],
- [
- 16.43242,
- 50.28621
- ],
- [
- 16.19683,
- 50.42767
- ],
- [
- 16.42203,
- 50.58852
- ],
- [
- 16.33888,
- 50.66324
- ],
- [
- 16.22802,
- 50.63688
- ],
- [
- 16.05479,
- 50.61271
- ],
- [
- 15.57322,
- 50.76415
- ],
- [
- 15.26834,
- 50.89764
- ],
- [
- 15.24409,
- 50.9806
- ],
- [
- 15.02929,
- 51.0133
- ],
- [
- 15.00157,
- 50.85829
- ],
- [
- 14.81102,
- 50.87359
- ],
- [
- 14.95653,
- 51.07212
- ],
- [
- 15.01889,
- 51.29146
- ],
- [
- 14.93921,
- 51.46015
- ],
- [
- 14.72094,
- 51.55718
- ],
- [
- 14.75212,
- 51.62606
- ],
- [
- 14.59968,
- 51.84276
- ],
- [
- 14.70362,
- 52.07334
- ],
- [
- 14.55811,
- 52.24974
- ],
- [
- 14.51654,
- 52.42544
- ],
- [
- 14.60315,
- 52.58781
- ],
- [
- 14.11465,
- 52.82083
- ],
- [
- 14.15276,
- 52.9734
- ],
- [
- 14.35024,
- 53.07342
- ],
- [
- 14.42299,
- 53.26656
- ],
- [
- 14.1978,
- 53.87348
- ],
- [
- 14.22205,
- 53.99585
- ],
- [
- 15.9751,
- 54.37092
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Centralny Ośrodek Dokumentacji Geodezyjnej i Kartograficznej",
- "url": "http://www.codgik.gov.pl/index.php/darmowe-dane/prng.html"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2180",
- "EPSG:2176",
- "EPSG:2177",
- "EPSG:2178",
- "EPSG:2179"
- ],
- "country_code": "PL",
- "icon": "https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png",
- "id": "Geoportal2-PL-prng",
- "license_url": "https://wiki.openstreetmap.org/wiki/Geoportal.gov.pl",
- "name": "Geoportal 2: PRNG (geo names)",
- "overlay": true,
- "type": "wms",
- "url": "https://mapy.geoportal.gov.pl/wss/service/pub/guest/G2_PRNG_WMS/MapServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=PozostaleObiektyFizjograficzne,Hydrografia,PozostaleMiejscowosci,Wies,UksztaltowanieTerenu&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}{header(User-Agent,Mozilla/5.0 (JOSM)}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.57376,
- 50.34828
- ],
- [
- 18.58723,
- 50.35464
- ],
- [
- 18.58421,
- 50.3601
- ],
- [
- 18.59264,
- 50.37522
- ],
- [
- 18.65228,
- 50.38297
- ],
- [
- 18.67384,
- 50.37675
- ],
- [
- 18.67672,
- 50.36174
- ],
- [
- 18.69218,
- 50.34467
- ],
- [
- 18.70805,
- 50.33799
- ],
- [
- 18.74154,
- 50.3391
- ],
- [
- 18.75145,
- 50.33046
- ],
- [
- 18.74679,
- 50.31236
- ],
- [
- 18.75512,
- 50.30193
- ],
- [
- 18.76358,
- 50.29989
- ],
- [
- 18.76539,
- 50.26873
- ],
- [
- 18.744,
- 50.26541
- ],
- [
- 18.73482,
- 50.25377
- ],
- [
- 18.72775,
- 50.22843
- ],
- [
- 18.71439,
- 50.22835
- ],
- [
- 18.71426,
- 50.21978
- ],
- [
- 18.67522,
- 50.21969
- ],
- [
- 18.67607,
- 50.22562
- ],
- [
- 18.65098,
- 50.23169
- ],
- [
- 18.6288,
- 50.22539
- ],
- [
- 18.61744,
- 50.24044
- ],
- [
- 18.62699,
- 50.24369
- ],
- [
- 18.6315,
- 50.25487
- ],
- [
- 18.61406,
- 50.2576
- ],
- [
- 18.60319,
- 50.25206
- ],
- [
- 18.56536,
- 50.24763
- ],
- [
- 18.54841,
- 50.2492
- ],
- [
- 18.55857,
- 50.2826
- ],
- [
- 18.5459,
- 50.29947
- ],
- [
- 18.52896,
- 50.33687
- ],
- [
- 18.55118,
- 50.35332
- ],
- [
- 18.57376,
- 50.34828
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Gliwice"
- },
- "available_projections": [
- "EPSG:3329",
- "EPSG:3333",
- "EPSG:3330",
- "EPSG:3331",
- "EPSG:3334",
- "EPSG:3332",
- "EPSG:3120",
- "EPSG:2172",
- "EPSG:2173",
- "EPSG:2174",
- "EPSG:2175",
- "EPSG:2180",
- "EPSG:2176",
- "EPSG:2177",
- "EPSG:2178",
- "EPSG:2179",
- "EPSG:32633",
- "EPSG:32634",
- "EPSG:32635",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "id": "Gliwice-buildings",
- "name": "Gliwice: Buildings",
- "type": "wms",
- "url": "http://185.60.246.14:9090/isdp/gs/ows?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=default:EGIB_budynek,default:pkt_adr&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.57376,
- 50.34828
- ],
- [
- 18.58723,
- 50.35464
- ],
- [
- 18.58421,
- 50.3601
- ],
- [
- 18.59264,
- 50.37522
- ],
- [
- 18.65228,
- 50.38297
- ],
- [
- 18.67384,
- 50.37675
- ],
- [
- 18.67672,
- 50.36174
- ],
- [
- 18.69218,
- 50.34467
- ],
- [
- 18.70805,
- 50.33799
- ],
- [
- 18.74154,
- 50.3391
- ],
- [
- 18.75145,
- 50.33046
- ],
- [
- 18.74679,
- 50.31236
- ],
- [
- 18.75512,
- 50.30193
- ],
- [
- 18.76358,
- 50.29989
- ],
- [
- 18.76539,
- 50.26873
- ],
- [
- 18.744,
- 50.26541
- ],
- [
- 18.73482,
- 50.25377
- ],
- [
- 18.72775,
- 50.22843
- ],
- [
- 18.71439,
- 50.22835
- ],
- [
- 18.71426,
- 50.21978
- ],
- [
- 18.67522,
- 50.21969
- ],
- [
- 18.67607,
- 50.22562
- ],
- [
- 18.65098,
- 50.23169
- ],
- [
- 18.6288,
- 50.22539
- ],
- [
- 18.61744,
- 50.24044
- ],
- [
- 18.62699,
- 50.24369
- ],
- [
- 18.6315,
- 50.25487
- ],
- [
- 18.61406,
- 50.2576
- ],
- [
- 18.60319,
- 50.25206
- ],
- [
- 18.56536,
- 50.24763
- ],
- [
- 18.54841,
- 50.2492
- ],
- [
- 18.55857,
- 50.2826
- ],
- [
- 18.5459,
- 50.29947
- ],
- [
- 18.52896,
- 50.33687
- ],
- [
- 18.55118,
- 50.35332
- ],
- [
- 18.57376,
- 50.34828
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Gliwice"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2013",
- "id": "Gliwice-2013",
- "max_zoom": 23,
- "name": "Gliwice: Orthophotomap 2013 (aerial image)",
- "start_date": "2013",
- "type": "wms",
- "url": "http://185.60.246.14:9090/isdp/gs/ows?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.90884,
- 50.24006
- ],
- [
- 18.90851,
- 50.23542
- ],
- [
- 18.94279,
- 50.23515
- ],
- [
- 18.94399,
- 50.27138
- ],
- [
- 18.95469,
- 50.27485
- ],
- [
- 18.95571,
- 50.2894
- ],
- [
- 18.96692,
- 50.29364
- ],
- [
- 18.98752,
- 50.2848
- ],
- [
- 18.99888,
- 50.2847
- ],
- [
- 18.99907,
- 50.29368
- ],
- [
- 18.98892,
- 50.29377
- ],
- [
- 18.98934,
- 50.30244
- ],
- [
- 19.0094,
- 50.30196
- ],
- [
- 19.03401,
- 50.28842
- ],
- [
- 19.05533,
- 50.30139
- ],
- [
- 19.07901,
- 50.30087
- ],
- [
- 19.07908,
- 50.29297
- ],
- [
- 19.12296,
- 50.27784
- ],
- [
- 19.12267,
- 50.25523
- ],
- [
- 19.11079,
- 50.2428
- ],
- [
- 19.1098,
- 50.17946
- ],
- [
- 19.12065,
- 50.17936
- ],
- [
- 19.11957,
- 50.14359
- ],
- [
- 19.10777,
- 50.14386
- ],
- [
- 19.0973,
- 50.13916
- ],
- [
- 19.09656,
- 50.12786
- ],
- [
- 19.06379,
- 50.12786
- ],
- [
- 19.02985,
- 50.14009
- ],
- [
- 19.03007,
- 50.16177
- ],
- [
- 19.01909,
- 50.16698
- ],
- [
- 19.00848,
- 50.16707
- ],
- [
- 18.96329,
- 50.1498
- ],
- [
- 18.92907,
- 50.15008
- ],
- [
- 18.92915,
- 50.15426
- ],
- [
- 18.91854,
- 50.15419
- ],
- [
- 18.91878,
- 50.20421
- ],
- [
- 18.90792,
- 50.20429
- ],
- [
- 18.90808,
- 50.21297
- ],
- [
- 18.88588,
- 50.21314
- ],
- [
- 18.88639,
- 50.24024
- ],
- [
- 18.90884,
- 50.24006
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Katowic"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2157",
- "EPSG:2177"
- ],
- "country_code": "PL",
- "id": "Katowice-buildings",
- "name": "Katowice: Buildings",
- "type": "wms",
- "url": "http://mapserver.um.katowice.pl/services/ortowms/MapServer/WMSServer?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=4,5,6&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.90884,
- 50.24006
- ],
- [
- 18.90851,
- 50.23542
- ],
- [
- 18.94279,
- 50.23515
- ],
- [
- 18.94399,
- 50.27138
- ],
- [
- 18.95469,
- 50.27485
- ],
- [
- 18.95571,
- 50.2894
- ],
- [
- 18.96692,
- 50.29364
- ],
- [
- 18.98752,
- 50.2848
- ],
- [
- 18.99888,
- 50.2847
- ],
- [
- 18.99907,
- 50.29368
- ],
- [
- 18.98892,
- 50.29377
- ],
- [
- 18.98934,
- 50.30244
- ],
- [
- 19.0094,
- 50.30196
- ],
- [
- 19.03401,
- 50.28842
- ],
- [
- 19.05533,
- 50.30139
- ],
- [
- 19.07901,
- 50.30087
- ],
- [
- 19.07908,
- 50.29297
- ],
- [
- 19.12296,
- 50.27784
- ],
- [
- 19.12267,
- 50.25523
- ],
- [
- 19.11079,
- 50.2428
- ],
- [
- 19.1098,
- 50.17946
- ],
- [
- 19.12065,
- 50.17936
- ],
- [
- 19.11957,
- 50.14359
- ],
- [
- 19.10777,
- 50.14386
- ],
- [
- 19.0973,
- 50.13916
- ],
- [
- 19.09656,
- 50.12786
- ],
- [
- 19.06379,
- 50.12786
- ],
- [
- 19.02985,
- 50.14009
- ],
- [
- 19.03007,
- 50.16177
- ],
- [
- 19.01909,
- 50.16698
- ],
- [
- 19.00848,
- 50.16707
- ],
- [
- 18.96329,
- 50.1498
- ],
- [
- 18.92907,
- 50.15008
- ],
- [
- 18.92915,
- 50.15426
- ],
- [
- 18.91854,
- 50.15419
- ],
- [
- 18.91878,
- 50.20421
- ],
- [
- 18.90792,
- 50.20429
- ],
- [
- 18.90808,
- 50.21297
- ],
- [
- 18.88588,
- 50.21314
- ],
- [
- 18.88639,
- 50.24024
- ],
- [
- 18.90884,
- 50.24006
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Katowic"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2157",
- "EPSG:2177"
- ],
- "country_code": "PL",
- "id": "Katowice-aerial_image",
- "max_zoom": 23,
- "name": "Katowice: Orthophotomap (aerial image)",
- "type": "wms",
- "url": "http://mapserver.um.katowice.pl/services/ortowms/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.17224,
- 50.10121
- ],
- [
- 22.12574,
- 50.1079
- ],
- [
- 22.0823,
- 50.17206
- ],
- [
- 22.13591,
- 50.1867
- ],
- [
- 22.173,
- 50.18117
- ],
- [
- 22.18418,
- 50.22914
- ],
- [
- 22.235,
- 50.24718
- ],
- [
- 22.3856,
- 50.16031
- ],
- [
- 22.40346,
- 50.13331
- ],
- [
- 22.45275,
- 50.12745
- ],
- [
- 22.45275,
- 50.10676
- ],
- [
- 22.41768,
- 50.08997
- ],
- [
- 22.38364,
- 50.08915
- ],
- [
- 22.38542,
- 50.05393
- ],
- [
- 22.35315,
- 50.05067
- ],
- [
- 22.3562,
- 50.00627
- ],
- [
- 22.31478,
- 49.99451
- ],
- [
- 22.32139,
- 49.94614
- ],
- [
- 22.29979,
- 49.92455
- ],
- [
- 22.24161,
- 49.92847
- ],
- [
- 22.20901,
- 49.93728
- ],
- [
- 22.22382,
- 49.96085
- ],
- [
- 22.16683,
- 50.00412
- ],
- [
- 22.1387,
- 50.00251
- ],
- [
- 22.12015,
- 50.04626
- ],
- [
- 22.17224,
- 50.10121
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Powiat łańcucki"
- },
- "available_projections": [
- "EPSG:2178",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "lancucki-buildings",
- "max_zoom": 19,
- "name": "Powiat łańcucki: Buildings",
- "type": "wms",
- "url": "https://lancut.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=EBT,budynki,adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 21.53768,
- 50.01085
- ],
- [
- 21.51944,
- 50.05423
- ],
- [
- 21.58099,
- 50.1233
- ],
- [
- 21.48804,
- 50.18059
- ],
- [
- 21.13725,
- 50.14835
- ],
- [
- 21.13939,
- 50.12721
- ],
- [
- 21.18058,
- 50.12101
- ],
- [
- 21.14315,
- 50.05965
- ],
- [
- 21.15356,
- 49.92854
- ],
- [
- 21.27892,
- 49.92554
- ],
- [
- 21.22448,
- 49.8861
- ],
- [
- 21.22362,
- 49.84258
- ],
- [
- 21.35177,
- 49.8349
- ],
- [
- 21.36368,
- 49.86838
- ],
- [
- 21.41585,
- 49.82003
- ],
- [
- 21.47943,
- 49.8398
- ],
- [
- 21.52679,
- 49.88911
- ],
- [
- 21.47689,
- 50.00135
- ],
- [
- 21.53768,
- 50.01085
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Powiat dębicki"
- },
- "available_projections": [
- "EPSG:2178",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "debicki-buildings",
- "max_zoom": 19,
- "name": "Powiat dębicki: Buildings",
- "type": "wms",
- "url": "https://debica.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,adresy,EBU,EBT,S&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 23.29224,
- 50.09693
- ],
- [
- 23.55763,
- 50.25704
- ],
- [
- 23.51394,
- 50.26643
- ],
- [
- 23.522,
- 50.29892
- ],
- [
- 23.40991,
- 50.3083
- ],
- [
- 23.44482,
- 50.35653
- ],
- [
- 23.38072,
- 50.3699
- ],
- [
- 23.38829,
- 50.4058
- ],
- [
- 23.35821,
- 50.41105
- ],
- [
- 23.2527,
- 50.36601
- ],
- [
- 23.19379,
- 50.40529
- ],
- [
- 23.01962,
- 50.2928
- ],
- [
- 22.84161,
- 50.30574
- ],
- [
- 22.83572,
- 50.27037
- ],
- [
- 22.82426,
- 50.26923
- ],
- [
- 22.79651,
- 50.20933
- ],
- [
- 22.86603,
- 50.18949
- ],
- [
- 22.87414,
- 50.13786
- ],
- [
- 22.93233,
- 50.1678
- ],
- [
- 22.88954,
- 50.11501
- ],
- [
- 22.95351,
- 50.07178
- ],
- [
- 23.05556,
- 50.04967
- ],
- [
- 22.99884,
- 49.99028
- ],
- [
- 23.14951,
- 49.97563
- ],
- [
- 23.29224,
- 50.09693
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Powiat lubaczowski"
- },
- "available_projections": [
- "EPSG:2179",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "lubaczowski-buildings",
- "max_zoom": 19,
- "name": "Powiat lubaczowski: Buildings",
- "type": "wms",
- "url": "https://lubaczow.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=S,EBT,adresy,budynki_ewid&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.9585,
- 52.46312
- ],
- [
- 17.03946,
- 52.33605
- ],
- [
- 16.84291,
- 52.36501
- ],
- [
- 16.78596,
- 52.46566
- ],
- [
- 16.70022,
- 52.53819
- ],
- [
- 16.6415,
- 52.5288
- ],
- [
- 16.44898,
- 52.36793
- ],
- [
- 16.47775,
- 52.2696
- ],
- [
- 16.5659,
- 52.26813
- ],
- [
- 16.58375,
- 52.17007
- ],
- [
- 17.08099,
- 52.14981
- ],
- [
- 17.37124,
- 52.34522
- ],
- [
- 17.39853,
- 52.44037
- ],
- [
- 17.35338,
- 52.53949
- ],
- [
- 17.13689,
- 52.57783
- ],
- [
- 17.13126,
- 52.6419
- ],
- [
- 17.01608,
- 52.68366
- ],
- [
- 16.9158,
- 52.65079
- ],
- [
- 16.85814,
- 52.58191
- ],
- [
- 16.7367,
- 52.57459
- ],
- [
- 16.70022,
- 52.53824
- ],
- [
- 16.78598,
- 52.46567
- ],
- [
- 16.9585,
- 52.46312
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "PODGIK Poznań"
- },
- "available_projections": [
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatpoznaskiOrthophotomap(aerialimage).png",
- "id": "poznanski-buildings",
- "name": "Powiat poznański: Buildings",
- "type": "wms",
- "url": "http://wms.podgik.poznan.pl/cgi-bin/poznan?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.9585,
- 52.46312
- ],
- [
- 17.03946,
- 52.33605
- ],
- [
- 16.84291,
- 52.36501
- ],
- [
- 16.78596,
- 52.46566
- ],
- [
- 16.70022,
- 52.53819
- ],
- [
- 16.6415,
- 52.5288
- ],
- [
- 16.44898,
- 52.36793
- ],
- [
- 16.47775,
- 52.2696
- ],
- [
- 16.5659,
- 52.26813
- ],
- [
- 16.58375,
- 52.17007
- ],
- [
- 17.08099,
- 52.14981
- ],
- [
- 17.37124,
- 52.34522
- ],
- [
- 17.39853,
- 52.44037
- ],
- [
- 17.35338,
- 52.53949
- ],
- [
- 17.13689,
- 52.57783
- ],
- [
- 17.13126,
- 52.6419
- ],
- [
- 17.01608,
- 52.68366
- ],
- [
- 16.9158,
- 52.65079
- ],
- [
- 16.85814,
- 52.58191
- ],
- [
- 16.7367,
- 52.57459
- ],
- [
- 16.70022,
- 52.53824
- ],
- [
- 16.78598,
- 52.46567
- ],
- [
- 16.9585,
- 52.46312
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "PODGIK Poznań"
- },
- "available_projections": [
- "EPSG:2177"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatpoznaskiOrthophotomap(aerialimage).png",
- "id": "poznanski-aerial",
- "max_zoom": 23,
- "name": "Powiat poznański: Orthophotomap (aerial image)",
- "type": "wms",
- "url": "http://wms.podgik.poznan.pl/cgi-bin/poznan?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto-poznan&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 21.60041,
- 50.21025
- ],
- [
- 21.74199,
- 50.16538
- ],
- [
- 21.792,
- 50.17829
- ],
- [
- 21.81459,
- 50.15264
- ],
- [
- 21.78741,
- 50.10859
- ],
- [
- 21.82597,
- 50.09149
- ],
- [
- 21.82552,
- 50.02925
- ],
- [
- 21.78666,
- 49.97585
- ],
- [
- 21.70632,
- 49.96022
- ],
- [
- 21.683,
- 49.92431
- ],
- [
- 21.60062,
- 49.91793
- ],
- [
- 21.54249,
- 49.8862
- ],
- [
- 21.5188,
- 49.89119
- ],
- [
- 21.45315,
- 49.99268
- ],
- [
- 21.50364,
- 50.0198
- ],
- [
- 21.49298,
- 50.07161
- ],
- [
- 21.55535,
- 50.11909
- ],
- [
- 21.50429,
- 50.16559
- ],
- [
- 21.59816,
- 50.17866
- ],
- [
- 21.60041,
- 50.21025
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Powiat ropczycko-sędziszowski"
- },
- "available_projections": [
- "EPSG:2178",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "sropczyce-buildings",
- "max_zoom": 19,
- "name": "Powiat ropczycko-sędziszowski: Buildings",
- "type": "wms",
- "url": "https://spropczyce.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.18219,
- 50.17339
- ],
- [
- 22.09834,
- 50.17176
- ],
- [
- 22.18016,
- 50.09784
- ],
- [
- 22.13779,
- 50.00695
- ],
- [
- 22.09444,
- 50.00841
- ],
- [
- 22.02839,
- 50.06668
- ],
- [
- 21.9354,
- 50.06636
- ],
- [
- 21.98164,
- 49.94977
- ],
- [
- 22.05278,
- 50.0097
- ],
- [
- 22.1771,
- 50.00555
- ],
- [
- 22.23319,
- 49.96829
- ],
- [
- 22.31144,
- 49.87008
- ],
- [
- 22.34961,
- 49.72826
- ],
- [
- 21.99951,
- 49.82808
- ],
- [
- 21.84961,
- 49.95739
- ],
- [
- 21.7495,
- 49.96981
- ],
- [
- 21.78503,
- 50.14212
- ],
- [
- 21.93307,
- 50.24748
- ],
- [
- 22.08291,
- 50.26471
- ],
- [
- 21.98553,
- 50.31545
- ],
- [
- 22.0901,
- 50.37369
- ],
- [
- 22.19821,
- 50.35265
- ],
- [
- 22.2536,
- 50.2647
- ],
- [
- 22.18219,
- 50.17339
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Powiat rzeszowski"
- },
- "available_projections": [
- "EPSG:2178",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "rzeszowski-buildings",
- "max_zoom": 19,
- "name": "Powiat rzeszowski: Buildings",
- "type": "wms",
- "url": "https://powiatrzeszowski.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,EBT,EBU&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.18219,
- 50.17339
- ],
- [
- 22.09834,
- 50.17176
- ],
- [
- 22.18016,
- 50.09784
- ],
- [
- 22.13779,
- 50.00695
- ],
- [
- 22.09444,
- 50.00841
- ],
- [
- 22.02839,
- 50.06668
- ],
- [
- 21.9354,
- 50.06636
- ],
- [
- 21.98164,
- 49.94977
- ],
- [
- 22.05278,
- 50.0097
- ],
- [
- 22.1771,
- 50.00555
- ],
- [
- 22.23319,
- 49.96829
- ],
- [
- 22.31144,
- 49.87008
- ],
- [
- 22.34961,
- 49.72826
- ],
- [
- 21.99951,
- 49.82808
- ],
- [
- 21.84961,
- 49.95739
- ],
- [
- 21.7495,
- 49.96981
- ],
- [
- 21.78503,
- 50.14212
- ],
- [
- 21.93307,
- 50.24748
- ],
- [
- 22.08291,
- 50.26471
- ],
- [
- 21.98553,
- 50.31545
- ],
- [
- 22.0901,
- 50.37369
- ],
- [
- 22.19821,
- 50.35265
- ],
- [
- 22.2536,
- 50.2647
- ],
- [
- 22.18219,
- 50.17339
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Powiat rzeszowski"
- },
- "available_projections": [
- "EPSG:2178",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "rzeszowski-aerial",
- "max_zoom": 19,
- "name": "Powiat rzeszowski: Orthophotomap (aerial image)",
- "type": "wms",
- "url": "https://powiatrzeszowski.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.017,
- 50.35811
- ],
- [
- 22.09292,
- 50.44916
- ],
- [
- 22.06785,
- 50.51434
- ],
- [
- 22.09722,
- 50.54302
- ],
- [
- 22.16347,
- 50.52686
- ],
- [
- 22.23795,
- 50.5503
- ],
- [
- 22.26768,
- 50.60465
- ],
- [
- 22.22757,
- 50.6653
- ],
- [
- 22.16235,
- 50.66969
- ],
- [
- 22.20843,
- 50.75403
- ],
- [
- 22.16239,
- 50.80039
- ],
- [
- 22.0546,
- 50.82234
- ],
- [
- 21.94394,
- 50.77639
- ],
- [
- 21.86228,
- 50.80439
- ],
- [
- 21.83413,
- 50.75035
- ],
- [
- 21.87465,
- 50.70066
- ],
- [
- 21.84046,
- 50.65749
- ],
- [
- 21.97582,
- 50.53164
- ],
- [
- 21.84797,
- 50.47196
- ],
- [
- 21.88045,
- 50.3913
- ],
- [
- 22.017,
- 50.35811
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Powiat stalowowolski"
- },
- "available_projections": [
- "EPSG:2178",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "stalowowolski-buildings",
- "max_zoom": 19,
- "name": "Powiat stalowowolski: Buildings",
- "type": "wms",
- "url": "https://stalowawola.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=EBT,adresy,budynki,centroidy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.72794,
- 52.48838
- ],
- [
- 16.86925,
- 52.48982
- ],
- [
- 16.86879,
- 52.50779
- ],
- [
- 16.93948,
- 52.50845
- ],
- [
- 16.93926,
- 52.51743
- ],
- [
- 16.98639,
- 52.51784
- ],
- [
- 16.98784,
- 52.45494
- ],
- [
- 17.03491,
- 52.45534
- ],
- [
- 17.0353,
- 52.43736
- ],
- [
- 17.08235,
- 52.43774
- ],
- [
- 17.0831,
- 52.4018
- ],
- [
- 17.0596,
- 52.40161
- ],
- [
- 17.06129,
- 52.32075
- ],
- [
- 17.01438,
- 52.32035
- ],
- [
- 17.01518,
- 52.28441
- ],
- [
- 16.96829,
- 52.28401
- ],
- [
- 16.96787,
- 52.30198
- ],
- [
- 16.89752,
- 52.30134
- ],
- [
- 16.89662,
- 52.33728
- ],
- [
- 16.80273,
- 52.33638
- ],
- [
- 16.80176,
- 52.37232
- ],
- [
- 16.77828,
- 52.3721
- ],
- [
- 16.77603,
- 52.45294
- ],
- [
- 16.72897,
- 52.45244
- ],
- [
- 16.72794,
- 52.48838
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Zarząd Geodezji i Katastru Miejskiego GEOPOZ"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:3857"
- ],
- "country_code": "PL",
- "end_date": "2018",
- "id": "poznan-buildings",
- "max_zoom": 23,
- "name": "Poznań: Buildings",
- "start_date": "2018",
- "type": "wms",
- "url": "http://wms2.geopoz.poznan.pl:8080/geoserver/sip/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki_ewidencyjne_sql&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.72794,
- 52.48838
- ],
- [
- 16.86925,
- 52.48982
- ],
- [
- 16.86879,
- 52.50779
- ],
- [
- 16.93948,
- 52.50845
- ],
- [
- 16.93926,
- 52.51743
- ],
- [
- 16.98639,
- 52.51784
- ],
- [
- 16.98784,
- 52.45494
- ],
- [
- 17.03491,
- 52.45534
- ],
- [
- 17.0353,
- 52.43736
- ],
- [
- 17.08235,
- 52.43774
- ],
- [
- 17.0831,
- 52.4018
- ],
- [
- 17.0596,
- 52.40161
- ],
- [
- 17.06129,
- 52.32075
- ],
- [
- 17.01438,
- 52.32035
- ],
- [
- 17.01518,
- 52.28441
- ],
- [
- 16.96829,
- 52.28401
- ],
- [
- 16.96787,
- 52.30198
- ],
- [
- 16.89752,
- 52.30134
- ],
- [
- 16.89662,
- 52.33728
- ],
- [
- 16.80273,
- 52.33638
- ],
- [
- 16.80176,
- 52.37232
- ],
- [
- 16.77828,
- 52.3721
- ],
- [
- 16.77603,
- 52.45294
- ],
- [
- 16.72897,
- 52.45244
- ],
- [
- 16.72794,
- 52.48838
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Zarząd Geodezji i Katastru Miejskiego GEOPOZ"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:3857"
- ],
- "country_code": "PL",
- "end_date": "2014",
- "id": "poznan-ortofotomapa2014",
- "max_zoom": 23,
- "name": "Poznań: Orthophotomap 2014 (aerial image)",
- "start_date": "2014",
- "type": "wms",
- "url": "http://wms1.geopoz.poznan.pl:6080/arcgis/services/sip/ortofotomapa_2014/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa_2014_image&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.72794,
- 52.48838
- ],
- [
- 16.86925,
- 52.48982
- ],
- [
- 16.86879,
- 52.50779
- ],
- [
- 16.93948,
- 52.50845
- ],
- [
- 16.93926,
- 52.51743
- ],
- [
- 16.98639,
- 52.51784
- ],
- [
- 16.98784,
- 52.45494
- ],
- [
- 17.03491,
- 52.45534
- ],
- [
- 17.0353,
- 52.43736
- ],
- [
- 17.08235,
- 52.43774
- ],
- [
- 17.0831,
- 52.4018
- ],
- [
- 17.0596,
- 52.40161
- ],
- [
- 17.06129,
- 52.32075
- ],
- [
- 17.01438,
- 52.32035
- ],
- [
- 17.01518,
- 52.28441
- ],
- [
- 16.96829,
- 52.28401
- ],
- [
- 16.96787,
- 52.30198
- ],
- [
- 16.89752,
- 52.30134
- ],
- [
- 16.89662,
- 52.33728
- ],
- [
- 16.80273,
- 52.33638
- ],
- [
- 16.80176,
- 52.37232
- ],
- [
- 16.77828,
- 52.3721
- ],
- [
- 16.77603,
- 52.45294
- ],
- [
- 16.72897,
- 52.45244
- ],
- [
- 16.72794,
- 52.48838
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Zarząd Geodezji i Katastru Miejskiego GEOPOZ"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:3857"
- ],
- "country_code": "PL",
- "end_date": "2016",
- "id": "poznan-ortofotomapa2016",
- "max_zoom": 23,
- "name": "Poznań: Orthophotomap 2016 (aerial image)",
- "start_date": "2016",
- "type": "wms",
- "url": "http://wms1.geopoz.poznan.pl:6080/arcgis/services/sip/ortofotomapy/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa_2016_image&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.72268,
- 49.76885
- ],
- [
- 22.73002,
- 49.76787
- ],
- [
- 22.73097,
- 49.77612
- ],
- [
- 22.72027,
- 49.77662
- ],
- [
- 22.71787,
- 49.78062
- ],
- [
- 22.73104,
- 49.78553
- ],
- [
- 22.7244,
- 49.79043
- ],
- [
- 22.73458,
- 49.80441
- ],
- [
- 22.73167,
- 49.81429
- ],
- [
- 22.7261,
- 49.8165
- ],
- [
- 22.72762,
- 49.82124
- ],
- [
- 22.74395,
- 49.8187
- ],
- [
- 22.75952,
- 49.80939
- ],
- [
- 22.79042,
- 49.81462
- ],
- [
- 22.81169,
- 49.80571
- ],
- [
- 22.79738,
- 49.80146
- ],
- [
- 22.80384,
- 49.79247
- ],
- [
- 22.83118,
- 49.79664
- ],
- [
- 22.85752,
- 49.78561
- ],
- [
- 22.84549,
- 49.76746
- ],
- [
- 22.82485,
- 49.77105
- ],
- [
- 22.82004,
- 49.75674
- ],
- [
- 22.77358,
- 49.74439
- ],
- [
- 22.73838,
- 49.75895
- ],
- [
- 22.72205,
- 49.74644
- ],
- [
- 22.71065,
- 49.76288
- ],
- [
- 22.72268,
- 49.76885
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Miasto Przemyśl"
- },
- "available_projections": [
- "EPSG:2179",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "przemysl-buildings",
- "max_zoom": 19,
- "name": "Przemyśl: Buildings",
- "type": "wms",
- "url": "http://przemysl.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=adresy,budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.72268,
- 49.76885
- ],
- [
- 22.73002,
- 49.76787
- ],
- [
- 22.73097,
- 49.77612
- ],
- [
- 22.72027,
- 49.77662
- ],
- [
- 22.71787,
- 49.78062
- ],
- [
- 22.73104,
- 49.78553
- ],
- [
- 22.7244,
- 49.79043
- ],
- [
- 22.73458,
- 49.80441
- ],
- [
- 22.73167,
- 49.81429
- ],
- [
- 22.7261,
- 49.8165
- ],
- [
- 22.72762,
- 49.82124
- ],
- [
- 22.74395,
- 49.8187
- ],
- [
- 22.75952,
- 49.80939
- ],
- [
- 22.79042,
- 49.81462
- ],
- [
- 22.81169,
- 49.80571
- ],
- [
- 22.79738,
- 49.80146
- ],
- [
- 22.80384,
- 49.79247
- ],
- [
- 22.83118,
- 49.79664
- ],
- [
- 22.85752,
- 49.78561
- ],
- [
- 22.84549,
- 49.76746
- ],
- [
- 22.82485,
- 49.77105
- ],
- [
- 22.82004,
- 49.75674
- ],
- [
- 22.77358,
- 49.74439
- ],
- [
- 22.73838,
- 49.75895
- ],
- [
- 22.72205,
- 49.74644
- ],
- [
- 22.71065,
- 49.76288
- ],
- [
- 22.72268,
- 49.76885
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Miasto Przemyśl"
- },
- "available_projections": [
- "EPSG:2179",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png",
- "id": "przemysl-aerial",
- "max_zoom": 23,
- "name": "Przemyśl: Ortophotomap (aerial image)",
- "type": "wms",
- "url": "http://przemysl.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.84294,
- 50.32508
- ],
- [
- 18.84008,
- 50.33091
- ],
- [
- 18.85132,
- 50.33437
- ],
- [
- 18.86262,
- 50.3305
- ],
- [
- 18.88693,
- 50.333
- ],
- [
- 18.89493,
- 50.3319
- ],
- [
- 18.90045,
- 50.32562
- ],
- [
- 18.89713,
- 50.31146
- ],
- [
- 18.89312,
- 50.31149
- ],
- [
- 18.89114,
- 50.30778
- ],
- [
- 18.8972,
- 50.2999
- ],
- [
- 18.89073,
- 50.29586
- ],
- [
- 18.90211,
- 50.29204
- ],
- [
- 18.90706,
- 50.28637
- ],
- [
- 18.90853,
- 50.27823
- ],
- [
- 18.93583,
- 50.27379
- ],
- [
- 18.94106,
- 50.25859
- ],
- [
- 18.93848,
- 50.25317
- ],
- [
- 18.95086,
- 50.24267
- ],
- [
- 18.96531,
- 50.24084
- ],
- [
- 18.94611,
- 50.22907
- ],
- [
- 18.89932,
- 50.22516
- ],
- [
- 18.90251,
- 50.21749
- ],
- [
- 18.89075,
- 50.21557
- ],
- [
- 18.89292,
- 50.20913
- ],
- [
- 18.86474,
- 50.20512
- ],
- [
- 18.85673,
- 50.22078
- ],
- [
- 18.85258,
- 50.22331
- ],
- [
- 18.84619,
- 50.21761
- ],
- [
- 18.83341,
- 50.21715
- ],
- [
- 18.83533,
- 50.22307
- ],
- [
- 18.83051,
- 50.23099
- ],
- [
- 18.82411,
- 50.23055
- ],
- [
- 18.81641,
- 50.23709
- ],
- [
- 18.81619,
- 50.24125
- ],
- [
- 18.80635,
- 50.24596
- ],
- [
- 18.80344,
- 50.24293
- ],
- [
- 18.78831,
- 50.24456
- ],
- [
- 18.79552,
- 50.2768
- ],
- [
- 18.81681,
- 50.27732
- ],
- [
- 18.81919,
- 50.28794
- ],
- [
- 18.83893,
- 50.29795
- ],
- [
- 18.83849,
- 50.3004
- ],
- [
- 18.82699,
- 50.30342
- ],
- [
- 18.82691,
- 50.32073
- ],
- [
- 18.83007,
- 50.32371
- ],
- [
- 18.84294,
- 50.32508
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Ruda Śląska"
- },
- "available_projections": [
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "id": "Ruda_Slaska-aerial_image",
- "max_zoom": 23,
- "name": "Ruda Śląska: Orthophotomap (aerial image)",
- "type": "wms",
- "url": "https://rudaslaska.geoportal2.pl/map/wmsorto/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.09538,
- 50.08157
- ],
- [
- 22.0947,
- 50.05584
- ],
- [
- 22.08892,
- 50.05589
- ],
- [
- 22.08874,
- 50.03671
- ],
- [
- 22.09505,
- 50.03682
- ],
- [
- 22.09435,
- 49.98723
- ],
- [
- 22.0609,
- 49.98754
- ],
- [
- 22.0605,
- 49.96525
- ],
- [
- 22.04757,
- 49.96509
- ],
- [
- 22.04724,
- 49.95792
- ],
- [
- 22.03139,
- 49.95845
- ],
- [
- 22.0312,
- 49.9574
- ],
- [
- 22.0014,
- 49.95833
- ],
- [
- 22.00019,
- 49.9375
- ],
- [
- 22.0014,
- 49.93746
- ],
- [
- 22.00029,
- 49.92047
- ],
- [
- 21.96799,
- 49.92088
- ],
- [
- 21.969,
- 49.93683
- ],
- [
- 21.95393,
- 49.93706
- ],
- [
- 21.95441,
- 49.94373
- ],
- [
- 21.94192,
- 49.94378
- ],
- [
- 21.94253,
- 49.96646
- ],
- [
- 21.93676,
- 49.9665
- ],
- [
- 21.93776,
- 49.97828
- ],
- [
- 21.92898,
- 49.97858
- ],
- [
- 21.92951,
- 49.98858
- ],
- [
- 21.91606,
- 49.9888
- ],
- [
- 21.9165,
- 50.01192
- ],
- [
- 21.90572,
- 50.01195
- ],
- [
- 21.90653,
- 50.04136
- ],
- [
- 21.87425,
- 50.04183
- ],
- [
- 21.87546,
- 50.06072
- ],
- [
- 21.90465,
- 50.06083
- ],
- [
- 21.90672,
- 50.0835
- ],
- [
- 22.09538,
- 50.08157
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Rzeszowa"
- },
- "available_projections": [
- "EPSG:2178",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "id": "Rzeszow-buildings",
- "max_zoom": 19,
- "name": "Rzeszów: Buildings",
- "type": "wms",
- "url": "http://wms.erzeszow.pl/?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=komunikacja,budynki,adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 22.09538,
- 50.08157
- ],
- [
- 22.0947,
- 50.05584
- ],
- [
- 22.08892,
- 50.05589
- ],
- [
- 22.08874,
- 50.03671
- ],
- [
- 22.09505,
- 50.03682
- ],
- [
- 22.09435,
- 49.98723
- ],
- [
- 22.0609,
- 49.98754
- ],
- [
- 22.0605,
- 49.96525
- ],
- [
- 22.04757,
- 49.96509
- ],
- [
- 22.04724,
- 49.95792
- ],
- [
- 22.03139,
- 49.95845
- ],
- [
- 22.0312,
- 49.9574
- ],
- [
- 22.0014,
- 49.95833
- ],
- [
- 22.00019,
- 49.9375
- ],
- [
- 22.0014,
- 49.93746
- ],
- [
- 22.00029,
- 49.92047
- ],
- [
- 21.96799,
- 49.92088
- ],
- [
- 21.969,
- 49.93683
- ],
- [
- 21.95393,
- 49.93706
- ],
- [
- 21.95441,
- 49.94373
- ],
- [
- 21.94192,
- 49.94378
- ],
- [
- 21.94253,
- 49.96646
- ],
- [
- 21.93676,
- 49.9665
- ],
- [
- 21.93776,
- 49.97828
- ],
- [
- 21.92898,
- 49.97858
- ],
- [
- 21.92951,
- 49.98858
- ],
- [
- 21.91606,
- 49.9888
- ],
- [
- 21.9165,
- 50.01192
- ],
- [
- 21.90572,
- 50.01195
- ],
- [
- 21.90653,
- 50.04136
- ],
- [
- 21.87425,
- 50.04183
- ],
- [
- 21.87546,
- 50.06072
- ],
- [
- 21.90465,
- 50.06083
- ],
- [
- 21.90672,
- 50.0835
- ],
- [
- 22.09538,
- 50.08157
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Rzeszowa"
- },
- "available_projections": [
- "EPSG:2178",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "id": "Rzeszow-aerial_image",
- "max_zoom": 23,
- "name": "Rzeszów: Orthophotomap (aerial image)",
- "type": "wms",
- "url": "http://wms.erzeszow.pl/?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=rastry&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.03103,
- 50.33933
- ],
- [
- 19.0316,
- 50.35413
- ],
- [
- 19.0656,
- 50.35373
- ],
- [
- 19.06529,
- 50.34219
- ],
- [
- 19.06118,
- 50.33749
- ],
- [
- 19.06069,
- 50.31967
- ],
- [
- 19.05603,
- 50.31975
- ],
- [
- 19.05562,
- 50.30155
- ],
- [
- 19.06432,
- 50.3015
- ],
- [
- 19.06366,
- 50.27175
- ],
- [
- 19.04379,
- 50.27179
- ],
- [
- 19.04375,
- 50.27478
- ],
- [
- 19.0213,
- 50.27505
- ],
- [
- 19.02156,
- 50.28398
- ],
- [
- 19.01027,
- 50.28856
- ],
- [
- 18.98791,
- 50.28871
- ],
- [
- 18.98822,
- 50.3022
- ],
- [
- 18.98143,
- 50.30226
- ],
- [
- 18.98213,
- 50.33977
- ],
- [
- 19.03103,
- 50.33933
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Siemianowice Śląskie"
- },
- "available_projections": [
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "id": "Siemianowice_Slaskie-buildings",
- "max_zoom": 19,
- "name": "Siemianowice Śląskie: Buildings",
- "type": "wms",
- "url": "https://siemianowice.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,drogi,adresy,ulice&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.03103,
- 50.33933
- ],
- [
- 19.0316,
- 50.35413
- ],
- [
- 19.0656,
- 50.35373
- ],
- [
- 19.06529,
- 50.34219
- ],
- [
- 19.06118,
- 50.33749
- ],
- [
- 19.06069,
- 50.31967
- ],
- [
- 19.05603,
- 50.31975
- ],
- [
- 19.05562,
- 50.30155
- ],
- [
- 19.06432,
- 50.3015
- ],
- [
- 19.06366,
- 50.27175
- ],
- [
- 19.04379,
- 50.27179
- ],
- [
- 19.04375,
- 50.27478
- ],
- [
- 19.0213,
- 50.27505
- ],
- [
- 19.02156,
- 50.28398
- ],
- [
- 19.01027,
- 50.28856
- ],
- [
- 18.98791,
- 50.28871
- ],
- [
- 18.98822,
- 50.3022
- ],
- [
- 18.98143,
- 50.30226
- ],
- [
- 18.98213,
- 50.33977
- ],
- [
- 19.03103,
- 50.33933
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Siemianowice Śląskie"
- },
- "available_projections": [
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "id": "Siemianowice_Slaskie-aerial_image",
- "max_zoom": 23,
- "name": "Siemianowice Śląskie: Orthophotomap (aerial image)",
- "type": "wms",
- "url": "https://siemianowice.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 17.14217,
- 51.12846
- ],
- [
- 17.15659,
- 51.1499
- ],
- [
- 17.15933,
- 51.16056
- ],
- [
- 17.15899,
- 51.17886
- ],
- [
- 17.14371,
- 51.18155
- ],
- [
- 17.13024,
- 51.18128
- ],
- [
- 17.12466,
- 51.17396
- ],
- [
- 17.11436,
- 51.17746
- ],
- [
- 17.0778,
- 51.17746
- ],
- [
- 17.07642,
- 51.1766
- ],
- [
- 17.07548,
- 51.16825
- ],
- [
- 17.06698,
- 51.16745
- ],
- [
- 17.04698,
- 51.17493
- ],
- [
- 17.03376,
- 51.17729
- ],
- [
- 17.02741,
- 51.17729
- ],
- [
- 17.02733,
- 51.18246
- ],
- [
- 17.02252,
- 51.18816
- ],
- [
- 17.01299,
- 51.18816
- ],
- [
- 17.0093,
- 51.18499
- ],
- [
- 17.00312,
- 51.18504
- ],
- [
- 17.00261,
- 51.20016
- ],
- [
- 16.99162,
- 51.20559
- ],
- [
- 16.97008,
- 51.20763
- ],
- [
- 16.96424,
- 51.20989
- ],
- [
- 16.95394,
- 51.20968
- ],
- [
- 16.94656,
- 51.20586
- ],
- [
- 16.9233,
- 51.2001
- ],
- [
- 16.90811,
- 51.21043
- ],
- [
- 16.89927,
- 51.21027
- ],
- [
- 16.89292,
- 51.2071
- ],
- [
- 16.88322,
- 51.2071
- ],
- [
- 16.88073,
- 51.20489
- ],
- [
- 16.88047,
- 51.19666
- ],
- [
- 16.88322,
- 51.19048
- ],
- [
- 16.87403,
- 51.18719
- ],
- [
- 16.87026,
- 51.18203
- ],
- [
- 16.85455,
- 51.18031
- ],
- [
- 16.8421,
- 51.18488
- ],
- [
- 16.82434,
- 51.18467
- ],
- [
- 16.82056,
- 51.17875
- ],
- [
- 16.82099,
- 51.16373
- ],
- [
- 16.82502,
- 51.15647
- ],
- [
- 16.80915,
- 51.15194
- ],
- [
- 16.80657,
- 51.14613
- ],
- [
- 16.80648,
- 51.1366
- ],
- [
- 16.80769,
- 51.13595
- ],
- [
- 16.81687,
- 51.13601
- ],
- [
- 16.8161,
- 51.13337
- ],
- [
- 16.81636,
- 51.12459
- ],
- [
- 16.82932,
- 51.12329
- ],
- [
- 16.83266,
- 51.11834
- ],
- [
- 16.82923,
- 51.11386
- ],
- [
- 16.82923,
- 51.10993
- ],
- [
- 16.83215,
- 51.10869
- ],
- [
- 16.84949,
- 51.10826
- ],
- [
- 16.85661,
- 51.09899
- ],
- [
- 16.87901,
- 51.09252
- ],
- [
- 16.88862,
- 51.09258
- ],
- [
- 16.89197,
- 51.09667
- ],
- [
- 16.92107,
- 51.09662
- ],
- [
- 16.9209,
- 51.09263
- ],
- [
- 16.91661,
- 51.0812
- ],
- [
- 16.91686,
- 51.07942
- ],
- [
- 16.93514,
- 51.07948
- ],
- [
- 16.93849,
- 51.0736
- ],
- [
- 16.95248,
- 51.06686
- ],
- [
- 16.95068,
- 51.05806
- ],
- [
- 16.95454,
- 51.05369
- ],
- [
- 16.96188,
- 51.0473
- ],
- [
- 16.96879,
- 51.04568
- ],
- [
- 16.98072,
- 51.04584
- ],
- [
- 16.98424,
- 51.05197
- ],
- [
- 16.99969,
- 51.04668
- ],
- [
- 17.00776,
- 51.04422
- ],
- [
- 17.01973,
- 51.04169
- ],
- [
- 17.03286,
- 51.0419
- ],
- [
- 17.03415,
- 51.04673
- ],
- [
- 17.04509,
- 51.04339
- ],
- [
- 17.06363,
- 51.04339
- ],
- [
- 17.07037,
- 51.05286
- ],
- [
- 17.08363,
- 51.04428
- ],
- [
- 17.095,
- 51.04368
- ],
- [
- 17.10633,
- 51.04376
- ],
- [
- 17.10835,
- 51.04684
- ],
- [
- 17.10822,
- 51.05377
- ],
- [
- 17.10226,
- 51.05868
- ],
- [
- 17.11136,
- 51.0716
- ],
- [
- 17.12341,
- 51.07179
- ],
- [
- 17.12299,
- 51.07856
- ],
- [
- 17.15088,
- 51.07861
- ],
- [
- 17.17277,
- 51.09344
- ],
- [
- 17.17277,
- 51.09956
- ],
- [
- 17.17697,
- 51.10303
- ],
- [
- 17.17676,
- 51.1092
- ],
- [
- 17.16363,
- 51.1203
- ],
- [
- 17.14217,
- 51.12846
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Wrocław"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2177",
- "EPSG:3857"
- ],
- "country_code": "PL",
- "end_date": "2015",
- "icon": "https://i.imgur.com/PRqROXB.png",
- "id": "wroclaw-orto2015",
- "max_zoom": 23,
- "name": "Wrocław: Orthophotomap 2015 (aerial image)",
- "start_date": "2015",
- "type": "wms",
- "url": "https://gis1.um.wroc.pl/arcgis/services/ogc/OGC_ortofoto_2015/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 17.14217,
- 51.12846
- ],
- [
- 17.15659,
- 51.1499
- ],
- [
- 17.15933,
- 51.16056
- ],
- [
- 17.15899,
- 51.17886
- ],
- [
- 17.14371,
- 51.18155
- ],
- [
- 17.13024,
- 51.18128
- ],
- [
- 17.12466,
- 51.17396
- ],
- [
- 17.11436,
- 51.17746
- ],
- [
- 17.0778,
- 51.17746
- ],
- [
- 17.07642,
- 51.1766
- ],
- [
- 17.07548,
- 51.16825
- ],
- [
- 17.06698,
- 51.16745
- ],
- [
- 17.04698,
- 51.17493
- ],
- [
- 17.03376,
- 51.17729
- ],
- [
- 17.02741,
- 51.17729
- ],
- [
- 17.02733,
- 51.18246
- ],
- [
- 17.02252,
- 51.18816
- ],
- [
- 17.01299,
- 51.18816
- ],
- [
- 17.0093,
- 51.18499
- ],
- [
- 17.00312,
- 51.18504
- ],
- [
- 17.00261,
- 51.20016
- ],
- [
- 16.99162,
- 51.20559
- ],
- [
- 16.97008,
- 51.20763
- ],
- [
- 16.96424,
- 51.20989
- ],
- [
- 16.95394,
- 51.20968
- ],
- [
- 16.94656,
- 51.20586
- ],
- [
- 16.9233,
- 51.2001
- ],
- [
- 16.90811,
- 51.21043
- ],
- [
- 16.89927,
- 51.21027
- ],
- [
- 16.89292,
- 51.2071
- ],
- [
- 16.88322,
- 51.2071
- ],
- [
- 16.88073,
- 51.20489
- ],
- [
- 16.88047,
- 51.19666
- ],
- [
- 16.88322,
- 51.19048
- ],
- [
- 16.87403,
- 51.18719
- ],
- [
- 16.87026,
- 51.18203
- ],
- [
- 16.85455,
- 51.18031
- ],
- [
- 16.8421,
- 51.18488
- ],
- [
- 16.82434,
- 51.18467
- ],
- [
- 16.82056,
- 51.17875
- ],
- [
- 16.82099,
- 51.16373
- ],
- [
- 16.82502,
- 51.15647
- ],
- [
- 16.80915,
- 51.15194
- ],
- [
- 16.80657,
- 51.14613
- ],
- [
- 16.80648,
- 51.1366
- ],
- [
- 16.80769,
- 51.13595
- ],
- [
- 16.81687,
- 51.13601
- ],
- [
- 16.8161,
- 51.13337
- ],
- [
- 16.81636,
- 51.12459
- ],
- [
- 16.82932,
- 51.12329
- ],
- [
- 16.83266,
- 51.11834
- ],
- [
- 16.82923,
- 51.11386
- ],
- [
- 16.82923,
- 51.10993
- ],
- [
- 16.83215,
- 51.10869
- ],
- [
- 16.84949,
- 51.10826
- ],
- [
- 16.85661,
- 51.09899
- ],
- [
- 16.87901,
- 51.09252
- ],
- [
- 16.88862,
- 51.09258
- ],
- [
- 16.89197,
- 51.09667
- ],
- [
- 16.92107,
- 51.09662
- ],
- [
- 16.9209,
- 51.09263
- ],
- [
- 16.91661,
- 51.0812
- ],
- [
- 16.91686,
- 51.07942
- ],
- [
- 16.93514,
- 51.07948
- ],
- [
- 16.93849,
- 51.0736
- ],
- [
- 16.95248,
- 51.06686
- ],
- [
- 16.95068,
- 51.05806
- ],
- [
- 16.95454,
- 51.05369
- ],
- [
- 16.96188,
- 51.0473
- ],
- [
- 16.96879,
- 51.04568
- ],
- [
- 16.98072,
- 51.04584
- ],
- [
- 16.98424,
- 51.05197
- ],
- [
- 16.99969,
- 51.04668
- ],
- [
- 17.00776,
- 51.04422
- ],
- [
- 17.01973,
- 51.04169
- ],
- [
- 17.03286,
- 51.0419
- ],
- [
- 17.03415,
- 51.04673
- ],
- [
- 17.04509,
- 51.04339
- ],
- [
- 17.06363,
- 51.04339
- ],
- [
- 17.07037,
- 51.05286
- ],
- [
- 17.08363,
- 51.04428
- ],
- [
- 17.095,
- 51.04368
- ],
- [
- 17.10633,
- 51.04376
- ],
- [
- 17.10835,
- 51.04684
- ],
- [
- 17.10822,
- 51.05377
- ],
- [
- 17.10226,
- 51.05868
- ],
- [
- 17.11136,
- 51.0716
- ],
- [
- 17.12341,
- 51.07179
- ],
- [
- 17.12299,
- 51.07856
- ],
- [
- 17.15088,
- 51.07861
- ],
- [
- 17.17277,
- 51.09344
- ],
- [
- 17.17277,
- 51.09956
- ],
- [
- 17.17697,
- 51.10303
- ],
- [
- 17.17676,
- 51.1092
- ],
- [
- 17.16363,
- 51.1203
- ],
- [
- 17.14217,
- 51.12846
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Wrocław"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2177",
- "EPSG:3857"
- ],
- "best": true,
- "country_code": "PL",
- "end_date": "2018-04-07",
- "i18n": true,
- "icon": "https://i.imgur.com/PRqROXB.png",
- "id": "wroclaw-orto2018",
- "max_zoom": 23,
- "name": "Wrocław: Orthophotomap 2018 (aerial image)",
- "privacy_policy_url": "http://bip.um.wroc.pl/artykul/7/32673/dane-osobowe",
- "start_date": "2018-04-06",
- "type": "wms",
- "url": "https://gis1.um.wroc.pl/arcgis/services/ogc/OGC_ortofoto_2018/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.74396,
- 50.2753
- ],
- [
- 18.75586,
- 50.27523
- ],
- [
- 18.75578,
- 50.27633
- ],
- [
- 18.74516,
- 50.28105
- ],
- [
- 18.74609,
- 50.28886
- ],
- [
- 18.75084,
- 50.28948
- ],
- [
- 18.74832,
- 50.2957
- ],
- [
- 18.73379,
- 50.29618
- ],
- [
- 18.73208,
- 50.31571
- ],
- [
- 18.73613,
- 50.31646
- ],
- [
- 18.73882,
- 50.32763
- ],
- [
- 18.73725,
- 50.33016
- ],
- [
- 18.73121,
- 50.33169
- ],
- [
- 18.73054,
- 50.3344
- ],
- [
- 18.73422,
- 50.3371
- ],
- [
- 18.73428,
- 50.34097
- ],
- [
- 18.73866,
- 50.34308
- ],
- [
- 18.75419,
- 50.34182
- ],
- [
- 18.75982,
- 50.34624
- ],
- [
- 18.75438,
- 50.34744
- ],
- [
- 18.75119,
- 50.34979
- ],
- [
- 18.74603,
- 50.36876
- ],
- [
- 18.75705,
- 50.3692
- ],
- [
- 18.7639,
- 50.36754
- ],
- [
- 18.77263,
- 50.37628
- ],
- [
- 18.78436,
- 50.37077
- ],
- [
- 18.78713,
- 50.37295
- ],
- [
- 18.79821,
- 50.37048
- ],
- [
- 18.80466,
- 50.37561
- ],
- [
- 18.80165,
- 50.37718
- ],
- [
- 18.80164,
- 50.38222
- ],
- [
- 18.80509,
- 50.38317
- ],
- [
- 18.81527,
- 50.38167
- ],
- [
- 18.81446,
- 50.37515
- ],
- [
- 18.82183,
- 50.36883
- ],
- [
- 18.81737,
- 50.36802
- ],
- [
- 18.82104,
- 50.35843
- ],
- [
- 18.8159,
- 50.35336
- ],
- [
- 18.81687,
- 50.35076
- ],
- [
- 18.82294,
- 50.35156
- ],
- [
- 18.83281,
- 50.34962
- ],
- [
- 18.83474,
- 50.3443
- ],
- [
- 18.84615,
- 50.34448
- ],
- [
- 18.86293,
- 50.32852
- ],
- [
- 18.8607,
- 50.32776
- ],
- [
- 18.85088,
- 50.33191
- ],
- [
- 18.84578,
- 50.32923
- ],
- [
- 18.84891,
- 50.32352
- ],
- [
- 18.83179,
- 50.32028
- ],
- [
- 18.83192,
- 50.30483
- ],
- [
- 18.84451,
- 50.30286
- ],
- [
- 18.84429,
- 50.29627
- ],
- [
- 18.82282,
- 50.28615
- ],
- [
- 18.82845,
- 50.28482
- ],
- [
- 18.82745,
- 50.27972
- ],
- [
- 18.82322,
- 50.27994
- ],
- [
- 18.8214,
- 50.27414
- ],
- [
- 18.81392,
- 50.27309
- ],
- [
- 18.79981,
- 50.27351
- ],
- [
- 18.7987,
- 50.2613
- ],
- [
- 18.7923,
- 50.24641
- ],
- [
- 18.78261,
- 50.24583
- ],
- [
- 18.76416,
- 50.25145
- ],
- [
- 18.75396,
- 50.25669
- ],
- [
- 18.75004,
- 50.26402
- ],
- [
- 18.73991,
- 50.26738
- ],
- [
- 18.73421,
- 50.27084
- ],
- [
- 18.74396,
- 50.2753
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Zabrza"
- },
- "available_projections": [
- "EPSG:2177",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "end_date": "2011",
- "id": "Zabrze-2011",
- "max_zoom": 23,
- "name": "Zabrze: Orthophotomap 2011 (aerial image)",
- "start_date": "2011",
- "type": "wms",
- "url": "http://siot.um.zabrze.pl/arcgis/services/UMZ_Ortofoto_2011/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.55046,
- 51.68509
- ],
- [
- 19.53843,
- 51.68518
- ],
- [
- 19.53858,
- 51.68067
- ],
- [
- 19.50381,
- 51.68085
- ],
- [
- 19.50351,
- 51.68564
- ],
- [
- 19.48084,
- 51.68589
- ],
- [
- 19.48063,
- 51.6815
- ],
- [
- 19.43517,
- 51.68168
- ],
- [
- 19.43517,
- 51.67754
- ],
- [
- 19.41155,
- 51.67791
- ],
- [
- 19.41214,
- 51.68703
- ],
- [
- 19.37723,
- 51.68739
- ],
- [
- 19.37723,
- 51.69172
- ],
- [
- 19.34216,
- 51.692
- ],
- [
- 19.34291,
- 51.70544
- ],
- [
- 19.33132,
- 51.70572
- ],
- [
- 19.33176,
- 51.71474
- ],
- [
- 19.31988,
- 51.71493
- ],
- [
- 19.32077,
- 51.74612
- ],
- [
- 19.33206,
- 51.74612
- ],
- [
- 19.33251,
- 51.75513
- ],
- [
- 19.32107,
- 51.75532
- ],
- [
- 19.32225,
- 51.79108
- ],
- [
- 19.31052,
- 51.79126
- ],
- [
- 19.31141,
- 51.81387
- ],
- [
- 19.323,
- 51.81359
- ],
- [
- 19.32389,
- 51.82709
- ],
- [
- 19.33488,
- 51.82718
- ],
- [
- 19.33473,
- 51.84481
- ],
- [
- 19.39342,
- 51.84444
- ],
- [
- 19.39342,
- 51.84022
- ],
- [
- 19.42789,
- 51.83985
- ],
- [
- 19.42834,
- 51.85738
- ],
- [
- 19.4634,
- 51.85701
- ],
- [
- 19.4634,
- 51.86133
- ],
- [
- 19.47499,
- 51.86133
- ],
- [
- 19.47529,
- 51.86601
- ],
- [
- 19.52194,
- 51.86509
- ],
- [
- 19.52238,
- 51.85619
- ],
- [
- 19.568,
- 51.85582
- ],
- [
- 19.56785,
- 51.85105
- ],
- [
- 19.57944,
- 51.85105
- ],
- [
- 19.57825,
- 51.82397
- ],
- [
- 19.63649,
- 51.82342
- ],
- [
- 19.63411,
- 51.76488
- ],
- [
- 19.65759,
- 51.7647
- ],
- [
- 19.65714,
- 51.74676
- ],
- [
- 19.64496,
- 51.74695
- ],
- [
- 19.64421,
- 51.7152
- ],
- [
- 19.63337,
- 51.7152
- ],
- [
- 19.63322,
- 51.70167
- ],
- [
- 19.62059,
- 51.70167
- ],
- [
- 19.62044,
- 51.68868
- ],
- [
- 19.55032,
- 51.68942
- ],
- [
- 19.55046,
- 51.68509
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Łodzi"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2177"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png",
- "id": "Lodz-buildings",
- "name": "Łódź: Buildings",
- "type": "wms",
- "url": "https://gis.mapa.lodz.pl/awiskts/services/WMS_publikowane/LODZ/MapServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Budynki,Ulice,Adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.55046,
- 51.68509
- ],
- [
- 19.53843,
- 51.68518
- ],
- [
- 19.53858,
- 51.68067
- ],
- [
- 19.50381,
- 51.68085
- ],
- [
- 19.50351,
- 51.68564
- ],
- [
- 19.48084,
- 51.68589
- ],
- [
- 19.48063,
- 51.6815
- ],
- [
- 19.43517,
- 51.68168
- ],
- [
- 19.43517,
- 51.67754
- ],
- [
- 19.41155,
- 51.67791
- ],
- [
- 19.41214,
- 51.68703
- ],
- [
- 19.37723,
- 51.68739
- ],
- [
- 19.37723,
- 51.69172
- ],
- [
- 19.34216,
- 51.692
- ],
- [
- 19.34291,
- 51.70544
- ],
- [
- 19.33132,
- 51.70572
- ],
- [
- 19.33176,
- 51.71474
- ],
- [
- 19.31988,
- 51.71493
- ],
- [
- 19.32077,
- 51.74612
- ],
- [
- 19.33206,
- 51.74612
- ],
- [
- 19.33251,
- 51.75513
- ],
- [
- 19.32107,
- 51.75532
- ],
- [
- 19.32225,
- 51.79108
- ],
- [
- 19.31052,
- 51.79126
- ],
- [
- 19.31141,
- 51.81387
- ],
- [
- 19.323,
- 51.81359
- ],
- [
- 19.32389,
- 51.82709
- ],
- [
- 19.33488,
- 51.82718
- ],
- [
- 19.33473,
- 51.84481
- ],
- [
- 19.39342,
- 51.84444
- ],
- [
- 19.39342,
- 51.84022
- ],
- [
- 19.42789,
- 51.83985
- ],
- [
- 19.42834,
- 51.85738
- ],
- [
- 19.4634,
- 51.85701
- ],
- [
- 19.4634,
- 51.86133
- ],
- [
- 19.47499,
- 51.86133
- ],
- [
- 19.47529,
- 51.86601
- ],
- [
- 19.52194,
- 51.86509
- ],
- [
- 19.52238,
- 51.85619
- ],
- [
- 19.568,
- 51.85582
- ],
- [
- 19.56785,
- 51.85105
- ],
- [
- 19.57944,
- 51.85105
- ],
- [
- 19.57825,
- 51.82397
- ],
- [
- 19.63649,
- 51.82342
- ],
- [
- 19.63411,
- 51.76488
- ],
- [
- 19.65759,
- 51.7647
- ],
- [
- 19.65714,
- 51.74676
- ],
- [
- 19.64496,
- 51.74695
- ],
- [
- 19.64421,
- 51.7152
- ],
- [
- 19.63337,
- 51.7152
- ],
- [
- 19.63322,
- 51.70167
- ],
- [
- 19.62059,
- 51.70167
- ],
- [
- 19.62044,
- 51.68868
- ],
- [
- 19.55032,
- 51.68942
- ],
- [
- 19.55046,
- 51.68509
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Łodzi"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2177"
- ],
- "country_code": "PL",
- "end_date": "2015",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png",
- "id": "Lodz-2015",
- "max_zoom": 22,
- "name": "Łódź: Orthophotomap 2015 (aerial image)",
- "start_date": "2015",
- "type": "wms",
- "url": "https://gis.mapa.lodz.pl/awiskts/services/Ortofotomapa/Ortofotomapa/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 19.55046,
- 51.68509
- ],
- [
- 19.53843,
- 51.68518
- ],
- [
- 19.53858,
- 51.68067
- ],
- [
- 19.50381,
- 51.68085
- ],
- [
- 19.50351,
- 51.68564
- ],
- [
- 19.48084,
- 51.68589
- ],
- [
- 19.48063,
- 51.6815
- ],
- [
- 19.43517,
- 51.68168
- ],
- [
- 19.43517,
- 51.67754
- ],
- [
- 19.41155,
- 51.67791
- ],
- [
- 19.41214,
- 51.68703
- ],
- [
- 19.37723,
- 51.68739
- ],
- [
- 19.37723,
- 51.69172
- ],
- [
- 19.34216,
- 51.692
- ],
- [
- 19.34291,
- 51.70544
- ],
- [
- 19.33132,
- 51.70572
- ],
- [
- 19.33176,
- 51.71474
- ],
- [
- 19.31988,
- 51.71493
- ],
- [
- 19.32077,
- 51.74612
- ],
- [
- 19.33206,
- 51.74612
- ],
- [
- 19.33251,
- 51.75513
- ],
- [
- 19.32107,
- 51.75532
- ],
- [
- 19.32225,
- 51.79108
- ],
- [
- 19.31052,
- 51.79126
- ],
- [
- 19.31141,
- 51.81387
- ],
- [
- 19.323,
- 51.81359
- ],
- [
- 19.32389,
- 51.82709
- ],
- [
- 19.33488,
- 51.82718
- ],
- [
- 19.33473,
- 51.84481
- ],
- [
- 19.39342,
- 51.84444
- ],
- [
- 19.39342,
- 51.84022
- ],
- [
- 19.42789,
- 51.83985
- ],
- [
- 19.42834,
- 51.85738
- ],
- [
- 19.4634,
- 51.85701
- ],
- [
- 19.4634,
- 51.86133
- ],
- [
- 19.47499,
- 51.86133
- ],
- [
- 19.47529,
- 51.86601
- ],
- [
- 19.52194,
- 51.86509
- ],
- [
- 19.52238,
- 51.85619
- ],
- [
- 19.568,
- 51.85582
- ],
- [
- 19.56785,
- 51.85105
- ],
- [
- 19.57944,
- 51.85105
- ],
- [
- 19.57825,
- 51.82397
- ],
- [
- 19.63649,
- 51.82342
- ],
- [
- 19.63411,
- 51.76488
- ],
- [
- 19.65759,
- 51.7647
- ],
- [
- 19.65714,
- 51.74676
- ],
- [
- 19.64496,
- 51.74695
- ],
- [
- 19.64421,
- 51.7152
- ],
- [
- 19.63337,
- 51.7152
- ],
- [
- 19.63322,
- 51.70167
- ],
- [
- 19.62059,
- 51.70167
- ],
- [
- 19.62044,
- 51.68868
- ],
- [
- 19.55032,
- 51.68942
- ],
- [
- 19.55046,
- 51.68509
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Łodzi"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2177",
- "EPSG:2180"
- ],
- "country_code": "PL",
- "end_date": "2017",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png",
- "id": "Lodz-2017",
- "max_zoom": 22,
- "name": "Łódź: Orthophotomap 2017 (aerial image)",
- "start_date": "2017",
- "type": "wms",
- "url": "https://mapa.lodz.pl/3/services/OGC/Ortofotomapa/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.9751,
- 54.37092
- ],
- [
- 16.31116,
- 54.55618
- ],
- [
- 17.13919,
- 54.78457
- ],
- [
- 18.34485,
- 54.90227
- ],
- [
- 19.66137,
- 54.47372
- ],
- [
- 20.28152,
- 54.42135
- ],
- [
- 21.46639,
- 54.34064
- ],
- [
- 22.77599,
- 54.37698
- ],
- [
- 22.8626,
- 54.42336
- ],
- [
- 23.29567,
- 54.26786
- ],
- [
- 23.53472,
- 54.09553
- ],
- [
- 23.52086,
- 53.97752
- ],
- [
- 23.71834,
- 53.46296
- ],
- [
- 23.92968,
- 53.18567
- ],
- [
- 23.92968,
- 52.68873
- ],
- [
- 23.7322,
- 52.60675
- ],
- [
- 23.5659,
- 52.58781
- ],
- [
- 23.20905,
- 52.33026
- ],
- [
- 23.19519,
- 52.23701
- ],
- [
- 23.50354,
- 52.18606
- ],
- [
- 23.69062,
- 52.00301
- ],
- [
- 23.59708,
- 51.7399
- ],
- [
- 23.66291,
- 51.38886
- ],
- [
- 23.9366,
- 50.98278
- ],
- [
- 24.16873,
- 50.86048
- ],
- [
- 24.01975,
- 50.80358
- ],
- [
- 24.10983,
- 50.66105
- ],
- [
- 24.05786,
- 50.41884
- ],
- [
- 23.61787,
- 50.30834
- ],
- [
- 22.68244,
- 49.51635
- ],
- [
- 22.73788,
- 49.20949
- ],
- [
- 22.90417,
- 49.07804
- ],
- [
- 22.8626,
- 48.99401
- ],
- [
- 22.60969,
- 49.03718
- ],
- [
- 22.07615,
- 49.20044
- ],
- [
- 21.84749,
- 49.37219
- ],
- [
- 21.37631,
- 49.44883
- ],
- [
- 21.10262,
- 49.37219
- ],
- [
- 20.91207,
- 49.3022
- ],
- [
- 20.6453,
- 49.39023
- ],
- [
- 20.18451,
- 49.33156
- ],
- [
- 20.11869,
- 49.20044
- ],
- [
- 19.942,
- 49.13021
- ],
- [
- 19.76531,
- 49.21176
- ],
- [
- 19.74798,
- 49.39925
- ],
- [
- 19.60247,
- 49.41503
- ],
- [
- 19.50893,
- 49.58154
- ],
- [
- 19.42925,
- 49.59052
- ],
- [
- 19.23177,
- 49.41503
- ],
- [
- 18.99618,
- 49.38798
- ],
- [
- 18.93382,
- 49.4916
- ],
- [
- 18.83681,
- 49.49386
- ],
- [
- 18.80216,
- 49.66234
- ],
- [
- 18.6428,
- 49.70941
- ],
- [
- 18.52154,
- 49.89947
- ],
- [
- 18.08154,
- 50.01092
- ],
- [
- 17.88753,
- 49.98865
- ],
- [
- 17.73855,
- 50.06877
- ],
- [
- 17.6069,
- 50.17096
- ],
- [
- 17.74548,
- 50.21532
- ],
- [
- 17.71084,
- 50.3017
- ],
- [
- 17.41635,
- 50.26407
- ],
- [
- 16.94864,
- 50.44533
- ],
- [
- 16.89321,
- 50.40339
- ],
- [
- 17.00061,
- 50.31055
- ],
- [
- 17.01793,
- 50.22419
- ],
- [
- 16.81352,
- 50.18649
- ],
- [
- 16.64029,
- 50.09767
- ],
- [
- 16.43242,
- 50.28621
- ],
- [
- 16.19683,
- 50.42767
- ],
- [
- 16.42203,
- 50.58852
- ],
- [
- 16.33888,
- 50.66324
- ],
- [
- 16.22802,
- 50.63688
- ],
- [
- 16.05479,
- 50.61271
- ],
- [
- 15.57322,
- 50.76415
- ],
- [
- 15.26834,
- 50.89764
- ],
- [
- 15.24409,
- 50.9806
- ],
- [
- 15.02929,
- 51.0133
- ],
- [
- 15.00157,
- 50.85829
- ],
- [
- 14.81102,
- 50.87359
- ],
- [
- 14.95653,
- 51.07212
- ],
- [
- 15.01889,
- 51.29146
- ],
- [
- 14.93921,
- 51.46015
- ],
- [
- 14.72094,
- 51.55718
- ],
- [
- 14.75212,
- 51.62606
- ],
- [
- 14.59968,
- 51.84276
- ],
- [
- 14.70362,
- 52.07334
- ],
- [
- 14.55811,
- 52.24974
- ],
- [
- 14.51654,
- 52.42544
- ],
- [
- 14.60315,
- 52.58781
- ],
- [
- 14.11465,
- 52.82083
- ],
- [
- 14.15276,
- 52.9734
- ],
- [
- 14.35024,
- 53.07342
- ],
- [
- 14.42299,
- 53.26656
- ],
- [
- 14.1978,
- 53.87348
- ],
- [
- 14.22205,
- 53.99585
- ],
- [
- 15.9751,
- 54.37092
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "polska.e-mapa.net - Geoportal otwartych danych przestrzennych",
- "url": "https://polska.e-mapa.net/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:2180",
- "EPSG:2176",
- "EPSG:2177",
- "EPSG:2178",
- "EPSG:2179"
- ],
- "country_code": "PL",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/polskae-mapanetBuildings.png",
- "id": "e-mapa.net-buildings",
- "license_url": "http://e-mapa.net/warunki/",
- "max_zoom": 19,
- "name": "polska.e-mapa.net: Buildings",
- "type": "wms",
- "url": "https://integracja02.gugik.gov.pl/cgi-bin/KrajowaIntegracjaEwidencjiGruntow?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.92818,
- 50.32151
- ],
- [
- 18.93028,
- 50.31766
- ],
- [
- 18.93402,
- 50.31392
- ],
- [
- 18.93193,
- 50.31119
- ],
- [
- 18.92556,
- 50.30575
- ],
- [
- 18.92429,
- 50.30354
- ],
- [
- 18.92964,
- 50.30206
- ],
- [
- 18.93083,
- 50.3004
- ],
- [
- 18.9283,
- 50.2961
- ],
- [
- 18.93573,
- 50.29356
- ],
- [
- 18.93885,
- 50.28965
- ],
- [
- 18.9371,
- 50.28727
- ],
- [
- 18.93966,
- 50.28206
- ],
- [
- 18.93402,
- 50.27553
- ],
- [
- 18.92953,
- 50.27543
- ],
- [
- 18.93037,
- 50.27338
- ],
- [
- 18.93413,
- 50.27104
- ],
- [
- 18.93239,
- 50.26883
- ],
- [
- 18.92716,
- 50.26926
- ],
- [
- 18.90447,
- 50.27371
- ],
- [
- 18.89758,
- 50.27612
- ],
- [
- 18.89569,
- 50.28028
- ],
- [
- 18.89783,
- 50.28566
- ],
- [
- 18.89712,
- 50.2878
- ],
- [
- 18.88292,
- 50.29258
- ],
- [
- 18.88031,
- 50.29473
- ],
- [
- 18.88311,
- 50.29894
- ],
- [
- 18.88819,
- 50.30164
- ],
- [
- 18.88326,
- 50.30717
- ],
- [
- 18.88444,
- 50.31183
- ],
- [
- 18.89149,
- 50.31809
- ],
- [
- 18.89306,
- 50.32558
- ],
- [
- 18.89568,
- 50.32704
- ],
- [
- 18.92818,
- 50.32151
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Świętochłowice"
- },
- "available_projections": [
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "end_date": "2008",
- "id": "Swietochlowice-2008",
- "max_zoom": 23,
- "name": "Świętochłowice: Orthophotomap 2008 (aerial image)",
- "start_date": "2008",
- "type": "wms",
- "url": "https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2008&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.92818,
- 50.32151
- ],
- [
- 18.93028,
- 50.31766
- ],
- [
- 18.93402,
- 50.31392
- ],
- [
- 18.93193,
- 50.31119
- ],
- [
- 18.92556,
- 50.30575
- ],
- [
- 18.92429,
- 50.30354
- ],
- [
- 18.92964,
- 50.30206
- ],
- [
- 18.93083,
- 50.3004
- ],
- [
- 18.9283,
- 50.2961
- ],
- [
- 18.93573,
- 50.29356
- ],
- [
- 18.93885,
- 50.28965
- ],
- [
- 18.9371,
- 50.28727
- ],
- [
- 18.93966,
- 50.28206
- ],
- [
- 18.93402,
- 50.27553
- ],
- [
- 18.92953,
- 50.27543
- ],
- [
- 18.93037,
- 50.27338
- ],
- [
- 18.93413,
- 50.27104
- ],
- [
- 18.93239,
- 50.26883
- ],
- [
- 18.92716,
- 50.26926
- ],
- [
- 18.90447,
- 50.27371
- ],
- [
- 18.89758,
- 50.27612
- ],
- [
- 18.89569,
- 50.28028
- ],
- [
- 18.89783,
- 50.28566
- ],
- [
- 18.89712,
- 50.2878
- ],
- [
- 18.88292,
- 50.29258
- ],
- [
- 18.88031,
- 50.29473
- ],
- [
- 18.88311,
- 50.29894
- ],
- [
- 18.88819,
- 50.30164
- ],
- [
- 18.88326,
- 50.30717
- ],
- [
- 18.88444,
- 50.31183
- ],
- [
- 18.89149,
- 50.31809
- ],
- [
- 18.89306,
- 50.32558
- ],
- [
- 18.89568,
- 50.32704
- ],
- [
- 18.92818,
- 50.32151
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Świętochłowice"
- },
- "available_projections": [
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "end_date": "2009",
- "id": "Swietochlowice-2009",
- "max_zoom": 23,
- "name": "Świętochłowice: Orthophotomap 2009 (aerial image)",
- "start_date": "2009",
- "type": "wms",
- "url": "https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2009&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 18.92818,
- 50.32151
- ],
- [
- 18.93028,
- 50.31766
- ],
- [
- 18.93402,
- 50.31392
- ],
- [
- 18.93193,
- 50.31119
- ],
- [
- 18.92556,
- 50.30575
- ],
- [
- 18.92429,
- 50.30354
- ],
- [
- 18.92964,
- 50.30206
- ],
- [
- 18.93083,
- 50.3004
- ],
- [
- 18.9283,
- 50.2961
- ],
- [
- 18.93573,
- 50.29356
- ],
- [
- 18.93885,
- 50.28965
- ],
- [
- 18.9371,
- 50.28727
- ],
- [
- 18.93966,
- 50.28206
- ],
- [
- 18.93402,
- 50.27553
- ],
- [
- 18.92953,
- 50.27543
- ],
- [
- 18.93037,
- 50.27338
- ],
- [
- 18.93413,
- 50.27104
- ],
- [
- 18.93239,
- 50.26883
- ],
- [
- 18.92716,
- 50.26926
- ],
- [
- 18.90447,
- 50.27371
- ],
- [
- 18.89758,
- 50.27612
- ],
- [
- 18.89569,
- 50.28028
- ],
- [
- 18.89783,
- 50.28566
- ],
- [
- 18.89712,
- 50.2878
- ],
- [
- 18.88292,
- 50.29258
- ],
- [
- 18.88031,
- 50.29473
- ],
- [
- 18.88311,
- 50.29894
- ],
- [
- 18.88819,
- 50.30164
- ],
- [
- 18.88326,
- 50.30717
- ],
- [
- 18.88444,
- 50.31183
- ],
- [
- 18.89149,
- 50.31809
- ],
- [
- 18.89306,
- 50.32558
- ],
- [
- 18.89568,
- 50.32704
- ],
- [
- 18.92818,
- 50.32151
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Urząd Miasta Świętochłowice"
- },
- "available_projections": [
- "EPSG:2177",
- "EPSG:2180",
- "EPSG:4326"
- ],
- "country_code": "PL",
- "end_date": "2012",
- "id": "Swietochlowice-2012",
- "max_zoom": 23,
- "name": "Świętochłowice: Orthophotomap 2012 (aerial image)",
- "start_date": "2012",
- "type": "wms",
- "url": "https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2012&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -7.31278,
- 36.98391
- ],
- [
- -7.44461,
- 37.5718
- ],
- [
- -7.1933,
- 37.97019
- ],
- [
- -6.97357,
- 38.00807
- ],
- [
- -6.90628,
- 38.24142
- ],
- [
- -7.06627,
- 38.20743
- ],
- [
- -7.27158,
- 38.45628
- ],
- [
- -7.20429,
- 38.72356
- ],
- [
- -7.0134,
- 38.85468
- ],
- [
- -6.91315,
- 39.03839
- ],
- [
- -6.97357,
- 39.13113
- ],
- [
- -7.17957,
- 39.23651
- ],
- [
- -7.28668,
- 39.48497
- ],
- [
- -7.44873,
- 39.61838
- ],
- [
- -7.34162,
- 39.60886
- ],
- [
- -6.99692,
- 39.64906
- ],
- [
- -6.81839,
- 40.0192
- ],
- [
- -7.01065,
- 40.19986
- ],
- [
- -6.85272,
- 40.24285
- ],
- [
- -6.76209,
- 40.35073
- ],
- [
- -6.77994,
- 40.8886
- ],
- [
- -6.88637,
- 41.01151
- ],
- [
- -6.79642,
- 41.01721
- ],
- [
- -6.63849,
- 41.21689
- ],
- [
- -6.4531,
- 41.24116
- ],
- [
- -6.29311,
- 41.38763
- ],
- [
- -6.15715,
- 41.5908
- ],
- [
- -6.31165,
- 41.68932
- ],
- [
- -6.51215,
- 41.71188
- ],
- [
- -6.49841,
- 41.88081
- ],
- [
- -6.56296,
- 41.97991
- ],
- [
- -6.80191,
- 42.00951
- ],
- [
- -7.20497,
- 42.00135
- ],
- [
- -7.22763,
- 41.8849
- ],
- [
- -7.36908,
- 41.87058
- ],
- [
- -7.72751,
- 41.92885
- ],
- [
- -7.92526,
- 41.94009
- ],
- [
- -8.07907,
- 41.84706
- ],
- [
- -8.1601,
- 41.91812
- ],
- [
- -8.01796,
- 42.05031
- ],
- [
- -8.19924,
- 42.18681
- ],
- [
- -8.39356,
- 42.1023
- ],
- [
- -8.66066,
- 42.07886
- ],
- [
- -8.88382,
- 41.88081
- ],
- [
- -9.17084,
- 41.86956
- ],
- [
- -9.04175,
- 41.43655
- ],
- [
- -9.01978,
- 40.65981
- ],
- [
- -9.15711,
- 40.26695
- ],
- [
- -9.81903,
- 39.52099
- ],
- [
- -9.74213,
- 38.6512
- ],
- [
- -9.12964,
- 37.88136
- ],
- [
- -9.27246,
- 36.99378
- ],
- [
- -9.09394,
- 36.68604
- ],
- [
- -7.80579,
- 36.74989
- ],
- [
- -7.31278,
- 36.98391
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Direcção-Geral do Território",
- "url": "http://www.dgterritorio.pt/dados_abertos/cos/"
- },
- "available_projections": [
- "EPSG:3763",
- "EPSG:4258",
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "PT",
- "end_date": "2010",
- "icon": "http://www.igeo.pt/favicon.ico",
- "id": "COS2010_v1.0",
- "license_url": "http://www.dgterritorio.pt/dados_abertos/cos/",
- "max_zoom": 18,
- "min_zoom": 14,
- "name": "Carta de Uso do Solo 2010 (WMS)",
- "start_date": "2010",
- "type": "wms",
- "url": "http://mapas.dgterritorio.pt/wms-inspire/cos2010v1?language=por&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=COS2010_v1.0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -7.31278,
- 36.98391
- ],
- [
- -7.44461,
- 37.5718
- ],
- [
- -7.1933,
- 37.97019
- ],
- [
- -6.97357,
- 38.00807
- ],
- [
- -6.90628,
- 38.24142
- ],
- [
- -7.06627,
- 38.20743
- ],
- [
- -7.27158,
- 38.45628
- ],
- [
- -7.20429,
- 38.72356
- ],
- [
- -7.0134,
- 38.85468
- ],
- [
- -6.91315,
- 39.03839
- ],
- [
- -6.97357,
- 39.13113
- ],
- [
- -7.17957,
- 39.23651
- ],
- [
- -7.28668,
- 39.48497
- ],
- [
- -7.44873,
- 39.61838
- ],
- [
- -7.34162,
- 39.60886
- ],
- [
- -6.99692,
- 39.64906
- ],
- [
- -6.81839,
- 40.0192
- ],
- [
- -7.01065,
- 40.19986
- ],
- [
- -6.85272,
- 40.24285
- ],
- [
- -6.76209,
- 40.35073
- ],
- [
- -6.77994,
- 40.8886
- ],
- [
- -6.88637,
- 41.01151
- ],
- [
- -6.79642,
- 41.01721
- ],
- [
- -6.63849,
- 41.21689
- ],
- [
- -6.4531,
- 41.24116
- ],
- [
- -6.29311,
- 41.38763
- ],
- [
- -6.15715,
- 41.5908
- ],
- [
- -6.31165,
- 41.68932
- ],
- [
- -6.51215,
- 41.71188
- ],
- [
- -6.49841,
- 41.88081
- ],
- [
- -6.56296,
- 41.97991
- ],
- [
- -6.80191,
- 42.00951
- ],
- [
- -7.20497,
- 42.00135
- ],
- [
- -7.22763,
- 41.8849
- ],
- [
- -7.36908,
- 41.87058
- ],
- [
- -7.72751,
- 41.92885
- ],
- [
- -7.92526,
- 41.94009
- ],
- [
- -8.07907,
- 41.84706
- ],
- [
- -8.1601,
- 41.91812
- ],
- [
- -8.01796,
- 42.05031
- ],
- [
- -8.19924,
- 42.18681
- ],
- [
- -8.39356,
- 42.1023
- ],
- [
- -8.66066,
- 42.07886
- ],
- [
- -8.88382,
- 41.88081
- ],
- [
- -9.17084,
- 41.86956
- ],
- [
- -9.04175,
- 41.43655
- ],
- [
- -9.01978,
- 40.65981
- ],
- [
- -9.15711,
- 40.26695
- ],
- [
- -9.81903,
- 39.52099
- ],
- [
- -9.74213,
- 38.6512
- ],
- [
- -9.12964,
- 37.88136
- ],
- [
- -9.27246,
- 36.99378
- ],
- [
- -9.09394,
- 36.68604
- ],
- [
- -7.80579,
- 36.74989
- ],
- [
- -7.31278,
- 36.98391
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Direcção-Geral do Território",
- "url": "http://www.dgterritorio.pt/dados_abertos/ortofotos/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3763",
- "EPSG:4258"
- ],
- "country_code": "PT",
- "end_date": "2006",
- "icon": "http://www.igeo.pt/favicon.ico",
- "id": "ORTOS_DGRF_2004_06",
- "license_url": "http://www.igeo.pt/DadosAbertos/Listagem.aspx",
- "max_zoom": 19,
- "min_zoom": 14,
- "name": "Ortofotos DGRF 2004-2006 (WMS)",
- "start_date": "2004",
- "type": "wms",
- "url": "http://mapas.dgterritorio.pt:8888/wms/produtos?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ortos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -7.38968,
- 37.19205
- ],
- [
- -7.52426,
- 37.18002
- ],
- [
- -7.89505,
- 36.98171
- ],
- [
- -8.15186,
- 37.10886
- ],
- [
- -8.65036,
- 37.14062
- ],
- [
- -8.95111,
- 37.03545
- ],
- [
- -8.78632,
- 37.34833
- ],
- [
- -8.76434,
- 37.55111
- ],
- [
- -8.7561,
- 38.38258
- ],
- [
- -8.47664,
- 38.33466
- ],
- [
- -8.47183,
- 38.40141
- ],
- [
- -8.66066,
- 38.46596
- ],
- [
- -8.66959,
- 38.60882
- ],
- [
- -9.142,
- 38.53689
- ],
- [
- -8.81104,
- 38.67372
- ],
- [
- -8.79318,
- 38.85468
- ],
- [
- -8.95935,
- 38.9829
- ],
- [
- -9.18732,
- 38.84934
- ],
- [
- -9.2395,
- 38.72838
- ],
- [
- -9.37821,
- 38.74659
- ],
- [
- -9.38233,
- 39.07891
- ],
- [
- -9.29169,
- 39.2514
- ],
- [
- -9.31915,
- 39.33642
- ],
- [
- -9.17084,
- 39.38526
- ],
- [
- -9.06372,
- 39.48815
- ],
- [
- -9.02252,
- 39.69662
- ],
- [
- -8.78632,
- 40.14529
- ],
- [
- -8.86322,
- 40.2093
- ],
- [
- -8.72589,
- 40.53155
- ],
- [
- -8.64075,
- 40.50858
- ],
- [
- -8.62427,
- 40.63063
- ],
- [
- -8.53089,
- 40.6004
- ],
- [
- -8.535,
- 40.71292
- ],
- [
- -8.61466,
- 40.89275
- ],
- [
- -8.61878,
- 41.10419
- ],
- [
- -8.53089,
- 41.16728
- ],
- [
- -8.66959,
- 41.21689
- ],
- [
- -8.72315,
- 41.41081
- ],
- [
- -8.76984,
- 41.65958
- ],
- [
- -8.66547,
- 41.73955
- ],
- [
- -8.81104,
- 41.72316
- ],
- [
- -8.81104,
- 41.85217
- ],
- [
- -8.74649,
- 41.9125
- ],
- [
- -8.83576,
- 41.93089
- ],
- [
- -8.91815,
- 41.84501
- ],
- [
- -8.89343,
- 41.70778
- ],
- [
- -8.82065,
- 41.50755
- ],
- [
- -8.73139,
- 41.16315
- ],
- [
- -8.67508,
- 41.069
- ],
- [
- -8.68469,
- 40.90729
- ],
- [
- -8.93326,
- 40.17573
- ],
- [
- -8.88107,
- 40.12219
- ],
- [
- -9.11453,
- 39.64694
- ],
- [
- -9.11865,
- 39.5623
- ],
- [
- -9.3013,
- 39.40543
- ],
- [
- -9.43039,
- 39.37571
- ],
- [
- -9.34799,
- 39.23864
- ],
- [
- -9.45099,
- 39.04799
- ],
- [
- -9.45786,
- 38.89317
- ],
- [
- -9.53201,
- 38.78835
- ],
- [
- -9.50043,
- 38.68551
- ],
- [
- -9.28894,
- 38.663
- ],
- [
- -9.19418,
- 38.54172
- ],
- [
- -9.25324,
- 38.38473
- ],
- [
- -9.03488,
- 38.42347
- ],
- [
- -8.92502,
- 38.46757
- ],
- [
- -8.81241,
- 38.35997
- ],
- [
- -8.7973,
- 38.14968
- ],
- [
- -8.91953,
- 37.95286
- ],
- [
- -8.84262,
- 37.8651
- ],
- [
- -8.83988,
- 37.40617
- ],
- [
- -9.02664,
- 37.01023
- ],
- [
- -8.92914,
- 36.97513
- ],
- [
- -8.61466,
- 37.099
- ],
- [
- -8.15048,
- 37.05956
- ],
- [
- -7.8923,
- 36.93672
- ],
- [
- -7.48993,
- 37.15156
- ],
- [
- -7.39105,
- 37.15813
- ],
- [
- -7.38968,
- 37.19205
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Direcção-Geral do Território",
- "url": "http://www.dgterritorio.pt/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3763",
- "EPSG:4258"
- ],
- "country_code": "PT",
- "end_date": "2015",
- "icon": "http://www.igeo.pt/favicon.ico",
- "id": "ORTOS_DGT_2014_15",
- "license_url": "http://www.dgterritorio.pt/dados_abertos/ortofotos/",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "Ortofotos Litoral DGT 2014-2015 (WMS)",
- "start_date": "2014",
- "type": "wms",
- "url": "http://ows.dgterritorio.pt/wss/service/ortos2014-2015-wms/guest?language=por&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ortoimagens_2014-2015_Litoral&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 35.93259,
- 44.96237
- ],
- [
- 35.93259,
- 45.55926
- ],
- [
- 37.36991,
- 45.55926
- ],
- [
- 37.36991,
- 44.96237
- ],
- [
- 35.93259,
- 44.96237
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "RU",
- "description": "State of bridge construction in August 2016 (true color)",
- "end_date": "2016-08-07",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R021_N44_20160807T083013",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Kerch Strait",
- "start_date": "2016-08-07",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20160807T083013&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 35.8787,
- 45.0348
- ],
- [
- 35.8787,
- 45.6095
- ],
- [
- 36.9208,
- 45.6095
- ],
- [
- 36.9208,
- 45.0348
- ],
- [
- 35.8787,
- 45.0348
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "RU",
- "description": "Bridge and surrounding after completion in April 2018 (true color)",
- "end_date": "2018-04-29",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R021_N44_20180429T082601",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Kerch Strait 2018",
- "start_date": "2018-04-29",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20180429T082601&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 53.1802,
- 67.5344
- ],
- [
- 53.1821,
- 68.414
- ],
- [
- 54.2107,
- 69.3367
- ],
- [
- 55.3584,
- 70.2786
- ],
- [
- 59.004,
- 70.2786
- ],
- [
- 60.6947,
- 69.977
- ],
- [
- 61.9837,
- 69.7161
- ],
- [
- 61.9823,
- 68.9395
- ],
- [
- 59.9153,
- 67.5344
- ],
- [
- 53.1802,
- 67.5344
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "RU",
- "description": "Sentinel-2 image of the Pechora Sea coast in autumn 2016 (true color)",
- "end_date": "2016-09-30",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R078_N68_20160930T081002",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Pechora Sea Coast",
- "start_date": "2016-09-30",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N68_20160930T081002&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 78.45886,
- 80.72643
- ],
- [
- 78.45886,
- 80.9099
- ],
- [
- 80.48892,
- 80.9099
- ],
- [
- 80.48892,
- 80.72643
- ],
- [
- 78.45886,
- 80.72643
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "RU",
- "description": "Up-to-date late summer imagery with few clouds (true color)",
- "end_date": "2016-08-12",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R094_N79_20160812T105622",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Ushakov Island August 2016",
- "start_date": "2016-08-12",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R094_N79_20160812T105622&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 37.7291,
- 64.1971
- ],
- [
- 37.7291,
- 65.1161
- ],
- [
- 37.8592,
- 65.2705
- ],
- [
- 41.3223,
- 65.2705
- ],
- [
- 41.3223,
- 64.3142
- ],
- [
- 41.2114,
- 64.1973
- ],
- [
- 37.7291,
- 64.1971
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "RU",
- "description": "Beaches, tidal flats and other costal forms (true color)",
- "end_date": "2015-09-13",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-ndvina",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Northern Dvina delta at low tide",
- "start_date": "2015-09-13",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=ndvina&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 59.19898,
- 64.89205
- ],
- [
- 59.19898,
- 66.91656
- ],
- [
- 60.73329,
- 68.44289
- ],
- [
- 67.73295,
- 68.44327
- ],
- [
- 67.73295,
- 67.74883
- ],
- [
- 64.21647,
- 64.91957
- ],
- [
- 59.19898,
- 64.89205
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "RU",
- "description": "Up-to-date late summer imagery with few clouds - caution: not all visible snow is glaciers (true color)",
- "end_date": "2016-08-12",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-ural_s2_2016",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Northern and Polar Ural mountains August 2016",
- "start_date": "2016-08-12",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=ural_s2_2016&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Lantmäteriet, CC0",
- "url": "https://www.lantmateriet.se/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3021",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:4258",
- "EPSG:4619",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835"
- ],
- "country_code": "SE",
- "description": "Mosaic of Swedish orthophotos from the period 1955–1965. Older and younger pictures may occur.",
- "i18n": true,
- "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png",
- "id": "lantmateriet-orto1960",
- "license_url": "https://www.lantmateriet.se/en/Kartor-och-geografisk-information/oppna-data/anvandarvillkor/",
- "max_zoom": 19,
- "min_zoom": 5,
- "name": "Lantmäteriet Historic Orthophoto 1960",
- "type": "wms",
- "url": "https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.Histortho_60&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 17.85131,
- 60.87407
- ],
- [
- 14.74558,
- 60.53889
- ],
- [
- 11.60239,
- 59.56416
- ],
- [
- 10.51799,
- 58.66559
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Lantmäteriet, CC0",
- "url": "https://www.lantmateriet.se/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3021",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:4258",
- "EPSG:4619",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25834",
- "EPSG:25835"
- ],
- "country_code": "SE",
- "description": "Mosaic of Swedish orthophotos from the period 1970–1980. Is under construction.",
- "i18n": true,
- "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png",
- "id": "lantmateriet-orto1975",
- "license_url": "https://www.lantmateriet.se/en/Kartor-och-geografisk-information/oppna-data/anvandarvillkor/",
- "max_zoom": 19,
- "min_zoom": 5,
- "name": "Lantmäteriet Historic Orthophoto 1975",
- "type": "wms",
- "url": "https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.Histortho_75&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 23.87328,
- 65.21069
- ],
- [
- 30.14647,
- 65.19226
- ],
- [
- 30.19042,
- 67.62596
- ],
- [
- 29.43236,
- 69.62651
- ],
- [
- 27.93822,
- 70.14037
- ],
- [
- 20.73119,
- 69.2756
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "© Skoterleder.org",
- "url": "https://skoterleder.org/"
- },
- "country_code": "SE",
- "description": "Snowmobile trails",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Sweden_road_sign_D9.svg/200px-Sweden_road_sign_D9.svg.png",
- "id": "skoterleder",
- "max_zoom": 14,
- "min_zoom": 5,
- "name": "Snowmobile map Sweden",
- "type": "tms",
- "url": "https://tiles.skoterleder.org/tiles/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 10.8078,
- 58.34266
- ],
- [
- 13.0258,
- 58.34266
- ],
- [
- 13.0258,
- 57.0896
- ],
- [
- 11.70328,
- 57.0896
- ],
- [
- 10.8078,
- 58.34266
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Gothenburg municipality, CC0",
- "url": "https://catalog.goteborg.se/catalog/6/datasets/718"
- },
- "available_projections": [
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3857"
- ],
- "country_code": "SE",
- "description": "The city map is an overview map that describes Gothenburg. It contains general information about land, communications, hydrography, buildings, address numbers and street names, administrative division and other orientation text.",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png",
- "id": "gothenburg-citymap",
- "license_url": "https://catalog.goteborg.se/catalog/6/datasets/718",
- "max_zoom": 21,
- "min_zoom": 5,
- "name": "Gothenburg City map",
- "privacy_policy_url": "https://goteborg.se/wps/portal/start/kommun-o-politik/beslut-insyn-och-rattskerhet/sa-har-behandlar-kommunen-dina-personuppgifter/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziTYzcDQy9TAy9LVyDXA0CLcJ8A70sDQ3cLcz1wwkpiAJKG-AAjgb6BbmhigA2cFOY/dz/d5/L2dBISEvZ0FBIS9nQSEh/#collapse-012212692658198088",
- "type": "wms",
- "url": "https://opengeodata.goteborg.se/services/stadskarta.wms.v4/ows?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=stadskarta&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 11.71898,
- 57.54716
- ],
- [
- 12.01767,
- 57.56411
- ],
- [
- 11.95862,
- 57.66818
- ],
- [
- 12.09595,
- 57.68177
- ],
- [
- 12.06574,
- 57.73166
- ],
- [
- 12.1138,
- 57.77086
- ],
- [
- 12.24289,
- 57.79466
- ],
- [
- 12.16187,
- 57.86704
- ],
- [
- 11.95519,
- 57.86631
- ],
- [
- 11.68534,
- 57.72396
- ],
- [
- 11.71898,
- 57.54716
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Gothenburg municipality, CC0",
- "url": "https://catalog.goteborg.se/catalog/6/datasets/892"
- },
- "available_projections": [
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3857"
- ],
- "best": true,
- "category": "photo",
- "country_code": "SE",
- "description": "Orthophoto for Gothenburg municipality",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png",
- "id": "gothenburg-ortho",
- "license_url": "https://catalog.goteborg.se/catalog/6/datasets/892",
- "max_zoom": 20,
- "min_zoom": 6,
- "name": "Gothenburg Orthophoto",
- "privacy_policy_url": "https://goteborg.se/wps/portal/start/kommun-o-politik/beslut-insyn-och-rattskerhet/sa-har-behandlar-kommunen-dina-personuppgifter/",
- "type": "wms",
- "url": "https://opengeodata.goteborg.se/services/ortofoto.wms.v1/ows?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.74345,
- 55.94997
- ],
- [
- 12.93777,
- 55.90804
- ],
- [
- 13.00369,
- 55.96842
- ],
- [
- 12.79083,
- 56.25022
- ],
- [
- 12.56698,
- 56.1356
- ],
- [
- 12.74345,
- 55.94997
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Helsingborg municipality",
- "url": "https://helsingborg.opendatasoft.com/"
- },
- "best": true,
- "country_code": "SE",
- "description": "Orthophotos from the municipality of Helsingborg 2016, public domain",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Helsingborg_vapen.svg/198px-Helsingborg_vapen.svg.png",
- "id": "helsingborg-orto",
- "license_url": "https://helsingborg.opendatasoft.com/explore/dataset/flygbilder/information/",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Helsingborg Orthophoto",
- "type": "tms",
- "url": "https://mapproxy.openstreetmap.se/tiles/1.0.0/hborg2016_EPSG3857/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.28473,
- 56.70827
- ],
- [
- 16.38856,
- 56.70798
- ],
- [
- 16.40843,
- 56.7615
- ],
- [
- 16.46269,
- 56.75672
- ],
- [
- 16.47753,
- 56.76023
- ],
- [
- 16.48815,
- 56.77023
- ],
- [
- 16.48754,
- 56.79231
- ],
- [
- 16.48254,
- 56.79547
- ],
- [
- 16.47667,
- 56.8223
- ],
- [
- 16.4687,
- 56.82614
- ],
- [
- 16.48584,
- 56.86271
- ],
- [
- 16.48809,
- 56.87369
- ],
- [
- 16.45694,
- 56.87786
- ],
- [
- 16.46288,
- 56.88769
- ],
- [
- 16.42696,
- 56.88757
- ],
- [
- 16.39809,
- 56.89604
- ],
- [
- 16.36791,
- 56.8952
- ],
- [
- 16.36717,
- 56.85985
- ],
- [
- 16.36431,
- 56.84636
- ],
- [
- 16.36001,
- 56.83657
- ],
- [
- 16.34423,
- 56.82532
- ],
- [
- 16.32675,
- 56.79284
- ],
- [
- 16.26114,
- 56.74422
- ],
- [
- 16.28473,
- 56.70827
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Kalmar municipality",
- "url": "http://data-kalmar.opendata.arcgis.com/"
- },
- "available_projections": [
- "EPSG:3011",
- "EPSG:4326"
- ],
- "best": true,
- "country_code": "SE",
- "description": "Orthophotos for the north coast of the municipality of Kalmar 2014",
- "end_date": "2014",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png",
- "id": "kalmar-orto-2014",
- "license_url": "https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/se/Kalmar_permission.pdf",
- "max_zoom": 22,
- "min_zoom": 9,
- "name": "Kalmar North Orthophoto 2014",
- "start_date": "2014",
- "type": "wms",
- "url": "https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2014/ImageServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.156,
- 56.45834
- ],
- [
- 16.11389,
- 56.46083
- ],
- [
- 16.09246,
- 56.46633
- ],
- [
- 16.0724,
- 56.4662
- ],
- [
- 16.07126,
- 56.51153
- ],
- [
- 16.08516,
- 56.56847
- ],
- [
- 16.14417,
- 56.63933
- ],
- [
- 16.21168,
- 56.68491
- ],
- [
- 16.28412,
- 56.71655
- ],
- [
- 16.25135,
- 56.74358
- ],
- [
- 16.25045,
- 56.75062
- ],
- [
- 16.29558,
- 56.7512
- ],
- [
- 16.33516,
- 56.72511
- ],
- [
- 16.38922,
- 56.71885
- ],
- [
- 16.41137,
- 56.67602
- ],
- [
- 16.4053,
- 56.66294
- ],
- [
- 16.33101,
- 56.625
- ],
- [
- 16.28048,
- 56.613
- ],
- [
- 16.21561,
- 56.51967
- ],
- [
- 16.156,
- 56.45834
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Kalmar municipality",
- "url": "http://data-kalmar.opendata.arcgis.com/"
- },
- "available_projections": [
- "EPSG:3010",
- "EPSG:4326"
- ],
- "best": true,
- "country_code": "SE",
- "description": "Orthophotos for the south coast of the municipality of Kalmar 2016",
- "end_date": "2016",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png",
- "id": "kalmar-orto-2016",
- "license_url": "https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/se/Kalmar_permission.pdf",
- "max_zoom": 22,
- "min_zoom": 9,
- "name": "Kalmar South Orthophoto 2016",
- "start_date": "2016",
- "type": "wms",
- "url": "https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2016/ImageServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.3416,
- 56.81756
- ],
- [
- 16.32773,
- 56.7973
- ],
- [
- 16.36692,
- 56.78706
- ],
- [
- 16.37105,
- 56.79153
- ],
- [
- 16.36978,
- 56.80511
- ],
- [
- 16.35645,
- 56.8133
- ],
- [
- 16.3416,
- 56.81756
- ]
- ],
- [
- [
- 16.39207,
- 56.79339
- ],
- [
- 16.4608,
- 56.78944
- ],
- [
- 16.48817,
- 56.79067
- ],
- [
- 16.4833,
- 56.76986
- ],
- [
- 16.46612,
- 56.76711
- ],
- [
- 16.45409,
- 56.76774
- ],
- [
- 16.43173,
- 56.77309
- ],
- [
- 16.43178,
- 56.77663
- ],
- [
- 16.40554,
- 56.77214
- ],
- [
- 16.39325,
- 56.77349
- ],
- [
- 16.39207,
- 56.79339
- ]
- ],
- [
- [
- 16.29836,
- 56.79102
- ],
- [
- 16.28796,
- 56.7883
- ],
- [
- 16.27727,
- 56.78367
- ],
- [
- 16.27623,
- 56.77952
- ],
- [
- 16.2862,
- 56.7761
- ],
- [
- 16.3108,
- 56.77696
- ],
- [
- 16.3118,
- 56.78086
- ],
- [
- 16.30364,
- 56.78883
- ],
- [
- 16.29836,
- 56.79102
- ]
- ],
- [
- [
- 16.20686,
- 56.63637
- ],
- [
- 16.22098,
- 56.62389
- ],
- [
- 16.2453,
- 56.62467
- ],
- [
- 16.26751,
- 56.62951
- ],
- [
- 16.28724,
- 56.63831
- ],
- [
- 16.37871,
- 56.65462
- ],
- [
- 16.38806,
- 56.6897
- ],
- [
- 16.38664,
- 56.72867
- ],
- [
- 16.31586,
- 56.72879
- ],
- [
- 16.29956,
- 56.7219
- ],
- [
- 16.29331,
- 56.70021
- ],
- [
- 16.26799,
- 56.66889
- ],
- [
- 16.23945,
- 56.66991
- ],
- [
- 16.2266,
- 56.6624
- ],
- [
- 16.21411,
- 56.64972
- ],
- [
- 16.20686,
- 56.63637
- ]
- ],
- [
- [
- 16.15172,
- 56.67843
- ],
- [
- 16.15712,
- 56.69334
- ],
- [
- 16.15268,
- 56.70297
- ],
- [
- 16.13274,
- 56.71254
- ],
- [
- 16.10987,
- 56.71964
- ],
- [
- 16.08638,
- 56.7112
- ],
- [
- 16.07969,
- 56.70056
- ],
- [
- 16.08149,
- 56.69566
- ],
- [
- 16.09534,
- 56.69599
- ],
- [
- 16.12877,
- 56.67766
- ],
- [
- 16.15172,
- 56.67843
- ]
- ],
- [
- [
- 15.97369,
- 56.62759
- ],
- [
- 16.00164,
- 56.63215
- ],
- [
- 16.04126,
- 56.62999
- ],
- [
- 16.05658,
- 56.62489
- ],
- [
- 16.06201,
- 56.61794
- ],
- [
- 16.09186,
- 56.60378
- ],
- [
- 16.10527,
- 56.5926
- ],
- [
- 16.09581,
- 56.58161
- ],
- [
- 16.03481,
- 56.60405
- ],
- [
- 16.0305,
- 56.61252
- ],
- [
- 16.0088,
- 56.60223
- ],
- [
- 15.98755,
- 56.59742
- ],
- [
- 15.98449,
- 56.57141
- ],
- [
- 15.94887,
- 56.57264
- ],
- [
- 15.91878,
- 56.55184
- ],
- [
- 15.90892,
- 56.55393
- ],
- [
- 15.89921,
- 56.56867
- ],
- [
- 15.9188,
- 56.57287
- ],
- [
- 15.94612,
- 56.57491
- ],
- [
- 15.96371,
- 56.59004
- ],
- [
- 15.9496,
- 56.59724
- ],
- [
- 15.94308,
- 56.60903
- ],
- [
- 15.95726,
- 56.61598
- ],
- [
- 15.97589,
- 56.62005
- ],
- [
- 15.97369,
- 56.62759
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Kalmar municipality",
- "url": "http://data-kalmar.opendata.arcgis.com/"
- },
- "available_projections": [
- "EPSG:3010",
- "EPSG:4326"
- ],
- "best": true,
- "country_code": "SE",
- "description": "Orthophotos for urban areas of the municipality of Kalmar 2018",
- "end_date": "2018",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png",
- "id": "kalmar-orto-2018",
- "license_url": "https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/se/Kalmar_permission.pdf",
- "max_zoom": 22,
- "min_zoom": 9,
- "name": "Kalmar Urban Orthophoto 2018",
- "start_date": "2018",
- "type": "wms",
- "url": "https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2018/ImageServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.71117,
- 55.2666
- ],
- [
- 14.38109,
- 55.29163
- ],
- [
- 19.65453,
- 57.24934
- ],
- [
- 19.85228,
- 59.75087
- ],
- [
- 17.77587,
- 61.13794
- ],
- [
- 18.06151,
- 62.27815
- ],
- [
- 20.97289,
- 63.5779
- ],
- [
- 24.35668,
- 65.60842
- ],
- [
- 23.96117,
- 66.79191
- ],
- [
- 20.61034,
- 66.45189
- ],
- [
- 17.13866,
- 63.96632
- ],
- [
- 11.99706,
- 61.03702
- ],
- [
- 12.29369,
- 60.31607
- ],
- [
- 10.70067,
- 58.81375
- ],
- [
- 12.71117,
- 55.2666
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Lantmäteriet",
- "url": "https://www.lantmateriet.se"
- },
- "country_code": "SE",
- "description": "Scan of \"Economic maps\" ca. 1950–1980",
- "i18n": true,
- "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png",
- "id": "osmse-ekonomiska",
- "license_url": "https://www.lantmateriet.se/en/Kartor-och-geografisk-information/oppna-data/anvandarvillkor/",
- "max_zoom": 17,
- "min_zoom": 3,
- "name": "Lantmäteriet Economic Map 1950–1980",
- "type": "tms",
- "url": "https://mapproxy.openstreetmap.se/tms/1.0.0/ek_EPSG3857/{zoom}/{x}/{-y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Lantmäteriet, CC0",
- "url": "https://www.lantmateriet.se/"
- },
- "country_code": "SE",
- "description": "Topographic map of Sweden 1:50 000",
- "i18n": true,
- "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png",
- "id": "lantmateriet-topowebb",
- "license_url": "https://www.lantmateriet.se/en/Kartor-och-geografisk-information/oppna-data/anvandarvillkor/",
- "max_zoom": 15,
- "min_zoom": 3,
- "name": "Lantmäteriet Topographic Map",
- "type": "tms",
- "url": "https://api.lantmateriet.se/open/topowebb-ccby/v1/wmts/token/9b342b7d9f12d4ddb92277be9869d860/1.0.0/topowebb/default/3857/{zoom}/{y}/{x}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.36884,
- 58.6305
- ],
- [
- 15.41279,
- 58.65623
- ],
- [
- 15.46635,
- 58.6339
- ],
- [
- 15.54291,
- 58.64408
- ],
- [
- 15.54119,
- 58.60672
- ],
- [
- 15.58376,
- 58.6414
- ],
- [
- 15.7592,
- 58.55267
- ],
- [
- 15.76675,
- 58.52006
- ],
- [
- 15.91438,
- 58.51755
- ],
- [
- 16.08089,
- 58.37148
- ],
- [
- 15.82718,
- 58.30588
- ],
- [
- 15.84915,
- 58.21449
- ],
- [
- 15.65861,
- 58.15513
- ],
- [
- 15.56763,
- 58.19134
- ],
- [
- 15.55939,
- 58.14661
- ],
- [
- 15.50171,
- 58.07679
- ],
- [
- 15.37777,
- 58.05881
- ],
- [
- 15.28713,
- 58.1031
- ],
- [
- 15.27203,
- 58.13483
- ],
- [
- 15.35889,
- 58.16455
- ],
- [
- 15.32387,
- 58.38012
- ],
- [
- 15.24971,
- 58.40027
- ],
- [
- 15.3582,
- 58.47288
- ],
- [
- 15.36884,
- 58.6305
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Linköping municipality",
- "url": "https://www.linkoping.se/open/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:3009"
- ],
- "best": true,
- "country_code": "SE",
- "description": "Orthophotos from the municipality of Linköping 2010, open data",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Linköping_vapen.svg/198px-Linköping_vapen.svg.png",
- "id": "linkoping-orto",
- "license_url": "https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/se/linkoping_permission.pdf",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "Linköping Orthophoto",
- "type": "wms",
- "url": "http://kartan.linkoping.se/wms?servicename=wms_ortofoto&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Kommun_2010_25cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 17.8755,
- 59.2625
- ],
- [
- 17.94411,
- 59.27307
- ],
- [
- 18.09551,
- 59.22603
- ],
- [
- 18.19582,
- 59.22786
- ],
- [
- 18.20297,
- 59.24886
- ],
- [
- 18.12538,
- 59.30779
- ],
- [
- 18.1786,
- 59.32566
- ],
- [
- 18.09876,
- 59.3721
- ],
- [
- 18.04264,
- 59.37816
- ],
- [
- 18.00796,
- 59.34334
- ],
- [
- 17.93655,
- 59.37641
- ],
- [
- 17.97483,
- 59.40246
- ],
- [
- 17.90882,
- 59.4417
- ],
- [
- 17.8854,
- 59.43792
- ],
- [
- 17.88918,
- 59.41382
- ],
- [
- 17.84077,
- 59.38568
- ],
- [
- 17.81708,
- 59.40054
- ],
- [
- 17.77725,
- 59.39984
- ],
- [
- 17.75622,
- 59.3916
- ],
- [
- 17.79899,
- 59.36204
- ],
- [
- 17.94993,
- 59.31121
- ],
- [
- 17.85622,
- 59.28412
- ],
- [
- 17.8755,
- 59.2625
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Stockholm municipality, CC0",
- "url": "https://dataportalen.stockholm.se/dataportalen/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:25832",
- "EPSG:25833",
- "EPSG:25835",
- "EPSG:25884",
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3044",
- "EPSG:3152",
- "EPSG:32632",
- "EPSG:32633",
- "EPSG:5850",
- "EPSG:5973",
- "EPSG:5975"
- ],
- "best": true,
- "country_code": "SE",
- "description": "Orthophotos from the municipality of Stockholm 2016, CC0 license",
- "i18n": true,
- "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Stockholm_vapen_bra.svg/196px-Stockholm_vapen_bra.svg.png",
- "id": "stockholm-orto",
- "license_url": "https://dataportalen.stockholm.se/dataportalen/GetMetaDataById?id=6841c003-2363-4b74-92b9-2509f75fd312",
- "max_zoom": 21,
- "min_zoom": 5,
- "name": "Stockholm Orthophoto",
- "type": "wms",
- "url": "https://openmap.stockholm.se/bios/wms/app/baggis/web/WMS_STHLM_ORTOFOTO_2016?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=p_1002630&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Trafikverket, CC0",
- "url": "https://www.trafikverket.se"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:4258",
- "EPSG:4619"
- ],
- "country_code": "SE",
- "description": "Swedish railway network, including sidings",
- "i18n": true,
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "id": "trafikverket-baninfo",
- "license_url": "https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667",
- "max_zoom": 20,
- "min_zoom": 7,
- "name": "Trafikverket Railway Network",
- "overlay": true,
- "type": "wms",
- "url": "https://geo-baninfo.trafikverket.se/mapservice/wms.axd/BanInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Spar_Huvud_och_sidospar&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Trafikverket, CC0",
- "url": "https://www.trafikverket.se"
- },
- "country_code": "SE",
- "description": "Swedish railway network with several options for map layers",
- "i18n": true,
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "id": "trafikverket-baninfo-option",
- "license_url": "https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667",
- "max_zoom": 20,
- "min_zoom": 7,
- "name": "Trafikverket Railway Network options",
- "overlay": true,
- "type": "wms_endpoint",
- "url": "https://geo-baninfo.trafikverket.se/mapservice/wms.axd/BanInfo?service=wms&request=getCapabilities"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Trafikverket, CC0",
- "url": "https://www.trafikverket.se"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:4258",
- "EPSG:4619"
- ],
- "country_code": "SE",
- "description": "Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera",
- "i18n": true,
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "id": "trafikverket-vagnat-extra",
- "license_url": "https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667",
- "max_zoom": 20,
- "min_zoom": 3,
- "name": "Trafikverket Road Network extra",
- "overlay": true,
- "type": "wms",
- "url": "https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagnummer,Vaghinder,Rastplats,Rastficka,Hallplats,Farthinder,BroTunnel,ATK_Matplats&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Trafikverket, CC0",
- "url": "https://www.trafikverket.se"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:3006",
- "EPSG:3007",
- "EPSG:3008",
- "EPSG:3009",
- "EPSG:3010",
- "EPSG:3011",
- "EPSG:3012",
- "EPSG:3013",
- "EPSG:3014",
- "EPSG:3015",
- "EPSG:3016",
- "EPSG:3017",
- "EPSG:3018",
- "EPSG:3034",
- "EPSG:3035",
- "EPSG:3044",
- "EPSG:3045",
- "EPSG:3046",
- "EPSG:3047",
- "EPSG:4258",
- "EPSG:4619"
- ],
- "country_code": "SE",
- "description": "Swedish NVDB road network",
- "i18n": true,
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "id": "trafikverket-vagnat",
- "license_url": "https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667",
- "max_zoom": 20,
- "min_zoom": 13,
- "name": "Trafikverket Road Network",
- "overlay": true,
- "type": "wms",
- "url": "https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagtrafiknat,Funkvagklass,Farjeled&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Trafikverket, CC0",
- "url": "https://www.trafikverket.se"
- },
- "country_code": "SE",
- "description": "Swedish NVDB road network with several options for map layers",
- "i18n": true,
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "id": "trafikverket-vagnat-option",
- "license_url": "https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667",
- "max_zoom": 20,
- "min_zoom": 3,
- "name": "Trafikverket Road Network options",
- "overlay": true,
- "type": "wms_endpoint",
- "url": "https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?service=wms&request=getCapabilities"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Trafikverket, CC0",
- "url": "https://www.trafikverket.se"
- },
- "country_code": "SE",
- "description": "Swedish NVDB street names",
- "i18n": true,
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "id": "trafikverket-vagnat-navn",
- "license_url": "https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667",
- "max_zoom": 19,
- "min_zoom": 15,
- "name": "Trafikverket Street Names",
- "overlay": true,
- "type": "tms",
- "url": "https://mapproxy.openstreetmap.se/tiles/1.0.0/nvdb_names/EPSG3857/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.17101,
- 45.41273
- ],
- [
- 15.06731,
- 45.4781
- ],
- [
- 14.98353,
- 45.48726
- ],
- [
- 14.93027,
- 45.51869
- ],
- [
- 14.91295,
- 45.46869
- ],
- [
- 14.81398,
- 45.45019
- ],
- [
- 14.77755,
- 45.49724
- ],
- [
- 14.71885,
- 45.52386
- ],
- [
- 14.68383,
- 45.51924
- ],
- [
- 14.68367,
- 45.57107
- ],
- [
- 14.58902,
- 45.61966
- ],
- [
- 14.59477,
- 45.65727
- ],
- [
- 14.51653,
- 45.5974
- ],
- [
- 14.49636,
- 45.52968
- ],
- [
- 14.32388,
- 45.46048
- ],
- [
- 14.28251,
- 45.47949
- ],
- [
- 14.26083,
- 45.47352
- ],
- [
- 14.2367,
- 45.49569
- ],
- [
- 14.21022,
- 45.45962
- ],
- [
- 14.1328,
- 45.46542
- ],
- [
- 14.06694,
- 45.47615
- ],
- [
- 14.01187,
- 45.50769
- ],
- [
- 13.98752,
- 45.49945
- ],
- [
- 14.00668,
- 45.4739
- ],
- [
- 13.99154,
- 45.44854
- ],
- [
- 13.91789,
- 45.44329
- ],
- [
- 13.88867,
- 45.416
- ],
- [
- 13.81063,
- 45.42531
- ],
- [
- 13.7856,
- 45.45577
- ],
- [
- 13.67553,
- 45.43241
- ],
- [
- 13.38,
- 45.5666
- ],
- [
- 13.63822,
- 45.64153
- ],
- [
- 13.72158,
- 45.60472
- ],
- [
- 13.83759,
- 45.59226
- ],
- [
- 13.89962,
- 45.63295
- ],
- [
- 13.82754,
- 45.67917
- ],
- [
- 13.82429,
- 45.70266
- ],
- [
- 13.78961,
- 45.73525
- ],
- [
- 13.66355,
- 45.79008
- ],
- [
- 13.62279,
- 45.78613
- ],
- [
- 13.58835,
- 45.80154
- ],
- [
- 13.56531,
- 45.85522
- ],
- [
- 13.62633,
- 45.93894
- ],
- [
- 13.62975,
- 45.97662
- ],
- [
- 13.59233,
- 45.97929
- ],
- [
- 13.57124,
- 45.9591
- ],
- [
- 13.52998,
- 45.95627
- ],
- [
- 13.46729,
- 46.00147
- ],
- [
- 13.49765,
- 46.03741
- ],
- [
- 13.4896,
- 46.06574
- ],
- [
- 13.58839,
- 46.11268
- ],
- [
- 13.63712,
- 46.14524
- ],
- [
- 13.65358,
- 46.17505
- ],
- [
- 13.57147,
- 46.17434
- ],
- [
- 13.54859,
- 46.19982
- ],
- [
- 13.48189,
- 46.21479
- ],
- [
- 13.42003,
- 46.19662
- ],
- [
- 13.40026,
- 46.21037
- ],
- [
- 13.40304,
- 46.23284
- ],
- [
- 13.36653,
- 46.30266
- ],
- [
- 13.43369,
- 46.33243
- ],
- [
- 13.43247,
- 46.36779
- ],
- [
- 13.56263,
- 46.40895
- ],
- [
- 13.59357,
- 46.44846
- ],
- [
- 13.68393,
- 46.44947
- ],
- [
- 13.71321,
- 46.53296
- ],
- [
- 13.79725,
- 46.5164
- ],
- [
- 13.91305,
- 46.53108
- ],
- [
- 14.00849,
- 46.49169
- ],
- [
- 14.09406,
- 46.49538
- ],
- [
- 14.12664,
- 46.4852
- ],
- [
- 14.16569,
- 46.44341
- ],
- [
- 14.28242,
- 46.45347
- ],
- [
- 14.3259,
- 46.44111
- ],
- [
- 14.43178,
- 46.4568
- ],
- [
- 14.45113,
- 46.43239
- ],
- [
- 14.52618,
- 46.43623
- ],
- [
- 14.56677,
- 46.38549
- ],
- [
- 14.58993,
- 46.44479
- ],
- [
- 14.65658,
- 46.45447
- ],
- [
- 14.71191,
- 46.50954
- ],
- [
- 14.80818,
- 46.51778
- ],
- [
- 14.81442,
- 46.55093
- ],
- [
- 14.86094,
- 46.61239
- ],
- [
- 14.9102,
- 46.61569
- ],
- [
- 14.95398,
- 46.64257
- ],
- [
- 14.98376,
- 46.61868
- ],
- [
- 15.02973,
- 46.65796
- ],
- [
- 15.10645,
- 46.66965
- ],
- [
- 15.23727,
- 46.64973
- ],
- [
- 15.41364,
- 46.66553
- ],
- [
- 15.46237,
- 46.64732
- ],
- [
- 15.47411,
- 46.6226
- ],
- [
- 15.53427,
- 46.64346
- ],
- [
- 15.53636,
- 46.6761
- ],
- [
- 15.59201,
- 46.69952
- ],
- [
- 15.62405,
- 46.69039
- ],
- [
- 15.65624,
- 46.71643
- ],
- [
- 15.767,
- 46.70899
- ],
- [
- 15.83801,
- 46.73237
- ],
- [
- 15.91476,
- 46.71958
- ],
- [
- 16.02919,
- 46.67033
- ],
- [
- 16.02955,
- 46.68778
- ],
- [
- 15.99495,
- 46.71178
- ],
- [
- 15.97505,
- 46.74967
- ],
- [
- 15.98671,
- 46.84189
- ],
- [
- 16.0553,
- 46.85049
- ],
- [
- 16.11022,
- 46.87912
- ],
- [
- 16.15425,
- 46.86525
- ],
- [
- 16.23302,
- 46.88667
- ],
- [
- 16.29431,
- 46.8824
- ],
- [
- 16.34649,
- 46.85476
- ],
- [
- 16.36058,
- 46.8278
- ],
- [
- 16.34711,
- 46.79707
- ],
- [
- 16.32245,
- 46.79068
- ],
- [
- 16.33977,
- 46.7799
- ],
- [
- 16.33186,
- 46.75896
- ],
- [
- 16.38893,
- 46.70785
- ],
- [
- 16.4383,
- 46.69655
- ],
- [
- 16.42822,
- 46.65301
- ],
- [
- 16.40159,
- 46.6439
- ],
- [
- 16.51477,
- 46.57299
- ],
- [
- 16.54136,
- 46.53627
- ],
- [
- 16.5416,
- 46.50887
- ],
- [
- 16.611,
- 46.48393
- ],
- [
- 16.61889,
- 46.46203
- ],
- [
- 16.52219,
- 46.45842
- ],
- [
- 16.47451,
- 46.50108
- ],
- [
- 16.36776,
- 46.53371
- ],
- [
- 16.2582,
- 46.489
- ],
- [
- 16.28533,
- 46.42441
- ],
- [
- 16.3168,
- 46.40141
- ],
- [
- 16.30574,
- 46.36921
- ],
- [
- 16.18689,
- 46.36804
- ],
- [
- 16.14548,
- 46.39515
- ],
- [
- 16.06959,
- 46.38154
- ],
- [
- 16.08614,
- 46.34087
- ],
- [
- 16.04058,
- 46.32708
- ],
- [
- 16.01819,
- 46.29964
- ],
- [
- 15.80777,
- 46.25091
- ],
- [
- 15.79649,
- 46.21296
- ],
- [
- 15.77128,
- 46.19937
- ],
- [
- 15.67996,
- 46.21707
- ],
- [
- 15.65737,
- 46.20838
- ],
- [
- 15.65639,
- 46.18456
- ],
- [
- 15.62037,
- 46.16163
- ],
- [
- 15.61899,
- 46.11595
- ],
- [
- 15.63483,
- 46.09529
- ],
- [
- 15.71869,
- 46.06873
- ],
- [
- 15.74241,
- 46.04578
- ],
- [
- 15.71612,
- 45.99489
- ],
- [
- 15.71645,
- 45.9178
- ],
- [
- 15.69237,
- 45.90013
- ],
- [
- 15.69375,
- 45.87111
- ],
- [
- 15.71776,
- 45.8416
- ],
- [
- 15.6441,
- 45.81058
- ],
- [
- 15.57467,
- 45.83999
- ],
- [
- 15.52333,
- 45.81155
- ],
- [
- 15.49115,
- 45.82041
- ],
- [
- 15.47514,
- 45.78666
- ],
- [
- 15.40343,
- 45.78216
- ],
- [
- 15.28683,
- 45.73391
- ],
- [
- 15.27435,
- 45.72408
- ],
- [
- 15.29763,
- 45.70782
- ],
- [
- 15.36329,
- 45.72191
- ],
- [
- 15.41517,
- 45.65443
- ],
- [
- 15.39705,
- 45.62929
- ],
- [
- 15.31501,
- 45.62356
- ],
- [
- 15.31503,
- 45.60696
- ],
- [
- 15.29266,
- 45.60163
- ],
- [
- 15.30852,
- 45.58653
- ],
- [
- 15.31145,
- 45.5423
- ],
- [
- 15.39496,
- 45.48325
- ],
- [
- 15.34824,
- 45.44665
- ],
- [
- 15.27515,
- 45.45599
- ],
- [
- 15.22848,
- 45.41683
- ],
- [
- 15.17101,
- 45.41273
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).",
- "url": "https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/"
- },
- "country_code": "SI",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png",
- "id": "GURS-buildings",
- "license_url": "https://wiki.openstreetmap.org/wiki/GURS",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "GURS: Building outlines",
- "overlay": true,
- "type": "tms",
- "url": "https://wms.openstreetmap.de/tms/GURS-building-outlines/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.17101,
- 45.41273
- ],
- [
- 15.06731,
- 45.4781
- ],
- [
- 14.98353,
- 45.48726
- ],
- [
- 14.93027,
- 45.51869
- ],
- [
- 14.91295,
- 45.46869
- ],
- [
- 14.81398,
- 45.45019
- ],
- [
- 14.77755,
- 45.49724
- ],
- [
- 14.71885,
- 45.52386
- ],
- [
- 14.68383,
- 45.51924
- ],
- [
- 14.68367,
- 45.57107
- ],
- [
- 14.58902,
- 45.61966
- ],
- [
- 14.59477,
- 45.65727
- ],
- [
- 14.51653,
- 45.5974
- ],
- [
- 14.49636,
- 45.52968
- ],
- [
- 14.32388,
- 45.46048
- ],
- [
- 14.28251,
- 45.47949
- ],
- [
- 14.26083,
- 45.47352
- ],
- [
- 14.2367,
- 45.49569
- ],
- [
- 14.21022,
- 45.45962
- ],
- [
- 14.1328,
- 45.46542
- ],
- [
- 14.06694,
- 45.47615
- ],
- [
- 14.01187,
- 45.50769
- ],
- [
- 13.98752,
- 45.49945
- ],
- [
- 14.00668,
- 45.4739
- ],
- [
- 13.99154,
- 45.44854
- ],
- [
- 13.91789,
- 45.44329
- ],
- [
- 13.88867,
- 45.416
- ],
- [
- 13.81063,
- 45.42531
- ],
- [
- 13.7856,
- 45.45577
- ],
- [
- 13.67553,
- 45.43241
- ],
- [
- 13.38,
- 45.5666
- ],
- [
- 13.63822,
- 45.64153
- ],
- [
- 13.72158,
- 45.60472
- ],
- [
- 13.83759,
- 45.59226
- ],
- [
- 13.89962,
- 45.63295
- ],
- [
- 13.82754,
- 45.67917
- ],
- [
- 13.82429,
- 45.70266
- ],
- [
- 13.78961,
- 45.73525
- ],
- [
- 13.66355,
- 45.79008
- ],
- [
- 13.62279,
- 45.78613
- ],
- [
- 13.58835,
- 45.80154
- ],
- [
- 13.56531,
- 45.85522
- ],
- [
- 13.62633,
- 45.93894
- ],
- [
- 13.62975,
- 45.97662
- ],
- [
- 13.59233,
- 45.97929
- ],
- [
- 13.57124,
- 45.9591
- ],
- [
- 13.52998,
- 45.95627
- ],
- [
- 13.46729,
- 46.00147
- ],
- [
- 13.49765,
- 46.03741
- ],
- [
- 13.4896,
- 46.06574
- ],
- [
- 13.58839,
- 46.11268
- ],
- [
- 13.63712,
- 46.14524
- ],
- [
- 13.65358,
- 46.17505
- ],
- [
- 13.57147,
- 46.17434
- ],
- [
- 13.54859,
- 46.19982
- ],
- [
- 13.48189,
- 46.21479
- ],
- [
- 13.42003,
- 46.19662
- ],
- [
- 13.40026,
- 46.21037
- ],
- [
- 13.40304,
- 46.23284
- ],
- [
- 13.36653,
- 46.30266
- ],
- [
- 13.43369,
- 46.33243
- ],
- [
- 13.43247,
- 46.36779
- ],
- [
- 13.56263,
- 46.40895
- ],
- [
- 13.59357,
- 46.44846
- ],
- [
- 13.68393,
- 46.44947
- ],
- [
- 13.71321,
- 46.53296
- ],
- [
- 13.79725,
- 46.5164
- ],
- [
- 13.91305,
- 46.53108
- ],
- [
- 14.00849,
- 46.49169
- ],
- [
- 14.09406,
- 46.49538
- ],
- [
- 14.12664,
- 46.4852
- ],
- [
- 14.16569,
- 46.44341
- ],
- [
- 14.28242,
- 46.45347
- ],
- [
- 14.3259,
- 46.44111
- ],
- [
- 14.43178,
- 46.4568
- ],
- [
- 14.45113,
- 46.43239
- ],
- [
- 14.52618,
- 46.43623
- ],
- [
- 14.56677,
- 46.38549
- ],
- [
- 14.58993,
- 46.44479
- ],
- [
- 14.65658,
- 46.45447
- ],
- [
- 14.71191,
- 46.50954
- ],
- [
- 14.80818,
- 46.51778
- ],
- [
- 14.81442,
- 46.55093
- ],
- [
- 14.86094,
- 46.61239
- ],
- [
- 14.9102,
- 46.61569
- ],
- [
- 14.95398,
- 46.64257
- ],
- [
- 14.98376,
- 46.61868
- ],
- [
- 15.02973,
- 46.65796
- ],
- [
- 15.10645,
- 46.66965
- ],
- [
- 15.23727,
- 46.64973
- ],
- [
- 15.41364,
- 46.66553
- ],
- [
- 15.46237,
- 46.64732
- ],
- [
- 15.47411,
- 46.6226
- ],
- [
- 15.53427,
- 46.64346
- ],
- [
- 15.53636,
- 46.6761
- ],
- [
- 15.59201,
- 46.69952
- ],
- [
- 15.62405,
- 46.69039
- ],
- [
- 15.65624,
- 46.71643
- ],
- [
- 15.767,
- 46.70899
- ],
- [
- 15.83801,
- 46.73237
- ],
- [
- 15.91476,
- 46.71958
- ],
- [
- 16.02919,
- 46.67033
- ],
- [
- 16.02955,
- 46.68778
- ],
- [
- 15.99495,
- 46.71178
- ],
- [
- 15.97505,
- 46.74967
- ],
- [
- 15.98671,
- 46.84189
- ],
- [
- 16.0553,
- 46.85049
- ],
- [
- 16.11022,
- 46.87912
- ],
- [
- 16.15425,
- 46.86525
- ],
- [
- 16.23302,
- 46.88667
- ],
- [
- 16.29431,
- 46.8824
- ],
- [
- 16.34649,
- 46.85476
- ],
- [
- 16.36058,
- 46.8278
- ],
- [
- 16.34711,
- 46.79707
- ],
- [
- 16.32245,
- 46.79068
- ],
- [
- 16.33977,
- 46.7799
- ],
- [
- 16.33186,
- 46.75896
- ],
- [
- 16.38893,
- 46.70785
- ],
- [
- 16.4383,
- 46.69655
- ],
- [
- 16.42822,
- 46.65301
- ],
- [
- 16.40159,
- 46.6439
- ],
- [
- 16.51477,
- 46.57299
- ],
- [
- 16.54136,
- 46.53627
- ],
- [
- 16.5416,
- 46.50887
- ],
- [
- 16.611,
- 46.48393
- ],
- [
- 16.61889,
- 46.46203
- ],
- [
- 16.52219,
- 46.45842
- ],
- [
- 16.47451,
- 46.50108
- ],
- [
- 16.36776,
- 46.53371
- ],
- [
- 16.2582,
- 46.489
- ],
- [
- 16.28533,
- 46.42441
- ],
- [
- 16.3168,
- 46.40141
- ],
- [
- 16.30574,
- 46.36921
- ],
- [
- 16.18689,
- 46.36804
- ],
- [
- 16.14548,
- 46.39515
- ],
- [
- 16.06959,
- 46.38154
- ],
- [
- 16.08614,
- 46.34087
- ],
- [
- 16.04058,
- 46.32708
- ],
- [
- 16.01819,
- 46.29964
- ],
- [
- 15.80777,
- 46.25091
- ],
- [
- 15.79649,
- 46.21296
- ],
- [
- 15.77128,
- 46.19937
- ],
- [
- 15.67996,
- 46.21707
- ],
- [
- 15.65737,
- 46.20838
- ],
- [
- 15.65639,
- 46.18456
- ],
- [
- 15.62037,
- 46.16163
- ],
- [
- 15.61899,
- 46.11595
- ],
- [
- 15.63483,
- 46.09529
- ],
- [
- 15.71869,
- 46.06873
- ],
- [
- 15.74241,
- 46.04578
- ],
- [
- 15.71612,
- 45.99489
- ],
- [
- 15.71645,
- 45.9178
- ],
- [
- 15.69237,
- 45.90013
- ],
- [
- 15.69375,
- 45.87111
- ],
- [
- 15.71776,
- 45.8416
- ],
- [
- 15.6441,
- 45.81058
- ],
- [
- 15.57467,
- 45.83999
- ],
- [
- 15.52333,
- 45.81155
- ],
- [
- 15.49115,
- 45.82041
- ],
- [
- 15.47514,
- 45.78666
- ],
- [
- 15.40343,
- 45.78216
- ],
- [
- 15.28683,
- 45.73391
- ],
- [
- 15.27435,
- 45.72408
- ],
- [
- 15.29763,
- 45.70782
- ],
- [
- 15.36329,
- 45.72191
- ],
- [
- 15.41517,
- 45.65443
- ],
- [
- 15.39705,
- 45.62929
- ],
- [
- 15.31501,
- 45.62356
- ],
- [
- 15.31503,
- 45.60696
- ],
- [
- 15.29266,
- 45.60163
- ],
- [
- 15.30852,
- 45.58653
- ],
- [
- 15.31145,
- 45.5423
- ],
- [
- 15.39496,
- 45.48325
- ],
- [
- 15.34824,
- 45.44665
- ],
- [
- 15.27515,
- 45.45599
- ],
- [
- 15.22848,
- 45.41683
- ],
- [
- 15.17101,
- 45.41273
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).",
- "url": "https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/"
- },
- "country_code": "SI",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png",
- "id": "GURS-roads",
- "license_url": "https://wiki.openstreetmap.org/wiki/GURS",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "GURS: Road lines",
- "overlay": true,
- "type": "tms",
- "url": "https://wms.openstreetmap.de/tms/GURS-road-lines/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.17101,
- 45.41273
- ],
- [
- 15.06731,
- 45.4781
- ],
- [
- 14.98353,
- 45.48726
- ],
- [
- 14.93027,
- 45.51869
- ],
- [
- 14.91295,
- 45.46869
- ],
- [
- 14.81398,
- 45.45019
- ],
- [
- 14.77755,
- 45.49724
- ],
- [
- 14.71885,
- 45.52386
- ],
- [
- 14.68383,
- 45.51924
- ],
- [
- 14.68367,
- 45.57107
- ],
- [
- 14.58902,
- 45.61966
- ],
- [
- 14.59477,
- 45.65727
- ],
- [
- 14.51653,
- 45.5974
- ],
- [
- 14.49636,
- 45.52968
- ],
- [
- 14.32388,
- 45.46048
- ],
- [
- 14.28251,
- 45.47949
- ],
- [
- 14.26083,
- 45.47352
- ],
- [
- 14.2367,
- 45.49569
- ],
- [
- 14.21022,
- 45.45962
- ],
- [
- 14.1328,
- 45.46542
- ],
- [
- 14.06694,
- 45.47615
- ],
- [
- 14.01187,
- 45.50769
- ],
- [
- 13.98752,
- 45.49945
- ],
- [
- 14.00668,
- 45.4739
- ],
- [
- 13.99154,
- 45.44854
- ],
- [
- 13.91789,
- 45.44329
- ],
- [
- 13.88867,
- 45.416
- ],
- [
- 13.81063,
- 45.42531
- ],
- [
- 13.7856,
- 45.45577
- ],
- [
- 13.67553,
- 45.43241
- ],
- [
- 13.38,
- 45.5666
- ],
- [
- 13.63822,
- 45.64153
- ],
- [
- 13.72158,
- 45.60472
- ],
- [
- 13.83759,
- 45.59226
- ],
- [
- 13.89962,
- 45.63295
- ],
- [
- 13.82754,
- 45.67917
- ],
- [
- 13.82429,
- 45.70266
- ],
- [
- 13.78961,
- 45.73525
- ],
- [
- 13.66355,
- 45.79008
- ],
- [
- 13.62279,
- 45.78613
- ],
- [
- 13.58835,
- 45.80154
- ],
- [
- 13.56531,
- 45.85522
- ],
- [
- 13.62633,
- 45.93894
- ],
- [
- 13.62975,
- 45.97662
- ],
- [
- 13.59233,
- 45.97929
- ],
- [
- 13.57124,
- 45.9591
- ],
- [
- 13.52998,
- 45.95627
- ],
- [
- 13.46729,
- 46.00147
- ],
- [
- 13.49765,
- 46.03741
- ],
- [
- 13.4896,
- 46.06574
- ],
- [
- 13.58839,
- 46.11268
- ],
- [
- 13.63712,
- 46.14524
- ],
- [
- 13.65358,
- 46.17505
- ],
- [
- 13.57147,
- 46.17434
- ],
- [
- 13.54859,
- 46.19982
- ],
- [
- 13.48189,
- 46.21479
- ],
- [
- 13.42003,
- 46.19662
- ],
- [
- 13.40026,
- 46.21037
- ],
- [
- 13.40304,
- 46.23284
- ],
- [
- 13.36653,
- 46.30266
- ],
- [
- 13.43369,
- 46.33243
- ],
- [
- 13.43247,
- 46.36779
- ],
- [
- 13.56263,
- 46.40895
- ],
- [
- 13.59357,
- 46.44846
- ],
- [
- 13.68393,
- 46.44947
- ],
- [
- 13.71321,
- 46.53296
- ],
- [
- 13.79725,
- 46.5164
- ],
- [
- 13.91305,
- 46.53108
- ],
- [
- 14.00849,
- 46.49169
- ],
- [
- 14.09406,
- 46.49538
- ],
- [
- 14.12664,
- 46.4852
- ],
- [
- 14.16569,
- 46.44341
- ],
- [
- 14.28242,
- 46.45347
- ],
- [
- 14.3259,
- 46.44111
- ],
- [
- 14.43178,
- 46.4568
- ],
- [
- 14.45113,
- 46.43239
- ],
- [
- 14.52618,
- 46.43623
- ],
- [
- 14.56677,
- 46.38549
- ],
- [
- 14.58993,
- 46.44479
- ],
- [
- 14.65658,
- 46.45447
- ],
- [
- 14.71191,
- 46.50954
- ],
- [
- 14.80818,
- 46.51778
- ],
- [
- 14.81442,
- 46.55093
- ],
- [
- 14.86094,
- 46.61239
- ],
- [
- 14.9102,
- 46.61569
- ],
- [
- 14.95398,
- 46.64257
- ],
- [
- 14.98376,
- 46.61868
- ],
- [
- 15.02973,
- 46.65796
- ],
- [
- 15.10645,
- 46.66965
- ],
- [
- 15.23727,
- 46.64973
- ],
- [
- 15.41364,
- 46.66553
- ],
- [
- 15.46237,
- 46.64732
- ],
- [
- 15.47411,
- 46.6226
- ],
- [
- 15.53427,
- 46.64346
- ],
- [
- 15.53636,
- 46.6761
- ],
- [
- 15.59201,
- 46.69952
- ],
- [
- 15.62405,
- 46.69039
- ],
- [
- 15.65624,
- 46.71643
- ],
- [
- 15.767,
- 46.70899
- ],
- [
- 15.83801,
- 46.73237
- ],
- [
- 15.91476,
- 46.71958
- ],
- [
- 16.02919,
- 46.67033
- ],
- [
- 16.02955,
- 46.68778
- ],
- [
- 15.99495,
- 46.71178
- ],
- [
- 15.97505,
- 46.74967
- ],
- [
- 15.98671,
- 46.84189
- ],
- [
- 16.0553,
- 46.85049
- ],
- [
- 16.11022,
- 46.87912
- ],
- [
- 16.15425,
- 46.86525
- ],
- [
- 16.23302,
- 46.88667
- ],
- [
- 16.29431,
- 46.8824
- ],
- [
- 16.34649,
- 46.85476
- ],
- [
- 16.36058,
- 46.8278
- ],
- [
- 16.34711,
- 46.79707
- ],
- [
- 16.32245,
- 46.79068
- ],
- [
- 16.33977,
- 46.7799
- ],
- [
- 16.33186,
- 46.75896
- ],
- [
- 16.38893,
- 46.70785
- ],
- [
- 16.4383,
- 46.69655
- ],
- [
- 16.42822,
- 46.65301
- ],
- [
- 16.40159,
- 46.6439
- ],
- [
- 16.51477,
- 46.57299
- ],
- [
- 16.54136,
- 46.53627
- ],
- [
- 16.5416,
- 46.50887
- ],
- [
- 16.611,
- 46.48393
- ],
- [
- 16.61889,
- 46.46203
- ],
- [
- 16.52219,
- 46.45842
- ],
- [
- 16.47451,
- 46.50108
- ],
- [
- 16.36776,
- 46.53371
- ],
- [
- 16.2582,
- 46.489
- ],
- [
- 16.28533,
- 46.42441
- ],
- [
- 16.3168,
- 46.40141
- ],
- [
- 16.30574,
- 46.36921
- ],
- [
- 16.18689,
- 46.36804
- ],
- [
- 16.14548,
- 46.39515
- ],
- [
- 16.06959,
- 46.38154
- ],
- [
- 16.08614,
- 46.34087
- ],
- [
- 16.04058,
- 46.32708
- ],
- [
- 16.01819,
- 46.29964
- ],
- [
- 15.80777,
- 46.25091
- ],
- [
- 15.79649,
- 46.21296
- ],
- [
- 15.77128,
- 46.19937
- ],
- [
- 15.67996,
- 46.21707
- ],
- [
- 15.65737,
- 46.20838
- ],
- [
- 15.65639,
- 46.18456
- ],
- [
- 15.62037,
- 46.16163
- ],
- [
- 15.61899,
- 46.11595
- ],
- [
- 15.63483,
- 46.09529
- ],
- [
- 15.71869,
- 46.06873
- ],
- [
- 15.74241,
- 46.04578
- ],
- [
- 15.71612,
- 45.99489
- ],
- [
- 15.71645,
- 45.9178
- ],
- [
- 15.69237,
- 45.90013
- ],
- [
- 15.69375,
- 45.87111
- ],
- [
- 15.71776,
- 45.8416
- ],
- [
- 15.6441,
- 45.81058
- ],
- [
- 15.57467,
- 45.83999
- ],
- [
- 15.52333,
- 45.81155
- ],
- [
- 15.49115,
- 45.82041
- ],
- [
- 15.47514,
- 45.78666
- ],
- [
- 15.40343,
- 45.78216
- ],
- [
- 15.28683,
- 45.73391
- ],
- [
- 15.27435,
- 45.72408
- ],
- [
- 15.29763,
- 45.70782
- ],
- [
- 15.36329,
- 45.72191
- ],
- [
- 15.41517,
- 45.65443
- ],
- [
- 15.39705,
- 45.62929
- ],
- [
- 15.31501,
- 45.62356
- ],
- [
- 15.31503,
- 45.60696
- ],
- [
- 15.29266,
- 45.60163
- ],
- [
- 15.30852,
- 45.58653
- ],
- [
- 15.31145,
- 45.5423
- ],
- [
- 15.39496,
- 45.48325
- ],
- [
- 15.34824,
- 45.44665
- ],
- [
- 15.27515,
- 45.45599
- ],
- [
- 15.22848,
- 45.41683
- ],
- [
- 15.17101,
- 45.41273
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.",
- "url": "https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ"
- },
- "country_code": "SI",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png",
- "id": "RABA-KGZ-3000",
- "license_url": "https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ#License",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "RABA-KGZ: Slovenia built-up areas",
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://wms.openstreetmap.de/tms/RABA3000/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.17101,
- 45.41273
- ],
- [
- 15.06731,
- 45.4781
- ],
- [
- 14.98353,
- 45.48726
- ],
- [
- 14.93027,
- 45.51869
- ],
- [
- 14.91295,
- 45.46869
- ],
- [
- 14.81398,
- 45.45019
- ],
- [
- 14.77755,
- 45.49724
- ],
- [
- 14.71885,
- 45.52386
- ],
- [
- 14.68383,
- 45.51924
- ],
- [
- 14.68367,
- 45.57107
- ],
- [
- 14.58902,
- 45.61966
- ],
- [
- 14.59477,
- 45.65727
- ],
- [
- 14.51653,
- 45.5974
- ],
- [
- 14.49636,
- 45.52968
- ],
- [
- 14.32388,
- 45.46048
- ],
- [
- 14.28251,
- 45.47949
- ],
- [
- 14.26083,
- 45.47352
- ],
- [
- 14.2367,
- 45.49569
- ],
- [
- 14.21022,
- 45.45962
- ],
- [
- 14.1328,
- 45.46542
- ],
- [
- 14.06694,
- 45.47615
- ],
- [
- 14.01187,
- 45.50769
- ],
- [
- 13.98752,
- 45.49945
- ],
- [
- 14.00668,
- 45.4739
- ],
- [
- 13.99154,
- 45.44854
- ],
- [
- 13.91789,
- 45.44329
- ],
- [
- 13.88867,
- 45.416
- ],
- [
- 13.81063,
- 45.42531
- ],
- [
- 13.7856,
- 45.45577
- ],
- [
- 13.67553,
- 45.43241
- ],
- [
- 13.38,
- 45.5666
- ],
- [
- 13.63822,
- 45.64153
- ],
- [
- 13.72158,
- 45.60472
- ],
- [
- 13.83759,
- 45.59226
- ],
- [
- 13.89962,
- 45.63295
- ],
- [
- 13.82754,
- 45.67917
- ],
- [
- 13.82429,
- 45.70266
- ],
- [
- 13.78961,
- 45.73525
- ],
- [
- 13.66355,
- 45.79008
- ],
- [
- 13.62279,
- 45.78613
- ],
- [
- 13.58835,
- 45.80154
- ],
- [
- 13.56531,
- 45.85522
- ],
- [
- 13.62633,
- 45.93894
- ],
- [
- 13.62975,
- 45.97662
- ],
- [
- 13.59233,
- 45.97929
- ],
- [
- 13.57124,
- 45.9591
- ],
- [
- 13.52998,
- 45.95627
- ],
- [
- 13.46729,
- 46.00147
- ],
- [
- 13.49765,
- 46.03741
- ],
- [
- 13.4896,
- 46.06574
- ],
- [
- 13.58839,
- 46.11268
- ],
- [
- 13.63712,
- 46.14524
- ],
- [
- 13.65358,
- 46.17505
- ],
- [
- 13.57147,
- 46.17434
- ],
- [
- 13.54859,
- 46.19982
- ],
- [
- 13.48189,
- 46.21479
- ],
- [
- 13.42003,
- 46.19662
- ],
- [
- 13.40026,
- 46.21037
- ],
- [
- 13.40304,
- 46.23284
- ],
- [
- 13.36653,
- 46.30266
- ],
- [
- 13.43369,
- 46.33243
- ],
- [
- 13.43247,
- 46.36779
- ],
- [
- 13.56263,
- 46.40895
- ],
- [
- 13.59357,
- 46.44846
- ],
- [
- 13.68393,
- 46.44947
- ],
- [
- 13.71321,
- 46.53296
- ],
- [
- 13.79725,
- 46.5164
- ],
- [
- 13.91305,
- 46.53108
- ],
- [
- 14.00849,
- 46.49169
- ],
- [
- 14.09406,
- 46.49538
- ],
- [
- 14.12664,
- 46.4852
- ],
- [
- 14.16569,
- 46.44341
- ],
- [
- 14.28242,
- 46.45347
- ],
- [
- 14.3259,
- 46.44111
- ],
- [
- 14.43178,
- 46.4568
- ],
- [
- 14.45113,
- 46.43239
- ],
- [
- 14.52618,
- 46.43623
- ],
- [
- 14.56677,
- 46.38549
- ],
- [
- 14.58993,
- 46.44479
- ],
- [
- 14.65658,
- 46.45447
- ],
- [
- 14.71191,
- 46.50954
- ],
- [
- 14.80818,
- 46.51778
- ],
- [
- 14.81442,
- 46.55093
- ],
- [
- 14.86094,
- 46.61239
- ],
- [
- 14.9102,
- 46.61569
- ],
- [
- 14.95398,
- 46.64257
- ],
- [
- 14.98376,
- 46.61868
- ],
- [
- 15.02973,
- 46.65796
- ],
- [
- 15.10645,
- 46.66965
- ],
- [
- 15.23727,
- 46.64973
- ],
- [
- 15.41364,
- 46.66553
- ],
- [
- 15.46237,
- 46.64732
- ],
- [
- 15.47411,
- 46.6226
- ],
- [
- 15.53427,
- 46.64346
- ],
- [
- 15.53636,
- 46.6761
- ],
- [
- 15.59201,
- 46.69952
- ],
- [
- 15.62405,
- 46.69039
- ],
- [
- 15.65624,
- 46.71643
- ],
- [
- 15.767,
- 46.70899
- ],
- [
- 15.83801,
- 46.73237
- ],
- [
- 15.91476,
- 46.71958
- ],
- [
- 16.02919,
- 46.67033
- ],
- [
- 16.02955,
- 46.68778
- ],
- [
- 15.99495,
- 46.71178
- ],
- [
- 15.97505,
- 46.74967
- ],
- [
- 15.98671,
- 46.84189
- ],
- [
- 16.0553,
- 46.85049
- ],
- [
- 16.11022,
- 46.87912
- ],
- [
- 16.15425,
- 46.86525
- ],
- [
- 16.23302,
- 46.88667
- ],
- [
- 16.29431,
- 46.8824
- ],
- [
- 16.34649,
- 46.85476
- ],
- [
- 16.36058,
- 46.8278
- ],
- [
- 16.34711,
- 46.79707
- ],
- [
- 16.32245,
- 46.79068
- ],
- [
- 16.33977,
- 46.7799
- ],
- [
- 16.33186,
- 46.75896
- ],
- [
- 16.38893,
- 46.70785
- ],
- [
- 16.4383,
- 46.69655
- ],
- [
- 16.42822,
- 46.65301
- ],
- [
- 16.40159,
- 46.6439
- ],
- [
- 16.51477,
- 46.57299
- ],
- [
- 16.54136,
- 46.53627
- ],
- [
- 16.5416,
- 46.50887
- ],
- [
- 16.611,
- 46.48393
- ],
- [
- 16.61889,
- 46.46203
- ],
- [
- 16.52219,
- 46.45842
- ],
- [
- 16.47451,
- 46.50108
- ],
- [
- 16.36776,
- 46.53371
- ],
- [
- 16.2582,
- 46.489
- ],
- [
- 16.28533,
- 46.42441
- ],
- [
- 16.3168,
- 46.40141
- ],
- [
- 16.30574,
- 46.36921
- ],
- [
- 16.18689,
- 46.36804
- ],
- [
- 16.14548,
- 46.39515
- ],
- [
- 16.06959,
- 46.38154
- ],
- [
- 16.08614,
- 46.34087
- ],
- [
- 16.04058,
- 46.32708
- ],
- [
- 16.01819,
- 46.29964
- ],
- [
- 15.80777,
- 46.25091
- ],
- [
- 15.79649,
- 46.21296
- ],
- [
- 15.77128,
- 46.19937
- ],
- [
- 15.67996,
- 46.21707
- ],
- [
- 15.65737,
- 46.20838
- ],
- [
- 15.65639,
- 46.18456
- ],
- [
- 15.62037,
- 46.16163
- ],
- [
- 15.61899,
- 46.11595
- ],
- [
- 15.63483,
- 46.09529
- ],
- [
- 15.71869,
- 46.06873
- ],
- [
- 15.74241,
- 46.04578
- ],
- [
- 15.71612,
- 45.99489
- ],
- [
- 15.71645,
- 45.9178
- ],
- [
- 15.69237,
- 45.90013
- ],
- [
- 15.69375,
- 45.87111
- ],
- [
- 15.71776,
- 45.8416
- ],
- [
- 15.6441,
- 45.81058
- ],
- [
- 15.57467,
- 45.83999
- ],
- [
- 15.52333,
- 45.81155
- ],
- [
- 15.49115,
- 45.82041
- ],
- [
- 15.47514,
- 45.78666
- ],
- [
- 15.40343,
- 45.78216
- ],
- [
- 15.28683,
- 45.73391
- ],
- [
- 15.27435,
- 45.72408
- ],
- [
- 15.29763,
- 45.70782
- ],
- [
- 15.36329,
- 45.72191
- ],
- [
- 15.41517,
- 45.65443
- ],
- [
- 15.39705,
- 45.62929
- ],
- [
- 15.31501,
- 45.62356
- ],
- [
- 15.31503,
- 45.60696
- ],
- [
- 15.29266,
- 45.60163
- ],
- [
- 15.30852,
- 45.58653
- ],
- [
- 15.31145,
- 45.5423
- ],
- [
- 15.39496,
- 45.48325
- ],
- [
- 15.34824,
- 45.44665
- ],
- [
- 15.27515,
- 45.45599
- ],
- [
- 15.22848,
- 45.41683
- ],
- [
- 15.17101,
- 45.41273
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.",
- "url": "https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ"
- },
- "country_code": "SI",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png",
- "id": "RABA-KGZ",
- "license_url": "https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ#License",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "RABA-KGZ: Slovenia farmland use",
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://wms.openstreetmap.de/tms/RABA/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 15.17101,
- 45.41273
- ],
- [
- 15.06731,
- 45.4781
- ],
- [
- 14.98353,
- 45.48726
- ],
- [
- 14.93027,
- 45.51869
- ],
- [
- 14.91295,
- 45.46869
- ],
- [
- 14.81398,
- 45.45019
- ],
- [
- 14.77755,
- 45.49724
- ],
- [
- 14.71885,
- 45.52386
- ],
- [
- 14.68383,
- 45.51924
- ],
- [
- 14.66258,
- 45.57393
- ],
- [
- 14.58902,
- 45.61966
- ],
- [
- 14.59477,
- 45.65727
- ],
- [
- 14.51653,
- 45.5974
- ],
- [
- 14.50227,
- 45.53338
- ],
- [
- 14.36774,
- 45.4702
- ],
- [
- 14.33394,
- 45.46206
- ],
- [
- 14.28251,
- 45.47949
- ],
- [
- 14.26083,
- 45.47352
- ],
- [
- 14.2367,
- 45.49569
- ],
- [
- 14.21022,
- 45.45962
- ],
- [
- 14.1328,
- 45.46542
- ],
- [
- 14.06694,
- 45.47615
- ],
- [
- 14.01187,
- 45.50769
- ],
- [
- 13.98752,
- 45.49945
- ],
- [
- 14.00668,
- 45.4739
- ],
- [
- 13.98768,
- 45.44408
- ],
- [
- 13.91892,
- 45.43951
- ],
- [
- 13.88867,
- 45.416
- ],
- [
- 13.81063,
- 45.42531
- ],
- [
- 13.76403,
- 45.45271
- ],
- [
- 13.67553,
- 45.43241
- ],
- [
- 13.57898,
- 45.46183
- ],
- [
- 13.54054,
- 45.53059
- ],
- [
- 13.61345,
- 45.54452
- ],
- [
- 13.71618,
- 45.55473
- ],
- [
- 13.72281,
- 45.56958
- ],
- [
- 13.69431,
- 45.58953
- ],
- [
- 13.69763,
- 45.59973
- ],
- [
- 13.72158,
- 45.60472
- ],
- [
- 13.83759,
- 45.59226
- ],
- [
- 13.89962,
- 45.63295
- ],
- [
- 13.82754,
- 45.67917
- ],
- [
- 13.82429,
- 45.70266
- ],
- [
- 13.78961,
- 45.73525
- ],
- [
- 13.73292,
- 45.75707
- ],
- [
- 13.66355,
- 45.79008
- ],
- [
- 13.62279,
- 45.78613
- ],
- [
- 13.58835,
- 45.80154
- ],
- [
- 13.56428,
- 45.86095
- ],
- [
- 13.62633,
- 45.93894
- ],
- [
- 13.62975,
- 45.97662
- ],
- [
- 13.59233,
- 45.97929
- ],
- [
- 13.57124,
- 45.9591
- ],
- [
- 13.52998,
- 45.95627
- ],
- [
- 13.46729,
- 46.00147
- ],
- [
- 13.49765,
- 46.03741
- ],
- [
- 13.4896,
- 46.06574
- ],
- [
- 13.58839,
- 46.11268
- ],
- [
- 13.63712,
- 46.14524
- ],
- [
- 13.65358,
- 46.17505
- ],
- [
- 13.57147,
- 46.17434
- ],
- [
- 13.54859,
- 46.19982
- ],
- [
- 13.48189,
- 46.21479
- ],
- [
- 13.42003,
- 46.19662
- ],
- [
- 13.40026,
- 46.21037
- ],
- [
- 13.40304,
- 46.23284
- ],
- [
- 13.36653,
- 46.30266
- ],
- [
- 13.43369,
- 46.33243
- ],
- [
- 13.43247,
- 46.36779
- ],
- [
- 13.56263,
- 46.40895
- ],
- [
- 13.59357,
- 46.44846
- ],
- [
- 13.68393,
- 46.44947
- ],
- [
- 13.71321,
- 46.53296
- ],
- [
- 13.79725,
- 46.5164
- ],
- [
- 13.91305,
- 46.53108
- ],
- [
- 14.00849,
- 46.49169
- ],
- [
- 14.09406,
- 46.49538
- ],
- [
- 14.12664,
- 46.4852
- ],
- [
- 14.16569,
- 46.44341
- ],
- [
- 14.28242,
- 46.45347
- ],
- [
- 14.3259,
- 46.44111
- ],
- [
- 14.43178,
- 46.4568
- ],
- [
- 14.45113,
- 46.43239
- ],
- [
- 14.52618,
- 46.43623
- ],
- [
- 14.56677,
- 46.38549
- ],
- [
- 14.58993,
- 46.44479
- ],
- [
- 14.65658,
- 46.45447
- ],
- [
- 14.71191,
- 46.50954
- ],
- [
- 14.80818,
- 46.51778
- ],
- [
- 14.81442,
- 46.55093
- ],
- [
- 14.86094,
- 46.61239
- ],
- [
- 14.9102,
- 46.61569
- ],
- [
- 14.95398,
- 46.64257
- ],
- [
- 14.98376,
- 46.61868
- ],
- [
- 15.02973,
- 46.65796
- ],
- [
- 15.10645,
- 46.66965
- ],
- [
- 15.23727,
- 46.64973
- ],
- [
- 15.41364,
- 46.66553
- ],
- [
- 15.46237,
- 46.64732
- ],
- [
- 15.47411,
- 46.6226
- ],
- [
- 15.53427,
- 46.64346
- ],
- [
- 15.53636,
- 46.6761
- ],
- [
- 15.59201,
- 46.69952
- ],
- [
- 15.62405,
- 46.69039
- ],
- [
- 15.65624,
- 46.71643
- ],
- [
- 15.767,
- 46.70899
- ],
- [
- 15.83801,
- 46.73237
- ],
- [
- 15.91476,
- 46.71958
- ],
- [
- 16.02919,
- 46.67033
- ],
- [
- 16.02955,
- 46.68778
- ],
- [
- 15.99495,
- 46.71178
- ],
- [
- 15.97505,
- 46.74967
- ],
- [
- 15.98671,
- 46.84189
- ],
- [
- 16.0553,
- 46.85049
- ],
- [
- 16.11022,
- 46.87912
- ],
- [
- 16.15425,
- 46.86525
- ],
- [
- 16.23302,
- 46.88667
- ],
- [
- 16.29431,
- 46.8824
- ],
- [
- 16.34649,
- 46.85476
- ],
- [
- 16.36058,
- 46.8278
- ],
- [
- 16.34711,
- 46.79707
- ],
- [
- 16.32245,
- 46.79068
- ],
- [
- 16.33977,
- 46.7799
- ],
- [
- 16.33186,
- 46.75896
- ],
- [
- 16.38893,
- 46.70785
- ],
- [
- 16.4383,
- 46.69655
- ],
- [
- 16.42822,
- 46.65301
- ],
- [
- 16.40159,
- 46.6439
- ],
- [
- 16.51477,
- 46.57299
- ],
- [
- 16.54136,
- 46.53627
- ],
- [
- 16.5416,
- 46.50887
- ],
- [
- 16.57859,
- 46.48947
- ],
- [
- 16.64289,
- 46.48765
- ],
- [
- 16.64189,
- 46.45889
- ],
- [
- 16.49276,
- 46.46071
- ],
- [
- 16.49143,
- 46.48673
- ],
- [
- 16.40593,
- 46.48856
- ],
- [
- 16.40626,
- 46.51525
- ],
- [
- 16.32407,
- 46.51616
- ],
- [
- 16.32274,
- 46.49084
- ],
- [
- 16.2582,
- 46.489
- ],
- [
- 16.28533,
- 46.42441
- ],
- [
- 16.29755,
- 46.41161
- ],
- [
- 16.3476,
- 46.41024
- ],
- [
- 16.34627,
- 46.35468
- ],
- [
- 16.16698,
- 46.35514
- ],
- [
- 16.09937,
- 46.35605
- ],
- [
- 16.07551,
- 46.33684
- ],
- [
- 16.04058,
- 46.32708
- ],
- [
- 16.01819,
- 46.29964
- ],
- [
- 15.89754,
- 46.27342
- ],
- [
- 15.87799,
- 46.25165
- ],
- [
- 15.80777,
- 46.25091
- ],
- [
- 15.79649,
- 46.21296
- ],
- [
- 15.77128,
- 46.19937
- ],
- [
- 15.67996,
- 46.21707
- ],
- [
- 15.65737,
- 46.20838
- ],
- [
- 15.65639,
- 46.18456
- ],
- [
- 15.62037,
- 46.16163
- ],
- [
- 15.61899,
- 46.11595
- ],
- [
- 15.63483,
- 46.09529
- ],
- [
- 15.71869,
- 46.06873
- ],
- [
- 15.74241,
- 46.04578
- ],
- [
- 15.73184,
- 46.03213
- ],
- [
- 15.72802,
- 45.98275
- ],
- [
- 15.71791,
- 45.97827
- ],
- [
- 15.71645,
- 45.9178
- ],
- [
- 15.69803,
- 45.91005
- ],
- [
- 15.69737,
- 45.8766
- ],
- [
- 15.7272,
- 45.87591
- ],
- [
- 15.72554,
- 45.82097
- ],
- [
- 15.64036,
- 45.81635
- ],
- [
- 15.58071,
- 45.84199
- ],
- [
- 15.52333,
- 45.81155
- ],
- [
- 15.49115,
- 45.82041
- ],
- [
- 15.47514,
- 45.78666
- ],
- [
- 15.40343,
- 45.78216
- ],
- [
- 15.30332,
- 45.74794
- ],
- [
- 15.29139,
- 45.73452
- ],
- [
- 15.29371,
- 45.71833
- ],
- [
- 15.36032,
- 45.71856
- ],
- [
- 15.41517,
- 45.65443
- ],
- [
- 15.39705,
- 45.62929
- ],
- [
- 15.31501,
- 45.62356
- ],
- [
- 15.31503,
- 45.60696
- ],
- [
- 15.31145,
- 45.5423
- ],
- [
- 15.39644,
- 45.48763
- ],
- [
- 15.34824,
- 45.44665
- ],
- [
- 15.27515,
- 45.45599
- ],
- [
- 15.22848,
- 45.41683
- ],
- [
- 15.17101,
- 45.41273
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "CC-BY Geodetska uprava Republike Slovenije, DOF025, 2017-2019; Level2.si 2020",
- "url": "https://level2.si/sl/pogoji-uporabe-spletnih-servisov/"
- },
- "best": true,
- "country_code": "SI",
- "description": "Slovenia orthophoto 25cm/pixel (GURS DOF050), hosted by Level2.si",
- "end_date": "2019",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/level2.png",
- "id": "GURS-DOF025",
- "license_url": "https://wiki.openstreetmap.org/wiki/GURS",
- "max_zoom": 20,
- "min_zoom": 8,
- "name": "GURS: Slovenia orthophoto 25cm (DOF025)",
- "overlay": false,
- "privacy_policy_url": "https://level2.si/sl/pogoji-uporabe-spletnih-servisov/",
- "start_date": "2017",
- "type": "tms",
- "url": "https://gis.level2.si/geoserver/gwc/service/tms/1.0.0/level2%3ADOF025_latest@EPSG%3A3857@jpeg/{zoom}/{x}/{-y}.jpeg",
- "valid-georeference": true
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.69,
- 47.64
- ],
- [
- 22.67,
- 47.64
- ],
- [
- 22.67,
- 49.65
- ],
- [
- 16.69,
- 49.65
- ],
- [
- 16.69,
- 47.64
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Map © Freemap Slovakia, data © OpenStreetMap contributors",
- "url": "https://www.freemap.sk/?layers=A"
- },
- "country_code": "SK",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png",
- "id": "Freemap.sk-Car",
- "max_zoom": 16,
- "min_zoom": 8,
- "name": "Freemap.sk Car",
- "type": "tms",
- "url": "https://tile.freemap.sk/A/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.69,
- 47.64
- ],
- [
- 22.67,
- 47.64
- ],
- [
- 22.67,
- 49.65
- ],
- [
- 16.69,
- 49.65
- ],
- [
- 16.69,
- 47.64
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM",
- "url": "https://www.freemap.sk/?layers=C"
- },
- "country_code": "SK",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png",
- "id": "Freemap.sk-Cyclo",
- "max_zoom": 16,
- "min_zoom": 8,
- "name": "Freemap.sk Bicycle",
- "type": "tms",
- "url": "https://tile.freemap.sk/C/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.69,
- 47.64
- ],
- [
- 22.67,
- 47.64
- ],
- [
- 22.67,
- 49.65
- ],
- [
- 16.69,
- 49.65
- ],
- [
- 16.69,
- 47.64
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM",
- "url": "https://www.freemap.sk/?layers=T"
- },
- "country_code": "SK",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png",
- "id": "Freemap.sk-Hiking",
- "max_zoom": 16,
- "min_zoom": 8,
- "name": "Freemap.sk Hiking",
- "type": "tms",
- "url": "https://tile.freemap.sk/T/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.69,
- 47.64
- ],
- [
- 22.67,
- 47.64
- ],
- [
- 22.67,
- 49.65
- ],
- [
- 16.69,
- 49.65
- ],
- [
- 16.69,
- 47.64
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM",
- "url": "https://www.freemap.sk/?layers=K"
- },
- "country_code": "SK",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png",
- "id": "Freemap.sk-Ski",
- "max_zoom": 16,
- "min_zoom": 8,
- "name": "Freemap.sk Ski",
- "type": "tms",
- "url": "https://tile.freemap.sk/K/{zoom}/{x}/{y}.jpeg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 16.81969,
- 47.49272
- ],
- [
- 16.81969,
- 49.50303
- ],
- [
- 22.83883,
- 49.50303
- ],
- [
- 22.83883,
- 47.49272
- ],
- [
- 16.81969,
- 47.49272
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "SK",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png",
- "id": "Slovakia-Historic-Maps",
- "max_zoom": 12,
- "name": "Slovakia Historic Maps",
- "type": "tms",
- "url": "https://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 30.30752,
- 50.57184
- ],
- [
- 30.33155,
- 50.57402
- ],
- [
- 30.37687,
- 50.57925
- ],
- [
- 30.42288,
- 50.58143
- ],
- [
- 30.4318,
- 50.58579
- ],
- [
- 30.44416,
- 50.58797
- ],
- [
- 30.45515,
- 50.58754
- ],
- [
- 30.46545,
- 50.58449
- ],
- [
- 30.46819,
- 50.57751
- ],
- [
- 30.49085,
- 50.57489
- ],
- [
- 30.51351,
- 50.57489
- ],
- [
- 30.52519,
- 50.57402
- ],
- [
- 30.55608,
- 50.55221
- ],
- [
- 30.58424,
- 50.53869
- ],
- [
- 30.5966,
- 50.53781
- ],
- [
- 30.60896,
- 50.5365
- ],
- [
- 30.64329,
- 50.5352
- ],
- [
- 30.65496,
- 50.53563
- ],
- [
- 30.65496,
- 50.54305
- ],
- [
- 30.66045,
- 50.54916
- ],
- [
- 30.66801,
- 50.55439
- ],
- [
- 30.67762,
- 50.55876
- ],
- [
- 30.68792,
- 50.56137
- ],
- [
- 30.70783,
- 50.55614
- ],
- [
- 30.71127,
- 50.56356
- ],
- [
- 30.71127,
- 50.57838
- ],
- [
- 30.72157,
- 50.58231
- ],
- [
- 30.71882,
- 50.58972
- ],
- [
- 30.72981,
- 50.59103
- ],
- [
- 30.74011,
- 50.58841
- ],
- [
- 30.76208,
- 50.58536
- ],
- [
- 30.77306,
- 50.58274
- ],
- [
- 30.78336,
- 50.57795
- ],
- [
- 30.80259,
- 50.57141
- ],
- [
- 30.81014,
- 50.56617
- ],
- [
- 30.82182,
- 50.55439
- ],
- [
- 30.82525,
- 50.53956
- ],
- [
- 30.81701,
- 50.53432
- ],
- [
- 30.79504,
- 50.52909
- ],
- [
- 30.78474,
- 50.52559
- ],
- [
- 30.76276,
- 50.51992
- ],
- [
- 30.76208,
- 50.5125
- ],
- [
- 30.75315,
- 50.50769
- ],
- [
- 30.74354,
- 50.50376
- ],
- [
- 30.73805,
- 50.49721
- ],
- [
- 30.74629,
- 50.49197
- ],
- [
- 30.75521,
- 50.48847
- ],
- [
- 30.74835,
- 50.48236
- ],
- [
- 30.75178,
- 50.47537
- ],
- [
- 30.75315,
- 50.46794
- ],
- [
- 30.74835,
- 50.46138
- ],
- [
- 30.75178,
- 50.45439
- ],
- [
- 30.78886,
- 50.43646
- ],
- [
- 30.7971,
- 50.43165
- ],
- [
- 30.80328,
- 50.41765
- ],
- [
- 30.8225,
- 50.40846
- ],
- [
- 30.82044,
- 50.40102
- ],
- [
- 30.82319,
- 50.39358
- ],
- [
- 30.81289,
- 50.39095
- ],
- [
- 30.80122,
- 50.39139
- ],
- [
- 30.78954,
- 50.39314
- ],
- [
- 30.77787,
- 50.3927
- ],
- [
- 30.77856,
- 50.3857
- ],
- [
- 30.77169,
- 50.38001
- ],
- [
- 30.76208,
- 50.37519
- ],
- [
- 30.75109,
- 50.37256
- ],
- [
- 30.73873,
- 50.37256
- ],
- [
- 30.72775,
- 50.37475
- ],
- [
- 30.71813,
- 50.37957
- ],
- [
- 30.71539,
- 50.36512
- ],
- [
- 30.71127,
- 50.35855
- ],
- [
- 30.70577,
- 50.35241
- ],
- [
- 30.69753,
- 50.34716
- ],
- [
- 30.68586,
- 50.34453
- ],
- [
- 30.65084,
- 50.34058
- ],
- [
- 30.63848,
- 50.34014
- ],
- [
- 30.62681,
- 50.33795
- ],
- [
- 30.62887,
- 50.3305
- ],
- [
- 30.64947,
- 50.29279
- ],
- [
- 30.66663,
- 50.28314
- ],
- [
- 30.67144,
- 50.27656
- ],
- [
- 30.6632,
- 50.27085
- ],
- [
- 30.65153,
- 50.26997
- ],
- [
- 30.64535,
- 50.27612
- ],
- [
- 30.63368,
- 50.27787
- ],
- [
- 30.62132,
- 50.27656
- ],
- [
- 30.61857,
- 50.2691
- ],
- [
- 30.62956,
- 50.25637
- ],
- [
- 30.6378,
- 50.25154
- ],
- [
- 30.64535,
- 50.23792
- ],
- [
- 30.64398,
- 50.2309
- ],
- [
- 30.63917,
- 50.22387
- ],
- [
- 30.62956,
- 50.21992
- ],
- [
- 30.6069,
- 50.2164
- ],
- [
- 30.59591,
- 50.2186
- ],
- [
- 30.59042,
- 50.23353
- ],
- [
- 30.5863,
- 50.241
- ],
- [
- 30.57531,
- 50.25505
- ],
- [
- 30.56501,
- 50.25944
- ],
- [
- 30.5657,
- 50.2669
- ],
- [
- 30.56432,
- 50.29718
- ],
- [
- 30.56638,
- 50.30463
- ],
- [
- 30.5657,
- 50.31209
- ],
- [
- 30.55677,
- 50.31691
- ],
- [
- 30.54441,
- 50.31735
- ],
- [
- 30.52587,
- 50.32699
- ],
- [
- 30.51489,
- 50.3305
- ],
- [
- 30.50253,
- 50.33182
- ],
- [
- 30.48055,
- 50.33664
- ],
- [
- 30.47163,
- 50.34146
- ],
- [
- 30.46957,
- 50.34935
- ],
- [
- 30.47025,
- 50.35679
- ],
- [
- 30.46201,
- 50.36205
- ],
- [
- 30.4524,
- 50.35679
- ],
- [
- 30.44004,
- 50.35548
- ],
- [
- 30.43661,
- 50.36512
- ],
- [
- 30.43111,
- 50.37212
- ],
- [
- 30.43661,
- 50.37826
- ],
- [
- 30.43455,
- 50.3857
- ],
- [
- 30.40914,
- 50.39883
- ],
- [
- 30.39678,
- 50.40014
- ],
- [
- 30.3906,
- 50.40671
- ],
- [
- 30.37069,
- 50.41546
- ],
- [
- 30.36314,
- 50.42159
- ],
- [
- 30.3597,
- 50.42902
- ],
- [
- 30.3597,
- 50.43646
- ],
- [
- 30.35696,
- 50.44389
- ],
- [
- 30.3446,
- 50.44477
- ],
- [
- 30.32056,
- 50.44258
- ],
- [
- 30.29585,
- 50.44477
- ],
- [
- 30.28349,
- 50.44477
- ],
- [
- 30.27799,
- 50.43864
- ],
- [
- 30.27525,
- 50.43165
- ],
- [
- 30.26563,
- 50.42771
- ],
- [
- 30.25396,
- 50.42902
- ],
- [
- 30.24572,
- 50.42377
- ],
- [
- 30.23542,
- 50.42771
- ],
- [
- 30.2416,
- 50.43427
- ],
- [
- 30.2416,
- 50.44214
- ],
- [
- 30.23679,
- 50.4487
- ],
- [
- 30.23885,
- 50.45613
- ],
- [
- 30.24297,
- 50.46313
- ],
- [
- 30.24915,
- 50.46968
- ],
- [
- 30.25671,
- 50.47493
- ],
- [
- 30.26083,
- 50.48192
- ],
- [
- 30.26563,
- 50.48847
- ],
- [
- 30.26907,
- 50.49983
- ],
- [
- 30.26151,
- 50.50595
- ],
- [
- 30.26357,
- 50.51381
- ],
- [
- 30.26975,
- 50.51992
- ],
- [
- 30.28898,
- 50.52821
- ],
- [
- 30.29722,
- 50.53345
- ],
- [
- 30.30271,
- 50.54
- ],
- [
- 30.30203,
- 50.54741
- ],
- [
- 30.30477,
- 50.55483
- ],
- [
- 30.32743,
- 50.55221
- ],
- [
- 30.33086,
- 50.55919
- ],
- [
- 30.32262,
- 50.56486
- ],
- [
- 30.31233,
- 50.56835
- ],
- [
- 30.30752,
- 50.57184
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "UA",
- "description": "Works only from within Ukraine or with an Ukrainian proxy server.",
- "end_date": "2014",
- "id": "UkraineKyiv2014DZK",
- "max_zoom": 16,
- "name": "Ukraine - Kyiv 2014 (DZK)",
- "start_date": "2014",
- "type": "tms",
- "url": "https://map.land.gov.ua/map/ortho_kiev/{zoom}/{x}/{-y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 31.88301,
- 47.01397
- ],
- [
- 31.87752,
- 46.97838
- ],
- [
- 31.91391,
- 46.98447
- ],
- [
- 31.91666,
- 46.97932
- ],
- [
- 31.89468,
- 46.95823
- ],
- [
- 31.8782,
- 46.95026
- ],
- [
- 31.88988,
- 46.93339
- ],
- [
- 31.90018,
- 46.92307
- ],
- [
- 31.93176,
- 46.91697
- ],
- [
- 31.9558,
- 46.91228
- ],
- [
- 31.98257,
- 46.90665
- ],
- [
- 31.99699,
- 46.90008
- ],
- [
- 31.98532,
- 46.87568
- ],
- [
- 31.9558,
- 46.85127
- ],
- [
- 31.93108,
- 46.83389
- ],
- [
- 31.91391,
- 46.81792
- ],
- [
- 31.9455,
- 46.81275
- ],
- [
- 32.00661,
- 46.81322
- ],
- [
- 32.04025,
- 46.83812
- ],
- [
- 32.08214,
- 46.87662
- ],
- [
- 32.11235,
- 46.90478
- ],
- [
- 32.12814,
- 46.92917
- ],
- [
- 32.13844,
- 46.95167
- ],
- [
- 32.13776,
- 46.97744
- ],
- [
- 32.11647,
- 46.99384
- ],
- [
- 32.04918,
- 47.01163
- ],
- [
- 32.02446,
- 47.02614
- ],
- [
- 32.03476,
- 47.02848
- ],
- [
- 32.03957,
- 47.03831
- ],
- [
- 32.03064,
- 47.05328
- ],
- [
- 31.96404,
- 47.04533
- ],
- [
- 31.88301,
- 47.01397
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Map data: © Геоінформаційна система містобудівного кадастру Миколаївської міської ради"
- },
- "best": true,
- "category": "photo",
- "country_code": "UA",
- "end_date": "2018",
- "icon": "https://mkrada.gov.ua/favicon.ico",
- "id": "UkraineMykolaiv2018",
- "license_url": "https://zakon.rada.gov.ua/laws/show/2939-17",
- "max_zoom": 21,
- "min_zoom": 11,
- "name": "Ukraine - Mykolaiv 2018",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://mbk.mkrada.gov.ua/ugoda-koristuvacha",
- "start_date": "2018",
- "type": "tms",
- "url": "http://mbk.mkrada.gov.ua/map/rtile/carto_2013928517078615452/ua/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 23.6193,
- 51.65491
- ],
- [
- 24.09803,
- 51.64047
- ],
- [
- 24.39723,
- 51.89353
- ],
- [
- 25.19178,
- 51.95913
- ],
- [
- 26.12263,
- 51.92224
- ],
- [
- 26.49829,
- 51.80933
- ],
- [
- 27.09005,
- 51.77026
- ],
- [
- 27.62861,
- 51.62603
- ],
- [
- 28.02422,
- 51.59093
- ],
- [
- 28.28021,
- 51.68172
- ],
- [
- 28.37662,
- 51.5806
- ],
- [
- 28.82542,
- 51.5682
- ],
- [
- 29.19111,
- 51.64253
- ],
- [
- 29.41718,
- 51.4399
- ],
- [
- 29.67316,
- 51.51238
- ],
- [
- 29.82276,
- 51.47512
- ],
- [
- 30.21837,
- 51.50824
- ],
- [
- 30.54417,
- 51.30709
- ],
- [
- 30.63726,
- 51.38599
- ],
- [
- 30.51425,
- 51.63634
- ],
- [
- 30.983,
- 52.09005
- ],
- [
- 31.2822,
- 52.07984
- ],
- [
- 31.48832,
- 52.13497
- ],
- [
- 32.11,
- 52.05531
- ],
- [
- 32.31279,
- 52.11864
- ],
- [
- 32.43912,
- 52.32434
- ],
- [
- 32.93114,
- 52.28368
- ],
- [
- 33.29683,
- 52.39337
- ],
- [
- 33.75561,
- 52.35277
- ],
- [
- 34.35734,
- 51.78055
- ],
- [
- 34.14457,
- 51.76409
- ],
- [
- 34.05813,
- 51.67965
- ],
- [
- 34.22103,
- 51.47098
- ],
- [
- 34.25095,
- 51.30085
- ],
- [
- 34.7197,
- 51.19056
- ],
- [
- 35.11199,
- 51.21139
- ],
- [
- 35.1818,
- 51.08626
- ],
- [
- 35.38792,
- 51.03402
- ],
- [
- 35.40787,
- 50.62878
- ],
- [
- 35.62063,
- 50.38563
- ],
- [
- 36.06944,
- 50.4513
- ],
- [
- 36.21571,
- 50.41106
- ],
- [
- 36.31212,
- 50.28802
- ],
- [
- 36.4717,
- 50.32624
- ],
- [
- 36.59138,
- 50.2519
- ],
- [
- 37.46571,
- 50.45977
- ],
- [
- 37.735,
- 50.11353
- ],
- [
- 38.05747,
- 49.9384
- ],
- [
- 38.19377,
- 49.95765
- ],
- [
- 38.19045,
- 50.07514
- ],
- [
- 38.35002,
- 50.08154
- ],
- [
- 38.41651,
- 49.98972
- ],
- [
- 38.73899,
- 49.97476
- ],
- [
- 39.00827,
- 49.83344
- ],
- [
- 39.14457,
- 49.89987
- ],
- [
- 39.27755,
- 49.78195
- ],
- [
- 39.54018,
- 49.74544
- ],
- [
- 39.79949,
- 49.58406
- ],
- [
- 40.18845,
- 49.6013
- ],
- [
- 40.0588,
- 49.50424
- ],
- [
- 40.20508,
- 49.24666
- ],
- [
- 39.93247,
- 49.06185
- ],
- [
- 39.71638,
- 49.01608
- ],
- [
- 40.08872,
- 48.85448
- ],
- [
- 39.79617,
- 48.78443
- ],
- [
- 39.69311,
- 48.65283
- ],
- [
- 39.86266,
- 48.5693
- ],
- [
- 39.99231,
- 48.31348
- ],
- [
- 39.83274,
- 47.92287
- ],
- [
- 39.74297,
- 47.83144
- ],
- [
- 39.57675,
- 47.81135
- ],
- [
- 38.86532,
- 47.85153
- ],
- [
- 38.77555,
- 47.68618
- ],
- [
- 38.38327,
- 47.60106
- ],
- [
- 38.30348,
- 47.52704
- ],
- [
- 38.30016,
- 47.23891
- ],
- [
- 38.13393,
- 47.05577
- ],
- [
- 37.5455,
- 47.05124
- ],
- [
- 37.31279,
- 46.87654
- ],
- [
- 37.20973,
- 46.92651
- ],
- [
- 36.96039,
- 46.83107
- ],
- [
- 36.7443,
- 46.61685
- ],
- [
- 36.72436,
- 46.7719
- ],
- [
- 36.4451,
- 46.72407
- ],
- [
- 36.10601,
- 46.4728
- ],
- [
- 36.20574,
- 46.66022
- ],
- [
- 35.92316,
- 46.64424
- ],
- [
- 35.43114,
- 46.39948
- ],
- [
- 35.10202,
- 45.97138
- ],
- [
- 35.0455,
- 45.75145
- ],
- [
- 35.47436,
- 45.33
- ],
- [
- 35.86,
- 45.53297
- ],
- [
- 35.9963,
- 45.43274
- ],
- [
- 36.11598,
- 45.51899
- ],
- [
- 36.66452,
- 45.4514
- ],
- [
- 36.65454,
- 45.34168
- ],
- [
- 36.50494,
- 45.31363
- ],
- [
- 36.47502,
- 45.24111
- ],
- [
- 36.48832,
- 45.04884
- ],
- [
- 35.81013,
- 44.98539
- ],
- [
- 35.5076,
- 45.11222
- ],
- [
- 35.42782,
- 44.93364
- ],
- [
- 35.12196,
- 44.76394
- ],
- [
- 34.67649,
- 44.75686
- ],
- [
- 33.985,
- 44.37078
- ],
- [
- 33.68912,
- 44.38504
- ],
- [
- 33.38327,
- 44.50608
- ],
- [
- 33.35002,
- 44.589
- ],
- [
- 33.55282,
- 44.93128
- ],
- [
- 33.42981,
- 45.1263
- ],
- [
- 33.19377,
- 45.14271
- ],
- [
- 32.83141,
- 45.33935
- ],
- [
- 32.60534,
- 45.30896
- ],
- [
- 32.44577,
- 45.3557
- ],
- [
- 32.50893,
- 45.47005
- ],
- [
- 32.87795,
- 45.68181
- ],
- [
- 33.57941,
- 45.90665
- ],
- [
- 33.58938,
- 46.02681
- ],
- [
- 33.25694,
- 46.07065
- ],
- [
- 33.02422,
- 45.97138
- ],
- [
- 31.61133,
- 46.19506
- ],
- [
- 31.27555,
- 46.61457
- ],
- [
- 30.87662,
- 46.56887
- ],
- [
- 30.43446,
- 45.98756
- ],
- [
- 29.69643,
- 45.55159
- ],
- [
- 29.79284,
- 45.46306
- ],
- [
- 29.73965,
- 45.15913
- ],
- [
- 29.47369,
- 45.41407
- ],
- [
- 29.18114,
- 45.38373
- ],
- [
- 28.74896,
- 45.22004
- ],
- [
- 28.56611,
- 45.23409
- ],
- [
- 28.29018,
- 45.33
- ],
- [
- 28.23367,
- 45.49103
- ],
- [
- 28.31678,
- 45.56789
- ],
- [
- 28.483,
- 45.54228
- ],
- [
- 28.47303,
- 45.73753
- ],
- [
- 28.95175,
- 46.03143
- ],
- [
- 29.02489,
- 46.18125
- ],
- [
- 28.9318,
- 46.49569
- ],
- [
- 29.18779,
- 46.57116
- ],
- [
- 29.59337,
- 46.45448
- ],
- [
- 29.81944,
- 46.46593
- ],
- [
- 29.95574,
- 46.68759
- ],
- [
- 29.8959,
- 46.8197
- ],
- [
- 29.56013,
- 46.96963
- ],
- [
- 29.54683,
- 47.29982
- ],
- [
- 29.14789,
- 47.50234
- ],
- [
- 29.23101,
- 47.77562
- ],
- [
- 29.17117,
- 47.934
- ],
- [
- 28.86864,
- 47.99411
- ],
- [
- 28.63593,
- 48.16513
- ],
- [
- 28.44311,
- 48.06525
- ],
- [
- 28.36332,
- 48.17178
- ],
- [
- 28.25694,
- 48.15404
- ],
- [
- 27.735,
- 48.43494
- ],
- [
- 27.55547,
- 48.45258
- ],
- [
- 26.92383,
- 48.34884
- ],
- [
- 26.36532,
- 48.17178
- ],
- [
- 26.1193,
- 47.97408
- ],
- [
- 25.3846,
- 47.91618
- ],
- [
- 24.91585,
- 47.70408
- ],
- [
- 24.52024,
- 47.94291
- ],
- [
- 24.18446,
- 47.90058
- ],
- [
- 23.58274,
- 48.00523
- ],
- [
- 23.43646,
- 47.96963
- ],
- [
- 23.15388,
- 48.10522
- ],
- [
- 23.07077,
- 47.98743
- ],
- [
- 22.858,
- 47.9585
- ],
- [
- 22.76824,
- 48.09856
- ],
- [
- 22.58539,
- 48.103
- ],
- [
- 22.51558,
- 48.2161
- ],
- [
- 22.11332,
- 48.4217
- ],
- [
- 22.49896,
- 49.06621
- ],
- [
- 22.58872,
- 49.11193
- ],
- [
- 22.87795,
- 49.04006
- ],
- [
- 22.7217,
- 49.18151
- ],
- [
- 22.71837,
- 49.64652
- ],
- [
- 23.24364,
- 50.105
- ],
- [
- 24.04484,
- 50.49785
- ],
- [
- 24.05813,
- 50.68779
- ],
- [
- 23.9451,
- 50.81399
- ],
- [
- 24.10135,
- 50.85388
- ],
- [
- 23.62928,
- 51.29462
- ],
- [
- 23.6193,
- 51.65491
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "UA",
- "description": "Works only from within Ukraine or with an Ukrainian proxy server.",
- "end_date": "2012",
- "id": "Ukraine-orto10000-2012",
- "max_zoom": 16,
- "name": "Ukraine - Orthophotomaps 2012",
- "start_date": "2012",
- "type": "tms",
- "url": "http://212.26.144.110/tile2/orto_10000/{zoom}/{x}/{-y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 28.46755,
- 49.28259
- ],
- [
- 28.34945,
- 49.2278
- ],
- [
- 28.38189,
- 49.19354
- ],
- [
- 28.51587,
- 49.18198
- ],
- [
- 28.57965,
- 49.22511
- ],
- [
- 28.57853,
- 49.25867
- ],
- [
- 28.54136,
- 49.2818
- ],
- [
- 28.46755,
- 49.28259
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Вінницька міська рада",
- "url": "https://www.vmr.gov.ua/"
- },
- "best": true,
- "category": "photo",
- "country_code": "UA",
- "end_date": "2018-10",
- "icon": "https://www.vmr.gov.ua/_catalogs/masterpage/images/favicon.ico",
- "id": "UkraineVinnytsia2018",
- "license_url": "https://zakon.rada.gov.ua/laws/show/2939-17",
- "max_zoom": 20,
- "min_zoom": 14,
- "name": "Ukraine - Vinnytsia 2018",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://zakon.rada.gov.ua/laws/show/3792-12",
- "start_date": "2018-10",
- "type": "tms",
- "url": "https://gisapi.vmr.gov.ua/OpenData/ofp/2018-10/GoogleMapsCompatible/{zoom}/{y}/{x}.png?ver=22102018"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 3.24653,
- -54.47047
- ],
- [
- 3.24653,
- -54.37539
- ],
- [
- 3.46385,
- -54.37539
- ],
- [
- 3.46385,
- -54.47047
- ],
- [
- 3.24653,
- -54.47047
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "best": true,
- "country_code": "BV",
- "description": "For more accurate coastline and glacier mapping (true color)",
- "end_date": "2013-10-18",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81800982013291LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Bouvet Island",
- "start_date": "2013-10-18",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81800982013291LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:2019",
- "EPSG:2294",
- "EPSG:2295",
- "EPSG:2952",
- "EPSG:3395",
- "EPSG:3400",
- "EPSG:3401",
- "EPSG:3571",
- "EPSG:3572",
- "EPSG:3573",
- "EPSG:3574",
- "EPSG:3575",
- "EPSG:3576",
- "EPSG:3578",
- "EPSG:3579",
- "EPSG:3799",
- "EPSG:3978",
- "EPSG:3979",
- "EPSG:26907",
- "EPSG:26908",
- "EPSG:26909",
- "EPSG:26910",
- "EPSG:26911",
- "EPSG:26912",
- "EPSG:26913",
- "EPSG:26914",
- "EPSG:26915",
- "EPSG:26916",
- "EPSG:26917",
- "EPSG:26918",
- "EPSG:26919",
- "EPSG:26920",
- "EPSG:26921",
- "EPSG:26922",
- "EPSG:32181",
- "EPSG:32182",
- "EPSG:32183",
- "EPSG:32184",
- "EPSG:32185",
- "EPSG:32186",
- "EPSG:32187",
- "EPSG:32188",
- "EPSG:32189",
- "EPSG:32190",
- "EPSG:32191",
- "EPSG:32192",
- "EPSG:32193",
- "EPSG:32194",
- "EPSG:32195",
- "EPSG:32196",
- "EPSG:32197",
- "EPSG:32198"
- ],
- "country_code": "CA",
- "id": "Canvec_French",
- "name": "Canvec - French",
- "type": "wms",
- "url": "https://maps.geogratis.gc.ca/wms/canvec_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=canvec&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:2019",
- "EPSG:2294",
- "EPSG:2295",
- "EPSG:2952",
- "EPSG:3395",
- "EPSG:3400",
- "EPSG:3401",
- "EPSG:3571",
- "EPSG:3572",
- "EPSG:3573",
- "EPSG:3574",
- "EPSG:3575",
- "EPSG:3576",
- "EPSG:3578",
- "EPSG:3579",
- "EPSG:3799",
- "EPSG:3978",
- "EPSG:3979",
- "EPSG:26907",
- "EPSG:26908",
- "EPSG:26909",
- "EPSG:26910",
- "EPSG:26911",
- "EPSG:26912",
- "EPSG:26913",
- "EPSG:26914",
- "EPSG:26915",
- "EPSG:26916",
- "EPSG:26917",
- "EPSG:26918",
- "EPSG:26919",
- "EPSG:26920",
- "EPSG:26921",
- "EPSG:26922",
- "EPSG:32181",
- "EPSG:32182",
- "EPSG:32183",
- "EPSG:32184",
- "EPSG:32185",
- "EPSG:32186",
- "EPSG:32187",
- "EPSG:32188",
- "EPSG:32189",
- "EPSG:32190",
- "EPSG:32191",
- "EPSG:32192",
- "EPSG:32193",
- "EPSG:32194",
- "EPSG:32195",
- "EPSG:32196",
- "EPSG:32197",
- "EPSG:32198"
- ],
- "country_code": "CA",
- "id": "Canvec",
- "name": "Canvec - English",
- "type": "wms",
- "url": "https://maps.geogratis.gc.ca/wms/canvec_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=canvec&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:2019",
- "EPSG:2294",
- "EPSG:2295",
- "EPSG:2952",
- "EPSG:3395",
- "EPSG:3400",
- "EPSG:3401",
- "EPSG:3571",
- "EPSG:3572",
- "EPSG:3573",
- "EPSG:3574",
- "EPSG:3575",
- "EPSG:3576",
- "EPSG:3578",
- "EPSG:3579",
- "EPSG:3799",
- "EPSG:3978",
- "EPSG:3979",
- "EPSG:26907",
- "EPSG:26908",
- "EPSG:26909",
- "EPSG:26910",
- "EPSG:26911",
- "EPSG:26912",
- "EPSG:26913",
- "EPSG:26914",
- "EPSG:26915",
- "EPSG:26916",
- "EPSG:26917",
- "EPSG:26918",
- "EPSG:26919",
- "EPSG:26920",
- "EPSG:26921",
- "EPSG:26922",
- "EPSG:32181",
- "EPSG:32182",
- "EPSG:32183",
- "EPSG:32184",
- "EPSG:32185",
- "EPSG:32186",
- "EPSG:32187",
- "EPSG:32188",
- "EPSG:32189",
- "EPSG:32190",
- "EPSG:32191",
- "EPSG:32192",
- "EPSG:32193",
- "EPSG:32194",
- "EPSG:32195",
- "EPSG:32196",
- "EPSG:32197",
- "EPSG:32198"
- ],
- "country_code": "CA",
- "id": "Geobase_Hydrography_French",
- "name": "Geobase Hydrography - French",
- "overlay": true,
- "type": "wms",
- "url": "https://maps.geogratis.gc.ca/wms/hydro_network_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:2019",
- "EPSG:2294",
- "EPSG:2295",
- "EPSG:2952",
- "EPSG:3395",
- "EPSG:3400",
- "EPSG:3401",
- "EPSG:3571",
- "EPSG:3572",
- "EPSG:3573",
- "EPSG:3574",
- "EPSG:3575",
- "EPSG:3576",
- "EPSG:3578",
- "EPSG:3579",
- "EPSG:3799",
- "EPSG:3978",
- "EPSG:3979",
- "EPSG:26907",
- "EPSG:26908",
- "EPSG:26909",
- "EPSG:26910",
- "EPSG:26911",
- "EPSG:26912",
- "EPSG:26913",
- "EPSG:26914",
- "EPSG:26915",
- "EPSG:26916",
- "EPSG:26917",
- "EPSG:26918",
- "EPSG:26919",
- "EPSG:26920",
- "EPSG:26921",
- "EPSG:26922",
- "EPSG:32181",
- "EPSG:32182",
- "EPSG:32183",
- "EPSG:32184",
- "EPSG:32185",
- "EPSG:32186",
- "EPSG:32187",
- "EPSG:32188",
- "EPSG:32189",
- "EPSG:32190",
- "EPSG:32191",
- "EPSG:32192",
- "EPSG:32193",
- "EPSG:32194",
- "EPSG:32195",
- "EPSG:32196",
- "EPSG:32197",
- "EPSG:32198"
- ],
- "country_code": "CA",
- "id": "Geobase_Hydrography",
- "name": "Geobase Hydrography - English",
- "overlay": true,
- "type": "wms",
- "url": "https://maps.geogratis.gc.ca/wms/hydro_network_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:2019",
- "EPSG:2294",
- "EPSG:2295",
- "EPSG:2952",
- "EPSG:3395",
- "EPSG:3400",
- "EPSG:3401",
- "EPSG:3571",
- "EPSG:3572",
- "EPSG:3573",
- "EPSG:3574",
- "EPSG:3575",
- "EPSG:3576",
- "EPSG:3578",
- "EPSG:3579",
- "EPSG:3799",
- "EPSG:3978",
- "EPSG:3979",
- "EPSG:26907",
- "EPSG:26908",
- "EPSG:26909",
- "EPSG:26910",
- "EPSG:26911",
- "EPSG:26912",
- "EPSG:26913",
- "EPSG:26914",
- "EPSG:26915",
- "EPSG:26916",
- "EPSG:26917",
- "EPSG:26918",
- "EPSG:26919",
- "EPSG:26920",
- "EPSG:26921",
- "EPSG:26922",
- "EPSG:32181",
- "EPSG:32182",
- "EPSG:32183",
- "EPSG:32184",
- "EPSG:32185",
- "EPSG:32186",
- "EPSG:32187",
- "EPSG:32188",
- "EPSG:32189",
- "EPSG:32190",
- "EPSG:32191",
- "EPSG:32192",
- "EPSG:32193",
- "EPSG:32194",
- "EPSG:32195",
- "EPSG:32196",
- "EPSG:32197",
- "EPSG:32198"
- ],
- "country_code": "CA",
- "id": "Geobase_Roads_French",
- "max_zoom": 20,
- "min_zoom": 4,
- "name": "Geobase Roads - French",
- "type": "wms",
- "url": "https://cartes.geogratis.gc.ca/wms/roads_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=routes&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:2019",
- "EPSG:2294",
- "EPSG:2295",
- "EPSG:2952",
- "EPSG:3395",
- "EPSG:3400",
- "EPSG:3401",
- "EPSG:3571",
- "EPSG:3572",
- "EPSG:3573",
- "EPSG:3574",
- "EPSG:3575",
- "EPSG:3576",
- "EPSG:3578",
- "EPSG:3579",
- "EPSG:3799",
- "EPSG:3978",
- "EPSG:3979",
- "EPSG:26907",
- "EPSG:26908",
- "EPSG:26909",
- "EPSG:26910",
- "EPSG:26911",
- "EPSG:26912",
- "EPSG:26913",
- "EPSG:26914",
- "EPSG:26915",
- "EPSG:26916",
- "EPSG:26917",
- "EPSG:26918",
- "EPSG:26919",
- "EPSG:26920",
- "EPSG:26921",
- "EPSG:26922",
- "EPSG:32181",
- "EPSG:32182",
- "EPSG:32183",
- "EPSG:32184",
- "EPSG:32185",
- "EPSG:32186",
- "EPSG:32187",
- "EPSG:32188",
- "EPSG:32189",
- "EPSG:32190",
- "EPSG:32191",
- "EPSG:32192",
- "EPSG:32193",
- "EPSG:32194",
- "EPSG:32195",
- "EPSG:32196",
- "EPSG:32197",
- "EPSG:32198"
- ],
- "country_code": "CA",
- "id": "Geobase_Roads",
- "max_zoom": 20,
- "min_zoom": 4,
- "name": "Geobase Roads - English",
- "type": "wms",
- "url": "https://maps.geogratis.gc.ca/wms/roads_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=roads&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -84.34799,
- 74.38946
- ],
- [
- -84.34799,
- 75.8903
- ],
- [
- -79.14871,
- 75.8903
- ],
- [
- -79.14871,
- 74.38946
- ],
- [
- -84.34799,
- 74.38946
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "CA",
- "description": "Coastline mostly mapped meanwhile (false color IR)",
- "end_date": "2014-09-02",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC80360072014245LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 11,
- "name": "imagico.de: Eastern Devon Island coast",
- "start_date": "2014-09-02",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC80360072014245LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -81.62923,
- 82.4597
- ],
- [
- -83.03136,
- 82.47986
- ],
- [
- -83.03136,
- 83.05876
- ],
- [
- -72.80309,
- 83.09567
- ],
- [
- -65.65786,
- 83.03232
- ],
- [
- -65.81167,
- 82.4597
- ],
- [
- -81.62923,
- 82.4597
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "CA",
- "description": "Assembled from July 2012 ASTER imagery (true color with estimated blue)",
- "end_date": "2012-07-09",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-nellesmere_ast",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 10,
- "name": "imagico.de: Northern Ellesmere Island",
- "start_date": "2012-07-09",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -78.89729,
- 82.17577
- ],
- [
- -82.64501,
- 82.19426
- ],
- [
- -82.64501,
- 83.08067
- ],
- [
- -66.58986,
- 83.08497
- ],
- [
- -63.78011,
- 82.98908
- ],
- [
- -63.78011,
- 82.72198
- ],
- [
- -65.0092,
- 82.17577
- ],
- [
- -78.89729,
- 82.17577
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "CA",
- "description": "Assembled from July 2016 ASTER imagery (true color with estimated blue)",
- "end_date": "2012-07-15",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-nellesmere_ast_2016",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 10,
- "name": "imagico.de: Northern Ellesmere Island July 2016",
- "start_date": "2012-07-08",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast_2016&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -51.23857,
- 68.79972
- ],
- [
- -51.24334,
- 68.85303
- ],
- [
- -51.15167,
- 68.85303
- ],
- [
- -51.14038,
- 68.80116
- ],
- [
- -51.23857,
- 68.79972
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Icebridge DMS image of the settlement - alignment might be poor",
- "end_date": "2011-04-15",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-DMS_1142622_03746_20110415_17533956",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 15,
- "name": "imagico.de: Qasigiannguit",
- "start_date": "2011-04-15",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142622_03746_20110415_17533956&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -68.93977,
- 76.51133
- ],
- [
- -68.93977,
- 76.5499
- ],
- [
- -68.76635,
- 76.55176
- ],
- [
- -68.50993,
- 76.55176
- ],
- [
- -68.50744,
- 76.51612
- ],
- [
- -68.67897,
- 76.51194
- ],
- [
- -68.93977,
- 76.51133
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Icebridge DMS image - alignment might be poor",
- "end_date": "2011-05-07",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 15,
- "name": "imagico.de: Thule Air Base",
- "start_date": "2011-05-07",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142636_160xx_20110507_1822xxxx&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -50.6992,
- 66.9888
- ],
- [
- -50.721,
- 67.0017
- ],
- [
- -50.7341,
- 67.0125
- ],
- [
- -50.7396,
- 67.0193
- ],
- [
- -50.7396,
- 67.0212
- ],
- [
- -50.7158,
- 67.0265
- ],
- [
- -50.7017,
- 67.0265
- ],
- [
- -50.6829,
- 67.0176
- ],
- [
- -50.6686,
- 67.0077
- ],
- [
- -50.6638,
- 66.998
- ],
- [
- -50.6642,
- 66.9946
- ],
- [
- -50.6891,
- 66.9888
- ],
- [
- -50.6992,
- 66.9888
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Icebridge DMS image of the airport and settlement - alignment might be poor",
- "end_date": "2015-10-08",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-dms_kangerlussuaq_20151008",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 17,
- "name": "imagico.de: Kangerlussuaq Autumn",
- "start_date": "2015-10-08",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20151008&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -50.7519,
- 66.9996
- ],
- [
- -50.7555,
- 67.0023
- ],
- [
- -50.7555,
- 67.0033
- ],
- [
- -50.6395,
- 67.0297
- ],
- [
- -50.6162,
- 67.0339
- ],
- [
- -50.6097,
- 67.0281
- ],
- [
- -50.6331,
- 67.022
- ],
- [
- -50.7323,
- 66.9996
- ],
- [
- -50.7519,
- 66.9996
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Icebridge DMS image of the airport and roads - alignment might be poor",
- "end_date": "2016-05-18",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-dms_kangerlussuaq_20160518",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 18,
- "name": "imagico.de: Kangerlussuaq Spring",
- "start_date": "2016-05-18",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20160518&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -68.74292,
- 76.52636
- ],
- [
- -68.74446,
- 76.5284
- ],
- [
- -68.74807,
- 76.54939
- ],
- [
- -68.74615,
- 76.56017
- ],
- [
- -68.72276,
- 76.56022
- ],
- [
- -68.72017,
- 76.55775
- ],
- [
- -68.71853,
- 76.52921
- ],
- [
- -68.71978,
- 76.52637
- ],
- [
- -68.74292,
- 76.52636
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
- "end_date": "2015-09-25",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-dms_thule2_2015.09.25",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 17,
- "name": "imagico.de: Thule Airbase DMS low altitude overflight September 2015",
- "start_date": "2015-09-25",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule2_2015.09.25&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -68.77771,
- 76.50688
- ],
- [
- -68.77662,
- 76.57064
- ],
- [
- -68.68115,
- 76.57065
- ],
- [
- -68.6763,
- 76.55384
- ],
- [
- -68.6762,
- 76.53074
- ],
- [
- -68.68523,
- 76.50688
- ],
- [
- -68.77771,
- 76.50688
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
- "end_date": "2015-09-25",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-dms_thule_2015.09.25",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 16,
- "name": "imagico.de: Thule Airbase DMS overflight September 2015",
- "start_date": "2015-09-25",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.09.25&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -68.81924,
- 76.5251
- ],
- [
- -68.82651,
- 76.54177
- ],
- [
- -68.77345,
- 76.5439
- ],
- [
- -68.7021,
- 76.54545
- ],
- [
- -68.59177,
- 76.5456
- ],
- [
- -68.59183,
- 76.52793
- ],
- [
- -68.6597,
- 76.5251
- ],
- [
- -68.81924,
- 76.5251
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
- "end_date": "2015-10-06",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-dms_thule_2015.10.06",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 16,
- "name": "imagico.de: Thule Airbase DMS overflight October 2015",
- "start_date": "2015-10-06",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.10.06&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -43.9774,
- 59.7171
- ],
- [
- -44.545,
- 59.7302
- ],
- [
- -44.9203,
- 59.7672
- ],
- [
- -45.3587,
- 59.8218
- ],
- [
- -45.763,
- 59.8848
- ],
- [
- -46.0859,
- 59.9827
- ],
- [
- -46.3381,
- 60.119
- ],
- [
- -46.577,
- 60.2652
- ],
- [
- -46.8114,
- 60.4418
- ],
- [
- -47.2635,
- 60.5314
- ],
- [
- -47.6937,
- 60.5549
- ],
- [
- -48.1457,
- 60.6192
- ],
- [
- -48.5771,
- 60.7015
- ],
- [
- -48.8689,
- 60.8506
- ],
- [
- -49.0578,
- 61.0555
- ],
- [
- -49.396,
- 61.2957
- ],
- [
- -49.7601,
- 61.4934
- ],
- [
- -50.2064,
- 61.7324
- ],
- [
- -50.4699,
- 61.9539
- ],
- [
- -50.8647,
- 62.1596
- ],
- [
- -51.0631,
- 62.3869
- ],
- [
- -51.2121,
- 62.6001
- ],
- [
- -51.3005,
- 62.8389
- ],
- [
- -51.4238,
- 62.9979
- ],
- [
- -51.6767,
- 63.1944
- ],
- [
- -51.9465,
- 63.4079
- ],
- [
- -52.0253,
- 63.6377
- ],
- [
- -52.2255,
- 63.8378
- ],
- [
- -52.3658,
- 64.0705
- ],
- [
- -52.4829,
- 64.3792
- ],
- [
- -52.4988,
- 64.6788
- ],
- [
- -52.789,
- 64.9063
- ],
- [
- -53.2046,
- 65.1321
- ],
- [
- -53.6649,
- 65.4753
- ],
- [
- -53.9977,
- 65.8019
- ],
- [
- -54.1348,
- 66.1568
- ],
- [
- -54.1441,
- 66.5235
- ],
- [
- -54.2285,
- 66.8319
- ],
- [
- -54.4519,
- 67.303
- ],
- [
- -54.5141,
- 67.7648
- ],
- [
- -54.604,
- 68.2021
- ],
- [
- -54.568,
- 68.5698
- ],
- [
- -54.598,
- 68.8347
- ],
- [
- -54.7606,
- 69.1207
- ],
- [
- -55.0028,
- 69.4125
- ],
- [
- -55.2735,
- 69.6187
- ],
- [
- -55.3808,
- 69.8283
- ],
- [
- -55.3945,
- 70.0838
- ],
- [
- -55.3094,
- 70.2573
- ],
- [
- -55.4307,
- 70.479
- ],
- [
- -55.5501,
- 70.6707
- ],
- [
- -55.7654,
- 70.861
- ],
- [
- -56.2489,
- 71.2343
- ],
- [
- -56.5018,
- 71.5429
- ],
- [
- -56.5867,
- 71.9015
- ],
- [
- -56.5189,
- 72.2355
- ],
- [
- -56.5085,
- 72.5258
- ],
- [
- -56.8923,
- 72.8144
- ],
- [
- -57.4027,
- 73.1054
- ],
- [
- -57.8066,
- 73.4566
- ],
- [
- -58.1461,
- 73.7696
- ],
- [
- -58.3554,
- 74.0972
- ],
- [
- -58.5125,
- 74.3783
- ],
- [
- -58.7336,
- 74.6328
- ],
- [
- -59.3551,
- 74.8869
- ],
- [
- -60.1412,
- 75.102
- ],
- [
- -61.0067,
- 75.2763
- ],
- [
- -61.911,
- 75.3886
- ],
- [
- -62.4706,
- 75.5595
- ],
- [
- -62.9776,
- 75.7454
- ],
- [
- -64.1463,
- 75.779
- ],
- [
- -65.4481,
- 75.7235
- ],
- [
- -66.7068,
- 75.6792
- ],
- [
- -67.8379,
- 75.6525
- ],
- [
- -69.0456,
- 75.6195
- ],
- [
- -70.055,
- 75.5344
- ],
- [
- -71.0898,
- 75.4705
- ],
- [
- -72.1119,
- 75.4476
- ],
- [
- -74.2311,
- 76.4102
- ],
- [
- -74.5601,
- 76.5328
- ],
- [
- -74.5601,
- 82.6959
- ],
- [
- -14.4462,
- 82.6959
- ],
- [
- -14.3994,
- 82.5997
- ],
- [
- -13.5339,
- 82.4379
- ],
- [
- -12.0312,
- 82.3426
- ],
- [
- -10.7796,
- 82.3196
- ],
- [
- -10.7796,
- 80.1902
- ],
- [
- -11.2123,
- 80.069
- ],
- [
- -11.136,
- 79.8103
- ],
- [
- -10.7796,
- 79.5176
- ],
- [
- -10.7796,
- 79.0441
- ],
- [
- -11.2626,
- 78.7128
- ],
- [
- -12.2579,
- 78.3558
- ],
- [
- -13.2398,
- 78.1272
- ],
- [
- -13.7649,
- 77.9279
- ],
- [
- -14.1169,
- 77.6779
- ],
- [
- -14.7129,
- 77.5278
- ],
- [
- -15.5507,
- 77.3655
- ],
- [
- -16.0936,
- 77.0771
- ],
- [
- -16.0586,
- 76.5548
- ],
- [
- -15.838,
- 75.9611
- ],
- [
- -15.6879,
- 75.4726
- ],
- [
- -16.253,
- 75.058
- ],
- [
- -17.0427,
- 74.6425
- ],
- [
- -18.3155,
- 74.2702
- ],
- [
- -19.4463,
- 73.9378
- ],
- [
- -19.8329,
- 73.632
- ],
- [
- -20.2938,
- 73.3524
- ],
- [
- -20.7831,
- 73.0446
- ],
- [
- -21.01,
- 72.6766
- ],
- [
- -20.8774,
- 72.2926
- ],
- [
- -20.7672,
- 71.8726
- ],
- [
- -20.7765,
- 71.4304
- ],
- [
- -20.9411,
- 70.9802
- ],
- [
- -21.219,
- 70.6126
- ],
- [
- -21.5326,
- 70.3001
- ],
- [
- -21.8039,
- 70.0911
- ],
- [
- -22.166,
- 69.8947
- ],
- [
- -22.4831,
- 69.7539
- ],
- [
- -22.9027,
- 69.6585
- ],
- [
- -23.3545,
- 69.544
- ],
- [
- -23.9177,
- 69.4036
- ],
- [
- -24.1794,
- 69.3088
- ],
- [
- -24.6745,
- 69.1084
- ],
- [
- -25.1222,
- 68.9555
- ],
- [
- -25.6659,
- 68.7995
- ],
- [
- -26.0994,
- 68.583
- ],
- [
- -26.6316,
- 68.4043
- ],
- [
- -27.7638,
- 68.2813
- ],
- [
- -28.4575,
- 68.0023
- ],
- [
- -29.353,
- 67.8135
- ],
- [
- -30.6456,
- 67.4911
- ],
- [
- -31.7673,
- 67.0005
- ],
- [
- -32.9783,
- 66.2596
- ],
- [
- -33.9313,
- 66.0156
- ],
- [
- -34.8956,
- 65.7403
- ],
- [
- -35.5914,
- 65.5208
- ],
- [
- -36.1483,
- 65.372
- ],
- [
- -36.7532,
- 65.2559
- ],
- [
- -37.1858,
- 65.1349
- ],
- [
- -37.6032,
- 64.9727
- ],
- [
- -38.0624,
- 64.4901
- ],
- [
- -38.5304,
- 64.1244
- ],
- [
- -39.0545,
- 63.7213
- ],
- [
- -39.3131,
- 63.4405
- ],
- [
- -39.5739,
- 62.7506
- ],
- [
- -39.9532,
- 62.2739
- ],
- [
- -40.2757,
- 61.8547
- ],
- [
- -40.714,
- 61.3365
- ],
- [
- -41.2091,
- 60.8495
- ],
- [
- -41.821,
- 60.5526
- ],
- [
- -42.4368,
- 60.3264
- ],
- [
- -42.8643,
- 60.0299
- ],
- [
- -43.1131,
- 59.9147
- ],
- [
- -43.3282,
- 59.83
- ],
- [
- -43.5459,
- 59.7695
- ],
- [
- -43.797,
- 59.7284
- ],
- [
- -43.9774,
- 59.7171
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Landsat mosaic of Greenland (true color)",
- "end_date": "2015",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-greenland",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Greenland mosaic",
- "start_date": "2013",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=greenland&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -85.76109,
- 81.39333
- ],
- [
- -89.83016,
- 82.14952
- ],
- [
- -89.83153,
- 82.24405
- ],
- [
- -84.99342,
- 82.73099
- ],
- [
- -79.95207,
- 83.13108
- ],
- [
- -74.55641,
- 83.46267
- ],
- [
- -69.35851,
- 83.70451
- ],
- [
- -28.20784,
- 83.70451
- ],
- [
- -23.06624,
- 83.46532
- ],
- [
- -17.96584,
- 83.15518
- ],
- [
- -17.96721,
- 82.72386
- ],
- [
- -22.78197,
- 81.4419
- ],
- [
- -85.76109,
- 81.39333
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "First available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret (true color)",
- "end_date": "2013-05-17",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-ls_polar",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 10,
- "name": "imagico.de: May 2013 off-nadir Landsat",
- "start_date": "2013-05-17",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -79.05175,
- 81.91484
- ],
- [
- -79.05175,
- 83.43339
- ],
- [
- -73.6039,
- 83.80225
- ],
- [
- -26.42449,
- 83.80225
- ],
- [
- -21.493,
- 83.50352
- ],
- [
- -16.88835,
- 83.15095
- ],
- [
- -16.88835,
- 81.91484
- ],
- [
- -79.05175,
- 81.91484
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Latest images north of the regular Landsat limit (true color)",
- "end_date": "2016-07-17",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-ls_polar2",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 10,
- "name": "imagico.de: Landsat off-nadir July 2016",
- "start_date": "2016-07-17",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar2&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -52.49222,
- 82.48972
- ],
- [
- -52.49222,
- 82.94295
- ],
- [
- -49.28696,
- 83.47312
- ],
- [
- -44.5285,
- 83.73214
- ],
- [
- -29.5253,
- 83.73214
- ],
- [
- -25.26398,
- 83.58271
- ],
- [
- -21.18393,
- 83.39776
- ],
- [
- -21.18393,
- 82.74312
- ],
- [
- -23.40454,
- 82.48972
- ],
- [
- -52.49222,
- 82.48972
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GL",
- "description": "Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast (true color with estimated blue)",
- "end_date": "2012-08-13",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-ngreenland_ast",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 10,
- "name": "imagico.de: Northern Greenland ASTER",
- "start_date": "2005-06-21",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=ngreenland_ast&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -74.11291,
- 18.64948
- ],
- [
- -74.10903,
- 18.64598
- ],
- [
- -74.10873,
- 18.64446
- ],
- [
- -74.1095,
- 18.64452
- ],
- [
- -74.1095,
- 18.64181
- ],
- [
- -74.10968,
- 18.64187
- ],
- [
- -74.11053,
- 18.64103
- ],
- [
- -74.10988,
- 18.64034
- ],
- [
- -74.11005,
- 18.64014
- ],
- [
- -74.11005,
- 18.64009
- ],
- [
- -74.11011,
- 18.64002
- ],
- [
- -74.10949,
- 18.63959
- ],
- [
- -74.1095,
- 18.63924
- ],
- [
- -74.10904,
- 18.63926
- ],
- [
- -74.10894,
- 18.63917
- ],
- [
- -74.10905,
- 18.63912
- ],
- [
- -74.10898,
- 18.63899
- ],
- [
- -74.10782,
- 18.63839
- ],
- [
- -74.10823,
- 18.63775
- ],
- [
- -74.10812,
- 18.63764
- ],
- [
- -74.10786,
- 18.63774
- ],
- [
- -74.10768,
- 18.63733
- ],
- [
- -74.10748,
- 18.63719
- ],
- [
- -74.10722,
- 18.63559
- ],
- [
- -74.10901,
- 18.63394
- ],
- [
- -74.11678,
- 18.62847
- ],
- [
- -74.11952,
- 18.62815
- ],
- [
- -74.12251,
- 18.63132
- ],
- [
- -74.12731,
- 18.63703
- ],
- [
- -74.12684,
- 18.6374
- ],
- [
- -74.12731,
- 18.63771
- ],
- [
- -74.12768,
- 18.63756
- ],
- [
- -74.13403,
- 18.64671
- ],
- [
- -74.13401,
- 18.64897
- ],
- [
- -74.13087,
- 18.65167
- ],
- [
- -74.13076,
- 18.65153
- ],
- [
- -74.13053,
- 18.65179
- ],
- [
- -74.13054,
- 18.65195
- ],
- [
- -74.12878,
- 18.65342
- ],
- [
- -74.1274,
- 18.65412
- ],
- [
- -74.12514,
- 18.65497
- ],
- [
- -74.11997,
- 18.65432
- ],
- [
- -74.11938,
- 18.65429
- ],
- [
- -74.11291,
- 18.64948
- ]
- ],
- [
- [
- -74.11305,
- 18.4922
- ],
- [
- -74.10884,
- 18.49216
- ],
- [
- -74.10118,
- 18.49095
- ],
- [
- -74.10105,
- 18.49057
- ],
- [
- -74.10131,
- 18.4902
- ],
- [
- -74.10101,
- 18.48996
- ],
- [
- -74.10142,
- 18.48933
- ],
- [
- -74.10099,
- 18.48931
- ],
- [
- -74.1009,
- 18.48886
- ],
- [
- -74.10166,
- 18.48725
- ],
- [
- -74.10108,
- 18.48713
- ],
- [
- -74.10133,
- 18.48664
- ],
- [
- -74.10058,
- 18.48654
- ],
- [
- -74.10048,
- 18.48552
- ],
- [
- -74.10062,
- 18.4849
- ],
- [
- -74.10037,
- 18.48478
- ],
- [
- -74.10012,
- 18.4827
- ],
- [
- -74.09994,
- 18.48123
- ],
- [
- -74.10033,
- 18.48114
- ],
- [
- -74.10242,
- 18.48116
- ],
- [
- -74.10492,
- 18.48149
- ],
- [
- -74.10771,
- 18.48189
- ],
- [
- -74.1099,
- 18.48226
- ],
- [
- -74.10987,
- 18.48243
- ],
- [
- -74.10992,
- 18.48246
- ],
- [
- -74.11018,
- 18.48232
- ],
- [
- -74.11196,
- 18.48261
- ],
- [
- -74.11247,
- 18.48278
- ],
- [
- -74.11316,
- 18.48382
- ],
- [
- -74.1134,
- 18.48521
- ],
- [
- -74.11349,
- 18.48709
- ],
- [
- -74.11338,
- 18.48704
- ],
- [
- -74.11336,
- 18.48717
- ],
- [
- -74.11349,
- 18.48727
- ],
- [
- -74.11355,
- 18.48931
- ],
- [
- -74.11349,
- 18.48949
- ],
- [
- -74.1135,
- 18.48951
- ],
- [
- -74.11349,
- 18.48952
- ],
- [
- -74.11347,
- 18.48951
- ],
- [
- -74.11334,
- 18.48957
- ],
- [
- -74.11336,
- 18.48962
- ],
- [
- -74.11341,
- 18.48958
- ],
- [
- -74.11344,
- 18.48959
- ],
- [
- -74.11349,
- 18.48956
- ],
- [
- -74.11352,
- 18.48957
- ],
- [
- -74.11355,
- 18.48956
- ],
- [
- -74.11357,
- 18.48998
- ],
- [
- -74.11359,
- 18.49067
- ],
- [
- -74.11354,
- 18.49108
- ],
- [
- -74.11322,
- 18.492
- ],
- [
- -74.11305,
- 18.4922
- ]
- ],
- [
- [
- -74.10198,
- 18.24954
- ],
- [
- -74.09767,
- 18.24744
- ],
- [
- -74.09419,
- 18.2474
- ],
- [
- -74.09338,
- 18.24885
- ],
- [
- -74.09638,
- 18.25292
- ],
- [
- -74.09934,
- 18.25335
- ],
- [
- -74.10198,
- 18.24954
- ]
- ],
- [
- [
- -74.02901,
- 18.59744
- ],
- [
- -74.02881,
- 18.60255
- ],
- [
- -74.00847,
- 18.60182
- ],
- [
- -74.00867,
- 18.59671
- ],
- [
- -74.02901,
- 18.59744
- ]
- ],
- [
- [
- -73.91991,
- 18.07466
- ],
- [
- -73.91468,
- 18.07482
- ],
- [
- -73.91535,
- 18.07742
- ],
- [
- -73.91478,
- 18.08009
- ],
- [
- -73.91997,
- 18.08014
- ],
- [
- -73.91924,
- 18.07802
- ],
- [
- -73.91999,
- 18.07637
- ],
- [
- -73.91991,
- 18.07466
- ]
- ],
- [
- [
- -74.22365,
- 18.3081
- ],
- [
- -74.22061,
- 18.30272
- ],
- [
- -74.21902,
- 18.30278
- ],
- [
- -74.21592,
- 18.30364
- ],
- [
- -74.21615,
- 18.30804
- ],
- [
- -74.22365,
- 18.3081
- ]
- ],
- [
- [
- -74.00508,
- 18.17646
- ],
- [
- -74.00072,
- 18.17657
- ],
- [
- -74.00186,
- 18.18175
- ],
- [
- -74.00269,
- 18.18344
- ],
- [
- -74.00653,
- 18.18336
- ],
- [
- -74.00715,
- 18.18218
- ],
- [
- -74.00649,
- 18.18056
- ],
- [
- -74.0052,
- 18.17922
- ],
- [
- -74.00508,
- 18.17646
- ]
- ],
- [
- [
- -74.0653,
- 18.22881
- ],
- [
- -74.06361,
- 18.2268
- ],
- [
- -74.06114,
- 18.22672
- ],
- [
- -74.05968,
- 18.22853
- ],
- [
- -74.06281,
- 18.23083
- ],
- [
- -74.06446,
- 18.23034
- ],
- [
- -74.0653,
- 18.22881
- ]
- ],
- [
- [
- -74.11371,
- 18.47184
- ],
- [
- -74.11002,
- 18.47177
- ],
- [
- -74.10959,
- 18.47536
- ],
- [
- -74.11341,
- 18.47497
- ],
- [
- -74.11371,
- 18.47184
- ]
- ],
- [
- [
- -73.95852,
- 18.47452
- ],
- [
- -73.95446,
- 18.47465
- ],
- [
- -73.95548,
- 18.4794
- ],
- [
- -73.95965,
- 18.47878
- ],
- [
- -73.95852,
- 18.47452
- ]
- ],
- [
- [
- -74.16719,
- 18.27229
- ],
- [
- -74.16196,
- 18.27232
- ],
- [
- -74.16175,
- 18.27303
- ],
- [
- -74.16255,
- 18.27452
- ],
- [
- -74.16372,
- 18.27542
- ],
- [
- -74.16341,
- 18.27749
- ],
- [
- -74.16404,
- 18.27854
- ],
- [
- -74.16756,
- 18.27868
- ],
- [
- -74.16742,
- 18.27592
- ],
- [
- -74.16775,
- 18.27416
- ],
- [
- -74.16719,
- 18.27229
- ]
- ],
- [
- [
- -74.11091,
- 18.45286
- ],
- [
- -74.10701,
- 18.45258
- ],
- [
- -74.10684,
- 18.4586
- ],
- [
- -74.11102,
- 18.45781
- ],
- [
- -74.11091,
- 18.45286
- ]
- ],
- [
- [
- -73.76854,
- 18.18022
- ],
- [
- -73.75773,
- 18.18006
- ],
- [
- -73.73559,
- 18.19311
- ],
- [
- -73.73567,
- 18.20143
- ],
- [
- -73.74563,
- 18.20191
- ],
- [
- -73.74468,
- 18.22311
- ],
- [
- -73.77121,
- 18.22417
- ],
- [
- -73.77129,
- 18.20844
- ],
- [
- -73.76915,
- 18.2064
- ],
- [
- -73.76854,
- 18.18022
- ]
- ],
- [
- [
- -74.13455,
- 18.60914
- ],
- [
- -74.1388,
- 18.60929
- ],
- [
- -74.13871,
- 18.61165
- ],
- [
- -74.13447,
- 18.6115
- ],
- [
- -74.13455,
- 18.60914
- ]
- ],
- [
- [
- -74.04228,
- 18.20945
- ],
- [
- -74.042,
- 18.20484
- ],
- [
- -74.04155,
- 18.20239
- ],
- [
- -74.03959,
- 18.20051
- ],
- [
- -74.03836,
- 18.20028
- ],
- [
- -74.03764,
- 18.20242
- ],
- [
- -74.03792,
- 18.20562
- ],
- [
- -74.03918,
- 18.20932
- ],
- [
- -74.04228,
- 18.20945
- ]
- ],
- [
- [
- -74.08668,
- 18.61121
- ],
- [
- -74.08669,
- 18.61217
- ],
- [
- -74.09146,
- 18.61689
- ],
- [
- -74.09211,
- 18.61603
- ],
- [
- -74.09313,
- 18.61699
- ],
- [
- -74.09603,
- 18.62025
- ],
- [
- -74.09627,
- 18.6206
- ],
- [
- -74.0967,
- 18.62202
- ],
- [
- -74.09337,
- 18.62651
- ],
- [
- -74.09237,
- 18.62754
- ],
- [
- -74.08862,
- 18.62596
- ],
- [
- -74.08863,
- 18.62561
- ],
- [
- -74.08778,
- 18.62561
- ],
- [
- -74.08661,
- 18.6251
- ],
- [
- -74.08662,
- 18.62368
- ],
- [
- -74.08514,
- 18.62367
- ],
- [
- -74.08462,
- 18.62289
- ],
- [
- -74.08463,
- 18.62175
- ],
- [
- -74.08339,
- 18.62174
- ],
- [
- -74.08261,
- 18.62057
- ],
- [
- -74.08262,
- 18.61982
- ],
- [
- -74.07659,
- 18.6198
- ],
- [
- -74.07658,
- 18.61596
- ],
- [
- -74.07255,
- 18.61591
- ],
- [
- -74.07259,
- 18.61403
- ],
- [
- -74.07062,
- 18.61402
- ],
- [
- -74.06858,
- 18.6129
- ],
- [
- -74.06855,
- 18.61208
- ],
- [
- -74.06614,
- 18.61207
- ],
- [
- -74.06414,
- 18.61206
- ],
- [
- -74.0625,
- 18.61105
- ],
- [
- -74.06254,
- 18.61011
- ],
- [
- -74.05927,
- 18.61013
- ],
- [
- -74.0545,
- 18.60876
- ],
- [
- -74.05451,
- 18.60817
- ],
- [
- -74.05168,
- 18.60816
- ],
- [
- -74.04932,
- 18.60776
- ],
- [
- -74.04647,
- 18.60664
- ],
- [
- -74.04646,
- 18.6062
- ],
- [
- -74.04243,
- 18.6062
- ],
- [
- -74.04133,
- 18.60592
- ],
- [
- -74.03625,
- 18.60378
- ],
- [
- -74.03597,
- 18.60345
- ],
- [
- -74.03642,
- 18.60252
- ],
- [
- -74.03719,
- 18.6019
- ],
- [
- -74.04003,
- 18.60217
- ],
- [
- -74.05608,
- 18.60473
- ],
- [
- -74.05851,
- 18.6054
- ],
- [
- -74.05861,
- 18.60623
- ],
- [
- -74.0611,
- 18.60627
- ],
- [
- -74.06481,
- 18.60745
- ],
- [
- -74.06518,
- 18.60686
- ],
- [
- -74.06679,
- 18.60802
- ],
- [
- -74.0696,
- 18.60885
- ],
- [
- -74.07142,
- 18.60711
- ],
- [
- -74.07239,
- 18.60736
- ],
- [
- -74.07515,
- 18.61024
- ],
- [
- -74.07701,
- 18.61019
- ],
- [
- -74.07798,
- 18.61096
- ],
- [
- -74.07901,
- 18.61013
- ],
- [
- -74.08109,
- 18.61234
- ],
- [
- -74.08234,
- 18.60896
- ],
- [
- -74.08383,
- 18.60922
- ],
- [
- -74.08513,
- 18.60977
- ],
- [
- -74.08668,
- 18.61121
- ]
- ],
- [
- [
- -74.45922,
- 18.4663
- ],
- [
- -74.45589,
- 18.46471
- ],
- [
- -74.44779,
- 18.47
- ],
- [
- -74.44693,
- 18.4713
- ],
- [
- -74.44726,
- 18.47934
- ],
- [
- -74.44554,
- 18.47915
- ],
- [
- -74.44515,
- 18.48326
- ],
- [
- -74.43968,
- 18.4839
- ],
- [
- -74.439,
- 18.48762
- ],
- [
- -74.44299,
- 18.49004
- ],
- [
- -74.44906,
- 18.49104
- ],
- [
- -74.45382,
- 18.49311
- ],
- [
- -74.45571,
- 18.49635
- ],
- [
- -74.45786,
- 18.49725
- ],
- [
- -74.46052,
- 18.49523
- ],
- [
- -74.46241,
- 18.49143
- ],
- [
- -74.46198,
- 18.48799
- ],
- [
- -74.45537,
- 18.48597
- ],
- [
- -74.45526,
- 18.47111
- ],
- [
- -74.45944,
- 18.46871
- ],
- [
- -74.45922,
- 18.4663
- ]
- ],
- [
- [
- -74.41888,
- 18.57551
- ],
- [
- -74.41499,
- 18.57331
- ],
- [
- -74.41045,
- 18.57648
- ],
- [
- -74.40824,
- 18.58233
- ],
- [
- -74.40954,
- 18.58894
- ],
- [
- -74.4112,
- 18.59195
- ],
- [
- -74.41081,
- 18.59689
- ],
- [
- -74.41663,
- 18.60063
- ],
- [
- -74.42178,
- 18.59671
- ],
- [
- -74.42146,
- 18.59416
- ],
- [
- -74.41745,
- 18.59419
- ],
- [
- -74.41753,
- 18.59067
- ],
- [
- -74.41538,
- 18.59002
- ],
- [
- -74.41533,
- 18.58382
- ],
- [
- -74.41652,
- 18.58382
- ],
- [
- -74.41756,
- 18.5814
- ],
- [
- -74.41756,
- 18.57967
- ],
- [
- -74.41924,
- 18.57754
- ],
- [
- -74.41888,
- 18.57551
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "HT",
- "end_date": "2016-10",
- "id": "drone-imagery-2016",
- "max_zoom": 18,
- "name": "Drone Imagery Matthew(Haiti) October 2016",
- "start_date": "2016-10",
- "type": "tms",
- "url": "https://imagery.openstreetmap.fr/tms/1.0.0/haiti_uav_201610/{zoom}/{x}/{y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -72.26734,
- 18.63561
- ],
- [
- -72.2636,
- 18.6373
- ],
- [
- -72.26116,
- 18.64141
- ],
- [
- -72.25983,
- 18.64588
- ],
- [
- -72.25811,
- 18.64742
- ],
- [
- -72.24502,
- 18.64795
- ],
- [
- -72.23433,
- 18.64807
- ],
- [
- -72.22734,
- 18.6482
- ],
- [
- -72.21953,
- 18.65438
- ],
- [
- -72.2161,
- 18.65446
- ],
- [
- -72.21584,
- 18.66222
- ],
- [
- -72.21725,
- 18.66739
- ],
- [
- -72.21889,
- 18.67019
- ],
- [
- -72.22309,
- 18.66958
- ],
- [
- -72.22343,
- 18.67312
- ],
- [
- -72.22502,
- 18.6732
- ],
- [
- -72.22545,
- 18.67609
- ],
- [
- -72.23288,
- 18.67597
- ],
- [
- -72.23339,
- 18.67877
- ],
- [
- -72.23674,
- 18.67857
- ],
- [
- -72.23854,
- 18.67975
- ],
- [
- -72.24,
- 18.68129
- ],
- [
- -72.24463,
- 18.68207
- ],
- [
- -72.24682,
- 18.6817
- ],
- [
- -72.24605,
- 18.67698
- ],
- [
- -72.25094,
- 18.67698
- ],
- [
- -72.25511,
- 18.67902
- ],
- [
- -72.25961,
- 18.67898
- ],
- [
- -72.26081,
- 18.67743
- ],
- [
- -72.27038,
- 18.67711
- ],
- [
- -72.27901,
- 18.67682
- ],
- [
- -72.28373,
- 18.67893
- ],
- [
- -72.28613,
- 18.68154
- ],
- [
- -72.29665,
- 18.68178
- ],
- [
- -72.30184,
- 18.68568
- ],
- [
- -72.3012,
- 18.68824
- ],
- [
- -72.30802,
- 18.69324
- ],
- [
- -72.30948,
- 18.69308
- ],
- [
- -72.31699,
- 18.69682
- ],
- [
- -72.32806,
- 18.70528
- ],
- [
- -72.3384,
- 18.69902
- ],
- [
- -72.34012,
- 18.69666
- ],
- [
- -72.33961,
- 18.69426
- ],
- [
- -72.33377,
- 18.68357
- ],
- [
- -72.33135,
- 18.68192
- ],
- [
- -72.32551,
- 18.68093
- ],
- [
- -72.32027,
- 18.67741
- ],
- [
- -72.31626,
- 18.67477
- ],
- [
- -72.31167,
- 18.672
- ],
- [
- -72.308,
- 18.66995
- ],
- [
- -72.30534,
- 18.66926
- ],
- [
- -72.30068,
- 18.66499
- ],
- [
- -72.29796,
- 18.66479
- ],
- [
- -72.29609,
- 18.66129
- ],
- [
- -72.29315,
- 18.65999
- ],
- [
- -72.29519,
- 18.65497
- ],
- [
- -72.28414,
- 18.64962
- ],
- [
- -72.27804,
- 18.64523
- ],
- [
- -72.27487,
- 18.64212
- ],
- [
- -72.27352,
- 18.64057
- ],
- [
- -72.2706,
- 18.63901
- ],
- [
- -72.26734,
- 18.63561
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "American Red Cross",
- "url": "http://americanredcross.github.io/"
- },
- "country_code": "HT",
- "description": "Drone imagery collected December 2017 for Canaan, Haiti by American Red Cross in coordination with the Haitian Red Cross.",
- "end_date": "2017-12-20",
- "id": "canaan_drone_red_cross_201712",
- "max_zoom": 21,
- "name": "Canaan - American Red Cross, Dec-2017",
- "start_date": "2017-12-11",
- "type": "tms",
- "url": "https://tiles.openaerialmap.org/5ac65a9f91b5310010e0d489/0/5ac65a9f91b5310010e0d48a/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -86.19429,
- 21.60805
- ],
- [
- -85.49087,
- 18.19755
- ],
- [
- -87.74311,
- 18.1696
- ],
- [
- -87.88512,
- 18.16671
- ],
- [
- -88.03614,
- 18.16812
- ],
- [
- -88.03266,
- 18.41814
- ],
- [
- -88.28926,
- 18.41987
- ],
- [
- -88.28955,
- 18.46881
- ],
- [
- -88.30162,
- 18.48182
- ],
- [
- -88.32686,
- 18.48703
- ],
- [
- -88.37981,
- 18.47636
- ],
- [
- -88.38969,
- 18.48
- ],
- [
- -88.40121,
- 18.49327
- ],
- [
- -88.44756,
- 18.47362
- ],
- [
- -88.47518,
- 18.48961
- ],
- [
- -88.5161,
- 18.46097
- ],
- [
- -88.52891,
- 18.40783
- ],
- [
- -88.54595,
- 18.38234
- ],
- [
- -88.5426,
- 18.35952
- ],
- [
- -88.56227,
- 18.32867
- ],
- [
- -88.6009,
- 18.23771
- ],
- [
- -88.64108,
- 18.18045
- ],
- [
- -88.66034,
- 18.13192
- ],
- [
- -88.70053,
- 18.07303
- ],
- [
- -88.75998,
- 18.02208
- ],
- [
- -88.78258,
- 17.9735
- ],
- [
- -88.84036,
- 17.9289
- ],
- [
- -88.85808,
- 17.89101
- ],
- [
- -88.88123,
- 17.89264
- ],
- [
- -88.91209,
- 17.90611
- ],
- [
- -88.9241,
- 17.91508
- ],
- [
- -88.93739,
- 17.92976
- ],
- [
- -88.94982,
- 17.94975
- ],
- [
- -88.98711,
- 17.94322
- ],
- [
- -88.99783,
- 17.95056
- ],
- [
- -89.02484,
- 17.9995
- ],
- [
- -89.13973,
- 17.95423
- ],
- [
- -89.1391,
- 17.81344
- ],
- [
- -89.84645,
- 17.81083
- ],
- [
- -90.98253,
- 17.80936
- ],
- [
- -90.98265,
- 17.79505
- ],
- [
- -90.98231,
- 17.277
- ],
- [
- -90.98238,
- 17.25917
- ],
- [
- -90.98292,
- 17.25081
- ],
- [
- -90.98306,
- 17.24988
- ],
- [
- -90.98338,
- 17.24899
- ],
- [
- -90.98386,
- 17.24819
- ],
- [
- -90.98448,
- 17.24748
- ],
- [
- -90.98523,
- 17.2469
- ],
- [
- -90.98606,
- 17.24648
- ],
- [
- -90.98697,
- 17.24621
- ],
- [
- -90.9879,
- 17.24613
- ],
- [
- -91.43341,
- 17.24601
- ],
- [
- -91.4179,
- 17.21305
- ],
- [
- -91.37701,
- 17.20939
- ],
- [
- -91.34037,
- 17.18369
- ],
- [
- -91.26217,
- 17.18693
- ],
- [
- -91.2593,
- 17.11198
- ],
- [
- -91.22254,
- 17.09838
- ],
- [
- -91.14732,
- 17.01192
- ],
- [
- -91.11805,
- 17.00606
- ],
- [
- -91.05379,
- 16.9136
- ],
- [
- -90.95912,
- 16.90405
- ],
- [
- -90.93067,
- 16.85673
- ],
- [
- -90.87311,
- 16.83169
- ],
- [
- -90.7988,
- 16.80564
- ],
- [
- -90.70356,
- 16.72347
- ],
- [
- -90.66902,
- 16.68137
- ],
- [
- -90.65191,
- 16.63554
- ],
- [
- -90.62018,
- 16.57474
- ],
- [
- -90.61633,
- 16.52708
- ],
- [
- -90.60904,
- 16.51845
- ],
- [
- -90.58075,
- 16.47693
- ],
- [
- -90.55331,
- 16.48474
- ],
- [
- -90.54388,
- 16.48269
- ],
- [
- -90.47572,
- 16.46254
- ],
- [
- -90.38612,
- 16.41403
- ],
- [
- -90.36597,
- 16.37167
- ],
- [
- -90.4217,
- 16.25853
- ],
- [
- -90.42128,
- 16.17085
- ],
- [
- -90.42128,
- 16.09755
- ],
- [
- -90.43956,
- 16.07307
- ],
- [
- -90.95679,
- 16.06911
- ],
- [
- -91.32089,
- 16.06878
- ],
- [
- -91.68134,
- 16.06878
- ],
- [
- -91.729,
- 16.06784
- ],
- [
- -91.74266,
- 16.04243
- ],
- [
- -91.77849,
- 15.98298
- ],
- [
- -91.80125,
- 15.94468
- ],
- [
- -91.8218,
- 15.90969
- ],
- [
- -91.84071,
- 15.87827
- ],
- [
- -91.91024,
- 15.76105
- ],
- [
- -91.93209,
- 15.72468
- ],
- [
- -91.9546,
- 15.68605
- ],
- [
- -91.98452,
- 15.63592
- ],
- [
- -92.08888,
- 15.45995
- ],
- [
- -92.11847,
- 15.40996
- ],
- [
- -92.14514,
- 15.3644
- ],
- [
- -92.20534,
- 15.26263
- ],
- [
- -92.09608,
- 15.12449
- ],
- [
- -92.0619,
- 15.08086
- ],
- [
- -92.06136,
- 15.08002
- ],
- [
- -92.06101,
- 15.07908
- ],
- [
- -92.06084,
- 15.0781
- ],
- [
- -92.06088,
- 15.0771
- ],
- [
- -92.06111,
- 15.07612
- ],
- [
- -92.06154,
- 15.07522
- ],
- [
- -92.06213,
- 15.07442
- ],
- [
- -92.06288,
- 15.07375
- ],
- [
- -92.06374,
- 15.07324
- ],
- [
- -92.06706,
- 15.0717
- ],
- [
- -92.06937,
- 15.07022
- ],
- [
- -92.06927,
- 15.06917
- ],
- [
- -92.06841,
- 15.06741
- ],
- [
- -92.06704,
- 15.06374
- ],
- [
- -92.06694,
- 15.06281
- ],
- [
- -92.06703,
- 15.06188
- ],
- [
- -92.06758,
- 15.05883
- ],
- [
- -92.06793,
- 15.05769
- ],
- [
- -92.06904,
- 15.05519
- ],
- [
- -92.06955,
- 15.05431
- ],
- [
- -92.07215,
- 15.05061
- ],
- [
- -92.07727,
- 15.0421
- ],
- [
- -92.07822,
- 15.03923
- ],
- [
- -92.07935,
- 15.03636
- ],
- [
- -92.07993,
- 15.03356
- ],
- [
- -92.08077,
- 15.03078
- ],
- [
- -92.08219,
- 15.02776
- ],
- [
- -92.08313,
- 15.02647
- ],
- [
- -92.08466,
- 15.02493
- ],
- [
- -92.0862,
- 15.02313
- ],
- [
- -92.08735,
- 15.02215
- ],
- [
- -92.08909,
- 15.02106
- ],
- [
- -92.09098,
- 15.01927
- ],
- [
- -92.0938,
- 15.01737
- ],
- [
- -92.0963,
- 15.01626
- ],
- [
- -92.09757,
- 15.01589
- ],
- [
- -92.10076,
- 15.0154
- ],
- [
- -92.10286,
- 15.0147
- ],
- [
- -92.10403,
- 15.01446
- ],
- [
- -92.10712,
- 15.0142
- ],
- [
- -92.10994,
- 15.01369
- ],
- [
- -92.11444,
- 15.01361
- ],
- [
- -92.11543,
- 15.01371
- ],
- [
- -92.12283,
- 15.01516
- ],
- [
- -92.12328,
- 15.01503
- ],
- [
- -92.12425,
- 15.01398
- ],
- [
- -92.1259,
- 15.01257
- ],
- [
- -92.12758,
- 15.01063
- ],
- [
- -92.12924,
- 15.00896
- ],
- [
- -92.13132,
- 15.0074
- ],
- [
- -92.13313,
- 15.00538
- ],
- [
- -92.13731,
- 15.00256
- ],
- [
- -92.14034,
- 14.99953
- ],
- [
- -92.14176,
- 14.99758
- ],
- [
- -92.14312,
- 14.996
- ],
- [
- -92.145,
- 14.99265
- ],
- [
- -92.14575,
- 14.98889
- ],
- [
- -92.14536,
- 14.98673
- ],
- [
- -92.14514,
- 14.98452
- ],
- [
- -92.14331,
- 14.98171
- ],
- [
- -92.14108,
- 14.97674
- ],
- [
- -92.14077,
- 14.97582
- ],
- [
- -92.14065,
- 14.97486
- ],
- [
- -92.14071,
- 14.9739
- ],
- [
- -92.14095,
- 14.97296
- ],
- [
- -92.14287,
- 14.96961
- ],
- [
- -92.14254,
- 14.96762
- ],
- [
- -92.14238,
- 14.96403
- ],
- [
- -92.14202,
- 14.96109
- ],
- [
- -92.14202,
- 14.95927
- ],
- [
- -92.1427,
- 14.95512
- ],
- [
- -92.14343,
- 14.9526
- ],
- [
- -92.1439,
- 14.95145
- ],
- [
- -92.1439,
- 14.94999
- ],
- [
- -92.14361,
- 14.94832
- ],
- [
- -92.14312,
- 14.94742
- ],
- [
- -92.14233,
- 14.94661
- ],
- [
- -92.14043,
- 14.94544
- ],
- [
- -92.13957,
- 14.94477
- ],
- [
- -92.13888,
- 14.94392
- ],
- [
- -92.13839,
- 14.94295
- ],
- [
- -92.13812,
- 14.9419
- ],
- [
- -92.13769,
- 14.93891
- ],
- [
- -92.13764,
- 14.9381
- ],
- [
- -92.13794,
- 14.93649
- ],
- [
- -92.14038,
- 14.92999
- ],
- [
- -92.14041,
- 14.92961
- ],
- [
- -92.13978,
- 14.92742
- ],
- [
- -92.13941,
- 14.92539
- ],
- [
- -92.13847,
- 14.92235
- ],
- [
- -92.13826,
- 14.92132
- ],
- [
- -92.13792,
- 14.9175
- ],
- [
- -92.13794,
- 14.91641
- ],
- [
- -92.13837,
- 14.9131
- ],
- [
- -92.13905,
- 14.90996
- ],
- [
- -92.13827,
- 14.90811
- ],
- [
- -92.13743,
- 14.90533
- ],
- [
- -92.13724,
- 14.90434
- ],
- [
- -92.13668,
- 14.89791
- ],
- [
- -92.13669,
- 14.89698
- ],
- [
- -92.13688,
- 14.89606
- ],
- [
- -92.13793,
- 14.89269
- ],
- [
- -92.13904,
- 14.89019
- ],
- [
- -92.13954,
- 14.88931
- ],
- [
- -92.14254,
- 14.88523
- ],
- [
- -92.14427,
- 14.88257
- ],
- [
- -92.14756,
- 14.87954
- ],
- [
- -92.14831,
- 14.87804
- ],
- [
- -92.14924,
- 14.87674
- ],
- [
- -92.15618,
- 14.8698
- ],
- [
- -92.15707,
- 14.86909
- ],
- [
- -92.15898,
- 14.8679
- ],
- [
- -92.16124,
- 14.86604
- ],
- [
- -92.16568,
- 14.86326
- ],
- [
- -92.17033,
- 14.86091
- ],
- [
- -92.17338,
- 14.85901
- ],
- [
- -92.17454,
- 14.85702
- ],
- [
- -92.17557,
- 14.85582
- ],
- [
- -92.17609,
- 14.85425
- ],
- [
- -92.17659,
- 14.85318
- ],
- [
- -92.17767,
- 14.85146
- ],
- [
- -92.17858,
- 14.84887
- ],
- [
- -92.17954,
- 14.84697
- ],
- [
- -92.18078,
- 14.84307
- ],
- [
- -92.18002,
- 14.83403
- ],
- [
- -92.18,
- 14.83101
- ],
- [
- -92.17854,
- 14.82616
- ],
- [
- -92.17833,
- 14.82472
- ],
- [
- -92.17833,
- 14.82184
- ],
- [
- -92.17786,
- 14.81923
- ],
- [
- -92.1778,
- 14.81788
- ],
- [
- -92.17827,
- 14.81247
- ],
- [
- -92.17802,
- 14.81162
- ],
- [
- -92.17677,
- 14.81013
- ],
- [
- -92.17488,
- 14.80731
- ],
- [
- -92.17275,
- 14.80279
- ],
- [
- -92.1723,
- 14.80145
- ],
- [
- -92.17136,
- 14.79647
- ],
- [
- -92.17035,
- 14.79465
- ],
- [
- -92.16984,
- 14.79331
- ],
- [
- -92.16944,
- 14.79152
- ],
- [
- -92.16854,
- 14.7899
- ],
- [
- -92.16606,
- 14.78642
- ],
- [
- -92.16454,
- 14.78464
- ],
- [
- -92.16376,
- 14.78342
- ],
- [
- -92.16243,
- 14.78032
- ],
- [
- -92.1616,
- 14.77755
- ],
- [
- -92.16139,
- 14.77611
- ],
- [
- -92.16139,
- 14.77278
- ],
- [
- -92.16164,
- 14.7712
- ],
- [
- -92.16284,
- 14.76787
- ],
- [
- -92.16334,
- 14.76713
- ],
- [
- -92.16515,
- 14.76547
- ],
- [
- -92.16576,
- 14.76426
- ],
- [
- -92.16669,
- 14.76215
- ],
- [
- -92.16729,
- 14.76016
- ],
- [
- -92.1674,
- 14.7589
- ],
- [
- -92.16696,
- 14.75791
- ],
- [
- -92.16298,
- 14.75154
- ],
- [
- -92.16184,
- 14.74877
- ],
- [
- -92.15942,
- 14.74418
- ],
- [
- -92.15765,
- 14.74008
- ],
- [
- -92.15551,
- 14.7388
- ],
- [
- -92.15468,
- 14.73817
- ],
- [
- -92.154,
- 14.73738
- ],
- [
- -92.15349,
- 14.73647
- ],
- [
- -92.15124,
- 14.73111
- ],
- [
- -92.15077,
- 14.7292
- ],
- [
- -92.1483,
- 14.72695
- ],
- [
- -92.14477,
- 14.72228
- ],
- [
- -92.14341,
- 14.71854
- ],
- [
- -92.14315,
- 14.71736
- ],
- [
- -92.14319,
- 14.71615
- ],
- [
- -92.1436,
- 14.71355
- ],
- [
- -92.14331,
- 14.71094
- ],
- [
- -92.14428,
- 14.70553
- ],
- [
- -92.14196,
- 14.69637
- ],
- [
- -92.13995,
- 14.69371
- ],
- [
- -92.13858,
- 14.68974
- ],
- [
- -92.13837,
- 14.68886
- ],
- [
- -92.13833,
- 14.68796
- ],
- [
- -92.13845,
- 14.68707
- ],
- [
- -92.13873,
- 14.68621
- ],
- [
- -92.14197,
- 14.6812
- ],
- [
- -92.14262,
- 14.67958
- ],
- [
- -92.14262,
- 14.67706
- ],
- [
- -92.14312,
- 14.67375
- ],
- [
- -92.14298,
- 14.67051
- ],
- [
- -92.1426,
- 14.66744
- ],
- [
- -92.14146,
- 14.66524
- ],
- [
- -92.14111,
- 14.66439
- ],
- [
- -92.14093,
- 14.66348
- ],
- [
- -92.14109,
- 14.66039
- ],
- [
- -92.1413,
- 14.6593
- ],
- [
- -92.14175,
- 14.65828
- ],
- [
- -92.14241,
- 14.65738
- ],
- [
- -92.14354,
- 14.65617
- ],
- [
- -92.14462,
- 14.65422
- ],
- [
- -92.14532,
- 14.65324
- ],
- [
- -92.14624,
- 14.65246
- ],
- [
- -92.15054,
- 14.64964
- ],
- [
- -92.15373,
- 14.64781
- ],
- [
- -92.15473,
- 14.64738
- ],
- [
- -92.15756,
- 14.64651
- ],
- [
- -92.15781,
- 14.64629
- ],
- [
- -92.15814,
- 14.6448
- ],
- [
- -92.159,
- 14.64215
- ],
- [
- -92.15941,
- 14.64122
- ],
- [
- -92.15999,
- 14.64039
- ],
- [
- -92.16188,
- 14.63823
- ],
- [
- -92.16263,
- 14.63753
- ],
- [
- -92.1635,
- 14.63701
- ],
- [
- -92.16575,
- 14.63635
- ],
- [
- -92.16693,
- 14.63468
- ],
- [
- -92.1679,
- 14.63192
- ],
- [
- -92.16927,
- 14.62926
- ],
- [
- -92.17098,
- 14.62678
- ],
- [
- -92.17183,
- 14.62523
- ],
- [
- -92.17378,
- 14.62246
- ],
- [
- -92.17434,
- 14.6211
- ],
- [
- -92.17477,
- 14.61807
- ],
- [
- -92.17556,
- 14.61534
- ],
- [
- -92.17556,
- 14.6125
- ],
- [
- -92.17621,
- 14.60874
- ],
- [
- -92.17831,
- 14.60286
- ],
- [
- -92.17939,
- 14.60059
- ],
- [
- -92.17977,
- 14.59873
- ],
- [
- -92.1801,
- 14.59541
- ],
- [
- -92.18065,
- 14.59263
- ],
- [
- -92.18248,
- 14.58675
- ],
- [
- -92.18297,
- 14.5857
- ],
- [
- -92.18369,
- 14.5848
- ],
- [
- -92.18563,
- 14.58287
- ],
- [
- -92.18783,
- 14.581
- ],
- [
- -92.19176,
- 14.57812
- ],
- [
- -92.19367,
- 14.57628
- ],
- [
- -92.19545,
- 14.57494
- ],
- [
- -92.19636,
- 14.57388
- ],
- [
- -92.1976,
- 14.57154
- ],
- [
- -92.19899,
- 14.56959
- ],
- [
- -92.20092,
- 14.5673
- ],
- [
- -92.20182,
- 14.56649
- ],
- [
- -92.20402,
- 14.56493
- ],
- [
- -92.20624,
- 14.56354
- ],
- [
- -92.20889,
- 14.5623
- ],
- [
- -92.20993,
- 14.56156
- ],
- [
- -92.21073,
- 14.56063
- ],
- [
- -92.21132,
- 14.55931
- ],
- [
- -92.21162,
- 14.55779
- ],
- [
- -92.21113,
- 14.55208
- ],
- [
- -92.21121,
- 14.55069
- ],
- [
- -92.21176,
- 14.54791
- ],
- [
- -92.2121,
- 14.54686
- ],
- [
- -92.21266,
- 14.5459
- ],
- [
- -92.21341,
- 14.54509
- ],
- [
- -92.21536,
- 14.54343
- ],
- [
- -92.21607,
- 14.54291
- ],
- [
- -92.21687,
- 14.54254
- ],
- [
- -92.22077,
- 14.54175
- ],
- [
- -92.22212,
- 14.54169
- ],
- [
- -92.22517,
- 14.54196
- ],
- [
- -92.22632,
- 14.5422
- ],
- [
- -92.22737,
- 14.5427
- ],
- [
- -92.22939,
- 14.54397
- ],
- [
- -92.23315,
- 14.54574
- ],
- [
- -92.2354,
- 14.54615
- ],
- [
- -92.23755,
- 14.54635
- ],
- [
- -92.23935,
- 14.54602
- ],
- [
- -92.2438,
- 14.54404
- ],
- [
- -92.24479,
- 14.54372
- ],
- [
- -92.3367,
- 14.47672
- ],
- [
- -92.33752,
- 14.47624
- ],
- [
- -92.33841,
- 14.47592
- ],
- [
- -92.33936,
- 14.47577
- ],
- [
- -92.34031,
- 14.47581
- ],
- [
- -92.34124,
- 14.47602
- ],
- [
- -92.34211,
- 14.47641
- ],
- [
- -92.34289,
- 14.47696
- ],
- [
- -99.37488,
- 9.66464
- ],
- [
- -101.1689,
- 9.83098
- ],
- [
- -121.2843,
- 30.98696
- ],
- [
- -117.4801,
- 32.40539
- ],
- [
- -117.4735,
- 32.62548
- ],
- [
- -117.0921,
- 32.53754
- ],
- [
- -116.3541,
- 32.60111
- ],
- [
- -115.4673,
- 32.66952
- ],
- [
- -114.7174,
- 32.72067
- ],
- [
- -114.7466,
- 32.66068
- ],
- [
- -114.7641,
- 32.64011
- ],
- [
- -114.789,
- 32.61736
- ],
- [
- -114.8036,
- 32.61809
- ],
- [
- -114.79,
- 32.57192
- ],
- [
- -114.7877,
- 32.55741
- ],
- [
- -114.7976,
- 32.52018
- ],
- [
- -114.8053,
- 32.49885
- ],
- [
- -114.8002,
- 32.49255
- ],
- [
- -114.7475,
- 32.47765
- ],
- [
- -113.5061,
- 32.09818
- ],
- [
- -111.7104,
- 31.5435
- ],
- [
- -111.0753,
- 31.3357
- ],
- [
- -109.5437,
- 31.33466
- ],
- [
- -108.2159,
- 31.34054
- ],
- [
- -108.2112,
- 31.78584
- ],
- [
- -107.4606,
- 31.78624
- ],
- [
- -106.5279,
- 31.78465
- ],
- [
- -106.5192,
- 31.77455
- ],
- [
- -106.5125,
- 31.77015
- ],
- [
- -106.5098,
- 31.76152
- ],
- [
- -106.507,
- 31.76171
- ],
- [
- -106.5054,
- 31.76037
- ],
- [
- -106.4937,
- 31.75147
- ],
- [
- -106.4885,
- 31.74838
- ],
- [
- -106.4829,
- 31.7488
- ],
- [
- -106.4743,
- 31.75082
- ],
- [
- -106.4712,
- 31.75321
- ],
- [
- -106.4687,
- 31.75958
- ],
- [
- -106.4527,
- 31.76549
- ],
- [
- -106.4486,
- 31.76352
- ],
- [
- -106.4347,
- 31.75541
- ],
- [
- -106.4137,
- 31.75192
- ],
- [
- -106.3788,
- 31.73279
- ],
- [
- -106.3709,
- 31.71389
- ],
- [
- -106.347,
- 31.6984
- ],
- [
- -106.3318,
- 31.66628
- ],
- [
- -106.3082,
- 31.6365
- ],
- [
- -106.2975,
- 31.61314
- ],
- [
- -106.278,
- 31.56629
- ],
- [
- -106.2438,
- 31.54518
- ],
- [
- -106.1949,
- 31.47893
- ],
- [
- -106.1233,
- 31.43151
- ],
- [
- -106.002,
- 31.40007
- ],
- [
- -105.9471,
- 31.36233
- ],
- [
- -105.8614,
- 31.28737
- ],
- [
- -105.7837,
- 31.20434
- ],
- [
- -105.5968,
- 31.08854
- ],
- [
- -105.4541,
- 30.93583
- ],
- [
- -105.2974,
- 30.83294
- ],
- [
- -105.2063,
- 30.80763
- ],
- [
- -104.9913,
- 30.67752
- ],
- [
- -104.8969,
- 30.59322
- ],
- [
- -104.8151,
- 30.39009
- ],
- [
- -104.674,
- 30.21007
- ],
- [
- -104.6577,
- 29.92348
- ],
- [
- -104.5575,
- 29.78165
- ],
- [
- -104.5256,
- 29.69205
- ],
- [
- -104.5227,
- 29.66538
- ],
- [
- -104.4108,
- 29.58162
- ],
- [
- -104.3958,
- 29.57227
- ],
- [
- -104.3906,
- 29.55432
- ],
- [
- -104.3691,
- 29.54458
- ],
- [
- -104.3366,
- 29.52377
- ],
- [
- -104.3118,
- 29.53733
- ],
- [
- -104.2073,
- 29.49012
- ],
- [
- -104.0405,
- 29.33141
- ],
- [
- -103.7799,
- 29.273
- ],
- [
- -103.6855,
- 29.18883
- ],
- [
- -103.5468,
- 29.16426
- ],
- [
- -103.3914,
- 29.04546
- ],
- [
- -103.3301,
- 29.05125
- ],
- [
- -103.157,
- 28.9822
- ],
- [
- -103.1094,
- 29.06478
- ],
- [
- -103.0003,
- 29.18766
- ],
- [
- -102.9252,
- 29.20344
- ],
- [
- -102.8891,
- 29.34776
- ],
- [
- -102.8542,
- 29.38162
- ],
- [
- -102.8141,
- 29.52451
- ],
- [
- -102.7759,
- 29.59792
- ],
- [
- -102.7464,
- 29.63694
- ],
- [
- -102.6761,
- 29.74924
- ],
- [
- -102.5717,
- 29.77405
- ],
- [
- -102.497,
- 29.78913
- ],
- [
- -102.3947,
- 29.77389
- ],
- [
- -102.3643,
- 29.85102
- ],
- [
- -102.3294,
- 29.88456
- ],
- [
- -102.2463,
- 29.86696
- ],
- [
- -102.1867,
- 29.85054
- ],
- [
- -102.1472,
- 29.81151
- ],
- [
- -102.0795,
- 29.79603
- ],
- [
- -101.9741,
- 29.81889
- ],
- [
- -101.925,
- 29.79794
- ],
- [
- -101.8512,
- 29.80936
- ],
- [
- -101.8169,
- 29.81307
- ],
- [
- -101.677,
- 29.76841
- ],
- [
- -101.5432,
- 29.81422
- ],
- [
- -101.4579,
- 29.79249
- ],
- [
- -101.3977,
- 29.7746
- ],
- [
- -101.3609,
- 29.67596
- ],
- [
- -101.304,
- 29.6604
- ],
- [
- -101.2508,
- 29.63169
- ],
- [
- -101.2279,
- 29.57771
- ],
- [
- -101.2495,
- 29.53141
- ],
- [
- -101.1708,
- 29.51804
- ],
- [
- -101.1447,
- 29.48246
- ],
- [
- -101.0885,
- 29.47267
- ],
- [
- -101.0597,
- 29.45929
- ],
- [
- -101.0076,
- 29.37923
- ],
- [
- -100.9458,
- 29.34719
- ],
- [
- -100.8846,
- 29.30892
- ],
- [
- -100.8122,
- 29.26489
- ],
- [
- -100.7762,
- 29.22867
- ],
- [
- -100.7315,
- 29.13796
- ],
- [
- -100.6695,
- 29.11044
- ],
- [
- -100.6259,
- 28.91125
- ],
- [
- -100.5999,
- 28.90333
- ],
- [
- -100.5883,
- 28.88822
- ],
- [
- -100.5326,
- 28.80577
- ],
- [
- -100.5051,
- 28.74135
- ],
- [
- -100.5044,
- 28.71461
- ],
- [
- -100.5093,
- 28.70499
- ],
- [
- -100.4958,
- 28.66159
- ],
- [
- -100.4773,
- 28.66691
- ],
- [
- -100.4408,
- 28.64945
- ],
- [
- -100.3232,
- 28.50342
- ],
- [
- -100.3316,
- 28.40045
- ],
- [
- -100.2418,
- 28.2724
- ],
- [
- -100.1767,
- 28.19521
- ],
- [
- -100.1113,
- 28.1716
- ],
- [
- -100.0781,
- 28.14823
- ],
- [
- -100.0079,
- 28.06999
- ],
- [
- -99.98003,
- 28.00519
- ],
- [
- -99.92212,
- 27.98603
- ],
- [
- -99.82999,
- 27.77739
- ],
- [
- -99.81327,
- 27.78663
- ],
- [
- -99.7464,
- 27.71905
- ],
- [
- -99.70889,
- 27.66402
- ],
- [
- -99.68799,
- 27.67778
- ],
- [
- -99.63548,
- 27.63886
- ],
- [
- -99.62529,
- 27.64835
- ],
- [
- -99.59582,
- 27.64408
- ],
- [
- -99.56903,
- 27.61037
- ],
- [
- -99.55563,
- 27.61654
- ],
- [
- -99.53849,
- 27.60752
- ],
- [
- -99.51223,
- 27.5738
- ],
- [
- -99.50848,
- 27.56098
- ],
- [
- -99.51866,
- 27.52629
- ],
- [
- -99.52402,
- 27.50016
- ],
- [
- -99.49722,
- 27.50443
- ],
- [
- -99.47745,
- 27.49254
- ],
- [
- -98.87131,
- 26.41991
- ],
- [
- -97.24,
- 26.09441
- ],
- [
- -89.19655,
- 24.82478
- ],
- [
- -86.19429,
- 21.60805
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Instituto Nacional de Estadísticas y Geografía",
- "url": "https://www.inegi.org.mx/"
- },
- "available_projections": [
- "EPSG:4326"
- ],
- "country_code": "MX",
- "icon": "http://www3.inegi.org.mx/sistemas/widget/img/Inegi.png",
- "id": "inegi-wms",
- "license_url": "http://www.beta.inegi.org.mx/inegi/terminos.html",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "INEGI Digital Map of Mexico (WMS)",
- "type": "wms_endpoint",
- "url": "https://gaia.inegi.org.mx/NLB/mdm5.wms?Request=GetCapabilities&Version=1.1.1&Service=WMS"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -66.15007,
- 18.35002
- ],
- [
- -66.03337,
- 18.35002
- ],
- [
- -66.03328,
- 18.45634
- ],
- [
- -66.05464,
- 18.45636
- ],
- [
- -66.05463,
- 18.46542
- ],
- [
- -66.08303,
- 18.46544
- ],
- [
- -66.08302,
- 18.47451
- ],
- [
- -66.13034,
- 18.47455
- ],
- [
- -66.13034,
- 18.4796
- ],
- [
- -66.13983,
- 18.47961
- ],
- [
- -66.13984,
- 18.46557
- ],
- [
- -66.14995,
- 18.46558
- ],
- [
- -66.15007,
- 18.35002
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "end_date": "2013-03-15",
- "id": "SanJuanMetroAreaUSACEOrthophotos",
- "license_url": "https://wiki.openstreetmap.org/wiki/Puerto_Rico_Imagery#Recommended_imagery_for_the_San_Juan_Metro_Area:_2013_USACE_Orthophotos",
- "max_zoom": 20,
- "name": "San Juan Metro Area: 2013 USACE Orthophotos",
- "start_date": "2013-03-13",
- "type": "tms",
- "url": "http://imagery-pr-usace-2013.s3-website-us-east-1.amazonaws.com/tiles/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.1572,
- 68.722
- ],
- [
- -164.8554,
- 67.0255
- ],
- [
- -168.0022,
- 66.0018
- ],
- [
- -169.0087,
- 66.0015
- ],
- [
- -169.0075,
- 64.9988
- ],
- [
- -172.5143,
- 63.8767
- ],
- [
- -173.8197,
- 59.7401
- ],
- [
- -178.0001,
- 52.2446
- ],
- [
- -177.9993,
- 51.2554
- ],
- [
- -171.4689,
- 51.8215
- ],
- [
- -162.4025,
- 53.9567
- ],
- [
- -159.0076,
- 55.0025
- ],
- [
- -158.0191,
- 55.0028
- ],
- [
- -151.9963,
- 55.9992
- ],
- [
- -151.5003,
- 57.9988
- ],
- [
- -151.5013,
- 58.992
- ],
- [
- -138.516,
- 58.9953
- ],
- [
- -138.515,
- 57.9986
- ],
- [
- -133.9948,
- 54.0032
- ],
- [
- -130.0044,
- 54.0043
- ],
- [
- -130.0071,
- 57.0001
- ],
- [
- -131.9759,
- 56.9995
- ],
- [
- -135.123,
- 59.7566
- ],
- [
- -138.0072,
- 59.9918
- ],
- [
- -139.1716,
- 60.4127
- ],
- [
- -140.9874,
- 61.0119
- ],
- [
- -140.9684,
- 69.9535
- ],
- [
- -156.1769,
- 71.5633
- ],
- [
- -160.4136,
- 70.7398
- ],
- [
- -163.0218,
- 69.9707
- ],
- [
- -164.9717,
- 68.9947
- ],
- [
- -167.1572,
- 68.722
- ]
- ],
- [
- [
- -68.2,
- 17.8
- ],
- [
- -64.32,
- 17.38
- ],
- [
- -64.64,
- 18.36
- ],
- [
- -65.33,
- 18.57
- ],
- [
- -67.9,
- 18.67
- ],
- [
- -68.2,
- 17.8
- ]
- ],
- [
- [
- 146.2,
- 15.4
- ],
- [
- 145.7,
- 15.6
- ],
- [
- 144.2,
- 13.2
- ],
- [
- 144.8,
- 12.9
- ],
- [
- 146.2,
- 15.4
- ]
- ],
- [
- [
- 179.99,
- 52.2
- ],
- [
- 172,
- 53.5
- ],
- [
- 172,
- 52.5
- ],
- [
- 179.99,
- 51
- ],
- [
- 179.99,
- 52.2
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "description": "At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap",
- "end_date": "2014",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png",
- "id": "US-TIGER-Roads-2014",
- "max_zoom": 22,
- "name": "TIGER Roads 2014",
- "overlay": true,
- "start_date": "2014",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/enf.e0b8291e/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.1572,
- 68.722
- ],
- [
- -164.8554,
- 67.0255
- ],
- [
- -168.0022,
- 66.0018
- ],
- [
- -169.0087,
- 66.0015
- ],
- [
- -169.0075,
- 64.9988
- ],
- [
- -172.5143,
- 63.8767
- ],
- [
- -173.8197,
- 59.7401
- ],
- [
- -178.0001,
- 52.2446
- ],
- [
- -177.9993,
- 51.2554
- ],
- [
- -171.4689,
- 51.8215
- ],
- [
- -162.4025,
- 53.9567
- ],
- [
- -159.0076,
- 55.0025
- ],
- [
- -158.0191,
- 55.0028
- ],
- [
- -151.9963,
- 55.9992
- ],
- [
- -151.5003,
- 57.9988
- ],
- [
- -151.5013,
- 58.992
- ],
- [
- -138.516,
- 58.9953
- ],
- [
- -138.515,
- 57.9986
- ],
- [
- -133.9948,
- 54.0032
- ],
- [
- -130.0044,
- 54.0043
- ],
- [
- -130.0071,
- 57.0001
- ],
- [
- -131.9759,
- 56.9995
- ],
- [
- -135.123,
- 59.7566
- ],
- [
- -138.0072,
- 59.9918
- ],
- [
- -139.1716,
- 60.4127
- ],
- [
- -140.9874,
- 61.0119
- ],
- [
- -140.9684,
- 69.9535
- ],
- [
- -156.1769,
- 71.5633
- ],
- [
- -160.4136,
- 70.7398
- ],
- [
- -163.0218,
- 69.9707
- ],
- [
- -164.9717,
- 68.9947
- ],
- [
- -167.1572,
- 68.722
- ]
- ],
- [
- [
- -68.2,
- 17.8
- ],
- [
- -64.32,
- 17.38
- ],
- [
- -64.64,
- 18.36
- ],
- [
- -65.33,
- 18.57
- ],
- [
- -67.9,
- 18.67
- ],
- [
- -68.2,
- 17.8
- ]
- ],
- [
- [
- 146.2,
- 15.4
- ],
- [
- 145.7,
- 15.6
- ],
- [
- 144.2,
- 13.2
- ],
- [
- 144.8,
- 12.9
- ],
- [
- 146.2,
- 15.4
- ]
- ],
- [
- [
- 179.99,
- 52.2
- ],
- [
- 172,
- 53.5
- ],
- [
- 172,
- 52.5
- ],
- [
- 179.99,
- 51
- ],
- [
- 179.99,
- 52.2
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
- "end_date": "2017",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png",
- "id": "US-TIGER-Roads-2017",
- "max_zoom": 22,
- "name": "TIGER Roads 2017",
- "overlay": true,
- "start_date": "2017",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cj8dftc3q1ecn2tnx9qhwyj0c/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.1572,
- 68.722
- ],
- [
- -164.8554,
- 67.0255
- ],
- [
- -168.0022,
- 66.0018
- ],
- [
- -169.0087,
- 66.0015
- ],
- [
- -169.0075,
- 64.9988
- ],
- [
- -172.5143,
- 63.8767
- ],
- [
- -173.8197,
- 59.7401
- ],
- [
- -178.0001,
- 52.2446
- ],
- [
- -177.9993,
- 51.2554
- ],
- [
- -171.4689,
- 51.8215
- ],
- [
- -162.4025,
- 53.9567
- ],
- [
- -159.0076,
- 55.0025
- ],
- [
- -158.0191,
- 55.0028
- ],
- [
- -151.9963,
- 55.9992
- ],
- [
- -151.5003,
- 57.9988
- ],
- [
- -151.5013,
- 58.992
- ],
- [
- -138.516,
- 58.9953
- ],
- [
- -138.515,
- 57.9986
- ],
- [
- -133.9948,
- 54.0032
- ],
- [
- -130.0044,
- 54.0043
- ],
- [
- -130.0071,
- 57.0001
- ],
- [
- -131.9759,
- 56.9995
- ],
- [
- -135.123,
- 59.7566
- ],
- [
- -138.0072,
- 59.9918
- ],
- [
- -139.1716,
- 60.4127
- ],
- [
- -140.9874,
- 61.0119
- ],
- [
- -140.9684,
- 69.9535
- ],
- [
- -156.1769,
- 71.5633
- ],
- [
- -160.4136,
- 70.7398
- ],
- [
- -163.0218,
- 69.9707
- ],
- [
- -164.9717,
- 68.9947
- ],
- [
- -167.1572,
- 68.722
- ]
- ],
- [
- [
- -68.2,
- 17.8
- ],
- [
- -64.32,
- 17.38
- ],
- [
- -64.64,
- 18.36
- ],
- [
- -65.33,
- 18.57
- ],
- [
- -67.9,
- 18.67
- ],
- [
- -68.2,
- 17.8
- ]
- ],
- [
- [
- 146.2,
- 15.4
- ],
- [
- 145.7,
- 15.6
- ],
- [
- 144.2,
- 13.2
- ],
- [
- 144.8,
- 12.9
- ],
- [
- 146.2,
- 15.4
- ]
- ],
- [
- [
- 179.99,
- 52.2
- ],
- [
- 172,
- 53.5
- ],
- [
- 172,
- 52.5
- ],
- [
- 179.99,
- 51
- ],
- [
- 179.99,
- 52.2
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
- "end_date": "2018",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png",
- "id": "US-TIGER-Roads-2018",
- "max_zoom": 22,
- "name": "TIGER Roads 2018",
- "overlay": true,
- "start_date": "2018",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cjo1wbulo3ub82ro1c9onlzmh/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.1572,
- 68.722
- ],
- [
- -164.8554,
- 67.0255
- ],
- [
- -168.0022,
- 66.0018
- ],
- [
- -169.0087,
- 66.0015
- ],
- [
- -169.0075,
- 64.9988
- ],
- [
- -172.5143,
- 63.8767
- ],
- [
- -173.8197,
- 59.7401
- ],
- [
- -178.0001,
- 52.2446
- ],
- [
- -177.9993,
- 51.2554
- ],
- [
- -171.4689,
- 51.8215
- ],
- [
- -162.4025,
- 53.9567
- ],
- [
- -159.0076,
- 55.0025
- ],
- [
- -158.0191,
- 55.0028
- ],
- [
- -151.9963,
- 55.9992
- ],
- [
- -151.5003,
- 57.9988
- ],
- [
- -151.5013,
- 58.992
- ],
- [
- -138.516,
- 58.9953
- ],
- [
- -138.515,
- 57.9986
- ],
- [
- -133.9948,
- 54.0032
- ],
- [
- -130.0044,
- 54.0043
- ],
- [
- -130.0071,
- 57.0001
- ],
- [
- -131.9759,
- 56.9995
- ],
- [
- -135.123,
- 59.7566
- ],
- [
- -138.0072,
- 59.9918
- ],
- [
- -139.1716,
- 60.4127
- ],
- [
- -140.9874,
- 61.0119
- ],
- [
- -140.9684,
- 69.9535
- ],
- [
- -156.1769,
- 71.5633
- ],
- [
- -160.4136,
- 70.7398
- ],
- [
- -163.0218,
- 69.9707
- ],
- [
- -164.9717,
- 68.9947
- ],
- [
- -167.1572,
- 68.722
- ]
- ],
- [
- [
- -68.2,
- 17.8
- ],
- [
- -64.32,
- 17.38
- ],
- [
- -64.64,
- 18.36
- ],
- [
- -65.33,
- 18.57
- ],
- [
- -67.9,
- 18.67
- ],
- [
- -68.2,
- 17.8
- ]
- ],
- [
- [
- 146.2,
- 15.4
- ],
- [
- 145.7,
- 15.6
- ],
- [
- 144.2,
- 13.2
- ],
- [
- 144.8,
- 12.9
- ],
- [
- 146.2,
- 15.4
- ]
- ],
- [
- [
- 179.99,
- 52.2
- ],
- [
- 172,
- 53.5
- ],
- [
- 172,
- 52.5
- ],
- [
- 179.99,
- 51
- ],
- [
- 179.99,
- 52.2
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
- "end_date": "2019",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png",
- "id": "US-TIGER-Roads-2019",
- "max_zoom": 22,
- "name": "TIGER Roads 2019",
- "overlay": true,
- "privacy_policy_url": "https://www.mapbox.com/legal/privacy/",
- "start_date": "2019",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/ck0dxfa7602e61cmjk7p86749/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -123.25493,
- 48.7529
- ],
- [
- -123.25493,
- 48.55923
- ],
- [
- -123.19222,
- 48.55923
- ],
- [
- -123.19222,
- 48.43484
- ],
- [
- -122.94196,
- 48.43484
- ],
- [
- -122.94196,
- 48.37208
- ],
- [
- -122.88062,
- 48.37208
- ],
- [
- -122.88062,
- 48.30948
- ],
- [
- -122.81676,
- 48.30948
- ],
- [
- -122.81676,
- 48.19046
- ],
- [
- -123.00411,
- 48.19046
- ],
- [
- -123.00411,
- 48.12759
- ],
- [
- -123.05842,
- 48.12759
- ],
- [
- -123.05842,
- 48.19051
- ],
- [
- -123.25411,
- 48.19051
- ],
- [
- -123.25411,
- 48.1275
- ],
- [
- -123.37066,
- 48.1275
- ],
- [
- -123.37066,
- 48.19084
- ],
- [
- -124.05826,
- 48.19084
- ],
- [
- -124.05826,
- 48.25344
- ],
- [
- -124.18152,
- 48.25344
- ],
- [
- -124.18152,
- 48.31647
- ],
- [
- -124.43191,
- 48.31647
- ],
- [
- -124.43191,
- 48.37826
- ],
- [
- -124.55646,
- 48.37826
- ],
- [
- -124.55646,
- 48.44083
- ],
- [
- -124.75551,
- 48.44083
- ],
- [
- -124.75551,
- 48.1915
- ],
- [
- -124.81853,
- 48.1915
- ],
- [
- -124.81853,
- 48.12284
- ],
- [
- -124.7553,
- 48.12284
- ],
- [
- -124.7553,
- 47.55353
- ],
- [
- -124.38121,
- 47.55353
- ],
- [
- -124.38121,
- 47.12187
- ],
- [
- -124.19289,
- 47.12187
- ],
- [
- -124.19289,
- 43.75694
- ],
- [
- -124.44434,
- 43.75694
- ],
- [
- -124.44434,
- 43.14256
- ],
- [
- -124.63989,
- 43.14256
- ],
- [
- -124.63989,
- 42.61945
- ],
- [
- -124.44385,
- 42.61945
- ],
- [
- -124.44385,
- 39.80807
- ],
- [
- -123.88157,
- 39.80807
- ],
- [
- -123.88157,
- 39.11028
- ],
- [
- -123.75805,
- 39.11028
- ],
- [
- -123.75805,
- 38.49688
- ],
- [
- -123.27028,
- 38.49688
- ],
- [
- -123.27028,
- 37.93319
- ],
- [
- -122.81481,
- 37.93319
- ],
- [
- -122.81481,
- 37.80196
- ],
- [
- -122.56643,
- 37.80196
- ],
- [
- -122.56643,
- 36.93196
- ],
- [
- -121.8784,
- 36.93196
- ],
- [
- -121.8784,
- 36.68976
- ],
- [
- -122.00347,
- 36.68976
- ],
- [
- -122.00347,
- 36.43411
- ],
- [
- -121.94142,
- 36.43411
- ],
- [
- -121.94142,
- 35.92976
- ],
- [
- -121.5041,
- 35.92976
- ],
- [
- -121.5041,
- 35.81003
- ],
- [
- -121.37903,
- 35.81003
- ],
- [
- -121.37903,
- 35.42392
- ],
- [
- -120.94265,
- 35.42392
- ],
- [
- -120.94265,
- 35.18497
- ],
- [
- -120.8172,
- 35.18497
- ],
- [
- -120.8172,
- 35.12199
- ],
- [
- -120.69184,
- 35.12199
- ],
- [
- -120.69184,
- 34.49668
- ],
- [
- -120.50459,
- 34.49668
- ],
- [
- -120.50459,
- 34.43397
- ],
- [
- -120.00788,
- 34.43397
- ],
- [
- -120.00788,
- 34.36826
- ],
- [
- -119.52835,
- 34.36826
- ],
- [
- -119.52835,
- 34.05764
- ],
- [
- -119.0061,
- 34.05764
- ],
- [
- -119.0061,
- 33.99753
- ],
- [
- -118.50463,
- 33.99753
- ],
- [
- -118.50463,
- 33.86946
- ],
- [
- -118.44132,
- 33.86946
- ],
- [
- -118.44132,
- 33.68653
- ],
- [
- -118.06691,
- 33.68653
- ],
- [
- -118.06691,
- 33.30638
- ],
- [
- -117.503,
- 33.30638
- ],
- [
- -117.503,
- 33.05003
- ],
- [
- -117.31882,
- 33.05003
- ],
- [
- -117.31882,
- 32.62059
- ],
- [
- -117.1917,
- 32.62059
- ],
- [
- -117.1917,
- 32.49746
- ],
- [
- -116.7465,
- 32.49746
- ],
- [
- -116.7465,
- 32.56092
- ],
- [
- -115.99701,
- 32.56092
- ],
- [
- -115.99701,
- 32.62649
- ],
- [
- -114.88081,
- 32.62649
- ],
- [
- -114.88081,
- 32.43408
- ],
- [
- -114.62945,
- 32.43408
- ],
- [
- -114.62945,
- 32.37316
- ],
- [
- -114.44474,
- 32.37316
- ],
- [
- -114.44474,
- 32.30754
- ],
- [
- -114.25576,
- 32.30754
- ],
- [
- -114.25576,
- 32.24446
- ],
- [
- -114.06803,
- 32.24446
- ],
- [
- -114.06803,
- 32.18291
- ],
- [
- -113.81665,
- 32.18291
- ],
- [
- -113.81665,
- 32.12076
- ],
- [
- -113.63074,
- 32.12076
- ],
- [
- -113.63074,
- 32.05651
- ],
- [
- -113.44175,
- 32.05651
- ],
- [
- -113.44175,
- 31.99844
- ],
- [
- -113.2546,
- 31.99844
- ],
- [
- -113.2546,
- 31.93254
- ],
- [
- -113.06807,
- 31.93254
- ],
- [
- -113.06807,
- 31.87181
- ],
- [
- -112.81611,
- 31.87181
- ],
- [
- -112.81611,
- 31.81042
- ],
- [
- -112.63088,
- 31.81042
- ],
- [
- -112.63088,
- 31.74647
- ],
- [
- -112.44189,
- 31.74647
- ],
- [
- -112.44189,
- 31.6856
- ],
- [
- -112.25719,
- 31.6856
- ],
- [
- -112.25719,
- 31.62104
- ],
- [
- -112.00338,
- 31.62104
- ],
- [
- -112.00338,
- 31.55958
- ],
- [
- -111.81562,
- 31.55958
- ],
- [
- -111.81562,
- 31.49702
- ],
- [
- -111.62786,
- 31.49702
- ],
- [
- -111.62786,
- 31.43399
- ],
- [
- -111.4419,
- 31.43399
- ],
- [
- -111.4419,
- 31.37339
- ],
- [
- -111.25597,
- 31.37339
- ],
- [
- -111.25597,
- 31.31132
- ],
- [
- -108.18458,
- 31.31132
- ],
- [
- -108.18458,
- 31.74595
- ],
- [
- -106.50651,
- 31.74595
- ],
- [
- -106.50651,
- 31.68423
- ],
- [
- -106.37973,
- 31.68423
- ],
- [
- -106.37973,
- 31.62175
- ],
- [
- -106.31743,
- 31.62175
- ],
- [
- -106.31743,
- 31.49682
- ],
- [
- -106.25518,
- 31.49682
- ],
- [
- -106.25518,
- 31.43449
- ],
- [
- -106.19247,
- 31.43449
- ],
- [
- -106.19247,
- 31.37213
- ],
- [
- -106.00392,
- 31.37213
- ],
- [
- -106.00392,
- 31.30933
- ],
- [
- -105.94166,
- 31.30933
- ],
- [
- -105.94166,
- 31.24575
- ],
- [
- -105.87982,
- 31.24575
- ],
- [
- -105.87982,
- 31.18362
- ],
- [
- -105.81623,
- 31.18362
- ],
- [
- -105.81623,
- 31.12072
- ],
- [
- -105.69212,
- 31.12072
- ],
- [
- -105.69212,
- 31.05848
- ],
- [
- -105.63029,
- 31.05848
- ],
- [
- -105.63029,
- 30.93283
- ],
- [
- -105.50444,
- 30.93283
- ],
- [
- -105.50444,
- 30.87159
- ],
- [
- -105.4413,
- 30.87159
- ],
- [
- -105.4413,
- 30.80846
- ],
- [
- -105.37815,
- 30.80846
- ],
- [
- -105.37815,
- 30.74718
- ],
- [
- -105.19047,
- 30.74718
- ],
- [
- -105.19047,
- 30.68432
- ],
- [
- -105.12862,
- 30.68432
- ],
- [
- -105.12862,
- 30.61997
- ],
- [
- -105.00365,
- 30.61997
- ],
- [
- -105.00365,
- 30.55891
- ],
- [
- -104.9418,
- 30.55891
- ],
- [
- -104.9418,
- 30.49632
- ],
- [
- -104.8782,
- 30.49632
- ],
- [
- -104.8782,
- 30.30983
- ],
- [
- -104.81553,
- 30.30983
- ],
- [
- -104.81553,
- 30.24783
- ],
- [
- -104.75361,
- 30.24783
- ],
- [
- -104.75361,
- 29.93539
- ],
- [
- -104.69095,
- 29.93539
- ],
- [
- -104.69095,
- 29.80902
- ],
- [
- -104.62913,
- 29.80902
- ],
- [
- -104.62913,
- 29.68436
- ],
- [
- -104.56599,
- 29.68436
- ],
- [
- -104.56599,
- 29.62235
- ],
- [
- -104.50372,
- 29.62235
- ],
- [
- -104.50372,
- 29.55954
- ],
- [
- -104.44101,
- 29.55954
- ],
- [
- -104.44101,
- 29.49748
- ],
- [
- -104.25376,
- 29.49748
- ],
- [
- -104.25376,
- 29.37167
- ],
- [
- -104.1292,
- 29.37167
- ],
- [
- -104.1292,
- 29.30916
- ],
- [
- -104.06887,
- 29.30916
- ],
- [
- -104.06887,
- 29.24673
- ],
- [
- -103.81873,
- 29.24673
- ],
- [
- -103.81873,
- 29.18431
- ],
- [
- -103.75574,
- 29.18431
- ],
- [
- -103.75574,
- 29.12232
- ],
- [
- -103.56675,
- 29.12232
- ],
- [
- -103.56675,
- 29.05981
- ],
- [
- -103.50498,
- 29.05981
- ],
- [
- -103.50498,
- 28.99675
- ],
- [
- -103.31658,
- 28.99675
- ],
- [
- -103.31658,
- 28.93469
- ],
- [
- -103.05976,
- 28.93469
- ],
- [
- -103.05976,
- 29.0593
- ],
- [
- -102.99797,
- 29.0593
- ],
- [
- -102.99797,
- 29.12129
- ],
- [
- -102.93314,
- 29.12129
- ],
- [
- -102.93314,
- 29.18486
- ],
- [
- -102.8096,
- 29.18486
- ],
- [
- -102.8096,
- 29.25262
- ],
- [
- -102.87013,
- 29.25262
- ],
- [
- -102.87013,
- 29.3081
- ],
- [
- -102.80967,
- 29.3081
- ],
- [
- -102.80967,
- 29.37155
- ],
- [
- -102.74757,
- 29.37155
- ],
- [
- -102.74757,
- 29.55819
- ],
- [
- -102.68455,
- 29.55819
- ],
- [
- -102.68455,
- 29.68477
- ],
- [
- -102.49678,
- 29.68477
- ],
- [
- -102.49678,
- 29.74577
- ],
- [
- -102.30866,
- 29.74577
- ],
- [
- -102.30866,
- 29.80866
- ],
- [
- -102.19093,
- 29.80866
- ],
- [
- -102.19093,
- 29.74601
- ],
- [
- -101.50499,
- 29.74601
- ],
- [
- -101.50499,
- 29.68468
- ],
- [
- -101.38058,
- 29.68468
- ],
- [
- -101.38058,
- 29.55945
- ],
- [
- -101.31751,
- 29.55945
- ],
- [
- -101.31751,
- 29.49589
- ],
- [
- -101.19101,
- 29.49589
- ],
- [
- -101.19101,
- 29.43261
- ],
- [
- -101.0675,
- 29.43261
- ],
- [
- -101.0675,
- 29.30881
- ],
- [
- -100.94189,
- 29.30881
- ],
- [
- -100.94189,
- 29.24562
- ],
- [
- -100.81673,
- 29.24562
- ],
- [
- -100.81673,
- 29.11904
- ],
- [
- -100.75227,
- 29.11904
- ],
- [
- -100.75227,
- 29.05782
- ],
- [
- -100.69254,
- 29.05782
- ],
- [
- -100.69254,
- 28.87204
- ],
- [
- -100.62902,
- 28.87204
- ],
- [
- -100.62902,
- 28.80954
- ],
- [
- -100.56799,
- 28.80954
- ],
- [
- -100.56799,
- 28.62255
- ],
- [
- -100.50404,
- 28.62255
- ],
- [
- -100.50404,
- 28.55838
- ],
- [
- -100.44218,
- 28.55838
- ],
- [
- -100.44218,
- 28.49683
- ],
- [
- -100.37943,
- 28.49683
- ],
- [
- -100.37943,
- 28.30929
- ],
- [
- -100.31719,
- 28.30929
- ],
- [
- -100.31719,
- 28.18357
- ],
- [
- -100.25448,
- 28.18357
- ],
- [
- -100.25448,
- 28.12139
- ],
- [
- -100.12823,
- 28.12139
- ],
- [
- -100.12823,
- 28.05921
- ],
- [
- -100.06595,
- 28.05921
- ],
- [
- -100.06595,
- 27.99661
- ],
- [
- -100.00239,
- 27.99661
- ],
- [
- -100.00239,
- 27.93322
- ],
- [
- -99.94265,
- 27.93322
- ],
- [
- -99.94265,
- 27.74547
- ],
- [
- -99.81685,
- 27.74547
- ],
- [
- -99.81685,
- 27.68343
- ],
- [
- -99.75413,
- 27.68343
- ],
- [
- -99.75413,
- 27.62215
- ],
- [
- -99.62916,
- 27.62215
- ],
- [
- -99.62916,
- 27.5589
- ],
- [
- -99.56728,
- 27.5589
- ],
- [
- -99.56728,
- 27.43538
- ],
- [
- -99.50418,
- 27.43538
- ],
- [
- -99.50418,
- 27.3774
- ],
- [
- -99.56718,
- 27.3774
- ],
- [
- -99.56718,
- 27.24637
- ],
- [
- -99.50498,
- 27.24637
- ],
- [
- -99.50498,
- 26.99656
- ],
- [
- -99.44274,
- 26.99656
- ],
- [
- -99.44274,
- 26.8728
- ],
- [
- -99.38006,
- 26.8728
- ],
- [
- -99.38006,
- 26.80682
- ],
- [
- -99.31907,
- 26.80682
- ],
- [
- -99.31907,
- 26.74736
- ],
- [
- -99.25375,
- 26.74736
- ],
- [
- -99.25375,
- 26.62101
- ],
- [
- -99.19106,
- 26.62101
- ],
- [
- -99.19106,
- 26.49567
- ],
- [
- -99.13006,
- 26.49567
- ],
- [
- -99.13006,
- 26.37138
- ],
- [
- -99.00295,
- 26.37138
- ],
- [
- -99.00295,
- 26.30938
- ],
- [
- -98.81657,
- 26.30938
- ],
- [
- -98.81657,
- 26.24578
- ],
- [
- -98.69201,
- 26.24578
- ],
- [
- -98.69201,
- 26.18371
- ],
- [
- -98.44409,
- 26.18371
- ],
- [
- -98.44409,
- 26.12172
- ],
- [
- -98.38232,
- 26.12172
- ],
- [
- -98.38232,
- 26.05965
- ],
- [
- -98.25327,
- 26.05965
- ],
- [
- -98.25327,
- 25.99869
- ],
- [
- -98.01091,
- 25.99869
- ],
- [
- -98.01091,
- 25.99323
- ],
- [
- -97.69323,
- 25.99323
- ],
- [
- -97.69323,
- 25.93341
- ],
- [
- -97.63139,
- 25.93341
- ],
- [
- -97.63139,
- 25.86959
- ],
- [
- -97.50468,
- 25.86959
- ],
- [
- -97.50468,
- 25.80735
- ],
- [
- -97.30834,
- 25.80735
- ],
- [
- -97.30834,
- 25.87312
- ],
- [
- -97.24563,
- 25.87312
- ],
- [
- -97.24563,
- 25.93537
- ],
- [
- -97.11389,
- 25.93537
- ],
- [
- -97.11389,
- 27.68092
- ],
- [
- -97.0571,
- 27.68092
- ],
- [
- -97.0571,
- 27.81082
- ],
- [
- -95.58108,
- 27.81082
- ],
- [
- -95.58108,
- 28.74688
- ],
- [
- -94.27104,
- 28.74688
- ],
- [
- -94.27104,
- 29.55941
- ],
- [
- -92.50299,
- 29.55941
- ],
- [
- -92.50299,
- 29.49748
- ],
- [
- -91.87762,
- 29.49748
- ],
- [
- -91.87762,
- 29.3727
- ],
- [
- -91.37842,
- 29.3727
- ],
- [
- -91.37842,
- 29.24683
- ],
- [
- -91.3154,
- 29.24683
- ],
- [
- -91.3154,
- 29.18443
- ],
- [
- -91.12947,
- 29.18443
- ],
- [
- -91.12947,
- 29.12326
- ],
- [
- -91.00526,
- 29.12326
- ],
- [
- -91.00526,
- 28.99684
- ],
- [
- -89.45002,
- 28.99684
- ],
- [
- -89.45002,
- 28.86774
- ],
- [
- -88.81043,
- 28.86774
- ],
- [
- -88.81043,
- 30.18419
- ],
- [
- -85.87915,
- 30.18419
- ],
- [
- -85.87915,
- 29.5455
- ],
- [
- -84.83681,
- 29.5455
- ],
- [
- -84.83681,
- 29.62252
- ],
- [
- -84.74828,
- 29.62252
- ],
- [
- -84.74828,
- 29.68362
- ],
- [
- -84.68589,
- 29.68362
- ],
- [
- -84.68589,
- 29.74684
- ],
- [
- -83.6297,
- 29.74684
- ],
- [
- -83.6297,
- 29.43244
- ],
- [
- -83.31749,
- 29.43244
- ],
- [
- -83.31749,
- 29.05794
- ],
- [
- -82.87966,
- 29.05794
- ],
- [
- -82.87966,
- 27.74535
- ],
- [
- -82.81828,
- 27.74535
- ],
- [
- -82.81828,
- 26.92909
- ],
- [
- -82.37968,
- 26.92909
- ],
- [
- -82.37968,
- 26.36942
- ],
- [
- -81.87771,
- 26.36942
- ],
- [
- -81.87771,
- 25.80597
- ],
- [
- -81.50369,
- 25.80597
- ],
- [
- -81.50369,
- 25.74748
- ],
- [
- -81.44055,
- 25.74748
- ],
- [
- -81.44055,
- 25.68515
- ],
- [
- -81.31559,
- 25.68515
- ],
- [
- -81.31559,
- 25.5601
- ],
- [
- -81.25385,
- 25.5601
- ],
- [
- -81.25385,
- 25.43424
- ],
- [
- -81.1902,
- 25.43424
- ],
- [
- -81.1902,
- 25.12343
- ],
- [
- -81.12881,
- 25.12343
- ],
- [
- -81.12881,
- 25.06194
- ],
- [
- -81.06492,
- 25.06194
- ],
- [
- -81.06492,
- 24.81578
- ],
- [
- -81.62895,
- 24.81578
- ],
- [
- -81.62895,
- 24.75384
- ],
- [
- -81.69072,
- 24.75384
- ],
- [
- -81.69072,
- 24.68994
- ],
- [
- -81.81732,
- 24.68994
- ],
- [
- -81.81732,
- 24.62792
- ],
- [
- -82.191,
- 24.62792
- ],
- [
- -82.191,
- 24.49629
- ],
- [
- -81.62166,
- 24.49629
- ],
- [
- -81.62166,
- 24.55948
- ],
- [
- -81.37201,
- 24.55948
- ],
- [
- -81.37201,
- 24.62207
- ],
- [
- -81.05933,
- 24.62207
- ],
- [
- -81.05933,
- 24.68483
- ],
- [
- -80.93471,
- 24.68483
- ],
- [
- -80.93471,
- 24.74748
- ],
- [
- -80.74711,
- 24.74748
- ],
- [
- -80.74711,
- 24.81006
- ],
- [
- -80.36299,
- 24.81006
- ],
- [
- -80.36299,
- 25.11759
- ],
- [
- -80.12234,
- 25.11759
- ],
- [
- -80.12234,
- 25.74724
- ],
- [
- -80.05885,
- 25.74724
- ],
- [
- -80.05885,
- 26.37083
- ],
- [
- -79.99584,
- 26.37083
- ],
- [
- -79.99584,
- 26.9398
- ],
- [
- -80.05873,
- 26.9398
- ],
- [
- -80.05873,
- 27.12775
- ],
- [
- -80.12263,
- 27.12775
- ],
- [
- -80.12263,
- 27.25343
- ],
- [
- -80.1847,
- 27.25343
- ],
- [
- -80.1847,
- 27.37812
- ],
- [
- -80.24617,
- 27.37812
- ],
- [
- -80.24617,
- 27.56587
- ],
- [
- -80.30948,
- 27.56587
- ],
- [
- -80.30948,
- 27.75303
- ],
- [
- -80.37215,
- 27.75303
- ],
- [
- -80.37215,
- 27.87745
- ],
- [
- -80.43515,
- 27.87745
- ],
- [
- -80.43515,
- 28.00334
- ],
- [
- -80.49661,
- 28.00334
- ],
- [
- -80.49661,
- 28.12773
- ],
- [
- -80.55872,
- 28.12773
- ],
- [
- -80.55872,
- 28.37235
- ],
- [
- -80.49663,
- 28.37235
- ],
- [
- -80.49663,
- 29.51603
- ],
- [
- -81.12136,
- 29.51603
- ],
- [
- -81.12136,
- 31.6847
- ],
- [
- -80.60187,
- 31.6847
- ],
- [
- -80.60187,
- 32.24753
- ],
- [
- -79.4921,
- 32.24753
- ],
- [
- -79.4921,
- 32.99703
- ],
- [
- -79.11165,
- 32.99703
- ],
- [
- -79.11165,
- 33.37295
- ],
- [
- -78.61536,
- 33.37295
- ],
- [
- -78.61536,
- 33.80976
- ],
- [
- -77.9317,
- 33.80976
- ],
- [
- -77.9317,
- 33.87182
- ],
- [
- -77.86923,
- 33.87182
- ],
- [
- -77.86923,
- 34.05525
- ],
- [
- -77.68264,
- 34.05525
- ],
- [
- -77.68264,
- 34.29746
- ],
- [
- -77.24535,
- 34.29746
- ],
- [
- -77.24535,
- 34.55986
- ],
- [
- -76.49733,
- 34.55986
- ],
- [
- -76.49733,
- 34.6228
- ],
- [
- -76.43376,
- 34.6228
- ],
- [
- -76.43376,
- 34.68493
- ],
- [
- -76.37321,
- 34.68493
- ],
- [
- -76.37321,
- 34.74677
- ],
- [
- -76.30594,
- 34.74677
- ],
- [
- -76.30594,
- 34.80855
- ],
- [
- -76.2468,
- 34.80855
- ],
- [
- -76.2468,
- 34.87284
- ],
- [
- -76.18259,
- 34.87284
- ],
- [
- -76.18259,
- 34.93353
- ],
- [
- -76.12081,
- 34.93353
- ],
- [
- -76.12081,
- 34.99524
- ],
- [
- -75.9979,
- 34.99524
- ],
- [
- -75.9979,
- 35.05782
- ],
- [
- -75.87034,
- 35.05782
- ],
- [
- -75.87034,
- 35.12191
- ],
- [
- -75.74622,
- 35.12191
- ],
- [
- -75.74622,
- 35.18189
- ],
- [
- -75.49297,
- 35.18189
- ],
- [
- -75.49297,
- 35.3083
- ],
- [
- -75.43257,
- 35.3083
- ],
- [
- -75.43257,
- 35.75425
- ],
- [
- -75.49699,
- 35.75425
- ],
- [
- -75.49699,
- 37.81056
- ],
- [
- -75.3083,
- 37.81056
- ],
- [
- -75.3083,
- 37.87201
- ],
- [
- -75.2456,
- 37.87201
- ],
- [
- -75.2456,
- 37.99548
- ],
- [
- -75.18288,
- 37.99548
- ],
- [
- -75.18288,
- 38.05851
- ],
- [
- -75.11848,
- 38.05851
- ],
- [
- -75.11848,
- 38.24691
- ],
- [
- -75.05921,
- 38.24691
- ],
- [
- -75.05921,
- 38.37043
- ],
- [
- -74.99481,
- 38.37043
- ],
- [
- -74.99481,
- 38.87184
- ],
- [
- -74.48783,
- 38.87184
- ],
- [
- -74.48783,
- 39.30894
- ],
- [
- -74.17663,
- 39.30894
- ],
- [
- -74.17663,
- 39.62247
- ],
- [
- -74.0567,
- 39.62247
- ],
- [
- -74.0567,
- 39.93318
- ],
- [
- -73.9959,
- 39.93318
- ],
- [
- -73.9959,
- 40.18549
- ],
- [
- -73.93416,
- 40.18549
- ],
- [
- -73.93416,
- 40.49595
- ],
- [
- -73.8723,
- 40.49595
- ],
- [
- -73.8723,
- 40.55271
- ],
- [
- -71.80745,
- 40.55271
- ],
- [
- -71.80745,
- 41.3088
- ],
- [
- -70.88251,
- 41.3088
- ],
- [
- -70.88251,
- 41.18498
- ],
- [
- -70.74619,
- 41.18498
- ],
- [
- -70.74619,
- 41.30919
- ],
- [
- -70.43376,
- 41.30919
- ],
- [
- -70.43376,
- 41.49639
- ],
- [
- -69.93343,
- 41.49639
- ],
- [
- -69.93343,
- 41.62308
- ],
- [
- -69.86986,
- 41.62308
- ],
- [
- -69.86986,
- 41.87769
- ],
- [
- -69.93579,
- 41.87769
- ],
- [
- -69.93579,
- 42.00323
- ],
- [
- -69.99758,
- 42.00323
- ],
- [
- -69.99758,
- 42.06502
- ],
- [
- -70.06061,
- 42.06502
- ],
- [
- -70.06061,
- 42.12943
- ],
- [
- -70.55729,
- 42.12943
- ],
- [
- -70.55729,
- 43.24871
- ],
- [
- -70.49741,
- 43.24871
- ],
- [
- -70.49741,
- 43.30922
- ],
- [
- -70.37042,
- 43.30922
- ],
- [
- -70.37042,
- 43.37196
- ],
- [
- -70.30857,
- 43.37196
- ],
- [
- -70.30857,
- 43.49699
- ],
- [
- -70.18392,
- 43.49699
- ],
- [
- -70.18392,
- 43.62235
- ],
- [
- -70.05758,
- 43.62235
- ],
- [
- -70.05758,
- 43.68502
- ],
- [
- -69.74552,
- 43.68502
- ],
- [
- -69.74552,
- 43.74766
- ],
- [
- -69.24728,
- 43.74766
- ],
- [
- -69.24728,
- 43.8107
- ],
- [
- -69.05607,
- 43.8107
- ],
- [
- -69.05607,
- 43.87172
- ],
- [
- -68.99505,
- 43.87172
- ],
- [
- -68.99505,
- 43.9982
- ],
- [
- -68.49637,
- 43.9982
- ],
- [
- -68.49637,
- 44.05974
- ],
- [
- -68.3081,
- 44.05974
- ],
- [
- -68.3081,
- 44.12214
- ],
- [
- -68.18518,
- 44.12214
- ],
- [
- -68.18518,
- 44.30814
- ],
- [
- -67.9956,
- 44.30814
- ],
- [
- -67.9956,
- 44.37275
- ],
- [
- -67.8103,
- 44.37275
- ],
- [
- -67.8103,
- 44.43518
- ],
- [
- -67.49653,
- 44.43518
- ],
- [
- -67.49653,
- 44.49688
- ],
- [
- -67.37102,
- 44.49688
- ],
- [
- -67.37102,
- 44.56006
- ],
- [
- -67.18488,
- 44.56006
- ],
- [
- -67.18488,
- 44.62133
- ],
- [
- -67.12212,
- 44.62133
- ],
- [
- -67.12212,
- 44.68679
- ],
- [
- -67.05936,
- 44.68679
- ],
- [
- -67.05936,
- 44.74737
- ],
- [
- -66.93111,
- 44.74737
- ],
- [
- -66.93111,
- 44.94066
- ],
- [
- -66.99468,
- 44.94066
- ],
- [
- -66.99468,
- 45.00245
- ],
- [
- -67.05958,
- 45.00245
- ],
- [
- -67.05958,
- 45.12734
- ],
- [
- -67.1202,
- 45.12734
- ],
- [
- -67.1202,
- 45.19101
- ],
- [
- -67.24698,
- 45.19101
- ],
- [
- -67.24698,
- 45.25344
- ],
- [
- -67.31775,
- 45.25344
- ],
- [
- -67.31775,
- 45.18984
- ],
- [
- -67.37075,
- 45.18984
- ],
- [
- -67.37075,
- 45.2534
- ],
- [
- -67.43269,
- 45.2534
- ],
- [
- -67.43269,
- 45.30834
- ],
- [
- -67.37086,
- 45.30834
- ],
- [
- -67.37086,
- 45.4397
- ],
- [
- -67.43056,
- 45.4397
- ],
- [
- -67.43056,
- 45.49501
- ],
- [
- -67.37099,
- 45.49501
- ],
- [
- -67.37099,
- 45.62645
- ],
- [
- -67.6215,
- 45.62645
- ],
- [
- -67.6215,
- 45.68961
- ],
- [
- -67.68383,
- 45.68961
- ],
- [
- -67.68383,
- 45.75326
- ],
- [
- -67.74621,
- 45.75326
- ],
- [
- -67.74621,
- 47.12682
- ],
- [
- -67.87001,
- 47.12682
- ],
- [
- -67.87001,
- 47.19003
- ],
- [
- -67.93238,
- 47.19003
- ],
- [
- -67.93238,
- 47.25397
- ],
- [
- -67.99594,
- 47.25397
- ],
- [
- -67.99594,
- 47.31497
- ],
- [
- -68.12067,
- 47.31497
- ],
- [
- -68.12067,
- 47.37808
- ],
- [
- -68.44232,
- 47.37808
- ],
- [
- -68.44232,
- 47.31661
- ],
- [
- -68.63143,
- 47.31661
- ],
- [
- -68.63143,
- 47.25447
- ],
- [
- -68.9978,
- 47.25447
- ],
- [
- -68.9978,
- 47.43989
- ],
- [
- -69.06072,
- 47.43989
- ],
- [
- -69.06072,
- 47.50476
- ],
- [
- -69.25381,
- 47.50476
- ],
- [
- -69.25381,
- 47.43981
- ],
- [
- -69.31793,
- 47.43981
- ],
- [
- -69.31793,
- 47.3786
- ],
- [
- -69.44385,
- 47.3786
- ],
- [
- -69.44385,
- 47.31563
- ],
- [
- -69.50382,
- 47.31563
- ],
- [
- -69.50382,
- 47.25258
- ],
- [
- -69.56678,
- 47.25258
- ],
- [
- -69.56678,
- 47.19109
- ],
- [
- -69.63035,
- 47.19109
- ],
- [
- -69.63035,
- 47.1287
- ],
- [
- -69.69331,
- 47.1287
- ],
- [
- -69.69331,
- 47.06543
- ],
- [
- -69.75571,
- 47.06543
- ],
- [
- -69.75571,
- 47.00428
- ],
- [
- -69.81804,
- 47.00428
- ],
- [
- -69.81804,
- 46.94153
- ],
- [
- -69.8804,
- 46.94153
- ],
- [
- -69.8804,
- 46.87925
- ],
- [
- -69.94217,
- 46.87925
- ],
- [
- -69.94217,
- 46.81774
- ],
- [
- -70.00631,
- 46.81774
- ],
- [
- -70.00631,
- 46.69203
- ],
- [
- -70.07043,
- 46.69203
- ],
- [
- -70.07043,
- 46.44259
- ],
- [
- -70.19459,
- 46.44259
- ],
- [
- -70.19459,
- 46.37859
- ],
- [
- -70.2562,
- 46.37859
- ],
- [
- -70.2562,
- 46.31526
- ],
- [
- -70.32037,
- 46.31526
- ],
- [
- -70.32037,
- 46.06512
- ],
- [
- -70.3815,
- 46.06512
- ],
- [
- -70.3815,
- 45.93552
- ],
- [
- -70.32016,
- 45.93552
- ],
- [
- -70.32016,
- 45.87948
- ],
- [
- -70.44931,
- 45.87948
- ],
- [
- -70.44931,
- 45.75387
- ],
- [
- -70.507,
- 45.75387
- ],
- [
- -70.507,
- 45.69169
- ],
- [
- -70.63166,
- 45.69169
- ],
- [
- -70.63166,
- 45.62916
- ],
- [
- -70.75755,
- 45.62916
- ],
- [
- -70.75755,
- 45.44147
- ],
- [
- -70.88099,
- 45.44147
- ],
- [
- -70.88099,
- 45.37806
- ],
- [
- -71.13328,
- 45.37806
- ],
- [
- -71.13328,
- 45.31515
- ],
- [
- -71.38303,
- 45.31515
- ],
- [
- -71.38303,
- 45.25342
- ],
- [
- -71.50764,
- 45.25342
- ],
- [
- -71.50764,
- 45.06557
- ],
- [
- -73.94189,
- 45.06557
- ],
- [
- -73.94189,
- 45.00312
- ],
- [
- -74.74697,
- 45.00312
- ],
- [
- -74.74697,
- 45.0649
- ],
- [
- -74.8801,
- 45.0649
- ],
- [
- -74.8801,
- 45.0029
- ],
- [
- -75.06625,
- 45.0029
- ],
- [
- -75.06625,
- 44.94152
- ],
- [
- -75.25394,
- 44.94152
- ],
- [
- -75.25394,
- 44.8776
- ],
- [
- -75.37896,
- 44.8776
- ],
- [
- -75.37896,
- 44.81535
- ],
- [
- -75.44313,
- 44.81535
- ],
- [
- -75.44313,
- 44.75361
- ],
- [
- -75.56666,
- 44.75361
- ],
- [
- -75.56666,
- 44.69099
- ],
- [
- -75.62902,
- 44.69099
- ],
- [
- -75.62902,
- 44.6285
- ],
- [
- -75.75405,
- 44.6285
- ],
- [
- -75.75405,
- 44.56638
- ],
- [
- -75.81731,
- 44.56638
- ],
- [
- -75.81731,
- 44.50289
- ],
- [
- -75.87995,
- 44.50289
- ],
- [
- -75.87995,
- 44.37849
- ],
- [
- -76.13003,
- 44.37849
- ],
- [
- -76.13003,
- 44.31592
- ],
- [
- -76.1927,
- 44.31592
- ],
- [
- -76.1927,
- 44.25344
- ],
- [
- -76.31826,
- 44.25344
- ],
- [
- -76.31826,
- 44.19167
- ],
- [
- -76.3793,
- 44.19167
- ],
- [
- -76.3793,
- 44.06537
- ],
- [
- -76.44276,
- 44.06537
- ],
- [
- -76.44276,
- 43.99638
- ],
- [
- -76.31703,
- 43.99638
- ],
- [
- -76.31703,
- 43.94146
- ],
- [
- -76.50766,
- 43.94146
- ],
- [
- -76.50766,
- 43.87233
- ],
- [
- -76.383,
- 43.87233
- ],
- [
- -76.383,
- 43.80919
- ],
- [
- -76.25341,
- 43.80919
- ],
- [
- -76.25341,
- 43.56652
- ],
- [
- -76.50648,
- 43.56652
- ],
- [
- -76.50648,
- 43.50339
- ],
- [
- -76.63312,
- 43.50339
- ],
- [
- -76.63312,
- 43.44323
- ],
- [
- -76.69511,
- 43.44323
- ],
- [
- -76.69511,
- 43.37869
- ],
- [
- -76.81778,
- 43.37869
- ],
- [
- -76.81778,
- 43.31807
- ],
- [
- -77.682,
- 43.31807
- ],
- [
- -77.682,
- 43.37894
- ],
- [
- -78.05659,
- 43.37894
- ],
- [
- -78.05659,
- 43.43969
- ],
- [
- -78.43897,
- 43.43969
- ],
- [
- -78.43897,
- 43.37944
- ],
- [
- -78.88034,
- 43.37944
- ],
- [
- -78.88034,
- 43.31497
- ],
- [
- -79.12989,
- 43.31497
- ],
- [
- -79.12989,
- 43.24293
- ],
- [
- -79.06696,
- 43.24293
- ],
- [
- -79.06696,
- 43.12999
- ],
- [
- -79.12989,
- 43.12999
- ],
- [
- -79.12989,
- 43.05773
- ],
- [
- -79.07126,
- 43.05773
- ],
- [
- -79.07126,
- 42.92949
- ],
- [
- -78.94326,
- 42.92949
- ],
- [
- -78.94326,
- 42.75422
- ],
- [
- -79.06944,
- 42.75422
- ],
- [
- -79.06944,
- 42.69416
- ],
- [
- -79.13344,
- 42.69416
- ],
- [
- -79.13344,
- 42.6297
- ],
- [
- -79.19475,
- 42.6297
- ],
- [
- -79.19475,
- 42.56635
- ],
- [
- -79.37868,
- 42.56635
- ],
- [
- -79.37868,
- 42.50334
- ],
- [
- -79.4443,
- 42.50334
- ],
- [
- -79.4443,
- 42.44106
- ],
- [
- -79.56799,
- 42.44106
- ],
- [
- -79.56799,
- 42.37753
- ],
- [
- -79.69062,
- 42.37753
- ],
- [
- -79.69062,
- 42.31711
- ],
- [
- -79.81646,
- 42.31711
- ],
- [
- -79.81646,
- 42.25345
- ],
- [
- -80.00524,
- 42.25345
- ],
- [
- -80.00524,
- 42.19092
- ],
- [
- -80.19168,
- 42.19092
- ],
- [
- -80.19168,
- 42.12726
- ],
- [
- -80.3168,
- 42.12726
- ],
- [
- -80.3168,
- 42.06699
- ],
- [
- -80.50632,
- 42.06699
- ],
- [
- -80.50632,
- 42.00343
- ],
- [
- -80.69305,
- 42.00343
- ],
- [
- -80.69305,
- 41.94151
- ],
- [
- -80.94404,
- 41.94151
- ],
- [
- -80.94404,
- 41.87812
- ],
- [
- -81.19427,
- 41.87812
- ],
- [
- -81.19427,
- 41.81665
- ],
- [
- -81.31901,
- 41.81665
- ],
- [
- -81.31901,
- 41.75455
- ],
- [
- -81.44184,
- 41.75455
- ],
- [
- -81.44184,
- 41.69096
- ],
- [
- -81.50535,
- 41.69096
- ],
- [
- -81.50535,
- 41.63016
- ],
- [
- -82.74701,
- 41.63016
- ],
- [
- -82.74701,
- 41.75369
- ],
- [
- -82.88391,
- 41.75369
- ],
- [
- -82.88391,
- 41.56561
- ],
- [
- -82.99572,
- 41.56561
- ],
- [
- -82.99572,
- 41.62704
- ],
- [
- -83.12578,
- 41.62704
- ],
- [
- -83.12578,
- 41.68784
- ],
- [
- -83.24747,
- 41.68784
- ],
- [
- -83.24747,
- 41.75369
- ],
- [
- -83.37373,
- 41.75369
- ],
- [
- -83.37373,
- 41.80928
- ],
- [
- -83.3106,
- 41.80928
- ],
- [
- -83.3106,
- 41.87161
- ],
- [
- -83.24747,
- 41.87161
- ],
- [
- -83.24747,
- 41.93614
- ],
- [
- -83.18434,
- 41.93614
- ],
- [
- -83.18434,
- 41.99609
- ],
- [
- -83.12077,
- 41.99609
- ],
- [
- -83.12077,
- 42.24648
- ],
- [
- -83.05892,
- 42.24648
- ],
- [
- -83.05892,
- 42.30896
- ],
- [
- -82.86853,
- 42.30896
- ],
- [
- -82.86853,
- 42.37177
- ],
- [
- -82.80722,
- 42.37177
- ],
- [
- -82.80722,
- 42.55855
- ],
- [
- -82.75537,
- 42.55855
- ],
- [
- -82.75537,
- 42.49549
- ],
- [
- -82.5599,
- 42.49549
- ],
- [
- -82.5599,
- 42.55855
- ],
- [
- -82.49678,
- 42.55855
- ],
- [
- -82.49678,
- 42.68336
- ],
- [
- -82.43289,
- 42.68336
- ],
- [
- -82.43289,
- 42.93422
- ],
- [
- -82.37006,
- 42.93422
- ],
- [
- -82.37006,
- 43.06481
- ],
- [
- -82.43289,
- 43.06481
- ],
- [
- -82.43289,
- 43.19176
- ],
- [
- -82.49475,
- 43.19176
- ],
- [
- -82.49475,
- 43.50346
- ],
- [
- -82.55713,
- 43.50346
- ],
- [
- -82.55713,
- 43.81609
- ],
- [
- -82.61979,
- 43.81609
- ],
- [
- -82.61979,
- 43.94221
- ],
- [
- -82.68395,
- 43.94221
- ],
- [
- -82.68395,
- 44.00226
- ],
- [
- -82.74653,
- 44.00226
- ],
- [
- -82.74653,
- 44.06705
- ],
- [
- -82.87087,
- 44.06705
- ],
- [
- -82.87087,
- 44.12919
- ],
- [
- -83.00852,
- 44.12919
- ],
- [
- -83.00852,
- 44.06648
- ],
- [
- -83.13361,
- 44.06648
- ],
- [
- -83.13361,
- 44.00539
- ],
- [
- -83.24145,
- 44.00539
- ],
- [
- -83.24145,
- 44.9962
- ],
- [
- -83.18061,
- 44.9962
- ],
- [
- -83.18061,
- 45.0673
- ],
- [
- -83.24552,
- 45.0673
- ],
- [
- -83.24552,
- 45.12874
- ],
- [
- -83.30659,
- 45.12874
- ],
- [
- -83.30659,
- 45.25515
- ],
- [
- -83.37061,
- 45.25515
- ],
- [
- -83.37061,
- 45.31659
- ],
- [
- -83.43256,
- 45.31659
- ],
- [
- -83.43256,
- 45.37921
- ],
- [
- -83.61784,
- 45.37921
- ],
- [
- -83.61784,
- 45.44197
- ],
- [
- -83.80843,
- 45.44197
- ],
- [
- -83.80843,
- 45.50362
- ],
- [
- -84.05507,
- 45.50362
- ],
- [
- -84.05507,
- 45.56479
- ],
- [
- -84.12352,
- 45.56479
- ],
- [
- -84.12352,
- 45.62878
- ],
- [
- -84.18075,
- 45.62878
- ],
- [
- -84.18075,
- 45.69147
- ],
- [
- -84.31116,
- 45.69147
- ],
- [
- -84.31116,
- 45.93371
- ],
- [
- -83.821,
- 45.93371
- ],
- [
- -83.821,
- 45.87251
- ],
- [
- -83.49681,
- 45.87251
- ],
- [
- -83.49681,
- 45.93371
- ],
- [
- -83.43381,
- 45.93371
- ],
- [
- -83.43381,
- 46.00169
- ],
- [
- -83.49627,
- 46.00169
- ],
- [
- -83.49627,
- 46.06682
- ],
- [
- -83.56,
- 46.06682
- ],
- [
- -83.56,
- 46.12616
- ],
- [
- -83.99546,
- 46.12616
- ],
- [
- -83.99546,
- 46.19317
- ],
- [
- -84.05918,
- 46.19317
- ],
- [
- -84.05918,
- 46.3815
- ],
- [
- -84.11526,
- 46.3815
- ],
- [
- -84.11526,
- 46.49536
- ],
- [
- -84.05918,
- 46.49536
- ],
- [
- -84.05918,
- 46.56827
- ],
- [
- -84.25795,
- 46.56827
- ],
- [
- -84.25795,
- 46.50512
- ],
- [
- -84.30719,
- 46.50512
- ],
- [
- -84.30719,
- 46.56827
- ],
- [
- -84.44154,
- 46.56827
- ],
- [
- -84.44154,
- 46.50453
- ],
- [
- -84.99657,
- 46.50453
- ],
- [
- -84.99657,
- 46.68429
- ],
- [
- -84.92982,
- 46.68429
- ],
- [
- -84.92982,
- 46.81808
- ],
- [
- -85.31659,
- 46.81808
- ],
- [
- -85.31659,
- 46.75358
- ],
- [
- -87.55626,
- 46.75358
- ],
- [
- -87.55626,
- 47.44074
- ],
- [
- -87.68254,
- 47.44074
- ],
- [
- -87.68254,
- 47.50356
- ],
- [
- -88.25607,
- 47.50356
- ],
- [
- -88.25607,
- 47.44337
- ],
- [
- -88.44174,
- 47.44337
- ],
- [
- -88.44174,
- 47.37899
- ],
- [
- -88.50683,
- 47.37899
- ],
- [
- -88.50683,
- 47.31539
- ],
- [
- -88.63128,
- 47.31539
- ],
- [
- -88.63128,
- 47.25398
- ],
- [
- -88.75696,
- 47.25398
- ],
- [
- -88.75696,
- 47.19347
- ],
- [
- -88.88383,
- 47.19347
- ],
- [
- -88.88383,
- 47.12847
- ],
- [
- -88.94342,
- 47.12847
- ],
- [
- -88.94342,
- 47.06621
- ],
- [
- -89.07087,
- 47.06621
- ],
- [
- -89.07087,
- 47.00268
- ],
- [
- -89.25656,
- 47.00268
- ],
- [
- -89.25656,
- 46.94108
- ],
- [
- -90.36777,
- 46.94108
- ],
- [
- -90.36777,
- 47.68448
- ],
- [
- -90.307,
- 47.68448
- ],
- [
- -90.307,
- 47.74602
- ],
- [
- -89.99486,
- 47.74602
- ],
- [
- -89.99486,
- 47.80827
- ],
- [
- -89.80486,
- 47.80827
- ],
- [
- -89.80486,
- 47.87006
- ],
- [
- -89.67977,
- 47.87006
- ],
- [
- -89.67977,
- 47.93396
- ],
- [
- -89.49338,
- 47.93396
- ],
- [
- -89.49338,
- 47.9958
- ],
- [
- -89.42847,
- 47.9958
- ],
- [
- -89.42847,
- 48.06564
- ],
- [
- -89.99327,
- 48.06564
- ],
- [
- -89.99327,
- 48.1283
- ],
- [
- -90.74559,
- 48.1283
- ],
- [
- -90.74559,
- 48.18931
- ],
- [
- -90.80873,
- 48.18931
- ],
- [
- -90.80873,
- 48.25221
- ],
- [
- -91.06776,
- 48.25221
- ],
- [
- -91.06776,
- 48.19167
- ],
- [
- -91.19462,
- 48.19167
- ],
- [
- -91.19462,
- 48.1279
- ],
- [
- -91.68142,
- 48.1279
- ],
- [
- -91.68142,
- 48.2526
- ],
- [
- -91.93219,
- 48.2526
- ],
- [
- -91.93219,
- 48.31425
- ],
- [
- -91.99297,
- 48.31425
- ],
- [
- -91.99297,
- 48.37808
- ],
- [
- -92.31894,
- 48.37808
- ],
- [
- -92.31894,
- 48.25291
- ],
- [
- -92.37322,
- 48.25291
- ],
- [
- -92.37322,
- 48.31534
- ],
- [
- -92.43223,
- 48.31534
- ],
- [
- -92.43223,
- 48.44114
- ],
- [
- -92.49772,
- 48.44114
- ],
- [
- -92.49772,
- 48.50178
- ],
- [
- -92.56794,
- 48.50178
- ],
- [
- -92.56794,
- 48.43958
- ],
- [
- -92.62105,
- 48.43958
- ],
- [
- -92.62105,
- 48.56508
- ],
- [
- -92.80868,
- 48.56508
- ],
- [
- -92.80868,
- 48.62869
- ],
- [
- -92.80868,
- 48.62674
- ],
- [
- -92.93318,
- 48.62674
- ],
- [
- -92.93318,
- 48.69221
- ],
- [
- -93.00517,
- 48.69221
- ],
- [
- -93.00517,
- 48.6283
- ],
- [
- -93.12259,
- 48.6283
- ],
- [
- -93.12259,
- 48.69221
- ],
- [
- -93.31908,
- 48.69221
- ],
- [
- -93.31908,
- 48.62674
- ],
- [
- -93.50495,
- 48.62674
- ],
- [
- -93.50495,
- 48.56352
- ],
- [
- -93.74746,
- 48.56352
- ],
- [
- -93.74746,
- 48.62674
- ],
- [
- -93.81355,
- 48.62674
- ],
- [
- -93.81355,
- 48.68988
- ],
- [
- -94.24531,
- 48.68988
- ],
- [
- -94.24531,
- 48.75543
- ],
- [
- -94.61832,
- 48.75543
- ],
- [
- -94.61832,
- 48.94104
- ],
- [
- -94.6809,
- 48.94104
- ],
- [
- -94.6809,
- 49.00297
- ],
- [
- -94.74415,
- 49.00297
- ],
- [
- -94.74415,
- 49.25361
- ],
- [
- -94.80841,
- 49.25361
- ],
- [
- -94.80841,
- 49.37841
- ],
- [
- -95.11924,
- 49.37841
- ],
- [
- -95.11924,
- 49.44253
- ],
- [
- -95.19343,
- 49.44253
- ],
- [
- -95.19343,
- 49.00353
- ],
- [
- -96.87069,
- 49.00353
- ],
- [
- -96.87069,
- 49.06561
- ],
- [
- -99.00493,
- 49.06561
- ],
- [
- -99.00493,
- 49.00507
- ],
- [
- -109.36993,
- 49.00507
- ],
- [
- -109.36993,
- 49.06682
- ],
- [
- -109.50587,
- 49.06682
- ],
- [
- -109.50587,
- 49.00507
- ],
- [
- -114.183,
- 49.00507
- ],
- [
- -114.183,
- 49.06873
- ],
- [
- -114.75787,
- 49.06873
- ],
- [
- -114.75787,
- 49.00507
- ],
- [
- -115.43373,
- 49.00507
- ],
- [
- -115.43373,
- 49.06714
- ],
- [
- -116.50627,
- 49.06714
- ],
- [
- -116.50627,
- 49.00507
- ],
- [
- -117.30895,
- 49.00507
- ],
- [
- -117.30895,
- 49.06598
- ],
- [
- -119.88295,
- 49.06598
- ],
- [
- -119.88295,
- 49.00507
- ],
- [
- -120.12086,
- 49.00507
- ],
- [
- -120.12086,
- 49.06784
- ],
- [
- -121.44516,
- 49.06784
- ],
- [
- -121.44516,
- 49.00507
- ],
- [
- -121.93118,
- 49.00507
- ],
- [
- -121.93118,
- 49.06561
- ],
- [
- -122.81748,
- 49.06561
- ],
- [
- -122.81748,
- 49.00291
- ],
- [
- -122.87952,
- 49.00291
- ],
- [
- -122.87952,
- 48.9347
- ],
- [
- -122.81746,
- 48.9347
- ],
- [
- -122.81746,
- 48.8102
- ],
- [
- -122.75389,
- 48.8102
- ],
- [
- -122.75389,
- 48.75338
- ],
- [
- -122.87129,
- 48.75338
- ],
- [
- -122.87129,
- 48.81539
- ],
- [
- -123.00554,
- 48.81539
- ],
- [
- -123.00554,
- 48.75295
- ],
- [
- -123.12969,
- 48.75295
- ],
- [
- -123.12969,
- 48.69022
- ],
- [
- -123.18382,
- 48.69022
- ],
- [
- -123.18382,
- 48.7529
- ],
- [
- -123.25493,
- 48.7529
- ]
- ],
- [
- [
- -122.93417,
- 37.75215
- ],
- [
- -122.93475,
- 37.6842
- ],
- [
- -123.0679,
- 37.6849
- ],
- [
- -123.06737,
- 37.74753
- ],
- [
- -123.12926,
- 37.74785
- ],
- [
- -123.12869,
- 37.81569
- ],
- [
- -123.05907,
- 37.81532
- ],
- [
- -123.05959,
- 37.75281
- ],
- [
- -122.93417,
- 37.75215
- ]
- ],
- [
- [
- -71.62995,
- 41.25409
- ],
- [
- -71.49665,
- 41.25414
- ],
- [
- -71.49656,
- 41.12297
- ],
- [
- -71.62986,
- 41.12291
- ],
- [
- -71.62995,
- 41.25409
- ]
- ],
- [
- [
- -70.31843,
- 41.37752
- ],
- [
- -70.31834,
- 41.24482
- ],
- [
- -70.19066,
- 41.24487
- ],
- [
- -70.19062,
- 41.1886
- ],
- [
- -69.9336,
- 41.1887
- ],
- [
- -69.93373,
- 41.37919
- ],
- [
- -69.99507,
- 41.37917
- ],
- [
- -69.99511,
- 41.44316
- ],
- [
- -70.07078,
- 41.44313
- ],
- [
- -70.0707,
- 41.31449
- ],
- [
- -70.24617,
- 41.31443
- ],
- [
- -70.24621,
- 41.37755
- ],
- [
- -70.31843,
- 41.37752
- ]
- ],
- [
- [
- -68.94034,
- 43.94041
- ],
- [
- -68.68569,
- 43.9405
- ],
- [
- -68.68565,
- 43.87218
- ],
- [
- -68.74654,
- 43.87216
- ],
- [
- -68.7465,
- 43.81025
- ],
- [
- -68.80908,
- 43.81023
- ],
- [
- -68.80903,
- 43.74673
- ],
- [
- -68.87731,
- 43.7467
- ],
- [
- -68.87735,
- 43.81178
- ],
- [
- -68.94025,
- 43.81176
- ],
- [
- -68.94034,
- 43.94041
- ]
- ],
- [
- [
- -123.12915,
- 49.06451
- ],
- [
- -122.99542,
- 49.06451
- ],
- [
- -122.99542,
- 48.93432
- ],
- [
- -123.12915,
- 48.93432
- ],
- [
- -123.12915,
- 49.06451
- ]
- ],
- [
- [
- -82.94071,
- 24.75359
- ],
- [
- -82.87194,
- 24.75359
- ],
- [
- -82.87194,
- 24.69057
- ],
- [
- -82.74462,
- 24.69057
- ],
- [
- -82.74462,
- 24.62146
- ],
- [
- -82.8088,
- 24.62146
- ],
- [
- -82.8088,
- 24.55949
- ],
- [
- -82.94071,
- 24.55949
- ],
- [
- -82.94071,
- 24.75359
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "US",
- "description": "The most recent year of DOQQs from the National Agriculture Imagery Program (NAIP) for each state in the contiguous United States.",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/USDA.png",
- "id": "USDA-NAIP",
- "max_zoom": 20,
- "min_zoom": 12,
- "name": "National Agriculture Imagery Program",
- "type": "wms",
- "url": "https://gis.apfo.usda.gov/arcgis/services/NAIP/USDA_CONUS_PRIME/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.15715,
- 68.72197
- ],
- [
- -164.8554,
- 67.02551
- ],
- [
- -168.0022,
- 66.00175
- ],
- [
- -169.00874,
- 66.00155
- ],
- [
- -169.00754,
- 64.99877
- ],
- [
- -172.51433,
- 63.87673
- ],
- [
- -173.8197,
- 59.74014
- ],
- [
- -162.50181,
- 58.00058
- ],
- [
- -160.0159,
- 58.00124
- ],
- [
- -160.01497,
- 57.00003
- ],
- [
- -160.50548,
- 56.9999
- ],
- [
- -165.80926,
- 54.82485
- ],
- [
- -178.0001,
- 52.24465
- ],
- [
- -177.9993,
- 51.25543
- ],
- [
- -171.46891,
- 51.82153
- ],
- [
- -162.40251,
- 53.95666
- ],
- [
- -159.00757,
- 55.0025
- ],
- [
- -158.01907,
- 55.00278
- ],
- [
- -151.99632,
- 55.99919
- ],
- [
- -151.50034,
- 57.99879
- ],
- [
- -151.50129,
- 58.99198
- ],
- [
- -138.516,
- 58.99532
- ],
- [
- -138.51505,
- 57.99864
- ],
- [
- -133.99482,
- 54.00317
- ],
- [
- -130.00444,
- 54.00434
- ],
- [
- -130.00708,
- 57.00005
- ],
- [
- -131.97588,
- 56.99952
- ],
- [
- -135.12299,
- 59.7566
- ],
- [
- -138.00718,
- 59.9918
- ],
- [
- -139.17159,
- 60.41272
- ],
- [
- -140.9874,
- 61.01186
- ],
- [
- -140.9684,
- 69.95351
- ],
- [
- -156.17689,
- 71.56333
- ],
- [
- -160.41363,
- 70.73977
- ],
- [
- -163.02183,
- 69.97074
- ],
- [
- -164.9717,
- 68.99469
- ],
- [
- -167.15715,
- 68.72197
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "description": "Highway: Green casing = unclassified. Brown casing = track. Surface: gravel = light brown fill, Asphalt = black, paved = gray, ground =white, concrete = blue, grass = green. Seasonal = white bars",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/USForestService-overlay.png",
- "id": "US_Forest_Service_roads_overlay",
- "max_zoom": 20,
- "name": "U.S. Forest Roads Overlay",
- "overlay": true,
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/glassman/cjf4qjmps0tgv2qpahj977mvz/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1IjoiZ2xhc3NtYW4iLCJhIjoiRjk3dWdwYyJ9.Tg_fMJWxygeKBgVTrZHmGA"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.15715,
- 68.72197
- ],
- [
- -164.8554,
- 67.02551
- ],
- [
- -168.0022,
- 66.00175
- ],
- [
- -169.00874,
- 66.00155
- ],
- [
- -169.00754,
- 64.99877
- ],
- [
- -172.51433,
- 63.87673
- ],
- [
- -173.8197,
- 59.74014
- ],
- [
- -162.50181,
- 58.00058
- ],
- [
- -160.0159,
- 58.00124
- ],
- [
- -160.01497,
- 57.00003
- ],
- [
- -160.50548,
- 56.9999
- ],
- [
- -165.80926,
- 54.82485
- ],
- [
- -178.0001,
- 52.24465
- ],
- [
- -177.9993,
- 51.25543
- ],
- [
- -171.46891,
- 51.82153
- ],
- [
- -162.40251,
- 53.95666
- ],
- [
- -159.00757,
- 55.0025
- ],
- [
- -158.01907,
- 55.00278
- ],
- [
- -151.99632,
- 55.99919
- ],
- [
- -151.50034,
- 57.99879
- ],
- [
- -151.50129,
- 58.99198
- ],
- [
- -138.516,
- 58.99532
- ],
- [
- -138.51505,
- 57.99864
- ],
- [
- -133.99482,
- 54.00317
- ],
- [
- -130.00444,
- 54.00434
- ],
- [
- -130.00708,
- 57.00005
- ],
- [
- -131.97588,
- 56.99952
- ],
- [
- -135.12299,
- 59.7566
- ],
- [
- -138.00718,
- 59.9918
- ],
- [
- -139.17159,
- 60.41272
- ],
- [
- -140.9874,
- 61.01186
- ],
- [
- -140.9684,
- 69.95351
- ],
- [
- -156.17689,
- 71.56333
- ],
- [
- -160.41363,
- 70.73977
- ],
- [
- -163.02183,
- 69.97074
- ],
- [
- -164.9717,
- 68.99469
- ],
- [
- -167.15715,
- 68.72197
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "id": "US_Forest_Service_roads",
- "max_zoom": 19,
- "name": "U.S. Forest Service roads",
- "type": "tms",
- "url": "https://osm.cycle.travel/forest/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -79.12989,
- 43.31497
- ],
- [
- -79.12989,
- 43.24293
- ],
- [
- -79.06696,
- 43.24293
- ],
- [
- -79.06696,
- 43.13
- ],
- [
- -79.12989,
- 43.13
- ],
- [
- -79.12989,
- 43.05773
- ],
- [
- -79.07126,
- 43.05773
- ],
- [
- -79.07126,
- 42.92949
- ],
- [
- -78.94326,
- 42.92949
- ],
- [
- -78.94326,
- 42.75422
- ],
- [
- -82.67886,
- 41.67159
- ],
- [
- -82.88391,
- 41.75369
- ],
- [
- -83.12077,
- 41.99609
- ],
- [
- -83.12077,
- 42.24648
- ],
- [
- -83.05892,
- 42.24648
- ],
- [
- -83.05892,
- 42.30896
- ],
- [
- -82.86853,
- 42.30896
- ],
- [
- -82.86853,
- 42.37177
- ],
- [
- -82.5599,
- 42.49549
- ],
- [
- -82.5599,
- 42.55855
- ],
- [
- -82.49678,
- 42.55855
- ],
- [
- -82.49678,
- 42.68336
- ],
- [
- -82.43289,
- 42.68336
- ],
- [
- -82.43289,
- 42.93422
- ],
- [
- -82.37006,
- 42.93422
- ],
- [
- -82.37006,
- 43.06481
- ],
- [
- -82.51953,
- 45.33698
- ],
- [
- -83.49681,
- 45.87251
- ],
- [
- -83.49681,
- 45.93371
- ],
- [
- -83.43381,
- 45.93371
- ],
- [
- -83.43381,
- 46.00169
- ],
- [
- -83.56,
- 46.12616
- ],
- [
- -83.99546,
- 46.12616
- ],
- [
- -83.99546,
- 46.19317
- ],
- [
- -84.05918,
- 46.19317
- ],
- [
- -84.05918,
- 46.3815
- ],
- [
- -84.11526,
- 46.3815
- ],
- [
- -84.11526,
- 46.49536
- ],
- [
- -84.05918,
- 46.49536
- ],
- [
- -84.05918,
- 46.56827
- ],
- [
- -84.25795,
- 46.56827
- ],
- [
- -84.25795,
- 46.50512
- ],
- [
- -84.30719,
- 46.50512
- ],
- [
- -84.30719,
- 46.56827
- ],
- [
- -84.44154,
- 46.56827
- ],
- [
- -84.44154,
- 46.50453
- ],
- [
- -84.60983,
- 46.50453
- ],
- [
- -84.76227,
- 46.63341
- ],
- [
- -84.86115,
- 46.88929
- ],
- [
- -88.3882,
- 48.30154
- ],
- [
- -89.42847,
- 48.06564
- ],
- [
- -89.99327,
- 48.06564
- ],
- [
- -89.99327,
- 48.1283
- ],
- [
- -90.74559,
- 48.1283
- ],
- [
- -90.74559,
- 48.18931
- ],
- [
- -90.80873,
- 48.18931
- ],
- [
- -90.80873,
- 48.25221
- ],
- [
- -91.06776,
- 48.25221
- ],
- [
- -91.06776,
- 48.19167
- ],
- [
- -91.19462,
- 48.19167
- ],
- [
- -91.19462,
- 48.1279
- ],
- [
- -91.68142,
- 48.1279
- ],
- [
- -91.68142,
- 48.2526
- ],
- [
- -91.93219,
- 48.2526
- ],
- [
- -91.93219,
- 48.31425
- ],
- [
- -91.99297,
- 48.31425
- ],
- [
- -91.99297,
- 48.37808
- ],
- [
- -92.31894,
- 48.37808
- ],
- [
- -92.31894,
- 48.25291
- ],
- [
- -92.37322,
- 48.25291
- ],
- [
- -92.37322,
- 48.31534
- ],
- [
- -92.43223,
- 48.31534
- ],
- [
- -92.43223,
- 48.44114
- ],
- [
- -92.49772,
- 48.44114
- ],
- [
- -92.49772,
- 48.50178
- ],
- [
- -92.56794,
- 48.50178
- ],
- [
- -92.56794,
- 48.43958
- ],
- [
- -92.62105,
- 48.43958
- ],
- [
- -92.62105,
- 48.56508
- ],
- [
- -92.80868,
- 48.56508
- ],
- [
- -92.80868,
- 48.62674
- ],
- [
- -92.93318,
- 48.62674
- ],
- [
- -92.93318,
- 48.69221
- ],
- [
- -93.00517,
- 48.69221
- ],
- [
- -93.00517,
- 48.6283
- ],
- [
- -93.12259,
- 48.6283
- ],
- [
- -93.12259,
- 48.69221
- ],
- [
- -93.31908,
- 48.69221
- ],
- [
- -93.31908,
- 48.62674
- ],
- [
- -93.50495,
- 48.62674
- ],
- [
- -93.50495,
- 48.56352
- ],
- [
- -93.74746,
- 48.56352
- ],
- [
- -93.74746,
- 48.62674
- ],
- [
- -93.81355,
- 48.62674
- ],
- [
- -93.81355,
- 48.68988
- ],
- [
- -94.24531,
- 48.68988
- ],
- [
- -94.24531,
- 48.75543
- ],
- [
- -94.61832,
- 48.75543
- ],
- [
- -94.61832,
- 48.94104
- ],
- [
- -94.6809,
- 48.94104
- ],
- [
- -94.6809,
- 49.00297
- ],
- [
- -94.74415,
- 49.00297
- ],
- [
- -94.74415,
- 49.25361
- ],
- [
- -94.80841,
- 49.25361
- ],
- [
- -94.80841,
- 49.37841
- ],
- [
- -95.11924,
- 49.37841
- ],
- [
- -95.11924,
- 49.44253
- ],
- [
- -95.19343,
- 49.44253
- ],
- [
- -95.19343,
- 49.00353
- ],
- [
- -96.87069,
- 49.00353
- ],
- [
- -96.87069,
- 49.06561
- ],
- [
- -99.00493,
- 49.06561
- ],
- [
- -99.00493,
- 49.00507
- ],
- [
- -109.36993,
- 49.00507
- ],
- [
- -109.36993,
- 49.06682
- ],
- [
- -109.50587,
- 49.06682
- ],
- [
- -109.50587,
- 49.00507
- ],
- [
- -114.183,
- 49.00507
- ],
- [
- -114.183,
- 49.06873
- ],
- [
- -114.75787,
- 49.06873
- ],
- [
- -114.75787,
- 49.00507
- ],
- [
- -115.43373,
- 49.00507
- ],
- [
- -115.43373,
- 49.06714
- ],
- [
- -116.50627,
- 49.06714
- ],
- [
- -116.50627,
- 49.00507
- ],
- [
- -117.30895,
- 49.00507
- ],
- [
- -117.30895,
- 49.06598
- ],
- [
- -119.88295,
- 49.06598
- ],
- [
- -119.88295,
- 49.00507
- ],
- [
- -120.12086,
- 49.00507
- ],
- [
- -120.12086,
- 49.06784
- ],
- [
- -121.44516,
- 49.06784
- ],
- [
- -121.44516,
- 49.00507
- ],
- [
- -121.93118,
- 49.00507
- ],
- [
- -121.93118,
- 49.06561
- ],
- [
- -123.12915,
- 49.06451
- ],
- [
- -123.12915,
- 48.93432
- ],
- [
- -123.00554,
- 48.75295
- ],
- [
- -123.12969,
- 48.75295
- ],
- [
- -123.12969,
- 48.69022
- ],
- [
- -123.18382,
- 48.69022
- ],
- [
- -123.18382,
- 48.7529
- ],
- [
- -123.25493,
- 48.7529
- ],
- [
- -123.25493,
- 48.55923
- ],
- [
- -123.19222,
- 48.55923
- ],
- [
- -123.19222,
- 48.43484
- ],
- [
- -123.25411,
- 48.19051
- ],
- [
- -124.05826,
- 48.19084
- ],
- [
- -124.05826,
- 48.25344
- ],
- [
- -124.18152,
- 48.25344
- ],
- [
- -124.18152,
- 48.31647
- ],
- [
- -124.43191,
- 48.31647
- ],
- [
- -124.43191,
- 48.37826
- ],
- [
- -124.55646,
- 48.37826
- ],
- [
- -124.55646,
- 48.44083
- ],
- [
- -124.75551,
- 48.44083
- ],
- [
- -139,
- 48.45
- ],
- [
- -139,
- 32.5
- ],
- [
- -117.18748,
- 32.5
- ],
- [
- -116.7465,
- 32.49746
- ],
- [
- -116.7465,
- 32.56092
- ],
- [
- -115.99701,
- 32.56092
- ],
- [
- -115.99701,
- 32.62649
- ],
- [
- -115.12495,
- 32.62474
- ],
- [
- -115.12495,
- 32.68749
- ],
- [
- -114.81241,
- 32.68749
- ],
- [
- -114.81261,
- 32.62524
- ],
- [
- -114.87531,
- 32.62557
- ],
- [
- -114.88081,
- 32.43408
- ],
- [
- -114.62945,
- 32.43408
- ],
- [
- -114.62945,
- 32.37316
- ],
- [
- -114.44474,
- 32.37316
- ],
- [
- -114.44474,
- 32.30754
- ],
- [
- -114.25576,
- 32.30754
- ],
- [
- -114.25576,
- 32.24446
- ],
- [
- -114.06803,
- 32.24446
- ],
- [
- -114.06803,
- 32.18291
- ],
- [
- -113.81665,
- 32.18291
- ],
- [
- -113.81665,
- 32.12076
- ],
- [
- -113.63074,
- 32.12076
- ],
- [
- -113.63074,
- 32.05651
- ],
- [
- -113.44175,
- 32.05651
- ],
- [
- -113.44175,
- 31.99844
- ],
- [
- -113.2546,
- 31.99844
- ],
- [
- -113.2546,
- 31.93254
- ],
- [
- -113.06807,
- 31.93254
- ],
- [
- -113.06807,
- 31.87181
- ],
- [
- -112.81611,
- 31.87181
- ],
- [
- -112.81611,
- 31.81042
- ],
- [
- -112.63088,
- 31.81042
- ],
- [
- -112.63088,
- 31.74647
- ],
- [
- -112.44189,
- 31.74647
- ],
- [
- -112.44189,
- 31.6856
- ],
- [
- -112.25719,
- 31.6856
- ],
- [
- -112.25719,
- 31.62104
- ],
- [
- -112.00338,
- 31.62104
- ],
- [
- -112.00338,
- 31.55958
- ],
- [
- -111.81562,
- 31.55958
- ],
- [
- -111.81562,
- 31.49702
- ],
- [
- -111.62786,
- 31.49702
- ],
- [
- -111.62786,
- 31.434
- ],
- [
- -111.4419,
- 31.434
- ],
- [
- -111.4419,
- 31.37339
- ],
- [
- -111.25597,
- 31.37339
- ],
- [
- -111.25597,
- 31.31132
- ],
- [
- -108.18458,
- 31.31132
- ],
- [
- -108.18458,
- 31.74595
- ],
- [
- -106.50651,
- 31.74595
- ],
- [
- -106.50651,
- 31.68423
- ],
- [
- -106.37973,
- 31.68423
- ],
- [
- -106.37973,
- 31.62175
- ],
- [
- -106.31743,
- 31.62175
- ],
- [
- -106.31743,
- 31.49682
- ],
- [
- -106.25518,
- 31.49682
- ],
- [
- -106.25518,
- 31.43449
- ],
- [
- -106.19247,
- 31.43449
- ],
- [
- -106.19247,
- 31.37213
- ],
- [
- -106.00392,
- 31.37213
- ],
- [
- -106.00392,
- 31.30933
- ],
- [
- -105.94166,
- 31.30933
- ],
- [
- -105.94166,
- 31.24575
- ],
- [
- -105.87982,
- 31.24575
- ],
- [
- -105.87982,
- 31.18362
- ],
- [
- -105.81623,
- 31.18362
- ],
- [
- -105.81623,
- 31.12072
- ],
- [
- -105.69212,
- 31.12072
- ],
- [
- -105.69212,
- 31.05848
- ],
- [
- -105.63029,
- 31.05848
- ],
- [
- -105.63029,
- 30.93283
- ],
- [
- -105.50444,
- 30.93283
- ],
- [
- -105.50444,
- 30.87159
- ],
- [
- -105.4413,
- 30.87159
- ],
- [
- -105.4413,
- 30.80846
- ],
- [
- -105.37815,
- 30.80846
- ],
- [
- -105.37815,
- 30.74718
- ],
- [
- -105.19047,
- 30.74718
- ],
- [
- -105.19047,
- 30.68432
- ],
- [
- -105.12862,
- 30.68432
- ],
- [
- -105.12862,
- 30.61997
- ],
- [
- -105.00365,
- 30.61997
- ],
- [
- -105.00365,
- 30.55891
- ],
- [
- -104.9418,
- 30.55891
- ],
- [
- -104.9418,
- 30.49632
- ],
- [
- -104.8782,
- 30.49632
- ],
- [
- -104.8782,
- 30.30983
- ],
- [
- -104.81553,
- 30.30983
- ],
- [
- -104.81553,
- 30.24783
- ],
- [
- -104.75361,
- 30.24783
- ],
- [
- -104.75361,
- 29.93539
- ],
- [
- -104.69095,
- 29.93539
- ],
- [
- -104.69095,
- 29.80902
- ],
- [
- -104.62913,
- 29.80902
- ],
- [
- -104.62913,
- 29.68436
- ],
- [
- -104.56599,
- 29.68436
- ],
- [
- -104.56599,
- 29.62235
- ],
- [
- -104.50372,
- 29.62235
- ],
- [
- -104.50372,
- 29.55954
- ],
- [
- -104.44101,
- 29.55954
- ],
- [
- -104.44101,
- 29.49748
- ],
- [
- -104.25376,
- 29.49748
- ],
- [
- -104.25376,
- 29.37167
- ],
- [
- -104.1292,
- 29.37167
- ],
- [
- -104.1292,
- 29.30916
- ],
- [
- -104.06887,
- 29.30916
- ],
- [
- -104.06887,
- 29.24673
- ],
- [
- -103.81873,
- 29.24673
- ],
- [
- -103.81873,
- 29.18431
- ],
- [
- -103.75574,
- 29.18431
- ],
- [
- -103.75574,
- 29.12232
- ],
- [
- -103.56675,
- 29.12232
- ],
- [
- -103.56675,
- 29.05981
- ],
- [
- -103.50498,
- 29.05981
- ],
- [
- -103.50498,
- 28.99675
- ],
- [
- -103.31658,
- 28.99675
- ],
- [
- -103.31658,
- 28.93469
- ],
- [
- -103.05976,
- 28.93469
- ],
- [
- -103.05976,
- 29.0593
- ],
- [
- -102.99797,
- 29.0593
- ],
- [
- -102.99797,
- 29.12129
- ],
- [
- -102.93314,
- 29.12129
- ],
- [
- -102.93314,
- 29.18486
- ],
- [
- -102.8096,
- 29.18486
- ],
- [
- -102.8096,
- 29.25262
- ],
- [
- -102.87013,
- 29.25262
- ],
- [
- -102.87013,
- 29.3081
- ],
- [
- -102.80967,
- 29.3081
- ],
- [
- -102.80967,
- 29.37155
- ],
- [
- -102.74757,
- 29.37155
- ],
- [
- -102.74757,
- 29.55819
- ],
- [
- -102.68455,
- 29.55819
- ],
- [
- -102.68455,
- 29.68477
- ],
- [
- -102.49678,
- 29.68477
- ],
- [
- -102.49678,
- 29.74577
- ],
- [
- -102.30866,
- 29.74577
- ],
- [
- -102.30866,
- 29.80866
- ],
- [
- -102.19093,
- 29.80866
- ],
- [
- -102.19093,
- 29.74601
- ],
- [
- -101.50499,
- 29.74601
- ],
- [
- -101.50499,
- 29.68468
- ],
- [
- -101.38058,
- 29.68468
- ],
- [
- -101.38058,
- 29.55945
- ],
- [
- -101.31751,
- 29.55945
- ],
- [
- -101.31751,
- 29.49589
- ],
- [
- -101.19101,
- 29.49589
- ],
- [
- -101.19101,
- 29.43261
- ],
- [
- -101.0675,
- 29.43261
- ],
- [
- -101.0675,
- 29.30881
- ],
- [
- -100.94189,
- 29.30881
- ],
- [
- -100.94189,
- 29.24562
- ],
- [
- -100.81673,
- 29.24562
- ],
- [
- -100.81673,
- 29.11904
- ],
- [
- -100.75227,
- 29.11904
- ],
- [
- -100.75227,
- 29.05782
- ],
- [
- -100.69254,
- 29.05782
- ],
- [
- -100.69254,
- 28.87204
- ],
- [
- -100.62902,
- 28.87204
- ],
- [
- -100.62902,
- 28.80954
- ],
- [
- -100.56799,
- 28.80954
- ],
- [
- -100.56799,
- 28.62255
- ],
- [
- -100.50404,
- 28.62255
- ],
- [
- -100.50404,
- 28.55838
- ],
- [
- -100.44218,
- 28.55838
- ],
- [
- -100.44218,
- 28.49683
- ],
- [
- -100.37943,
- 28.49683
- ],
- [
- -100.37943,
- 28.30929
- ],
- [
- -100.31719,
- 28.30929
- ],
- [
- -100.31719,
- 28.18357
- ],
- [
- -100.25448,
- 28.18357
- ],
- [
- -100.25448,
- 28.12139
- ],
- [
- -100.12823,
- 28.12139
- ],
- [
- -100.12823,
- 28.05921
- ],
- [
- -100.06595,
- 28.05921
- ],
- [
- -100.06595,
- 27.99661
- ],
- [
- -100.00239,
- 27.99661
- ],
- [
- -100.00239,
- 27.93322
- ],
- [
- -99.94265,
- 27.93322
- ],
- [
- -99.94265,
- 27.74547
- ],
- [
- -99.81685,
- 27.74547
- ],
- [
- -99.81685,
- 27.68343
- ],
- [
- -99.75413,
- 27.68343
- ],
- [
- -99.75413,
- 27.62215
- ],
- [
- -99.62916,
- 27.62215
- ],
- [
- -99.62916,
- 27.5589
- ],
- [
- -99.56728,
- 27.5589
- ],
- [
- -99.56728,
- 27.43538
- ],
- [
- -99.50418,
- 27.43538
- ],
- [
- -99.50418,
- 27.3774
- ],
- [
- -99.56718,
- 27.3774
- ],
- [
- -99.56718,
- 27.24637
- ],
- [
- -99.50498,
- 27.24637
- ],
- [
- -99.50498,
- 26.99656
- ],
- [
- -99.44274,
- 26.99656
- ],
- [
- -99.44274,
- 26.8728
- ],
- [
- -99.38006,
- 26.8728
- ],
- [
- -99.38006,
- 26.80682
- ],
- [
- -99.31907,
- 26.80682
- ],
- [
- -99.31907,
- 26.74736
- ],
- [
- -99.25375,
- 26.74736
- ],
- [
- -99.25375,
- 26.62101
- ],
- [
- -99.19106,
- 26.62101
- ],
- [
- -99.19106,
- 26.49567
- ],
- [
- -99.13006,
- 26.49567
- ],
- [
- -99.13006,
- 26.37138
- ],
- [
- -99.00295,
- 26.37138
- ],
- [
- -99.00295,
- 26.30938
- ],
- [
- -98.81657,
- 26.30938
- ],
- [
- -98.81657,
- 26.24578
- ],
- [
- -98.69201,
- 26.24578
- ],
- [
- -98.69201,
- 26.18371
- ],
- [
- -98.44409,
- 26.18371
- ],
- [
- -98.44409,
- 26.12172
- ],
- [
- -98.38232,
- 26.12172
- ],
- [
- -98.38232,
- 26.05965
- ],
- [
- -98.25327,
- 26.05965
- ],
- [
- -98.25327,
- 25.99869
- ],
- [
- -98.01091,
- 25.99869
- ],
- [
- -98.01091,
- 25.99323
- ],
- [
- -97.69323,
- 25.99323
- ],
- [
- -97.69323,
- 25.93341
- ],
- [
- -97.63139,
- 25.93341
- ],
- [
- -97.63139,
- 25.86959
- ],
- [
- -97.50468,
- 25.86959
- ],
- [
- -97.50468,
- 25.80735
- ],
- [
- -97.30834,
- 25.80735
- ],
- [
- -97.30834,
- 25.87312
- ],
- [
- -97.24563,
- 25.87312
- ],
- [
- -97.24563,
- 25.93537
- ],
- [
- -97.11389,
- 25.93537
- ],
- [
- -80.7,
- 24
- ],
- [
- -79.314,
- 27.108
- ],
- [
- -66.93111,
- 44.74737
- ],
- [
- -66.93111,
- 44.94066
- ],
- [
- -66.99468,
- 44.94066
- ],
- [
- -66.99468,
- 45.00245
- ],
- [
- -67.05958,
- 45.00245
- ],
- [
- -67.05958,
- 45.12734
- ],
- [
- -67.1202,
- 45.12734
- ],
- [
- -67.1202,
- 45.19101
- ],
- [
- -67.24698,
- 45.19101
- ],
- [
- -67.24698,
- 45.25344
- ],
- [
- -67.31775,
- 45.25344
- ],
- [
- -67.31775,
- 45.18984
- ],
- [
- -67.37075,
- 45.18984
- ],
- [
- -67.37075,
- 45.2534
- ],
- [
- -67.43269,
- 45.2534
- ],
- [
- -67.43269,
- 45.30834
- ],
- [
- -67.37086,
- 45.30834
- ],
- [
- -67.37086,
- 45.4397
- ],
- [
- -67.43056,
- 45.4397
- ],
- [
- -67.43056,
- 45.49501
- ],
- [
- -67.37099,
- 45.49501
- ],
- [
- -67.37099,
- 45.62645
- ],
- [
- -67.6215,
- 45.62645
- ],
- [
- -67.6215,
- 45.68961
- ],
- [
- -67.68383,
- 45.68961
- ],
- [
- -67.68383,
- 45.75326
- ],
- [
- -67.74621,
- 45.75326
- ],
- [
- -67.74621,
- 47.12682
- ],
- [
- -67.87001,
- 47.12682
- ],
- [
- -67.87001,
- 47.19003
- ],
- [
- -67.93238,
- 47.19003
- ],
- [
- -67.93238,
- 47.25397
- ],
- [
- -67.99594,
- 47.25397
- ],
- [
- -67.99594,
- 47.31497
- ],
- [
- -68.12067,
- 47.31497
- ],
- [
- -68.12067,
- 47.37808
- ],
- [
- -68.44232,
- 47.37808
- ],
- [
- -68.44232,
- 47.31661
- ],
- [
- -68.63143,
- 47.31661
- ],
- [
- -68.63143,
- 47.25447
- ],
- [
- -68.9978,
- 47.25447
- ],
- [
- -68.9978,
- 47.43989
- ],
- [
- -69.06072,
- 47.43989
- ],
- [
- -69.06072,
- 47.50476
- ],
- [
- -69.25381,
- 47.50476
- ],
- [
- -69.25381,
- 47.43981
- ],
- [
- -69.31793,
- 47.43981
- ],
- [
- -69.31793,
- 47.3786
- ],
- [
- -69.44385,
- 47.3786
- ],
- [
- -69.44385,
- 47.31563
- ],
- [
- -69.50382,
- 47.31563
- ],
- [
- -69.50382,
- 47.25258
- ],
- [
- -69.56678,
- 47.25258
- ],
- [
- -69.56678,
- 47.19109
- ],
- [
- -69.63035,
- 47.19109
- ],
- [
- -69.63035,
- 47.1287
- ],
- [
- -69.69331,
- 47.1287
- ],
- [
- -69.69331,
- 47.06543
- ],
- [
- -69.75571,
- 47.06543
- ],
- [
- -69.75571,
- 47.00428
- ],
- [
- -69.81804,
- 47.00428
- ],
- [
- -69.81804,
- 46.94153
- ],
- [
- -69.8804,
- 46.94153
- ],
- [
- -69.8804,
- 46.87925
- ],
- [
- -69.94217,
- 46.87925
- ],
- [
- -69.94217,
- 46.81774
- ],
- [
- -70.00631,
- 46.81774
- ],
- [
- -70.00631,
- 46.69203
- ],
- [
- -70.07043,
- 46.69203
- ],
- [
- -70.07043,
- 46.44259
- ],
- [
- -70.19459,
- 46.44259
- ],
- [
- -70.19459,
- 46.37859
- ],
- [
- -70.2562,
- 46.37859
- ],
- [
- -70.2562,
- 46.31526
- ],
- [
- -70.32037,
- 46.31526
- ],
- [
- -70.32037,
- 46.06512
- ],
- [
- -70.3815,
- 46.06512
- ],
- [
- -70.3815,
- 45.93552
- ],
- [
- -70.32016,
- 45.93552
- ],
- [
- -70.32016,
- 45.87948
- ],
- [
- -70.44931,
- 45.87948
- ],
- [
- -70.44931,
- 45.75387
- ],
- [
- -70.507,
- 45.75387
- ],
- [
- -70.507,
- 45.69169
- ],
- [
- -70.63166,
- 45.69169
- ],
- [
- -70.63166,
- 45.62916
- ],
- [
- -70.75755,
- 45.62916
- ],
- [
- -70.75755,
- 45.44147
- ],
- [
- -70.88099,
- 45.44147
- ],
- [
- -70.88099,
- 45.37806
- ],
- [
- -71.13328,
- 45.37806
- ],
- [
- -71.13328,
- 45.31515
- ],
- [
- -71.38303,
- 45.31515
- ],
- [
- -71.38303,
- 45.25342
- ],
- [
- -71.50764,
- 45.25342
- ],
- [
- -71.50764,
- 45.06557
- ],
- [
- -73.94189,
- 45.06557
- ],
- [
- -73.94189,
- 45.00312
- ],
- [
- -74.74697,
- 45.00312
- ],
- [
- -74.74697,
- 45.0649
- ],
- [
- -74.8801,
- 45.0649
- ],
- [
- -74.8801,
- 45.0029
- ],
- [
- -75.06625,
- 45.0029
- ],
- [
- -75.06625,
- 44.94152
- ],
- [
- -75.25394,
- 44.94152
- ],
- [
- -75.25394,
- 44.8776
- ],
- [
- -75.37896,
- 44.8776
- ],
- [
- -75.37896,
- 44.81535
- ],
- [
- -75.44313,
- 44.81535
- ],
- [
- -75.44313,
- 44.75361
- ],
- [
- -75.56666,
- 44.75361
- ],
- [
- -75.56666,
- 44.691
- ],
- [
- -75.62902,
- 44.691
- ],
- [
- -75.62902,
- 44.6285
- ],
- [
- -75.75405,
- 44.6285
- ],
- [
- -75.75405,
- 44.56638
- ],
- [
- -75.81731,
- 44.56638
- ],
- [
- -75.81731,
- 44.50289
- ],
- [
- -75.87995,
- 44.50289
- ],
- [
- -75.87995,
- 44.37849
- ],
- [
- -76.13003,
- 44.37849
- ],
- [
- -76.13003,
- 44.31592
- ],
- [
- -76.1927,
- 44.31592
- ],
- [
- -76.1927,
- 44.25344
- ],
- [
- -76.31826,
- 44.25344
- ],
- [
- -76.31826,
- 44.19167
- ],
- [
- -76.3793,
- 44.19167
- ],
- [
- -76.3793,
- 44.06537
- ],
- [
- -76.80375,
- 43.64253
- ],
- [
- -79.12989,
- 43.31497
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "description": "Public domain aerial imagery, mostly NAIP",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png",
- "id": "USGS-Imagery",
- "max_zoom": 20,
- "min_zoom": 12,
- "name": "USGS Imagery",
- "privacy_policy_url": "https://www.usgs.gov/privacy-policies",
- "type": "tms",
- "url": "https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -55.99594,
- 52.00107
- ],
- [
- -112.02896,
- 52.00107
- ],
- [
- -112.03995,
- 56.01308
- ],
- [
- -120.00494,
- 56.00592
- ],
- [
- -120.01712,
- 60.01202
- ],
- [
- -132.00197,
- 60.00239
- ],
- [
- -132.01208,
- 63.00193
- ],
- [
- -133.96883,
- 63.0005
- ],
- [
- -133.9724,
- 63.99225
- ],
- [
- -141.04429,
- 63.98726
- ],
- [
- -141.06879,
- 69.92046
- ],
- [
- -156.24893,
- 71.51583
- ],
- [
- -160.44571,
- 70.83527
- ],
- [
- -167.08145,
- 68.42906
- ],
- [
- -164.08218,
- 67.03914
- ],
- [
- -169.01504,
- 65.68269
- ],
- [
- -166.57608,
- 64.50778
- ],
- [
- -161.82999,
- 64.05006
- ],
- [
- -165.08194,
- 63.2603
- ],
- [
- -168.02628,
- 59.78623
- ],
- [
- -162.53311,
- 59.73089
- ],
- [
- -162.35733,
- 58.55905
- ],
- [
- -157.83096,
- 58.31753
- ],
- [
- -158.00674,
- 57.52404
- ],
- [
- -168.22403,
- 53.51022
- ],
- [
- -166.55411,
- 53.14277
- ],
- [
- -158.77579,
- 54.88541
- ],
- [
- -158.6824,
- 55.74964
- ],
- [
- -156.55106,
- 56.00848
- ],
- [
- -156.15555,
- 56.77466
- ],
- [
- -154.70535,
- 56.14337
- ],
- [
- -152.07413,
- 57.37035
- ],
- [
- -151.62918,
- 58.22653
- ],
- [
- -152.00821,
- 58.98056
- ],
- [
- -145.9877,
- 60.24741
- ],
- [
- -140.38467,
- 59.48634
- ],
- [
- -136.53946,
- 57.8061
- ],
- [
- -133.79288,
- 54.83483
- ],
- [
- -133.33145,
- 53.14277
- ],
- [
- -131.46378,
- 51.69838
- ],
- [
- -128.52493,
- 51.74602
- ],
- [
- -129.79385,
- 50.90159
- ],
- [
- -124.56436,
- 47.49786
- ],
- [
- -124.03702,
- 45.48627
- ],
- [
- -124.6962,
- 42.90428
- ],
- [
- -124.49844,
- 40.34146
- ],
- [
- -122.80655,
- 37.53929
- ],
- [
- -119.99405,
- 33.37085
- ],
- [
- -117.24747,
- 32.5412
- ],
- [
- -111.13907,
- 31.1977
- ],
- [
- -106.70059,
- 31.23529
- ],
- [
- -103.20694,
- 28.64618
- ],
- [
- -101.84463,
- 29.8158
- ],
- [
- -99.20792,
- 26.28744
- ],
- [
- -96.79092,
- 25.75432
- ],
- [
- -96.92276,
- 27.96911
- ],
- [
- -93.47305,
- 29.68226
- ],
- [
- -88.94669,
- 28.87732
- ],
- [
- -88.6171,
- 30.17736
- ],
- [
- -86.2001,
- 30.36713
- ],
- [
- -84.96963,
- 29.43379
- ],
- [
- -84.09073,
- 30.06333
- ],
- [
- -82.97012,
- 28.95426
- ],
- [
- -82.97012,
- 27.26824
- ],
- [
- -81.25626,
- 25.07956
- ],
- [
- -82.09122,
- 24.56105
- ],
- [
- -80.06973,
- 24.76073
- ],
- [
- -79.85001,
- 27.11188
- ],
- [
- -81.27823,
- 30.70777
- ],
- [
- -78.99307,
- 33.20554
- ],
- [
- -75.03799,
- 35.5983
- ],
- [
- -75.85098,
- 37.24252
- ],
- [
- -73.74161,
- 40.4586
- ],
- [
- -69.89639,
- 41.60224
- ],
- [
- -70.68741,
- 43.17629
- ],
- [
- -66.93008,
- 44.69516
- ],
- [
- -66.53458,
- 43.08007
- ],
- [
- -64.20547,
- 43.35229
- ],
- [
- -59.50333,
- 45.73221
- ],
- [
- -59.51431,
- 46.24762
- ],
- [
- -60.0032,
- 46.25901
- ],
- [
- -59.99222,
- 47.24506
- ],
- [
- -59.00894,
- 47.2376
- ],
- [
- -58.99796,
- 47.50267
- ],
- [
- -56.51504,
- 47.50267
- ],
- [
- -56.52603,
- 46.7477
- ],
- [
- -53.99918,
- 46.7477
- ],
- [
- -53.9772,
- 46.48358
- ],
- [
- -52.49405,
- 46.46354
- ],
- [
- -52.50504,
- 48.75361
- ],
- [
- -52.99667,
- 48.75451
- ],
- [
- -53.01315,
- 49.99551
- ],
- [
- -55.00168,
- 50.0061
- ],
- [
- -55.03738,
- 53.74721
- ],
- [
- -56.00418,
- 53.73421
- ],
- [
- -55.99594,
- 52.00107
- ]
- ],
- [
- [
- -59.50127,
- 43.74954
- ],
- [
- -60.5024,
- 43.74954
- ],
- [
- -60.5024,
- 44.0
- ],
- [
- -59.9984,
- 44.0
- ],
- [
- -59.9984,
- 44.2494
- ],
- [
- -59.50127,
- 44.2494
- ],
- [
- -59.50127,
- 43.74954
- ]
- ],
- [
- [
- -155.95024,
- 20.49523
- ],
- [
- -157.32675,
- 20.49153
- ],
- [
- -157.32903,
- 21.23181
- ],
- [
- -155.95251,
- 21.23549
- ],
- [
- -155.95024,
- 20.49523
- ]
- ],
- [
- [
- -157.64488,
- 21.24845
- ],
- [
- -158.28534,
- 21.24674
- ],
- [
- -158.2869,
- 21.74996
- ],
- [
- -157.64643,
- 21.75167
- ],
- [
- -157.64488,
- 21.24845
- ]
- ],
- [
- [
- -156.12602,
- 20.3247
- ],
- [
- -154.74617,
- 20.32841
- ],
- [
- -154.74174,
- 18.87578
- ],
- [
- -156.1216,
- 18.87203
- ],
- [
- -156.12602,
- 20.3247
- ]
- ],
- [
- [
- -159.29077,
- 22.24504
- ],
- [
- -159.2893,
- 21.76857
- ],
- [
- -160.28917,
- 21.76591
- ],
- [
- -160.29064,
- 22.24239
- ],
- [
- -159.29077,
- 22.24504
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Caltopo",
- "url": "https://caltopo.com"
- },
- "country_code": "US",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png",
- "id": "USGS-Scanned_Topographic",
- "max_zoom": 16,
- "name": "USGS Topographic Maps",
- "type": "tms",
- "url": "https://caltopo.s3.amazonaws.com/topo/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -109.06765,
- 39.37875
- ],
- [
- -107.37012,
- 39.37962
- ],
- [
- -107.36995,
- 39.18422
- ],
- [
- -107.49574,
- 39.18416
- ],
- [
- -107.49568,
- 39.12133
- ],
- [
- -107.62081,
- 39.12126
- ],
- [
- -107.62076,
- 39.05974
- ],
- [
- -107.68231,
- 39.05971
- ],
- [
- -107.68226,
- 38.99652
- ],
- [
- -107.81774,
- 38.99645
- ],
- [
- -107.81779,
- 39.05859
- ],
- [
- -107.86948,
- 39.05856
- ],
- [
- -107.86943,
- 38.99769
- ],
- [
- -108.05698,
- 38.99759
- ],
- [
- -108.05688,
- 38.87126
- ],
- [
- -108.18204,
- 38.8712
- ],
- [
- -108.18198,
- 38.8081
- ],
- [
- -108.37142,
- 38.808
- ],
- [
- -108.3711,
- 38.43452
- ],
- [
- -109.06685,
- 38.43416
- ],
- [
- -109.06765,
- 39.37875
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Mesa County GIS",
- "url": "https://gis.mesacounty.us/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3742"
- ],
- "country_code": "US",
- "end_date": "2015",
- "icon": "https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png",
- "id": "MCGIS-County-NAIP-Imagery-2015",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/co/Mesa_County_Data.pdf",
- "max_zoom": 20,
- "name": "Mesa County GIS NAIP 2015",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://www.mesacounty.us/contact-us/copyrightdisclaimerprivacy/",
- "start_date": "2015",
- "type": "wms",
- "url": "https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/MesaCounty_2015/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -109.06765,
- 39.37875
- ],
- [
- -107.37012,
- 39.37962
- ],
- [
- -107.36995,
- 39.18422
- ],
- [
- -107.49574,
- 39.18416
- ],
- [
- -107.49568,
- 39.12133
- ],
- [
- -107.62081,
- 39.12126
- ],
- [
- -107.62076,
- 39.05974
- ],
- [
- -107.68231,
- 39.05971
- ],
- [
- -107.68226,
- 38.99652
- ],
- [
- -107.81774,
- 38.99645
- ],
- [
- -107.81779,
- 39.05859
- ],
- [
- -107.86948,
- 39.05856
- ],
- [
- -107.86943,
- 38.99769
- ],
- [
- -108.05698,
- 38.99759
- ],
- [
- -108.05688,
- 38.87126
- ],
- [
- -108.18204,
- 38.8712
- ],
- [
- -108.18198,
- 38.8081
- ],
- [
- -108.37142,
- 38.808
- ],
- [
- -108.3711,
- 38.43452
- ],
- [
- -109.06685,
- 38.43416
- ],
- [
- -109.06765,
- 39.37875
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Mesa County GIS",
- "url": "https://gis.mesacounty.us/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3742"
- ],
- "country_code": "US",
- "end_date": "2017-10-24",
- "icon": "https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png",
- "id": "MCGIS-County-NAIP-Imagery-2017",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/co/Mesa_County_Data.pdf",
- "max_zoom": 13,
- "name": "Mesa County GIS NAIP 2017",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://www.mesacounty.us/contact-us/copyrightdisclaimerprivacy/",
- "start_date": "2017-08-26",
- "type": "wms",
- "url": "https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/NAIP_2017/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -109.06765,
- 39.37875
- ],
- [
- -107.37012,
- 39.37962
- ],
- [
- -107.36995,
- 39.18422
- ],
- [
- -107.49574,
- 39.18416
- ],
- [
- -107.49568,
- 39.12133
- ],
- [
- -107.62081,
- 39.12126
- ],
- [
- -107.62076,
- 39.05974
- ],
- [
- -107.68231,
- 39.05971
- ],
- [
- -107.68226,
- 38.99652
- ],
- [
- -107.81774,
- 38.99645
- ],
- [
- -107.81779,
- 39.05859
- ],
- [
- -107.86948,
- 39.05856
- ],
- [
- -107.86943,
- 38.99769
- ],
- [
- -108.05698,
- 38.99759
- ],
- [
- -108.05688,
- 38.87126
- ],
- [
- -108.18204,
- 38.8712
- ],
- [
- -108.18198,
- 38.8081
- ],
- [
- -108.37142,
- 38.808
- ],
- [
- -108.3711,
- 38.43452
- ],
- [
- -109.06685,
- 38.43416
- ],
- [
- -109.06765,
- 39.37875
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Mesa County GIS",
- "url": "http://gis.mesacounty.us/"
- },
- "available_projections": [
- "EPSG:3742"
- ],
- "best": true,
- "country_code": "US",
- "end_date": "2019",
- "icon": "https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png",
- "id": "MCGIS-County-NAIP-Imagery-2019",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/co/Mesa_County_Data.pdf",
- "max_zoom": 12,
- "min_zoom": 0,
- "name": "Mesa County GIS NAIP 2019",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://www.mesacounty.us/contact-us/copyrightdisclaimerprivacy/",
- "start_date": "2019",
- "type": "wmts",
- "url": "https://mcgis.mesacounty.us/image/rest/services/Mosaic_Datasets/MesaCounty_2019/ImageServer/WMTS/1.0.0/WMTSCapabilities.xml"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -108.93915,
- 39.23931
- ],
- [
- -108.86841,
- 39.23846
- ],
- [
- -108.86843,
- 39.23734
- ],
- [
- -108.81245,
- 39.23666
- ],
- [
- -108.81274,
- 39.22256
- ],
- [
- -108.79405,
- 39.22234
- ],
- [
- -108.79432,
- 39.20857
- ],
- [
- -108.70096,
- 39.20745
- ],
- [
- -108.70123,
- 39.1939
- ],
- [
- -108.60764,
- 39.19277
- ],
- [
- -108.60791,
- 39.17906
- ],
- [
- -108.58915,
- 39.17884
- ],
- [
- -108.58943,
- 39.1649
- ],
- [
- -108.53332,
- 39.16422
- ],
- [
- -108.53361,
- 39.14993
- ],
- [
- -108.51461,
- 39.14971
- ],
- [
- -108.51489,
- 39.13611
- ],
- [
- -108.44076,
- 39.13522
- ],
- [
- -108.44104,
- 39.12109
- ],
- [
- -108.42192,
- 39.12086
- ],
- [
- -108.42201,
- 39.1163
- ],
- [
- -108.3984,
- 39.11602
- ],
- [
- -108.39798,
- 39.13708
- ],
- [
- -108.32446,
- 39.13619
- ],
- [
- -108.32416,
- 39.15107
- ],
- [
- -108.30718,
- 39.15087
- ],
- [
- -108.3066,
- 39.18
- ],
- [
- -108.28866,
- 39.17979
- ],
- [
- -108.28807,
- 39.20939
- ],
- [
- -108.26868,
- 39.20916
- ],
- [
- -108.26957,
- 39.16484
- ],
- [
- -108.2864,
- 39.16505
- ],
- [
- -108.28699,
- 39.13571
- ],
- [
- -108.30312,
- 39.13591
- ],
- [
- -108.3038,
- 39.10194
- ],
- [
- -108.32335,
- 39.10218
- ],
- [
- -108.32328,
- 39.10574
- ],
- [
- -108.32914,
- 39.10581
- ],
- [
- -108.32943,
- 39.09121
- ],
- [
- -108.34736,
- 39.09142
- ],
- [
- -108.34764,
- 39.07715
- ],
- [
- -108.36637,
- 39.07738
- ],
- [
- -108.36666,
- 39.06268
- ],
- [
- -108.38569,
- 39.06291
- ],
- [
- -108.38599,
- 39.04799
- ],
- [
- -108.42216,
- 39.04843
- ],
- [
- -108.42245,
- 39.03377
- ],
- [
- -108.44051,
- 39.03399
- ],
- [
- -108.44137,
- 38.99101
- ],
- [
- -108.42193,
- 38.99077
- ],
- [
- -108.42252,
- 38.96127
- ],
- [
- -108.44162,
- 38.9615
- ],
- [
- -108.44133,
- 38.97595
- ],
- [
- -108.46034,
- 38.97618
- ],
- [
- -108.46006,
- 38.99024
- ],
- [
- -108.47877,
- 38.99047
- ],
- [
- -108.47848,
- 39.00485
- ],
- [
- -108.51515,
- 39.0053
- ],
- [
- -108.51519,
- 39.00287
- ],
- [
- -108.51825,
- 39.00291
- ],
- [
- -108.51821,
- 39.00517
- ],
- [
- -108.53414,
- 39.00536
- ],
- [
- -108.53397,
- 39.0139
- ],
- [
- -108.54342,
- 39.01401
- ],
- [
- -108.54336,
- 39.01733
- ],
- [
- -108.5455,
- 39.01735
- ],
- [
- -108.54548,
- 39.01855
- ],
- [
- -108.65864,
- 39.01991
- ],
- [
- -108.65778,
- 39.06287
- ],
- [
- -108.67867,
- 39.06313
- ],
- [
- -108.67837,
- 39.07793
- ],
- [
- -108.69699,
- 39.07816
- ],
- [
- -108.69671,
- 39.09203
- ],
- [
- -108.71557,
- 39.09225
- ],
- [
- -108.71529,
- 39.10619
- ],
- [
- -108.7388,
- 39.10648
- ],
- [
- -108.73853,
- 39.12033
- ],
- [
- -108.75744,
- 39.12056
- ],
- [
- -108.75686,
- 39.14927
- ],
- [
- -108.79422,
- 39.14972
- ],
- [
- -108.79393,
- 39.16386
- ],
- [
- -108.83224,
- 39.16432
- ],
- [
- -108.83196,
- 39.17845
- ],
- [
- -108.85061,
- 39.17868
- ],
- [
- -108.85033,
- 39.19302
- ],
- [
- -108.86938,
- 39.19325
- ],
- [
- -108.86906,
- 39.20925
- ],
- [
- -108.90237,
- 39.20965
- ],
- [
- -108.90208,
- 39.22384
- ],
- [
- -108.93946,
- 39.22429
- ],
- [
- -108.93915,
- 39.23931
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Mesa County GIS",
- "url": "https://gis.mesacounty.us/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3742"
- ],
- "country_code": "US",
- "end_date": "2018",
- "icon": "https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png",
- "id": "MCGIS-County-Valleywide-Imagery-2018",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/co/Mesa_County_Data.pdf",
- "max_zoom": 20,
- "name": "Mesa County GIS Valleywide 2018",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://www.mesacounty.us/contact-us/copyrightdisclaimerprivacy/",
- "start_date": "2018",
- "type": "wms",
- "url": "https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/City_Color_2018/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -75.01771,
- 38.45189
- ],
- [
- -75.74174,
- 38.44996
- ],
- [
- -75.807,
- 39.73907
- ],
- [
- -75.75559,
- 39.80106
- ],
- [
- -75.64692,
- 39.85638
- ],
- [
- -75.47115,
- 39.84646
- ],
- [
- -75.37726,
- 39.81478
- ],
- [
- -75.48746,
- 39.67181
- ],
- [
- -75.50901,
- 39.43446
- ],
- [
- -75.39327,
- 39.27784
- ],
- [
- -75.30707,
- 39.01667
- ],
- [
- -75.19317,
- 38.82219
- ],
- [
- -75.05341,
- 38.80876
- ],
- [
- -75.01771,
- 38.45189
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Digital Aerial Solutions, LLC",
- "url": "https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2012/ImageServer"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326"
- ],
- "country_code": "US",
- "description": "This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware.",
- "end_date": "2012",
- "id": "Delaware2012Orthophotography",
- "name": "Delaware 2012 Orthophotography",
- "start_date": "2012",
- "type": "wms",
- "url": "https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2012/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -75.01771,
- 38.45189
- ],
- [
- -75.74174,
- 38.44996
- ],
- [
- -75.807,
- 39.73907
- ],
- [
- -75.75559,
- 39.80106
- ],
- [
- -75.64692,
- 39.85638
- ],
- [
- -75.47115,
- 39.84646
- ],
- [
- -75.37726,
- 39.81478
- ],
- [
- -75.48746,
- 39.67181
- ],
- [
- -75.50901,
- 39.43446
- ],
- [
- -75.39327,
- 39.27784
- ],
- [
- -75.30707,
- 39.01667
- ],
- [
- -75.19317,
- 38.82219
- ],
- [
- -75.05341,
- 38.80876
- ],
- [
- -75.01771,
- 38.45189
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Digital Aerial Solutions, LLC",
- "url": "https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2017/ImageServer"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326"
- ],
- "country_code": "US",
- "description": "This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware.",
- "end_date": "2017",
- "id": "Delaware2017Orthophotography",
- "name": "Delaware 2017 Orthophotography",
- "start_date": "2017",
- "type": "wms",
- "url": "https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2017/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -86.93095,
- 41.086
- ],
- [
- -86.93041,
- 40.99844
- ],
- [
- -86.92929,
- 40.9136
- ],
- [
- -86.69579,
- 40.91281
- ],
- [
- -86.57968,
- 40.91095
- ],
- [
- -86.58017,
- 40.82402
- ],
- [
- -86.58133,
- 40.73508
- ],
- [
- -86.69536,
- 40.73677
- ],
- [
- -86.75238,
- 40.73713
- ],
- [
- -86.75719,
- 40.72441
- ],
- [
- -86.74927,
- 40.71899
- ],
- [
- -86.75651,
- 40.709
- ],
- [
- -86.75831,
- 40.70082
- ],
- [
- -86.7528,
- 40.68632
- ],
- [
- -86.75884,
- 40.68177
- ],
- [
- -86.74611,
- 40.67998
- ],
- [
- -86.7455,
- 40.67817
- ],
- [
- -86.75688,
- 40.66457
- ],
- [
- -86.7743,
- 40.66412
- ],
- [
- -86.7711,
- 40.56207
- ],
- [
- -86.69544,
- 40.56209
- ],
- [
- -86.69619,
- 40.17853
- ],
- [
- -86.24242,
- 40.18069
- ],
- [
- -86.24065,
- 39.94074
- ],
- [
- -86.24067,
- 39.92607
- ],
- [
- -86.32632,
- 39.92421
- ],
- [
- -86.6937,
- 39.92283
- ],
- [
- -86.69294,
- 39.86434
- ],
- [
- -86.68456,
- 39.86481
- ],
- [
- -86.68529,
- 39.68845
- ],
- [
- -86.68574,
- 39.62997
- ],
- [
- -86.66543,
- 39.63046
- ],
- [
- -86.64035,
- 39.63049
- ],
- [
- -86.64033,
- 39.62006
- ],
- [
- -86.65224,
- 39.60871
- ],
- [
- -86.65462,
- 39.6001
- ],
- [
- -86.65276,
- 39.56656
- ],
- [
- -86.64915,
- 39.55523
- ],
- [
- -86.67058,
- 39.53389
- ],
- [
- -86.68607,
- 39.52616
- ],
- [
- -86.68604,
- 39.51438
- ],
- [
- -86.68593,
- 39.46995
- ],
- [
- -86.63229,
- 39.46957
- ],
- [
- -86.63088,
- 39.34809
- ],
- [
- -86.64755,
- 39.35578
- ],
- [
- -86.65112,
- 39.35623
- ],
- [
- -86.65585,
- 39.34353
- ],
- [
- -86.65345,
- 39.33402
- ],
- [
- -86.66534,
- 39.33173
- ],
- [
- -86.68439,
- 39.33715
- ],
- [
- -86.6849,
- 39.00994
- ],
- [
- -86.68529,
- 38.99402
- ],
- [
- -86.31766,
- 38.99358
- ],
- [
- -86.27858,
- 38.99352
- ],
- [
- -86.27876,
- 38.93414
- ],
- [
- -86.27518,
- 38.763
- ],
- [
- -86.25877,
- 38.76964
- ],
- [
- -86.25766,
- 38.76989
- ],
- [
- -86.25632,
- 38.76464
- ],
- [
- -86.25595,
- 38.76412
- ],
- [
- -86.2429,
- 38.7655
- ],
- [
- -86.24046,
- 38.76564
- ],
- [
- -86.22518,
- 38.77887
- ],
- [
- -86.22435,
- 38.77922
- ],
- [
- -86.2209,
- 38.77188
- ],
- [
- -86.22004,
- 38.77071
- ],
- [
- -86.2156,
- 38.77862
- ],
- [
- -86.21476,
- 38.77934
- ],
- [
- -86.20226,
- 38.77383
- ],
- [
- -86.19747,
- 38.77366
- ],
- [
- -86.1851,
- 38.7837
- ],
- [
- -86.1836,
- 38.78391
- ],
- [
- -86.17766,
- 38.77509
- ],
- [
- -86.173,
- 38.77274
- ],
- [
- -86.13588,
- 38.76259
- ],
- [
- -86.13545,
- 38.76235
- ],
- [
- -86.10381,
- 38.76552
- ],
- [
- -86.10252,
- 38.76556
- ],
- [
- -86.0931,
- 38.78364
- ],
- [
- -86.09219,
- 38.78371
- ],
- [
- -86.07581,
- 38.77482
- ],
- [
- -86.07469,
- 38.77421
- ],
- [
- -86.062,
- 38.77849
- ],
- [
- -86.06126,
- 38.77817
- ],
- [
- -86.02771,
- 38.75574
- ],
- [
- -86.02649,
- 38.75529
- ],
- [
- -86.0218,
- 38.76733
- ],
- [
- -86.02092,
- 38.76757
- ],
- [
- -86.01255,
- 38.75668
- ],
- [
- -86.01133,
- 38.75667
- ],
- [
- -85.98508,
- 38.76808
- ],
- [
- -85.98354,
- 38.76793
- ],
- [
- -85.98577,
- 38.75933
- ],
- [
- -85.98563,
- 38.75823
- ],
- [
- -85.97835,
- 38.7528
- ],
- [
- -85.97723,
- 38.75239
- ],
- [
- -85.96239,
- 38.76394
- ],
- [
- -85.96129,
- 38.76424
- ],
- [
- -85.95064,
- 38.76109
- ],
- [
- -85.95026,
- 38.76081
- ],
- [
- -85.94987,
- 38.75358
- ],
- [
- -85.94931,
- 38.75345
- ],
- [
- -85.93697,
- 38.76276
- ],
- [
- -85.93642,
- 38.76271
- ],
- [
- -85.93698,
- 38.75636
- ],
- [
- -85.93658,
- 38.7555
- ],
- [
- -85.91801,
- 38.74601
- ],
- [
- -85.91691,
- 38.74554
- ],
- [
- -85.91924,
- 38.75314
- ],
- [
- -85.91903,
- 38.75375
- ],
- [
- -85.91141,
- 38.7472
- ],
- [
- -85.91054,
- 38.74747
- ],
- [
- -85.91027,
- 38.75725
- ],
- [
- -85.90966,
- 38.75713
- ],
- [
- -85.90954,
- 38.75157
- ],
- [
- -85.90878,
- 38.75108
- ],
- [
- -85.89661,
- 38.75053
- ],
- [
- -85.8963,
- 38.75027
- ],
- [
- -85.89425,
- 38.7303
- ],
- [
- -85.89408,
- 38.72998
- ],
- [
- -85.88619,
- 38.73486
- ],
- [
- -85.88581,
- 38.73485
- ],
- [
- -85.88175,
- 38.72502
- ],
- [
- -85.88146,
- 38.72485
- ],
- [
- -85.84755,
- 38.73477
- ],
- [
- -85.84734,
- 38.73492
- ],
- [
- -85.82006,
- 38.77551
- ],
- [
- -85.81989,
- 38.77593
- ],
- [
- -85.8048,
- 38.77951
- ],
- [
- -85.80465,
- 38.77961
- ],
- [
- -85.8074,
- 38.78896
- ],
- [
- -85.80736,
- 38.7892
- ],
- [
- -85.79512,
- 38.80755
- ],
- [
- -85.79493,
- 38.8078
- ],
- [
- -85.79893,
- 39.12907
- ],
- [
- -85.688,
- 39.13067
- ],
- [
- -85.68507,
- 39.3387
- ],
- [
- -85.68494,
- 39.35049
- ],
- [
- -85.94282,
- 39.34752
- ],
- [
- -85.95215,
- 39.3473
- ],
- [
- -85.954,
- 39.86768
- ],
- [
- -85.95401,
- 39.86965
- ],
- [
- -85.94827,
- 39.86972
- ],
- [
- -85.93807,
- 39.86981
- ],
- [
- -85.93738,
- 39.92643
- ],
- [
- -85.93759,
- 39.92714
- ],
- [
- -85.86955,
- 39.92885
- ],
- [
- -85.86242,
- 39.92894
- ],
- [
- -85.86218,
- 40.40686
- ],
- [
- -85.86405,
- 40.56663
- ],
- [
- -86.01292,
- 40.56503
- ],
- [
- -86.16541,
- 40.56325
- ],
- [
- -86.16901,
- 40.96017
- ],
- [
- -86.16763,
- 40.99646
- ],
- [
- -86.01846,
- 40.9978
- ],
- [
- -85.94662,
- 40.99932
- ],
- [
- -85.94044,
- 40.7008
- ],
- [
- -85.93961,
- 40.65272
- ],
- [
- -85.67424,
- 40.65399
- ],
- [
- -85.6385,
- 40.65421
- ],
- [
- -85.64054,
- 40.78532
- ],
- [
- -85.64402,
- 41.00129
- ],
- [
- -85.68359,
- 41.00155
- ],
- [
- -85.68562,
- 41.08958
- ],
- [
- -85.68764,
- 41.17898
- ],
- [
- -85.65224,
- 41.17875
- ],
- [
- -85.65887,
- 41.69895
- ],
- [
- -85.6598,
- 41.7591
- ],
- [
- -86.51946,
- 41.75968
- ],
- [
- -86.52422,
- 41.75966
- ],
- [
- -86.52661,
- 41.6516
- ],
- [
- -86.52664,
- 41.65022
- ],
- [
- -86.49012,
- 41.64955
- ],
- [
- -86.48727,
- 41.64952
- ],
- [
- -86.48627,
- 41.58005
- ],
- [
- -86.48617,
- 41.57768
- ],
- [
- -86.49511,
- 41.56343
- ],
- [
- -86.49809,
- 41.56109
- ],
- [
- -86.49811,
- 41.52928
- ],
- [
- -86.4982,
- 41.52832
- ],
- [
- -86.50521,
- 41.51995
- ],
- [
- -86.52484,
- 41.51999
- ],
- [
- -86.52465,
- 41.43601
- ],
- [
- -86.52467,
- 41.43287
- ],
- [
- -86.58209,
- 41.43339
- ],
- [
- -86.64151,
- 41.4338
- ],
- [
- -86.69839,
- 41.40422
- ],
- [
- -86.70206,
- 41.40058
- ],
- [
- -86.73794,
- 41.32927
- ],
- [
- -86.73914,
- 41.32246
- ],
- [
- -86.77633,
- 41.29335
- ],
- [
- -86.78424,
- 41.28516
- ],
- [
- -86.8465,
- 41.26731
- ],
- [
- -86.87032,
- 41.26452
- ],
- [
- -86.92821,
- 41.23801
- ],
- [
- -86.93004,
- 41.2371
- ],
- [
- -86.93095,
- 41.086
- ]
- ],
- [
- [
- -86.33109,
- 38.18099
- ],
- [
- -86.28777,
- 38.15805
- ],
- [
- -86.2718,
- 38.13787
- ],
- [
- -86.27866,
- 38.09851
- ],
- [
- -86.27872,
- 38.0893
- ],
- [
- -86.26689,
- 38.05712
- ],
- [
- -86.26127,
- 38.05272
- ],
- [
- -86.19093,
- 38.01644
- ],
- [
- -86.17898,
- 38.01131
- ],
- [
- -86.10023,
- 38.01074
- ],
- [
- -86.09466,
- 38.00864
- ],
- [
- -86.04537,
- 37.95884
- ],
- [
- -86.04352,
- 37.95869
- ],
- [
- -86.03632,
- 37.96156
- ],
- [
- -86.03517,
- 37.96327
- ],
- [
- -86.03106,
- 37.99164
- ],
- [
- -86.02831,
- 37.99322
- ],
- [
- -85.94916,
- 38.00484
- ],
- [
- -85.94706,
- 38.00508
- ],
- [
- -85.92644,
- 38.02085
- ],
- [
- -85.925,
- 38.02259
- ],
- [
- -85.90524,
- 38.08899
- ],
- [
- -85.90505,
- 38.09007
- ],
- [
- -85.90893,
- 38.14231
- ],
- [
- -85.90882,
- 38.14497
- ],
- [
- -85.90039,
- 38.17904
- ],
- [
- -85.89986,
- 38.17988
- ],
- [
- -85.89992,
- 38.18561
- ],
- [
- -85.95077,
- 38.18574
- ],
- [
- -85.9549,
- 38.26055
- ],
- [
- -85.97366,
- 38.26063
- ],
- [
- -85.97355,
- 38.27558
- ],
- [
- -85.99466,
- 38.27522
- ],
- [
- -85.99564,
- 38.30242
- ],
- [
- -86.0144,
- 38.30249
- ],
- [
- -86.01481,
- 38.33059
- ],
- [
- -86.033,
- 38.33067
- ],
- [
- -86.03244,
- 38.41768
- ],
- [
- -86.25445,
- 38.4224
- ],
- [
- -86.25917,
- 38.41516
- ],
- [
- -86.26447,
- 38.412
- ],
- [
- -86.25802,
- 38.41017
- ],
- [
- -86.25215,
- 38.40699
- ],
- [
- -86.24927,
- 38.39066
- ],
- [
- -86.24576,
- 38.38794
- ],
- [
- -86.25517,
- 38.38433
- ],
- [
- -86.26163,
- 38.38117
- ],
- [
- -86.2593,
- 38.37754
- ],
- [
- -86.25816,
- 38.36666
- ],
- [
- -86.24819,
- 38.36301
- ],
- [
- -86.2482,
- 38.36029
- ],
- [
- -86.25291,
- 38.35577
- ],
- [
- -86.25703,
- 38.35442
- ],
- [
- -86.26405,
- 38.36123
- ],
- [
- -86.2705,
- 38.3617
- ],
- [
- -86.27353,
- 38.3243
- ],
- [
- -86.27306,
- 38.32159
- ],
- [
- -86.28346,
- 38.33154
- ],
- [
- -86.28605,
- 38.33195
- ],
- [
- -86.28451,
- 38.32105
- ],
- [
- -86.28941,
- 38.31641
- ],
- [
- -86.28263,
- 38.31106
- ],
- [
- -86.27581,
- 38.30841
- ],
- [
- -86.27864,
- 38.30298
- ],
- [
- -86.27444,
- 38.29991
- ],
- [
- -86.27136,
- 38.30714
- ],
- [
- -86.26773,
- 38.30867
- ],
- [
- -86.25894,
- 38.30638
- ],
- [
- -86.26423,
- 38.30413
- ],
- [
- -86.26485,
- 38.29461
- ],
- [
- -86.25253,
- 38.29504
- ],
- [
- -86.25313,
- 38.29142
- ],
- [
- -86.26959,
- 38.27831
- ],
- [
- -86.27486,
- 38.27832
- ],
- [
- -86.27612,
- 38.25294
- ],
- [
- -86.27737,
- 38.2271
- ],
- [
- -86.27972,
- 38.22348
- ],
- [
- -86.28442,
- 38.22077
- ],
- [
- -86.29319,
- 38.22487
- ],
- [
- -86.29788,
- 38.2217
- ],
- [
- -86.29848,
- 38.21944
- ],
- [
- -86.28912,
- 38.21398
- ],
- [
- -86.29557,
- 38.20946
- ],
- [
- -86.29032,
- 38.20175
- ],
- [
- -86.30627,
- 38.20273
- ],
- [
- -86.30848,
- 38.20087
- ],
- [
- -86.31671,
- 38.18955
- ],
- [
- -86.31847,
- 38.18819
- ],
- [
- -86.3097,
- 38.18183
- ],
- [
- -86.31264,
- 38.17822
- ],
- [
- -86.33109,
- 38.18099
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc."
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:26916"
- ],
- "country_code": "US",
- "description": "Orthophotography for 24 counties in central Indiana, collected during leaf-off conditions in 2016. One-foot resolution for Bartholomew, Boon, Brown, Carroll, Cass, Clinton, Elkhart, Hamilton, Hendricks, Howard, Johnson, Marion, Marshall, Pulaski, St. Joseph, Starke, and Tipton counties. Six-inch resolution for Fulton, Harrison, Jackson, Kosciusko, Monroe, Morgan, and Wabash counties.",
- "end_date": "2016",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif",
- "id": "IndianaMap2016",
- "license_url": "https://gis.iu.edu/datasetInfo/statewide/in_2016.php",
- "max_zoom": 20,
- "min_zoom": 4,
- "name": "IndianaMap Orthoimagery 2016",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://gis.iu.edu/privacy.php",
- "start_date": "2016",
- "type": "wms",
- "url": "https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2016/MapServer/WmsServer?FORMAT=image/jpeg&TRANSPARENT=FALSE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -86.68529,
- 38.99402
- ],
- [
- -86.67996,
- 38.27838
- ],
- [
- -86.67992,
- 38.26342
- ],
- [
- -86.66644,
- 38.26344
- ],
- [
- -86.57149,
- 38.26445
- ],
- [
- -86.57202,
- 38.20824
- ],
- [
- -86.46132,
- 38.20826
- ],
- [
- -86.46253,
- 38.12986
- ],
- [
- -86.46293,
- 38.11943
- ],
- [
- -86.43208,
- 38.12614
- ],
- [
- -86.43175,
- 38.12612
- ],
- [
- -86.40507,
- 38.1058
- ],
- [
- -86.40141,
- 38.10504
- ],
- [
- -86.38722,
- 38.12463
- ],
- [
- -86.37977,
- 38.12927
- ],
- [
- -86.336,
- 38.1292
- ],
- [
- -86.33514,
- 38.12924
- ],
- [
- -86.32345,
- 38.13903
- ],
- [
- -86.32091,
- 38.1471
- ],
- [
- -86.33079,
- 38.15764
- ],
- [
- -86.33553,
- 38.15941
- ],
- [
- -86.36675,
- 38.1634
- ],
- [
- -86.37038,
- 38.16528
- ],
- [
- -86.37546,
- 38.18741
- ],
- [
- -86.37402,
- 38.19055
- ],
- [
- -86.36106,
- 38.19673
- ],
- [
- -86.35711,
- 38.19649
- ],
- [
- -86.31732,
- 38.17822
- ],
- [
- -86.31264,
- 38.17822
- ],
- [
- -86.31591,
- 38.18524
- ],
- [
- -86.31847,
- 38.18819
- ],
- [
- -86.30919,
- 38.19754
- ],
- [
- -86.30848,
- 38.20087
- ],
- [
- -86.29384,
- 38.2013
- ],
- [
- -86.29032,
- 38.20175
- ],
- [
- -86.29557,
- 38.20946
- ],
- [
- -86.2903,
- 38.21081
- ],
- [
- -86.28912,
- 38.21398
- ],
- [
- -86.29848,
- 38.21944
- ],
- [
- -86.29788,
- 38.2217
- ],
- [
- -86.27972,
- 38.22348
- ],
- [
- -86.27737,
- 38.2271
- ],
- [
- -86.27551,
- 38.25702
- ],
- [
- -86.27486,
- 38.27832
- ],
- [
- -86.25313,
- 38.29142
- ],
- [
- -86.25253,
- 38.29504
- ],
- [
- -86.26015,
- 38.29733
- ],
- [
- -86.26485,
- 38.29461
- ],
- [
- -86.25895,
- 38.30503
- ],
- [
- -86.25894,
- 38.30638
- ],
- [
- -86.27136,
- 38.30714
- ],
- [
- -86.27444,
- 38.29991
- ],
- [
- -86.28263,
- 38.31106
- ],
- [
- -86.28941,
- 38.31641
- ],
- [
- -86.28451,
- 38.32105
- ],
- [
- -86.28307,
- 38.32473
- ],
- [
- -86.28754,
- 38.32958
- ],
- [
- -86.28605,
- 38.33195
- ],
- [
- -86.27594,
- 38.32018
- ],
- [
- -86.27306,
- 38.32159
- ],
- [
- -86.27345,
- 38.35627
- ],
- [
- -86.2705,
- 38.3617
- ],
- [
- -86.25291,
- 38.35577
- ],
- [
- -86.2482,
- 38.36029
- ],
- [
- -86.2593,
- 38.37754
- ],
- [
- -86.26163,
- 38.38117
- ],
- [
- -86.24635,
- 38.38613
- ],
- [
- -86.24576,
- 38.38794
- ],
- [
- -86.25334,
- 38.402
- ],
- [
- -86.25215,
- 38.40699
- ],
- [
- -86.26272,
- 38.40973
- ],
- [
- -86.26447,
- 38.412
- ],
- [
- -86.25917,
- 38.41516
- ],
- [
- -86.25445,
- 38.4224
- ],
- [
- -86.03244,
- 38.41768
- ],
- [
- -86.033,
- 38.33067
- ],
- [
- -86.01481,
- 38.33059
- ],
- [
- -86.0144,
- 38.30249
- ],
- [
- -85.99564,
- 38.30242
- ],
- [
- -85.99466,
- 38.27522
- ],
- [
- -85.97355,
- 38.27558
- ],
- [
- -85.97359,
- 38.27054
- ],
- [
- -85.97366,
- 38.26063
- ],
- [
- -85.9549,
- 38.26055
- ],
- [
- -85.95077,
- 38.18574
- ],
- [
- -85.89992,
- 38.18561
- ],
- [
- -85.89986,
- 38.17988
- ],
- [
- -85.84499,
- 38.23024
- ],
- [
- -85.84422,
- 38.23109
- ],
- [
- -85.82696,
- 38.27839
- ],
- [
- -85.82559,
- 38.2794
- ],
- [
- -85.78149,
- 38.28825
- ],
- [
- -85.78098,
- 38.28829
- ],
- [
- -85.74553,
- 38.26698
- ],
- [
- -85.74392,
- 38.2671
- ],
- [
- -85.67667,
- 38.29986
- ],
- [
- -85.67558,
- 38.30067
- ],
- [
- -85.65256,
- 38.32841
- ],
- [
- -85.65165,
- 38.3301
- ],
- [
- -85.63191,
- 38.3978
- ],
- [
- -85.63166,
- 38.39877
- ],
- [
- -85.60737,
- 38.43805
- ],
- [
- -85.60677,
- 38.43869
- ],
- [
- -85.58381,
- 38.45058
- ],
- [
- -85.58123,
- 38.45136
- ],
- [
- -85.50038,
- 38.46755
- ],
- [
- -85.49931,
- 38.46799
- ],
- [
- -85.46866,
- 38.50867
- ],
- [
- -85.46682,
- 38.51025
- ],
- [
- -85.42008,
- 38.53466
- ],
- [
- -85.41957,
- 38.53503
- ],
- [
- -85.41566,
- 38.56235
- ],
- [
- -85.41566,
- 38.56312
- ],
- [
- -85.43759,
- 38.60284
- ],
- [
- -85.43824,
- 38.60468
- ],
- [
- -85.43837,
- 38.65779
- ],
- [
- -85.43854,
- 38.65896
- ],
- [
- -85.45673,
- 38.68734
- ],
- [
- -85.4569,
- 38.68851
- ],
- [
- -85.45197,
- 38.70988
- ],
- [
- -85.45184,
- 38.7102
- ],
- [
- -85.43609,
- 38.7285
- ],
- [
- -85.43532,
- 38.729
- ],
- [
- -85.41644,
- 38.73643
- ],
- [
- -85.41489,
- 38.73677
- ],
- [
- -85.36507,
- 38.73034
- ],
- [
- -85.3636,
- 38.73037
- ],
- [
- -85.27859,
- 38.74159
- ],
- [
- -85.2767,
- 38.74135
- ],
- [
- -85.24937,
- 38.73348
- ],
- [
- -85.24859,
- 38.73314
- ],
- [
- -85.21096,
- 38.69444
- ],
- [
- -85.20967,
- 38.69367
- ],
- [
- -85.16501,
- 38.6898
- ],
- [
- -85.16321,
- 38.69019
- ],
- [
- -84.9939,
- 38.77765
- ],
- [
- -84.99229,
- 38.77815
- ],
- [
- -84.94286,
- 38.77541
- ],
- [
- -84.94121,
- 38.77565
- ],
- [
- -84.88761,
- 38.79478
- ],
- [
- -84.88724,
- 38.7948
- ],
- [
- -84.81562,
- 38.78393
- ],
- [
- -84.8149,
- 38.78428
- ],
- [
- -84.8131,
- 38.79745
- ],
- [
- -84.81339,
- 38.79851
- ],
- [
- -84.83,
- 38.82966
- ],
- [
- -84.82993,
- 38.83037
- ],
- [
- -84.79418,
- 38.85753
- ],
- [
- -84.79354,
- 38.85784
- ],
- [
- -84.78486,
- 38.87357
- ],
- [
- -84.78461,
- 38.87498
- ],
- [
- -84.8015,
- 38.89171
- ],
- [
- -84.80298,
- 38.89227
- ],
- [
- -84.86245,
- 38.89789
- ],
- [
- -84.8637,
- 38.89809
- ],
- [
- -84.87596,
- 38.90778
- ],
- [
- -84.87702,
- 38.90901
- ],
- [
- -84.87765,
- 38.92059
- ],
- [
- -84.87706,
- 38.92147
- ],
- [
- -84.83422,
- 38.95885
- ],
- [
- -84.83363,
- 38.95943
- ],
- [
- -84.82995,
- 38.97142
- ],
- [
- -84.83003,
- 38.97305
- ],
- [
- -84.89728,
- 39.05471
- ],
- [
- -84.89739,
- 39.05548
- ],
- [
- -84.82239,
- 39.10457
- ],
- [
- -84.81993,
- 39.10544
- ],
- [
- -84.80397,
- 40.30267
- ],
- [
- -84.80358,
- 40.31025
- ],
- [
- -84.80292,
- 40.92236
- ],
- [
- -84.80292,
- 40.92257
- ],
- [
- -85.3224,
- 40.91703
- ],
- [
- -85.33597,
- 40.91703
- ],
- [
- -85.33847,
- 41.12909
- ],
- [
- -85.3389,
- 41.15113
- ],
- [
- -85.33818,
- 41.17286
- ],
- [
- -85.31331,
- 41.17316
- ],
- [
- -85.30997,
- 41.1732
- ],
- [
- -85.30921,
- 41.25112
- ],
- [
- -85.30777,
- 41.26413
- ],
- [
- -84.84755,
- 41.27
- ],
- [
- -84.80356,
- 41.27116
- ],
- [
- -84.80613,
- 41.74312
- ],
- [
- -84.80588,
- 41.76022
- ],
- [
- -85.65074,
- 41.7591
- ],
- [
- -85.6598,
- 41.7591
- ],
- [
- -85.65224,
- 41.17875
- ],
- [
- -85.68764,
- 41.17898
- ],
- [
- -85.68359,
- 41.00155
- ],
- [
- -85.64402,
- 41.00129
- ],
- [
- -85.64014,
- 40.76899
- ],
- [
- -85.6385,
- 40.65421
- ],
- [
- -85.90024,
- 40.65254
- ],
- [
- -85.93961,
- 40.65272
- ],
- [
- -85.94663,
- 40.99751
- ],
- [
- -85.94662,
- 40.99932
- ],
- [
- -86.12927,
- 40.99726
- ],
- [
- -86.16763,
- 40.99646
- ],
- [
- -86.16805,
- 40.64354
- ],
- [
- -86.16541,
- 40.56325
- ],
- [
- -85.89975,
- 40.56636
- ],
- [
- -85.86405,
- 40.56663
- ],
- [
- -85.86211,
- 40.37841
- ],
- [
- -85.86144,
- 40.21908
- ],
- [
- -86.12848,
- 40.21759
- ],
- [
- -86.2435,
- 40.21516
- ],
- [
- -86.24065,
- 39.94074
- ],
- [
- -86.24067,
- 39.92607
- ],
- [
- -85.93779,
- 39.92712
- ],
- [
- -85.93759,
- 39.92714
- ],
- [
- -85.93807,
- 39.87702
- ],
- [
- -85.93807,
- 39.86981
- ],
- [
- -85.95364,
- 39.86965
- ],
- [
- -85.95401,
- 39.86965
- ],
- [
- -85.95269,
- 39.36098
- ],
- [
- -85.95215,
- 39.3473
- ],
- [
- -85.79977,
- 39.35073
- ],
- [
- -85.68494,
- 39.35049
- ],
- [
- -85.688,
- 39.13067
- ],
- [
- -85.79893,
- 39.12907
- ],
- [
- -85.79535,
- 38.82447
- ],
- [
- -85.79493,
- 38.8078
- ],
- [
- -85.80719,
- 38.78942
- ],
- [
- -85.80736,
- 38.7892
- ],
- [
- -85.80444,
- 38.78003
- ],
- [
- -85.80451,
- 38.77981
- ],
- [
- -85.81957,
- 38.77608
- ],
- [
- -85.81989,
- 38.77593
- ],
- [
- -85.84718,
- 38.73514
- ],
- [
- -85.84734,
- 38.73492
- ],
- [
- -85.88015,
- 38.72487
- ],
- [
- -85.88046,
- 38.72479
- ],
- [
- -85.88555,
- 38.73468
- ],
- [
- -85.88581,
- 38.73485
- ],
- [
- -85.89381,
- 38.72974
- ],
- [
- -85.89408,
- 38.72998
- ],
- [
- -85.89621,
- 38.74987
- ],
- [
- -85.8963,
- 38.75027
- ],
- [
- -85.90901,
- 38.75661
- ],
- [
- -85.90966,
- 38.75713
- ],
- [
- -85.9097,
- 38.74805
- ],
- [
- -85.91054,
- 38.74747
- ],
- [
- -85.91869,
- 38.75411
- ],
- [
- -85.91903,
- 38.75375
- ],
- [
- -85.91605,
- 38.7457
- ],
- [
- -85.91691,
- 38.74554
- ],
- [
- -85.9358,
- 38.75504
- ],
- [
- -85.93658,
- 38.7555
- ],
- [
- -85.9361,
- 38.76235
- ],
- [
- -85.93642,
- 38.76271
- ],
- [
- -85.94798,
- 38.75356
- ],
- [
- -85.94931,
- 38.75345
- ],
- [
- -85.96056,
- 38.7641
- ],
- [
- -85.96129,
- 38.76424
- ],
- [
- -85.97598,
- 38.75232
- ],
- [
- -85.97723,
- 38.75239
- ],
- [
- -85.985,
- 38.75764
- ],
- [
- -85.98563,
- 38.75823
- ],
- [
- -85.98233,
- 38.76692
- ],
- [
- -85.98256,
- 38.76759
- ],
- [
- -86.01028,
- 38.75687
- ],
- [
- -86.01133,
- 38.75667
- ],
- [
- -86.01902,
- 38.76736
- ],
- [
- -86.02092,
- 38.76757
- ],
- [
- -86.02585,
- 38.75538
- ],
- [
- -86.02649,
- 38.75529
- ],
- [
- -86.06023,
- 38.7775
- ],
- [
- -86.06126,
- 38.77817
- ],
- [
- -86.0734,
- 38.77417
- ],
- [
- -86.07469,
- 38.77421
- ],
- [
- -86.09118,
- 38.7835
- ],
- [
- -86.09219,
- 38.78371
- ],
- [
- -86.10176,
- 38.76589
- ],
- [
- -86.10252,
- 38.76556
- ],
- [
- -86.13481,
- 38.76227
- ],
- [
- -86.13545,
- 38.76235
- ],
- [
- -86.17165,
- 38.77244
- ],
- [
- -86.173,
- 38.77274
- ],
- [
- -86.18176,
- 38.78289
- ],
- [
- -86.1836,
- 38.78391
- ],
- [
- -86.19724,
- 38.77408
- ],
- [
- -86.19747,
- 38.77366
- ],
- [
- -86.21178,
- 38.77945
- ],
- [
- -86.21476,
- 38.77934
- ],
- [
- -86.21851,
- 38.7705
- ],
- [
- -86.22004,
- 38.77071
- ],
- [
- -86.22363,
- 38.77925
- ],
- [
- -86.22435,
- 38.77922
- ],
- [
- -86.23696,
- 38.76775
- ],
- [
- -86.24046,
- 38.76564
- ],
- [
- -86.27167,
- 38.76451
- ],
- [
- -86.27518,
- 38.763
- ],
- [
- -86.27875,
- 38.986
- ],
- [
- -86.27858,
- 38.99352
- ],
- [
- -86.68529,
- 38.99402
- ]
- ],
- [
- [
- -87.9869,
- 38.25738
- ],
- [
- -87.98177,
- 38.23376
- ],
- [
- -87.9843,
- 38.2304
- ],
- [
- -87.79945,
- 38.22857
- ],
- [
- -87.79978,
- 38.21407
- ],
- [
- -87.79955,
- 38.20092
- ],
- [
- -87.68887,
- 38.20204
- ],
- [
- -87.68891,
- 38.1685
- ],
- [
- -87.46706,
- 38.16543
- ],
- [
- -87.46665,
- 38.19389
- ],
- [
- -87.46633,
- 38.20354
- ],
- [
- -87.35565,
- 38.20482
- ],
- [
- -87.31699,
- 38.20508
- ],
- [
- -87.31686,
- 38.24588
- ],
- [
- -87.31599,
- 38.37733
- ],
- [
- -87.33482,
- 38.38173
- ],
- [
- -87.34541,
- 38.38347
- ],
- [
- -87.40584,
- 38.38032
- ],
- [
- -87.40759,
- 38.3794
- ],
- [
- -87.40712,
- 38.43606
- ],
- [
- -87.44473,
- 38.43623
- ],
- [
- -87.44453,
- 38.46706
- ],
- [
- -87.46394,
- 38.4669
- ],
- [
- -87.46401,
- 38.51722
- ],
- [
- -87.4642,
- 38.53217
- ],
- [
- -87.47051,
- 38.51988
- ],
- [
- -87.47047,
- 38.51626
- ],
- [
- -87.47569,
- 38.51123
- ],
- [
- -87.49091,
- 38.50567
- ],
- [
- -87.49255,
- 38.49704
- ],
- [
- -87.49548,
- 38.49566
- ],
- [
- -87.50017,
- 38.49517
- ],
- [
- -87.51323,
- 38.50367
- ],
- [
- -87.52786,
- 38.49857
- ],
- [
- -87.5314,
- 38.49899
- ],
- [
- -87.52985,
- 38.51442
- ],
- [
- -87.53637,
- 38.51844
- ],
- [
- -87.54693,
- 38.51654
- ],
- [
- -87.5498,
- 38.51153
- ],
- [
- -87.54139,
- 38.49936
- ],
- [
- -87.54069,
- 38.49166
- ],
- [
- -87.55772,
- 38.4897
- ],
- [
- -87.57302,
- 38.49093
- ],
- [
- -87.57962,
- 38.49948
- ],
- [
- -87.58373,
- 38.49945
- ],
- [
- -87.58059,
- 38.48588
- ],
- [
- -87.57997,
- 38.48362
- ],
- [
- -87.59023,
- 38.46222
- ],
- [
- -87.59888,
- 38.45082
- ],
- [
- -87.63108,
- 38.44282
- ],
- [
- -87.63579,
- 38.44323
- ],
- [
- -87.6371,
- 38.45228
- ],
- [
- -87.64069,
- 38.45587
- ],
- [
- -87.65128,
- 38.45714
- ],
- [
- -87.656,
- 38.458
- ],
- [
- -87.6723,
- 38.44833
- ],
- [
- -87.67345,
- 38.4465
- ],
- [
- -87.66273,
- 38.43799
- ],
- [
- -87.66206,
- 38.43256
- ],
- [
- -87.7433,
- 38.41401
- ],
- [
- -87.74413,
- 38.4141
- ],
- [
- -87.77157,
- 38.37799
- ],
- [
- -87.77267,
- 38.37656
- ],
- [
- -87.80361,
- 38.36406
- ],
- [
- -87.80768,
- 38.36175
- ],
- [
- -87.82237,
- 38.34582
- ],
- [
- -87.82357,
- 38.34448
- ],
- [
- -87.83209,
- 38.29841
- ],
- [
- -87.83227,
- 38.29745
- ],
- [
- -87.84315,
- 38.27932
- ],
- [
- -87.84663,
- 38.27702
- ],
- [
- -87.86249,
- 38.28335
- ],
- [
- -87.86305,
- 38.28425
- ],
- [
- -87.8684,
- 38.31254
- ],
- [
- -87.87073,
- 38.31296
- ],
- [
- -87.90788,
- 38.27006
- ],
- [
- -87.90916,
- 38.26955
- ],
- [
- -87.91712,
- 38.27358
- ],
- [
- -87.91753,
- 38.27531
- ],
- [
- -87.9074,
- 38.2931
- ],
- [
- -87.90796,
- 38.29582
- ],
- [
- -87.93145,
- 38.29737
- ],
- [
- -87.93436,
- 38.29517
- ],
- [
- -87.9475,
- 38.27861
- ],
- [
- -87.94981,
- 38.27675
- ],
- [
- -87.94382,
- 38.26401
- ],
- [
- -87.94385,
- 38.2622
- ],
- [
- -87.95967,
- 38.24218
- ],
- [
- -87.96045,
- 38.24177
- ],
- [
- -87.97899,
- 38.25866
- ],
- [
- -87.97997,
- 38.25958
- ],
- [
- -87.9869,
- 38.25738
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc."
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:26916"
- ],
- "country_code": "US",
- "description": "Orthophotography for 39 counties in eastern Indiana, collected during leaf-off conditions in 2017. One-foot resolution for Adams, Blackford, Clark, Crawford, Decatur, Delaware, Fayette, Floyd, Franklin, Grant, Hamilton, Hancock, Henry, Huntington, Jay, Jefferson, Jennings, Lagrange, Lawrence, Madison, Miami, Noble, Ohio, Orange, Randolph, Ripley, Rush, Scott, Switzerland, Union, and Washington counties. Six-inch resolution for Dearborn, Dekalb, Gibson, Shelby, Steuben, Wayne, Wells, and Whitley counties. Three-inch resolution for Hamilton County and Shelbyville.",
- "end_date": "2017",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif",
- "id": "IndianaMap2017",
- "license_url": "https://gis.iu.edu/datasetInfo/statewide/in_2016.php",
- "max_zoom": 20,
- "min_zoom": 4,
- "name": "IndianaMap Orthoimagery 2017",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://gis.iu.edu/privacy.php",
- "start_date": "2017",
- "type": "wms",
- "url": "https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2017/MapServer/WmsServer?FORMAT=image/jpeg&TRANSPARENT=FALSE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -88.0997,
- 37.90441
- ],
- [
- -88.06863,
- 37.85773
- ],
- [
- -88.06288,
- 37.85102
- ],
- [
- -88.02672,
- 37.8371
- ],
- [
- -88.02543,
- 37.83344
- ],
- [
- -88.03865,
- 37.82239
- ],
- [
- -88.04431,
- 37.82151
- ],
- [
- -88.07796,
- 37.83094
- ],
- [
- -88.08182,
- 37.83114
- ],
- [
- -88.09143,
- 37.81819
- ],
- [
- -88.08912,
- 37.815
- ],
- [
- -88.06783,
- 37.79988
- ],
- [
- -88.06397,
- 37.799
- ],
- [
- -88.03556,
- 37.81121
- ],
- [
- -88.03118,
- 37.8108
- ],
- [
- -88.02509,
- 37.80253
- ],
- [
- -88.02502,
- 37.7999
- ],
- [
- -88.00471,
- 37.80015
- ],
- [
- -87.9971,
- 37.79767
- ],
- [
- -87.95948,
- 37.77311
- ],
- [
- -87.95259,
- 37.77174
- ],
- [
- -87.93323,
- 37.79697
- ],
- [
- -87.93255,
- 37.79767
- ],
- [
- -87.90681,
- 37.80762
- ],
- [
- -87.9046,
- 37.81253
- ],
- [
- -87.90777,
- 37.83761
- ],
- [
- -87.91028,
- 37.84342
- ],
- [
- -87.94102,
- 37.87917
- ],
- [
- -87.94084,
- 37.88334
- ],
- [
- -87.89616,
- 37.9284
- ],
- [
- -87.89614,
- 37.9284
- ],
- [
- -87.87326,
- 37.92145
- ],
- [
- -87.87254,
- 37.921
- ],
- [
- -87.8381,
- 37.87977
- ],
- [
- -87.83388,
- 37.87732
- ],
- [
- -87.78517,
- 37.87216
- ],
- [
- -87.76563,
- 37.86662
- ],
- [
- -87.73176,
- 37.88574
- ],
- [
- -87.72678,
- 37.89148
- ],
- [
- -87.6765,
- 37.90216
- ],
- [
- -87.67573,
- 37.90193
- ],
- [
- -87.66286,
- 37.88558
- ],
- [
- -87.66282,
- 37.88145
- ],
- [
- -87.6754,
- 37.86595
- ],
- [
- -87.68163,
- 37.85592
- ],
- [
- -87.68069,
- 37.84062
- ],
- [
- -87.67919,
- 37.83632
- ],
- [
- -87.66718,
- 37.82764
- ],
- [
- -87.66652,
- 37.82746
- ],
- [
- -87.62501,
- 37.82908
- ],
- [
- -87.6154,
- 37.83197
- ],
- [
- -87.58873,
- 37.86098
- ],
- [
- -87.58843,
- 37.86879
- ],
- [
- -87.59037,
- 37.88013
- ],
- [
- -87.59158,
- 37.88719
- ],
- [
- -87.61988,
- 37.90665
- ],
- [
- -87.62027,
- 37.90692
- ],
- [
- -87.62842,
- 37.92145
- ],
- [
- -87.62896,
- 37.92671
- ],
- [
- -87.61082,
- 37.9446
- ],
- [
- -87.60622,
- 37.94964
- ],
- [
- -87.60051,
- 37.97291
- ],
- [
- -87.60035,
- 37.97314
- ],
- [
- -87.58818,
- 37.97603
- ],
- [
- -87.58795,
- 37.97617
- ],
- [
- -87.57576,
- 37.96872
- ],
- [
- -87.5755,
- 37.9684
- ],
- [
- -87.57705,
- 37.95222
- ],
- [
- -87.57749,
- 37.95173
- ],
- [
- -87.56396,
- 37.93533
- ],
- [
- -87.56188,
- 37.9331
- ],
- [
- -87.5115,
- 37.90643
- ],
- [
- -87.51077,
- 37.90615
- ],
- [
- -87.44949,
- 37.94181
- ],
- [
- -87.44779,
- 37.94243
- ],
- [
- -87.42852,
- 37.94481
- ],
- [
- -87.41858,
- 37.94476
- ],
- [
- -87.38051,
- 37.93567
- ],
- [
- -87.38025,
- 37.9356
- ],
- [
- -87.25525,
- 37.86733
- ],
- [
- -87.22094,
- 37.84913
- ],
- [
- -87.16486,
- 37.84121
- ],
- [
- -87.16232,
- 37.84016
- ],
- [
- -87.13291,
- 37.7933
- ],
- [
- -87.13094,
- 37.78801
- ],
- [
- -87.11433,
- 37.78253
- ],
- [
- -87.11113,
- 37.78251
- ],
- [
- -87.09197,
- 37.78699
- ],
- [
- -87.08835,
- 37.78889
- ],
- [
- -87.06805,
- 37.80576
- ],
- [
- -87.06784,
- 37.80606
- ],
- [
- -87.04926,
- 37.85974
- ],
- [
- -87.04385,
- 37.8708
- ],
- [
- -87.04535,
- 37.8929
- ],
- [
- -87.0451,
- 37.89377
- ],
- [
- -87.03589,
- 37.90429
- ],
- [
- -87.03344,
- 37.90659
- ],
- [
- -86.97896,
- 37.9302
- ],
- [
- -86.96904,
- 37.93286
- ],
- [
- -86.91963,
- 37.9366
- ],
- [
- -86.91933,
- 37.93666
- ],
- [
- -86.86322,
- 37.9825
- ],
- [
- -86.85595,
- 37.98729
- ],
- [
- -86.82349,
- 37.99894
- ],
- [
- -86.82007,
- 37.99939
- ],
- [
- -86.8037,
- 37.99345
- ],
- [
- -86.79498,
- 37.98898
- ],
- [
- -86.76733,
- 37.93617
- ],
- [
- -86.76505,
- 37.93251
- ],
- [
- -86.73445,
- 37.89641
- ],
- [
- -86.73146,
- 37.89434
- ],
- [
- -86.71846,
- 37.89312
- ],
- [
- -86.71614,
- 37.89407
- ],
- [
- -86.68601,
- 37.91308
- ],
- [
- -86.68093,
- 37.91501
- ],
- [
- -86.64773,
- 37.90905
- ],
- [
- -86.64708,
- 37.90862
- ],
- [
- -86.64404,
- 37.8982
- ],
- [
- -86.64475,
- 37.89481
- ],
- [
- -86.6625,
- 37.85695
- ],
- [
- -86.66158,
- 37.84942
- ],
- [
- -86.6553,
- 37.84251
- ],
- [
- -86.65252,
- 37.84164
- ],
- [
- -86.63351,
- 37.84415
- ],
- [
- -86.62576,
- 37.84727
- ],
- [
- -86.60462,
- 37.85827
- ],
- [
- -86.59811,
- 37.86738
- ],
- [
- -86.59595,
- 37.91445
- ],
- [
- -86.58858,
- 37.92116
- ],
- [
- -86.54072,
- 37.91687
- ],
- [
- -86.53416,
- 37.91701
- ],
- [
- -86.50783,
- 37.92883
- ],
- [
- -86.50662,
- 37.93072
- ],
- [
- -86.52383,
- 37.96217
- ],
- [
- -86.52517,
- 37.96823
- ],
- [
- -86.52183,
- 38.03833
- ],
- [
- -86.5194,
- 38.04124
- ],
- [
- -86.4719,
- 38.04622
- ],
- [
- -86.45219,
- 38.05049
- ],
- [
- -86.43135,
- 38.07334
- ],
- [
- -86.43052,
- 38.0783
- ],
- [
- -86.45991,
- 38.09656
- ],
- [
- -86.46386,
- 38.10118
- ],
- [
- -86.46253,
- 38.12986
- ],
- [
- -86.46132,
- 38.20826
- ],
- [
- -86.57202,
- 38.20824
- ],
- [
- -86.57149,
- 38.26445
- ],
- [
- -86.66644,
- 38.26344
- ],
- [
- -86.67992,
- 38.26342
- ],
- [
- -86.68299,
- 39.25374
- ],
- [
- -86.68439,
- 39.33715
- ],
- [
- -86.66059,
- 39.33355
- ],
- [
- -86.65582,
- 39.33129
- ],
- [
- -86.65527,
- 39.34942
- ],
- [
- -86.65112,
- 39.35623
- ],
- [
- -86.63088,
- 39.34809
- ],
- [
- -86.63229,
- 39.46957
- ],
- [
- -86.68593,
- 39.46995
- ],
- [
- -86.68604,
- 39.51438
- ],
- [
- -86.68607,
- 39.52616
- ],
- [
- -86.65331,
- 39.54752
- ],
- [
- -86.64915,
- 39.55523
- ],
- [
- -86.65459,
- 39.5865
- ],
- [
- -86.6552,
- 39.59647
- ],
- [
- -86.64033,
- 39.62006
- ],
- [
- -86.64035,
- 39.63049
- ],
- [
- -86.66543,
- 39.63046
- ],
- [
- -86.68574,
- 39.62997
- ],
- [
- -86.6952,
- 40.4751
- ],
- [
- -86.69544,
- 40.56209
- ],
- [
- -86.7711,
- 40.56207
- ],
- [
- -86.7743,
- 40.66412
- ],
- [
- -86.75688,
- 40.66457
- ],
- [
- -86.75336,
- 40.67271
- ],
- [
- -86.7455,
- 40.67817
- ],
- [
- -86.75702,
- 40.67951
- ],
- [
- -86.75884,
- 40.68177
- ],
- [
- -86.7528,
- 40.68632
- ],
- [
- -86.74978,
- 40.68859
- ],
- [
- -86.75526,
- 40.69493
- ],
- [
- -86.75831,
- 40.70082
- ],
- [
- -86.7541,
- 40.71308
- ],
- [
- -86.74927,
- 40.71899
- ],
- [
- -86.75719,
- 40.72441
- ],
- [
- -86.75236,
- 40.73304
- ],
- [
- -86.75238,
- 40.73713
- ],
- [
- -86.69536,
- 40.73677
- ],
- [
- -86.58133,
- 40.73508
- ],
- [
- -86.58017,
- 40.82402
- ],
- [
- -86.57968,
- 40.91095
- ],
- [
- -86.81376,
- 40.91303
- ],
- [
- -86.92929,
- 40.9136
- ],
- [
- -86.93,
- 41.22984
- ],
- [
- -86.93004,
- 41.2371
- ],
- [
- -86.87763,
- 41.25996
- ],
- [
- -86.87032,
- 41.26452
- ],
- [
- -86.81414,
- 41.27329
- ],
- [
- -86.78424,
- 41.28516
- ],
- [
- -86.74584,
- 41.31701
- ],
- [
- -86.73914,
- 41.32246
- ],
- [
- -86.70206,
- 41.40058
- ],
- [
- -86.69839,
- 41.40422
- ],
- [
- -86.64314,
- 41.43266
- ],
- [
- -86.64151,
- 41.4338
- ],
- [
- -86.58209,
- 41.43339
- ],
- [
- -86.52467,
- 41.43287
- ],
- [
- -86.52485,
- 41.50529
- ],
- [
- -86.52484,
- 41.51999
- ],
- [
- -86.50521,
- 41.51995
- ],
- [
- -86.50383,
- 41.52024
- ],
- [
- -86.49845,
- 41.528
- ],
- [
- -86.4982,
- 41.52832
- ],
- [
- -86.49511,
- 41.56343
- ],
- [
- -86.48648,
- 41.57047
- ],
- [
- -86.4872,
- 41.64648
- ],
- [
- -86.48727,
- 41.64952
- ],
- [
- -86.51944,
- 41.65012
- ],
- [
- -86.52664,
- 41.65022
- ],
- [
- -86.52427,
- 41.75785
- ],
- [
- -86.52422,
- 41.75966
- ],
- [
- -86.82433,
- 41.76024
- ],
- [
- -86.82569,
- 41.76025
- ],
- [
- -86.91273,
- 41.72327
- ],
- [
- -86.91638,
- 41.71645
- ],
- [
- -87.13327,
- 41.64289
- ],
- [
- -87.17696,
- 41.63272
- ],
- [
- -87.26141,
- 41.62887
- ],
- [
- -87.28612,
- 41.62704
- ],
- [
- -87.40469,
- 41.65019
- ],
- [
- -87.41161,
- 41.64876
- ],
- [
- -87.42034,
- 41.65341
- ],
- [
- -87.39377,
- 41.67733
- ],
- [
- -87.42266,
- 41.69573
- ],
- [
- -87.4622,
- 41.68529
- ],
- [
- -87.50542,
- 41.70611
- ],
- [
- -87.51756,
- 41.71643
- ],
- [
- -87.52398,
- 41.71348
- ],
- [
- -87.52495,
- 41.64461
- ],
- [
- -87.52517,
- 41.63248
- ],
- [
- -87.53086,
- 40.16985
- ],
- [
- -87.53141,
- 40.15046
- ],
- [
- -87.4896,
- 40.15077
- ],
- [
- -87.49052,
- 40.13081
- ],
- [
- -87.40632,
- 40.13009
- ],
- [
- -87.41637,
- 40.06971
- ],
- [
- -87.41627,
- 40.062
- ],
- [
- -87.42097,
- 40.0538
- ],
- [
- -87.43171,
- 40.04738
- ],
- [
- -87.42439,
- 40.03927
- ],
- [
- -87.43152,
- 40.03287
- ],
- [
- -87.4356,
- 40.02377
- ],
- [
- -87.43012,
- 39.97076
- ],
- [
- -87.44019,
- 39.96117
- ],
- [
- -87.4209,
- 39.95405
- ],
- [
- -87.41967,
- 39.95225
- ],
- [
- -87.43444,
- 39.93446
- ],
- [
- -87.4332,
- 39.93084
- ],
- [
- -87.41218,
- 39.92873
- ],
- [
- -87.40677,
- 39.92831
- ],
- [
- -87.41325,
- 39.91874
- ],
- [
- -87.40958,
- 39.91333
- ],
- [
- -87.38431,
- 39.90625
- ],
- [
- -87.37827,
- 39.90267
- ],
- [
- -87.3728,
- 39.89681
- ],
- [
- -87.36787,
- 39.88551
- ],
- [
- -87.37917,
- 39.87773
- ],
- [
- -87.37914,
- 39.87592
- ],
- [
- -87.35564,
- 39.86474
- ],
- [
- -87.35381,
- 39.86203
- ],
- [
- -87.37149,
- 39.83788
- ],
- [
- -87.38166,
- 39.83691
- ],
- [
- -87.37382,
- 39.78301
- ],
- [
- -87.37377,
- 39.77938
- ],
- [
- -87.38338,
- 39.72232
- ],
- [
- -87.38432,
- 39.7199
- ],
- [
- -87.38166,
- 39.69371
- ],
- [
- -87.38183,
- 39.69264
- ],
- [
- -87.39542,
- 39.6557
- ],
- [
- -87.39557,
- 39.6536
- ],
- [
- -87.38127,
- 39.61559
- ],
- [
- -87.3821,
- 39.60935
- ],
- [
- -87.46069,
- 39.60964
- ],
- [
- -87.53206,
- 39.60904
- ],
- [
- -87.53114,
- 39.41882
- ],
- [
- -87.53138,
- 39.34771
- ],
- [
- -87.54333,
- 39.35256
- ],
- [
- -87.54374,
- 39.35272
- ],
- [
- -87.55371,
- 39.34081
- ],
- [
- -87.55413,
- 39.34031
- ],
- [
- -87.58799,
- 39.33415
- ],
- [
- -87.58881,
- 39.33365
- ],
- [
- -87.58942,
- 39.33253
- ],
- [
- -87.60013,
- 39.31272
- ],
- [
- -87.60001,
- 39.29311
- ],
- [
- -87.60978,
- 39.28205
- ],
- [
- -87.60535,
- 39.26125
- ],
- [
- -87.60554,
- 39.26112
- ],
- [
- -87.57916,
- 39.23296
- ],
- [
- -87.57456,
- 39.2184
- ],
- [
- -87.58573,
- 39.20114
- ],
- [
- -87.58861,
- 39.19782
- ],
- [
- -87.63518,
- 39.16889
- ],
- [
- -87.64043,
- 39.16673
- ],
- [
- -87.62796,
- 39.15734
- ],
- [
- -87.62772,
- 39.15661
- ],
- [
- -87.64313,
- 39.15614
- ],
- [
- -87.64599,
- 39.1449
- ],
- [
- -87.63073,
- 39.10478
- ],
- [
- -87.63038,
- 39.1043
- ],
- [
- -87.58251,
- 39.06661
- ],
- [
- -87.57259,
- 39.05729
- ],
- [
- -87.56982,
- 39.01975
- ],
- [
- -87.5697,
- 39.01941
- ],
- [
- -87.57839,
- 38.98994
- ],
- [
- -87.57832,
- 38.98879
- ],
- [
- -87.54369,
- 38.97683
- ],
- [
- -87.5295,
- 38.97192
- ],
- [
- -87.51409,
- 38.95634
- ],
- [
- -87.51219,
- 38.95442
- ],
- [
- -87.51847,
- 38.92486
- ],
- [
- -87.51883,
- 38.92321
- ],
- [
- -87.5294,
- 38.9054
- ],
- [
- -87.54409,
- 38.89509
- ],
- [
- -87.54737,
- 38.87561
- ],
- [
- -87.55338,
- 38.86334
- ],
- [
- -87.53059,
- 38.8524
- ],
- [
- -87.52943,
- 38.85148
- ],
- [
- -87.52191,
- 38.83086
- ],
- [
- -87.52129,
- 38.82818
- ],
- [
- -87.52648,
- 38.81994
- ],
- [
- -87.52614,
- 38.81894
- ],
- [
- -87.50008,
- 38.79001
- ],
- [
- -87.49925,
- 38.78843
- ],
- [
- -87.4976,
- 38.7807
- ],
- [
- -87.49825,
- 38.7796
- ],
- [
- -87.51401,
- 38.77245
- ],
- [
- -87.51449,
- 38.77092
- ],
- [
- -87.49978,
- 38.76894
- ],
- [
- -87.49805,
- 38.76756
- ],
- [
- -87.4977,
- 38.74539
- ],
- [
- -87.49708,
- 38.74313
- ],
- [
- -87.53062,
- 38.68451
- ],
- [
- -87.53275,
- 38.68272
- ],
- [
- -87.58724,
- 38.67109
- ],
- [
- -87.58973,
- 38.67018
- ],
- [
- -87.61753,
- 38.64294
- ],
- [
- -87.61936,
- 38.64117
- ],
- [
- -87.62656,
- 38.60785
- ],
- [
- -87.62711,
- 38.60467
- ],
- [
- -87.61356,
- 38.59212
- ],
- [
- -87.61383,
- 38.59099
- ],
- [
- -87.63633,
- 38.59383
- ],
- [
- -87.63694,
- 38.5937
- ],
- [
- -87.64997,
- 38.56972
- ],
- [
- -87.65233,
- 38.5682
- ],
- [
- -87.6507,
- 38.55624
- ],
- [
- -87.66073,
- 38.54109
- ],
- [
- -87.6538,
- 38.51738
- ],
- [
- -87.65417,
- 38.51191
- ],
- [
- -87.67837,
- 38.49844
- ],
- [
- -87.69319,
- 38.48804
- ],
- [
- -87.73536,
- 38.4768
- ],
- [
- -87.73952,
- 38.47507
- ],
- [
- -87.74345,
- 38.46584
- ],
- [
- -87.74317,
- 38.45902
- ],
- [
- -87.73551,
- 38.45273
- ],
- [
- -87.73013,
- 38.44652
- ],
- [
- -87.74071,
- 38.43581
- ],
- [
- -87.74104,
- 38.43558
- ],
- [
- -87.74397,
- 38.41707
- ],
- [
- -87.74413,
- 38.4141
- ],
- [
- -87.67257,
- 38.42883
- ],
- [
- -87.66206,
- 38.43256
- ],
- [
- -87.67159,
- 38.44108
- ],
- [
- -87.67345,
- 38.4465
- ],
- [
- -87.65833,
- 38.45707
- ],
- [
- -87.656,
- 38.458
- ],
- [
- -87.64537,
- 38.45493
- ],
- [
- -87.64069,
- 38.45587
- ],
- [
- -87.63818,
- 38.44593
- ],
- [
- -87.63579,
- 38.44323
- ],
- [
- -87.61116,
- 38.44663
- ],
- [
- -87.59888,
- 38.45082
- ],
- [
- -87.58917,
- 38.46994
- ],
- [
- -87.57997,
- 38.48362
- ],
- [
- -87.58717,
- 38.49353
- ],
- [
- -87.58373,
- 38.49945
- ],
- [
- -87.55772,
- 38.4897
- ],
- [
- -87.54069,
- 38.49166
- ],
- [
- -87.54682,
- 38.50883
- ],
- [
- -87.5498,
- 38.51153
- ],
- [
- -87.54049,
- 38.51841
- ],
- [
- -87.53637,
- 38.51844
- ],
- [
- -87.52985,
- 38.51442
- ],
- [
- -87.53322,
- 38.50351
- ],
- [
- -87.5314,
- 38.49899
- ],
- [
- -87.51852,
- 38.50409
- ],
- [
- -87.51323,
- 38.50367
- ],
- [
- -87.50017,
- 38.49517
- ],
- [
- -87.49548,
- 38.49566
- ],
- [
- -87.49255,
- 38.49704
- ],
- [
- -87.49091,
- 38.50567
- ],
- [
- -87.47569,
- 38.51123
- ],
- [
- -87.47047,
- 38.51626
- ],
- [
- -87.46538,
- 38.53171
- ],
- [
- -87.4642,
- 38.53217
- ],
- [
- -87.46412,
- 38.48095
- ],
- [
- -87.46394,
- 38.4669
- ],
- [
- -87.44453,
- 38.46706
- ],
- [
- -87.44423,
- 38.44349
- ],
- [
- -87.44473,
- 38.43623
- ],
- [
- -87.40712,
- 38.43606
- ],
- [
- -87.40759,
- 38.3794
- ],
- [
- -87.35772,
- 38.38158
- ],
- [
- -87.34541,
- 38.38347
- ],
- [
- -87.31834,
- 38.37776
- ],
- [
- -87.31599,
- 38.37733
- ],
- [
- -87.3167,
- 38.23137
- ],
- [
- -87.31699,
- 38.20508
- ],
- [
- -87.35565,
- 38.20482
- ],
- [
- -87.46633,
- 38.20354
- ],
- [
- -87.46706,
- 38.16543
- ],
- [
- -87.68891,
- 38.1685
- ],
- [
- -87.68887,
- 38.20204
- ],
- [
- -87.79955,
- 38.20092
- ],
- [
- -87.79945,
- 38.22857
- ],
- [
- -87.9843,
- 38.2304
- ],
- [
- -87.97637,
- 38.19939
- ],
- [
- -87.96938,
- 38.19044
- ],
- [
- -87.94213,
- 38.17786
- ],
- [
- -87.94012,
- 38.17625
- ],
- [
- -87.93557,
- 38.16283
- ],
- [
- -87.9352,
- 38.16233
- ],
- [
- -87.92312,
- 38.17009
- ],
- [
- -87.92184,
- 38.17035
- ],
- [
- -87.91494,
- 38.16256
- ],
- [
- -87.91499,
- 38.16029
- ],
- [
- -87.94197,
- 38.13351
- ],
- [
- -87.94518,
- 38.13085
- ],
- [
- -87.96801,
- 38.13066
- ],
- [
- -87.96912,
- 38.12987
- ],
- [
- -87.97701,
- 38.11149
- ],
- [
- -87.97929,
- 38.11004
- ],
- [
- -88.01454,
- 38.10034
- ],
- [
- -88.01575,
- 38.09854
- ],
- [
- -88.00958,
- 38.08532
- ],
- [
- -88.00784,
- 38.08484
- ],
- [
- -87.96303,
- 38.10202
- ],
- [
- -87.96098,
- 38.10165
- ],
- [
- -87.95486,
- 38.08812
- ],
- [
- -87.95458,
- 38.08708
- ],
- [
- -87.95876,
- 38.07453
- ],
- [
- -87.9613,
- 38.07156
- ],
- [
- -87.98943,
- 38.05671
- ],
- [
- -87.99203,
- 38.05557
- ],
- [
- -88.02368,
- 38.05286
- ],
- [
- -88.03012,
- 38.05248
- ],
- [
- -88.04168,
- 38.04467
- ],
- [
- -88.04258,
- 38.04311
- ],
- [
- -88.03739,
- 38.03544
- ],
- [
- -88.03444,
- 38.03411
- ],
- [
- -88.01109,
- 38.03342
- ],
- [
- -88.00921,
- 38.03129
- ],
- [
- -88.02389,
- 38.01342
- ],
- [
- -88.02512,
- 38.01026
- ],
- [
- -88.01063,
- 37.97518
- ],
- [
- -88.01099,
- 37.97319
- ],
- [
- -88.03123,
- 37.96013
- ],
- [
- -88.03206,
- 37.95901
- ],
- [
- -88.02998,
- 37.93083
- ],
- [
- -88.03258,
- 37.92876
- ],
- [
- -88.05756,
- 37.93455
- ],
- [
- -88.0598,
- 37.93452
- ],
- [
- -88.06862,
- 37.92726
- ],
- [
- -88.06884,
- 37.92489
- ],
- [
- -88.02204,
- 37.91462
- ],
- [
- -88.01733,
- 37.91183
- ],
- [
- -88.0125,
- 37.89012
- ],
- [
- -88.01421,
- 37.88565
- ],
- [
- -88.0282,
- 37.89127
- ],
- [
- -88.03129,
- 37.89472
- ],
- [
- -88.04966,
- 37.89086
- ],
- [
- -88.05696,
- 37.89181
- ],
- [
- -88.08425,
- 37.90482
- ],
- [
- -88.08957,
- 37.90732
- ],
- [
- -88.0997,
- 37.90441
- ]
- ],
- [
- [
- -85.3389,
- 41.15113
- ],
- [
- -85.33593,
- 40.9349
- ],
- [
- -85.33597,
- 40.91703
- ],
- [
- -84.87996,
- 40.92059
- ],
- [
- -84.80292,
- 40.92257
- ],
- [
- -84.80353,
- 41.25256
- ],
- [
- -84.80356,
- 41.27116
- ],
- [
- -85.19291,
- 41.26426
- ],
- [
- -85.30777,
- 41.26413
- ],
- [
- -85.30938,
- 41.24972
- ],
- [
- -85.30997,
- 41.1732
- ],
- [
- -85.31331,
- 41.17316
- ],
- [
- -85.33818,
- 41.17286
- ],
- [
- -85.3389,
- 41.15113
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc."
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:26916"
- ],
- "country_code": "US",
- "description": "Orthophotography for 19 counties and one city in western Indiana, collected during leaf-off conditions in 2018. One-foot resolution for Benton, Clay, Fountain, Greene, Jasper, LaPorte, Montogomery, Newton, Owen, Parke, Sullivan, Tippecanoe, Vigo, Warren, and White counties. Six-inch resolution for Allen, Lake, Porter, and Putnam counties. Three-inch resolution for Huntingburg.",
- "end_date": "2018",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif",
- "id": "IndianaMap2018",
- "license_url": "https://gis.iu.edu/datasetInfo/statewide/in_2016.php",
- "max_zoom": 20,
- "min_zoom": 4,
- "name": "IndianaMap Orthoimagery 2018",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://gis.iu.edu/privacy.php",
- "start_date": "2018",
- "type": "wms",
- "url": "https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2018/MapServer/WmsServer?FORMAT=image/jpeg&TRANSPARENT=FALSE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -89.57151,
- 36.55257
- ],
- [
- -89.54296,
- 36.50496
- ],
- [
- -89.53912,
- 36.4981
- ],
- [
- -89.4885,
- 36.49755
- ],
- [
- -89.4852,
- 36.49745
- ],
- [
- -89.46589,
- 36.52995
- ],
- [
- -89.46545,
- 36.53616
- ],
- [
- -89.4808,
- 36.56969
- ],
- [
- -89.48089,
- 36.56977
- ],
- [
- -89.5205,
- 36.57943
- ],
- [
- -89.52234,
- 36.58018
- ],
- [
- -89.55251,
- 36.57723
- ],
- [
- -89.55264,
- 36.57718
- ],
- [
- -89.57151,
- 36.55257
- ]
- ],
- [
- [
- -89.41729,
- 36.49903
- ],
- [
- -89.34795,
- 36.50308
- ],
- [
- -89.30028,
- 36.50715
- ],
- [
- -88.06598,
- 36.49774
- ],
- [
- -88.05332,
- 36.49712
- ],
- [
- -88.0453,
- 36.50408
- ],
- [
- -88.03948,
- 36.51041
- ],
- [
- -88.03413,
- 36.53112
- ],
- [
- -88.03249,
- 36.54066
- ],
- [
- -88.0412,
- 36.58412
- ],
- [
- -88.04513,
- 36.60294
- ],
- [
- -88.06821,
- 36.65975
- ],
- [
- -88.07053,
- 36.67812
- ],
- [
- -87.85045,
- 36.6651
- ],
- [
- -87.85354,
- 36.63507
- ],
- [
- -87.69783,
- 36.637
- ],
- [
- -87.69385,
- 36.63707
- ],
- [
- -87.68285,
- 36.70333
- ],
- [
- -87.67503,
- 36.7501
- ],
- [
- -87.67186,
- 36.8785
- ],
- [
- -87.66,
- 36.96624
- ],
- [
- -87.72956,
- 36.9999
- ],
- [
- -87.73366,
- 37.00209
- ],
- [
- -87.7106,
- 37.02156
- ],
- [
- -87.68078,
- 37.14928
- ],
- [
- -87.66878,
- 37.14975
- ],
- [
- -87.64964,
- 37.14692
- ],
- [
- -87.52378,
- 37.10601
- ],
- [
- -87.52029,
- 37.10516
- ],
- [
- -87.48508,
- 37.12661
- ],
- [
- -87.37442,
- 37.13381
- ],
- [
- -87.35981,
- 37.1499
- ],
- [
- -87.35998,
- 37.1567
- ],
- [
- -87.34036,
- 37.15745
- ],
- [
- -87.33626,
- 37.1548
- ],
- [
- -87.3151,
- 37.18731
- ],
- [
- -87.31174,
- 37.19144
- ],
- [
- -87.34575,
- 37.21178
- ],
- [
- -87.34988,
- 37.2149
- ],
- [
- -87.34719,
- 37.2231
- ],
- [
- -87.349,
- 37.22625
- ],
- [
- -87.37141,
- 37.24404
- ],
- [
- -87.36402,
- 37.24914
- ],
- [
- -87.38553,
- 37.25335
- ],
- [
- -87.38852,
- 37.25738
- ],
- [
- -87.38414,
- 37.2901
- ],
- [
- -87.38602,
- 37.29551
- ],
- [
- -87.37801,
- 37.29926
- ],
- [
- -87.37221,
- 37.29889
- ],
- [
- -87.3793,
- 37.30468
- ],
- [
- -87.38004,
- 37.31102
- ],
- [
- -87.37377,
- 37.31474
- ],
- [
- -87.37091,
- 37.31614
- ],
- [
- -87.35457,
- 37.3105
- ],
- [
- -87.34586,
- 37.30973
- ],
- [
- -87.33775,
- 37.33252
- ],
- [
- -87.33726,
- 37.33615
- ],
- [
- -87.31243,
- 37.36282
- ],
- [
- -87.30045,
- 37.37026
- ],
- [
- -87.30749,
- 37.37378
- ],
- [
- -87.3093,
- 37.37693
- ],
- [
- -87.30595,
- 37.38197
- ],
- [
- -87.29575,
- 37.39164
- ],
- [
- -87.33332,
- 37.41148
- ],
- [
- -87.3528,
- 37.42569
- ],
- [
- -87.3548,
- 37.48279
- ],
- [
- -87.36243,
- 37.4863
- ],
- [
- -87.35148,
- 37.51231
- ],
- [
- -87.34924,
- 37.51552
- ],
- [
- -87.35952,
- 37.53213
- ],
- [
- -87.36652,
- 37.53339
- ],
- [
- -87.36037,
- 37.54255
- ],
- [
- -87.35931,
- 37.54665
- ],
- [
- -87.37499,
- 37.56998
- ],
- [
- -87.37986,
- 37.57898
- ],
- [
- -87.39521,
- 37.58871
- ],
- [
- -87.46038,
- 37.59267
- ],
- [
- -87.4803,
- 37.59914
- ],
- [
- -87.49965,
- 37.62694
- ],
- [
- -87.49557,
- 37.64786
- ],
- [
- -87.73424,
- 37.63828
- ],
- [
- -87.94307,
- 37.46638
- ],
- [
- -87.94375,
- 37.46563
- ],
- [
- -87.93037,
- 37.41046
- ],
- [
- -87.93019,
- 37.4092
- ],
- [
- -87.91391,
- 37.41123
- ],
- [
- -87.91313,
- 37.41104
- ],
- [
- -87.91564,
- 37.40477
- ],
- [
- -87.91545,
- 37.40448
- ],
- [
- -87.90281,
- 37.39822
- ],
- [
- -87.90195,
- 37.39824
- ],
- [
- -87.86945,
- 37.40519
- ],
- [
- -87.86876,
- 37.40518
- ],
- [
- -87.86164,
- 37.40894
- ],
- [
- -87.86131,
- 37.40954
- ],
- [
- -87.86595,
- 37.41683
- ],
- [
- -87.86561,
- 37.41728
- ],
- [
- -87.84737,
- 37.42062
- ],
- [
- -87.84638,
- 37.42046
- ],
- [
- -87.84426,
- 37.39512
- ],
- [
- -87.84426,
- 37.39482
- ],
- [
- -87.85904,
- 37.39277
- ],
- [
- -87.85964,
- 37.39241
- ],
- [
- -87.86,
- 37.38071
- ],
- [
- -87.86003,
- 37.3802
- ],
- [
- -87.84335,
- 37.37468
- ],
- [
- -87.84282,
- 37.37469
- ],
- [
- -87.81953,
- 37.38776
- ],
- [
- -87.81861,
- 37.38832
- ],
- [
- -87.81061,
- 37.37686
- ],
- [
- -87.81042,
- 37.37645
- ],
- [
- -87.80095,
- 37.3794
- ],
- [
- -87.80122,
- 37.37898
- ],
- [
- -88.05239,
- 37.23751
- ],
- [
- -88.05269,
- 37.22934
- ],
- [
- -88.07805,
- 37.22699
- ],
- [
- -88.08885,
- 37.22178
- ],
- [
- -88.08231,
- 37.21647
- ],
- [
- -88.08042,
- 37.21198
- ],
- [
- -88.08376,
- 37.20828
- ],
- [
- -88.08891,
- 37.20681
- ],
- [
- -88.08443,
- 37.1942
- ],
- [
- -88.08301,
- 37.18652
- ],
- [
- -88.09489,
- 37.17947
- ],
- [
- -88.10183,
- 37.17932
- ],
- [
- -88.10889,
- 37.16647
- ],
- [
- -88.1099,
- 37.16237
- ],
- [
- -88.13168,
- 37.15736
- ],
- [
- -88.13252,
- 37.14872
- ],
- [
- -88.14131,
- 37.15216
- ],
- [
- -88.14428,
- 37.15436
- ],
- [
- -88.16293,
- 37.14307
- ],
- [
- -88.16557,
- 37.13575
- ],
- [
- -88.1919,
- 37.12927
- ],
- [
- -88.1966,
- 37.13144
- ],
- [
- -88.18787,
- 37.16156
- ],
- [
- -88.19039,
- 37.1674
- ],
- [
- -88.21927,
- 37.18309
- ],
- [
- -88.21986,
- 37.18353
- ],
- [
- -88.20455,
- 37.20746
- ],
- [
- -88.20065,
- 37.21162
- ],
- [
- -88.20258,
- 37.23289
- ],
- [
- -88.20032,
- 37.23431
- ],
- [
- -88.21851,
- 37.27335
- ],
- [
- -88.29375,
- 37.33559
- ],
- [
- -88.29557,
- 37.33782
- ],
- [
- -88.30556,
- 37.37206
- ],
- [
- -88.29948,
- 37.37991
- ],
- [
- -88.31327,
- 37.39228
- ],
- [
- -88.31811,
- 37.39761
- ],
- [
- -88.36547,
- 37.40166
- ],
- [
- -88.37121,
- 37.40273
- ],
- [
- -88.40624,
- 37.42479
- ],
- [
- -88.40881,
- 37.42522
- ],
- [
- -88.46586,
- 37.40055
- ],
- [
- -88.47022,
- 37.39625
- ],
- [
- -88.48672,
- 37.34015
- ],
- [
- -88.48695,
- 37.3396
- ],
- [
- -88.51406,
- 37.29246
- ],
- [
- -88.51486,
- 37.29069
- ],
- [
- -88.50409,
- 37.26514
- ],
- [
- -88.50382,
- 37.26485
- ],
- [
- -88.5123,
- 37.26295
- ],
- [
- -88.51187,
- 37.26201
- ],
- [
- -88.45005,
- 37.2062
- ],
- [
- -88.44982,
- 37.20599
- ],
- [
- -88.42533,
- 37.15421
- ],
- [
- -88.42462,
- 37.15173
- ],
- [
- -88.44912,
- 37.08875
- ],
- [
- -88.44919,
- 37.08776
- ],
- [
- -88.45919,
- 37.07523
- ],
- [
- -88.46019,
- 37.07447
- ],
- [
- -88.48622,
- 37.06659
- ],
- [
- -88.48605,
- 37.0648
- ],
- [
- -88.56528,
- 37.07521
- ],
- [
- -88.56587,
- 37.0752
- ],
- [
- -88.62221,
- 37.11775
- ],
- [
- -88.62589,
- 37.11946
- ],
- [
- -88.68777,
- 37.13938
- ],
- [
- -88.69398,
- 37.14115
- ],
- [
- -88.73125,
- 37.14368
- ],
- [
- -88.73211,
- 37.14396
- ],
- [
- -88.78695,
- 37.17858
- ],
- [
- -88.79737,
- 37.18485
- ],
- [
- -88.83505,
- 37.19649
- ],
- [
- -88.86953,
- 37.20971
- ],
- [
- -88.9273,
- 37.22636
- ],
- [
- -88.93175,
- 37.22759
- ],
- [
- -88.98326,
- 37.22868
- ],
- [
- -89.00097,
- 37.2244
- ],
- [
- -89.07622,
- 37.17513
- ],
- [
- -89.08653,
- 37.1656
- ],
- [
- -89.10403,
- 37.13197
- ],
- [
- -89.11119,
- 37.11905
- ],
- [
- -89.15129,
- 37.09049
- ],
- [
- -89.1545,
- 37.08891
- ],
- [
- -89.17858,
- 37.055
- ],
- [
- -89.17938,
- 37.05301
- ],
- [
- -89.18248,
- 37.03748
- ],
- [
- -89.18251,
- 37.03728
- ],
- [
- -89.1736,
- 37.01141
- ],
- [
- -89.17112,
- 37.00807
- ],
- [
- -89.13844,
- 36.98509
- ],
- [
- -89.13301,
- 36.982
- ],
- [
- -89.1183,
- 36.98188
- ],
- [
- -89.11503,
- 36.98033
- ],
- [
- -89.09901,
- 36.96139
- ],
- [
- -89.09884,
- 36.95785
- ],
- [
- -89.13194,
- 36.85744
- ],
- [
- -89.13797,
- 36.84735
- ],
- [
- -89.17718,
- 36.83578
- ],
- [
- -89.17815,
- 36.83459
- ],
- [
- -89.17923,
- 36.81291
- ],
- [
- -89.17875,
- 36.80993
- ],
- [
- -89.17107,
- 36.79812
- ],
- [
- -89.16846,
- 36.79557
- ],
- [
- -89.13321,
- 36.78823
- ],
- [
- -89.12892,
- 36.78768
- ],
- [
- -89.11685,
- 36.77561
- ],
- [
- -89.11607,
- 36.77242
- ],
- [
- -89.12243,
- 36.75484
- ],
- [
- -89.12613,
- 36.75173
- ],
- [
- -89.15699,
- 36.75597
- ],
- [
- -89.16689,
- 36.75963
- ],
- [
- -89.19155,
- 36.74722
- ],
- [
- -89.19781,
- 36.73941
- ],
- [
- -89.20073,
- 36.72014
- ],
- [
- -89.19948,
- 36.71605
- ],
- [
- -89.17484,
- 36.69396
- ],
- [
- -89.16952,
- 36.68888
- ],
- [
- -89.16872,
- 36.67189
- ],
- [
- -89.15908,
- 36.66635
- ],
- [
- -89.18775,
- 36.64111
- ],
- [
- -89.19254,
- 36.636
- ],
- [
- -89.20261,
- 36.60158
- ],
- [
- -89.21356,
- 36.58012
- ],
- [
- -89.23184,
- 36.56812
- ],
- [
- -89.23654,
- 36.56682
- ],
- [
- -89.26806,
- 36.56891
- ],
- [
- -89.27171,
- 36.57139
- ],
- [
- -89.31943,
- 36.62739
- ],
- [
- -89.32472,
- 36.63108
- ],
- [
- -89.36486,
- 36.62532
- ],
- [
- -89.36555,
- 36.62506
- ],
- [
- -89.37545,
- 36.61572
- ],
- [
- -89.37637,
- 36.61387
- ],
- [
- -89.41729,
- 36.49903
- ]
- ],
- [
- [
- -86.27537,
- 37.5933
- ],
- [
- -86.27184,
- 37.58879
- ],
- [
- -86.26139,
- 37.58885
- ],
- [
- -86.25214,
- 37.59435
- ],
- [
- -86.24634,
- 37.59438
- ],
- [
- -86.23343,
- 37.58086
- ],
- [
- -86.23221,
- 37.57543
- ],
- [
- -86.22002,
- 37.57596
- ],
- [
- -86.21075,
- 37.57737
- ],
- [
- -86.18677,
- 37.56028
- ],
- [
- -86.18035,
- 37.55624
- ],
- [
- -86.16999,
- 37.56582
- ],
- [
- -86.16419,
- 37.56721
- ],
- [
- -86.15428,
- 37.56228
- ],
- [
- -86.14613,
- 37.5596
- ],
- [
- -86.11425,
- 37.56611
- ],
- [
- -86.1131,
- 37.56657
- ],
- [
- -86.05621,
- 37.4916
- ],
- [
- -86.05151,
- 37.48301
- ],
- [
- -86.06584,
- 37.46073
- ],
- [
- -86.06756,
- 37.458
- ],
- [
- -86.05997,
- 37.45123
- ],
- [
- -86.05647,
- 37.44853
- ],
- [
- -86.05415,
- 37.44899
- ],
- [
- -86.05071,
- 37.45354
- ],
- [
- -86.00023,
- 37.44696
- ],
- [
- -85.8912,
- 37.44011
- ],
- [
- -85.89011,
- 37.45144
- ],
- [
- -85.89426,
- 37.47002
- ],
- [
- -85.88848,
- 37.47366
- ],
- [
- -85.87493,
- 37.54533
- ],
- [
- -85.83905,
- 37.56901
- ],
- [
- -85.82107,
- 37.57404
- ],
- [
- -85.80725,
- 37.60173
- ],
- [
- -85.7974,
- 37.60855
- ],
- [
- -85.80326,
- 37.62032
- ],
- [
- -85.80211,
- 37.62305
- ],
- [
- -85.73423,
- 37.65674
- ],
- [
- -85.68093,
- 37.73207
- ],
- [
- -85.65181,
- 37.71806
- ],
- [
- -85.6454,
- 37.71308
- ],
- [
- -85.63781,
- 37.69632
- ],
- [
- -85.63432,
- 37.69406
- ],
- [
- -85.60059,
- 37.69908
- ],
- [
- -85.59244,
- 37.69364
- ],
- [
- -85.6011,
- 37.64604
- ],
- [
- -85.60051,
- 37.6397
- ],
- [
- -85.58714,
- 37.64469
- ],
- [
- -85.58366,
- 37.64424
- ],
- [
- -85.57725,
- 37.63926
- ],
- [
- -85.57319,
- 37.6379
- ],
- [
- -85.57376,
- 37.62838
- ],
- [
- -85.56853,
- 37.62295
- ],
- [
- -85.57027,
- 37.61751
- ],
- [
- -85.57375,
- 37.61705
- ],
- [
- -85.57899,
- 37.62611
- ],
- [
- -85.58422,
- 37.62566
- ],
- [
- -85.5906,
- 37.61613
- ],
- [
- -85.59524,
- 37.61341
- ],
- [
- -85.61326,
- 37.61612
- ],
- [
- -85.615,
- 37.61475
- ],
- [
- -85.59464,
- 37.59891
- ],
- [
- -85.59464,
- 37.59755
- ],
- [
- -85.60219,
- 37.59346
- ],
- [
- -85.60683,
- 37.59074
- ],
- [
- -85.60564,
- 37.57532
- ],
- [
- -85.60505,
- 37.56581
- ],
- [
- -85.62302,
- 37.55174
- ],
- [
- -85.6265,
- 37.54493
- ],
- [
- -85.62417,
- 37.5404
- ],
- [
- -85.61778,
- 37.54086
- ],
- [
- -85.60735,
- 37.54813
- ],
- [
- -85.60212,
- 37.54723
- ],
- [
- -85.59341,
- 37.54406
- ],
- [
- -85.59514,
- 37.53545
- ],
- [
- -85.57134,
- 37.5273
- ],
- [
- -85.56495,
- 37.52277
- ],
- [
- -85.55393,
- 37.53184
- ],
- [
- -85.54697,
- 37.53049
- ],
- [
- -85.55105,
- 37.5536
- ],
- [
- -85.54408,
- 37.56222
- ],
- [
- -85.5348,
- 37.56313
- ],
- [
- -85.52667,
- 37.56267
- ],
- [
- -85.52144,
- 37.55361
- ],
- [
- -85.45053,
- 37.68596
- ],
- [
- -85.40147,
- 37.73066
- ],
- [
- -85.3873,
- 37.7404
- ],
- [
- -85.38629,
- 37.74075
- ],
- [
- -85.37373,
- 37.73951
- ],
- [
- -85.3733,
- 37.73981
- ],
- [
- -85.37495,
- 37.76461
- ],
- [
- -85.37454,
- 37.7652
- ],
- [
- -85.35546,
- 37.75756
- ],
- [
- -85.35345,
- 37.75735
- ],
- [
- -85.34591,
- 37.76225
- ],
- [
- -85.34548,
- 37.76249
- ],
- [
- -85.35624,
- 37.78367
- ],
- [
- -85.35601,
- 37.78403
- ],
- [
- -85.34029,
- 37.78005
- ],
- [
- -85.33859,
- 37.77992
- ],
- [
- -85.33649,
- 37.78663
- ],
- [
- -85.33574,
- 37.78739
- ],
- [
- -85.31214,
- 37.79132
- ],
- [
- -85.30818,
- 37.79364
- ],
- [
- -85.31532,
- 37.80739
- ],
- [
- -85.31527,
- 37.80793
- ],
- [
- -85.29908,
- 37.83149
- ],
- [
- -85.29844,
- 37.83233
- ],
- [
- -85.27861,
- 37.83666
- ],
- [
- -85.2776,
- 37.83756
- ],
- [
- -85.28027,
- 37.85154
- ],
- [
- -85.27953,
- 37.85236
- ],
- [
- -85.26827,
- 37.84471
- ],
- [
- -85.26784,
- 37.84444
- ],
- [
- -85.24567,
- 37.84685
- ],
- [
- -85.245,
- 37.84689
- ],
- [
- -85.25585,
- 37.86503
- ],
- [
- -85.25535,
- 37.86583
- ],
- [
- -85.24147,
- 37.86229
- ],
- [
- -85.24042,
- 37.86243
- ],
- [
- -85.23106,
- 37.87044
- ],
- [
- -85.23037,
- 37.87061
- ],
- [
- -85.22767,
- 37.85492
- ],
- [
- -85.22677,
- 37.85501
- ],
- [
- -85.21773,
- 37.87142
- ],
- [
- -85.21668,
- 37.87141
- ],
- [
- -85.21842,
- 37.85492
- ],
- [
- -85.21843,
- 37.85427
- ],
- [
- -85.20506,
- 37.84608
- ],
- [
- -85.20421,
- 37.84624
- ],
- [
- -85.20148,
- 37.85319
- ],
- [
- -85.19627,
- 37.85603
- ],
- [
- -85.20615,
- 37.8633
- ],
- [
- -85.19853,
- 37.8728
- ],
- [
- -85.1956,
- 37.87642
- ],
- [
- -85.19963,
- 37.89003
- ],
- [
- -85.199,
- 37.90091
- ],
- [
- -85.18916,
- 37.88457
- ],
- [
- -85.18683,
- 37.88411
- ],
- [
- -85.1868,
- 37.8909
- ],
- [
- -85.18446,
- 37.89226
- ],
- [
- -85.15766,
- 37.88584
- ],
- [
- -85.153,
- 37.88583
- ],
- [
- -85.15412,
- 37.89535
- ],
- [
- -85.15295,
- 37.89762
- ],
- [
- -85.14714,
- 37.8908
- ],
- [
- -85.13839,
- 37.89168
- ],
- [
- -85.13192,
- 37.9039
- ],
- [
- -85.12544,
- 37.91566
- ],
- [
- -85.10622,
- 37.90926
- ],
- [
- -85.10747,
- 37.8934
- ],
- [
- -85.09758,
- 37.88974
- ],
- [
- -85.09409,
- 37.88792
- ],
- [
- -85.03458,
- 37.89224
- ],
- [
- -85.0305,
- 37.89177
- ],
- [
- -85.03114,
- 37.88316
- ],
- [
- -85.03115,
- 37.8818
- ],
- [
- -85.01031,
- 37.85951
- ],
- [
- -85.00043,
- 37.85448
- ],
- [
- -85.0029,
- 37.8341
- ],
- [
- -85.00872,
- 37.83503
- ],
- [
- -85.01175,
- 37.81736
- ],
- [
- -85.00594,
- 37.81643
- ],
- [
- -85.02984,
- 37.63114
- ],
- [
- -85.03909,
- 37.54505
- ],
- [
- -85.01293,
- 37.55084
- ],
- [
- -85.00192,
- 37.54807
- ],
- [
- -85.00201,
- 37.53312
- ],
- [
- -84.89814,
- 37.5322
- ],
- [
- -84.74786,
- 37.5853
- ],
- [
- -84.75244,
- 37.59213
- ],
- [
- -84.73671,
- 37.59656
- ],
- [
- -84.73155,
- 37.58973
- ],
- [
- -84.71175,
- 37.59505
- ],
- [
- -84.71516,
- 37.60232
- ],
- [
- -84.69416,
- 37.61035
- ],
- [
- -84.68832,
- 37.61258
- ],
- [
- -84.69583,
- 37.61716
- ],
- [
- -84.69405,
- 37.62032
- ],
- [
- -84.65805,
- 37.61826
- ],
- [
- -84.65215,
- 37.62548
- ],
- [
- -84.65854,
- 37.63503
- ],
- [
- -84.65902,
- 37.63541
- ],
- [
- -84.66623,
- 37.6334
- ],
- [
- -84.66685,
- 37.6341
- ],
- [
- -84.65457,
- 37.64052
- ],
- [
- -84.65352,
- 37.64113
- ],
- [
- -84.65356,
- 37.65231
- ],
- [
- -84.6564,
- 37.65442
- ],
- [
- -84.67906,
- 37.64593
- ],
- [
- -84.68045,
- 37.64496
- ],
- [
- -84.67354,
- 37.64198
- ],
- [
- -84.67213,
- 37.64074
- ],
- [
- -84.6785,
- 37.63672
- ],
- [
- -84.68,
- 37.6367
- ],
- [
- -84.69459,
- 37.64103
- ],
- [
- -84.69491,
- 37.64152
- ],
- [
- -84.67925,
- 37.65622
- ],
- [
- -84.68039,
- 37.65755
- ],
- [
- -84.6929,
- 37.66415
- ],
- [
- -84.69376,
- 37.66487
- ],
- [
- -84.70234,
- 37.65981
- ],
- [
- -84.70524,
- 37.66074
- ],
- [
- -84.69935,
- 37.66795
- ],
- [
- -84.68009,
- 37.67417
- ],
- [
- -84.6823,
- 37.68506
- ],
- [
- -84.68343,
- 37.68734
- ],
- [
- -84.69628,
- 37.68244
- ],
- [
- -84.70036,
- 37.68156
- ],
- [
- -84.69848,
- 37.69469
- ],
- [
- -84.69845,
- 37.69741
- ],
- [
- -84.74265,
- 37.69769
- ],
- [
- -84.74322,
- 37.69905
- ],
- [
- -84.73286,
- 37.70867
- ],
- [
- -84.73258,
- 37.70976
- ],
- [
- -84.74578,
- 37.71478
- ],
- [
- -84.7442,
- 37.71674
- ],
- [
- -84.72678,
- 37.71391
- ],
- [
- -84.72444,
- 37.71435
- ],
- [
- -84.73072,
- 37.72617
- ],
- [
- -84.72836,
- 37.72888
- ],
- [
- -84.69934,
- 37.72235
- ],
- [
- -84.68998,
- 37.72682
- ],
- [
- -84.70564,
- 37.73191
- ],
- [
- -84.70737,
- 37.73373
- ],
- [
- -84.68813,
- 37.73632
- ],
- [
- -84.68865,
- 37.74177
- ],
- [
- -84.702,
- 37.74548
- ],
- [
- -84.70489,
- 37.74777
- ],
- [
- -84.69429,
- 37.75903
- ],
- [
- -84.69424,
- 37.76356
- ],
- [
- -84.71395,
- 37.76793
- ],
- [
- -84.71571,
- 37.7696
- ],
- [
- -84.70292,
- 37.78664
- ],
- [
- -84.70274,
- 37.78751
- ],
- [
- -84.71637,
- 37.79979
- ],
- [
- -84.71682,
- 37.80026
- ],
- [
- -84.71579,
- 37.81518
- ],
- [
- -84.71595,
- 37.81553
- ],
- [
- -84.67952,
- 37.82987
- ],
- [
- -84.6771,
- 37.82838
- ],
- [
- -84.67982,
- 37.80132
- ],
- [
- -84.6795,
- 37.79834
- ],
- [
- -84.66789,
- 37.7834
- ],
- [
- -84.66555,
- 37.78298
- ],
- [
- -84.64982,
- 37.78901
- ],
- [
- -84.64933,
- 37.7907
- ],
- [
- -84.65966,
- 37.80897
- ],
- [
- -84.65862,
- 37.80952
- ],
- [
- -84.61235,
- 37.8017
- ],
- [
- -84.61001,
- 37.80071
- ],
- [
- -84.60836,
- 37.79271
- ],
- [
- -84.60999,
- 37.79165
- ],
- [
- -84.64066,
- 37.79291
- ],
- [
- -84.64222,
- 37.79201
- ],
- [
- -84.64335,
- 37.77918
- ],
- [
- -84.64322,
- 37.77846
- ],
- [
- -84.60658,
- 37.76066
- ],
- [
- -84.60501,
- 37.75974
- ],
- [
- -84.61569,
- 37.74642
- ],
- [
- -84.61496,
- 37.74584
- ],
- [
- -84.60632,
- 37.74281
- ],
- [
- -84.60541,
- 37.743
- ],
- [
- -84.58968,
- 37.75414
- ],
- [
- -84.58728,
- 37.75347
- ],
- [
- -84.58816,
- 37.73812
- ],
- [
- -84.58776,
- 37.73642
- ],
- [
- -84.57019,
- 37.72872
- ],
- [
- -84.56928,
- 37.72906
- ],
- [
- -84.55705,
- 37.74743
- ],
- [
- -84.55591,
- 37.74842
- ],
- [
- -84.54004,
- 37.75425
- ],
- [
- -84.53923,
- 37.75481
- ],
- [
- -84.53656,
- 37.76915
- ],
- [
- -84.53602,
- 37.76971
- ],
- [
- -84.49641,
- 37.78505
- ],
- [
- -84.49565,
- 37.78547
- ],
- [
- -84.48348,
- 37.80138
- ],
- [
- -84.48291,
- 37.80188
- ],
- [
- -84.46464,
- 37.79892
- ],
- [
- -84.46412,
- 37.79961
- ],
- [
- -84.48413,
- 37.83585
- ],
- [
- -84.48467,
- 37.83747
- ],
- [
- -84.47809,
- 37.85212
- ],
- [
- -84.4773,
- 37.85273
- ],
- [
- -84.44594,
- 37.84074
- ],
- [
- -84.44411,
- 37.84131
- ],
- [
- -84.418,
- 37.87157
- ],
- [
- -84.41645,
- 37.87212
- ],
- [
- -84.39202,
- 37.84668
- ],
- [
- -84.39067,
- 37.84596
- ],
- [
- -84.37047,
- 37.85387
- ],
- [
- -84.36854,
- 37.85455
- ],
- [
- -84.38304,
- 37.89289
- ],
- [
- -84.38386,
- 37.89473
- ],
- [
- -84.37973,
- 37.90109
- ],
- [
- -84.37739,
- 37.90174
- ],
- [
- -84.34117,
- 37.88224
- ],
- [
- -84.34059,
- 37.88272
- ],
- [
- -84.33787,
- 37.89163
- ],
- [
- -84.33765,
- 37.89193
- ],
- [
- -84.34891,
- 37.89836
- ],
- [
- -84.34897,
- 37.8986
- ],
- [
- -84.33875,
- 37.90712
- ],
- [
- -84.33871,
- 37.90733
- ],
- [
- -84.34803,
- 37.91488
- ],
- [
- -84.34799,
- 37.91512
- ],
- [
- -84.33024,
- 37.92249
- ],
- [
- -84.32995,
- 37.92392
- ],
- [
- -84.33986,
- 37.93097
- ],
- [
- -84.33998,
- 37.93131
- ],
- [
- -84.33065,
- 37.9368
- ],
- [
- -84.3308,
- 37.93723
- ],
- [
- -84.33842,
- 37.93906
- ],
- [
- -84.33837,
- 37.93921
- ],
- [
- -84.31147,
- 37.95185
- ],
- [
- -84.31075,
- 37.95217
- ],
- [
- -84.32328,
- 37.95589
- ],
- [
- -84.32331,
- 37.95603
- ],
- [
- -84.31175,
- 37.96302
- ],
- [
- -84.31172,
- 37.96332
- ],
- [
- -84.32414,
- 37.96579
- ],
- [
- -84.32443,
- 37.96645
- ],
- [
- -84.31964,
- 38.0023
- ],
- [
- -84.28271,
- 38.01912
- ],
- [
- -84.29281,
- 38.03333
- ],
- [
- -84.29299,
- 38.03361
- ],
- [
- -84.28481,
- 38.04006
- ],
- [
- -84.28465,
- 38.04043
- ],
- [
- -84.28618,
- 38.06663
- ],
- [
- -84.28637,
- 38.06701
- ],
- [
- -84.08024,
- 38.11516
- ],
- [
- -84.02625,
- 38.1526
- ],
- [
- -83.99068,
- 38.17484
- ],
- [
- -83.9827,
- 38.19287
- ],
- [
- -83.98383,
- 38.19515
- ],
- [
- -83.97018,
- 38.20314
- ],
- [
- -83.96947,
- 38.20948
- ],
- [
- -83.98741,
- 38.22013
- ],
- [
- -83.98917,
- 38.22015
- ],
- [
- -83.9901,
- 38.20293
- ],
- [
- -83.99477,
- 38.2039
- ],
- [
- -84.00684,
- 38.21538
- ],
- [
- -84.0085,
- 38.21993
- ],
- [
- -84.04297,
- 38.22488
- ],
- [
- -84.06271,
- 38.23463
- ],
- [
- -84.06207,
- 38.23689
- ],
- [
- -84.05382,
- 38.23906
- ],
- [
- -84.05772,
- 38.24953
- ],
- [
- -84.05699,
- 38.25722
- ],
- [
- -84.06817,
- 38.25509
- ],
- [
- -84.07985,
- 38.25704
- ],
- [
- -84.07445,
- 38.26378
- ],
- [
- -84.07323,
- 38.26603
- ],
- [
- -84.07782,
- 38.27107
- ],
- [
- -84.08012,
- 38.27336
- ],
- [
- -84.08951,
- 38.27301
- ],
- [
- -84.09547,
- 38.2681
- ],
- [
- -84.09681,
- 38.25905
- ],
- [
- -84.10326,
- 38.25912
- ],
- [
- -84.10137,
- 38.2659
- ],
- [
- -84.10421,
- 38.27046
- ],
- [
- -84.11649,
- 38.27242
- ],
- [
- -84.11995,
- 38.27517
- ],
- [
- -84.10516,
- 38.28271
- ],
- [
- -84.1045,
- 38.28633
- ],
- [
- -84.11736,
- 38.28829
- ],
- [
- -84.12696,
- 38.30789
- ],
- [
- -84.13289,
- 38.30478
- ],
- [
- -84.16658,
- 38.35501
- ],
- [
- -84.19386,
- 38.37162
- ],
- [
- -84.10268,
- 38.45943
- ],
- [
- -84.10671,
- 38.46884
- ],
- [
- -84.10712,
- 38.46916
- ],
- [
- -84.13066,
- 38.4746
- ],
- [
- -84.13124,
- 38.47465
- ],
- [
- -84.131,
- 38.48267
- ],
- [
- -84.13163,
- 38.48297
- ],
- [
- -84.14244,
- 38.47603
- ],
- [
- -84.14319,
- 38.47602
- ],
- [
- -84.15141,
- 38.48962
- ],
- [
- -84.1521,
- 38.48993
- ],
- [
- -84.17199,
- 38.4865
- ],
- [
- -84.17319,
- 38.48736
- ],
- [
- -84.16006,
- 38.50108
- ],
- [
- -84.16124,
- 38.50177
- ],
- [
- -84.18289,
- 38.49678
- ],
- [
- -84.18345,
- 38.49735
- ],
- [
- -84.1794,
- 38.52331
- ],
- [
- -84.17804,
- 38.53327
- ],
- [
- -84.1643,
- 38.54491
- ],
- [
- -84.16177,
- 38.55394
- ],
- [
- -84.16816,
- 38.559
- ],
- [
- -84.20714,
- 38.55125
- ],
- [
- -84.20886,
- 38.54992
- ],
- [
- -84.21707,
- 38.55729
- ],
- [
- -84.21763,
- 38.55813
- ],
- [
- -84.20383,
- 38.56432
- ],
- [
- -84.20297,
- 38.56516
- ],
- [
- -84.20541,
- 38.58206
- ],
- [
- -84.20473,
- 38.58794
- ],
- [
- -84.19575,
- 38.58834
- ],
- [
- -84.1953,
- 38.5883
- ],
- [
- -84.20091,
- 38.60377
- ],
- [
- -84.2075,
- 38.59749
- ],
- [
- -84.23415,
- 38.80739
- ],
- [
- -84.23604,
- 38.82232
- ],
- [
- -84.23054,
- 38.82744
- ],
- [
- -84.23294,
- 38.88603
- ],
- [
- -84.23289,
- 38.8871
- ],
- [
- -84.2864,
- 38.95228
- ],
- [
- -84.28874,
- 38.95567
- ],
- [
- -84.30005,
- 38.9935
- ],
- [
- -84.30716,
- 39.0073
- ],
- [
- -84.33985,
- 39.03437
- ],
- [
- -84.34089,
- 39.03501
- ],
- [
- -84.42565,
- 39.0527
- ],
- [
- -84.42652,
- 39.05322
- ],
- [
- -84.43401,
- 39.09569
- ],
- [
- -84.43495,
- 39.09977
- ],
- [
- -84.45282,
- 39.11925
- ],
- [
- -84.45619,
- 39.12054
- ],
- [
- -84.4792,
- 39.11807
- ],
- [
- -84.48059,
- 39.11742
- ],
- [
- -84.50434,
- 39.09592
- ],
- [
- -84.50612,
- 39.09511
- ],
- [
- -84.54971,
- 39.09972
- ],
- [
- -84.55096,
- 39.09949
- ],
- [
- -84.57256,
- 39.08215
- ],
- [
- -84.57306,
- 39.08191
- ],
- [
- -84.61685,
- 39.07323
- ],
- [
- -84.61845,
- 39.07327
- ],
- [
- -84.65842,
- 39.09552
- ],
- [
- -84.65993,
- 39.09614
- ],
- [
- -84.68487,
- 39.1003
- ],
- [
- -84.68593,
- 39.10077
- ],
- [
- -84.71788,
- 39.13641
- ],
- [
- -84.71826,
- 39.13682
- ],
- [
- -84.75139,
- 39.14753
- ],
- [
- -84.75244,
- 39.14726
- ],
- [
- -84.7842,
- 39.1179
- ],
- [
- -84.7874,
- 39.11544
- ],
- [
- -84.83142,
- 39.10085
- ],
- [
- -84.83248,
- 39.10036
- ],
- [
- -84.89694,
- 39.05747
- ],
- [
- -84.89729,
- 39.05747
- ],
- [
- -84.83027,
- 38.97417
- ],
- [
- -84.83003,
- 38.97305
- ],
- [
- -84.83299,
- 38.96042
- ],
- [
- -84.83363,
- 38.95943
- ],
- [
- -84.8762,
- 38.92254
- ],
- [
- -84.87706,
- 38.92147
- ],
- [
- -84.87723,
- 38.90954
- ],
- [
- -84.87702,
- 38.90901
- ],
- [
- -84.8679,
- 38.89921
- ],
- [
- -84.86643,
- 38.89871
- ],
- [
- -84.8145,
- 38.89546
- ],
- [
- -84.81331,
- 38.89523
- ],
- [
- -84.78542,
- 38.88075
- ],
- [
- -84.78518,
- 38.88001
- ],
- [
- -84.78981,
- 38.86206
- ],
- [
- -84.79094,
- 38.86057
- ],
- [
- -84.82962,
- 38.83112
- ],
- [
- -84.82993,
- 38.83037
- ],
- [
- -84.81417,
- 38.80034
- ],
- [
- -84.81339,
- 38.79851
- ],
- [
- -84.81432,
- 38.7847
- ],
- [
- -84.8149,
- 38.78428
- ],
- [
- -84.88679,
- 38.79463
- ],
- [
- -84.88724,
- 38.7948
- ],
- [
- -84.93976,
- 38.77602
- ],
- [
- -84.94121,
- 38.77565
- ],
- [
- -84.99111,
- 38.77842
- ],
- [
- -84.99229,
- 38.77815
- ],
- [
- -85.10094,
- 38.72662
- ],
- [
- -85.10172,
- 38.72651
- ],
- [
- -85.13605,
- 38.70062
- ],
- [
- -85.1368,
- 38.7001
- ],
- [
- -85.17189,
- 38.68836
- ],
- [
- -85.17298,
- 38.68807
- ],
- [
- -85.21237,
- 38.69501
- ],
- [
- -85.21482,
- 38.69625
- ],
- [
- -85.2464,
- 38.73147
- ],
- [
- -85.24692,
- 38.73194
- ],
- [
- -85.2767,
- 38.74135
- ],
- [
- -85.27859,
- 38.74159
- ],
- [
- -85.36176,
- 38.73051
- ],
- [
- -85.3636,
- 38.73037
- ],
- [
- -85.41339,
- 38.73683
- ],
- [
- -85.41489,
- 38.73677
- ],
- [
- -85.43532,
- 38.729
- ],
- [
- -85.43609,
- 38.7285
- ],
- [
- -85.45169,
- 38.71037
- ],
- [
- -85.45184,
- 38.7102
- ],
- [
- -85.45673,
- 38.68734
- ],
- [
- -85.45665,
- 38.68603
- ],
- [
- -85.43897,
- 38.65963
- ],
- [
- -85.43854,
- 38.65896
- ],
- [
- -85.43832,
- 38.60596
- ],
- [
- -85.43824,
- 38.60468
- ],
- [
- -85.41528,
- 38.55926
- ],
- [
- -85.41489,
- 38.55775
- ],
- [
- -85.41777,
- 38.53822
- ],
- [
- -85.41777,
- 38.53775
- ],
- [
- -85.43188,
- 38.52455
- ],
- [
- -85.43291,
- 38.52398
- ],
- [
- -85.37901,
- 38.51903
- ],
- [
- -85.37859,
- 38.51895
- ],
- [
- -85.36594,
- 38.50787
- ],
- [
- -85.3657,
- 38.5077
- ],
- [
- -85.31944,
- 38.49761
- ],
- [
- -85.31592,
- 38.49624
- ],
- [
- -85.31416,
- 38.49262
- ],
- [
- -85.34598,
- 38.45957
- ],
- [
- -85.33133,
- 38.44233
- ],
- [
- -85.32496,
- 38.4038
- ],
- [
- -85.29568,
- 38.37384
- ],
- [
- -85.28281,
- 38.35796
- ],
- [
- -85.32459,
- 38.30998
- ],
- [
- -85.35159,
- 38.30322
- ],
- [
- -85.39057,
- 38.30779
- ],
- [
- -85.39323,
- 38.30779
- ],
- [
- -85.39558,
- 38.30508
- ],
- [
- -85.40906,
- 38.30373
- ],
- [
- -85.40791,
- 38.29466
- ],
- [
- -85.41025,
- 38.29376
- ],
- [
- -85.41318,
- 38.29467
- ],
- [
- -85.41669,
- 38.30237
- ],
- [
- -85.42255,
- 38.30192
- ],
- [
- -85.42666,
- 38.30374
- ],
- [
- -85.42491,
- 38.29422
- ],
- [
- -85.42725,
- 38.29286
- ],
- [
- -85.44718,
- 38.30194
- ],
- [
- -85.44894,
- 38.3042
- ],
- [
- -85.46127,
- 38.28563
- ],
- [
- -85.46713,
- 38.28535
- ],
- [
- -85.40596,
- 38.26389
- ],
- [
- -85.4051,
- 38.26359
- ],
- [
- -85.42905,
- 38.11817
- ],
- [
- -85.43035,
- 38.10703
- ],
- [
- -85.46195,
- 38.09662
- ],
- [
- -85.46954,
- 38.09617
- ],
- [
- -85.51222,
- 38.01096
- ],
- [
- -85.51689,
- 38.01096
- ],
- [
- -85.49995,
- 37.99872
- ],
- [
- -85.48886,
- 37.99056
- ],
- [
- -85.49995,
- 37.98467
- ],
- [
- -85.53381,
- 37.96518
- ],
- [
- -85.52563,
- 37.95294
- ],
- [
- -85.52972,
- 37.94705
- ],
- [
- -85.57987,
- 37.91258
- ],
- [
- -85.58395,
- 37.91076
- ],
- [
- -85.58042,
- 37.88312
- ],
- [
- -85.58683,
- 37.87631
- ],
- [
- -85.60548,
- 37.87041
- ],
- [
- -85.61364,
- 37.86995
- ],
- [
- -85.6107,
- 37.85907
- ],
- [
- -85.61828,
- 37.85136
- ],
- [
- -85.69802,
- 37.81137
- ],
- [
- -85.73414,
- 37.81086
- ],
- [
- -85.73833,
- 37.81225
- ],
- [
- -85.73833,
- 37.84287
- ],
- [
- -85.75207,
- 37.84314
- ],
- [
- -85.75241,
- 37.87946
- ],
- [
- -85.7737,
- 37.87919
- ],
- [
- -85.77541,
- 37.97709
- ],
- [
- -85.82382,
- 37.9779
- ],
- [
- -85.82399,
- 37.99129
- ],
- [
- -85.91154,
- 37.99197
- ],
- [
- -85.91171,
- 38.00671
- ],
- [
- -85.99891,
- 37.99963
- ],
- [
- -86.0305,
- 37.99062
- ],
- [
- -86.0317,
- 37.96897
- ],
- [
- -86.03703,
- 37.95787
- ],
- [
- -86.04904,
- 37.95814
- ],
- [
- -86.06569,
- 37.97465
- ],
- [
- -86.0832,
- 38.00266
- ],
- [
- -86.08252,
- 37.80823
- ],
- [
- -86.15172,
- 37.79892
- ],
- [
- -86.27537,
- 37.5933
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "KyFromAbove",
- "url": "https://kyfromabove.ky.gov/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "US",
- "description": "6-inch or 1-foot aerial imagery captured from 2012 to 2014 through the Kentucky Aerial Photography and Elevation Data Program (KyFromAbove) and published by the Kentucky Division of Geographic Information (DGI).",
- "end_date": "2014",
- "id": "KYAPED",
- "license_url": "https://kygeonet.ky.gov/kyfromabove/pdfs/KyFromAboveDistributionPolicy.pdf",
- "max_zoom": 20,
- "min_zoom": 3,
- "name": "KyFromAbove",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://kentucky.gov/policies/Pages/default.aspx",
- "start_date": "2012",
- "type": "wms",
- "url": "https://kyraster.ky.gov/arcgis/services/ImageServices/Ky_KYAPED_Imagery_WGS84WM/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -85.60121,
- 36.87174
- ],
- [
- -85.59544,
- 36.86312
- ],
- [
- -85.57471,
- 36.8382
- ],
- [
- -85.5816,
- 36.82323
- ],
- [
- -85.59596,
- 36.81869
- ],
- [
- -85.58844,
- 36.77788
- ],
- [
- -85.55282,
- 36.77383
- ],
- [
- -85.54248,
- 36.77429
- ],
- [
- -85.51834,
- 36.73394
- ],
- [
- -85.51891,
- 36.73212
- ],
- [
- -85.47298,
- 36.73393
- ],
- [
- -85.46954,
- 36.73167
- ],
- [
- -85.49653,
- 36.69086
- ],
- [
- -85.43633,
- 36.61853
- ],
- [
- -85.20834,
- 36.62566
- ],
- [
- -85.19537,
- 36.6255
- ],
- [
- -84.83859,
- 36.60505
- ],
- [
- -84.83005,
- 36.60447
- ],
- [
- -83.78902,
- 36.58388
- ],
- [
- -83.69071,
- 36.58258
- ],
- [
- -83.67461,
- 36.60308
- ],
- [
- -83.67311,
- 36.60468
- ],
- [
- -83.64951,
- 36.61668
- ],
- [
- -83.64831,
- 36.62268
- ],
- [
- -83.58451,
- 36.64138
- ],
- [
- -83.57731,
- 36.64178
- ],
- [
- -83.53149,
- 36.6652
- ],
- [
- -83.52961,
- 36.66618
- ],
- [
- -83.43171,
- 36.66649
- ],
- [
- -83.42371,
- 36.66739
- ],
- [
- -83.313,
- 36.70909
- ],
- [
- -83.3114,
- 36.71029
- ],
- [
- -83.19682,
- 36.73862
- ],
- [
- -83.1946,
- 36.73949
- ],
- [
- -83.13684,
- 36.74303
- ],
- [
- -83.13639,
- 36.74309
- ],
- [
- -83.13099,
- 36.74979
- ],
- [
- -83.12783,
- 36.75083
- ],
- [
- -83.12934,
- 36.77714
- ],
- [
- -83.13169,
- 36.78149
- ],
- [
- -83.10803,
- 36.80218
- ],
- [
- -83.10309,
- 36.80669
- ],
- [
- -83.10209,
- 36.82819
- ],
- [
- -83.10179,
- 36.82909
- ],
- [
- -83.07969,
- 36.84059
- ],
- [
- -83.07519,
- 36.84089
- ],
- [
- -83.07559,
- 36.85059
- ],
- [
- -83.07259,
- 36.85459
- ],
- [
- -83.04219,
- 36.85439
- ],
- [
- -83.02689,
- 36.85549
- ],
- [
- -83.01259,
- 36.84729
- ],
- [
- -83.00922,
- 36.8473
- ],
- [
- -83.00328,
- 36.85224
- ],
- [
- -82.99838,
- 36.85663
- ],
- [
- -82.91031,
- 36.87405
- ],
- [
- -82.90777,
- 36.87471
- ],
- [
- -82.87949,
- 36.88909
- ],
- [
- -82.87857,
- 36.88958
- ],
- [
- -82.87256,
- 36.90338
- ],
- [
- -82.87747,
- 36.90796
- ],
- [
- -82.85864,
- 36.92779
- ],
- [
- -82.85796,
- 36.92953
- ],
- [
- -82.8561,
- 36.95247
- ],
- [
- -82.85587,
- 36.95385
- ],
- [
- -82.86736,
- 36.96318
- ],
- [
- -82.87023,
- 36.9655
- ],
- [
- -82.86845,
- 36.97648
- ],
- [
- -82.86754,
- 36.97752
- ],
- [
- -82.83853,
- 36.98729
- ],
- [
- -82.83601,
- 36.98884
- ],
- [
- -82.83029,
- 37.00352
- ],
- [
- -82.82868,
- 37.00574
- ],
- [
- -82.78243,
- 37.00824
- ],
- [
- -82.78214,
- 37.00824
- ],
- [
- -82.76641,
- 37.02311
- ],
- [
- -82.75917,
- 37.02733
- ],
- [
- -82.75071,
- 37.02411
- ],
- [
- -82.74798,
- 37.02521
- ],
- [
- -82.74368,
- 37.0414
- ],
- [
- -82.74245,
- 37.04298
- ],
- [
- -82.72471,
- 37.04276
- ],
- [
- -82.72247,
- 37.0451
- ],
- [
- -82.72631,
- 37.06687
- ],
- [
- -82.72702,
- 37.07302
- ],
- [
- -82.71835,
- 37.07571
- ],
- [
- -82.71674,
- 37.07722
- ],
- [
- -82.7262,
- 37.11588
- ],
- [
- -82.7221,
- 37.12017
- ],
- [
- -82.63401,
- 37.1542
- ],
- [
- -82.63349,
- 37.15426
- ],
- [
- -82.59323,
- 37.18206
- ],
- [
- -82.59245,
- 37.18285
- ],
- [
- -82.5079,
- 37.22273
- ],
- [
- -82.49886,
- 37.22704
- ],
- [
- -82.35534,
- 37.26522
- ],
- [
- -82.34874,
- 37.26794
- ],
- [
- -82.34193,
- 37.27398
- ],
- [
- -82.34392,
- 37.28071
- ],
- [
- -82.32772,
- 37.28285
- ],
- [
- -82.32464,
- 37.28295
- ],
- [
- -81.9646,
- 37.54275
- ],
- [
- -81.96454,
- 37.54325
- ],
- [
- -81.97275,
- 37.54688
- ],
- [
- -81.97508,
- 37.54657
- ],
- [
- -81.99379,
- 37.53806
- ],
- [
- -81.99449,
- 37.53795
- ],
- [
- -81.99772,
- 37.54339
- ],
- [
- -81.9984,
- 37.54335
- ],
- [
- -82.00955,
- 37.53309
- ],
- [
- -82.01186,
- 37.53314
- ],
- [
- -82.04175,
- 37.54822
- ],
- [
- -82.04278,
- 37.54809
- ],
- [
- -82.04591,
- 37.52811
- ],
- [
- -82.04677,
- 37.52816
- ],
- [
- -82.04911,
- 37.53482
- ],
- [
- -82.04989,
- 37.53531
- ],
- [
- -82.06271,
- 37.53592
- ],
- [
- -82.06374,
- 37.53618
- ],
- [
- -82.07325,
- 37.55502
- ],
- [
- -82.07503,
- 37.55582
- ],
- [
- -82.09892,
- 37.5533
- ],
- [
- -82.10289,
- 37.55305
- ],
- [
- -82.10819,
- 37.55991
- ],
- [
- -82.11658,
- 37.55959
- ],
- [
- -82.13308,
- 37.55291
- ],
- [
- -82.1333,
- 37.553
- ],
- [
- -82.13349,
- 37.56071
- ],
- [
- -82.13395,
- 37.56224
- ],
- [
- -82.14456,
- 37.56694
- ],
- [
- -82.14465,
- 37.56831
- ],
- [
- -82.1296,
- 37.57197
- ],
- [
- -82.1273,
- 37.57268
- ],
- [
- -82.12648,
- 37.58294
- ],
- [
- -82.12732,
- 37.58667
- ],
- [
- -82.13034,
- 37.59174
- ],
- [
- -82.13198,
- 37.59354
- ],
- [
- -82.14843,
- 37.59091
- ],
- [
- -82.15672,
- 37.59279
- ],
- [
- -82.15672,
- 37.60906
- ],
- [
- -82.15674,
- 37.6092
- ],
- [
- -82.16814,
- 37.60849
- ],
- [
- -82.16906,
- 37.60987
- ],
- [
- -82.16458,
- 37.6189
- ],
- [
- -82.16419,
- 37.62019
- ],
- [
- -82.18083,
- 37.62138
- ],
- [
- -82.18143,
- 37.62184
- ],
- [
- -82.17264,
- 37.6323
- ],
- [
- -82.17245,
- 37.63259
- ],
- [
- -82.17463,
- 37.64742
- ],
- [
- -82.17526,
- 37.64797
- ],
- [
- -82.18799,
- 37.64758
- ],
- [
- -82.19144,
- 37.64438
- ],
- [
- -82.18669,
- 37.62758
- ],
- [
- -82.1873,
- 37.62694
- ],
- [
- -82.20969,
- 37.6251
- ],
- [
- -82.21349,
- 37.62541
- ],
- [
- -82.22611,
- 37.65309
- ],
- [
- -82.23939,
- 37.66146
- ],
- [
- -82.256,
- 37.65679
- ],
- [
- -82.25711,
- 37.65675
- ],
- [
- -82.28193,
- 37.67534
- ],
- [
- -82.2823,
- 37.67583
- ],
- [
- -82.28798,
- 37.66844
- ],
- [
- -82.28817,
- 37.66823
- ],
- [
- -82.29439,
- 37.67796
- ],
- [
- -82.29474,
- 37.67828
- ],
- [
- -82.30231,
- 37.67555
- ],
- [
- -82.30395,
- 37.67576
- ],
- [
- -82.29705,
- 37.70084
- ],
- [
- -82.29663,
- 37.7024
- ],
- [
- -82.30568,
- 37.70671
- ],
- [
- -82.30724,
- 37.70767
- ],
- [
- -82.3183,
- 37.73305
- ],
- [
- -82.31888,
- 37.73376
- ],
- [
- -82.33335,
- 37.7412
- ],
- [
- -82.33358,
- 37.74328
- ],
- [
- -82.31078,
- 37.76269
- ],
- [
- -82.31164,
- 37.76429
- ],
- [
- -82.32946,
- 37.76239
- ],
- [
- -82.33116,
- 37.76313
- ],
- [
- -82.323,
- 37.77391
- ],
- [
- -82.3237,
- 37.77503
- ],
- [
- -82.33722,
- 37.77517
- ],
- [
- -82.3376,
- 37.77537
- ],
- [
- -82.33838,
- 37.78043
- ],
- [
- -82.3397,
- 37.78551
- ],
- [
- -82.37487,
- 37.80216
- ],
- [
- -82.37739,
- 37.80301
- ],
- [
- -82.38526,
- 37.81741
- ],
- [
- -82.38659,
- 37.81821
- ],
- [
- -82.4015,
- 37.81003
- ],
- [
- -82.40165,
- 37.81009
- ],
- [
- -82.3996,
- 37.82939
- ],
- [
- -82.39968,
- 37.82993
- ],
- [
- -82.41737,
- 37.84566
- ],
- [
- -82.42048,
- 37.84681
- ],
- [
- -82.4148,
- 37.85588
- ],
- [
- -82.41465,
- 37.85626
- ],
- [
- -82.42351,
- 37.86031
- ],
- [
- -82.42426,
- 37.86171
- ],
- [
- -82.40844,
- 37.86606
- ],
- [
- -82.40746,
- 37.86747
- ],
- [
- -82.41632,
- 37.86963
- ],
- [
- -82.41768,
- 37.87066
- ],
- [
- -82.4192,
- 37.88208
- ],
- [
- -82.41978,
- 37.88382
- ],
- [
- -82.46149,
- 37.91309
- ],
- [
- -82.46288,
- 37.91483
- ],
- [
- -82.47252,
- 37.89924
- ],
- [
- -82.47457,
- 37.90029
- ],
- [
- -82.47497,
- 37.91115
- ],
- [
- -82.47553,
- 37.91204
- ],
- [
- -82.48802,
- 37.91734
- ],
- [
- -82.48819,
- 37.91807
- ],
- [
- -82.48019,
- 37.92583
- ],
- [
- -82.48047,
- 37.92626
- ],
- [
- -82.49827,
- 37.92818
- ],
- [
- -82.49936,
- 37.92937
- ],
- [
- -82.50201,
- 37.93477
- ],
- [
- -82.50127,
- 37.93562
- ],
- [
- -82.48916,
- 37.93796
- ],
- [
- -82.48905,
- 37.93872
- ],
- [
- -82.4973,
- 37.94551
- ],
- [
- -82.49668,
- 37.9464
- ],
- [
- -82.4751,
- 37.95491
- ],
- [
- -82.4718,
- 37.95912
- ],
- [
- -82.48441,
- 37.9699
- ],
- [
- -82.48384,
- 37.97157
- ],
- [
- -82.46407,
- 37.98029
- ],
- [
- -82.46426,
- 37.98341
- ],
- [
- -82.48329,
- 37.98426
- ],
- [
- -82.48387,
- 37.9845
- ],
- [
- -82.48757,
- 37.99809
- ],
- [
- -82.48773,
- 37.99833
- ],
- [
- -82.51597,
- 37.99993
- ],
- [
- -82.51735,
- 38.0012
- ],
- [
- -82.551,
- 38.07045
- ],
- [
- -82.55126,
- 38.0708
- ],
- [
- -82.58364,
- 38.09032
- ],
- [
- -82.58404,
- 38.09066
- ],
- [
- -82.5857,
- 38.107
- ],
- [
- -82.58778,
- 38.10888
- ],
- [
- -82.61945,
- 38.12074
- ],
- [
- -82.62035,
- 38.12148
- ],
- [
- -82.62138,
- 38.13231
- ],
- [
- -82.62212,
- 38.13341
- ],
- [
- -82.63647,
- 38.13786
- ],
- [
- -82.63731,
- 38.13905
- ],
- [
- -82.63895,
- 38.15674
- ],
- [
- -82.64474,
- 38.16549
- ],
- [
- -82.61323,
- 38.1704
- ],
- [
- -82.61134,
- 38.17155
- ],
- [
- -82.59885,
- 38.20171
- ],
- [
- -82.59844,
- 38.21739
- ],
- [
- -82.61252,
- 38.23455
- ],
- [
- -82.61226,
- 38.23609
- ],
- [
- -82.60713,
- 38.24598
- ],
- [
- -82.60533,
- 38.2473
- ],
- [
- -82.58643,
- 38.24561
- ],
- [
- -82.58606,
- 38.24562
- ],
- [
- -82.57812,
- 38.25515
- ],
- [
- -82.57466,
- 38.26387
- ],
- [
- -82.58282,
- 38.29548
- ],
- [
- -82.58306,
- 38.29683
- ],
- [
- -82.57188,
- 38.31578
- ],
- [
- -82.57269,
- 38.3188
- ],
- [
- -82.59652,
- 38.34285
- ],
- [
- -82.59798,
- 38.34491
- ],
- [
- -82.59574,
- 38.41819
- ],
- [
- -82.59342,
- 38.42186
- ],
- [
- -82.60406,
- 38.45963
- ],
- [
- -82.60409,
- 38.45984
- ],
- [
- -82.61278,
- 38.47359
- ],
- [
- -82.6138,
- 38.47453
- ],
- [
- -82.65438,
- 38.49483
- ],
- [
- -82.65705,
- 38.49682
- ],
- [
- -82.69957,
- 38.54406
- ],
- [
- -82.70005,
- 38.54434
- ],
- [
- -82.72485,
- 38.5576
- ],
- [
- -82.73096,
- 38.55926
- ],
- [
- -82.78915,
- 38.55989
- ],
- [
- -82.78978,
- 38.55995
- ],
- [
- -82.84072,
- 38.58725
- ],
- [
- -82.84195,
- 38.58827
- ],
- [
- -82.85392,
- 38.61213
- ],
- [
- -82.85429,
- 38.61345
- ],
- [
- -82.85881,
- 38.6574
- ],
- [
- -82.85936,
- 38.65949
- ],
- [
- -82.87693,
- 38.68756
- ],
- [
- -82.8772,
- 38.68851
- ],
- [
- -82.87018,
- 38.73294
- ],
- [
- -82.87013,
- 38.73362
- ],
- [
- -82.88572,
- 38.75499
- ],
- [
- -82.88609,
- 38.7552
- ],
- [
- -82.92519,
- 38.74965
- ],
- [
- -82.93347,
- 38.74701
- ],
- [
- -82.97128,
- 38.72724
- ],
- [
- -82.97157,
- 38.72715
- ],
- [
- -83.02798,
- 38.72709
- ],
- [
- -83.02983,
- 38.72618
- ],
- [
- -83.06051,
- 38.69095
- ],
- [
- -83.06213,
- 38.68967
- ],
- [
- -83.11053,
- 38.67306
- ],
- [
- -83.11247,
- 38.67158
- ],
- [
- -83.13402,
- 38.63308
- ],
- [
- -83.13495,
- 38.63172
- ],
- [
- -83.15165,
- 38.6197
- ],
- [
- -83.15332,
- 38.6189
- ],
- [
- -83.20318,
- 38.6167
- ],
- [
- -83.20471,
- 38.61686
- ],
- [
- -83.2449,
- 38.62868
- ],
- [
- -83.2465,
- 38.62846
- ],
- [
- -83.29282,
- 38.59661
- ],
- [
- -83.2946,
- 38.59648
- ],
- [
- -83.31529,
- 38.60671
- ],
- [
- -83.31692,
- 38.60832
- ],
- [
- -83.3272,
- 38.63725
- ],
- [
- -83.32773,
- 38.63781
- ],
- [
- -83.35707,
- 38.65436
- ],
- [
- -83.3582,
- 38.65497
- ],
- [
- -83.46575,
- 38.67484
- ],
- [
- -83.46796,
- 38.67517
- ],
- [
- -83.51888,
- 38.70261
- ],
- [
- -83.52062,
- 38.70296
- ],
- [
- -83.62488,
- 38.67913
- ],
- [
- -83.62707,
- 38.67797
- ],
- [
- -83.64426,
- 38.63771
- ],
- [
- -83.64507,
- 38.63625
- ],
- [
- -83.65677,
- 38.6279
- ],
- [
- -83.66005,
- 38.62718
- ],
- [
- -83.76049,
- 38.65177
- ],
- [
- -83.76354,
- 38.65225
- ],
- [
- -83.77283,
- 38.65914
- ],
- [
- -83.77371,
- 38.6608
- ],
- [
- -83.78446,
- 38.69641
- ],
- [
- -83.78661,
- 38.69881
- ],
- [
- -83.83487,
- 38.71625
- ],
- [
- -83.83641,
- 38.71734
- ],
- [
- -83.84621,
- 38.74229
- ],
- [
- -83.84873,
- 38.74718
- ],
- [
- -83.86406,
- 38.75895
- ],
- [
- -83.86653,
- 38.7602
- ],
- [
- -83.92529,
- 38.77103
- ],
- [
- -83.92636,
- 38.77128
- ],
- [
- -83.96134,
- 38.78731
- ],
- [
- -83.96219,
- 38.78744
- ],
- [
- -84.07001,
- 38.77033
- ],
- [
- -84.07075,
- 38.77026
- ],
- [
- -84.20063,
- 38.80157
- ],
- [
- -84.20559,
- 38.80259
- ],
- [
- -84.22895,
- 38.82409
- ],
- [
- -84.23019,
- 38.82636
- ],
- [
- -84.23185,
- 38.87281
- ],
- [
- -84.23208,
- 38.8747
- ],
- [
- -84.40671,
- 38.80609
- ],
- [
- -84.40781,
- 38.80587
- ],
- [
- -84.41876,
- 38.80576
- ],
- [
- -84.53176,
- 38.78992
- ],
- [
- -84.59728,
- 38.79086
- ],
- [
- -84.62429,
- 38.80375
- ],
- [
- -84.62962,
- 38.80288
- ],
- [
- -84.64568,
- 38.79257
- ],
- [
- -84.65574,
- 38.79082
- ],
- [
- -84.66003,
- 38.77725
- ],
- [
- -84.78056,
- 38.76487
- ],
- [
- -84.78572,
- 38.72003
- ],
- [
- -84.79289,
- 38.72463
- ],
- [
- -84.79397,
- 38.72462
- ],
- [
- -84.81239,
- 38.71229
- ],
- [
- -84.8134,
- 38.71168
- ],
- [
- -84.81128,
- 38.70268
- ],
- [
- -84.81181,
- 38.70234
- ],
- [
- -84.8319,
- 38.71176
- ],
- [
- -84.83359,
- 38.71197
- ],
- [
- -84.84386,
- 38.69761
- ],
- [
- -84.84456,
- 38.69675
- ],
- [
- -84.86581,
- 38.70048
- ],
- [
- -84.86882,
- 38.6997
- ],
- [
- -84.87241,
- 38.68955
- ],
- [
- -84.873,
- 38.68906
- ],
- [
- -84.88826,
- 38.68696
- ],
- [
- -84.88859,
- 38.68663
- ],
- [
- -84.88971,
- 38.67664
- ],
- [
- -84.89022,
- 38.67633
- ],
- [
- -84.90335,
- 38.67861
- ],
- [
- -84.90436,
- 38.67833
- ],
- [
- -84.91084,
- 38.66879
- ],
- [
- -84.91238,
- 38.66864
- ],
- [
- -84.92561,
- 38.67334
- ],
- [
- -84.92653,
- 38.6728
- ],
- [
- -84.93664,
- 38.65111
- ],
- [
- -84.93693,
- 38.65071
- ],
- [
- -84.96629,
- 38.64951
- ],
- [
- -84.96778,
- 38.64925
- ],
- [
- -84.97436,
- 38.6368
- ],
- [
- -84.97537,
- 38.63592
- ],
- [
- -84.98941,
- 38.63129
- ],
- [
- -84.99073,
- 38.63078
- ],
- [
- -85.01388,
- 38.63223
- ],
- [
- -85.015,
- 38.63235
- ],
- [
- -85.01229,
- 38.62395
- ],
- [
- -85.01238,
- 38.62314
- ],
- [
- -85.02384,
- 38.6152
- ],
- [
- -85.02494,
- 38.61358
- ],
- [
- -85.05726,
- 38.61167
- ],
- [
- -85.05904,
- 38.61144
- ],
- [
- -85.06828,
- 38.60429
- ],
- [
- -85.06855,
- 38.60374
- ],
- [
- -85.06624,
- 38.59489
- ],
- [
- -85.0664,
- 38.59419
- ],
- [
- -85.07359,
- 38.59683
- ],
- [
- -85.07448,
- 38.59677
- ],
- [
- -85.07605,
- 38.58019
- ],
- [
- -85.07588,
- 38.57821
- ],
- [
- -85.06841,
- 38.56868
- ],
- [
- -85.06543,
- 38.56577
- ],
- [
- -85.04279,
- 38.57355
- ],
- [
- -85.0409,
- 38.57415
- ],
- [
- -85.00371,
- 38.55512
- ],
- [
- -85.00205,
- 38.55341
- ],
- [
- -85.00987,
- 38.54945
- ],
- [
- -85.01199,
- 38.54807
- ],
- [
- -85.02979,
- 38.50957
- ],
- [
- -85.02938,
- 38.50779
- ],
- [
- -85.02305,
- 38.50388
- ],
- [
- -85.01919,
- 38.50382
- ],
- [
- -85.00387,
- 38.51559
- ],
- [
- -85.00155,
- 38.5165
- ],
- [
- -84.98068,
- 38.51741
- ],
- [
- -84.97816,
- 38.51575
- ],
- [
- -84.99218,
- 38.49471
- ],
- [
- -84.99226,
- 38.49214
- ],
- [
- -84.95469,
- 38.47086
- ],
- [
- -84.95383,
- 38.46938
- ],
- [
- -84.95149,
- 38.46166
- ],
- [
- -84.95136,
- 38.45798
- ],
- [
- -84.96355,
- 38.43844
- ],
- [
- -84.96376,
- 38.43794
- ],
- [
- -84.95917,
- 38.43173
- ],
- [
- -84.95749,
- 38.43005
- ],
- [
- -84.94321,
- 38.42641
- ],
- [
- -84.93882,
- 38.42749
- ],
- [
- -84.9372,
- 38.45283
- ],
- [
- -84.93543,
- 38.45602
- ],
- [
- -84.92632,
- 38.46346
- ],
- [
- -84.9226,
- 38.46457
- ],
- [
- -84.91306,
- 38.46034
- ],
- [
- -84.91196,
- 38.45929
- ],
- [
- -84.90898,
- 38.45123
- ],
- [
- -84.90943,
- 38.44975
- ],
- [
- -84.92806,
- 38.43691
- ],
- [
- -84.92748,
- 38.4333
- ],
- [
- -84.88133,
- 38.4197
- ],
- [
- -84.88054,
- 38.41902
- ],
- [
- -84.89759,
- 38.38316
- ],
- [
- -84.89891,
- 38.37996
- ],
- [
- -84.86692,
- 38.36405
- ],
- [
- -84.86684,
- 38.36218
- ],
- [
- -84.88198,
- 38.3566
- ],
- [
- -84.88437,
- 38.35162
- ],
- [
- -84.89256,
- 38.35529
- ],
- [
- -84.90649,
- 38.37485
- ],
- [
- -84.94563,
- 38.35781
- ],
- [
- -84.99716,
- 38.33537
- ],
- [
- -84.9567,
- 38.33247
- ],
- [
- -84.99875,
- 38.27509
- ],
- [
- -85.00762,
- 38.17587
- ],
- [
- -85.00938,
- 38.17497
- ],
- [
- -85.00479,
- 38.16136
- ],
- [
- -85.00598,
- 38.15819
- ],
- [
- -85.02373,
- 38.1288
- ],
- [
- -85.02257,
- 38.12789
- ],
- [
- -85.03489,
- 38.12114
- ],
- [
- -85.03958,
- 38.11979
- ],
- [
- -85.05148,
- 38.08766
- ],
- [
- -85.05388,
- 38.07769
- ],
- [
- -85.07271,
- 38.05691
- ],
- [
- -85.07745,
- 38.04605
- ],
- [
- -85.11203,
- 38.02576
- ],
- [
- -85.12021,
- 38.02579
- ],
- [
- -85.12321,
- 38.01039
- ],
- [
- -85.1291,
- 37.99998
- ],
- [
- -85.13903,
- 38.00001
- ],
- [
- -85.14077,
- 38.00274
- ],
- [
- -85.15076,
- 37.98917
- ],
- [
- -85.15193,
- 37.98827
- ],
- [
- -85.16301,
- 37.99147
- ],
- [
- -85.16122,
- 38.00008
- ],
- [
- -85.1618,
- 38.00144
- ],
- [
- -85.16882,
- 37.99874
- ],
- [
- -85.17001,
- 37.99421
- ],
- [
- -85.14945,
- 37.89715
- ],
- [
- -85.14714,
- 37.8908
- ],
- [
- -85.13839,
- 37.89168
- ],
- [
- -85.13192,
- 37.9039
- ],
- [
- -85.12544,
- 37.91566
- ],
- [
- -85.10622,
- 37.90926
- ],
- [
- -85.10747,
- 37.8934
- ],
- [
- -85.09758,
- 37.88974
- ],
- [
- -85.09409,
- 37.88792
- ],
- [
- -85.03458,
- 37.89224
- ],
- [
- -85.0305,
- 37.89177
- ],
- [
- -85.03114,
- 37.88316
- ],
- [
- -85.03115,
- 37.8818
- ],
- [
- -85.01031,
- 37.85951
- ],
- [
- -85.00043,
- 37.85448
- ],
- [
- -85.0029,
- 37.8341
- ],
- [
- -85.00872,
- 37.83503
- ],
- [
- -85.01175,
- 37.81736
- ],
- [
- -85.00594,
- 37.81643
- ],
- [
- -85.02984,
- 37.63114
- ],
- [
- -85.03909,
- 37.54505
- ],
- [
- -85.0425,
- 37.46074
- ],
- [
- -85.04454,
- 37.41225
- ],
- [
- -85.0648,
- 37.4164
- ],
- [
- -85.07234,
- 37.41462
- ],
- [
- -85.0799,
- 37.40875
- ],
- [
- -85.08343,
- 37.39924
- ],
- [
- -85.09561,
- 37.39883
- ],
- [
- -85.10605,
- 37.3975
- ],
- [
- -85.12001,
- 37.38485
- ],
- [
- -85.12812,
- 37.38578
- ],
- [
- -85.13111,
- 37.3663
- ],
- [
- -85.13229,
- 37.36041
- ],
- [
- -85.15681,
- 37.31832
- ],
- [
- -85.16495,
- 37.31064
- ],
- [
- -85.1107,
- 37.28146
- ],
- [
- -85.05648,
- 37.2568
- ],
- [
- -85.05337,
- 37.19694
- ],
- [
- -85.04304,
- 37.18602
- ],
- [
- -85.08958,
- 37.12544
- ],
- [
- -85.1656,
- 37.03364
- ],
- [
- -85.20264,
- 37.00018
- ],
- [
- -85.20553,
- 36.99702
- ],
- [
- -85.21078,
- 36.98116
- ],
- [
- -85.23229,
- 36.92544
- ],
- [
- -85.25013,
- 36.92639
- ],
- [
- -85.4516,
- 36.93842
- ],
- [
- -85.47465,
- 36.89399
- ],
- [
- -85.49997,
- 36.87359
- ],
- [
- -85.50745,
- 36.8677
- ],
- [
- -85.53678,
- 36.8627
- ],
- [
- -85.56035,
- 36.85136
- ],
- [
- -85.57532,
- 36.8645
- ],
- [
- -85.57993,
- 36.86858
- ],
- [
- -85.60121,
- 36.87174
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "KyFromAbove",
- "url": "https://kyfromabove.ky.gov/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "US",
- "description": "6-inch aerial imagery captured in 2019 through the Kentucky Aerial Photography and Elevation Data Program (KyFromAbove) and published by the Kentucky Division of Geographic Information (DGI).",
- "end_date": "2019",
- "id": "KYAPED_2019_6in",
- "license_url": "https://kygeonet.ky.gov/kyfromabove/pdfs/KyFromAboveDistributionPolicy.pdf",
- "max_zoom": 20,
- "min_zoom": 2,
- "name": "KyFromAbove 2019 6in",
- "permission_osm": "implicit",
- "privacy_policy_url": "https://kentucky.gov/policies/Pages/default.aspx",
- "start_date": "2019",
- "type": "wms",
- "url": "https://kyraster.ky.gov/arcgis/services/ImageServices/Ky_KYAPED_2019_6IN_WGS84WM/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -72.13569,
- 42.03025
- ],
- [
- -72.53156,
- 42.03458
- ],
- [
- -72.57278,
- 42.03022
- ],
- [
- -72.58216,
- 42.02474
- ],
- [
- -72.60717,
- 42.02515
- ],
- [
- -72.60797,
- 42.03108
- ],
- [
- -72.64019,
- 42.03205
- ],
- [
- -72.69933,
- 42.03696
- ],
- [
- -72.75714,
- 42.03635
- ],
- [
- -72.75868,
- 42.02439
- ],
- [
- -72.76572,
- 42.02276
- ],
- [
- -72.76673,
- 42.00327
- ],
- [
- -72.81705,
- 41.99769
- ],
- [
- -72.81378,
- 42.03674
- ],
- [
- -73.03678,
- 42.03929
- ],
- [
- -73.43281,
- 42.05059
- ],
- [
- -73.49688,
- 42.04968
- ],
- [
- -73.50814,
- 42.08626
- ],
- [
- -73.26496,
- 42.74594
- ],
- [
- -72.6872,
- 42.73348
- ],
- [
- -71.97286,
- 42.71307
- ],
- [
- -71.69663,
- 42.70572
- ],
- [
- -71.29464,
- 42.69704
- ],
- [
- -71.27894,
- 42.71136
- ],
- [
- -71.26787,
- 42.72603
- ],
- [
- -71.25526,
- 42.73659
- ],
- [
- -71.24598,
- 42.74231
- ],
- [
- -71.23732,
- 42.74491
- ],
- [
- -71.22391,
- 42.74643
- ],
- [
- -71.18181,
- 42.73732
- ],
- [
- -71.18617,
- 42.79088
- ],
- [
- -71.16667,
- 42.80891
- ],
- [
- -71.13277,
- 42.82145
- ],
- [
- -71.06442,
- 42.80626
- ],
- [
- -71.05395,
- 42.83337
- ],
- [
- -71.04483,
- 42.84869
- ],
- [
- -71.03128,
- 42.85924
- ],
- [
- -70.96702,
- 42.86887
- ],
- [
- -70.94967,
- 42.87588
- ],
- [
- -70.92973,
- 42.88504
- ],
- [
- -70.91465,
- 42.88661
- ],
- [
- -70.90348,
- 42.88671
- ],
- [
- -70.88566,
- 42.88288
- ],
- [
- -70.84776,
- 42.86088
- ],
- [
- -70.82963,
- 42.86875
- ],
- [
- -70.81567,
- 42.87204
- ],
- [
- -70.45842,
- 42.67694
- ],
- [
- -70.8759,
- 42.35302
- ],
- [
- -69.88713,
- 42.0519
- ],
- [
- -69.89537,
- 41.21643
- ],
- [
- -70.81959,
- 41.23192
- ],
- [
- -71.09996,
- 41.43386
- ],
- [
- -71.12047,
- 41.49717
- ],
- [
- -71.13131,
- 41.59231
- ],
- [
- -71.14059,
- 41.6051
- ],
- [
- -71.14047,
- 41.62389
- ],
- [
- -71.13569,
- 41.6284
- ],
- [
- -71.13291,
- 41.6601
- ],
- [
- -71.17605,
- 41.6681
- ],
- [
- -71.17588,
- 41.67154
- ],
- [
- -71.1954,
- 41.67514
- ],
- [
- -71.26139,
- 41.7523
- ],
- [
- -71.32885,
- 41.7811
- ],
- [
- -71.33407,
- 41.79455
- ],
- [
- -71.34156,
- 41.79817
- ],
- [
- -71.33914,
- 41.80842
- ],
- [
- -71.3472,
- 41.8231
- ],
- [
- -71.3449,
- 41.828
- ],
- [
- -71.3352,
- 41.8355
- ],
- [
- -71.3422,
- 41.8448
- ],
- [
- -71.33392,
- 41.86229
- ],
- [
- -71.34086,
- 41.87872
- ],
- [
- -71.33865,
- 41.89865
- ],
- [
- -71.38174,
- 41.8932
- ],
- [
- -71.38127,
- 42.01885
- ],
- [
- -71.49744,
- 42.01725
- ],
- [
- -71.52888,
- 42.01499
- ],
- [
- -71.79925,
- 42.00807
- ],
- [
- -71.80067,
- 42.02351
- ],
- [
- -72.0635,
- 42.02735
- ],
- [
- -72.13569,
- 42.03025
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "US",
- "id": "MassGIS-L3-Parcels",
- "max_zoom": 20,
- "min_zoom": 15,
- "name": "MassGIS L3 Parcels",
- "overlay": true,
- "type": "tms",
- "url": "https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/MassGIS_Level3_Parcels/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -76.23413,
- 37.92037
- ],
- [
- -76.59805,
- 38.15832
- ],
- [
- -76.94,
- 38.27053
- ],
- [
- -77.03819,
- 38.41379
- ],
- [
- -77.23526,
- 38.33627
- ],
- [
- -77.31216,
- 38.41056
- ],
- [
- -77.26273,
- 38.56642
- ],
- [
- -77.043,
- 38.71338
- ],
- [
- -77.04987,
- 38.7937
- ],
- [
- -76.92627,
- 38.8925
- ],
- [
- -77.04094,
- 38.9845
- ],
- [
- -77.12162,
- 38.92523
- ],
- [
- -77.15012,
- 38.95514
- ],
- [
- -77.25243,
- 38.97543
- ],
- [
- -77.25929,
- 39.02425
- ],
- [
- -77.34581,
- 39.05492
- ],
- [
- -77.46185,
- 39.07038
- ],
- [
- -77.53738,
- 39.13965
- ],
- [
- -77.47421,
- 39.22481
- ],
- [
- -77.57275,
- 39.30428
- ],
- [
- -77.72347,
- 39.32899
- ],
- [
- -77.77702,
- 39.46323
- ],
- [
- -77.86148,
- 39.51622
- ],
- [
- -77.84088,
- 39.60886
- ],
- [
- -77.95624,
- 39.59299
- ],
- [
- -78.16635,
- 39.69556
- ],
- [
- -78.27003,
- 39.62156
- ],
- [
- -78.3387,
- 39.64007
- ],
- [
- -78.46641,
- 39.52364
- ],
- [
- -78.6628,
- 39.54006
- ],
- [
- -78.79875,
- 39.60622
- ],
- [
- -78.9814,
- 39.4468
- ],
- [
- -79.06723,
- 39.47649
- ],
- [
- -79.48505,
- 39.19954
- ],
- [
- -79.48557,
- 39.72158
- ],
- [
- -75.78836,
- 39.72181
- ],
- [
- -75.69099,
- 38.46058
- ],
- [
- -75.04924,
- 38.45816
- ],
- [
- -75.04984,
- 38.40222
- ],
- [
- -75.08151,
- 38.32321
- ],
- [
- -75.09773,
- 38.30907
- ],
- [
- -75.187,
- 38.09755
- ],
- [
- -75.23798,
- 38.0224
- ],
- [
- -75.61821,
- 37.98967
- ],
- [
- -75.86369,
- 37.90953
- ],
- [
- -76.23413,
- 37.92037
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "DoIT, MD iMap, MDP",
- "url": "http://imap.maryland.gov/Pages/imagery-products.aspx"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:2248",
- "EPSG:102685",
- "EPSG:26985",
- "EPSG:3857"
- ],
- "country_code": "US",
- "description": "Six Inch resolution aerial imagery for the State of Maryland",
- "end_date": "2016",
- "id": "geodata.md.gov-MD_SixInchImagery",
- "max_zoom": 20,
- "name": "MD Latest 6 Inch Aerial Imagery",
- "start_date": "2013",
- "type": "wms",
- "url": "https://geodata.md.gov/imap/services/Imagery/MD_SixInchImagery/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=MD_SixInchImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -76.46299,
- 38.9808
- ],
- [
- -76.46326,
- 38.94779
- ],
- [
- -76.49499,
- 38.9369
- ],
- [
- -76.51617,
- 38.93697
- ],
- [
- -76.54763,
- 38.9591
- ],
- [
- -76.54745,
- 38.98667
- ],
- [
- -76.51559,
- 39.00306
- ],
- [
- -76.4839,
- 39.00292
- ],
- [
- -76.46299,
- 38.9808
- ]
- ],
- [
- [
- -76.09548,
- 38.84133
- ],
- [
- -76.0428,
- 38.8409
- ],
- [
- -76.04289,
- 38.8298
- ],
- [
- -76.03229,
- 38.8297
- ],
- [
- -76.03277,
- 38.79667
- ],
- [
- -76.02545,
- 38.79664
- ],
- [
- -76.02541,
- 38.77462
- ],
- [
- -76.03308,
- 38.77472
- ],
- [
- -76.03366,
- 38.73073
- ],
- [
- -76.05462,
- 38.73094
- ],
- [
- -76.0548,
- 38.72005
- ],
- [
- -76.10753,
- 38.72043
- ],
- [
- -76.10714,
- 38.75338
- ],
- [
- -76.11754,
- 38.75346
- ],
- [
- -76.11701,
- 38.79731
- ],
- [
- -76.09601,
- 38.79715
- ],
- [
- -76.09548,
- 38.84133
- ]
- ],
- [
- [
- -77.23397,
- 39.16838
- ],
- [
- -77.25516,
- 39.14647
- ],
- [
- -77.25496,
- 39.11343
- ],
- [
- -77.18093,
- 39.05337
- ],
- [
- -77.14907,
- 39.0477
- ],
- [
- -77.12798,
- 39.04779
- ],
- [
- -77.10683,
- 39.05325
- ],
- [
- -77.10688,
- 39.0917
- ],
- [
- -77.11775,
- 39.10827
- ],
- [
- -77.16011,
- 39.12485
- ],
- [
- -77.15975,
- 39.15214
- ],
- [
- -77.17048,
- 39.16302
- ],
- [
- -77.21284,
- 39.17272
- ],
- [
- -77.23397,
- 39.16838
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "DoIT, MD iMap, MDP",
- "url": "http://imap.maryland.gov/Pages/imagery-products.aspx"
- },
- "available_projections": [
- "EPSG:2248",
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:26985"
- ],
- "country_code": "US",
- "description": "Three Inch Resolution Imagery for the cities of Rockville, Gaithersburg and Annapolis",
- "id": "geodata.md.gov-MD_ThreeInchImagery",
- "max_zoom": 20,
- "name": "MD Three Inch Aerial Imagery",
- "type": "wms",
- "url": "https://geodata.md.gov/imap/services/Imagery/MD_ThreeInchImagery/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=MD_ThreeInchImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -76.23413,
- 37.92037
- ],
- [
- -76.59805,
- 38.15832
- ],
- [
- -76.94,
- 38.27053
- ],
- [
- -77.03819,
- 38.41379
- ],
- [
- -77.23526,
- 38.33627
- ],
- [
- -77.31216,
- 38.41056
- ],
- [
- -77.26273,
- 38.56642
- ],
- [
- -77.043,
- 38.71338
- ],
- [
- -77.04987,
- 38.7937
- ],
- [
- -76.92627,
- 38.8925
- ],
- [
- -77.04094,
- 38.9845
- ],
- [
- -77.12162,
- 38.92523
- ],
- [
- -77.15012,
- 38.95514
- ],
- [
- -77.25243,
- 38.97543
- ],
- [
- -77.25929,
- 39.02425
- ],
- [
- -77.34581,
- 39.05492
- ],
- [
- -77.46185,
- 39.07038
- ],
- [
- -77.53738,
- 39.13965
- ],
- [
- -77.47421,
- 39.22481
- ],
- [
- -77.57275,
- 39.30428
- ],
- [
- -77.72347,
- 39.32899
- ],
- [
- -77.77702,
- 39.46323
- ],
- [
- -77.86148,
- 39.51622
- ],
- [
- -77.84088,
- 39.60886
- ],
- [
- -77.95624,
- 39.59299
- ],
- [
- -78.16635,
- 39.69556
- ],
- [
- -78.27003,
- 39.62156
- ],
- [
- -78.3387,
- 39.64007
- ],
- [
- -78.46641,
- 39.52364
- ],
- [
- -78.6628,
- 39.54006
- ],
- [
- -78.79875,
- 39.60622
- ],
- [
- -78.9814,
- 39.4468
- ],
- [
- -79.06723,
- 39.47649
- ],
- [
- -79.48505,
- 39.19954
- ],
- [
- -79.48557,
- 39.72158
- ],
- [
- -75.78836,
- 39.72181
- ],
- [
- -75.69099,
- 38.46058
- ],
- [
- -75.04924,
- 38.45816
- ],
- [
- -75.04984,
- 38.40222
- ],
- [
- -75.08151,
- 38.32321
- ],
- [
- -75.09773,
- 38.30907
- ],
- [
- -75.187,
- 38.09755
- ],
- [
- -75.23798,
- 38.0224
- ],
- [
- -75.61821,
- 37.98967
- ],
- [
- -75.86369,
- 37.90953
- ],
- [
- -76.23413,
- 37.92037
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "DoIT, MD iMap, MDP",
- "url": "http://imap.maryland.gov/Pages/imagery-products.aspx"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:102685",
- "EPSG:26985",
- "EPSG:2248"
- ],
- "country_code": "US",
- "description": "Maryland State Highway Administration road features and additional Maryland focused landmarks",
- "id": "geodata.md.gov-MD_ColorBasemap",
- "name": "MD Transportation Basemap",
- "type": "wms",
- "url": "https://geodata.md.gov/imap/services/Transportation/MD_ColorBasemap/MapServer/WmsServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=MD_ColorBasemap&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -93.32967,
- 44.79107
- ],
- [
- -93.32964,
- 44.63037
- ],
- [
- -93.28189,
- 44.63074
- ],
- [
- -93.28169,
- 44.47194
- ],
- [
- -93.28176,
- 44.47137
- ],
- [
- -93.0395,
- 44.47103
- ],
- [
- -93.03924,
- 44.51125
- ],
- [
- -92.91932,
- 44.51049
- ],
- [
- -92.91899,
- 44.54325
- ],
- [
- -92.79268,
- 44.54324
- ],
- [
- -92.7926,
- 44.62971
- ],
- [
- -92.73207,
- 44.62948
- ],
- [
- -92.73122,
- 44.71411
- ],
- [
- -92.80342,
- 44.74652
- ],
- [
- -92.82767,
- 44.75056
- ],
- [
- -92.85209,
- 44.74695
- ],
- [
- -92.85959,
- 44.75359
- ],
- [
- -92.87724,
- 44.77283
- ],
- [
- -92.88149,
- 44.77492
- ],
- [
- -92.9049,
- 44.77408
- ],
- [
- -92.92808,
- 44.78111
- ],
- [
- -92.93969,
- 44.77563
- ],
- [
- -92.94843,
- 44.76786
- ],
- [
- -92.95859,
- 44.76724
- ],
- [
- -92.98604,
- 44.77501
- ],
- [
- -92.99291,
- 44.77517
- ],
- [
- -93.00306,
- 44.77206
- ],
- [
- -93.01685,
- 44.77635
- ],
- [
- -93.02153,
- 44.79431
- ],
- [
- -93.00523,
- 44.81541
- ],
- [
- -93.0119,
- 44.83657
- ],
- [
- -93.00859,
- 44.85652
- ],
- [
- -93.01041,
- 44.86586
- ],
- [
- -93.02074,
- 44.89279
- ],
- [
- -93.0309,
- 44.8967
- ],
- [
- -93.04083,
- 44.90391
- ],
- [
- -93.04445,
- 44.91514
- ],
- [
- -93.04725,
- 44.9195
- ],
- [
- -93.04724,
- 44.92318
- ],
- [
- -93.12863,
- 44.92335
- ],
- [
- -93.12882,
- 44.91965
- ],
- [
- -93.13257,
- 44.91243
- ],
- [
- -93.1641,
- 44.89048
- ],
- [
- -93.18289,
- 44.8872
- ],
- [
- -93.20075,
- 44.86486
- ],
- [
- -93.20325,
- 44.85263
- ],
- [
- -93.22179,
- 44.83825
- ],
- [
- -93.25188,
- 44.81146
- ],
- [
- -93.28177,
- 44.80611
- ],
- [
- -93.30453,
- 44.7945
- ],
- [
- -93.32645,
- 44.79245
- ],
- [
- -93.32961,
- 44.79107
- ],
- [
- -93.32967,
- 44.79107
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Dakota County GIS",
- "url": "https://dakotacounty.us"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:26915"
- ],
- "country_code": "US",
- "end_date": "2017",
- "icon": "https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png",
- "id": "DCGIS-County-Imagery-2017-Fall-Leaf-Off-6-Inch",
- "license_url": "https://www.co.dakota.mn.us/HomeProperty/MappingServices/GISData/Pages/default.aspx",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Dakota County GIS 2017 Fall Leaf-Off 6-Inch",
- "privacy_policy_url": "https://www.co.dakota.mn.us/Policies/Pages/default.aspx",
- "start_date": "2017",
- "type": "wms",
- "url": "https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2017AirPhotoLeafOff6Inch/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=2017AirPhotoLeafOff6Inch:None&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -93.32967,
- 44.79107
- ],
- [
- -93.32964,
- 44.63037
- ],
- [
- -93.28189,
- 44.63074
- ],
- [
- -93.28169,
- 44.47194
- ],
- [
- -93.28176,
- 44.47137
- ],
- [
- -93.0395,
- 44.47103
- ],
- [
- -93.03924,
- 44.51125
- ],
- [
- -92.91932,
- 44.51049
- ],
- [
- -92.91899,
- 44.54325
- ],
- [
- -92.79268,
- 44.54324
- ],
- [
- -92.7926,
- 44.62971
- ],
- [
- -92.73207,
- 44.62948
- ],
- [
- -92.73122,
- 44.71411
- ],
- [
- -92.80342,
- 44.74652
- ],
- [
- -92.82767,
- 44.75056
- ],
- [
- -92.85209,
- 44.74695
- ],
- [
- -92.85959,
- 44.75359
- ],
- [
- -92.87724,
- 44.77283
- ],
- [
- -92.88149,
- 44.77492
- ],
- [
- -92.9049,
- 44.77408
- ],
- [
- -92.92808,
- 44.78111
- ],
- [
- -92.93969,
- 44.77563
- ],
- [
- -92.94843,
- 44.76786
- ],
- [
- -92.95859,
- 44.76724
- ],
- [
- -92.98604,
- 44.77501
- ],
- [
- -92.99291,
- 44.77517
- ],
- [
- -93.00306,
- 44.77206
- ],
- [
- -93.01685,
- 44.77635
- ],
- [
- -93.02153,
- 44.79431
- ],
- [
- -93.00523,
- 44.81541
- ],
- [
- -93.0119,
- 44.83657
- ],
- [
- -93.00859,
- 44.85652
- ],
- [
- -93.01041,
- 44.86586
- ],
- [
- -93.02074,
- 44.89279
- ],
- [
- -93.0309,
- 44.8967
- ],
- [
- -93.04083,
- 44.90391
- ],
- [
- -93.04445,
- 44.91514
- ],
- [
- -93.04725,
- 44.9195
- ],
- [
- -93.04724,
- 44.92318
- ],
- [
- -93.12863,
- 44.92335
- ],
- [
- -93.12882,
- 44.91965
- ],
- [
- -93.13257,
- 44.91243
- ],
- [
- -93.1641,
- 44.89048
- ],
- [
- -93.18289,
- 44.8872
- ],
- [
- -93.20075,
- 44.86486
- ],
- [
- -93.20325,
- 44.85263
- ],
- [
- -93.22179,
- 44.83825
- ],
- [
- -93.25188,
- 44.81146
- ],
- [
- -93.28177,
- 44.80611
- ],
- [
- -93.30453,
- 44.7945
- ],
- [
- -93.32645,
- 44.79245
- ],
- [
- -93.32961,
- 44.79107
- ],
- [
- -93.32967,
- 44.79107
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Dakota County GIS",
- "url": "https://dakotacounty.us"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:26915",
- "EPSG:103726"
- ],
- "country_code": "US",
- "end_date": "2019",
- "icon": "https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png",
- "id": "DCGIS-County-Imagery-2019-Spring-Leaf-Off-6-Inch",
- "license_url": "https://www.co.dakota.mn.us/HomeProperty/MappingServices/GISData/Pages/default.aspx",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Dakota County GIS 2019 Spring Leaf-Off 6-Inch",
- "privacy_policy_url": "https://www.co.dakota.mn.us/Policies/Pages/default.aspx",
- "start_date": "2019",
- "type": "wms",
- "url": "https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2019AirPhotoLeafOff6Inch_Spring/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=2019AirPhotoLeafOff6Inch_Spring:default&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -97.17831,
- 48.87603
- ],
- [
- -97.1904,
- 48.81522
- ],
- [
- -97.15809,
- 48.81035
- ],
- [
- -97.18153,
- 48.79821
- ],
- [
- -97.08987,
- 48.68402
- ],
- [
- -97.17544,
- 48.56222
- ],
- [
- -97.13912,
- 48.55541
- ],
- [
- -97.16595,
- 48.54825
- ],
- [
- -97.12678,
- 48.5202
- ],
- [
- -97.16268,
- 48.47779
- ],
- [
- -97.12817,
- 48.47437
- ],
- [
- -97.15064,
- 48.44082
- ],
- [
- -97.12483,
- 48.4419
- ],
- [
- -97.14588,
- 48.43116
- ],
- [
- -97.12259,
- 48.41793
- ],
- [
- -97.15398,
- 48.41814
- ],
- [
- -97.13118,
- 48.40729
- ],
- [
- -97.16339,
- 48.39287
- ],
- [
- -97.13335,
- 48.38221
- ],
- [
- -97.15627,
- 48.36559
- ],
- [
- -97.11224,
- 48.29648
- ],
- [
- -97.14504,
- 48.26877
- ],
- [
- -97.1207,
- 48.22476
- ],
- [
- -97.12452,
- 48.22318
- ],
- [
- -97.1372,
- 48.22696
- ],
- [
- -97.14967,
- 48.22316
- ],
- [
- -97.1522,
- 48.21964
- ],
- [
- -97.13907,
- 48.22196
- ],
- [
- -97.12289,
- 48.2165
- ],
- [
- -97.11785,
- 48.20974
- ],
- [
- -97.13931,
- 48.21676
- ],
- [
- -97.12929,
- 48.20839
- ],
- [
- -97.14752,
- 48.17058
- ],
- [
- -97.12098,
- 48.15956
- ],
- [
- -97.14652,
- 48.14223
- ],
- [
- -97.07227,
- 48.04808
- ],
- [
- -97.02317,
- 47.87399
- ],
- [
- -96.97416,
- 47.82335
- ],
- [
- -96.99169,
- 47.80842
- ],
- [
- -96.93499,
- 47.76706
- ],
- [
- -96.93113,
- 47.7154
- ],
- [
- -96.85096,
- 47.5983
- ],
- [
- -96.87184,
- 47.41882
- ],
- [
- -96.8376,
- 47.38899
- ],
- [
- -96.85847,
- 47.36769
- ],
- [
- -96.829,
- 47.32762
- ],
- [
- -96.84488,
- 47.19282
- ],
- [
- -96.82192,
- 47.18425
- ],
- [
- -96.84147,
- 47.15185
- ],
- [
- -96.81257,
- 47.03859
- ],
- [
- -96.83956,
- 47.00674
- ],
- [
- -96.79177,
- 46.92847
- ],
- [
- -96.75327,
- 46.92457
- ],
- [
- -96.80255,
- 46.81153
- ],
- [
- -96.77546,
- 46.76676
- ],
- [
- -96.79821,
- 46.62933
- ],
- [
- -96.74722,
- 46.58235
- ],
- [
- -96.72201,
- 46.43999
- ],
- [
- -96.59961,
- 46.33014
- ],
- [
- -96.59269,
- 46.17522
- ],
- [
- -96.55452,
- 46.08399
- ],
- [
- -96.58118,
- 45.82302
- ],
- [
- -96.6626,
- 45.73869
- ],
- [
- -96.83866,
- 45.64752
- ],
- [
- -96.85776,
- 45.60597
- ],
- [
- -96.69255,
- 45.41735
- ],
- [
- -96.5218,
- 45.37565
- ],
- [
- -96.45314,
- 45.30079
- ],
- [
- -96.45306,
- 43.50038
- ],
- [
- -93.84857,
- 43.49963
- ],
- [
- -91.21772,
- 43.50064
- ],
- [
- -91.23187,
- 43.58183
- ],
- [
- -91.26899,
- 43.61659
- ],
- [
- -91.24414,
- 43.77468
- ],
- [
- -91.43253,
- 43.99684
- ],
- [
- -91.59208,
- 44.03138
- ],
- [
- -91.72156,
- 44.13035
- ],
- [
- -91.87517,
- 44.20058
- ],
- [
- -91.91863,
- 44.32268
- ],
- [
- -91.96682,
- 44.36399
- ],
- [
- -92.23086,
- 44.4445
- ],
- [
- -92.33612,
- 44.55401
- ],
- [
- -92.54807,
- 44.5678
- ],
- [
- -92.56944,
- 44.60355
- ],
- [
- -92.62148,
- 44.61505
- ],
- [
- -92.63211,
- 44.64904
- ],
- [
- -92.80786,
- 44.75085
- ],
- [
- -92.75065,
- 44.93731
- ],
- [
- -92.76207,
- 45.02433
- ],
- [
- -92.80313,
- 45.06157
- ],
- [
- -92.74092,
- 45.11296
- ],
- [
- -92.76188,
- 45.28702
- ],
- [
- -92.65043,
- 45.39852
- ],
- [
- -92.64651,
- 45.44035
- ],
- [
- -92.7456,
- 45.55302
- ],
- [
- -92.88376,
- 45.57549
- ],
- [
- -92.8692,
- 45.71758
- ],
- [
- -92.78463,
- 45.7642
- ],
- [
- -92.70771,
- 45.89491
- ],
- [
- -92.55194,
- 45.95166
- ],
- [
- -92.52519,
- 45.98387
- ],
- [
- -92.46936,
- 45.97382
- ],
- [
- -92.42856,
- 46.02425
- ],
- [
- -92.35177,
- 46.01569
- ],
- [
- -92.33292,
- 46.06271
- ],
- [
- -92.29404,
- 46.07439
- ],
- [
- -92.2913,
- 46.66815
- ],
- [
- -92.2071,
- 46.65195
- ],
- [
- -92.1761,
- 46.68635
- ],
- [
- -92.2047,
- 46.70405
- ],
- [
- -92.1463,
- 46.71595
- ],
- [
- -92.1166,
- 46.74865
- ],
- [
- -92.01631,
- 46.70598
- ],
- [
- -92.08868,
- 46.79367
- ],
- [
- -91.7799,
- 46.94341
- ],
- [
- -91.57352,
- 47.09003
- ],
- [
- -91.46563,
- 47.13124
- ],
- [
- -91.04681,
- 47.45632
- ],
- [
- -90.7776,
- 47.60573
- ],
- [
- -90.43711,
- 47.73164
- ],
- [
- -89.97463,
- 47.83056
- ],
- [
- -89.75663,
- 47.9041
- ],
- [
- -89.68041,
- 47.96408
- ],
- [
- -89.63918,
- 47.95373
- ],
- [
- -89.62363,
- 47.99464
- ],
- [
- -89.57027,
- 47.98571
- ],
- [
- -89.49176,
- 48.00536
- ],
- [
- -89.5698,
- 47.99899
- ],
- [
- -89.61071,
- 48.01786
- ],
- [
- -89.65088,
- 48.00354
- ],
- [
- -89.77537,
- 48.02279
- ],
- [
- -89.89721,
- 47.98751
- ],
- [
- -89.99383,
- 48.02802
- ],
- [
- -90.02334,
- 48.08468
- ],
- [
- -90.13579,
- 48.11215
- ],
- [
- -90.3743,
- 48.09092
- ],
- [
- -90.4674,
- 48.10875
- ],
- [
- -90.55671,
- 48.09594
- ],
- [
- -90.57969,
- 48.12381
- ],
- [
- -90.75159,
- 48.091
- ],
- [
- -90.79823,
- 48.1369
- ],
- [
- -90.77794,
- 48.16385
- ],
- [
- -90.83641,
- 48.17704
- ],
- [
- -90.8393,
- 48.23957
- ],
- [
- -90.88576,
- 48.24596
- ],
- [
- -91.08248,
- 48.18116
- ],
- [
- -91.26678,
- 48.07884
- ],
- [
- -91.42958,
- 48.04866
- ],
- [
- -91.48819,
- 48.06839
- ],
- [
- -91.56752,
- 48.0438
- ],
- [
- -91.55912,
- 48.1086
- ],
- [
- -91.63993,
- 48.09712
- ],
- [
- -91.68212,
- 48.12251
- ],
- [
- -91.71176,
- 48.11466
- ],
- [
- -91.71537,
- 48.19951
- ],
- [
- -91.86437,
- 48.20696
- ],
- [
- -91.89311,
- 48.23799
- ],
- [
- -91.95836,
- 48.23314
- ],
- [
- -91.95411,
- 48.25227
- ],
- [
- -92.00653,
- 48.26542
- ],
- [
- -92.00012,
- 48.3211
- ],
- [
- -92.05523,
- 48.35937
- ],
- [
- -92.26256,
- 48.35492
- ],
- [
- -92.30618,
- 48.31625
- ],
- [
- -92.26959,
- 48.24819
- ],
- [
- -92.36992,
- 48.22029
- ],
- [
- -92.46978,
- 48.3521
- ],
- [
- -92.45644,
- 48.41409
- ],
- [
- -92.50748,
- 48.44799
- ],
- [
- -92.65623,
- 48.43648
- ],
- [
- -92.71269,
- 48.46299
- ],
- [
- -92.69868,
- 48.49485
- ],
- [
- -92.62702,
- 48.50328
- ],
- [
- -92.63489,
- 48.54256
- ],
- [
- -92.72842,
- 48.53938
- ],
- [
- -92.95002,
- 48.60835
- ],
- [
- -92.9548,
- 48.63154
- ],
- [
- -93.17839,
- 48.62301
- ],
- [
- -93.25466,
- 48.64282
- ],
- [
- -93.46548,
- 48.59164
- ],
- [
- -93.46739,
- 48.54646
- ],
- [
- -93.79338,
- 48.51632
- ],
- [
- -93.84436,
- 48.63022
- ],
- [
- -94.22422,
- 48.64947
- ],
- [
- -94.29121,
- 48.70782
- ],
- [
- -94.41584,
- 48.71098
- ],
- [
- -94.45239,
- 48.69241
- ],
- [
- -94.64538,
- 48.74403
- ],
- [
- -94.69441,
- 48.78945
- ],
- [
- -94.68347,
- 48.88413
- ],
- [
- -94.81627,
- 49.32141
- ],
- [
- -94.9574,
- 49.37021
- ],
- [
- -95.05831,
- 49.35326
- ],
- [
- -95.1534,
- 49.38449
- ],
- [
- -95.1532,
- 48.99888
- ],
- [
- -97.22956,
- 49.00046
- ],
- [
- -97.23421,
- 48.94739
- ],
- [
- -97.17831,
- 48.87603
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "MnGeo",
- "url": "https://www.mngeo.state.mn.us/chouse/wms/composite_image.html"
- },
- "available_projections": [
- "EPSG:26915"
- ],
- "country_code": "US",
- "end_date": "2017",
- "icon": "https://gisdata.mn.gov/agencyLogos/mnLogo.jpg",
- "id": "Minnesota-Composite-Image-Service",
- "license_url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_mngeo/base_mn_composite_image_service/metadata/metadata.html",
- "max_zoom": 20,
- "min_zoom": 5,
- "name": "Minnesota Composite Image Service",
- "privacy_policy_url": "https://www.co.dakota.mn.us/Policies/Pages/default.aspx",
- "start_date": "2008",
- "type": "wms",
- "url": "https://imageserver.gisdata.mn.gov/cgi-bin/mncomp?LAYERS=mncomp&FORMAT=image/jpeg&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&SRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -81.6792,
- 36.5974
- ],
- [
- -80.25359,
- 36.54793
- ],
- [
- -75.8409,
- 36.5671
- ],
- [
- -75.4323,
- 35.6441
- ],
- [
- -75.50475,
- 35.18806
- ],
- [
- -75.70525,
- 35.17684
- ],
- [
- -76.14745,
- 34.94077
- ],
- [
- -76.53472,
- 34.55487
- ],
- [
- -76.69676,
- 34.66789
- ],
- [
- -77.27904,
- 34.53224
- ],
- [
- -77.68828,
- 34.26482
- ],
- [
- -77.9435,
- 33.8269
- ],
- [
- -78.21288,
- 33.89402
- ],
- [
- -78.5301,
- 33.8304
- ],
- [
- -79.6693,
- 34.7916
- ],
- [
- -80.8122,
- 34.8085
- ],
- [
- -80.84685,
- 34.96329
- ],
- [
- -80.95122,
- 35.05552
- ],
- [
- -81.06383,
- 35.01729
- ],
- [
- -81.07482,
- 35.13417
- ],
- [
- -82.3632,
- 35.1805
- ],
- [
- -82.9989,
- 34.9919
- ],
- [
- -84.3333,
- 34.9767
- ],
- [
- -84.27184,
- 35.28229
- ],
- [
- -84.09056,
- 35.27332
- ],
- [
- -83.91478,
- 35.53301
- ],
- [
- -83.55498,
- 35.5911
- ],
- [
- -83.2556,
- 35.73392
- ],
- [
- -82.98644,
- 35.81414
- ],
- [
- -82.92327,
- 35.96767
- ],
- [
- -82.67882,
- 36.0854
- ],
- [
- -82.60192,
- 36.08984
- ],
- [
- -82.536,
- 35.96989
- ],
- [
- -82.35472,
- 36.14752
- ],
- [
- -82.04436,
- 36.14309
- ],
- [
- -81.90428,
- 36.33803
- ],
- [
- -81.74224,
- 36.37342
- ],
- [
- -81.6792,
- 36.5974
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "available_projections": [
- "EPSG:2264",
- "EPSG:2264",
- "EPSG:3358",
- "EPSG:3404",
- "EPSG:3631",
- "EPSG:3632",
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:26917",
- "EPSG:32019",
- "EPSG:32119"
- ],
- "country_code": "US",
- "description": "Most recent true color imagery for the state of North Carolina. The imagery has a pixel resolution of 6 inches and is comprised of imagery flown in 2010, 2012, 2013, and 2014",
- "end_date": "2014",
- "id": "NC-US",
- "name": "NC Latest Orthoimagery",
- "start_date": "2010",
- "type": "wms",
- "url": "https://services.nconemap.gov/secure/services/Imagery/Orthoimagery_Latest/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -74.86599,
- 40.08543
- ],
- [
- -74.93534,
- 40.07256
- ],
- [
- -75.05653,
- 40.00868
- ],
- [
- -75.14236,
- 39.95791
- ],
- [
- -75.14456,
- 39.88322
- ],
- [
- -75.18515,
- 39.88042
- ],
- [
- -75.24499,
- 39.85486
- ],
- [
- -75.33339,
- 39.8495
- ],
- [
- -75.41531,
- 39.80156
- ],
- [
- -75.45131,
- 39.78304
- ],
- [
- -75.57744,
- 39.62346
- ],
- [
- -75.54245,
- 39.56827
- ],
- [
- -75.57847,
- 39.48183
- ],
- [
- -74.91678,
- 38.84647
- ],
- [
- -74.31702,
- 39.38739
- ],
- [
- -74.06708,
- 39.75155
- ],
- [
- -73.92141,
- 40.49222
- ],
- [
- -74.2382,
- 40.49378
- ],
- [
- -74.23859,
- 40.54916
- ],
- [
- -74.20211,
- 40.54924
- ],
- [
- -74.20228,
- 40.57648
- ],
- [
- -74.18406,
- 40.57609
- ],
- [
- -74.18436,
- 40.63146
- ],
- [
- -74.07587,
- 40.63078
- ],
- [
- -74.07532,
- 40.64457
- ],
- [
- -74.02124,
- 40.65811
- ],
- [
- -74.02081,
- 40.69919
- ],
- [
- -74.00265,
- 40.69929
- ],
- [
- -74.00247,
- 40.74037
- ],
- [
- -73.98434,
- 40.74026
- ],
- [
- -73.98402,
- 40.78145
- ],
- [
- -73.96591,
- 40.78158
- ],
- [
- -73.96597,
- 40.80868
- ],
- [
- -73.94777,
- 40.80861
- ],
- [
- -73.94769,
- 40.82232
- ],
- [
- -73.92966,
- 40.82225
- ],
- [
- -73.92906,
- 40.86355
- ],
- [
- -73.91104,
- 40.86329
- ],
- [
- -73.91061,
- 40.91838
- ],
- [
- -73.8923,
- 40.91831
- ],
- [
- -73.89215,
- 40.95961
- ],
- [
- -73.87413,
- 40.95942
- ],
- [
- -73.87386,
- 40.99251
- ],
- [
- -74.70601,
- 41.36513
- ],
- [
- -74.75716,
- 41.34769
- ],
- [
- -74.79801,
- 41.32268
- ],
- [
- -74.84024,
- 41.27864
- ],
- [
- -74.90547,
- 41.17038
- ],
- [
- -74.98152,
- 41.1126
- ],
- [
- -75.03902,
- 41.03819
- ],
- [
- -75.13515,
- 40.99441
- ],
- [
- -75.13773,
- 40.97309
- ],
- [
- -75.05705,
- 40.86757
- ],
- [
- -75.06846,
- 40.85037
- ],
- [
- -75.09687,
- 40.85096
- ],
- [
- -75.10099,
- 40.83927
- ],
- [
- -75.09018,
- 40.82238
- ],
- [
- -75.1367,
- 40.77729
- ],
- [
- -75.1724,
- 40.78067
- ],
- [
- -75.19833,
- 40.75389
- ],
- [
- -75.20506,
- 40.69131
- ],
- [
- -75.20373,
- 40.61832
- ],
- [
- -75.19764,
- 40.57367
- ],
- [
- -75.16777,
- 40.55907
- ],
- [
- -75.10237,
- 40.56702
- ],
- [
- -75.06906,
- 40.5365
- ],
- [
- -75.07421,
- 40.45505
- ],
- [
- -75.06134,
- 40.4165
- ],
- [
- -75.02684,
- 40.40252
- ],
- [
- -74.9671,
- 40.3952
- ],
- [
- -74.94461,
- 40.33817
- ],
- [
- -74.86839,
- 40.29157
- ],
- [
- -74.84402,
- 40.24796
- ],
- [
- -74.77552,
- 40.21428
- ],
- [
- -74.76334,
- 40.19172
- ],
- [
- -74.72918,
- 40.16392
- ],
- [
- -74.72609,
- 40.14949
- ],
- [
- -74.78805,
- 40.12468
- ],
- [
- -74.8229,
- 40.13033
- ],
- [
- -74.86599,
- 40.08543
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)",
- "url": "https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D"
- },
- "available_projections": [
- "EPSG:6527",
- "EPSG:3424",
- "EPSG:102711",
- "EPSG:2959",
- "EPSG:3857",
- "EPSG:4269",
- "EPSG:4326",
- "EPSG:3616"
- ],
- "country_code": "US",
- "description": "Digital orthophotography of New Jersey, Near Infrared, 1 foot resolution",
- "end_date": "2015-05-03",
- "id": "img.nj.gov-Infrared2015",
- "max_zoom": 20,
- "name": "NJ 2015 Aerial Imagery (Infrared)",
- "start_date": "2015-03-29",
- "type": "wms",
- "url": "https://img.nj.gov/imagerywms/Infrared2015?FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&WIDTH={width}&HEIGHT={height}&LAYERS=Infrared2015&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -74.86599,
- 40.08543
- ],
- [
- -74.93534,
- 40.07256
- ],
- [
- -75.05653,
- 40.00868
- ],
- [
- -75.14236,
- 39.95791
- ],
- [
- -75.14456,
- 39.88322
- ],
- [
- -75.18515,
- 39.88042
- ],
- [
- -75.24499,
- 39.85486
- ],
- [
- -75.33339,
- 39.8495
- ],
- [
- -75.41531,
- 39.80156
- ],
- [
- -75.45131,
- 39.78304
- ],
- [
- -75.57744,
- 39.62346
- ],
- [
- -75.54245,
- 39.56827
- ],
- [
- -75.57847,
- 39.48183
- ],
- [
- -74.91678,
- 38.84647
- ],
- [
- -74.31702,
- 39.38739
- ],
- [
- -74.06708,
- 39.75155
- ],
- [
- -73.92141,
- 40.49222
- ],
- [
- -74.2382,
- 40.49378
- ],
- [
- -74.23859,
- 40.54916
- ],
- [
- -74.20211,
- 40.54924
- ],
- [
- -74.20228,
- 40.57648
- ],
- [
- -74.18406,
- 40.57609
- ],
- [
- -74.18436,
- 40.63146
- ],
- [
- -74.07587,
- 40.63078
- ],
- [
- -74.07532,
- 40.64457
- ],
- [
- -74.02124,
- 40.65811
- ],
- [
- -74.02081,
- 40.69919
- ],
- [
- -74.00265,
- 40.69929
- ],
- [
- -74.00247,
- 40.74037
- ],
- [
- -73.98434,
- 40.74026
- ],
- [
- -73.98402,
- 40.78145
- ],
- [
- -73.96591,
- 40.78158
- ],
- [
- -73.96597,
- 40.80868
- ],
- [
- -73.94777,
- 40.80861
- ],
- [
- -73.94769,
- 40.82232
- ],
- [
- -73.92966,
- 40.82225
- ],
- [
- -73.92906,
- 40.86355
- ],
- [
- -73.91104,
- 40.86329
- ],
- [
- -73.91061,
- 40.91838
- ],
- [
- -73.8923,
- 40.91831
- ],
- [
- -73.89215,
- 40.95961
- ],
- [
- -73.87413,
- 40.95942
- ],
- [
- -73.87386,
- 40.99251
- ],
- [
- -74.70601,
- 41.36513
- ],
- [
- -74.75716,
- 41.34769
- ],
- [
- -74.79801,
- 41.32268
- ],
- [
- -74.84024,
- 41.27864
- ],
- [
- -74.90547,
- 41.17038
- ],
- [
- -74.98152,
- 41.1126
- ],
- [
- -75.03902,
- 41.03819
- ],
- [
- -75.13515,
- 40.99441
- ],
- [
- -75.13773,
- 40.97309
- ],
- [
- -75.05705,
- 40.86757
- ],
- [
- -75.06846,
- 40.85037
- ],
- [
- -75.09687,
- 40.85096
- ],
- [
- -75.10099,
- 40.83927
- ],
- [
- -75.09018,
- 40.82238
- ],
- [
- -75.1367,
- 40.77729
- ],
- [
- -75.1724,
- 40.78067
- ],
- [
- -75.19833,
- 40.75389
- ],
- [
- -75.20506,
- 40.69131
- ],
- [
- -75.20373,
- 40.61832
- ],
- [
- -75.19764,
- 40.57367
- ],
- [
- -75.16777,
- 40.55907
- ],
- [
- -75.10237,
- 40.56702
- ],
- [
- -75.06906,
- 40.5365
- ],
- [
- -75.07421,
- 40.45505
- ],
- [
- -75.06134,
- 40.4165
- ],
- [
- -75.02684,
- 40.40252
- ],
- [
- -74.9671,
- 40.3952
- ],
- [
- -74.94461,
- 40.33817
- ],
- [
- -74.86839,
- 40.29157
- ],
- [
- -74.84402,
- 40.24796
- ],
- [
- -74.77552,
- 40.21428
- ],
- [
- -74.76334,
- 40.19172
- ],
- [
- -74.72918,
- 40.16392
- ],
- [
- -74.72609,
- 40.14949
- ],
- [
- -74.78805,
- 40.12468
- ],
- [
- -74.8229,
- 40.13033
- ],
- [
- -74.86599,
- 40.08543
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)",
- "url": "https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D"
- },
- "available_projections": [
- "EPSG:6527",
- "EPSG:3424",
- "EPSG:102711",
- "EPSG:2959",
- "EPSG:3857",
- "EPSG:4269",
- "EPSG:4326",
- "EPSG:3616"
- ],
- "country_code": "US",
- "description": "Digital orthophotography of New Jersey, Natural Color, 1 foot resolution",
- "end_date": "2015-05-03",
- "id": "img.nj.gov-Natural2015",
- "max_zoom": 20,
- "name": "NJ 2015 Aerial Imagery (Natural Color)",
- "start_date": "2015-03-29",
- "type": "wms",
- "url": "https://img.nj.gov/imagerywms/Natural2015?FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&WIDTH={width}&HEIGHT={height}&LAYERS=Natural2015&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -74.91231,
- 45.03606
- ],
- [
- -73.47788,
- 45.02996
- ],
- [
- -73.33846,
- 45.03098
- ],
- [
- -73.31978,
- 45.00558
- ],
- [
- -73.32265,
- 44.98525
- ],
- [
- -73.34852,
- 44.9283
- ],
- [
- -73.36721,
- 44.8397
- ],
- [
- -73.34277,
- 44.81727
- ],
- [
- -73.34565,
- 44.77647
- ],
- [
- -73.37296,
- 44.73463
- ],
- [
- -73.37008,
- 44.67946
- ],
- [
- -73.39739,
- 44.64471
- ],
- [
- -73.39308,
- 44.60276
- ],
- [
- -73.39739,
- 44.54543
- ],
- [
- -73.34996,
- 44.51264
- ],
- [
- -73.34565,
- 44.49521
- ],
- [
- -73.37871,
- 44.4706
- ],
- [
- -73.30828,
- 44.43572
- ],
- [
- -73.30397,
- 44.41827
- ],
- [
- -73.33271,
- 44.33917
- ],
- [
- -73.30828,
- 44.27128
- ],
- [
- -73.30828,
- 44.25172
- ],
- [
- -73.38014,
- 44.14868
- ],
- [
- -73.40458,
- 44.04133
- ],
- [
- -73.3399,
- 43.79596
- ],
- [
- -73.28097,
- 43.64222
- ],
- [
- -73.2091,
- 43.54957
- ],
- [
- -73.21342,
- 43.51206
- ],
- [
- -73.24647,
- 42.67557
- ],
- [
- -73.45919,
- 42.14284
- ],
- [
- -73.47069,
- 42.03938
- ],
- [
- -73.48794,
- 41.73764
- ],
- [
- -73.49944,
- 41.64319
- ],
- [
- -73.47788,
- 41.62708
- ],
- [
- -73.43189,
- 41.57979
- ],
- [
- -73.42614,
- 41.56366
- ],
- [
- -73.42685,
- 41.45926
- ],
- [
- -73.43979,
- 41.40322
- ],
- [
- -73.44985,
- 41.38328
- ],
- [
- -73.43835,
- 41.37033
- ],
- [
- -73.42757,
- 41.35901
- ],
- [
- -73.41751,
- 41.3439
- ],
- [
- -73.41895,
- 41.27642
- ],
- [
- -73.43045,
- 41.24455
- ],
- [
- -73.46566,
- 41.19752
- ],
- [
- -73.52962,
- 41.14505
- ],
- [
- -73.55477,
- 41.13368
- ],
- [
- -73.61586,
- 41.13531
- ],
- [
- -73.62664,
- 41.10878
- ],
- [
- -73.62736,
- 41.05407
- ],
- [
- -73.63958,
- 40.99118
- ],
- [
- -73.61873,
- 40.98195
- ],
- [
- -73.59933,
- 40.96568
- ],
- [
- -73.59933,
- 40.93474
- ],
- [
- -73.63455,
- 40.91682
- ],
- [
- -73.68054,
- 40.89183
- ],
- [
- -73.69851,
- 40.87988
- ],
- [
- -73.68629,
- 40.87064
- ],
- [
- -73.66257,
- 40.87934
- ],
- [
- -73.63814,
- 40.90541
- ],
- [
- -73.59789,
- 40.91193
- ],
- [
- -73.57562,
- 40.9179
- ],
- [
- -73.52675,
- 40.92388
- ],
- [
- -73.50159,
- 40.94288
- ],
- [
- -73.4901,
- 40.95374
- ],
- [
- -73.41751,
- 40.96079
- ],
- [
- -73.38374,
- 40.96133
- ],
- [
- -73.33702,
- 40.95591
- ],
- [
- -73.30828,
- 40.93637
- ],
- [
- -73.27091,
- 40.92659
- ],
- [
- -73.2091,
- 40.91953
- ],
- [
- -73.18682,
- 40.92714
- ],
- [
- -73.16814,
- 40.93148
- ],
- [
- -73.16598,
- 40.95971
- ],
- [
- -73.16886,
- 40.97002
- ],
- [
- -73.12933,
- 40.98195
- ],
- [
- -73.10777,
- 40.98195
- ],
- [
- -73.06681,
- 40.9749
- ],
- [
- -72.8584,
- 40.97436
- ],
- [
- -72.71826,
- 40.98195
- ],
- [
- -72.65574,
- 41.00528
- ],
- [
- -72.64424,
- 41.00473
- ],
- [
- -72.62628,
- 40.99226
- ],
- [
- -72.54148,
- 41.03889
- ],
- [
- -72.4768,
- 41.06328
- ],
- [
- -72.45811,
- 41.08928
- ],
- [
- -72.41859,
- 41.09308
- ],
- [
- -72.36612,
- 41.13856
- ],
- [
- -72.36037,
- 41.1418
- ],
- [
- -72.32229,
- 41.15479
- ],
- [
- -72.29067,
- 41.16399
- ],
- [
- -72.21449,
- 41.18238
- ],
- [
- -72.20083,
- 41.19157
- ],
- [
- -72.04848,
- 41.25914
- ],
- [
- -72.02548,
- 41.2937
- ],
- [
- -71.93924,
- 41.30774
- ],
- [
- -71.92343,
- 41.30666
- ],
- [
- -71.90259,
- 41.2991
- ],
- [
- -71.90187,
- 41.28939
- ],
- [
- -71.99458,
- 41.24509
- ],
- [
- -72.10453,
- 41.19806
- ],
- [
- -72.18287,
- 41.16723
- ],
- [
- -72.18934,
- 41.16237
- ],
- [
- -72.25186,
- 41.12232
- ],
- [
- -72.30432,
- 41.10445
- ],
- [
- -72.31582,
- 41.09524
- ],
- [
- -72.27917,
- 41.08441
- ],
- [
- -72.2727,
- 41.08062
- ],
- [
- -72.26839,
- 41.04973
- ],
- [
- -72.21736,
- 41.04811
- ],
- [
- -72.19652,
- 41.04215
- ],
- [
- -72.18646,
- 41.05298
- ],
- [
- -72.17137,
- 41.0584
- ],
- [
- -72.14981,
- 41.05895
- ],
- [
- -72.15628,
- 41.09633
- ],
- [
- -72.15268,
- 41.1077
- ],
- [
- -72.14909,
- 41.14667
- ],
- [
- -72.134,
- 41.14505
- ],
- [
- -72.07076,
- 41.10553
- ],
- [
- -72.07435,
- 41.05678
- ],
- [
- -72.08657,
- 41.03185
- ],
- [
- -72.10957,
- 41.0069
- ],
- [
- -72.08729,
- 41.01287
- ],
- [
- -72.06213,
- 41.02534
- ],
- [
- -72.04561,
- 41.03239
- ],
- [
- -72.01902,
- 41.03293
- ],
- [
- -72.00895,
- 41.04215
- ],
- [
- -72.00177,
- 41.05136
- ],
- [
- -71.96368,
- 41.07737
- ],
- [
- -71.922,
- 41.08874
- ],
- [
- -71.88966,
- 41.08766
- ],
- [
- -71.85588,
- 41.08062
- ],
- [
- -71.84582,
- 41.07466
- ],
- [
- -71.85588,
- 41.05298
- ],
- [
- -71.89038,
- 41.03727
- ],
- [
- -71.91625,
- 41.03022
- ],
- [
- -71.99099,
- 41.00365
- ],
- [
- -72.07938,
- 40.97273
- ],
- [
- -72.31941,
- 40.88205
- ],
- [
- -72.4423,
- 40.8402
- ],
- [
- -72.62771,
- 40.7869
- ],
- [
- -72.76569,
- 40.75043
- ],
- [
- -72.88499,
- 40.71286
- ],
- [
- -72.95973,
- 40.68671
- ],
- [
- -73.03735,
- 40.66
- ],
- [
- -73.08118,
- 40.64855
- ],
- [
- -73.22994,
- 40.61637
- ],
- [
- -73.32193,
- 40.6131
- ],
- [
- -73.35211,
- 40.61855
- ],
- [
- -73.55477,
- 40.56944
- ],
- [
- -73.75959,
- 40.57708
- ],
- [
- -73.88248,
- 40.54815
- ],
- [
- -73.9335,
- 40.53449
- ],
- [
- -73.945,
- 40.53395
- ],
- [
- -73.94572,
- 40.56289
- ],
- [
- -74.08227,
- 40.56234
- ],
- [
- -74.08011,
- 40.54924
- ],
- [
- -74.12251,
- 40.52084
- ],
- [
- -74.15772,
- 40.51373
- ],
- [
- -74.18719,
- 40.50117
- ],
- [
- -74.22887,
- 40.48696
- ],
- [
- -74.26121,
- 40.48532
- ],
- [
- -74.2763,
- 40.4957
- ],
- [
- -74.27918,
- 40.54378
- ],
- [
- -74.26983,
- 40.56671
- ],
- [
- -74.25834,
- 40.57217
- ],
- [
- -74.22528,
- 40.57217
- ],
- [
- -74.226,
- 40.58309
- ],
- [
- -74.25115,
- 40.59564
- ],
- [
- -74.25259,
- 40.62237
- ],
- [
- -74.24324,
- 40.64091
- ],
- [
- -74.2339,
- 40.64909
- ],
- [
- -74.20228,
- 40.654
- ],
- [
- -74.12538,
- 40.65673
- ],
- [
- -74.11532,
- 40.69107
- ],
- [
- -74.09951,
- 40.68998
- ],
- [
- -74.07795,
- 40.71068
- ],
- [
- -74.06286,
- 40.7183
- ],
- [
- -74.05208,
- 40.7439
- ],
- [
- -74.02549,
- 40.79288
- ],
- [
- -73.98094,
- 40.86901
- ],
- [
- -73.96225,
- 40.92551
- ],
- [
- -73.94931,
- 40.96459
- ],
- [
- -73.94644,
- 40.99877
- ],
- [
- -73.98165,
- 41.01612
- ],
- [
- -74.04561,
- 41.04323
- ],
- [
- -74.18072,
- 41.09524
- ],
- [
- -74.30792,
- 41.14938
- ],
- [
- -74.44087,
- 41.21537
- ],
- [
- -74.52783,
- 41.25914
- ],
- [
- -74.61335,
- 41.30234
- ],
- [
- -74.65791,
- 41.31098
- ],
- [
- -74.70246,
- 41.33581
- ],
- [
- -74.76714,
- 41.38975
- ],
- [
- -74.79661,
- 41.41023
- ],
- [
- -74.85338,
- 41.42263
- ],
- [
- -74.90728,
- 41.43179
- ],
- [
- -74.99783,
- 41.47111
- ],
- [
- -75.04167,
- 41.52708
- ],
- [
- -75.08479,
- 41.59323
- ],
- [
- -75.08407,
- 41.61848
- ],
- [
- -75.07329,
- 41.66467
- ],
- [
- -75.08766,
- 41.70278
- ],
- [
- -75.08766,
- 41.71351
- ],
- [
- -75.12144,
- 41.76177
- ],
- [
- -75.11928,
- 41.79232
- ],
- [
- -75.13078,
- 41.81696
- ],
- [
- -75.18755,
- 41.83838
- ],
- [
- -75.25295,
- 41.84962
- ],
- [
- -75.28745,
- 41.85497
- ],
- [
- -75.29823,
- 41.88227
- ],
- [
- -75.30613,
- 41.9304
- ],
- [
- -75.34063,
- 41.94003
- ],
- [
- -75.3665,
- 41.9566
- ],
- [
- -75.37225,
- 41.97744
- ],
- [
- -75.58066,
- 41.97957
- ],
- [
- -75.58137,
- 41.92399
- ],
- [
- -75.78906,
- 41.92666
- ],
- [
- -75.78691,
- 41.98278
- ],
- [
- -79.77687,
- 41.98118
- ],
- [
- -79.7819,
- 42.20994
- ],
- [
- -79.77184,
- 42.28017
- ],
- [
- -79.72153,
- 42.29824
- ],
- [
- -79.57349,
- 42.36731
- ],
- [
- -79.42976,
- 42.46599
- ],
- [
- -79.3737,
- 42.49991
- ],
- [
- -79.25728,
- 42.54546
- ],
- [
- -79.18973,
- 42.5624
- ],
- [
- -79.16529,
- 42.56981
- ],
- [
- -79.12074,
- 42.62483
- ],
- [
- -79.0963,
- 42.64598
- ],
- [
- -79.06899,
- 42.6967
- ],
- [
- -79.03162,
- 42.71043
- ],
- [
- -78.98851,
- 42.72311
- ],
- [
- -78.88358,
- 42.77693
- ],
- [
- -78.88646,
- 42.8149
- ],
- [
- -78.93964,
- 42.88655
- ],
- [
- -78.93964,
- 42.93603
- ],
- [
- -79.04887,
- 42.96969
- ],
- [
- -79.04743,
- 43.05167
- ],
- [
- -79.09343,
- 43.05272
- ],
- [
- -79.09199,
- 43.09262
- ],
- [
- -79.08624,
- 43.26556
- ],
- [
- -79.06468,
- 43.27602
- ],
- [
- -78.84909,
- 43.33041
- ],
- [
- -78.72979,
- 43.35237
- ],
- [
- -78.63924,
- 43.37013
- ],
- [
- -78.54869,
- 43.37953
- ],
- [
- -78.47826,
- 43.38789
- ],
- [
- -77.95508,
- 43.38476
- ],
- [
- -77.73158,
- 43.34714
- ],
- [
- -77.71146,
- 43.34034
- ],
- [
- -77.66259,
- 43.31159
- ],
- [
- -77.61516,
- 43.28387
- ],
- [
- -77.55336,
- 43.253
- ],
- [
- -77.5282,
- 43.25509
- ],
- [
- -77.45634,
- 43.27864
- ],
- [
- -77.42256,
- 43.28492
- ],
- [
- -77.16385,
- 43.29433
- ],
- [
- -77.0503,
- 43.29381
- ],
- [
- -76.94178,
- 43.29329
- ],
- [
- -76.91447,
- 43.30793
- ],
- [
- -76.85051,
- 43.3163
- ],
- [
- -76.80236,
- 43.32832
- ],
- [
- -76.75996,
- 43.35184
- ],
- [
- -76.64785,
- 43.42809
- ],
- [
- -76.54509,
- 43.48026
- ],
- [
- -76.51993,
- 43.49486
- ],
- [
- -76.44304,
- 43.52717
- ],
- [
- -76.4222,
- 43.53811
- ],
- [
- -76.28206,
- 43.53863
- ],
- [
- -76.23822,
- 43.55686
- ],
- [
- -76.24038,
- 43.74147
- ],
- [
- -76.30649,
- 43.82915
- ],
- [
- -76.31152,
- 43.8675
- ],
- [
- -76.34602,
- 43.8618
- ],
- [
- -76.40064,
- 43.86128
- ],
- [
- -76.47178,
- 43.88408
- ],
- [
- -76.46675,
- 43.90893
- ],
- [
- -76.4186,
- 43.93119
- ],
- [
- -76.37189,
- 43.93223
- ],
- [
- -76.36974,
- 43.90272
- ],
- [
- -76.33308,
- 43.92964
- ],
- [
- -76.27847,
- 43.92964
- ],
- [
- -76.27847,
- 43.90427
- ],
- [
- -76.26697,
- 43.89599
- ],
- [
- -76.23607,
- 43.91204
- ],
- [
- -76.19295,
- 43.93326
- ],
- [
- -76.19007,
- 43.95086
- ],
- [
- -76.21523,
- 43.96017
- ],
- [
- -76.25044,
- 43.94982
- ],
- [
- -76.31224,
- 43.94775
- ],
- [
- -76.30578,
- 43.9762
- ],
- [
- -76.33093,
- 44.00464
- ],
- [
- -76.39561,
- 44.0248
- ],
- [
- -76.39848,
- 44.06251
- ],
- [
- -76.37548,
- 44.06457
- ],
- [
- -76.3762,
- 44.0909
- ],
- [
- -76.47107,
- 44.09297
- ],
- [
- -76.46604,
- 44.10948
- ],
- [
- -76.44232,
- 44.1296
- ],
- [
- -76.39848,
- 44.13218
- ],
- [
- -76.39776,
- 44.20435
- ],
- [
- -76.3762,
- 44.21671
- ],
- [
- -76.23966,
- 44.21929
- ],
- [
- -76.23966,
- 44.22804
- ],
- [
- -76.21738,
- 44.22856
- ],
- [
- -76.21523,
- 44.3479
- ],
- [
- -76.11893,
- 44.37103
- ],
- [
- -76.04634,
- 44.39157
- ],
- [
- -75.93423,
- 44.43418
- ],
- [
- -75.83721,
- 44.50341
- ],
- [
- -75.76822,
- 44.55823
- ],
- [
- -75.69923,
- 44.60379
- ],
- [
- -75.63168,
- 44.64829
- ],
- [
- -75.56772,
- 44.70501
- ],
- [
- -75.50448,
- 44.74586
- ],
- [
- -75.45274,
- 44.78157
- ],
- [
- -75.31763,
- 44.8723
- ],
- [
- -75.15378,
- 44.93745
- ],
- [
- -75.09054,
- 44.97305
- ],
- [
- -74.97411,
- 45.02793
- ],
- [
- -74.91985,
- 45.03682
- ],
- [
- -74.91231,
- 45.03606
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "New York State Statewide Digital Orthoimagery Program",
- "url": "https://gis.ny.gov/gateway/orthoprogram/index.cfm"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:120100"
- ],
- "country_code": "US",
- "description": "New York State High Resolution Digital Orthoimagery, 1 foot resolution",
- "end_date": "2018",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/ny/NYS_Orthos_Online.png",
- "id": "orthos.dhses.ny.gov_latest",
- "max_zoom": 19,
- "name": "NYS Orthos Online",
- "start_date": "2013",
- "type": "wms",
- "url": "https://orthos.dhses.ny.gov/arcgis/services/Latest/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0,1,2,3,4&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -83.1356,
- 41.75081
- ],
- [
- -83.08101,
- 41.7511
- ],
- [
- -83.0796,
- 41.62936
- ],
- [
- -82.95011,
- 41.54404
- ],
- [
- -82.89032,
- 41.54404
- ],
- [
- -82.89032,
- 41.69462
- ],
- [
- -82.8494,
- 41.7463
- ],
- [
- -82.76758,
- 41.73925
- ],
- [
- -82.75184,
- 41.63584
- ],
- [
- -82.64799,
- 41.62408
- ],
- [
- -82.68575,
- 41.50634
- ],
- [
- -82.49063,
- 41.40492
- ],
- [
- -82.0217,
- 41.53462
- ],
- [
- -81.72901,
- 41.52048
- ],
- [
- -81.39541,
- 41.7369
- ],
- [
- -81.10587,
- 41.84484
- ],
- [
- -80.50161,
- 41.99939
- ],
- [
- -80.51105,
- 40.62127
- ],
- [
- -80.6275,
- 40.59021
- ],
- [
- -80.58344,
- 40.49933
- ],
- [
- -80.58973,
- 40.2812
- ],
- [
- -80.85095,
- 39.625
- ],
- [
- -81.19399,
- 39.37974
- ],
- [
- -81.38912,
- 39.31159
- ],
- [
- -81.45521,
- 39.38704
- ],
- [
- -81.515,
- 39.35054
- ],
- [
- -81.54333,
- 39.26288
- ],
- [
- -81.72586,
- 39.19461
- ],
- [
- -81.73216,
- 38.9258
- ],
- [
- -81.9021,
- 38.85477
- ],
- [
- -81.95875,
- 38.89397
- ],
- [
- -81.9084,
- 38.93315
- ],
- [
- -82.02799,
- 38.99922
- ],
- [
- -82.11611,
- 38.92336
- ],
- [
- -82.12555,
- 38.8278
- ],
- [
- -82.19794,
- 38.78856
- ],
- [
- -82.16647,
- 38.72475
- ],
- [
- -82.16017,
- 38.58712
- ],
- [
- -82.26718,
- 38.57236
- ],
- [
- -82.29865,
- 38.43198
- ],
- [
- -82.57875,
- 38.39745
- ],
- [
- -82.73925,
- 38.53545
- ],
- [
- -82.8494,
- 38.56006
- ],
- [
- -82.91235,
- 38.73212
- ],
- [
- -83.00676,
- 38.71002
- ],
- [
- -83.14524,
- 38.59942
- ],
- [
- -83.30575,
- 38.58466
- ],
- [
- -83.39387,
- 38.64368
- ],
- [
- -83.46625,
- 38.64614
- ],
- [
- -83.54178,
- 38.69283
- ],
- [
- -83.65193,
- 38.61172
- ],
- [
- -83.74635,
- 38.63385
- ],
- [
- -83.9635,
- 38.76403
- ],
- [
- -84.08624,
- 38.75421
- ],
- [
- -84.22157,
- 38.7812
- ],
- [
- -84.34117,
- 38.99922
- ],
- [
- -84.49223,
- 39.07255
- ],
- [
- -84.64015,
- 39.05545
- ],
- [
- -84.74086,
- 39.11164
- ],
- [
- -84.84471,
- 39.08477
- ],
- [
- -84.82898,
- 41.70637
- ],
- [
- -83.44737,
- 41.76038
- ],
- [
- -83.13438,
- 41.64959
- ],
- [
- -83.1356,
- 41.75081
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Ohio Statewide Imagery Program",
- "url": "https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3754"
- ],
- "country_code": "US",
- "description": "Most recent available 1-foot orthoimagery from the Ohio Statewide Imagery Program.",
- "end_date": "2014",
- "id": "OSIP_1ft",
- "license_url": "https://ogrip.oit.ohio.gov/Portals/0/PDFs/OSIP%20Program%20Description.pdf#page=2",
- "max_zoom": 20,
- "min_zoom": 8,
- "name": "OSIP 1ft Imagery Most Current Available",
- "permission_osm": "implicit",
- "start_date": "2011",
- "type": "wms",
- "url": "https://geo1.oit.ohio.gov/arcgis/services/OSIP/osip_best_avail_1ft/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -83.1356,
- 41.75081
- ],
- [
- -83.08101,
- 41.7511
- ],
- [
- -83.0796,
- 41.62936
- ],
- [
- -82.95011,
- 41.54404
- ],
- [
- -82.89032,
- 41.54404
- ],
- [
- -82.89032,
- 41.69462
- ],
- [
- -82.8494,
- 41.7463
- ],
- [
- -82.76758,
- 41.73925
- ],
- [
- -82.75184,
- 41.63584
- ],
- [
- -82.64799,
- 41.62408
- ],
- [
- -82.68575,
- 41.50634
- ],
- [
- -82.49063,
- 41.40492
- ],
- [
- -82.0217,
- 41.53462
- ],
- [
- -81.72901,
- 41.52048
- ],
- [
- -81.39541,
- 41.7369
- ],
- [
- -81.10587,
- 41.84484
- ],
- [
- -80.50161,
- 41.99939
- ],
- [
- -80.51105,
- 40.62127
- ],
- [
- -80.6275,
- 40.59021
- ],
- [
- -80.58344,
- 40.49933
- ],
- [
- -80.58973,
- 40.2812
- ],
- [
- -80.85095,
- 39.625
- ],
- [
- -81.19399,
- 39.37974
- ],
- [
- -81.38912,
- 39.31159
- ],
- [
- -81.45521,
- 39.38704
- ],
- [
- -81.515,
- 39.35054
- ],
- [
- -81.54333,
- 39.26288
- ],
- [
- -81.72586,
- 39.19461
- ],
- [
- -81.73216,
- 38.9258
- ],
- [
- -81.9021,
- 38.85477
- ],
- [
- -81.95875,
- 38.89397
- ],
- [
- -81.9084,
- 38.93315
- ],
- [
- -82.02799,
- 38.99922
- ],
- [
- -82.11611,
- 38.92336
- ],
- [
- -82.12555,
- 38.8278
- ],
- [
- -82.19794,
- 38.78856
- ],
- [
- -82.16647,
- 38.72475
- ],
- [
- -82.16017,
- 38.58712
- ],
- [
- -82.26718,
- 38.57236
- ],
- [
- -82.29865,
- 38.43198
- ],
- [
- -82.57875,
- 38.39745
- ],
- [
- -82.73925,
- 38.53545
- ],
- [
- -82.8494,
- 38.56006
- ],
- [
- -82.91235,
- 38.73212
- ],
- [
- -83.00676,
- 38.71002
- ],
- [
- -83.14524,
- 38.59942
- ],
- [
- -83.30575,
- 38.58466
- ],
- [
- -83.39387,
- 38.64368
- ],
- [
- -83.46625,
- 38.64614
- ],
- [
- -83.54178,
- 38.69283
- ],
- [
- -83.65193,
- 38.61172
- ],
- [
- -83.74635,
- 38.63385
- ],
- [
- -83.9635,
- 38.76403
- ],
- [
- -84.08624,
- 38.75421
- ],
- [
- -84.22157,
- 38.7812
- ],
- [
- -84.34117,
- 38.99922
- ],
- [
- -84.49223,
- 39.07255
- ],
- [
- -84.64015,
- 39.05545
- ],
- [
- -84.74086,
- 39.11164
- ],
- [
- -84.84471,
- 39.08477
- ],
- [
- -84.82898,
- 41.70637
- ],
- [
- -83.44737,
- 41.76038
- ],
- [
- -83.13438,
- 41.64959
- ],
- [
- -83.1356,
- 41.75081
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Ohio Statewide Imagery Program",
- "url": "https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3753"
- ],
- "country_code": "US",
- "description": "Most recent available 6-inch orthoimagery from the Ohio Statewide Imagery Program.",
- "end_date": "2018",
- "id": "OSIP_6in",
- "license_url": "https://ogrip.oit.ohio.gov/Portals/0/PDFs/OSIP%20Program%20Description.pdf#page=2",
- "max_zoom": 20,
- "min_zoom": 8,
- "name": "OSIP 6in Imagery Most Current Available",
- "permission_osm": "implicit",
- "start_date": "2010",
- "type": "wms",
- "url": "https://geo1.oit.ohio.gov/arcgis/services/OSIP/OSIP_6in_best_avail/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -152.70873,
- 62.30357
- ],
- [
- -152.70839,
- 62.58153
- ],
- [
- -152.00835,
- 63.54646
- ],
- [
- -148.99432,
- 63.5333
- ],
- [
- -148.99432,
- 62.30357
- ],
- [
- -152.70873,
- 62.30357
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "US",
- "description": "Recent summer image of the Alaska Range for mapping natural features (true color)",
- "end_date": "2014-07-31",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC80700162014211LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Alaska Range",
- "start_date": "2014-07-31",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC80700162014211LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -168.2544,
- 53.8749
- ],
- [
- -168.2544,
- 54.0213
- ],
- [
- -167.8591,
- 54.0213
- ],
- [
- -167.8591,
- 53.8749
- ],
- [
- -168.2544,
- 53.8749
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "US",
- "description": "Recent image from after the eruption (true color)",
- "end_date": "2017-06-05",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC80770232017156LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Bogoslof Island",
- "start_date": "2017-06-05",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC80770232017156LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -154.5102,
- 59.4577
- ],
- [
- -154.5097,
- 60.6888
- ],
- [
- -153.5403,
- 62.1718
- ],
- [
- -148.0423,
- 62.1718
- ],
- [
- -148.0445,
- 61.5342
- ],
- [
- -149.7291,
- 59.4584
- ],
- [
- -154.5102,
- 59.4577
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "US",
- "description": "Tidal flats and glaciers in surrounding mountains (true color)",
- "end_date": "2016-08-31",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R086_N60_20160831T213532",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Cook Inlet",
- "start_date": "2016-08-31",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R086_N60_20160831T213532&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -96.15,
- 30.33
- ],
- [
- -96.18,
- 30.33
- ],
- [
- -96.18,
- 30.36
- ],
- [
- -96.24,
- 30.36
- ],
- [
- -96.24,
- 30.33
- ],
- [
- -96.3,
- 30.33
- ],
- [
- -96.3,
- 30.36
- ],
- [
- -96.33,
- 30.36
- ],
- [
- -96.33,
- 30.45
- ],
- [
- -96.36,
- 30.45
- ],
- [
- -96.36,
- 30.51
- ],
- [
- -96.42,
- 30.51
- ],
- [
- -96.42,
- 30.54
- ],
- [
- -96.45,
- 30.54
- ],
- [
- -96.45,
- 30.57
- ],
- [
- -96.48,
- 30.57
- ],
- [
- -96.48,
- 30.6
- ],
- [
- -96.57,
- 30.6
- ],
- [
- -96.57,
- 30.63
- ],
- [
- -96.63,
- 30.63
- ],
- [
- -96.63,
- 30.66
- ],
- [
- -96.6,
- 30.66
- ],
- [
- -96.6,
- 30.69
- ],
- [
- -96.57,
- 30.69
- ],
- [
- -96.57,
- 30.72
- ],
- [
- -96.54,
- 30.72
- ],
- [
- -96.54,
- 30.75
- ],
- [
- -96.48,
- 30.75
- ],
- [
- -96.48,
- 30.78
- ],
- [
- -96.45,
- 30.78
- ],
- [
- -96.45,
- 30.81
- ],
- [
- -96.42,
- 30.81
- ],
- [
- -96.42,
- 30.87
- ],
- [
- -96.39,
- 30.87
- ],
- [
- -96.39,
- 30.9
- ],
- [
- -96.36,
- 30.9
- ],
- [
- -96.36,
- 30.93
- ],
- [
- -96.33,
- 30.93
- ],
- [
- -96.33,
- 30.96
- ],
- [
- -96.27,
- 30.96
- ],
- [
- -96.27,
- 30.99
- ],
- [
- -96.21,
- 30.99
- ],
- [
- -96.21,
- 30.96
- ],
- [
- -96.18,
- 30.96
- ],
- [
- -96.18,
- 30.87
- ],
- [
- -96.15,
- 30.87
- ],
- [
- -96.15,
- 30.54
- ],
- [
- -96.12,
- 30.54
- ],
- [
- -96.12,
- 30.45
- ],
- [
- -96.06,
- 30.45
- ],
- [
- -96.06,
- 30.39
- ],
- [
- -96.09,
- 30.39
- ],
- [
- -96.09,
- 30.36
- ],
- [
- -96.12,
- 30.36
- ],
- [
- -96.12,
- 30.33
- ],
- [
- -96.15,
- 30.33
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Strategic Mapping Program (StratMap). Brazos County Imagery, 2019-01-29",
- "url": "https://data.tnris.org/collection/aa2cd74e-9c2d-4f00-bae5-609b5e898093"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "US",
- "end_date": "2019",
- "id": "brazos_county_2019_wms",
- "license_url": "https://data.tnris.org/collection/aa2cd74e-9c2d-4f00-bae5-609b5e898093",
- "name": "Brazos County Imagery 2019",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2019",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/StratMap/StratMap19_NC_CIR_6in_Brazos/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -96.85,
- 29.6
- ],
- [
- -97.15,
- 29.6
- ],
- [
- -97.15,
- 29.65
- ],
- [
- -97.25,
- 29.65
- ],
- [
- -97.25,
- 29.7
- ],
- [
- -97.3,
- 29.7
- ],
- [
- -97.3,
- 29.75
- ],
- [
- -97.35,
- 29.75
- ],
- [
- -97.35,
- 29.7
- ],
- [
- -97.45,
- 29.7
- ],
- [
- -97.45,
- 29.65
- ],
- [
- -97.55,
- 29.65
- ],
- [
- -97.55,
- 29.6
- ],
- [
- -97.65,
- 29.6
- ],
- [
- -97.65,
- 29.65
- ],
- [
- -97.75,
- 29.65
- ],
- [
- -97.75,
- 29.7
- ],
- [
- -97.8,
- 29.7
- ],
- [
- -97.8,
- 29.75
- ],
- [
- -97.85,
- 29.75
- ],
- [
- -97.85,
- 29.8
- ],
- [
- -97.95,
- 29.8
- ],
- [
- -97.95,
- 29.75
- ],
- [
- -98.05,
- 29.75
- ],
- [
- -98.05,
- 29.85
- ],
- [
- -98.15,
- 29.85
- ],
- [
- -98.15,
- 29.9
- ],
- [
- -98.2,
- 29.9
- ],
- [
- -98.2,
- 29.95
- ],
- [
- -98.25,
- 29.95
- ],
- [
- -98.25,
- 30.0
- ],
- [
- -98.3,
- 30.0
- ],
- [
- -98.3,
- 29.95
- ],
- [
- -98.35,
- 29.95
- ],
- [
- -98.35,
- 29.9
- ],
- [
- -98.45,
- 29.9
- ],
- [
- -98.45,
- 29.95
- ],
- [
- -98.5,
- 29.95
- ],
- [
- -98.5,
- 30.0
- ],
- [
- -98.55,
- 30.0
- ],
- [
- -98.55,
- 30.05
- ],
- [
- -98.6,
- 30.05
- ],
- [
- -98.6,
- 30.45
- ],
- [
- -99.0,
- 30.45
- ],
- [
- -99.0,
- 30.95
- ],
- [
- -98.5,
- 30.95
- ],
- [
- -98.5,
- 31.05
- ],
- [
- -97.85,
- 31.05
- ],
- [
- -97.85,
- 30.95
- ],
- [
- -97.75,
- 30.95
- ],
- [
- -97.75,
- 30.9
- ],
- [
- -97.55,
- 30.9
- ],
- [
- -97.55,
- 30.85
- ],
- [
- -97.4,
- 30.85
- ],
- [
- -97.4,
- 30.8
- ],
- [
- -97.3,
- 30.8
- ],
- [
- -97.3,
- 30.75
- ],
- [
- -97.25,
- 30.75
- ],
- [
- -97.25,
- 30.7
- ],
- [
- -97.2,
- 30.7
- ],
- [
- -97.2,
- 30.6
- ],
- [
- -97.15,
- 30.6
- ],
- [
- -97.15,
- 30.5
- ],
- [
- -97.1,
- 30.5
- ],
- [
- -97.1,
- 30.55
- ],
- [
- -97.0,
- 30.55
- ],
- [
- -97.0,
- 30.6
- ],
- [
- -96.95,
- 30.6
- ],
- [
- -96.95,
- 30.55
- ],
- [
- -96.9,
- 30.55
- ],
- [
- -96.9,
- 30.5
- ],
- [
- -96.85,
- 30.5
- ],
- [
- -96.85,
- 30.45
- ],
- [
- -96.8,
- 30.45
- ],
- [
- -96.8,
- 30.4
- ],
- [
- -96.75,
- 30.4
- ],
- [
- -96.75,
- 30.35
- ],
- [
- -96.65,
- 30.35
- ],
- [
- -96.65,
- 30.3
- ],
- [
- -96.6,
- 30.3
- ],
- [
- -96.6,
- 30.25
- ],
- [
- -96.65,
- 30.25
- ],
- [
- -96.65,
- 30.15
- ],
- [
- -96.6,
- 30.15
- ],
- [
- -96.6,
- 30.05
- ],
- [
- -96.55,
- 30.05
- ],
- [
- -96.55,
- 29.9
- ],
- [
- -96.6,
- 29.9
- ],
- [
- -96.6,
- 29.85
- ],
- [
- -96.65,
- 29.85
- ],
- [
- -96.65,
- 29.8
- ],
- [
- -96.7,
- 29.8
- ],
- [
- -96.7,
- 29.75
- ],
- [
- -96.75,
- 29.75
- ],
- [
- -96.75,
- 29.7
- ],
- [
- -96.8,
- 29.7
- ],
- [
- -96.8,
- 29.65
- ],
- [
- -96.85,
- 29.65
- ],
- [
- -96.85,
- 29.6
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Strategic Mapping Program (StratMap). CapArea Imagery, 2019-01-29",
- "url": "https://data.tnris.org/collection/f84442b8-ac2a-4708-b5c0-9d15515f4483"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "US",
- "end_date": "2019",
- "id": "caparea_2019_wms",
- "license_url": "https://data.tnris.org/collection/f84442b8-ac2a-4708-b5c0-9d15515f4483",
- "name": "CapArea Imagery 2019",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2019",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/StratMap/StratMap19_NC_CIR_CapArea/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -101.62309,
- 35.13352
- ],
- [
- -101.62265,
- 35.12001
- ],
- [
- -101.6391,
- 35.11965
- ],
- [
- -101.65554,
- 35.11929
- ],
- [
- -101.67199,
- 35.11893
- ],
- [
- -101.68843,
- 35.11857
- ],
- [
- -101.70487,
- 35.1182
- ],
- [
- -101.72132,
- 35.11783
- ],
- [
- -101.73776,
- 35.11746
- ],
- [
- -101.7542,
- 35.11709
- ],
- [
- -101.77065,
- 35.11672
- ],
- [
- -101.78709,
- 35.11634
- ],
- [
- -101.80353,
- 35.11596
- ],
- [
- -101.81997,
- 35.11558
- ],
- [
- -101.83641,
- 35.11519
- ],
- [
- -101.85285,
- 35.11481
- ],
- [
- -101.86929,
- 35.11442
- ],
- [
- -101.88573,
- 35.11403
- ],
- [
- -101.90217,
- 35.11364
- ],
- [
- -101.91861,
- 35.11324
- ],
- [
- -101.93505,
- 35.11284
- ],
- [
- -101.95149,
- 35.11244
- ],
- [
- -101.96793,
- 35.11204
- ],
- [
- -101.98437,
- 35.11164
- ],
- [
- -102.00081,
- 35.11123
- ],
- [
- -102.0013,
- 35.12474
- ],
- [
- -102.0018,
- 35.13825
- ],
- [
- -102.00229,
- 35.15175
- ],
- [
- -102.00279,
- 35.16526
- ],
- [
- -102.00329,
- 35.17877
- ],
- [
- -102.00378,
- 35.19228
- ],
- [
- -102.00428,
- 35.20578
- ],
- [
- -102.00478,
- 35.21929
- ],
- [
- -102.00528,
- 35.2328
- ],
- [
- -102.00578,
- 35.2463
- ],
- [
- -102.00628,
- 35.25981
- ],
- [
- -101.98981,
- 35.26022
- ],
- [
- -101.97334,
- 35.26062
- ],
- [
- -101.95687,
- 35.26103
- ],
- [
- -101.9404,
- 35.26143
- ],
- [
- -101.92393,
- 35.26183
- ],
- [
- -101.90747,
- 35.26223
- ],
- [
- -101.891,
- 35.26262
- ],
- [
- -101.89148,
- 35.27613
- ],
- [
- -101.875,
- 35.27652
- ],
- [
- -101.87548,
- 35.29003
- ],
- [
- -101.87596,
- 35.30354
- ],
- [
- -101.87644,
- 35.31705
- ],
- [
- -101.87692,
- 35.33056
- ],
- [
- -101.8774,
- 35.34406
- ],
- [
- -101.87788,
- 35.35757
- ],
- [
- -101.87836,
- 35.37108
- ],
- [
- -101.87884,
- 35.38459
- ],
- [
- -101.86234,
- 35.38498
- ],
- [
- -101.84585,
- 35.38537
- ],
- [
- -101.82935,
- 35.38576
- ],
- [
- -101.81285,
- 35.38614
- ],
- [
- -101.79636,
- 35.38653
- ],
- [
- -101.77986,
- 35.38691
- ],
- [
- -101.76336,
- 35.38729
- ],
- [
- -101.74687,
- 35.38766
- ],
- [
- -101.74641,
- 35.37415
- ],
- [
- -101.74595,
- 35.36064
- ],
- [
- -101.74549,
- 35.34714
- ],
- [
- -101.74504,
- 35.33363
- ],
- [
- -101.74458,
- 35.32012
- ],
- [
- -101.74412,
- 35.30661
- ],
- [
- -101.74367,
- 35.2931
- ],
- [
- -101.74321,
- 35.27959
- ],
- [
- -101.74275,
- 35.26608
- ],
- [
- -101.7423,
- 35.25257
- ],
- [
- -101.72583,
- 35.25294
- ],
- [
- -101.70936,
- 35.25331
- ],
- [
- -101.69289,
- 35.25368
- ],
- [
- -101.67642,
- 35.25404
- ],
- [
- -101.65995,
- 35.25441
- ],
- [
- -101.64347,
- 35.25477
- ],
- [
- -101.627,
- 35.25513
- ],
- [
- -101.61053,
- 35.25548
- ],
- [
- -101.6101,
- 35.24197
- ],
- [
- -101.60966,
- 35.22846
- ],
- [
- -101.60923,
- 35.21495
- ],
- [
- -101.6088,
- 35.20144
- ],
- [
- -101.60837,
- 35.18792
- ],
- [
- -101.62482,
- 35.18757
- ],
- [
- -101.62439,
- 35.17406
- ],
- [
- -101.62396,
- 35.16055
- ],
- [
- -101.62352,
- 35.14703
- ],
- [
- -101.62309,
- 35.13352
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Strategic Mapping Program (StratMap). City of Amarillo Imagery, 2015-03-13",
- "url": "https://data.tnris.org/collection/c4045402-55b8-41ee-a911-adbda2a2c4aa"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "US",
- "end_date": "2015",
- "id": "amarillo_2016_wms",
- "license_url": "https://data.tnris.org/collection/c4045402-55b8-41ee-a911-adbda2a2c4aa",
- "name": "City of Amarillo Imagery 2015",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2015",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_Amarillo/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -106.11096,
- 31.50405
- ],
- [
- -106.1108,
- 31.49052
- ],
- [
- -106.12659,
- 31.49038
- ],
- [
- -106.14238,
- 31.49024
- ],
- [
- -106.15817,
- 31.4901
- ],
- [
- -106.17396,
- 31.48995
- ],
- [
- -106.18975,
- 31.48981
- ],
- [
- -106.20554,
- 31.48966
- ],
- [
- -106.22133,
- 31.48951
- ],
- [
- -106.23712,
- 31.48936
- ],
- [
- -106.25291,
- 31.48921
- ],
- [
- -106.25309,
- 31.50274
- ],
- [
- -106.25327,
- 31.51627
- ],
- [
- -106.25345,
- 31.5298
- ],
- [
- -106.26925,
- 31.52964
- ],
- [
- -106.26943,
- 31.54317
- ],
- [
- -106.28523,
- 31.54301
- ],
- [
- -106.30103,
- 31.54285
- ],
- [
- -106.30122,
- 31.55638
- ],
- [
- -106.30141,
- 31.56991
- ],
- [
- -106.30159,
- 31.58345
- ],
- [
- -106.3174,
- 31.58328
- ],
- [
- -106.31759,
- 31.59681
- ],
- [
- -106.31778,
- 31.61034
- ],
- [
- -106.31797,
- 31.62387
- ],
- [
- -106.33378,
- 31.62371
- ],
- [
- -106.33398,
- 31.63724
- ],
- [
- -106.34979,
- 31.63707
- ],
- [
- -106.34999,
- 31.6506
- ],
- [
- -106.35018,
- 31.66413
- ],
- [
- -106.366,
- 31.66396
- ],
- [
- -106.3662,
- 31.67749
- ],
- [
- -106.38202,
- 31.67732
- ],
- [
- -106.39784,
- 31.67715
- ],
- [
- -106.39804,
- 31.69068
- ],
- [
- -106.39825,
- 31.70421
- ],
- [
- -106.39845,
- 31.71774
- ],
- [
- -106.39865,
- 31.73127
- ],
- [
- -106.41448,
- 31.73109
- ],
- [
- -106.43031,
- 31.73092
- ],
- [
- -106.43052,
- 31.74444
- ],
- [
- -106.44635,
- 31.74427
- ],
- [
- -106.46218,
- 31.74409
- ],
- [
- -106.46197,
- 31.73056
- ],
- [
- -106.4778,
- 31.73037
- ],
- [
- -106.49363,
- 31.73019
- ],
- [
- -106.50946,
- 31.73
- ],
- [
- -106.50968,
- 31.74353
- ],
- [
- -106.52551,
- 31.74334
- ],
- [
- -106.52573,
- 31.75687
- ],
- [
- -106.54156,
- 31.75668
- ],
- [
- -106.54179,
- 31.77021
- ],
- [
- -106.55762,
- 31.77002
- ],
- [
- -106.55785,
- 31.78354
- ],
- [
- -106.55808,
- 31.79707
- ],
- [
- -106.57392,
- 31.79688
- ],
- [
- -106.58976,
- 31.79668
- ],
- [
- -106.6056,
- 31.79648
- ],
- [
- -106.60583,
- 31.81001
- ],
- [
- -106.62167,
- 31.80981
- ],
- [
- -106.62191,
- 31.82334
- ],
- [
- -106.62214,
- 31.83686
- ],
- [
- -106.63799,
- 31.83666
- ],
- [
- -106.65384,
- 31.83646
- ],
- [
- -106.65408,
- 31.84998
- ],
- [
- -106.65432,
- 31.86351
- ],
- [
- -106.65456,
- 31.87704
- ],
- [
- -106.63871,
- 31.87724
- ],
- [
- -106.63895,
- 31.89077
- ],
- [
- -106.63919,
- 31.9043
- ],
- [
- -106.63943,
- 31.91783
- ],
- [
- -106.63967,
- 31.93135
- ],
- [
- -106.63991,
- 31.94488
- ],
- [
- -106.64015,
- 31.95841
- ],
- [
- -106.64039,
- 31.97194
- ],
- [
- -106.64063,
- 31.98546
- ],
- [
- -106.64087,
- 31.99899
- ],
- [
- -106.625,
- 31.99919
- ],
- [
- -106.62523,
- 32.01272
- ],
- [
- -106.62547,
- 32.02625
- ],
- [
- -106.60959,
- 32.02645
- ],
- [
- -106.59372,
- 32.02665
- ],
- [
- -106.57784,
- 32.02685
- ],
- [
- -106.56196,
- 32.02705
- ],
- [
- -106.54608,
- 32.02724
- ],
- [
- -106.5302,
- 32.02743
- ],
- [
- -106.51432,
- 32.02762
- ],
- [
- -106.49844,
- 32.02781
- ],
- [
- -106.49822,
- 32.01429
- ],
- [
- -106.498,
- 32.00076
- ],
- [
- -106.48212,
- 32.00094
- ],
- [
- -106.46625,
- 32.00113
- ],
- [
- -106.45037,
- 32.00131
- ],
- [
- -106.4345,
- 32.00149
- ],
- [
- -106.41862,
- 32.00167
- ],
- [
- -106.40275,
- 32.00185
- ],
- [
- -106.38687,
- 32.00202
- ],
- [
- -106.37099,
- 32.00219
- ],
- [
- -106.37079,
- 31.98866
- ],
- [
- -106.37059,
- 31.97514
- ],
- [
- -106.37039,
- 31.96161
- ],
- [
- -106.37019,
- 31.94808
- ],
- [
- -106.36999,
- 31.93455
- ],
- [
- -106.36979,
- 31.92102
- ],
- [
- -106.36959,
- 31.90749
- ],
- [
- -106.36939,
- 31.89396
- ],
- [
- -106.36919,
- 31.88043
- ],
- [
- -106.35333,
- 31.8806
- ],
- [
- -106.33748,
- 31.88077
- ],
- [
- -106.32162,
- 31.88094
- ],
- [
- -106.30576,
- 31.8811
- ],
- [
- -106.28991,
- 31.88126
- ],
- [
- -106.27405,
- 31.88142
- ],
- [
- -106.2582,
- 31.88158
- ],
- [
- -106.24234,
- 31.88174
- ],
- [
- -106.22648,
- 31.88189
- ],
- [
- -106.21063,
- 31.88204
- ],
- [
- -106.19477,
- 31.88219
- ],
- [
- -106.17891,
- 31.88234
- ],
- [
- -106.16305,
- 31.88249
- ],
- [
- -106.1472,
- 31.88263
- ],
- [
- -106.13134,
- 31.88277
- ],
- [
- -106.11548,
- 31.88291
- ],
- [
- -106.11532,
- 31.86938
- ],
- [
- -106.11516,
- 31.85585
- ],
- [
- -106.11499,
- 31.84232
- ],
- [
- -106.11483,
- 31.82879
- ],
- [
- -106.11467,
- 31.81526
- ],
- [
- -106.11451,
- 31.80173
- ],
- [
- -106.11434,
- 31.7882
- ],
- [
- -106.11418,
- 31.77467
- ],
- [
- -106.11402,
- 31.76114
- ],
- [
- -106.11386,
- 31.74761
- ],
- [
- -106.1137,
- 31.73408
- ],
- [
- -106.11353,
- 31.72055
- ],
- [
- -106.11337,
- 31.70701
- ],
- [
- -106.11321,
- 31.69348
- ],
- [
- -106.11305,
- 31.67995
- ],
- [
- -106.11289,
- 31.66642
- ],
- [
- -106.11273,
- 31.65289
- ],
- [
- -106.11257,
- 31.63936
- ],
- [
- -106.1124,
- 31.62583
- ],
- [
- -106.11224,
- 31.6123
- ],
- [
- -106.11208,
- 31.59877
- ],
- [
- -106.11192,
- 31.58524
- ],
- [
- -106.11176,
- 31.57171
- ],
- [
- -106.1116,
- 31.55817
- ],
- [
- -106.11144,
- 31.54464
- ],
- [
- -106.11128,
- 31.53111
- ],
- [
- -106.11112,
- 31.51758
- ],
- [
- -106.11096,
- 31.50405
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Strategic Mapping Program (StratMap). City of El Paso Imagery, 2015-10-25",
- "url": "https://data.tnris.org/collection/8870dbdd-d3fb-4c06-a3d1-c4e407428218"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "US",
- "end_date": "2015",
- "id": "el_paso_2015_wms",
- "license_url": "https://data.tnris.org/collection/8870dbdd-d3fb-4c06-a3d1-c4e407428218",
- "name": "City of El Paso Imagery 2015",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2015",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_ElPaso/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -101.73441,
- 33.50842
- ],
- [
- -101.73398,
- 33.4949
- ],
- [
- -101.75011,
- 33.49455
- ],
- [
- -101.76624,
- 33.49419
- ],
- [
- -101.78237,
- 33.49383
- ],
- [
- -101.7985,
- 33.49346
- ],
- [
- -101.81463,
- 33.4931
- ],
- [
- -101.83076,
- 33.49273
- ],
- [
- -101.84688,
- 33.49236
- ],
- [
- -101.86301,
- 33.49199
- ],
- [
- -101.87914,
- 33.49161
- ],
- [
- -101.89527,
- 33.49124
- ],
- [
- -101.91139,
- 33.49086
- ],
- [
- -101.92752,
- 33.49048
- ],
- [
- -101.94364,
- 33.4901
- ],
- [
- -101.95977,
- 33.48971
- ],
- [
- -101.97589,
- 33.48933
- ],
- [
- -101.99202,
- 33.48894
- ],
- [
- -102.00814,
- 33.48855
- ],
- [
- -102.02427,
- 33.48815
- ],
- [
- -102.04039,
- 33.48776
- ],
- [
- -102.05652,
- 33.48736
- ],
- [
- -102.07264,
- 33.48696
- ],
- [
- -102.08876,
- 33.48656
- ],
- [
- -102.10489,
- 33.48616
- ],
- [
- -102.10537,
- 33.49967
- ],
- [
- -102.12149,
- 33.49926
- ],
- [
- -102.13762,
- 33.49885
- ],
- [
- -102.13811,
- 33.51236
- ],
- [
- -102.13859,
- 33.52587
- ],
- [
- -102.13908,
- 33.53938
- ],
- [
- -102.13957,
- 33.55289
- ],
- [
- -102.14006,
- 33.5664
- ],
- [
- -102.14055,
- 33.57991
- ],
- [
- -102.14104,
- 33.59342
- ],
- [
- -102.14153,
- 33.60693
- ],
- [
- -102.12539,
- 33.60734
- ],
- [
- -102.12587,
- 33.62084
- ],
- [
- -102.12636,
- 33.63435
- ],
- [
- -102.11021,
- 33.63476
- ],
- [
- -102.09406,
- 33.63517
- ],
- [
- -102.07791,
- 33.63557
- ],
- [
- -102.06176,
- 33.63597
- ],
- [
- -102.04561,
- 33.63637
- ],
- [
- -102.02946,
- 33.63677
- ],
- [
- -102.01331,
- 33.63716
- ],
- [
- -101.99715,
- 33.63756
- ],
- [
- -101.981,
- 33.63795
- ],
- [
- -101.96485,
- 33.63834
- ],
- [
- -101.9487,
- 33.63872
- ],
- [
- -101.94823,
- 33.62521
- ],
- [
- -101.93208,
- 33.62559
- ],
- [
- -101.91593,
- 33.62598
- ],
- [
- -101.89978,
- 33.62636
- ],
- [
- -101.88363,
- 33.62673
- ],
- [
- -101.88408,
- 33.64025
- ],
- [
- -101.88453,
- 33.65376
- ],
- [
- -101.88498,
- 33.66727
- ],
- [
- -101.88543,
- 33.68078
- ],
- [
- -101.88589,
- 33.69429
- ],
- [
- -101.88634,
- 33.70781
- ],
- [
- -101.88679,
- 33.72132
- ],
- [
- -101.88724,
- 33.73483
- ],
- [
- -101.8877,
- 33.74834
- ],
- [
- -101.88815,
- 33.76185
- ],
- [
- -101.87197,
- 33.76223
- ],
- [
- -101.85579,
- 33.76261
- ],
- [
- -101.83962,
- 33.76298
- ],
- [
- -101.82344,
- 33.76335
- ],
- [
- -101.80726,
- 33.76372
- ],
- [
- -101.80682,
- 33.75021
- ],
- [
- -101.79064,
- 33.75058
- ],
- [
- -101.77447,
- 33.75094
- ],
- [
- -101.75829,
- 33.7513
- ],
- [
- -101.74211,
- 33.75166
- ],
- [
- -101.74168,
- 33.73815
- ],
- [
- -101.74125,
- 33.72464
- ],
- [
- -101.74082,
- 33.71112
- ],
- [
- -101.74039,
- 33.69761
- ],
- [
- -101.73996,
- 33.6841
- ],
- [
- -101.73953,
- 33.67058
- ],
- [
- -101.73911,
- 33.65707
- ],
- [
- -101.73868,
- 33.64356
- ],
- [
- -101.73825,
- 33.63004
- ],
- [
- -101.73782,
- 33.61653
- ],
- [
- -101.73739,
- 33.60301
- ],
- [
- -101.73697,
- 33.5895
- ],
- [
- -101.73654,
- 33.57599
- ],
- [
- -101.73611,
- 33.56247
- ],
- [
- -101.73569,
- 33.54896
- ],
- [
- -101.73526,
- 33.53545
- ],
- [
- -101.73483,
- 33.52193
- ],
- [
- -101.73441,
- 33.50842
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Texas Natural Resources Information System (TNRIS). City of Georgetown Imagery, 2015-03-06",
- "url": "https://data.tnris.org/collection/a665d1fe-47f4-497c-b467-bb1535a02c9d"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "US",
- "end_date": "2015",
- "id": "georgetown_2016_wms",
- "license_url": "https://data.tnris.org/collection/a665d1fe-47f4-497c-b467-bb1535a02c9d",
- "name": "City of Georgetown Imagery 2015",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2015",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_6in_Georgetown/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -101.73441,
- 33.50842
- ],
- [
- -101.73398,
- 33.4949
- ],
- [
- -101.75011,
- 33.49455
- ],
- [
- -101.76624,
- 33.49419
- ],
- [
- -101.78237,
- 33.49383
- ],
- [
- -101.7985,
- 33.49346
- ],
- [
- -101.81463,
- 33.4931
- ],
- [
- -101.83076,
- 33.49273
- ],
- [
- -101.84688,
- 33.49236
- ],
- [
- -101.86301,
- 33.49199
- ],
- [
- -101.87914,
- 33.49161
- ],
- [
- -101.89527,
- 33.49124
- ],
- [
- -101.91139,
- 33.49086
- ],
- [
- -101.92752,
- 33.49048
- ],
- [
- -101.94364,
- 33.4901
- ],
- [
- -101.95977,
- 33.48971
- ],
- [
- -101.97589,
- 33.48933
- ],
- [
- -101.99202,
- 33.48894
- ],
- [
- -102.00814,
- 33.48855
- ],
- [
- -102.02427,
- 33.48815
- ],
- [
- -102.04039,
- 33.48776
- ],
- [
- -102.05652,
- 33.48736
- ],
- [
- -102.07264,
- 33.48696
- ],
- [
- -102.08876,
- 33.48656
- ],
- [
- -102.10489,
- 33.48616
- ],
- [
- -102.10537,
- 33.49967
- ],
- [
- -102.12149,
- 33.49926
- ],
- [
- -102.13762,
- 33.49885
- ],
- [
- -102.13811,
- 33.51236
- ],
- [
- -102.13859,
- 33.52587
- ],
- [
- -102.13908,
- 33.53938
- ],
- [
- -102.13957,
- 33.55289
- ],
- [
- -102.14006,
- 33.5664
- ],
- [
- -102.14055,
- 33.57991
- ],
- [
- -102.14104,
- 33.59342
- ],
- [
- -102.14153,
- 33.60693
- ],
- [
- -102.12539,
- 33.60734
- ],
- [
- -102.12587,
- 33.62084
- ],
- [
- -102.12636,
- 33.63435
- ],
- [
- -102.11021,
- 33.63476
- ],
- [
- -102.09406,
- 33.63517
- ],
- [
- -102.07791,
- 33.63557
- ],
- [
- -102.06176,
- 33.63597
- ],
- [
- -102.04561,
- 33.63637
- ],
- [
- -102.02946,
- 33.63677
- ],
- [
- -102.01331,
- 33.63716
- ],
- [
- -101.99715,
- 33.63756
- ],
- [
- -101.981,
- 33.63795
- ],
- [
- -101.96485,
- 33.63834
- ],
- [
- -101.9487,
- 33.63872
- ],
- [
- -101.94823,
- 33.62521
- ],
- [
- -101.93208,
- 33.62559
- ],
- [
- -101.91593,
- 33.62598
- ],
- [
- -101.89978,
- 33.62636
- ],
- [
- -101.88363,
- 33.62673
- ],
- [
- -101.88408,
- 33.64025
- ],
- [
- -101.88453,
- 33.65376
- ],
- [
- -101.88498,
- 33.66727
- ],
- [
- -101.88543,
- 33.68078
- ],
- [
- -101.88589,
- 33.69429
- ],
- [
- -101.88634,
- 33.70781
- ],
- [
- -101.88679,
- 33.72132
- ],
- [
- -101.88724,
- 33.73483
- ],
- [
- -101.8877,
- 33.74834
- ],
- [
- -101.88815,
- 33.76185
- ],
- [
- -101.87197,
- 33.76223
- ],
- [
- -101.85579,
- 33.76261
- ],
- [
- -101.83962,
- 33.76298
- ],
- [
- -101.82344,
- 33.76335
- ],
- [
- -101.80726,
- 33.76372
- ],
- [
- -101.80682,
- 33.75021
- ],
- [
- -101.79064,
- 33.75058
- ],
- [
- -101.77447,
- 33.75094
- ],
- [
- -101.75829,
- 33.7513
- ],
- [
- -101.74211,
- 33.75166
- ],
- [
- -101.74168,
- 33.73815
- ],
- [
- -101.74125,
- 33.72464
- ],
- [
- -101.74082,
- 33.71112
- ],
- [
- -101.74039,
- 33.69761
- ],
- [
- -101.73996,
- 33.6841
- ],
- [
- -101.73953,
- 33.67058
- ],
- [
- -101.73911,
- 33.65707
- ],
- [
- -101.73868,
- 33.64356
- ],
- [
- -101.73825,
- 33.63004
- ],
- [
- -101.73782,
- 33.61653
- ],
- [
- -101.73739,
- 33.60301
- ],
- [
- -101.73697,
- 33.5895
- ],
- [
- -101.73654,
- 33.57599
- ],
- [
- -101.73611,
- 33.56247
- ],
- [
- -101.73569,
- 33.54896
- ],
- [
- -101.73526,
- 33.53545
- ],
- [
- -101.73483,
- 33.52193
- ],
- [
- -101.73441,
- 33.50842
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Strategic Mapping Program (StratMap). City of Lubbock Imagery, 2015-03-22",
- "url": "https://data.tnris.org/collection/a5307ec2-8a8b-4647-9d02-87625aeb5cf9"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "US",
- "end_date": "2015",
- "id": "lubbock_2016_wms",
- "license_url": "https://data.tnris.org/collection/a5307ec2-8a8b-4647-9d02-87625aeb5cf9",
- "name": "City of Lubbock Imagery 2015",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2015",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_Lubbock/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -96.7411,
- 32.38179
- ],
- [
- -96.74144,
- 32.36827
- ],
- [
- -96.75737,
- 32.36856
- ],
- [
- -96.7733,
- 32.36884
- ],
- [
- -96.78923,
- 32.36912
- ],
- [
- -96.80517,
- 32.3694
- ],
- [
- -96.8211,
- 32.36967
- ],
- [
- -96.83703,
- 32.36995
- ],
- [
- -96.85297,
- 32.37022
- ],
- [
- -96.8689,
- 32.37049
- ],
- [
- -96.88483,
- 32.37076
- ],
- [
- -96.88452,
- 32.38428
- ],
- [
- -96.8842,
- 32.39781
- ],
- [
- -96.88389,
- 32.41133
- ],
- [
- -96.88357,
- 32.42485
- ],
- [
- -96.88326,
- 32.43837
- ],
- [
- -96.88294,
- 32.4519
- ],
- [
- -96.88262,
- 32.46542
- ],
- [
- -96.88231,
- 32.47894
- ],
- [
- -96.88199,
- 32.49246
- ],
- [
- -96.89795,
- 32.49273
- ],
- [
- -96.9139,
- 32.493
- ],
- [
- -96.92986,
- 32.49326
- ],
- [
- -96.94581,
- 32.49352
- ],
- [
- -96.96177,
- 32.49378
- ],
- [
- -96.97773,
- 32.49404
- ],
- [
- -96.99368,
- 32.49429
- ],
- [
- -97.00964,
- 32.49455
- ],
- [
- -97.0256,
- 32.4948
- ],
- [
- -97.04156,
- 32.49505
- ],
- [
- -97.05751,
- 32.4953
- ],
- [
- -97.07347,
- 32.49554
- ],
- [
- -97.08943,
- 32.49578
- ],
- [
- -97.10539,
- 32.49603
- ],
- [
- -97.12135,
- 32.49627
- ],
- [
- -97.1373,
- 32.4965
- ],
- [
- -97.15326,
- 32.49674
- ],
- [
- -97.16922,
- 32.49697
- ],
- [
- -97.18518,
- 32.4972
- ],
- [
- -97.20114,
- 32.49743
- ],
- [
- -97.2171,
- 32.49766
- ],
- [
- -97.23306,
- 32.49788
- ],
- [
- -97.24902,
- 32.49811
- ],
- [
- -97.26498,
- 32.49833
- ],
- [
- -97.28094,
- 32.49855
- ],
- [
- -97.2969,
- 32.49876
- ],
- [
- -97.31286,
- 32.49898
- ],
- [
- -97.32882,
- 32.49919
- ],
- [
- -97.34478,
- 32.4994
- ],
- [
- -97.36074,
- 32.49961
- ],
- [
- -97.3767,
- 32.49982
- ],
- [
- -97.37646,
- 32.51335
- ],
- [
- -97.37622,
- 32.52687
- ],
- [
- -97.37597,
- 32.5404
- ],
- [
- -97.37573,
- 32.55392
- ],
- [
- -97.37549,
- 32.56745
- ],
- [
- -97.37524,
- 32.58098
- ],
- [
- -97.39122,
- 32.58118
- ],
- [
- -97.39098,
- 32.59471
- ],
- [
- -97.39074,
- 32.60823
- ],
- [
- -97.39049,
- 32.62176
- ],
- [
- -97.40648,
- 32.62196
- ],
- [
- -97.42246,
- 32.62217
- ],
- [
- -97.43844,
- 32.62237
- ],
- [
- -97.45443,
- 32.62256
- ],
- [
- -97.47041,
- 32.62276
- ],
- [
- -97.48639,
- 32.62295
- ],
- [
- -97.50238,
- 32.62314
- ],
- [
- -97.50215,
- 32.63667
- ],
- [
- -97.50193,
- 32.6502
- ],
- [
- -97.5017,
- 32.66372
- ],
- [
- -97.50148,
- 32.67725
- ],
- [
- -97.50125,
- 32.69078
- ],
- [
- -97.50102,
- 32.7043
- ],
- [
- -97.5008,
- 32.71783
- ],
- [
- -97.50057,
- 32.73136
- ],
- [
- -97.50035,
- 32.74488
- ],
- [
- -97.51635,
- 32.74507
- ],
- [
- -97.53236,
- 32.74526
- ],
- [
- -97.54836,
- 32.74545
- ],
- [
- -97.56437,
- 32.74563
- ],
- [
- -97.58038,
- 32.74582
- ],
- [
- -97.59638,
- 32.746
- ],
- [
- -97.61239,
- 32.74617
- ],
- [
- -97.6284,
- 32.74635
- ],
- [
- -97.62819,
- 32.75988
- ],
- [
- -97.62798,
- 32.77341
- ],
- [
- -97.62777,
- 32.78693
- ],
- [
- -97.62757,
- 32.80046
- ],
- [
- -97.62736,
- 32.81399
- ],
- [
- -97.62715,
- 32.82751
- ],
- [
- -97.62694,
- 32.84104
- ],
- [
- -97.62673,
- 32.85457
- ],
- [
- -97.62652,
- 32.86809
- ],
- [
- -97.62632,
- 32.88162
- ],
- [
- -97.62611,
- 32.89515
- ],
- [
- -97.6259,
- 32.90868
- ],
- [
- -97.62569,
- 32.9222
- ],
- [
- -97.62548,
- 32.93573
- ],
- [
- -97.62527,
- 32.94926
- ],
- [
- -97.62506,
- 32.96278
- ],
- [
- -97.64111,
- 32.96296
- ],
- [
- -97.6409,
- 32.97648
- ],
- [
- -97.64069,
- 32.99001
- ],
- [
- -97.64049,
- 33.00354
- ],
- [
- -97.62443,
- 33.00336
- ],
- [
- -97.60838,
- 33.00318
- ],
- [
- -97.59233,
- 33.003
- ],
- [
- -97.57627,
- 33.00282
- ],
- [
- -97.56022,
- 33.00264
- ],
- [
- -97.54417,
- 33.00245
- ],
- [
- -97.52812,
- 33.00226
- ],
- [
- -97.51206,
- 33.00207
- ],
- [
- -97.49601,
- 33.00188
- ],
- [
- -97.47996,
- 33.00169
- ],
- [
- -97.46391,
- 33.00149
- ],
- [
- -97.44786,
- 33.00129
- ],
- [
- -97.4318,
- 33.00109
- ],
- [
- -97.41575,
- 33.00089
- ],
- [
- -97.3997,
- 33.00068
- ],
- [
- -97.38365,
- 33.00048
- ],
- [
- -97.3676,
- 33.00027
- ],
- [
- -97.35155,
- 33.00006
- ],
- [
- -97.3513,
- 33.01358
- ],
- [
- -97.33524,
- 33.01337
- ],
- [
- -97.31919,
- 33.01315
- ],
- [
- -97.30314,
- 33.01294
- ],
- [
- -97.28709,
- 33.01272
- ],
- [
- -97.27103,
- 33.0125
- ],
- [
- -97.25498,
- 33.01227
- ],
- [
- -97.23893,
- 33.01205
- ],
- [
- -97.22288,
- 33.01182
- ],
- [
- -97.20683,
- 33.01159
- ],
- [
- -97.19078,
- 33.01136
- ],
- [
- -97.17472,
- 33.01112
- ],
- [
- -97.15867,
- 33.01089
- ],
- [
- -97.14262,
- 33.01065
- ],
- [
- -97.12657,
- 33.01041
- ],
- [
- -97.11052,
- 33.01017
- ],
- [
- -97.09447,
- 33.00992
- ],
- [
- -97.07842,
- 33.00968
- ],
- [
- -97.06237,
- 33.00943
- ],
- [
- -97.04632,
- 33.00918
- ],
- [
- -97.03027,
- 33.00893
- ],
- [
- -97.01422,
- 33.00867
- ],
- [
- -97.01392,
- 33.02219
- ],
- [
- -97.01362,
- 33.03572
- ],
- [
- -97.01331,
- 33.04924
- ],
- [
- -97.01301,
- 33.06276
- ],
- [
- -97.01271,
- 33.07628
- ],
- [
- -97.0124,
- 33.08981
- ],
- [
- -97.0121,
- 33.10333
- ],
- [
- -97.01179,
- 33.11685
- ],
- [
- -97.01149,
- 33.13037
- ],
- [
- -96.99542,
- 33.13012
- ],
- [
- -96.97935,
- 33.12986
- ],
- [
- -96.96327,
- 33.12959
- ],
- [
- -96.9472,
- 33.12933
- ],
- [
- -96.93113,
- 33.12906
- ],
- [
- -96.91506,
- 33.1288
- ],
- [
- -96.89899,
- 33.12853
- ],
- [
- -96.88292,
- 33.12825
- ],
- [
- -96.8826,
- 33.14177
- ],
- [
- -96.88227,
- 33.1553
- ],
- [
- -96.88195,
- 33.16882
- ],
- [
- -96.88162,
- 33.18234
- ],
- [
- -96.8813,
- 33.19586
- ],
- [
- -96.88097,
- 33.20938
- ],
- [
- -96.88065,
- 33.2229
- ],
- [
- -96.88032,
- 33.23642
- ],
- [
- -96.87999,
- 33.24994
- ],
- [
- -96.87967,
- 33.26346
- ],
- [
- -96.86357,
- 33.26319
- ],
- [
- -96.84748,
- 33.26291
- ],
- [
- -96.83139,
- 33.26263
- ],
- [
- -96.81529,
- 33.26235
- ],
- [
- -96.7992,
- 33.26206
- ],
- [
- -96.78311,
- 33.26178
- ],
- [
- -96.76701,
- 33.26149
- ],
- [
- -96.75092,
- 33.2612
- ],
- [
- -96.73483,
- 33.26091
- ],
- [
- -96.73518,
- 33.24739
- ],
- [
- -96.73553,
- 33.23387
- ],
- [
- -96.73587,
- 33.22035
- ],
- [
- -96.73622,
- 33.20683
- ],
- [
- -96.73657,
- 33.19331
- ],
- [
- -96.73692,
- 33.17979
- ],
- [
- -96.73727,
- 33.16627
- ],
- [
- -96.73761,
- 33.15275
- ],
- [
- -96.73796,
- 33.13923
- ],
- [
- -96.73831,
- 33.12571
- ],
- [
- -96.72224,
- 33.12542
- ],
- [
- -96.70617,
- 33.12512
- ],
- [
- -96.70582,
- 33.13864
- ],
- [
- -96.68975,
- 33.13835
- ],
- [
- -96.67368,
- 33.13805
- ],
- [
- -96.65761,
- 33.13775
- ],
- [
- -96.64155,
- 33.13744
- ],
- [
- -96.62548,
- 33.13714
- ],
- [
- -96.60941,
- 33.13683
- ],
- [
- -96.59334,
- 33.13652
- ],
- [
- -96.57727,
- 33.13621
- ],
- [
- -96.56121,
- 33.13589
- ],
- [
- -96.54514,
- 33.13558
- ],
- [
- -96.52907,
- 33.13526
- ],
- [
- -96.513,
- 33.13494
- ],
- [
- -96.49694,
- 33.13462
- ],
- [
- -96.49732,
- 33.1211
- ],
- [
- -96.49771,
- 33.10758
- ],
- [
- -96.49809,
- 33.09407
- ],
- [
- -96.49847,
- 33.08055
- ],
- [
- -96.49885,
- 33.06703
- ],
- [
- -96.49924,
- 33.05351
- ],
- [
- -96.49962,
- 33.04
- ],
- [
- -96.48357,
- 33.03967
- ],
- [
- -96.48395,
- 33.02616
- ],
- [
- -96.48434,
- 33.01264
- ],
- [
- -96.46829,
- 33.01231
- ],
- [
- -96.45225,
- 33.01199
- ],
- [
- -96.43621,
- 33.01166
- ],
- [
- -96.42016,
- 33.01133
- ],
- [
- -96.40412,
- 33.011
- ],
- [
- -96.38808,
- 33.01066
- ],
- [
- -96.37204,
- 33.01032
- ],
- [
- -96.37244,
- 32.99681
- ],
- [
- -96.37284,
- 32.98329
- ],
- [
- -96.37324,
- 32.96977
- ],
- [
- -96.37364,
- 32.95626
- ],
- [
- -96.37404,
- 32.94274
- ],
- [
- -96.37444,
- 32.92923
- ],
- [
- -96.37484,
- 32.91571
- ],
- [
- -96.35881,
- 32.91537
- ],
- [
- -96.35922,
- 32.90186
- ],
- [
- -96.35962,
- 32.88834
- ],
- [
- -96.36002,
- 32.87482
- ],
- [
- -96.36042,
- 32.86131
- ],
- [
- -96.36082,
- 32.84779
- ],
- [
- -96.36122,
- 32.83427
- ],
- [
- -96.36162,
- 32.82076
- ],
- [
- -96.36202,
- 32.80724
- ],
- [
- -96.36242,
- 32.79372
- ],
- [
- -96.36282,
- 32.78021
- ],
- [
- -96.36322,
- 32.76669
- ],
- [
- -96.36361,
- 32.75317
- ],
- [
- -96.36401,
- 32.73966
- ],
- [
- -96.38001,
- 32.73999
- ],
- [
- -96.396,
- 32.74033
- ],
- [
- -96.41199,
- 32.74066
- ],
- [
- -96.42799,
- 32.74099
- ],
- [
- -96.44398,
- 32.74131
- ],
- [
- -96.45998,
- 32.74164
- ],
- [
- -96.47597,
- 32.74196
- ],
- [
- -96.49197,
- 32.74228
- ],
- [
- -96.49235,
- 32.72877
- ],
- [
- -96.49273,
- 32.71525
- ],
- [
- -96.4931,
- 32.70173
- ],
- [
- -96.49348,
- 32.68821
- ],
- [
- -96.49386,
- 32.67469
- ],
- [
- -96.49424,
- 32.66117
- ],
- [
- -96.49461,
- 32.64766
- ],
- [
- -96.49499,
- 32.63414
- ],
- [
- -96.49537,
- 32.62062
- ],
- [
- -96.51134,
- 32.62094
- ],
- [
- -96.52732,
- 32.62125
- ],
- [
- -96.54329,
- 32.62157
- ],
- [
- -96.55927,
- 32.62188
- ],
- [
- -96.57524,
- 32.62219
- ],
- [
- -96.59122,
- 32.6225
- ],
- [
- -96.60719,
- 32.6228
- ],
- [
- -96.62317,
- 32.6231
- ],
- [
- -96.63914,
- 32.62341
- ],
- [
- -96.65512,
- 32.62371
- ],
- [
- -96.6711,
- 32.624
- ],
- [
- -96.68707,
- 32.6243
- ],
- [
- -96.70305,
- 32.62459
- ],
- [
- -96.71903,
- 32.62488
- ],
- [
- -96.71937,
- 32.61136
- ],
- [
- -96.73534,
- 32.61165
- ],
- [
- -96.73568,
- 32.59813
- ],
- [
- -96.73602,
- 32.58461
- ],
- [
- -96.73636,
- 32.57109
- ],
- [
- -96.7367,
- 32.55757
- ],
- [
- -96.73704,
- 32.54405
- ],
- [
- -96.73738,
- 32.53053
- ],
- [
- -96.73772,
- 32.51701
- ],
- [
- -96.73806,
- 32.50348
- ],
- [
- -96.7384,
- 32.48996
- ],
- [
- -96.73874,
- 32.47644
- ],
- [
- -96.73908,
- 32.46292
- ],
- [
- -96.73941,
- 32.4494
- ],
- [
- -96.73975,
- 32.43588
- ],
- [
- -96.74009,
- 32.42236
- ],
- [
- -96.74043,
- 32.40884
- ],
- [
- -96.74076,
- 32.39531
- ],
- [
- -96.7411,
- 32.38179
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Strategic Mapping Program (StratMap). Dallas and Fort Worth Imagery, 2015-01-01",
- "url": "https://data.tnris.org/collection/1849447b-4f62-4318-81d3-9fef9c31482c"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "US",
- "end_date": "2015",
- "id": "dallas_fort_worth_2016_wms",
- "license_url": "https://data.tnris.org/collection/1849447b-4f62-4318-81d3-9fef9c31482c",
- "name": "Dallas and Fort Worth Imagery 2015",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2015",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_DFW/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -97.0,
- 27.85
- ],
- [
- -97.0,
- 27.8
- ],
- [
- -97.1,
- 27.8
- ],
- [
- -97.1,
- 27.9
- ],
- [
- -97.2,
- 27.9
- ],
- [
- -97.2,
- 27.95
- ],
- [
- -97.25,
- 27.95
- ],
- [
- -97.25,
- 28.05
- ],
- [
- -97.3,
- 28.05
- ],
- [
- -97.3,
- 28.1
- ],
- [
- -97.5,
- 28.1
- ],
- [
- -97.5,
- 28.15
- ],
- [
- -97.55,
- 28.15
- ],
- [
- -97.55,
- 28.25
- ],
- [
- -97.5,
- 28.25
- ],
- [
- -97.5,
- 28.3
- ],
- [
- -97.45,
- 28.3
- ],
- [
- -97.45,
- 28.4
- ],
- [
- -97.4,
- 28.4
- ],
- [
- -97.4,
- 28.45
- ],
- [
- -97.3,
- 28.45
- ],
- [
- -97.3,
- 28.5
- ],
- [
- -97.25,
- 28.5
- ],
- [
- -97.25,
- 28.55
- ],
- [
- -97.2,
- 28.55
- ],
- [
- -97.2,
- 28.6
- ],
- [
- -97.1,
- 28.6
- ],
- [
- -97.1,
- 28.55
- ],
- [
- -96.95,
- 28.55
- ],
- [
- -96.95,
- 28.65
- ],
- [
- -96.8,
- 28.65
- ],
- [
- -96.8,
- 28.7
- ],
- [
- -96.7,
- 28.7
- ],
- [
- -96.7,
- 28.75
- ],
- [
- -96.35,
- 28.75
- ],
- [
- -96.35,
- 28.7
- ],
- [
- -96.3,
- 28.7
- ],
- [
- -96.3,
- 28.5
- ],
- [
- -96.35,
- 28.5
- ],
- [
- -96.35,
- 28.3
- ],
- [
- -96.4,
- 28.3
- ],
- [
- -96.4,
- 28.25
- ],
- [
- -96.5,
- 28.25
- ],
- [
- -96.5,
- 28.2
- ],
- [
- -96.6,
- 28.2
- ],
- [
- -96.6,
- 28.15
- ],
- [
- -96.7,
- 28.15
- ],
- [
- -96.7,
- 28.1
- ],
- [
- -96.75,
- 28.1
- ],
- [
- -96.75,
- 28.05
- ],
- [
- -96.8,
- 28.05
- ],
- [
- -96.8,
- 28.0
- ],
- [
- -96.9,
- 28.0
- ],
- [
- -96.9,
- 27.95
- ],
- [
- -96.95,
- 27.95
- ],
- [
- -96.95,
- 27.9
- ],
- [
- -97.0,
- 27.9
- ],
- [
- -97.0,
- 27.85
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Strategic Mapping Program (StratMap). San Antonio River Authority Imagery, 2016-08-01",
- "url": "https://data.tnris.org/collection/bfdb7a76-a36c-4e9b-ba18-e8c8b259ed91"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "US",
- "end_date": "2016",
- "id": "san_antonio_river_2016_wms",
- "license_url": "https://data.tnris.org/collection/bfdb7a76-a36c-4e9b-ba18-e8c8b259ed91",
- "name": "San Antonio River Authority Imagery 2016",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2016",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/StratMap/StratMap16_NC_CIR_12in_SARA/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -94.98,
- 32.19
- ],
- [
- -94.98,
- 32.13
- ],
- [
- -95.49,
- 32.13
- ],
- [
- -95.49,
- 32.28
- ],
- [
- -95.46,
- 32.28
- ],
- [
- -95.46,
- 32.34
- ],
- [
- -95.49,
- 32.34
- ],
- [
- -95.49,
- 32.37
- ],
- [
- -95.52,
- 32.37
- ],
- [
- -95.52,
- 32.4
- ],
- [
- -95.55,
- 32.4
- ],
- [
- -95.55,
- 32.43
- ],
- [
- -95.58,
- 32.43
- ],
- [
- -95.58,
- 32.46
- ],
- [
- -95.61,
- 32.46
- ],
- [
- -95.61,
- 32.7
- ],
- [
- -95.55,
- 32.7
- ],
- [
- -95.55,
- 32.67
- ],
- [
- -95.52,
- 32.67
- ],
- [
- -95.52,
- 32.64
- ],
- [
- -95.43,
- 32.64
- ],
- [
- -95.43,
- 32.61
- ],
- [
- -95.28,
- 32.61
- ],
- [
- -95.28,
- 32.58
- ],
- [
- -95.07,
- 32.58
- ],
- [
- -95.07,
- 32.55
- ],
- [
- -94.98,
- 32.55
- ],
- [
- -94.98,
- 32.19
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "Smith County (Smith). Smith County Imagery, 2019-12-11",
- "url": "https://data.tnris.org/collection/38f1b2e7-6fc7-4357-80a4-1ee33d7abaaf"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "best": true,
- "category": "photo",
- "country_code": "US",
- "end_date": "2019",
- "id": "smith_county_2019_wms",
- "license_url": "https://data.tnris.org/collection/38f1b2e7-6fc7-4357-80a4-1ee33d7abaaf",
- "name": "Smith County Imagery 2019",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2019",
- "type": "wms",
- "url": "https://imagery.tnris.org/server/services/Smith_County/SmithCo_2020_NCCIR_6in/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -99.99854,
- 34.56018
- ],
- [
- -95.55655,
- 33.99257
- ],
- [
- -93.89679,
- 33.61039
- ],
- [
- -93.98468,
- 32.04103
- ],
- [
- -93.41614,
- 31.02505
- ],
- [
- -93.74531,
- 29.57268
- ],
- [
- -96.50492,
- 28.23159
- ],
- [
- -97.36942,
- 26.95467
- ],
- [
- -97.04867,
- 25.8053
- ],
- [
- -99.07342,
- 26.32559
- ],
- [
- -100.76599,
- 29.02532
- ],
- [
- -102.33154,
- 29.84339
- ],
- [
- -103.13355,
- 28.88112
- ],
- [
- -104.28879,
- 29.28831
- ],
- [
- -104.72698,
- 29.94816
- ],
- [
- -104.72697,
- 30.23535
- ],
- [
- -106.5345,
- 31.78457
- ],
- [
- -106.75767,
- 31.78457
- ],
- [
- -106.75766,
- 32.04386
- ],
- [
- -106.61848,
- 32.04385
- ],
- [
- -103.11949,
- 32.04376
- ],
- [
- -103.09544,
- 36.50046
- ],
- [
- -103.05798,
- 36.54269
- ],
- [
- -100.00042,
- 36.54222
- ],
- [
- -99.99854,
- 34.56018
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "United States Department of Agriculture (USDA). Texas NAIP Imagery, 2012-10-01",
- "url": "https://data.tnris.org/collection/924d3c6f-9f74-4147-8044-d4025f12eac3"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "historicphoto",
- "country_code": "US",
- "end_date": "2012",
- "id": "texas_naip_2012_wms",
- "license_url": "https://data.tnris.org/collection/924d3c6f-9f74-4147-8044-d4025f12eac3",
- "name": "Texas NAIP Imagery 2012",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2012",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/NAIP/NAIP12_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -99.99854,
- 34.56018
- ],
- [
- -95.55655,
- 33.99257
- ],
- [
- -93.89679,
- 33.61039
- ],
- [
- -93.98468,
- 32.04103
- ],
- [
- -93.41614,
- 31.02505
- ],
- [
- -93.74531,
- 29.57268
- ],
- [
- -96.50492,
- 28.23159
- ],
- [
- -97.36942,
- 26.95467
- ],
- [
- -97.04867,
- 25.8053
- ],
- [
- -99.07342,
- 26.32559
- ],
- [
- -100.76599,
- 29.02532
- ],
- [
- -102.33154,
- 29.84339
- ],
- [
- -103.13355,
- 28.88112
- ],
- [
- -104.28879,
- 29.28831
- ],
- [
- -104.72698,
- 29.94816
- ],
- [
- -104.72697,
- 30.23535
- ],
- [
- -106.5345,
- 31.78457
- ],
- [
- -106.75767,
- 31.78457
- ],
- [
- -106.75766,
- 32.04386
- ],
- [
- -106.61848,
- 32.04385
- ],
- [
- -103.11949,
- 32.04376
- ],
- [
- -103.09544,
- 36.50046
- ],
- [
- -103.05798,
- 36.54269
- ],
- [
- -100.00042,
- 36.54222
- ],
- [
- -99.99854,
- 34.56018
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "United States Department of Agriculture (USDA). Texas NAIP Imagery, 2014-10-31",
- "url": "https://data.tnris.org/collection/e7d2ccee-5288-4257-85bc-e4a2babf91ee"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "historicphoto",
- "country_code": "US",
- "end_date": "2014",
- "id": "texas_naip_2014_wms",
- "license_url": "https://data.tnris.org/collection/e7d2ccee-5288-4257-85bc-e4a2babf91ee",
- "name": "Texas NAIP Imagery 2014",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2014",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/NAIP/NAIP14_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -99.99854,
- 34.56018
- ],
- [
- -95.55655,
- 33.99257
- ],
- [
- -93.89679,
- 33.61039
- ],
- [
- -93.98468,
- 32.04103
- ],
- [
- -93.41614,
- 31.02505
- ],
- [
- -93.74531,
- 29.57268
- ],
- [
- -96.50492,
- 28.23159
- ],
- [
- -97.36942,
- 26.95467
- ],
- [
- -97.04867,
- 25.8053
- ],
- [
- -99.07342,
- 26.32559
- ],
- [
- -100.76599,
- 29.02532
- ],
- [
- -102.33154,
- 29.84339
- ],
- [
- -103.13355,
- 28.88112
- ],
- [
- -104.28879,
- 29.28831
- ],
- [
- -104.72698,
- 29.94816
- ],
- [
- -104.72697,
- 30.23535
- ],
- [
- -106.5345,
- 31.78457
- ],
- [
- -106.75767,
- 31.78457
- ],
- [
- -106.75766,
- 32.04386
- ],
- [
- -106.61848,
- 32.04385
- ],
- [
- -103.11949,
- 32.04376
- ],
- [
- -103.09544,
- 36.50046
- ],
- [
- -103.05798,
- 36.54269
- ],
- [
- -100.00042,
- 36.54222
- ],
- [
- -99.99854,
- 34.56018
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "United States Department of Agriculture (USDA). Texas NAIP Imagery, 2016-12-15",
- "url": "https://data.tnris.org/collection/a40c2ff9-ccac-4c76-99a1-2382c09cf716"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "historicphoto",
- "country_code": "US",
- "end_date": "2016",
- "id": "texas_naip_2016_wms",
- "license_url": "https://data.tnris.org/collection/a40c2ff9-ccac-4c76-99a1-2382c09cf716",
- "name": "Texas NAIP Imagery 2016",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2016",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/NAIP/NAIP16_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -99.99854,
- 34.56018
- ],
- [
- -95.55655,
- 33.99257
- ],
- [
- -93.89679,
- 33.61039
- ],
- [
- -93.98468,
- 32.04103
- ],
- [
- -93.41614,
- 31.02505
- ],
- [
- -93.74531,
- 29.57268
- ],
- [
- -96.50492,
- 28.23159
- ],
- [
- -97.36942,
- 26.95467
- ],
- [
- -97.04867,
- 25.8053
- ],
- [
- -99.07342,
- 26.32559
- ],
- [
- -100.76599,
- 29.02532
- ],
- [
- -102.33154,
- 29.84339
- ],
- [
- -103.13355,
- 28.88112
- ],
- [
- -104.28879,
- 29.28831
- ],
- [
- -104.72698,
- 29.94816
- ],
- [
- -104.72697,
- 30.23535
- ],
- [
- -106.5345,
- 31.78457
- ],
- [
- -106.75767,
- 31.78457
- ],
- [
- -106.75766,
- 32.04386
- ],
- [
- -106.61848,
- 32.04385
- ],
- [
- -103.11949,
- 32.04376
- ],
- [
- -103.09544,
- 36.50046
- ],
- [
- -103.05798,
- 36.54269
- ],
- [
- -100.00042,
- 36.54222
- ],
- [
- -99.99854,
- 34.56018
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "United States Department of Agriculture (USDA). Texas NAIP Imagery, 2018-12-31",
- "url": "https://data.tnris.org/collection/f1d66250-4021-47df-9fe9-9fca286b0f50"
- },
- "available_projections": [
- "CRS:84",
- "EPSG:3857",
- "EPSG:4326"
- ],
- "category": "photo",
- "country_code": "US",
- "end_date": "2018",
- "id": "texas_naip_2018_wms",
- "license_url": "https://data.tnris.org/collection/f1d66250-4021-47df-9fe9-9fca286b0f50",
- "name": "Texas NAIP Imagery 2018",
- "privacy_policy_url": "https://tnris.org/site-policies/#privacy-and-security-policy",
- "start_date": "2018",
- "type": "wms",
- "url": "https://webservices.tnris.org/arcgis/services/NAIP/NAIP18_NC_CIR_60cm/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -83.64853,
- 36.6023
- ],
- [
- -79.9118,
- 36.55819
- ],
- [
- -75.90179,
- 36.56701
- ],
- [
- -75.8606,
- 36.985
- ],
- [
- -75.19867,
- 38.0178
- ],
- [
- -76.15448,
- 37.99183
- ],
- [
- -76.25336,
- 37.92253
- ],
- [
- -76.62689,
- 38.1648
- ],
- [
- -76.90704,
- 38.22524
- ],
- [
- -77.05536,
- 38.42132
- ],
- [
- -77.19818,
- 38.37396
- ],
- [
- -77.28333,
- 38.3675
- ],
- [
- -77.31628,
- 38.45789
- ],
- [
- -77.25586,
- 38.58253
- ],
- [
- -77.15698,
- 38.61043
- ],
- [
- -77.11853,
- 38.68337
- ],
- [
- -77.0636,
- 38.69409
- ],
- [
- -77.05811,
- 38.82259
- ],
- [
- -77.07458,
- 38.88462
- ],
- [
- -77.20367,
- 38.99357
- ],
- [
- -77.3822,
- 39.07038
- ],
- [
- -77.47833,
- 39.09809
- ],
- [
- -77.53876,
- 39.16627
- ],
- [
- -77.4646,
- 39.23651
- ],
- [
- -77.59918,
- 39.30455
- ],
- [
- -77.74475,
- 39.33005
- ],
- [
- -77.84637,
- 39.14284
- ],
- [
- -78.36273,
- 39.45528
- ],
- [
- -78.3847,
- 39.36616
- ],
- [
- -78.36548,
- 39.32792
- ],
- [
- -78.4671,
- 39.19182
- ],
- [
- -78.60168,
- 39.03199
- ],
- [
- -78.69232,
- 38.94659
- ],
- [
- -78.89282,
- 38.76479
- ],
- [
- -78.99719,
- 38.8504
- ],
- [
- -79.13727,
- 38.68551
- ],
- [
- -79.31854,
- 38.42993
- ],
- [
- -79.5108,
- 38.46004
- ],
- [
- -79.56299,
- 38.54817
- ],
- [
- -79.65637,
- 38.58253
- ],
- [
- -79.71954,
- 38.50519
- ],
- [
- -79.70856,
- 38.44068
- ],
- [
- -79.94476,
- 38.16911
- ],
- [
- -80.00519,
- 38.0243
- ],
- [
- -80.21942,
- 37.83148
- ],
- [
- -80.32379,
- 37.67513
- ],
- [
- -80.22766,
- 37.62511
- ],
- [
- -80.36224,
- 37.56417
- ],
- [
- -80.32928,
- 37.52498
- ],
- [
- -80.49408,
- 37.42907
- ],
- [
- -80.53253,
- 37.48794
- ],
- [
- -80.78522,
- 37.37889
- ],
- [
- -80.86487,
- 37.43561
- ],
- [
- -80.9198,
- 37.39635
- ],
- [
- -80.88135,
- 37.36143
- ],
- [
- -81.02692,
- 37.28935
- ],
- [
- -81.26038,
- 37.25219
- ],
- [
- -81.37024,
- 37.34396
- ],
- [
- -81.47736,
- 37.26312
- ],
- [
- -81.55426,
- 37.22595
- ],
- [
- -81.71906,
- 37.20189
- ],
- [
- -81.98273,
- 37.42689
- ],
- [
- -81.96899,
- 37.55329
- ],
- [
- -82.40845,
- 37.26531
- ],
- [
- -82.74078,
- 37.13186
- ],
- [
- -82.73529,
- 37.05299
- ],
- [
- -82.90283,
- 36.985
- ],
- [
- -82.87811,
- 36.90818
- ],
- [
- -83.02643,
- 36.85765
- ],
- [
- -83.07587,
- 36.85765
- ],
- [
- -83.16101,
- 36.74989
- ],
- [
- -83.44666,
- 36.69265
- ],
- [
- -83.61145,
- 36.64418
- ],
- [
- -83.63892,
- 36.63592
- ],
- [
- -83.69385,
- 36.61222
- ],
- [
- -83.70003,
- 36.6023
- ],
- [
- -83.64853,
- 36.6023
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Virginia Geographic Information Network (VGIN)",
- "url": "https://vgin.maps.arcgis.com/home/item.html?id=bcd049dfcdc342a7a08ec81644eeb339"
- },
- "best": false,
- "country_code": "US",
- "description": "Virginia Building Footprint Map Service",
- "end_date": "2018-06",
- "id": "VGIN-BuildingFootprints_WM",
- "license_url": "http://data.virginia.gov/#opendata",
- "max_zoom": 20,
- "name": "Virginia Building Footprints",
- "overlay": true,
- "start_date": "2015-05",
- "type": "tms",
- "url": "https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=https%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FVA_Base_layers%2FVA_Building_Footprints%2FMapServer&transparent=true&layers=show%3A20"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -83.64853,
- 36.6023
- ],
- [
- -79.9118,
- 36.55819
- ],
- [
- -75.90179,
- 36.56701
- ],
- [
- -75.8606,
- 36.985
- ],
- [
- -75.19867,
- 38.0178
- ],
- [
- -76.15448,
- 37.99183
- ],
- [
- -76.25336,
- 37.92253
- ],
- [
- -76.62689,
- 38.1648
- ],
- [
- -76.90704,
- 38.22524
- ],
- [
- -77.05536,
- 38.42132
- ],
- [
- -77.19818,
- 38.37396
- ],
- [
- -77.28333,
- 38.3675
- ],
- [
- -77.31628,
- 38.45789
- ],
- [
- -77.25586,
- 38.58253
- ],
- [
- -77.15698,
- 38.61043
- ],
- [
- -77.11853,
- 38.68337
- ],
- [
- -77.0636,
- 38.69409
- ],
- [
- -77.05811,
- 38.82259
- ],
- [
- -77.07458,
- 38.88462
- ],
- [
- -77.20367,
- 38.99357
- ],
- [
- -77.3822,
- 39.07038
- ],
- [
- -77.47833,
- 39.09809
- ],
- [
- -77.53876,
- 39.16627
- ],
- [
- -77.4646,
- 39.23651
- ],
- [
- -77.59918,
- 39.30455
- ],
- [
- -77.74475,
- 39.33005
- ],
- [
- -77.84637,
- 39.14284
- ],
- [
- -78.36273,
- 39.45528
- ],
- [
- -78.3847,
- 39.36616
- ],
- [
- -78.36548,
- 39.32792
- ],
- [
- -78.4671,
- 39.19182
- ],
- [
- -78.60168,
- 39.03199
- ],
- [
- -78.69232,
- 38.94659
- ],
- [
- -78.89282,
- 38.76479
- ],
- [
- -78.99719,
- 38.8504
- ],
- [
- -79.13727,
- 38.68551
- ],
- [
- -79.31854,
- 38.42993
- ],
- [
- -79.5108,
- 38.46004
- ],
- [
- -79.56299,
- 38.54817
- ],
- [
- -79.65637,
- 38.58253
- ],
- [
- -79.71954,
- 38.50519
- ],
- [
- -79.70856,
- 38.44068
- ],
- [
- -79.94476,
- 38.16911
- ],
- [
- -80.00519,
- 38.0243
- ],
- [
- -80.21942,
- 37.83148
- ],
- [
- -80.32379,
- 37.67513
- ],
- [
- -80.22766,
- 37.62511
- ],
- [
- -80.36224,
- 37.56417
- ],
- [
- -80.32928,
- 37.52498
- ],
- [
- -80.49408,
- 37.42907
- ],
- [
- -80.53253,
- 37.48794
- ],
- [
- -80.78522,
- 37.37889
- ],
- [
- -80.86487,
- 37.43561
- ],
- [
- -80.9198,
- 37.39635
- ],
- [
- -80.88135,
- 37.36143
- ],
- [
- -81.02692,
- 37.28935
- ],
- [
- -81.26038,
- 37.25219
- ],
- [
- -81.37024,
- 37.34396
- ],
- [
- -81.47736,
- 37.26312
- ],
- [
- -81.55426,
- 37.22595
- ],
- [
- -81.71906,
- 37.20189
- ],
- [
- -81.98273,
- 37.42689
- ],
- [
- -81.96899,
- 37.55329
- ],
- [
- -82.40845,
- 37.26531
- ],
- [
- -82.74078,
- 37.13186
- ],
- [
- -82.73529,
- 37.05299
- ],
- [
- -82.90283,
- 36.985
- ],
- [
- -82.87811,
- 36.90818
- ],
- [
- -83.02643,
- 36.85765
- ],
- [
- -83.07587,
- 36.85765
- ],
- [
- -83.16101,
- 36.74989
- ],
- [
- -83.44666,
- 36.69265
- ],
- [
- -83.61145,
- 36.64418
- ],
- [
- -83.63892,
- 36.63592
- ],
- [
- -83.69385,
- 36.61222
- ],
- [
- -83.70003,
- 36.6023
- ],
- [
- -83.64853,
- 36.6023
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Virginia Geographic Information Network (VGIN)",
- "url": "https://vgin.maps.arcgis.com/home/item.html?id=36386a7e7dae4032a33cb0b83a1711f1"
- },
- "best": false,
- "country_code": "US",
- "description": "The most recently available VBMP orthoimagery for all of Virginia.",
- "end_date": "2018-08",
- "id": "VGIN-Imagery_WM",
- "license_url": "http://data.virginia.gov/#opendata",
- "max_zoom": 20,
- "name": "Virginia Imagery Service - Most Recent",
- "start_date": "2013-04",
- "type": "tms",
- "url": "https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=https%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FMostRecentImagery%2FMostRecentImagery_WGS%2FMapServer&transparent=true&layers=show%3A0"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -83.64853,
- 36.6023
- ],
- [
- -79.9118,
- 36.55819
- ],
- [
- -75.90179,
- 36.56701
- ],
- [
- -75.8606,
- 36.985
- ],
- [
- -75.19867,
- 38.0178
- ],
- [
- -76.15448,
- 37.99183
- ],
- [
- -76.25336,
- 37.92253
- ],
- [
- -76.62689,
- 38.1648
- ],
- [
- -76.90704,
- 38.22524
- ],
- [
- -77.05536,
- 38.42132
- ],
- [
- -77.19818,
- 38.37396
- ],
- [
- -77.28333,
- 38.3675
- ],
- [
- -77.31628,
- 38.45789
- ],
- [
- -77.25586,
- 38.58253
- ],
- [
- -77.15698,
- 38.61043
- ],
- [
- -77.11853,
- 38.68337
- ],
- [
- -77.0636,
- 38.69409
- ],
- [
- -77.05811,
- 38.82259
- ],
- [
- -77.07458,
- 38.88462
- ],
- [
- -77.20367,
- 38.99357
- ],
- [
- -77.3822,
- 39.07038
- ],
- [
- -77.47833,
- 39.09809
- ],
- [
- -77.53876,
- 39.16627
- ],
- [
- -77.4646,
- 39.23651
- ],
- [
- -77.59918,
- 39.30455
- ],
- [
- -77.74475,
- 39.33005
- ],
- [
- -77.84637,
- 39.14284
- ],
- [
- -78.36273,
- 39.45528
- ],
- [
- -78.3847,
- 39.36616
- ],
- [
- -78.36548,
- 39.32792
- ],
- [
- -78.4671,
- 39.19182
- ],
- [
- -78.60168,
- 39.03199
- ],
- [
- -78.69232,
- 38.94659
- ],
- [
- -78.89282,
- 38.76479
- ],
- [
- -78.99719,
- 38.8504
- ],
- [
- -79.13727,
- 38.68551
- ],
- [
- -79.31854,
- 38.42993
- ],
- [
- -79.5108,
- 38.46004
- ],
- [
- -79.56299,
- 38.54817
- ],
- [
- -79.65637,
- 38.58253
- ],
- [
- -79.71954,
- 38.50519
- ],
- [
- -79.70856,
- 38.44068
- ],
- [
- -79.94476,
- 38.16911
- ],
- [
- -80.00519,
- 38.0243
- ],
- [
- -80.21942,
- 37.83148
- ],
- [
- -80.32379,
- 37.67513
- ],
- [
- -80.22766,
- 37.62511
- ],
- [
- -80.36224,
- 37.56417
- ],
- [
- -80.32928,
- 37.52498
- ],
- [
- -80.49408,
- 37.42907
- ],
- [
- -80.53253,
- 37.48794
- ],
- [
- -80.78522,
- 37.37889
- ],
- [
- -80.86487,
- 37.43561
- ],
- [
- -80.9198,
- 37.39635
- ],
- [
- -80.88135,
- 37.36143
- ],
- [
- -81.02692,
- 37.28935
- ],
- [
- -81.26038,
- 37.25219
- ],
- [
- -81.37024,
- 37.34396
- ],
- [
- -81.47736,
- 37.26312
- ],
- [
- -81.55426,
- 37.22595
- ],
- [
- -81.71906,
- 37.20189
- ],
- [
- -81.98273,
- 37.42689
- ],
- [
- -81.96899,
- 37.55329
- ],
- [
- -82.40845,
- 37.26531
- ],
- [
- -82.74078,
- 37.13186
- ],
- [
- -82.73529,
- 37.05299
- ],
- [
- -82.90283,
- 36.985
- ],
- [
- -82.87811,
- 36.90818
- ],
- [
- -83.02643,
- 36.85765
- ],
- [
- -83.07587,
- 36.85765
- ],
- [
- -83.16101,
- 36.74989
- ],
- [
- -83.44666,
- 36.69265
- ],
- [
- -83.61145,
- 36.64418
- ],
- [
- -83.63892,
- 36.63592
- ],
- [
- -83.69385,
- 36.61222
- ],
- [
- -83.70003,
- 36.6023
- ],
- [
- -83.64853,
- 36.6023
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Virginia Geographic Information Network (VGIN)",
- "url": "https://vgin.maps.arcgis.com/home/item.html?id=f1dccaf1f42e40cbba791feae2e23690"
- },
- "best": false,
- "country_code": "US",
- "description": "A statewide Parcel service showing property ownership outlines where available",
- "end_date": "2018-06",
- "id": "VGIN-PropertyLines_WM",
- "license_url": "http://data.virginia.gov/#opendata",
- "max_zoom": 20,
- "name": "Virginia Property Lines",
- "overlay": true,
- "start_date": "2015-05",
- "type": "tms",
- "url": "https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=http%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FVA_Base_layers%2FVA_Parcels%2FMapServer&transparent=true"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 112.28778,
- -28.78459
- ],
- [
- 112.71488,
- -31.13894
- ],
- [
- 114.11263,
- -34.17829
- ],
- [
- 113.60788,
- -37.39012
- ],
- [
- 117.17992,
- -37.45179
- ],
- [
- 119.31538,
- -37.42096
- ],
- [
- 121.72262,
- -36.70839
- ],
- [
- 123.81925,
- -35.76893
- ],
- [
- 125.9547,
- -34.3066
- ],
- [
- 127.97368,
- -33.7274
- ],
- [
- 130.07031,
- -33.24166
- ],
- [
- 130.10913,
- -33.8887
- ],
- [
- 131.00214,
- -34.04971
- ],
- [
- 131.0798,
- -34.72257
- ],
- [
- 132.28342,
- -35.39
- ],
- [
- 134.18591,
- -35.61126
- ],
- [
- 133.8753,
- -37.1119
- ],
- [
- 134.8459,
- -37.6365
- ],
- [
- 139.7769,
- -37.82075
- ],
- [
- 139.93223,
- -39.4283
- ],
- [
- 141.6017,
- -39.8767
- ],
- [
- 142.3783,
- -39.36829
- ],
- [
- 142.3783,
- -40.64702
- ],
- [
- 142.49478,
- -42.07487
- ],
- [
- 144.009,
- -44.06013
- ],
- [
- 147.23161,
- -44.03222
- ],
- [
- 149.05645,
- -42.53431
- ],
- [
- 149.52237,
- -40.99959
- ],
- [
- 149.9494,
- -40.85292
- ],
- [
- 150.8036,
- -38.09627
- ],
- [
- 151.81313,
- -38.12682
- ],
- [
- 156.20052,
- -22.66771
- ],
- [
- 156.20052,
- -20.10109
- ],
- [
- 156.62761,
- -17.41763
- ],
- [
- 155.26869,
- -17.19521
- ],
- [
- 154.14272,
- -19.51662
- ],
- [
- 153.5215,
- -18.34139
- ],
- [
- 153.05558,
- -16.5636
- ],
- [
- 152.78379,
- -15.25677
- ],
- [
- 152.27905,
- -13.4135
- ],
- [
- 151.3472,
- -12.39177
- ],
- [
- 149.48354,
- -12.05024
- ],
- [
- 146.9598,
- -9.99241
- ],
- [
- 135.9719,
- -9.99241
- ],
- [
- 130.3032,
- -10.33636
- ],
- [
- 128.09016,
- -12.16414
- ],
- [
- 125.91588,
- -12.31591
- ],
- [
- 124.3239,
- -11.86033
- ],
- [
- 122.03323,
- -11.97429
- ],
- [
- 118.26706,
- -16.9353
- ],
- [
- 115.93747,
- -19.11357
- ],
- [
- 114.0738,
- -21.11863
- ],
- [
- 113.49141,
- -22.59603
- ],
- [
- 112.28778,
- -28.78459
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "AGRI, Geoscience Australia",
- "url": "https://data.gov.au/dataset/agri-the-australian-geographic-reference-image"
- },
- "country_code": "AU",
- "end_date": "2011",
- "id": "AGRI-black_and_white-2.5m",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/Geoscience_Australia",
- "max_zoom": 16,
- "name": "AGRI black-and-white 2.5m",
- "start_date": "2006",
- "type": "tms",
- "url": "https://{switch:a,b,c}.agri.openstreetmap.org/layer/au_ga_agri/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 149.085,
- -35.1171
- ],
- [
- 149.1509,
- -35.1157
- ],
- [
- 149.1509,
- -35.1335
- ],
- [
- 149.1736,
- -35.1335
- ],
- [
- 149.1739,
- -35.1512
- ],
- [
- 149.1957,
- -35.1512
- ],
- [
- 149.1962,
- -35.1689
- ],
- [
- 149.2177,
- -35.1683
- ],
- [
- 149.2192,
- -35.2048
- ],
- [
- 149.241,
- -35.2043
- ],
- [
- 149.2419,
- -35.2223
- ],
- [
- 149.2632,
- -35.2222
- ],
- [
- 149.2644,
- -35.2575
- ],
- [
- 149.3085,
- -35.2571
- ],
- [
- 149.309,
- -35.2751
- ],
- [
- 149.3531,
- -35.2742
- ],
- [
- 149.3536,
- -35.2921
- ],
- [
- 149.3974,
- -35.2917
- ],
- [
- 149.3988,
- -35.3452
- ],
- [
- 149.3777,
- -35.3457
- ],
- [
- 149.3772,
- -35.3641
- ],
- [
- 149.3341,
- -35.3648
- ],
- [
- 149.3385,
- -35.5451
- ],
- [
- 149.1624,
- -35.5487
- ],
- [
- 149.1727,
- -35.9271
- ],
- [
- 149.0175,
- -35.9294
- ],
- [
- 149.0172,
- -35.9113
- ],
- [
- 148.9506,
- -35.9125
- ],
- [
- 148.9499,
- -35.8946
- ],
- [
- 148.9277,
- -35.8949
- ],
- [
- 148.9272,
- -35.8768
- ],
- [
- 148.9053,
- -35.8768
- ],
- [
- 148.9042,
- -35.8586
- ],
- [
- 148.8826,
- -35.859
- ],
- [
- 148.8805,
- -35.7695
- ],
- [
- 148.8361,
- -35.7698
- ],
- [
- 148.8359,
- -35.7521
- ],
- [
- 148.8138,
- -35.7524
- ],
- [
- 148.8131,
- -35.7343
- ],
- [
- 148.7909,
- -35.7347
- ],
- [
- 148.7911,
- -35.7167
- ],
- [
- 148.7688,
- -35.7167
- ],
- [
- 148.7617,
- -35.3924
- ],
- [
- 148.7839,
- -35.3921
- ],
- [
- 148.7822,
- -35.3022
- ],
- [
- 148.8041,
- -35.302
- ],
- [
- 148.8033,
- -35.2836
- ],
- [
- 148.8474,
- -35.2832
- ],
- [
- 148.8469,
- -35.2652
- ],
- [
- 148.8689,
- -35.2643
- ],
- [
- 148.8687,
- -35.2466
- ],
- [
- 148.9128,
- -35.246
- ],
- [
- 148.9123,
- -35.2282
- ],
- [
- 148.9341,
- -35.228
- ],
- [
- 148.9329,
- -35.1919
- ],
- [
- 148.999,
- -35.1904
- ],
- [
- 148.9986,
- -35.1724
- ],
- [
- 149.0206,
- -35.172
- ],
- [
- 149.0204,
- -35.154
- ],
- [
- 149.0637,
- -35.1532
- ],
- [
- 149.0635,
- -35.1355
- ],
- [
- 149.0857,
- -35.1348
- ],
- [
- 149.085,
- -35.1171
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory",
- "url": "https://actmapi-actgov.opendata.arcgis.com/datasets/884456bde6fd46d68e0c05479f55d548"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "end_date": "2017-05",
- "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png",
- "id": "ACT2017",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF",
- "max_zoom": 21,
- "name": "ACTmapi Imagery 2017",
- "privacy_policy_url": "https://www.environment.act.gov.au/about/privacy",
- "start_date": "2017-05",
- "type": "wms",
- "url": "https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2017mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 149.2695,
- -35.4381
- ],
- [
- 149.2669,
- -35.348
- ],
- [
- 149.3329,
- -35.3468
- ],
- [
- 149.3334,
- -35.3648
- ],
- [
- 149.3774,
- -35.364
- ],
- [
- 149.3769,
- -35.3459
- ],
- [
- 149.3989,
- -35.3455
- ],
- [
- 149.3984,
- -35.3275
- ],
- [
- 149.4094,
- -35.3273
- ],
- [
- 149.4088,
- -35.3092
- ],
- [
- 149.3978,
- -35.3095
- ],
- [
- 149.3973,
- -35.2914
- ],
- [
- 149.3533,
- -35.2923
- ],
- [
- 149.3528,
- -35.2743
- ],
- [
- 149.3089,
- -35.2751
- ],
- [
- 149.3084,
- -35.2571
- ],
- [
- 149.2644,
- -35.2579
- ],
- [
- 149.2634,
- -35.2219
- ],
- [
- 149.2415,
- -35.2223
- ],
- [
- 149.241,
- -35.2043
- ],
- [
- 149.219,
- -35.2047
- ],
- [
- 149.218,
- -35.1687
- ],
- [
- 149.1961,
- -35.1691
- ],
- [
- 149.1956,
- -35.151
- ],
- [
- 149.1737,
- -35.1514
- ],
- [
- 149.1732,
- -35.1334
- ],
- [
- 149.1512,
- -35.1338
- ],
- [
- 149.1508,
- -35.1158
- ],
- [
- 149.085,
- -35.1169
- ],
- [
- 149.0854,
- -35.135
- ],
- [
- 149.0635,
- -35.1353
- ],
- [
- 149.0639,
- -35.1534
- ],
- [
- 149.0201,
- -35.1541
- ],
- [
- 149.0205,
- -35.1721
- ],
- [
- 148.9985,
- -35.1725
- ],
- [
- 148.999,
- -35.1905
- ],
- [
- 148.9331,
- -35.1916
- ],
- [
- 148.934,
- -35.2276
- ],
- [
- 148.912,
- -35.228
- ],
- [
- 148.9124,
- -35.246
- ],
- [
- 148.8685,
- -35.2467
- ],
- [
- 148.8689,
- -35.2647
- ],
- [
- 148.8469,
- -35.265
- ],
- [
- 148.8473,
- -35.2831
- ],
- [
- 148.8034,
- -35.2837
- ],
- [
- 148.8038,
- -35.3018
- ],
- [
- 148.7818,
- -35.3021
- ],
- [
- 148.7838,
- -35.3922
- ],
- [
- 148.8058,
- -35.3919
- ],
- [
- 148.8086,
- -35.5181
- ],
- [
- 148.7976,
- -35.5182
- ],
- [
- 148.7994,
- -35.5993
- ],
- [
- 148.8766,
- -35.5982
- ],
- [
- 148.8747,
- -35.517
- ],
- [
- 148.8527,
- -35.5174
- ],
- [
- 148.8508,
- -35.4363
- ],
- [
- 148.8398,
- -35.4364
- ],
- [
- 148.8388,
- -35.3914
- ],
- [
- 149.0039,
- -35.3888
- ],
- [
- 149.0048,
- -35.4248
- ],
- [
- 149.0268,
- -35.4244
- ],
- [
- 149.0277,
- -35.4605
- ],
- [
- 149.0497,
- -35.4601
- ],
- [
- 149.0511,
- -35.5142
- ],
- [
- 149.1613,
- -35.5122
- ],
- [
- 149.1594,
- -35.4402
- ],
- [
- 149.2695,
- -35.4381
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "end_date": "2018-03-19",
- "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png",
- "id": "ACT2018",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF",
- "max_zoom": 21,
- "name": "ACTmapi Imagery 2018",
- "privacy_policy_url": "https://www.environment.act.gov.au/about/privacy",
- "start_date": "2018-03-19",
- "type": "wms",
- "url": "https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2018mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 149.04053,
- -35.09056
- ],
- [
- 149.20498,
- -35.08747
- ],
- [
- 149.20618,
- -35.1237
- ],
- [
- 149.24944,
- -35.12314
- ],
- [
- 149.2515,
- -35.19499
- ],
- [
- 149.29596,
- -35.19429
- ],
- [
- 149.29716,
- -35.23861
- ],
- [
- 149.34111,
- -35.23847
- ],
- [
- 149.34196,
- -35.27435
- ],
- [
- 149.42986,
- -35.27253
- ],
- [
- 149.43226,
- -35.36288
- ],
- [
- 149.42127,
- -35.36316
- ],
- [
- 149.42179,
- -35.37239
- ],
- [
- 149.3224,
- -35.37435
- ],
- [
- 149.3224,
- -35.36498
- ],
- [
- 149.30042,
- -35.36512
- ],
- [
- 149.30094,
- -35.37435
- ],
- [
- 149.28995,
- -35.37449
- ],
- [
- 149.29201,
- -35.4376
- ],
- [
- 149.15932,
- -35.44039
- ],
- [
- 149.16121,
- -35.51197
- ],
- [
- 149.03984,
- -35.51448
- ],
- [
- 149.03984,
- -35.47829
- ],
- [
- 148.99504,
- -35.4794
- ],
- [
- 148.99315,
- -35.37995
- ],
- [
- 149.00396,
- -35.37981
- ],
- [
- 149.0007,
- -35.26272
- ],
- [
- 148.95641,
- -35.26286
- ],
- [
- 148.95435,
- -35.16399
- ],
- [
- 148.99864,
- -35.16342
- ],
- [
- 148.99796,
- -35.12721
- ],
- [
- 149.04156,
- -35.12665
- ],
- [
- 149.04053,
- -35.09056
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Aerial Imagery from ACTMapi ©ACT Government",
- "url": "http://actmapi.act.gov.au/terms.html"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "end_date": "2019-02-09",
- "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png",
- "id": "ACT2019",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF",
- "max_zoom": 21,
- "name": "ACTmapi Imagery Feb 2019",
- "privacy_policy_url": "https://www.environment.act.gov.au/about/privacy",
- "start_date": "2019-02-09",
- "type": "wms",
- "url": "https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2019mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 148.97478,
- -35.10074
- ],
- [
- 149.22712,
- -35.09632
- ],
- [
- 149.22811,
- -35.13237
- ],
- [
- 149.24983,
- -35.13198
- ],
- [
- 149.25025,
- -35.14107
- ],
- [
- 149.27223,
- -35.14062
- ],
- [
- 149.27416,
- -35.21263
- ],
- [
- 149.31806,
- -35.21184
- ],
- [
- 149.31905,
- -35.248
- ],
- [
- 149.40694,
- -35.24632
- ],
- [
- 149.40805,
- -35.28227
- ],
- [
- 149.45191,
- -35.28129
- ],
- [
- 149.45509,
- -35.38044
- ],
- [
- 149.41089,
- -35.38135
- ],
- [
- 149.41166,
- -35.39927
- ],
- [
- 149.40042,
- -35.39955
- ],
- [
- 149.40093,
- -35.41752
- ],
- [
- 149.31287,
- -35.41934
- ],
- [
- 149.3139,
- -35.44634
- ],
- [
- 149.2697,
- -35.44718
- ],
- [
- 149.2709,
- -35.48325
- ],
- [
- 149.22678,
- -35.48402
- ],
- [
- 149.22772,
- -35.52007
- ],
- [
- 149.18378,
- -35.52084
- ],
- [
- 149.18464,
- -35.55709
- ],
- [
- 149.01855,
- -35.55974
- ],
- [
- 149.01701,
- -35.48807
- ],
- [
- 148.97324,
- -35.48863
- ],
- [
- 148.97203,
- -35.44333
- ],
- [
- 148.98319,
- -35.44333
- ],
- [
- 148.9807,
- -35.34419
- ],
- [
- 148.93676,
- -35.34461
- ],
- [
- 148.93187,
- -35.13753
- ],
- [
- 148.97581,
- -35.1369
- ],
- [
- 148.97478,
- -35.10074
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd",
- "url": "http://actmapi.act.gov.au/terms.html"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "end_date": "2019-06-19",
- "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png",
- "id": "ACT201906",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF",
- "max_zoom": 21,
- "name": "ACTmapi Imagery Jun 2019",
- "privacy_policy_url": "https://www.environment.act.gov.au/about/privacy",
- "start_date": "2019-06-19",
- "type": "wms",
- "url": "https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery201906mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 149.01888,
- -35.55033
- ],
- [
- 149.01874,
- -35.54169
- ],
- [
- 149.02979,
- -35.54152
- ],
- [
- 149.02911,
- -35.51456
- ],
- [
- 148.9849,
- -35.51532
- ],
- [
- 148.98051,
- -35.33506
- ],
- [
- 148.93611,
- -35.33576
- ],
- [
- 148.93142,
- -35.12826
- ],
- [
- 149.01972,
- -35.12661
- ],
- [
- 149.01913,
- -35.10016
- ],
- [
- 149.02959,
- -35.09987
- ],
- [
- 149.02982,
- -35.09083
- ],
- [
- 149.23791,
- -35.08675
- ],
- [
- 149.23815,
- -35.10483
- ],
- [
- 149.22757,
- -35.10541
- ],
- [
- 149.22888,
- -35.15974
- ],
- [
- 149.27261,
- -35.15838
- ],
- [
- 149.27404,
- -35.19432
- ],
- [
- 149.3173,
- -35.19374
- ],
- [
- 149.31991,
- -35.23005
- ],
- [
- 149.32918,
- -35.22947
- ],
- [
- 149.33013,
- -35.2386
- ],
- [
- 149.36293,
- -35.23763
- ],
- [
- 149.36531,
- -35.27334
- ],
- [
- 149.45206,
- -35.27237
- ],
- [
- 149.45396,
- -35.37224
- ],
- [
- 149.41047,
- -35.37243
- ],
- [
- 149.41213,
- -35.40809
- ],
- [
- 149.36745,
- -35.40964
- ],
- [
- 149.36792,
- -35.43636
- ],
- [
- 149.32419,
- -35.43694
- ],
- [
- 149.32562,
- -35.47412
- ],
- [
- 149.2372,
- -35.47431
- ],
- [
- 149.23886,
- -35.50237
- ],
- [
- 149.22817,
- -35.50218
- ],
- [
- 149.22793,
- -35.5105
- ],
- [
- 149.1842,
- -35.51205
- ],
- [
- 149.18443,
- -35.54764
- ],
- [
- 149.01888,
- -35.55033
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd",
- "url": "http://actmapi.act.gov.au/terms.html"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "best": true,
- "country_code": "AU",
- "end_date": "2020-01-21",
- "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png",
- "id": "ACT202001",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF",
- "max_zoom": 21,
- "name": "ACTmapi Imagery Jan 2020",
- "privacy_policy_url": "https://www.environment.act.gov.au/about/privacy",
- "start_date": "2020-01-21",
- "type": "wms",
- "url": "https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery202001mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 149.88647,
- -32.97641
- ],
- [
- 149.88785,
- -34.04583
- ],
- [
- 150.08835,
- -34.02421
- ],
- [
- 150.09264,
- -34.66569
- ],
- [
- 150.06758,
- -34.66604
- ],
- [
- 150.06775,
- -34.67733
- ],
- [
- 149.91669,
- -34.67952
- ],
- [
- 149.91806,
- -34.80365
- ],
- [
- 150.09247,
- -34.80478
- ],
- [
- 150.09796,
- -34.976
- ],
- [
- 149.44977,
- -34.9625
- ],
- [
- 149.44565,
- -35.46514
- ],
- [
- 149.20807,
- -35.48527
- ],
- [
- 149.2012,
- -35.96689
- ],
- [
- 148.98834,
- -35.98467
- ],
- [
- 148.99246,
- -37.02229
- ],
- [
- 149.96338,
- -37.02996
- ],
- [
- 150.53192,
- -36.02911
- ],
- [
- 150.78735,
- -35.29719
- ],
- [
- 151.37237,
- -33.75403
- ],
- [
- 151.35864,
- -31.96847
- ],
- [
- 150.35614,
- -31.9475
- ],
- [
- 150.35339,
- -32.45415
- ],
- [
- 150.04028,
- -32.4472
- ],
- [
- 150.04852,
- -32.96258
- ],
- [
- 149.88647,
- -32.97641
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "©2020 DigitalGlobe",
- "url": "https://www.digitalglobe.com/ecosystem/open-data/australia-wildfires"
- },
- "category": "photo",
- "country_code": "AU",
- "end_date": "2019-10-18",
- "id": "Maxar_19-20_Australian_Bushfires_PreEvent",
- "license_url": "https://www.digitalglobe.com/ecosystem/open-data/australia-wildfires",
- "max_zoom": 19,
- "min_zoom": 11,
- "name": "Maxar 2019-2020 Australian Bushfires Pre-event",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://bunnycdn.com/privacy",
- "start_date": "2018-01-20",
- "type": "tms",
- "url": "https://cogeoxyz.b-cdn.net/6b6f479fbacd9a42e9e38bc5c0c6889f009beae13b07742ec4a1648f/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "LPI_NSW_Administrative_Boundaries_County",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "LPI NSW Administrative Boundaries County",
- "overlay": true,
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "wms",
- "url": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=4&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "LPI_NSW_Administrative_Boundaries_LGA",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "LPI NSW Administrative Boundaries LGA",
- "overlay": true,
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "wms",
- "url": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=6&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "LPI_NSW_Administrative_Boundaries_NPWS_Reserve",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "LPI NSW Administrative Boundaries NPWS Reserve",
- "overlay": true,
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "wms",
- "url": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=1&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "LPI_NSW_Administrative_Boundaries_Parish",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "LPI NSW Administrative Boundaries Parish",
- "overlay": true,
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "wms",
- "url": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=3&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "LPI_NSW_Administrative_Boundaries_StateForest",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "LPI NSW Administrative Boundaries State Forest",
- "overlay": true,
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "wms",
- "url": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=2&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "LPI_NSW_Administrative_Boundaries_Suburb",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "LPI NSW Administrative Boundaries Suburb",
- "overlay": true,
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "wms",
- "url": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=7&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.99486,
- -28.95297
- ],
- [
- 148.96114,
- -28.89977
- ],
- [
- 148.98701,
- -28.48623
- ],
- [
- 151.01361,
- -28.47865
- ],
- [
- 151.10847,
- -28.70329
- ],
- [
- 151.87599,
- -28.68312
- ],
- [
- 151.93348,
- -28.40788
- ],
- [
- 152.25544,
- -28.23327
- ],
- [
- 153.06608,
- -28.21047
- ],
- [
- 153.14082,
- -28.1091
- ],
- [
- 153.47351,
- -28.11648
- ],
- [
- 153.35765,
- -27.69361
- ],
- [
- 159.49383,
- -27.69925
- ],
- [
- 159.4857,
- -37.84741
- ],
- [
- 149.52569,
- -37.82815
- ],
- [
- 149.91596,
- -37.487
- ],
- [
- 148.04859,
- -36.81317
- ],
- [
- 147.9681,
- -36.15679
- ],
- [
- 146.71477,
- -36.28666
- ],
- [
- 145.30046,
- -36.15679
- ],
- [
- 144.53007,
- -36.14751
- ],
- [
- 142.8398,
- -35.02543
- ],
- [
- 142.35686,
- -34.78025
- ],
- [
- 141.97741,
- -34.40162
- ],
- [
- 140.99503,
- -34.13718
- ],
- [
- 140.99486,
- -28.95297
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "NSW_LPI_BaseMap",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 19,
- "min_zoom": 1,
- "name": "LPI NSW Base Map",
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "tms",
- "url": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Base_Map/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.98687,
- -28.98878
- ],
- [
- 148.99515,
- -28.97275
- ],
- [
- 148.99667,
- -28.49151
- ],
- [
- 151.0029,
- -28.49307
- ],
- [
- 151.0029,
- -28.72617
- ],
- [
- 151.49151,
- -28.73239
- ],
- [
- 151.49187,
- -28.71553
- ],
- [
- 151.92282,
- -28.71964
- ],
- [
- 151.92516,
- -28.48971
- ],
- [
- 151.99559,
- -28.48987
- ],
- [
- 151.99899,
- -28.11927
- ],
- [
- 152.49676,
- -28.12209
- ],
- [
- 152.49682,
- -28.11464
- ],
- [
- 153.00446,
- -28.11544
- ],
- [
- 153.00446,
- -28.1204
- ],
- [
- 153.50386,
- -28.11934
- ],
- [
- 153.50393,
- -28.12271
- ],
- [
- 153.59194,
- -28.12236
- ],
- [
- 153.59266,
- -28.17769
- ],
- [
- 153.61112,
- -28.17579
- ],
- [
- 153.61139,
- -28.18252
- ],
- [
- 153.74268,
- -28.21621
- ],
- [
- 153.77873,
- -28.71091
- ],
- [
- 152.6238,
- -32.58772
- ],
- [
- 152.3124,
- -32.63288
- ],
- [
- 151.41419,
- -33.57904
- ],
- [
- 150.89299,
- -35.26487
- ],
- [
- 150.46207,
- -35.77773
- ],
- [
- 150.01565,
- -37.51036
- ],
- [
- 149.99181,
- -37.51268
- ],
- [
- 149.51978,
- -37.51307
- ],
- [
- 149.51996,
- -37.52169
- ],
- [
- 149.4463,
- -37.53537
- ],
- [
- 149.06334,
- -37.5358
- ],
- [
- 148.98366,
- -37.52176
- ],
- [
- 148.98169,
- -37.5192
- ],
- [
- 148.98638,
- -37.2585
- ],
- [
- 148.48754,
- -37.26585
- ],
- [
- 148.48248,
- -37.00927
- ],
- [
- 147.99439,
- -37.01434
- ],
- [
- 147.98829,
- -36.53322
- ],
- [
- 147.95297,
- -36.52607
- ],
- [
- 147.94865,
- -36.0686
- ],
- [
- 147.5035,
- -36.07168
- ],
- [
- 147.50477,
- -36.2651
- ],
- [
- 146.492,
- -36.26613
- ],
- [
- 146.49225,
- -36.2565
- ],
- [
- 145.99298,
- -36.25343
- ],
- [
- 145.99659,
- -36.01881
- ],
- [
- 145.98316,
- -36.01871
- ],
- [
- 145.96245,
- -36.0219
- ],
- [
- 145.94624,
- -36.01209
- ],
- [
- 145.94543,
- -36.00603
- ],
- [
- 145.50415,
- -36.00136
- ],
- [
- 145.50379,
- -36.01091
- ],
- [
- 145.0072,
- -36.00362
- ],
- [
- 145.00354,
- -36.15204
- ],
- [
- 144.48608,
- -36.14231
- ],
- [
- 144.48741,
- -36.01375
- ],
- [
- 143.98747,
- -36.00241
- ],
- [
- 143.99329,
- -35.57238
- ],
- [
- 143.49717,
- -35.58371
- ],
- [
- 143.4918,
- -35.40656
- ],
- [
- 143.46134,
- -35.36749
- ],
- [
- 143.45856,
- -35.35559
- ],
- [
- 143.48978,
- -35.33965
- ],
- [
- 143.48955,
- -35.33221
- ],
- [
- 143.4317,
- -35.25706
- ],
- [
- 143.25055,
- -35.26066
- ],
- [
- 143.24384,
- -35.01327
- ],
- [
- 142.99333,
- -35.01772
- ],
- [
- 142.99198,
- -34.79619
- ],
- [
- 142.49714,
- -34.80323
- ],
- [
- 142.49732,
- -34.80076
- ],
- [
- 142.42114,
- -34.80176
- ],
- [
- 142.42092,
- -34.78383
- ],
- [
- 142.23309,
- -34.78592
- ],
- [
- 142.23077,
- -34.78075
- ],
- [
- 142.227,
- -34.50613
- ],
- [
- 141.99753,
- -34.50837
- ],
- [
- 141.9946,
- -34.25267
- ],
- [
- 141.49823,
- -34.25569
- ],
- [
- 141.49817,
- -34.25228
- ],
- [
- 140.99454,
- -34.25284
- ],
- [
- 140.98687,
- -28.98878
- ]
- ],
- [
- [
- 159.22678,
- -31.74407
- ],
- [
- 159.26398,
- -31.74399
- ],
- [
- 159.28989,
- -31.77428
- ],
- [
- 159.28993,
- -31.79393
- ],
- [
- 159.26157,
- -31.79395
- ],
- [
- 159.22682,
- -31.75483
- ],
- [
- 159.22678,
- -31.74407
- ]
- ],
- [
- [
- 159.03784,
- -31.49819
- ],
- [
- 159.04448,
- -31.5006
- ],
- [
- 159.04619,
- -31.49734
- ],
- [
- 159.04888,
- -31.49829
- ],
- [
- 159.04884,
- -31.48423
- ],
- [
- 159.06882,
- -31.48423
- ],
- [
- 159.06991,
- -31.482
- ],
- [
- 159.08317,
- -31.48203
- ],
- [
- 159.08203,
- -31.48434
- ],
- [
- 159.08205,
- -31.49567
- ],
- [
- 159.08564,
- -31.49703
- ],
- [
- 159.08383,
- -31.50058
- ],
- [
- 159.09007,
- -31.5026
- ],
- [
- 159.08682,
- -31.50859
- ],
- [
- 159.09433,
- -31.51136
- ],
- [
- 159.09174,
- -31.51585
- ],
- [
- 159.09537,
- -31.51724
- ],
- [
- 159.10276,
- -31.52611
- ],
- [
- 159.1161,
- -31.53006
- ],
- [
- 159.11422,
- -31.5342
- ],
- [
- 159.11875,
- -31.53417
- ],
- [
- 159.1193,
- -31.54888
- ],
- [
- 159.12618,
- -31.55796
- ],
- [
- 159.11841,
- -31.56323
- ],
- [
- 159.11553,
- -31.55983
- ],
- [
- 159.1115,
- -31.55983
- ],
- [
- 159.11154,
- -31.60158
- ],
- [
- 159.08954,
- -31.6016
- ],
- [
- 159.08626,
- -31.60845
- ],
- [
- 159.07954,
- -31.60611
- ],
- [
- 159.07714,
- -31.61149
- ],
- [
- 159.05943,
- -31.61155
- ],
- [
- 159.05296,
- -31.60369
- ],
- [
- 159.05893,
- -31.59087
- ],
- [
- 159.05891,
- -31.57897
- ],
- [
- 159.05541,
- -31.57773
- ],
- [
- 159.05735,
- -31.57387
- ],
- [
- 159.05585,
- -31.57333
- ],
- [
- 159.05038,
- -31.57335
- ],
- [
- 159.05035,
- -31.56329
- ],
- [
- 159.0463,
- -31.5619
- ],
- [
- 159.04847,
- -31.55793
- ],
- [
- 159.04237,
- -31.55601
- ],
- [
- 159.04533,
- -31.55038
- ],
- [
- 159.03783,
- -31.54763
- ],
- [
- 159.03802,
- -31.54723
- ],
- [
- 159.03487,
- -31.54724
- ],
- [
- 159.03487,
- -31.54383
- ],
- [
- 159.03244,
- -31.54297
- ],
- [
- 159.03461,
- -31.53808
- ],
- [
- 159.02754,
- -31.53554
- ],
- [
- 159.02964,
- -31.53159
- ],
- [
- 159.02305,
- -31.52935
- ],
- [
- 159.03784,
- -31.49819
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "NSW_LPI_Imagery_Dates",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 21,
- "name": "LPI NSW Imagery Dates",
- "overlay": true,
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "wms",
- "url": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Imagery_Dates/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=0&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.98687,
- -28.98878
- ],
- [
- 148.99515,
- -28.97275
- ],
- [
- 148.99667,
- -28.49151
- ],
- [
- 151.0029,
- -28.49307
- ],
- [
- 151.0029,
- -28.72617
- ],
- [
- 151.49151,
- -28.73239
- ],
- [
- 151.49187,
- -28.71553
- ],
- [
- 151.92282,
- -28.71964
- ],
- [
- 151.92516,
- -28.48971
- ],
- [
- 151.99559,
- -28.48987
- ],
- [
- 151.99899,
- -28.11927
- ],
- [
- 152.49676,
- -28.12209
- ],
- [
- 152.49682,
- -28.11464
- ],
- [
- 153.00446,
- -28.11544
- ],
- [
- 153.00446,
- -28.1204
- ],
- [
- 153.50386,
- -28.11934
- ],
- [
- 153.50393,
- -28.12271
- ],
- [
- 153.59194,
- -28.12236
- ],
- [
- 153.59266,
- -28.17769
- ],
- [
- 153.61112,
- -28.17579
- ],
- [
- 153.61139,
- -28.18252
- ],
- [
- 153.74268,
- -28.21621
- ],
- [
- 153.77873,
- -28.71091
- ],
- [
- 152.6238,
- -32.58772
- ],
- [
- 152.3124,
- -32.63288
- ],
- [
- 151.41419,
- -33.57904
- ],
- [
- 150.89299,
- -35.26487
- ],
- [
- 150.46207,
- -35.77773
- ],
- [
- 150.01565,
- -37.51036
- ],
- [
- 149.99181,
- -37.51268
- ],
- [
- 149.51978,
- -37.51307
- ],
- [
- 149.51996,
- -37.52169
- ],
- [
- 149.4463,
- -37.53537
- ],
- [
- 149.06334,
- -37.5358
- ],
- [
- 148.98366,
- -37.52176
- ],
- [
- 148.98169,
- -37.5192
- ],
- [
- 148.98638,
- -37.2585
- ],
- [
- 148.48754,
- -37.26585
- ],
- [
- 148.48248,
- -37.00927
- ],
- [
- 147.99439,
- -37.01434
- ],
- [
- 147.98829,
- -36.53322
- ],
- [
- 147.95297,
- -36.52607
- ],
- [
- 147.94865,
- -36.0686
- ],
- [
- 147.5035,
- -36.07168
- ],
- [
- 147.50477,
- -36.2651
- ],
- [
- 146.492,
- -36.26613
- ],
- [
- 146.49225,
- -36.2565
- ],
- [
- 145.99298,
- -36.25343
- ],
- [
- 145.99659,
- -36.01881
- ],
- [
- 145.98316,
- -36.01871
- ],
- [
- 145.96245,
- -36.0219
- ],
- [
- 145.94624,
- -36.01209
- ],
- [
- 145.94543,
- -36.00603
- ],
- [
- 145.50415,
- -36.00136
- ],
- [
- 145.50379,
- -36.01091
- ],
- [
- 145.0072,
- -36.00362
- ],
- [
- 145.00354,
- -36.15204
- ],
- [
- 144.48608,
- -36.14231
- ],
- [
- 144.48741,
- -36.01375
- ],
- [
- 143.98747,
- -36.00241
- ],
- [
- 143.99329,
- -35.57238
- ],
- [
- 143.49717,
- -35.58371
- ],
- [
- 143.4918,
- -35.40656
- ],
- [
- 143.46134,
- -35.36749
- ],
- [
- 143.45856,
- -35.35559
- ],
- [
- 143.48978,
- -35.33965
- ],
- [
- 143.48955,
- -35.33221
- ],
- [
- 143.4317,
- -35.25706
- ],
- [
- 143.25055,
- -35.26066
- ],
- [
- 143.24384,
- -35.01327
- ],
- [
- 142.99333,
- -35.01772
- ],
- [
- 142.99198,
- -34.79619
- ],
- [
- 142.49714,
- -34.80323
- ],
- [
- 142.49732,
- -34.80076
- ],
- [
- 142.42114,
- -34.80176
- ],
- [
- 142.42092,
- -34.78383
- ],
- [
- 142.23309,
- -34.78592
- ],
- [
- 142.23077,
- -34.78075
- ],
- [
- 142.227,
- -34.50613
- ],
- [
- 141.99753,
- -34.50837
- ],
- [
- 141.9946,
- -34.25267
- ],
- [
- 141.49823,
- -34.25569
- ],
- [
- 141.49817,
- -34.25228
- ],
- [
- 140.99454,
- -34.25284
- ],
- [
- 140.98687,
- -28.98878
- ]
- ],
- [
- [
- 159.22678,
- -31.74407
- ],
- [
- 159.26398,
- -31.74399
- ],
- [
- 159.28989,
- -31.77428
- ],
- [
- 159.28993,
- -31.79393
- ],
- [
- 159.26157,
- -31.79395
- ],
- [
- 159.22682,
- -31.75483
- ],
- [
- 159.22678,
- -31.74407
- ]
- ],
- [
- [
- 159.03784,
- -31.49819
- ],
- [
- 159.04448,
- -31.5006
- ],
- [
- 159.04619,
- -31.49734
- ],
- [
- 159.04888,
- -31.49829
- ],
- [
- 159.04884,
- -31.48423
- ],
- [
- 159.06882,
- -31.48423
- ],
- [
- 159.06991,
- -31.482
- ],
- [
- 159.08317,
- -31.48203
- ],
- [
- 159.08203,
- -31.48434
- ],
- [
- 159.08205,
- -31.49567
- ],
- [
- 159.08564,
- -31.49703
- ],
- [
- 159.08383,
- -31.50058
- ],
- [
- 159.09007,
- -31.5026
- ],
- [
- 159.08682,
- -31.50859
- ],
- [
- 159.09433,
- -31.51136
- ],
- [
- 159.09174,
- -31.51585
- ],
- [
- 159.09537,
- -31.51724
- ],
- [
- 159.10276,
- -31.52611
- ],
- [
- 159.1161,
- -31.53006
- ],
- [
- 159.11422,
- -31.5342
- ],
- [
- 159.11875,
- -31.53417
- ],
- [
- 159.1193,
- -31.54888
- ],
- [
- 159.12618,
- -31.55796
- ],
- [
- 159.11841,
- -31.56323
- ],
- [
- 159.11553,
- -31.55983
- ],
- [
- 159.1115,
- -31.55983
- ],
- [
- 159.11154,
- -31.60158
- ],
- [
- 159.08954,
- -31.6016
- ],
- [
- 159.08626,
- -31.60845
- ],
- [
- 159.07954,
- -31.60611
- ],
- [
- 159.07714,
- -31.61149
- ],
- [
- 159.05943,
- -31.61155
- ],
- [
- 159.05296,
- -31.60369
- ],
- [
- 159.05893,
- -31.59087
- ],
- [
- 159.05891,
- -31.57897
- ],
- [
- 159.05541,
- -31.57773
- ],
- [
- 159.05735,
- -31.57387
- ],
- [
- 159.05585,
- -31.57333
- ],
- [
- 159.05038,
- -31.57335
- ],
- [
- 159.05035,
- -31.56329
- ],
- [
- 159.0463,
- -31.5619
- ],
- [
- 159.04847,
- -31.55793
- ],
- [
- 159.04237,
- -31.55601
- ],
- [
- 159.04533,
- -31.55038
- ],
- [
- 159.03783,
- -31.54763
- ],
- [
- 159.03802,
- -31.54723
- ],
- [
- 159.03487,
- -31.54724
- ],
- [
- 159.03487,
- -31.54383
- ],
- [
- 159.03244,
- -31.54297
- ],
- [
- 159.03461,
- -31.53808
- ],
- [
- 159.02754,
- -31.53554
- ],
- [
- 159.02964,
- -31.53159
- ],
- [
- 159.02305,
- -31.52935
- ],
- [
- 159.03784,
- -31.49819
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "best": true,
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "NSW_LPI_Imagery",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 21,
- "min_zoom": 1,
- "name": "LPI NSW Imagery",
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "tms",
- "url": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.99884,
- -28.99924
- ],
- [
- 140.99652,
- -34.13858
- ],
- [
- 142.03614,
- -34.37588
- ],
- [
- 142.40976,
- -34.76694
- ],
- [
- 143.33826,
- -35.23318
- ],
- [
- 143.99654,
- -35.98105
- ],
- [
- 144.49912,
- -36.0211
- ],
- [
- 144.50725,
- -36.24765
- ],
- [
- 145.01541,
- -36.25421
- ],
- [
- 145.00118,
- -36.00795
- ],
- [
- 146.50426,
- -36.12639
- ],
- [
- 146.49564,
- -36.24471
- ],
- [
- 146.98863,
- -36.25283
- ],
- [
- 146.99725,
- -36.12755
- ],
- [
- 147.38221,
- -36.13103
- ],
- [
- 147.38939,
- -36.01137
- ],
- [
- 147.81483,
- -36.00556
- ],
- [
- 147.99306,
- -36.138
- ],
- [
- 148.06846,
- -36.80624
- ],
- [
- 149.98571,
- -37.508
- ],
- [
- 163,
- -32
- ],
- [
- 153.76465,
- -28.11075
- ],
- [
- 153.25003,
- -28.12497
- ],
- [
- 153.24999,
- -28.23324
- ],
- [
- 153.16672,
- -28.23316
- ],
- [
- 153.16663,
- -28.25001
- ],
- [
- 153.11659,
- -28.24986
- ],
- [
- 153.1165,
- -28.2834
- ],
- [
- 152.9999,
- -28.28324
- ],
- [
- 152.99972,
- -28.24986
- ],
- [
- 152.24994,
- -28.25001
- ],
- [
- 152.24997,
- -28.37507
- ],
- [
- 151.99986,
- -28.37496
- ],
- [
- 151.99989,
- -28.50023
- ],
- [
- 151.93341,
- -28.50007
- ],
- [
- 151.93313,
- -28.62475
- ],
- [
- 151.98317,
- -28.62491
- ],
- [
- 151.98299,
- -28.64139
- ],
- [
- 151.99988,
- -28.64163
- ],
- [
- 152.00007,
- -28.68335
- ],
- [
- 152.03322,
- -28.6832
- ],
- [
- 152.0334,
- -28.71661
- ],
- [
- 151.99998,
- -28.71645
- ],
- [
- 151.99998,
- -28.74953
- ],
- [
- 151.03383,
- -28.75054
- ],
- [
- 151.03293,
- -28.74188
- ],
- [
- 151.02413,
- -28.74188
- ],
- [
- 151.02395,
- -28.73274
- ],
- [
- 151.00059,
- -28.73258
- ],
- [
- 151.00005,
- -28.50052
- ],
- [
- 148.99982,
- -28.50003
- ],
- [
- 148.99985,
- -28.74974
- ],
- [
- 149.0997,
- -28.74885
- ],
- [
- 149.10007,
- -28.81658
- ],
- [
- 149.00009,
- -28.81658
- ],
- [
- 148.99983,
- -28.96653
- ],
- [
- 148.94988,
- -28.96653
- ],
- [
- 148.95024,
- -28.99937
- ],
- [
- 140.99884,
- -28.99924
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Department of Customer Service 2019",
- "url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"
- },
- "country_code": "AU",
- "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
- "id": "NSW_LPI_TopographicMap",
- "license_url": "https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data",
- "max_zoom": 16,
- "min_zoom": 1,
- "name": "LPI NSW Topographic Map",
- "privacy_policy_url": "https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html",
- "type": "tms",
- "url": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 73.2279,
- -53.20333
- ],
- [
- 73.2279,
- -53.01073
- ],
- [
- 73.25949,
- -52.94944
- ],
- [
- 73.78992,
- -52.94944
- ],
- [
- 73.78992,
- -53.06048
- ],
- [
- 73.71783,
- -53.20333
- ],
- [
- 73.2279,
- -53.20333
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AU",
- "description": "Glaciers of Northwest Heard Island (mapped meanwhile) (false color IR)",
- "end_date": "2013-03-13",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-EO1A1350972013086110KF",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Northwest Heard Island",
- "start_date": "2013-03-13",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=EO1A1350972013086110KF&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 73.06897,
- -53.27059
- ],
- [
- 73.06897,
- -52.87549
- ],
- [
- 73.67338,
- -52.87673
- ],
- [
- 74.08863,
- -52.9495
- ],
- [
- 74.08863,
- -53.27059
- ],
- [
- 73.06897,
- -53.27059
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AU",
- "description": "Recent image of Heard island with interior mostly cloud covered but mostly well visible coast (true color)",
- "end_date": "2016-04-12",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R047_S54_20160411T044330",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Heard Island coast",
- "start_date": "2016-04-12",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R047_S54_20160411T044330&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.99929,
- -28.99913
- ],
- [
- 140.99939,
- -25.9967
- ],
- [
- 137.9991,
- -25.99709
- ],
- [
- 137.99652,
- -10.0581
- ],
- [
- 142.18505,
- -9.13463
- ],
- [
- 143.92089,
- -9.10209
- ],
- [
- 144.4702,
- -9.4924
- ],
- [
- 146.49169,
- -12.38292
- ],
- [
- 152.18261,
- -14.66862
- ],
- [
- 154.32494,
- -14.78549
- ],
- [
- 156.59911,
- -14.01935
- ],
- [
- 157.21434,
- -14.28567
- ],
- [
- 158.79638,
- -15.7711
- ],
- [
- 156.33544,
- -19.28003
- ],
- [
- 157.01659,
- -20.38582
- ],
- [
- 158.65355,
- -25.08559
- ],
- [
- 161.63084,
- -26.80444
- ],
- [
- 162.66355,
- -28.20759
- ],
- [
- 153.54217,
- -28.16887
- ],
- [
- 152.01233,
- -28.91201
- ],
- [
- 151.40533,
- -29.17135
- ],
- [
- 151.30645,
- -29.16415
- ],
- [
- 150.43579,
- -28.66408
- ],
- [
- 149.4223,
- -28.67854
- ],
- [
- 148.95813,
- -29.00333
- ],
- [
- 140.99929,
- -28.99913
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© State of Queensland (Department of Natural Resources, Mines and Energy) 2020",
- "url": "http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={C3A4EE0F-60CF-4350-A50D-AF6BF2B1163C}"
- },
- "country_code": "AU",
- "icon": "http://qldspatial.information.qld.gov.au/catalogue/custom/assets/cue/images/favicon.ico",
- "id": "QLDMap_Lite",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:QLD_DNRM_CCBY_letter.png",
- "max_zoom": 18,
- "min_zoom": 0,
- "name": "QLDMap Lite",
- "privacy_policy_url": "https://www.qld.gov.au/legal/privacy",
- "type": "tms",
- "url": "https://gisservices.information.qld.gov.au/arcgis/rest/services/Basemaps/QldMap_Lite/MapServer/WMTS/tile/1.0.0/Basemaps_QldMap_Lite/default/GoogleMapsCompatible/{zoom}/{y}/{x}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 140.99929,
- -28.99913
- ],
- [
- 140.99939,
- -25.9967
- ],
- [
- 137.9991,
- -25.99709
- ],
- [
- 137.99652,
- -10.0581
- ],
- [
- 142.18505,
- -9.13463
- ],
- [
- 143.92089,
- -9.10209
- ],
- [
- 144.4702,
- -9.4924
- ],
- [
- 146.49169,
- -12.38292
- ],
- [
- 152.18261,
- -14.66862
- ],
- [
- 154.32494,
- -14.78549
- ],
- [
- 156.59911,
- -14.01935
- ],
- [
- 157.21434,
- -14.28567
- ],
- [
- 158.79638,
- -15.7711
- ],
- [
- 156.33544,
- -19.28003
- ],
- [
- 157.01659,
- -20.38582
- ],
- [
- 158.65355,
- -25.08559
- ],
- [
- 161.63084,
- -26.80444
- ],
- [
- 162.66355,
- -28.20759
- ],
- [
- 153.54217,
- -28.16887
- ],
- [
- 152.01233,
- -28.91201
- ],
- [
- 151.40533,
- -29.17135
- ],
- [
- 151.30645,
- -29.16415
- ],
- [
- 150.43579,
- -28.66408
- ],
- [
- 149.4223,
- -28.67854
- ],
- [
- 148.95813,
- -29.00333
- ],
- [
- 140.99929,
- -28.99913
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© State of Queensland (Department of Natural Resources, Mines and Energy) 2020",
- "url": "http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={2B30FF3F-41A5-4A6B-86FD-1635C44CB754}"
- },
- "country_code": "AU",
- "icon": "http://qldspatial.information.qld.gov.au/catalogue/custom/assets/cue/images/favicon.ico",
- "id": "QLDMap_Topo",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:QLD_DNRM_CCBY_letter.png",
- "max_zoom": 18,
- "min_zoom": 0,
- "name": "QLDMap Topo",
- "privacy_policy_url": "https://www.qld.gov.au/legal/privacy",
- "type": "tms",
- "url": "https://gisservices.information.qld.gov.au/arcgis/rest/services/Basemaps/QldMap_Topo/MapServer/WMTS/tile/1.0.0/Basemaps_QldMap_Topo/default/GoogleMapsCompatible/{zoom}/{y}/{x}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 138.94746,
- -35.00283
- ],
- [
- 138.92407,
- -34.99305
- ],
- [
- 138.92517,
- -34.99001
- ],
- [
- 138.92695,
- -34.98968
- ],
- [
- 138.93336,
- -34.99052
- ],
- [
- 138.93811,
- -34.98634
- ],
- [
- 138.93688,
- -34.98205
- ],
- [
- 138.9365,
- -34.97941
- ],
- [
- 138.92935,
- -34.97259
- ],
- [
- 138.91302,
- -34.97015
- ],
- [
- 138.89699,
- -34.97178
- ],
- [
- 138.89712,
- -34.96186
- ],
- [
- 138.90229,
- -34.96106
- ],
- [
- 138.9154,
- -34.96132
- ],
- [
- 138.93356,
- -34.96413
- ],
- [
- 138.93841,
- -34.96659
- ],
- [
- 138.94461,
- -34.97268
- ],
- [
- 138.94909,
- -34.98091
- ],
- [
- 138.94935,
- -34.98242
- ],
- [
- 138.94858,
- -34.98799
- ],
- [
- 138.94491,
- -34.99168
- ],
- [
- 138.94645,
- -34.99515
- ],
- [
- 138.94748,
- -34.99817
- ],
- [
- 138.94684,
- -34.99989
- ],
- [
- 138.94746,
- -35.00283
- ]
- ],
- [
- [
- 136.80219,
- -35.83855
- ],
- [
- 136.87205,
- -35.82317
- ],
- [
- 136.85377,
- -35.77702
- ],
- [
- 136.78811,
- -35.79025
- ],
- [
- 136.80219,
- -35.83855
- ]
- ],
- [
- [
- 136.95745,
- -35.71934
- ],
- [
- 137.00204,
- -35.71903
- ],
- [
- 137.00187,
- -35.74846
- ],
- [
- 136.9575,
- -35.74871
- ],
- [
- 136.95745,
- -35.71934
- ]
- ],
- [
- [
- 138.86929,
- -34.9703
- ],
- [
- 138.85127,
- -34.96485
- ],
- [
- 138.85981,
- -34.95272
- ],
- [
- 138.86187,
- -34.94748
- ],
- [
- 138.85504,
- -34.94751
- ],
- [
- 138.85414,
- -34.94428
- ],
- [
- 138.85564,
- -34.94002
- ],
- [
- 138.85749,
- -34.89269
- ],
- [
- 138.85105,
- -34.8917
- ],
- [
- 138.84886,
- -34.88755
- ],
- [
- 138.85049,
- -34.87653
- ],
- [
- 138.85547,
- -34.87294
- ],
- [
- 138.85972,
- -34.8747
- ],
- [
- 138.8838,
- -34.85167
- ],
- [
- 138.88654,
- -34.84625
- ],
- [
- 138.89787,
- -34.83864
- ],
- [
- 138.90512,
- -34.83998
- ],
- [
- 138.90547,
- -34.8299
- ],
- [
- 138.91083,
- -34.82624
- ],
- [
- 138.92276,
- -34.82783
- ],
- [
- 138.92186,
- -34.85297
- ],
- [
- 138.91723,
- -34.85319
- ],
- [
- 138.91568,
- -34.87945
- ],
- [
- 138.91384,
- -34.886
- ],
- [
- 138.90083,
- -34.88688
- ],
- [
- 138.89946,
- -34.8922
- ],
- [
- 138.87517,
- -34.89322
- ],
- [
- 138.87573,
- -34.91212
- ],
- [
- 138.87405,
- -34.92465
- ],
- [
- 138.88032,
- -34.9213
- ],
- [
- 138.88195,
- -34.91817
- ],
- [
- 138.89216,
- -34.92194
- ],
- [
- 138.87929,
- -34.94783
- ],
- [
- 138.87324,
- -34.96383
- ],
- [
- 138.86929,
- -34.9703
- ]
- ],
- [
- [
- 136.57493,
- -35.92881
- ],
- [
- 136.57699,
- -35.93493
- ],
- [
- 136.57836,
- -35.94186
- ],
- [
- 136.5801,
- -35.94541
- ],
- [
- 136.58881,
- -35.94872
- ],
- [
- 136.5925,
- -35.94855
- ],
- [
- 136.59795,
- -35.94671
- ],
- [
- 136.59999,
- -35.94138
- ],
- [
- 136.60649,
- -35.94315
- ],
- [
- 136.61422,
- -35.93886
- ],
- [
- 136.6137,
- -35.93333
- ],
- [
- 136.64409,
- -35.91311
- ],
- [
- 136.64975,
- -35.91446
- ],
- [
- 136.65409,
- -35.91446
- ],
- [
- 136.65507,
- -35.91196
- ],
- [
- 136.65512,
- -35.90535
- ],
- [
- 136.64975,
- -35.89725
- ],
- [
- 136.63774,
- -35.89385
- ],
- [
- 136.6213,
- -35.89691
- ],
- [
- 136.61645,
- -35.89976
- ],
- [
- 136.6137,
- -35.90459
- ],
- [
- 136.57493,
- -35.92881
- ]
- ],
- [
- [
- 137.46304,
- -35.73005
- ],
- [
- 137.46169,
- -35.71908
- ],
- [
- 137.46353,
- -35.71788
- ],
- [
- 137.46478,
- -35.7114
- ],
- [
- 137.47006,
- -35.70903
- ],
- [
- 137.47924,
- -35.708
- ],
- [
- 137.49261,
- -35.70345
- ],
- [
- 137.49263,
- -35.70826
- ],
- [
- 137.49598,
- -35.70741
- ],
- [
- 137.49799,
- -35.7153
- ],
- [
- 137.46304,
- -35.73005
- ]
- ],
- [
- [
- 136.63555,
- -35.9581
- ],
- [
- 136.63593,
- -35.96252
- ],
- [
- 136.64666,
- -35.96429
- ],
- [
- 136.67765,
- -35.96283
- ],
- [
- 136.69859,
- -35.96338
- ],
- [
- 136.72224,
- -35.96213
- ],
- [
- 136.74356,
- -35.96245
- ],
- [
- 136.74417,
- -35.96338
- ],
- [
- 136.75352,
- -35.96318
- ],
- [
- 136.75408,
- -35.96199
- ],
- [
- 136.76691,
- -35.96182
- ],
- [
- 136.76674,
- -35.95661
- ],
- [
- 136.76446,
- -35.95414
- ],
- [
- 136.75979,
- -35.95529
- ],
- [
- 136.75635,
- -35.95508
- ],
- [
- 136.75356,
- -35.95331
- ],
- [
- 136.75283,
- -35.94977
- ],
- [
- 136.75052,
- -35.94827
- ],
- [
- 136.74631,
- -35.94938
- ],
- [
- 136.7179,
- -35.94928
- ],
- [
- 136.70769,
- -35.94886
- ],
- [
- 136.70533,
- -35.94994
- ],
- [
- 136.7037,
- -35.9515
- ],
- [
- 136.70318,
- -35.95355
- ],
- [
- 136.69704,
- -35.95515
- ],
- [
- 136.68486,
- -35.95543
- ],
- [
- 136.6831,
- -35.95772
- ],
- [
- 136.67263,
- -35.95734
- ],
- [
- 136.65314,
- -35.95817
- ],
- [
- 136.65061,
- -35.95897
- ],
- [
- 136.64366,
- -35.95814
- ],
- [
- 136.63555,
- -35.9581
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "ARA - Airborne Research Australia",
- "url": "https://www.airborneresearch.org.au/"
- },
- "best": true,
- "country_code": "AU",
- "end_date": "2020-02-06",
- "icon": "https://static.wixstatic.com/media/a40742_9e0c1ee9ed0743a8bbf73b2fe6613802.gif",
- "id": "ARA_Bushfires_2020",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:OSM_waiver_AirborneResearchSouthAustralia.pdf",
- "max_zoom": 22,
- "min_zoom": 14,
- "name": "ARA Bushfires 2020",
- "privacy_policy_url": "https://bunnycdn.com/privacy",
- "start_date": "2020-01-08",
- "type": "tms",
- "url": "https://cogeoxyz.b-cdn.net/46b53084a82973a36c0f57a1d5446c605d00ed851f11a6f5ca7c75db/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 147.10456,
- -41.3946
- ],
- [
- 147.10541,
- -41.47525
- ],
- [
- 147.17433,
- -41.47514
- ],
- [
- 147.17428,
- -41.45584
- ],
- [
- 147.17533,
- -41.45584
- ],
- [
- 147.17501,
- -41.39451
- ],
- [
- 147.10456,
- -41.3946
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© City of Launceston"
- },
- "country_code": "AU",
- "end_date": "2011-12",
- "icon": "https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png",
- "id": "CityOfLaunceston_2011",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/oceania/au/tas/Launceston_OrthoPhoto.pdf",
- "max_zoom": 20,
- "min_zoom": 10,
- "name": "Launceston OrthoPhoto 2011",
- "permission_osm": "explicit",
- "start_date": "2011-12",
- "type": "tms",
- "url": "https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Dec2011_10cm/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 147.06561,
- -41.5081
- ],
- [
- 147.06547,
- -41.36487
- ],
- [
- 147.23734,
- -41.36464
- ],
- [
- 147.23786,
- -41.50787
- ],
- [
- 147.06561,
- -41.5081
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "© City of Launceston"
- },
- "country_code": "AU",
- "end_date": "2013-02-15",
- "icon": "https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png",
- "id": "CityOfLaunceston_2013",
- "license_url": "https://osmlab.github.io/editor-layer-index/sources/oceania/au/tas/Launceston_OrthoPhoto.pdf",
- "max_zoom": 20,
- "min_zoom": 12,
- "name": "Launceston OrthoPhoto 2013",
- "permission_osm": "explicit",
- "start_date": "2013-02-15",
- "type": "tms",
- "url": "https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Feb2013_10cm/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 144.9146,
- -37.7993
- ],
- [
- 144.9139,
- -37.7989
- ],
- [
- 144.9128,
- -37.7986
- ],
- [
- 144.9114,
- -37.7988
- ],
- [
- 144.9098,
- -37.7998
- ],
- [
- 144.906,
- -37.8064
- ],
- [
- 144.9043,
- -37.8126
- ],
- [
- 144.9042,
- -37.8142
- ],
- [
- 144.9056,
- -37.8209
- ],
- [
- 144.9043,
- -37.8224
- ],
- [
- 144.899,
- -37.8273
- ],
- [
- 144.8969,
- -37.8301
- ],
- [
- 144.896,
- -37.8335
- ],
- [
- 144.896,
- -37.8387
- ],
- [
- 144.897,
- -37.8419
- ],
- [
- 144.9011,
- -37.8469
- ],
- [
- 144.9052,
- -37.8502
- ],
- [
- 144.9068,
- -37.8506
- ],
- [
- 144.908,
- -37.8502
- ],
- [
- 144.9084,
- -37.8495
- ],
- [
- 144.907,
- -37.8477
- ],
- [
- 144.9076,
- -37.8469
- ],
- [
- 144.9045,
- -37.8416
- ],
- [
- 144.9053,
- -37.8414
- ],
- [
- 144.9081,
- -37.8458
- ],
- [
- 144.9118,
- -37.8502
- ],
- [
- 144.9127,
- -37.8504
- ],
- [
- 144.9155,
- -37.8489
- ],
- [
- 144.9155,
- -37.8481
- ],
- [
- 144.914,
- -37.8459
- ],
- [
- 144.9162,
- -37.8445
- ],
- [
- 144.914,
- -37.8413
- ],
- [
- 144.9163,
- -37.8399
- ],
- [
- 144.9165,
- -37.8384
- ],
- [
- 144.9151,
- -37.8344
- ],
- [
- 144.9183,
- -37.8331
- ],
- [
- 144.9195,
- -37.8326
- ],
- [
- 144.921,
- -37.8309
- ],
- [
- 144.9219,
- -37.83
- ],
- [
- 144.923,
- -37.8295
- ],
- [
- 144.9294,
- -37.8282
- ],
- [
- 144.9353,
- -37.827
- ],
- [
- 144.9411,
- -37.8269
- ],
- [
- 144.9418,
- -37.8268
- ],
- [
- 144.9458,
- -37.8275
- ],
- [
- 144.9471,
- -37.8279
- ],
- [
- 144.9478,
- -37.8278
- ],
- [
- 144.9579,
- -37.8295
- ],
- [
- 144.9592,
- -37.8294
- ],
- [
- 144.9613,
- -37.829
- ],
- [
- 144.9625,
- -37.8297
- ],
- [
- 144.9648,
- -37.8318
- ],
- [
- 144.9657,
- -37.8323
- ],
- [
- 144.9662,
- -37.8323
- ],
- [
- 144.9703,
- -37.8312
- ],
- [
- 144.9705,
- -37.8323
- ],
- [
- 144.9711,
- -37.8331
- ],
- [
- 144.9735,
- -37.8351
- ],
- [
- 144.9743,
- -37.836
- ],
- [
- 144.9794,
- -37.85
- ],
- [
- 144.9797,
- -37.8508
- ],
- [
- 144.9806,
- -37.8512
- ],
- [
- 144.9843,
- -37.8515
- ],
- [
- 144.9848,
- -37.8514
- ],
- [
- 144.9854,
- -37.8508
- ],
- [
- 144.9892,
- -37.8311
- ],
- [
- 144.9889,
- -37.8304
- ],
- [
- 144.9923,
- -37.8104
- ],
- [
- 144.9924,
- -37.8098
- ],
- [
- 144.9919,
- -37.809
- ],
- [
- 144.9745,
- -37.8071
- ],
- [
- 144.9768,
- -37.7933
- ],
- [
- 144.9767,
- -37.7928
- ],
- [
- 144.9764,
- -37.7923
- ],
- [
- 144.9759,
- -37.7922
- ],
- [
- 144.9698,
- -37.7915
- ],
- [
- 144.9708,
- -37.7857
- ],
- [
- 144.9704,
- -37.785
- ],
- [
- 144.9699,
- -37.7848
- ],
- [
- 144.9649,
- -37.7842
- ],
- [
- 144.9651,
- -37.7825
- ],
- [
- 144.9651,
- -37.782
- ],
- [
- 144.9642,
- -37.7814
- ],
- [
- 144.964,
- -37.7808
- ],
- [
- 144.9639,
- -37.7796
- ],
- [
- 144.9635,
- -37.7785
- ],
- [
- 144.9627,
- -37.7778
- ],
- [
- 144.9614,
- -37.7772
- ],
- [
- 144.9392,
- -37.7746
- ],
- [
- 144.9384,
- -37.7746
- ],
- [
- 144.938,
- -37.7749
- ],
- [
- 144.9373,
- -37.776
- ],
- [
- 144.9366,
- -37.7769
- ],
- [
- 144.9361,
- -37.7773
- ],
- [
- 144.936,
- -37.7779
- ],
- [
- 144.9378,
- -37.7814
- ],
- [
- 144.9383,
- -37.7842
- ],
- [
- 144.9391,
- -37.7865
- ],
- [
- 144.9389,
- -37.7867
- ],
- [
- 144.9388,
- -37.7873
- ],
- [
- 144.9377,
- -37.788
- ],
- [
- 144.9322,
- -37.7874
- ],
- [
- 144.9312,
- -37.7878
- ],
- [
- 144.9308,
- -37.7879
- ],
- [
- 144.93,
- -37.7874
- ],
- [
- 144.9218,
- -37.7864
- ],
- [
- 144.9149,
- -37.7794
- ],
- [
- 144.9143,
- -37.7787
- ],
- [
- 144.9137,
- -37.7785
- ],
- [
- 144.9129,
- -37.7786
- ],
- [
- 144.9082,
- -37.7813
- ],
- [
- 144.9072,
- -37.7821
- ],
- [
- 144.9057,
- -37.7845
- ],
- [
- 144.9053,
- -37.7864
- ],
- [
- 144.9043,
- -37.7866
- ],
- [
- 144.9037,
- -37.7872
- ],
- [
- 144.9032,
- -37.7883
- ],
- [
- 144.902,
- -37.7888
- ],
- [
- 144.9014,
- -37.7896
- ],
- [
- 144.9019,
- -37.791
- ],
- [
- 144.9026,
- -37.792
- ],
- [
- 144.9042,
- -37.7929
- ],
- [
- 144.9064,
- -37.7938
- ],
- [
- 144.9081,
- -37.7946
- ],
- [
- 144.9105,
- -37.7952
- ],
- [
- 144.9127,
- -37.796
- ],
- [
- 144.9143,
- -37.797
- ],
- [
- 144.9153,
- -37.7978
- ],
- [
- 144.9154,
- -37.7981
- ],
- [
- 144.9153,
- -37.7985
- ],
- [
- 144.9152,
- -37.7987
- ],
- [
- 144.9148,
- -37.7991
- ],
- [
- 144.9146,
- -37.7993
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "City of Melbourne",
- "url": "https://data.melbourne.vic.gov.au/Environment/2019-Aerial-Imagery/cwpe-ugri"
- },
- "best": true,
- "country_code": "AU",
- "end_date": "2019-02-03",
- "icon": "https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png",
- "id": "City_of_Melbourne_Feb_2019",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:City_of_Melbourne_OSMF_CCBY_waiver.pdf",
- "max_zoom": 22,
- "min_zoom": 10,
- "name": "City of Melbourne Feb 2019",
- "privacy_policy_url": "https://www.mapbox.com/legal/privacy/",
- "start_date": "2019-02-02",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.melbourne190203/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 144.9146,
- -37.7993
- ],
- [
- 144.9139,
- -37.7989
- ],
- [
- 144.9128,
- -37.7986
- ],
- [
- 144.9114,
- -37.7988
- ],
- [
- 144.9098,
- -37.7998
- ],
- [
- 144.906,
- -37.8064
- ],
- [
- 144.9043,
- -37.8126
- ],
- [
- 144.9042,
- -37.8142
- ],
- [
- 144.9056,
- -37.8209
- ],
- [
- 144.9043,
- -37.8224
- ],
- [
- 144.899,
- -37.8273
- ],
- [
- 144.8969,
- -37.8301
- ],
- [
- 144.896,
- -37.8335
- ],
- [
- 144.896,
- -37.8387
- ],
- [
- 144.897,
- -37.8419
- ],
- [
- 144.9011,
- -37.8469
- ],
- [
- 144.9052,
- -37.8502
- ],
- [
- 144.9068,
- -37.8506
- ],
- [
- 144.908,
- -37.8502
- ],
- [
- 144.9084,
- -37.8495
- ],
- [
- 144.907,
- -37.8477
- ],
- [
- 144.9076,
- -37.8469
- ],
- [
- 144.9045,
- -37.8416
- ],
- [
- 144.9053,
- -37.8414
- ],
- [
- 144.9081,
- -37.8458
- ],
- [
- 144.9118,
- -37.8502
- ],
- [
- 144.9127,
- -37.8504
- ],
- [
- 144.9155,
- -37.8489
- ],
- [
- 144.9155,
- -37.8481
- ],
- [
- 144.914,
- -37.8459
- ],
- [
- 144.9162,
- -37.8445
- ],
- [
- 144.914,
- -37.8413
- ],
- [
- 144.9163,
- -37.8399
- ],
- [
- 144.9165,
- -37.8384
- ],
- [
- 144.9151,
- -37.8344
- ],
- [
- 144.9183,
- -37.8331
- ],
- [
- 144.9195,
- -37.8326
- ],
- [
- 144.921,
- -37.8309
- ],
- [
- 144.9219,
- -37.83
- ],
- [
- 144.923,
- -37.8295
- ],
- [
- 144.9294,
- -37.8282
- ],
- [
- 144.9353,
- -37.827
- ],
- [
- 144.9411,
- -37.8269
- ],
- [
- 144.9418,
- -37.8268
- ],
- [
- 144.9458,
- -37.8275
- ],
- [
- 144.9471,
- -37.8279
- ],
- [
- 144.9478,
- -37.8278
- ],
- [
- 144.9579,
- -37.8295
- ],
- [
- 144.9592,
- -37.8294
- ],
- [
- 144.9613,
- -37.829
- ],
- [
- 144.9625,
- -37.8297
- ],
- [
- 144.9648,
- -37.8318
- ],
- [
- 144.9657,
- -37.8323
- ],
- [
- 144.9662,
- -37.8323
- ],
- [
- 144.9703,
- -37.8312
- ],
- [
- 144.9705,
- -37.8323
- ],
- [
- 144.9711,
- -37.8331
- ],
- [
- 144.9735,
- -37.8351
- ],
- [
- 144.9743,
- -37.836
- ],
- [
- 144.9794,
- -37.85
- ],
- [
- 144.9797,
- -37.8508
- ],
- [
- 144.9806,
- -37.8512
- ],
- [
- 144.9843,
- -37.8515
- ],
- [
- 144.9848,
- -37.8514
- ],
- [
- 144.9854,
- -37.8508
- ],
- [
- 144.9892,
- -37.8311
- ],
- [
- 144.9889,
- -37.8304
- ],
- [
- 144.9923,
- -37.8104
- ],
- [
- 144.9924,
- -37.8098
- ],
- [
- 144.9919,
- -37.809
- ],
- [
- 144.9745,
- -37.8071
- ],
- [
- 144.9768,
- -37.7933
- ],
- [
- 144.9767,
- -37.7928
- ],
- [
- 144.9764,
- -37.7923
- ],
- [
- 144.9759,
- -37.7922
- ],
- [
- 144.9698,
- -37.7915
- ],
- [
- 144.9708,
- -37.7857
- ],
- [
- 144.9704,
- -37.785
- ],
- [
- 144.9699,
- -37.7848
- ],
- [
- 144.9649,
- -37.7842
- ],
- [
- 144.9651,
- -37.7825
- ],
- [
- 144.9651,
- -37.782
- ],
- [
- 144.9642,
- -37.7814
- ],
- [
- 144.964,
- -37.7808
- ],
- [
- 144.9639,
- -37.7796
- ],
- [
- 144.9635,
- -37.7785
- ],
- [
- 144.9627,
- -37.7778
- ],
- [
- 144.9614,
- -37.7772
- ],
- [
- 144.9392,
- -37.7746
- ],
- [
- 144.9384,
- -37.7746
- ],
- [
- 144.938,
- -37.7749
- ],
- [
- 144.9373,
- -37.776
- ],
- [
- 144.9366,
- -37.7769
- ],
- [
- 144.9361,
- -37.7773
- ],
- [
- 144.936,
- -37.7779
- ],
- [
- 144.9378,
- -37.7814
- ],
- [
- 144.9383,
- -37.7842
- ],
- [
- 144.9391,
- -37.7865
- ],
- [
- 144.9389,
- -37.7867
- ],
- [
- 144.9388,
- -37.7873
- ],
- [
- 144.9377,
- -37.788
- ],
- [
- 144.9322,
- -37.7874
- ],
- [
- 144.9312,
- -37.7878
- ],
- [
- 144.9308,
- -37.7879
- ],
- [
- 144.93,
- -37.7874
- ],
- [
- 144.9218,
- -37.7864
- ],
- [
- 144.9149,
- -37.7794
- ],
- [
- 144.9143,
- -37.7787
- ],
- [
- 144.9137,
- -37.7785
- ],
- [
- 144.9129,
- -37.7786
- ],
- [
- 144.9082,
- -37.7813
- ],
- [
- 144.9072,
- -37.7821
- ],
- [
- 144.9057,
- -37.7845
- ],
- [
- 144.9053,
- -37.7864
- ],
- [
- 144.9043,
- -37.7866
- ],
- [
- 144.9037,
- -37.7872
- ],
- [
- 144.9032,
- -37.7883
- ],
- [
- 144.902,
- -37.7888
- ],
- [
- 144.9014,
- -37.7896
- ],
- [
- 144.9019,
- -37.791
- ],
- [
- 144.9026,
- -37.792
- ],
- [
- 144.9042,
- -37.7929
- ],
- [
- 144.9064,
- -37.7938
- ],
- [
- 144.9081,
- -37.7946
- ],
- [
- 144.9105,
- -37.7952
- ],
- [
- 144.9127,
- -37.796
- ],
- [
- 144.9143,
- -37.797
- ],
- [
- 144.9153,
- -37.7978
- ],
- [
- 144.9154,
- -37.7981
- ],
- [
- 144.9153,
- -37.7985
- ],
- [
- 144.9152,
- -37.7987
- ],
- [
- 144.9148,
- -37.7991
- ],
- [
- 144.9146,
- -37.7993
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "City of Melbourne",
- "url": "https://data.melbourne.vic.gov.au/Property-Planning/2018-Aerial-Imagery-True-Ortho-/qa5h-sfgh"
- },
- "country_code": "AU",
- "end_date": "2018-05",
- "icon": "https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png",
- "id": "City_of_Melbourne_May_2018",
- "license_url": "https://wiki.openstreetmap.org/wiki/File:City_of_Melbourne_OSMF_CCBY_waiver.pdf",
- "max_zoom": 22,
- "min_zoom": 10,
- "name": "City of Melbourne May 2018",
- "privacy_policy_url": "https://www.mapbox.com/legal/privacy/",
- "start_date": "2018-05",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.gdbhzo3g/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 129.00009,
- -31.68764
- ],
- [
- 128.99872,
- -14.58225
- ],
- [
- 127.08984,
- -12.29707
- ],
- [
- 124.76074,
- -12.98315
- ],
- [
- 121.24512,
- -15.70766
- ],
- [
- 119.0918,
- -17.60214
- ],
- [
- 115.53223,
- -18.85431
- ],
- [
- 112.41211,
- -20.46819
- ],
- [
- 111.24756,
- -22.83695
- ],
- [
- 111.00586,
- -25.62172
- ],
- [
- 111.64307,
- -29.66896
- ],
- [
- 111.68701,
- -32.3614
- ],
- [
- 112.14844,
- -34.47034
- ],
- [
- 113.35693,
- -36.10238
- ],
- [
- 116.98242,
- -36.70366
- ],
- [
- 119.44336,
- -36.94989
- ],
- [
- 122.27783,
- -36.61553
- ],
- [
- 125.99121,
- -35.40696
- ],
- [
- 127.59521,
- -34.57895
- ],
- [
- 128.86963,
- -33.59632
- ],
- [
- 129.00009,
- -31.68764
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Main Roads Western Australia",
- "url": "https://catalogue.data.wa.gov.au/dataset/clss-road-hierarchy"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326"
- ],
- "country_code": "AU",
- "id": "MainRoadsWA_Road_Hierarchy",
- "license_url": "https://wiki.openstreetmap.org/wiki/Contributors#Main_Roads_.28state_government_agency.29",
- "max_zoom": 21,
- "name": "Main Roads WA Road Hierarchy",
- "overlay": true,
- "type": "wms",
- "url": "https://services.slip.wa.gov.au/public/services/SLIP_Public_Services/Transport/MapServer/WMSServer?LAYERS=8&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&FORMAT=image%2Fpng&SRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 167.25037,
- -47.21957
- ],
- [
- 167.24487,
- -47.28016
- ],
- [
- 167.50305,
- -47.37975
- ],
- [
- 168.25012,
- -47.1561
- ],
- [
- 168.74451,
- -46.7963
- ],
- [
- 169.32678,
- -46.75492
- ],
- [
- 169.78271,
- -46.60417
- ],
- [
- 170.42542,
- -46.11133
- ],
- [
- 170.80444,
- -45.95115
- ],
- [
- 170.95276,
- -45.44086
- ],
- [
- 171.30981,
- -44.91036
- ],
- [
- 171.40869,
- -44.39062
- ],
- [
- 172.56226,
- -43.92955
- ],
- [
- 172.90283,
- -43.9691
- ],
- [
- 173.16101,
- -43.90977
- ],
- [
- 173.25989,
- -43.69568
- ],
- [
- 172.97424,
- -43.5366
- ],
- [
- 172.76001,
- -43.37711
- ],
- [
- 173.15002,
- -43.17714
- ],
- [
- 173.70483,
- -42.63396
- ],
- [
- 174.36401,
- -41.7836
- ],
- [
- 174.32007,
- -41.40978
- ],
- [
- 174.84741,
- -41.52914
- ],
- [
- 175.07263,
- -41.70573
- ],
- [
- 175.50659,
- -41.67291
- ],
- [
- 176.2262,
- -41.10833
- ],
- [
- 176.83044,
- -40.42604
- ],
- [
- 177.17102,
- -39.67337
- ],
- [
- 177.03918,
- -39.39375
- ],
- [
- 177.44568,
- -39.18118
- ],
- [
- 177.60498,
- -39.33005
- ],
- [
- 177.97852,
- -39.36828
- ],
- [
- 178.33557,
- -38.65978
- ],
- [
- 178.70911,
- -37.74466
- ],
- [
- 178.62671,
- -37.54458
- ],
- [
- 178.3136,
- -37.43125
- ],
- [
- 177.62146,
- -37.37889
- ],
- [
- 177.03918,
- -37.39635
- ],
- [
- 176.56128,
- -37.37016
- ],
- [
- 176.33606,
- -37.05956
- ],
- [
- 176.00647,
- -36.29742
- ],
- [
- 175.67688,
- -36.05354
- ],
- [
- 174.67163,
- -35.1783
- ],
- [
- 173.19397,
- -34.28445
- ],
- [
- 172.67761,
- -34.23451
- ],
- [
- 172.38647,
- -34.40238
- ],
- [
- 172.47986,
- -34.71904
- ],
- [
- 172.98523,
- -35.32185
- ],
- [
- 173.56201,
- -36.14231
- ],
- [
- 174.30908,
- -37.07709
- ],
- [
- 174.55627,
- -38.05242
- ],
- [
- 174.47937,
- -38.65549
- ],
- [
- 174.32556,
- -38.86537
- ],
- [
- 173.79822,
- -38.95941
- ],
- [
- 173.60596,
- -39.23225
- ],
- [
- 173.69934,
- -39.56335
- ],
- [
- 174.58923,
- -39.95607
- ],
- [
- 174.98474,
- -40.21664
- ],
- [
- 174.98474,
- -40.49292
- ],
- [
- 174.72107,
- -40.80549
- ],
- [
- 174.14978,
- -40.65147
- ],
- [
- 173.28186,
- -40.4344
- ],
- [
- 172.58972,
- -40.35073
- ],
- [
- 172.08435,
- -40.53468
- ],
- [
- 171.76575,
- -40.82628
- ],
- [
- 171.57349,
- -41.39742
- ],
- [
- 171.28235,
- -41.65239
- ],
- [
- 170.87585,
- -42.53284
- ],
- [
- 170.354,
- -42.87194
- ],
- [
- 168.27759,
- -43.92955
- ],
- [
- 167.6239,
- -44.47691
- ],
- [
- 166.55273,
- -45.38688
- ],
- [
- 166.27258,
- -45.91677
- ],
- [
- 166.48132,
- -46.22545
- ],
- [
- 167.67883,
- -46.47192
- ],
- [
- 167.25037,
- -47.21957
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sourced from LINZ CC-BY 4.0",
- "url": "https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data"
- },
- "best": true,
- "category": "photo",
- "country_code": "NZ",
- "icon": "https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico",
- "id": "LINZ_NZ_Aerial_Imagery",
- "license_url": "https://wiki.openstreetmap.org/wiki/Contributors#New_Zealand",
- "max_zoom": 21,
- "name": "LINZ NZ Aerial Imagery",
- "privacy_policy_url": "https://www.linz.govt.nz/privacy",
- "type": "tms",
- "url": "https://basemaps.linz.govt.nz/v1/tiles/aerial/EPSG:3857/{zoom}/{x}/{y}.jpg?api=d01egend5f8dv4zcbfj6z2t7rs3"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 167.25037,
- -47.21957
- ],
- [
- 167.24487,
- -47.28016
- ],
- [
- 167.50305,
- -47.37975
- ],
- [
- 168.25012,
- -47.1561
- ],
- [
- 168.74451,
- -46.7963
- ],
- [
- 169.32678,
- -46.75492
- ],
- [
- 169.78271,
- -46.60417
- ],
- [
- 170.42542,
- -46.11133
- ],
- [
- 170.80444,
- -45.95115
- ],
- [
- 170.95276,
- -45.44086
- ],
- [
- 171.30981,
- -44.91036
- ],
- [
- 171.40869,
- -44.39062
- ],
- [
- 172.56226,
- -43.92955
- ],
- [
- 172.90283,
- -43.9691
- ],
- [
- 173.16101,
- -43.90977
- ],
- [
- 173.25989,
- -43.69568
- ],
- [
- 172.97424,
- -43.5366
- ],
- [
- 172.76001,
- -43.37711
- ],
- [
- 173.15002,
- -43.17714
- ],
- [
- 173.70483,
- -42.63396
- ],
- [
- 174.36401,
- -41.7836
- ],
- [
- 174.32007,
- -41.40978
- ],
- [
- 174.84741,
- -41.52914
- ],
- [
- 175.07263,
- -41.70573
- ],
- [
- 175.50659,
- -41.67291
- ],
- [
- 176.2262,
- -41.10833
- ],
- [
- 176.83044,
- -40.42604
- ],
- [
- 177.17102,
- -39.67337
- ],
- [
- 177.03918,
- -39.39375
- ],
- [
- 177.44568,
- -39.18118
- ],
- [
- 177.60498,
- -39.33005
- ],
- [
- 177.97852,
- -39.36828
- ],
- [
- 178.33557,
- -38.65978
- ],
- [
- 178.70911,
- -37.74466
- ],
- [
- 178.62671,
- -37.54458
- ],
- [
- 178.3136,
- -37.43125
- ],
- [
- 177.62146,
- -37.37889
- ],
- [
- 177.03918,
- -37.39635
- ],
- [
- 176.56128,
- -37.37016
- ],
- [
- 176.33606,
- -37.05956
- ],
- [
- 176.00647,
- -36.29742
- ],
- [
- 175.67688,
- -36.05354
- ],
- [
- 174.67163,
- -35.1783
- ],
- [
- 173.19397,
- -34.28445
- ],
- [
- 172.67761,
- -34.23451
- ],
- [
- 172.38647,
- -34.40238
- ],
- [
- 172.47986,
- -34.71904
- ],
- [
- 172.98523,
- -35.32185
- ],
- [
- 173.56201,
- -36.14231
- ],
- [
- 174.30908,
- -37.07709
- ],
- [
- 174.55627,
- -38.05242
- ],
- [
- 174.47937,
- -38.65549
- ],
- [
- 174.32556,
- -38.86537
- ],
- [
- 173.79822,
- -38.95941
- ],
- [
- 173.60596,
- -39.23225
- ],
- [
- 173.69934,
- -39.56335
- ],
- [
- 174.58923,
- -39.95607
- ],
- [
- 174.98474,
- -40.21664
- ],
- [
- 174.98474,
- -40.49292
- ],
- [
- 174.72107,
- -40.80549
- ],
- [
- 174.14978,
- -40.65147
- ],
- [
- 173.28186,
- -40.4344
- ],
- [
- 172.58972,
- -40.35073
- ],
- [
- 172.08435,
- -40.53468
- ],
- [
- 171.76575,
- -40.82628
- ],
- [
- 171.57349,
- -41.39742
- ],
- [
- 171.28235,
- -41.65239
- ],
- [
- 170.87585,
- -42.53284
- ],
- [
- 170.354,
- -42.87194
- ],
- [
- 168.27759,
- -43.92955
- ],
- [
- 167.6239,
- -44.47691
- ],
- [
- 166.55273,
- -45.38688
- ],
- [
- 166.27258,
- -45.91677
- ],
- [
- 166.48132,
- -46.22545
- ],
- [
- 167.67883,
- -46.47192
- ],
- [
- 167.25037,
- -47.21957
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "CC BY 4.0 Land Information New Zealand",
- "url": "https://data.linz.govt.nz/layer/2343-nz-mainland-topo50-gridless-maps"
- },
- "category": "map",
- "country_code": "NZ",
- "icon": "https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico",
- "id": "LINZ_NZ_Topo50_Gridless_Maps",
- "license_url": "https://wiki.openstreetmap.org/wiki/Contributors#LINZ",
- "max_zoom": 21,
- "name": "LINZ NZ Topo50 Gridless Maps",
- "type": "tms",
- "url": "https://map.cazzaserver.com/linz_topo/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 153.06138,
- -11.78923
- ],
- [
- 153.06138,
- -11.28869
- ],
- [
- 153.10927,
- -11.07229
- ],
- [
- 154.41201,
- -11.07229
- ],
- [
- 154.41201,
- -11.78923
- ],
- [
- 153.06138,
- -11.78923
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "PG",
- "description": "Coarse coastline due to cloud cover in Bing/Mapbox (true color)",
- "end_date": "2014-12-24",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC80910682014358LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Vanatinai",
- "start_date": "2014-12-24",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC80910682014358LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- 150.38853,
- -2.80053
- ],
- [
- 150.38853,
- -2.3834
- ],
- [
- 150.83348,
- -2.3834
- ],
- [
- 150.83348,
- -2.80053
- ],
- [
- 150.38853,
- -2.80053
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "PG",
- "description": "Many missing islands in OSM (mostly mapped meanwhile) (true color)",
- "end_date": "2015-06-08",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC80940622015159LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: New Ireland",
- "start_date": "2015-06-08",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC80940622015159LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -55.5438,
- -35.77219
- ],
- [
- -64.31743,
- -49.44788
- ],
- [
- -61.52546,
- -55.68296
- ],
- [
- -66.04226,
- -55.24192
- ],
- [
- -66.6896,
- -55.17191
- ],
- [
- -66.86233,
- -55.04496
- ],
- [
- -67.23387,
- -54.9245
- ],
- [
- -67.47633,
- -54.92785
- ],
- [
- -67.71808,
- -54.91261
- ],
- [
- -67.96138,
- -54.88571
- ],
- [
- -68.18753,
- -54.89288
- ],
- [
- -68.61804,
- -54.92151
- ],
- [
- -68.66375,
- -52.66716
- ],
- [
- -68.51023,
- -52.39432
- ],
- [
- -70.01629,
- -52.05707
- ],
- [
- -72.05562,
- -52.01749
- ],
- [
- -72.09055,
- -51.93758
- ],
- [
- -72.02273,
- -51.88832
- ],
- [
- -72.49598,
- -51.597
- ],
- [
- -72.3623,
- -51.25935
- ],
- [
- -72.46252,
- -51.08654
- ],
- [
- -72.31217,
- -50.90093
- ],
- [
- -72.39293,
- -50.69005
- ],
- [
- -72.49148,
- -50.66866
- ],
- [
- -72.59646,
- -50.73916
- ],
- [
- -72.76983,
- -50.68829
- ],
- [
- -73.22154,
- -50.87193
- ],
- [
- -73.22709,
- -50.66897
- ],
- [
- -73.39438,
- -50.58008
- ],
- [
- -73.57703,
- -50.15788
- ],
- [
- -73.53993,
- -50.01443
- ],
- [
- -73.61453,
- -49.91795
- ],
- [
- -73.52684,
- -49.7716
- ],
- [
- -73.02779,
- -49.70085
- ],
- [
- -73.02788,
- -49.23743
- ],
- [
- -73.16148,
- -49.13062
- ],
- [
- -72.96385,
- -48.89084
- ],
- [
- -72.80952,
- -48.90039
- ],
- [
- -72.59462,
- -48.77255
- ],
- [
- -72.63621,
- -48.45823
- ],
- [
- -72.46698,
- -48.45706
- ],
- [
- -72.42158,
- -48.31422
- ],
- [
- -72.3428,
- -48.29046
- ],
- [
- -72.37166,
- -48.15995
- ],
- [
- -72.57678,
- -47.96054
- ],
- [
- -72.5731,
- -47.72062
- ],
- [
- -72.3839,
- -47.57888
- ],
- [
- -72.38448,
- -47.41759
- ],
- [
- -72.07162,
- -47.2755
- ],
- [
- -72.04726,
- -47.14867
- ],
- [
- -71.93566,
- -47.15037
- ],
- [
- -72.00956,
- -47.08473
- ],
- [
- -72.00759,
- -46.78833
- ],
- [
- -71.71488,
- -46.64453
- ],
- [
- -71.7985,
- -46.26925
- ],
- [
- -71.97019,
- -46.14972
- ],
- [
- -71.63332,
- -45.97063
- ],
- [
- -71.66595,
- -45.89232
- ],
- [
- -71.77408,
- -45.85187
- ],
- [
- -71.8548,
- -45.61169
- ],
- [
- -71.7885,
- -45.50505
- ],
- [
- -71.58354,
- -45.45607
- ],
- [
- -71.58236,
- -45.36316
- ],
- [
- -71.40574,
- -45.27206
- ],
- [
- -71.61593,
- -45.03146
- ],
- [
- -72.07949,
- -44.93988
- ],
- [
- -72.11766,
- -44.73884
- ],
- [
- -71.47444,
- -44.68048
- ],
- [
- -71.2897,
- -44.75036
- ],
- [
- -71.28469,
- -44.60892
- ],
- [
- -71.20209,
- -44.5359
- ],
- [
- -71.40536,
- -44.44891
- ],
- [
- -71.86374,
- -44.44274
- ],
- [
- -71.9047,
- -44.10354
- ],
- [
- -71.70007,
- -43.98287
- ],
- [
- -71.78725,
- -43.80985
- ],
- [
- -71.63263,
- -43.65888
- ],
- [
- -71.87866,
- -43.56195
- ],
- [
- -71.95542,
- -43.44292
- ],
- [
- -71.91512,
- -43.319
- ],
- [
- -71.80268,
- -43.29535
- ],
- [
- -71.73869,
- -43.19234
- ],
- [
- -71.94149,
- -43.11061
- ],
- [
- -72.18001,
- -42.8948
- ],
- [
- -72.18733,
- -42.66619
- ],
- [
- -72.06314,
- -42.53751
- ],
- [
- -72.0441,
- -42.41231
- ],
- [
- -72.14365,
- -42.40333
- ],
- [
- -72.20024,
- -42.17229
- ],
- [
- -72.17802,
- -42.13207
- ],
- [
- -72.06032,
- -42.10593
- ],
- [
- -71.78041,
- -42.12128
- ],
- [
- -71.83133,
- -41.78089
- ],
- [
- -71.94135,
- -41.60926
- ],
- [
- -71.9023,
- -41.06778
- ],
- [
- -72.02097,
- -40.73647
- ],
- [
- -71.91507,
- -40.61832
- ],
- [
- -71.87117,
- -40.38959
- ],
- [
- -71.76665,
- -40.35676
- ],
- [
- -71.87961,
- -40.24227
- ],
- [
- -71.8856,
- -40.10093
- ],
- [
- -71.67779,
- -39.92156
- ],
- [
- -71.74365,
- -39.86164
- ],
- [
- -71.77001,
- -39.61946
- ],
- [
- -71.68665,
- -39.50983
- ],
- [
- -71.58545,
- -39.55159
- ],
- [
- -71.45202,
- -39.31025
- ],
- [
- -71.47673,
- -38.89162
- ],
- [
- -71.25594,
- -38.74909
- ],
- [
- -70.95844,
- -38.70272
- ],
- [
- -70.89411,
- -38.57644
- ],
- [
- -71.03346,
- -38.45451
- ],
- [
- -71.08724,
- -38.09054
- ],
- [
- -71.23505,
- -37.86541
- ],
- [
- -71.26668,
- -37.68295
- ],
- [
- -71.18031,
- -37.4828
- ],
- [
- -71.27241,
- -37.28686
- ],
- [
- -71.17697,
- -37.1077
- ],
- [
- -71.27586,
- -36.9637
- ],
- [
- -71.20495,
- -36.91075
- ],
- [
- -71.2345,
- -36.83303
- ],
- [
- -71.07654,
- -36.43571
- ],
- [
- -70.96469,
- -36.43366
- ],
- [
- -70.90086,
- -36.34336
- ],
- [
- -70.77062,
- -36.35412
- ],
- [
- -70.59553,
- -36.12118
- ],
- [
- -70.44219,
- -36.14876
- ],
- [
- -70.42788,
- -35.73781
- ],
- [
- -70.50607,
- -35.38014
- ],
- [
- -70.59764,
- -35.34459
- ],
- [
- -70.63128,
- -35.23712
- ],
- [
- -70.42629,
- -35.12462
- ],
- [
- -70.32933,
- -34.83081
- ],
- [
- -70.35687,
- -34.72532
- ],
- [
- -70.07752,
- -34.38253
- ],
- [
- -70.06901,
- -34.24694
- ],
- [
- -69.87771,
- -34.20233
- ],
- [
- -69.95948,
- -33.77235
- ],
- [
- -69.83371,
- -33.34911
- ],
- [
- -70.02502,
- -33.37388
- ],
- [
- -70.14906,
- -33.04145
- ],
- [
- -70.06223,
- -33.01233
- ],
- [
- -70.00981,
- -32.90747
- ],
- [
- -70.19517,
- -32.75732
- ],
- [
- -70.19589,
- -32.50891
- ],
- [
- -70.28486,
- -32.45564
- ],
- [
- -70.44343,
- -32.05325
- ],
- [
- -70.41077,
- -31.9809
- ],
- [
- -70.29402,
- -31.95849
- ],
- [
- -70.5117,
- -31.85844
- ],
- [
- -70.62295,
- -31.59949
- ],
- [
- -70.59941,
- -31.29869
- ],
- [
- -70.5377,
- -31.08557
- ],
- [
- -70.35748,
- -31.0002
- ],
- [
- -70.20264,
- -30.32249
- ],
- [
- -69.97775,
- -30.32288
- ],
- [
- -69.847,
- -30.16294
- ],
- [
- -70.01824,
- -30.10003
- ],
- [
- -69.95038,
- -29.73744
- ],
- [
- -70.03755,
- -29.35428
- ],
- [
- -69.97565,
- -29.18743
- ],
- [
- -69.85112,
- -29.06923
- ],
- [
- -69.70118,
- -28.37779
- ],
- [
- -69.20484,
- -27.90816
- ],
- [
- -68.84844,
- -27.13115
- ],
- [
- -68.76133,
- -27.08588
- ],
- [
- -68.60693,
- -27.09636
- ],
- [
- -68.3489,
- -26.92771
- ],
- [
- -68.64137,
- -26.50722
- ],
- [
- -68.60352,
- -26.25391
- ],
- [
- -68.45177,
- -26.1377
- ],
- [
- -68.63052,
- -25.43524
- ],
- [
- -68.55582,
- -25.14476
- ],
- [
- -68.44595,
- -25.0658
- ],
- [
- -68.62011,
- -24.81717
- ],
- [
- -68.55162,
- -24.58836
- ],
- [
- -68.28078,
- -24.34935
- ],
- [
- -67.32648,
- -24.02538
- ],
- [
- -66.99882,
- -23.00044
- ],
- [
- -67.18775,
- -22.81375
- ],
- [
- -67.08088,
- -22.62433
- ],
- [
- -67.03366,
- -22.53815
- ],
- [
- -66.84345,
- -22.39746
- ],
- [
- -66.73734,
- -22.22282
- ],
- [
- -66.38248,
- -22.07602
- ],
- [
- -66.28978,
- -21.76554
- ],
- [
- -66.21845,
- -21.72575
- ],
- [
- -65.89675,
- -21.88263
- ],
- [
- -65.71368,
- -22.09054
- ],
- [
- -65.61493,
- -22.09152
- ],
- [
- -65.60973,
- -22.09505
- ],
- [
- -65.60607,
- -22.09358
- ],
- [
- -65.60256,
- -22.09658
- ],
- [
- -65.60015,
- -22.09543
- ],
- [
- -65.59229,
- -22.09511
- ],
- [
- -65.59015,
- -22.09735
- ],
- [
- -65.58691,
- -22.09645
- ],
- [
- -65.58512,
- -22.08432
- ],
- [
- -65.57523,
- -22.07312
- ],
- [
- -65.47487,
- -22.08487
- ],
- [
- -64.99026,
- -22.06739
- ],
- [
- -64.59768,
- -22.19269
- ],
- [
- -64.52643,
- -22.29504
- ],
- [
- -64.33114,
- -22.68517
- ],
- [
- -64.10381,
- -22.34114
- ],
- [
- -64.10712,
- -22.32023
- ],
- [
- -64.06522,
- -22.23093
- ],
- [
- -64.04702,
- -22.23757
- ],
- [
- -64.03654,
- -22.19469
- ],
- [
- -64.0029,
- -22.10735
- ],
- [
- -63.99022,
- -22.07925
- ],
- [
- -63.97147,
- -22.07619
- ],
- [
- -63.94118,
- -21.99823
- ],
- [
- -63.70932,
- -21.99896
- ],
- [
- -63.68839,
- -22.01037
- ],
- [
- -63.68079,
- -22.03116
- ],
- [
- -63.68507,
- -22.04019
- ],
- [
- -63.68156,
- -22.05185
- ],
- [
- -63.67659,
- -22.03287
- ],
- [
- -63.67201,
- -22.02293
- ],
- [
- -63.66821,
- -22.01634
- ],
- [
- -63.67191,
- -22.01399
- ],
- [
- -63.66566,
- -21.99839
- ],
- [
- -62.79606,
- -21.98778
- ],
- [
- -62.74618,
- -22.10033
- ],
- [
- -62.18511,
- -22.50843
- ],
- [
- -61.93761,
- -22.97376
- ],
- [
- -61.45605,
- -23.36182
- ],
- [
- -61.05842,
- -23.56621
- ],
- [
- -60.95137,
- -23.75997
- ],
- [
- -60.28746,
- -24.01906
- ],
- [
- -60.03728,
- -24.00408
- ],
- [
- -59.46607,
- -24.33428
- ],
- [
- -59.12256,
- -24.59772
- ],
- [
- -58.46645,
- -24.84584
- ],
- [
- -58.332,
- -24.98132
- ],
- [
- -58.2349,
- -24.91756
- ],
- [
- -57.8565,
- -25.08005
- ],
- [
- -57.76981,
- -25.15013
- ],
- [
- -57.75374,
- -25.17277
- ],
- [
- -57.71597,
- -25.26456
- ],
- [
- -57.71837,
- -25.27146
- ],
- [
- -57.71111,
- -25.27265
- ],
- [
- -57.71008,
- -25.28146
- ],
- [
- -57.70692,
- -25.2845
- ],
- [
- -57.70438,
- -25.28159
- ],
- [
- -57.70273,
- -25.28239
- ],
- [
- -57.70175,
- -25.28459
- ],
- [
- -57.69741,
- -25.28283
- ],
- [
- -57.69281,
- -25.28588
- ],
- [
- -57.69733,
- -25.29337
- ],
- [
- -57.70246,
- -25.29847
- ],
- [
- -57.69612,
- -25.30832
- ],
- [
- -57.69763,
- -25.3199
- ],
- [
- -57.69143,
- -25.32127
- ],
- [
- -57.67993,
- -25.33318
- ],
- [
- -57.64822,
- -25.3679
- ],
- [
- -57.63902,
- -25.38287
- ],
- [
- -57.61504,
- -25.38841
- ],
- [
- -57.59954,
- -25.39704
- ],
- [
- -57.57673,
- -25.42029
- ],
- [
- -57.56698,
- -25.43147
- ],
- [
- -57.55477,
- -25.43999
- ],
- [
- -57.55285,
- -25.44705
- ],
- [
- -57.55811,
- -25.45717
- ],
- [
- -57.55763,
- -25.46897
- ],
- [
- -57.56523,
- -25.48014
- ],
- [
- -57.56806,
- -25.49501
- ],
- [
- -57.57722,
- -25.50575
- ],
- [
- -57.57566,
- -25.52264
- ],
- [
- -57.5661,
- -25.54112
- ],
- [
- -57.56809,
- -25.55797
- ],
- [
- -57.58142,
- -25.57145
- ],
- [
- -57.59952,
- -25.57438
- ],
- [
- -57.60444,
- -25.59855
- ],
- [
- -57.6122,
- -25.61963
- ],
- [
- -57.6367,
- -25.61807
- ],
- [
- -57.66569,
- -25.60273
- ],
- [
- -57.67006,
- -25.65579
- ],
- [
- -57.67513,
- -25.66052
- ],
- [
- -57.68626,
- -25.66287
- ],
- [
- -57.69808,
- -25.65933
- ],
- [
- -57.71855,
- -25.64914
- ],
- [
- -57.72537,
- -25.71924
- ],
- [
- -57.77786,
- -25.77559
- ],
- [
- -57.84986,
- -26.01142
- ],
- [
- -58.08597,
- -26.14202
- ],
- [
- -58.13896,
- -26.66834
- ],
- [
- -58.28224,
- -26.80127
- ],
- [
- -58.32056,
- -26.82169
- ],
- [
- -58.3167,
- -26.86081
- ],
- [
- -58.32384,
- -26.87074
- ],
- [
- -58.56858,
- -27.20629
- ],
- [
- -57.90834,
- -27.24265
- ],
- [
- -56.99114,
- -27.41858
- ],
- [
- -56.60886,
- -27.36586
- ],
- [
- -56.40607,
- -27.52701
- ],
- [
- -56.32355,
- -27.36897
- ],
- [
- -56.09353,
- -27.25219
- ],
- [
- -55.76168,
- -27.38106
- ],
- [
- -55.65541,
- -27.30153
- ],
- [
- -55.67524,
- -27.17004
- ],
- [
- -55.59643,
- -27.06538
- ],
- [
- -55.40826,
- -26.91763
- ],
- [
- -55.20788,
- -26.89214
- ],
- [
- -54.97304,
- -26.63717
- ],
- [
- -54.8532,
- -26.59894
- ],
- [
- -54.72264,
- -26.31238
- ],
- [
- -54.73235,
- -25.98554
- ],
- [
- -54.65309,
- -25.84138
- ],
- [
- -54.71357,
- -25.66721
- ],
- [
- -54.62995,
- -25.55106
- ],
- [
- -54.44288,
- -25.5795
- ],
- [
- -54.11451,
- -25.4396
- ],
- [
- -53.80059,
- -25.65093
- ],
- [
- -53.766,
- -25.94301
- ],
- [
- -53.59024,
- -26.19274
- ],
- [
- -53.67264,
- -26.61495
- ],
- [
- -53.61669,
- -26.95395
- ],
- [
- -53.76351,
- -27.18917
- ],
- [
- -54.15393,
- -27.36033
- ],
- [
- -54.26461,
- -27.49923
- ],
- [
- -54.79439,
- -27.6397
- ],
- [
- -55.0044,
- -27.90341
- ],
- [
- -55.19076,
- -27.92946
- ],
- [
- -55.41589,
- -28.14304
- ],
- [
- -55.66542,
- -28.26547
- ],
- [
- -55.61633,
- -28.32205
- ],
- [
- -55.65957,
- -28.46539
- ],
- [
- -55.83413,
- -28.42136
- ],
- [
- -55.87339,
- -28.49468
- ],
- [
- -56.13558,
- -28.7265
- ],
- [
- -56.37343,
- -29.10817
- ],
- [
- -56.569,
- -29.13892
- ],
- [
- -56.76306,
- -29.48638
- ],
- [
- -57.05958,
- -29.72263
- ],
- [
- -57.24463,
- -29.86452
- ],
- [
- -57.3045,
- -30.03966
- ],
- [
- -57.61942,
- -30.20517
- ],
- [
- -57.60863,
- -30.32424
- ],
- [
- -57.82983,
- -30.53118
- ],
- [
- -57.75241,
- -30.68756
- ],
- [
- -57.75273,
- -30.91942
- ],
- [
- -57.93419,
- -31.27388
- ],
- [
- -57.99,
- -31.36053
- ],
- [
- -57.98302,
- -31.3734
- ],
- [
- -57.97736,
- -31.38022
- ],
- [
- -57.97778,
- -31.38599
- ],
- [
- -57.98203,
- -31.39213
- ],
- [
- -58.00944,
- -31.41341
- ],
- [
- -58.06637,
- -31.47395
- ],
- [
- -57.92613,
- -31.57745
- ],
- [
- -57.98622,
- -31.77449
- ],
- [
- -58.12179,
- -31.89772
- ],
- [
- -58.11905,
- -32.14059
- ],
- [
- -58.04227,
- -32.29153
- ],
- [
- -58.14327,
- -32.45845
- ],
- [
- -58.0758,
- -33.00587
- ],
- [
- -58.18964,
- -33.09402
- ],
- [
- -58.2723,
- -33.1061
- ],
- [
- -58.31012,
- -33.1048
- ],
- [
- -58.35418,
- -33.1221
- ],
- [
- -58.37567,
- -33.17644
- ],
- [
- -58.44465,
- -33.5853
- ],
- [
- -58.43016,
- -33.71813
- ],
- [
- -58.42434,
- -33.86887
- ],
- [
- -58.41858,
- -33.91742
- ],
- [
- -58.33697,
- -34.00477
- ],
- [
- -58.241,
- -34.16246
- ],
- [
- -57.84696,
- -34.50017
- ],
- [
- -55.5438,
- -35.77219
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Mapa Educativo",
- "url": "http://mapa.educacion.gob.ar/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "AR",
- "icon": "http://mapa.educacion.gob.ar/wp-content/themes/sitio_nuevo/img/men_icon.png",
- "id": "Mapa-Educativo-wms",
- "license_url": "https://datos.gob.ar/acerca/marco-legal",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "Educational map (WMS)",
- "type": "wms_endpoint",
- "url": "http://www.mapaeducativo.edu.ar/geoserver/ogc/wms?SERVICE=WMS&"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -55.98107,
- -27.49161
- ],
- [
- -55.81536,
- -27.4901
- ],
- [
- -55.79547,
- -27.47875
- ],
- [
- -55.80229,
- -27.46904
- ],
- [
- -55.80122,
- -27.46816
- ],
- [
- -55.81217,
- -27.45416
- ],
- [
- -55.83014,
- -27.44918
- ],
- [
- -55.8467,
- -27.43985
- ],
- [
- -55.8656,
- -27.37607
- ],
- [
- -55.88358,
- -27.34641
- ],
- [
- -55.99031,
- -27.34635
- ],
- [
- -56.008,
- -27.35417
- ],
- [
- -56.00495,
- -27.35865
- ],
- [
- -56.01724,
- -27.36395
- ],
- [
- -56.00751,
- -27.38156
- ],
- [
- -56.0176,
- -27.38673
- ],
- [
- -56.00601,
- -27.40295
- ],
- [
- -56.01873,
- -27.40982
- ],
- [
- -56.00395,
- -27.43095
- ],
- [
- -56.01667,
- -27.43871
- ],
- [
- -55.98107,
- -27.49161
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Instituto Geográfico Nacional de la República Argentina",
- "url": "https://www.ign.gob.ar/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "AR",
- "icon": "https://www.ign.gob.ar/sites/default/files/favicon.png",
- "id": "ign-posadas",
- "license_url": "https://www.ign.gob.ar/descargas/tyc1.html",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "IGN orthophoto Posadas (WMTS)",
- "type": "wms_endpoint",
- "url": "https://ide.ign.gob.ar/geoservicios/services/sensores_remotos/posadas/ImageServer/WMSServer?request=GetCapabilities&service=WMS"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -55.5438,
- -35.77219
- ],
- [
- -64.31743,
- -49.44788
- ],
- [
- -61.52546,
- -55.68296
- ],
- [
- -66.04226,
- -55.24192
- ],
- [
- -66.6896,
- -55.17191
- ],
- [
- -66.86233,
- -55.04496
- ],
- [
- -67.23387,
- -54.9245
- ],
- [
- -67.47633,
- -54.92785
- ],
- [
- -67.71808,
- -54.91261
- ],
- [
- -67.96138,
- -54.88571
- ],
- [
- -68.18753,
- -54.89288
- ],
- [
- -68.61804,
- -54.92151
- ],
- [
- -68.66375,
- -52.66716
- ],
- [
- -68.51023,
- -52.39432
- ],
- [
- -70.01629,
- -52.05707
- ],
- [
- -72.05562,
- -52.01749
- ],
- [
- -72.09055,
- -51.93758
- ],
- [
- -72.02273,
- -51.88832
- ],
- [
- -72.49598,
- -51.597
- ],
- [
- -72.3623,
- -51.25935
- ],
- [
- -72.46252,
- -51.08654
- ],
- [
- -72.31217,
- -50.90093
- ],
- [
- -72.39293,
- -50.69005
- ],
- [
- -72.49148,
- -50.66866
- ],
- [
- -72.59646,
- -50.73916
- ],
- [
- -72.76983,
- -50.68829
- ],
- [
- -73.22154,
- -50.87193
- ],
- [
- -73.22709,
- -50.66897
- ],
- [
- -73.39438,
- -50.58008
- ],
- [
- -73.57703,
- -50.15788
- ],
- [
- -73.53993,
- -50.01443
- ],
- [
- -73.61453,
- -49.91795
- ],
- [
- -73.52684,
- -49.7716
- ],
- [
- -73.02779,
- -49.70085
- ],
- [
- -73.02788,
- -49.23743
- ],
- [
- -73.16148,
- -49.13062
- ],
- [
- -72.96385,
- -48.89084
- ],
- [
- -72.80952,
- -48.90039
- ],
- [
- -72.59462,
- -48.77255
- ],
- [
- -72.63621,
- -48.45823
- ],
- [
- -72.46698,
- -48.45706
- ],
- [
- -72.42158,
- -48.31422
- ],
- [
- -72.3428,
- -48.29046
- ],
- [
- -72.37166,
- -48.15995
- ],
- [
- -72.57678,
- -47.96054
- ],
- [
- -72.5731,
- -47.72062
- ],
- [
- -72.3839,
- -47.57888
- ],
- [
- -72.38448,
- -47.41759
- ],
- [
- -72.07162,
- -47.2755
- ],
- [
- -72.04726,
- -47.14867
- ],
- [
- -71.93566,
- -47.15037
- ],
- [
- -72.00956,
- -47.08473
- ],
- [
- -72.00759,
- -46.78833
- ],
- [
- -71.71488,
- -46.64453
- ],
- [
- -71.7985,
- -46.26925
- ],
- [
- -71.97019,
- -46.14972
- ],
- [
- -71.63332,
- -45.97063
- ],
- [
- -71.66595,
- -45.89232
- ],
- [
- -71.77408,
- -45.85187
- ],
- [
- -71.8548,
- -45.61169
- ],
- [
- -71.7885,
- -45.50505
- ],
- [
- -71.58354,
- -45.45607
- ],
- [
- -71.58236,
- -45.36316
- ],
- [
- -71.40574,
- -45.27206
- ],
- [
- -71.61593,
- -45.03146
- ],
- [
- -72.07949,
- -44.93988
- ],
- [
- -72.11766,
- -44.73884
- ],
- [
- -71.47444,
- -44.68048
- ],
- [
- -71.2897,
- -44.75036
- ],
- [
- -71.28469,
- -44.60892
- ],
- [
- -71.20209,
- -44.5359
- ],
- [
- -71.40536,
- -44.44891
- ],
- [
- -71.86374,
- -44.44274
- ],
- [
- -71.9047,
- -44.10354
- ],
- [
- -71.70007,
- -43.98287
- ],
- [
- -71.78725,
- -43.80985
- ],
- [
- -71.63263,
- -43.65888
- ],
- [
- -71.87866,
- -43.56195
- ],
- [
- -71.95542,
- -43.44292
- ],
- [
- -71.91512,
- -43.319
- ],
- [
- -71.80268,
- -43.29535
- ],
- [
- -71.73869,
- -43.19234
- ],
- [
- -71.94149,
- -43.11061
- ],
- [
- -72.18001,
- -42.8948
- ],
- [
- -72.18733,
- -42.66619
- ],
- [
- -72.06314,
- -42.53751
- ],
- [
- -72.0441,
- -42.41231
- ],
- [
- -72.14365,
- -42.40333
- ],
- [
- -72.20024,
- -42.17229
- ],
- [
- -72.17802,
- -42.13207
- ],
- [
- -72.06032,
- -42.10593
- ],
- [
- -71.78041,
- -42.12128
- ],
- [
- -71.83133,
- -41.78089
- ],
- [
- -71.94135,
- -41.60926
- ],
- [
- -71.9023,
- -41.06778
- ],
- [
- -72.02097,
- -40.73647
- ],
- [
- -71.91507,
- -40.61832
- ],
- [
- -71.87117,
- -40.38959
- ],
- [
- -71.76665,
- -40.35676
- ],
- [
- -71.87961,
- -40.24227
- ],
- [
- -71.8856,
- -40.10093
- ],
- [
- -71.67779,
- -39.92156
- ],
- [
- -71.74365,
- -39.86164
- ],
- [
- -71.77001,
- -39.61946
- ],
- [
- -71.68665,
- -39.50983
- ],
- [
- -71.58545,
- -39.55159
- ],
- [
- -71.45202,
- -39.31025
- ],
- [
- -71.47673,
- -38.89162
- ],
- [
- -71.25594,
- -38.74909
- ],
- [
- -70.95844,
- -38.70272
- ],
- [
- -70.89411,
- -38.57644
- ],
- [
- -71.03346,
- -38.45451
- ],
- [
- -71.08724,
- -38.09054
- ],
- [
- -71.23505,
- -37.86541
- ],
- [
- -71.26668,
- -37.68295
- ],
- [
- -71.18031,
- -37.4828
- ],
- [
- -71.27241,
- -37.28686
- ],
- [
- -71.17697,
- -37.1077
- ],
- [
- -71.27586,
- -36.9637
- ],
- [
- -71.20495,
- -36.91075
- ],
- [
- -71.2345,
- -36.83303
- ],
- [
- -71.07654,
- -36.43571
- ],
- [
- -70.96469,
- -36.43366
- ],
- [
- -70.90086,
- -36.34336
- ],
- [
- -70.77062,
- -36.35412
- ],
- [
- -70.59553,
- -36.12118
- ],
- [
- -70.44219,
- -36.14876
- ],
- [
- -70.42788,
- -35.73781
- ],
- [
- -70.50607,
- -35.38014
- ],
- [
- -70.59764,
- -35.34459
- ],
- [
- -70.63128,
- -35.23712
- ],
- [
- -70.42629,
- -35.12462
- ],
- [
- -70.32933,
- -34.83081
- ],
- [
- -70.35687,
- -34.72532
- ],
- [
- -70.07752,
- -34.38253
- ],
- [
- -70.06901,
- -34.24694
- ],
- [
- -69.87771,
- -34.20233
- ],
- [
- -69.95948,
- -33.77235
- ],
- [
- -69.83371,
- -33.34911
- ],
- [
- -70.02502,
- -33.37388
- ],
- [
- -70.14906,
- -33.04145
- ],
- [
- -70.06223,
- -33.01233
- ],
- [
- -70.00981,
- -32.90747
- ],
- [
- -70.19517,
- -32.75732
- ],
- [
- -70.19589,
- -32.50891
- ],
- [
- -70.28486,
- -32.45564
- ],
- [
- -70.44343,
- -32.05325
- ],
- [
- -70.41077,
- -31.9809
- ],
- [
- -70.29402,
- -31.95849
- ],
- [
- -70.5117,
- -31.85844
- ],
- [
- -70.62295,
- -31.59949
- ],
- [
- -70.59941,
- -31.29869
- ],
- [
- -70.5377,
- -31.08557
- ],
- [
- -70.35748,
- -31.0002
- ],
- [
- -70.20264,
- -30.32249
- ],
- [
- -69.97775,
- -30.32288
- ],
- [
- -69.847,
- -30.16294
- ],
- [
- -70.01824,
- -30.10003
- ],
- [
- -69.95038,
- -29.73744
- ],
- [
- -70.03755,
- -29.35428
- ],
- [
- -69.97565,
- -29.18743
- ],
- [
- -69.85112,
- -29.06923
- ],
- [
- -69.70118,
- -28.37779
- ],
- [
- -69.20484,
- -27.90816
- ],
- [
- -68.84844,
- -27.13115
- ],
- [
- -68.76133,
- -27.08588
- ],
- [
- -68.60693,
- -27.09636
- ],
- [
- -68.3489,
- -26.92771
- ],
- [
- -68.64137,
- -26.50722
- ],
- [
- -68.60352,
- -26.25391
- ],
- [
- -68.45177,
- -26.1377
- ],
- [
- -68.63052,
- -25.43524
- ],
- [
- -68.55582,
- -25.14476
- ],
- [
- -68.44595,
- -25.0658
- ],
- [
- -68.62011,
- -24.81717
- ],
- [
- -68.55162,
- -24.58836
- ],
- [
- -68.28078,
- -24.34935
- ],
- [
- -67.32648,
- -24.02538
- ],
- [
- -66.99882,
- -23.00044
- ],
- [
- -67.18775,
- -22.81375
- ],
- [
- -67.08088,
- -22.62433
- ],
- [
- -67.03366,
- -22.53815
- ],
- [
- -66.84345,
- -22.39746
- ],
- [
- -66.73734,
- -22.22282
- ],
- [
- -66.38248,
- -22.07602
- ],
- [
- -66.28978,
- -21.76554
- ],
- [
- -66.21845,
- -21.72575
- ],
- [
- -65.89675,
- -21.88263
- ],
- [
- -65.71368,
- -22.09054
- ],
- [
- -65.61493,
- -22.09152
- ],
- [
- -65.60973,
- -22.09505
- ],
- [
- -65.60607,
- -22.09358
- ],
- [
- -65.60256,
- -22.09658
- ],
- [
- -65.60015,
- -22.09543
- ],
- [
- -65.59229,
- -22.09511
- ],
- [
- -65.59015,
- -22.09735
- ],
- [
- -65.58691,
- -22.09645
- ],
- [
- -65.58512,
- -22.08432
- ],
- [
- -65.57523,
- -22.07312
- ],
- [
- -65.47487,
- -22.08487
- ],
- [
- -64.99026,
- -22.06739
- ],
- [
- -64.59768,
- -22.19269
- ],
- [
- -64.52643,
- -22.29504
- ],
- [
- -64.33114,
- -22.68517
- ],
- [
- -64.10381,
- -22.34114
- ],
- [
- -64.10712,
- -22.32023
- ],
- [
- -64.06522,
- -22.23093
- ],
- [
- -64.04702,
- -22.23757
- ],
- [
- -64.03654,
- -22.19469
- ],
- [
- -64.0029,
- -22.10735
- ],
- [
- -63.99022,
- -22.07925
- ],
- [
- -63.97147,
- -22.07619
- ],
- [
- -63.94118,
- -21.99823
- ],
- [
- -63.70932,
- -21.99896
- ],
- [
- -63.68839,
- -22.01037
- ],
- [
- -63.68079,
- -22.03116
- ],
- [
- -63.68507,
- -22.04019
- ],
- [
- -63.68156,
- -22.05185
- ],
- [
- -63.67659,
- -22.03287
- ],
- [
- -63.67201,
- -22.02293
- ],
- [
- -63.66821,
- -22.01634
- ],
- [
- -63.67191,
- -22.01399
- ],
- [
- -63.66566,
- -21.99839
- ],
- [
- -62.79606,
- -21.98778
- ],
- [
- -62.74618,
- -22.10033
- ],
- [
- -62.18511,
- -22.50843
- ],
- [
- -61.93761,
- -22.97376
- ],
- [
- -61.45605,
- -23.36182
- ],
- [
- -61.05842,
- -23.56621
- ],
- [
- -60.95137,
- -23.75997
- ],
- [
- -60.28746,
- -24.01906
- ],
- [
- -60.03728,
- -24.00408
- ],
- [
- -59.46607,
- -24.33428
- ],
- [
- -59.12256,
- -24.59772
- ],
- [
- -58.46645,
- -24.84584
- ],
- [
- -58.332,
- -24.98132
- ],
- [
- -58.2349,
- -24.91756
- ],
- [
- -57.8565,
- -25.08005
- ],
- [
- -57.76981,
- -25.15013
- ],
- [
- -57.75374,
- -25.17277
- ],
- [
- -57.71597,
- -25.26456
- ],
- [
- -57.71837,
- -25.27146
- ],
- [
- -57.71111,
- -25.27265
- ],
- [
- -57.71008,
- -25.28146
- ],
- [
- -57.70692,
- -25.2845
- ],
- [
- -57.70438,
- -25.28159
- ],
- [
- -57.70273,
- -25.28239
- ],
- [
- -57.70175,
- -25.28459
- ],
- [
- -57.69741,
- -25.28283
- ],
- [
- -57.69281,
- -25.28588
- ],
- [
- -57.69733,
- -25.29337
- ],
- [
- -57.70246,
- -25.29847
- ],
- [
- -57.69612,
- -25.30832
- ],
- [
- -57.69763,
- -25.3199
- ],
- [
- -57.69143,
- -25.32127
- ],
- [
- -57.67993,
- -25.33318
- ],
- [
- -57.64822,
- -25.3679
- ],
- [
- -57.63902,
- -25.38287
- ],
- [
- -57.61504,
- -25.38841
- ],
- [
- -57.59954,
- -25.39704
- ],
- [
- -57.57673,
- -25.42029
- ],
- [
- -57.56698,
- -25.43147
- ],
- [
- -57.55477,
- -25.43999
- ],
- [
- -57.55285,
- -25.44705
- ],
- [
- -57.55811,
- -25.45717
- ],
- [
- -57.55763,
- -25.46897
- ],
- [
- -57.56523,
- -25.48014
- ],
- [
- -57.56806,
- -25.49501
- ],
- [
- -57.57722,
- -25.50575
- ],
- [
- -57.57566,
- -25.52264
- ],
- [
- -57.5661,
- -25.54112
- ],
- [
- -57.56809,
- -25.55797
- ],
- [
- -57.58142,
- -25.57145
- ],
- [
- -57.59952,
- -25.57438
- ],
- [
- -57.60444,
- -25.59855
- ],
- [
- -57.6122,
- -25.61963
- ],
- [
- -57.6367,
- -25.61807
- ],
- [
- -57.66569,
- -25.60273
- ],
- [
- -57.67006,
- -25.65579
- ],
- [
- -57.67513,
- -25.66052
- ],
- [
- -57.68626,
- -25.66287
- ],
- [
- -57.69808,
- -25.65933
- ],
- [
- -57.71855,
- -25.64914
- ],
- [
- -57.72537,
- -25.71924
- ],
- [
- -57.77786,
- -25.77559
- ],
- [
- -57.84986,
- -26.01142
- ],
- [
- -58.08597,
- -26.14202
- ],
- [
- -58.13896,
- -26.66834
- ],
- [
- -58.28224,
- -26.80127
- ],
- [
- -58.32056,
- -26.82169
- ],
- [
- -58.3167,
- -26.86081
- ],
- [
- -58.32384,
- -26.87074
- ],
- [
- -58.56858,
- -27.20629
- ],
- [
- -57.90834,
- -27.24265
- ],
- [
- -56.99114,
- -27.41858
- ],
- [
- -56.60886,
- -27.36586
- ],
- [
- -56.40607,
- -27.52701
- ],
- [
- -56.32355,
- -27.36897
- ],
- [
- -56.09353,
- -27.25219
- ],
- [
- -55.76168,
- -27.38106
- ],
- [
- -55.65541,
- -27.30153
- ],
- [
- -55.67524,
- -27.17004
- ],
- [
- -55.59643,
- -27.06538
- ],
- [
- -55.40826,
- -26.91763
- ],
- [
- -55.20788,
- -26.89214
- ],
- [
- -54.97304,
- -26.63717
- ],
- [
- -54.8532,
- -26.59894
- ],
- [
- -54.72264,
- -26.31238
- ],
- [
- -54.73235,
- -25.98554
- ],
- [
- -54.65309,
- -25.84138
- ],
- [
- -54.71357,
- -25.66721
- ],
- [
- -54.62995,
- -25.55106
- ],
- [
- -54.44288,
- -25.5795
- ],
- [
- -54.11451,
- -25.4396
- ],
- [
- -53.80059,
- -25.65093
- ],
- [
- -53.766,
- -25.94301
- ],
- [
- -53.59024,
- -26.19274
- ],
- [
- -53.67264,
- -26.61495
- ],
- [
- -53.61669,
- -26.95395
- ],
- [
- -53.76351,
- -27.18917
- ],
- [
- -54.15393,
- -27.36033
- ],
- [
- -54.26461,
- -27.49923
- ],
- [
- -54.79439,
- -27.6397
- ],
- [
- -55.0044,
- -27.90341
- ],
- [
- -55.19076,
- -27.92946
- ],
- [
- -55.41589,
- -28.14304
- ],
- [
- -55.66542,
- -28.26547
- ],
- [
- -55.61633,
- -28.32205
- ],
- [
- -55.65957,
- -28.46539
- ],
- [
- -55.83413,
- -28.42136
- ],
- [
- -55.87339,
- -28.49468
- ],
- [
- -56.13558,
- -28.7265
- ],
- [
- -56.37343,
- -29.10817
- ],
- [
- -56.569,
- -29.13892
- ],
- [
- -56.76306,
- -29.48638
- ],
- [
- -57.05958,
- -29.72263
- ],
- [
- -57.24463,
- -29.86452
- ],
- [
- -57.3045,
- -30.03966
- ],
- [
- -57.61942,
- -30.20517
- ],
- [
- -57.60863,
- -30.32424
- ],
- [
- -57.82983,
- -30.53118
- ],
- [
- -57.75241,
- -30.68756
- ],
- [
- -57.75273,
- -30.91942
- ],
- [
- -57.93419,
- -31.27388
- ],
- [
- -57.99,
- -31.36053
- ],
- [
- -57.98302,
- -31.3734
- ],
- [
- -57.97736,
- -31.38022
- ],
- [
- -57.97778,
- -31.38599
- ],
- [
- -57.98203,
- -31.39213
- ],
- [
- -58.00944,
- -31.41341
- ],
- [
- -58.06637,
- -31.47395
- ],
- [
- -57.92613,
- -31.57745
- ],
- [
- -57.98622,
- -31.77449
- ],
- [
- -58.12179,
- -31.89772
- ],
- [
- -58.11905,
- -32.14059
- ],
- [
- -58.04227,
- -32.29153
- ],
- [
- -58.14327,
- -32.45845
- ],
- [
- -58.0758,
- -33.00587
- ],
- [
- -58.18964,
- -33.09402
- ],
- [
- -58.2723,
- -33.1061
- ],
- [
- -58.31012,
- -33.1048
- ],
- [
- -58.35418,
- -33.1221
- ],
- [
- -58.37567,
- -33.17644
- ],
- [
- -58.44465,
- -33.5853
- ],
- [
- -58.43016,
- -33.71813
- ],
- [
- -58.42434,
- -33.86887
- ],
- [
- -58.41858,
- -33.91742
- ],
- [
- -58.33697,
- -34.00477
- ],
- [
- -58.241,
- -34.16246
- ],
- [
- -57.84696,
- -34.50017
- ],
- [
- -55.5438,
- -35.77219
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Instituto Geográfico Nacional de la República Argentina",
- "url": "https://www.ign.gob.ar/"
- },
- "country_code": "AR",
- "icon": "https://www.ign.gob.ar/sites/default/files/favicon.png",
- "id": "ign-topografico-tms",
- "license_url": "https://www.ign.gob.ar/descargas/tyc1.html",
- "max_zoom": 19,
- "min_zoom": 1,
- "name": "IGN topographical map (TMS)",
- "type": "tms",
- "url": "https://ide.ign.gob.ar/geoservicios/rest/services/Mapas_IGN/mapa_topografico/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -55.5438,
- -35.77219
- ],
- [
- -64.31743,
- -49.44788
- ],
- [
- -61.52546,
- -55.68296
- ],
- [
- -66.04226,
- -55.24192
- ],
- [
- -66.6896,
- -55.17191
- ],
- [
- -66.86233,
- -55.04496
- ],
- [
- -67.23387,
- -54.9245
- ],
- [
- -67.47633,
- -54.92785
- ],
- [
- -67.71808,
- -54.91261
- ],
- [
- -67.96138,
- -54.88571
- ],
- [
- -68.18753,
- -54.89288
- ],
- [
- -68.61804,
- -54.92151
- ],
- [
- -68.66375,
- -52.66716
- ],
- [
- -68.51023,
- -52.39432
- ],
- [
- -70.01629,
- -52.05707
- ],
- [
- -72.05562,
- -52.01749
- ],
- [
- -72.09055,
- -51.93758
- ],
- [
- -72.02273,
- -51.88832
- ],
- [
- -72.49598,
- -51.597
- ],
- [
- -72.3623,
- -51.25935
- ],
- [
- -72.46252,
- -51.08654
- ],
- [
- -72.31217,
- -50.90093
- ],
- [
- -72.39293,
- -50.69005
- ],
- [
- -72.49148,
- -50.66866
- ],
- [
- -72.59646,
- -50.73916
- ],
- [
- -72.76983,
- -50.68829
- ],
- [
- -73.22154,
- -50.87193
- ],
- [
- -73.22709,
- -50.66897
- ],
- [
- -73.39438,
- -50.58008
- ],
- [
- -73.57703,
- -50.15788
- ],
- [
- -73.53993,
- -50.01443
- ],
- [
- -73.61453,
- -49.91795
- ],
- [
- -73.52684,
- -49.7716
- ],
- [
- -73.02779,
- -49.70085
- ],
- [
- -73.02788,
- -49.23743
- ],
- [
- -73.16148,
- -49.13062
- ],
- [
- -72.96385,
- -48.89084
- ],
- [
- -72.80952,
- -48.90039
- ],
- [
- -72.59462,
- -48.77255
- ],
- [
- -72.63621,
- -48.45823
- ],
- [
- -72.46698,
- -48.45706
- ],
- [
- -72.42158,
- -48.31422
- ],
- [
- -72.3428,
- -48.29046
- ],
- [
- -72.37166,
- -48.15995
- ],
- [
- -72.57678,
- -47.96054
- ],
- [
- -72.5731,
- -47.72062
- ],
- [
- -72.3839,
- -47.57888
- ],
- [
- -72.38448,
- -47.41759
- ],
- [
- -72.07162,
- -47.2755
- ],
- [
- -72.04726,
- -47.14867
- ],
- [
- -71.93566,
- -47.15037
- ],
- [
- -72.00956,
- -47.08473
- ],
- [
- -72.00759,
- -46.78833
- ],
- [
- -71.71488,
- -46.64453
- ],
- [
- -71.7985,
- -46.26925
- ],
- [
- -71.97019,
- -46.14972
- ],
- [
- -71.63332,
- -45.97063
- ],
- [
- -71.66595,
- -45.89232
- ],
- [
- -71.77408,
- -45.85187
- ],
- [
- -71.8548,
- -45.61169
- ],
- [
- -71.7885,
- -45.50505
- ],
- [
- -71.58354,
- -45.45607
- ],
- [
- -71.58236,
- -45.36316
- ],
- [
- -71.40574,
- -45.27206
- ],
- [
- -71.61593,
- -45.03146
- ],
- [
- -72.07949,
- -44.93988
- ],
- [
- -72.11766,
- -44.73884
- ],
- [
- -71.47444,
- -44.68048
- ],
- [
- -71.2897,
- -44.75036
- ],
- [
- -71.28469,
- -44.60892
- ],
- [
- -71.20209,
- -44.5359
- ],
- [
- -71.40536,
- -44.44891
- ],
- [
- -71.86374,
- -44.44274
- ],
- [
- -71.9047,
- -44.10354
- ],
- [
- -71.70007,
- -43.98287
- ],
- [
- -71.78725,
- -43.80985
- ],
- [
- -71.63263,
- -43.65888
- ],
- [
- -71.87866,
- -43.56195
- ],
- [
- -71.95542,
- -43.44292
- ],
- [
- -71.91512,
- -43.319
- ],
- [
- -71.80268,
- -43.29535
- ],
- [
- -71.73869,
- -43.19234
- ],
- [
- -71.94149,
- -43.11061
- ],
- [
- -72.18001,
- -42.8948
- ],
- [
- -72.18733,
- -42.66619
- ],
- [
- -72.06314,
- -42.53751
- ],
- [
- -72.0441,
- -42.41231
- ],
- [
- -72.14365,
- -42.40333
- ],
- [
- -72.20024,
- -42.17229
- ],
- [
- -72.17802,
- -42.13207
- ],
- [
- -72.06032,
- -42.10593
- ],
- [
- -71.78041,
- -42.12128
- ],
- [
- -71.83133,
- -41.78089
- ],
- [
- -71.94135,
- -41.60926
- ],
- [
- -71.9023,
- -41.06778
- ],
- [
- -72.02097,
- -40.73647
- ],
- [
- -71.91507,
- -40.61832
- ],
- [
- -71.87117,
- -40.38959
- ],
- [
- -71.76665,
- -40.35676
- ],
- [
- -71.87961,
- -40.24227
- ],
- [
- -71.8856,
- -40.10093
- ],
- [
- -71.67779,
- -39.92156
- ],
- [
- -71.74365,
- -39.86164
- ],
- [
- -71.77001,
- -39.61946
- ],
- [
- -71.68665,
- -39.50983
- ],
- [
- -71.58545,
- -39.55159
- ],
- [
- -71.45202,
- -39.31025
- ],
- [
- -71.47673,
- -38.89162
- ],
- [
- -71.25594,
- -38.74909
- ],
- [
- -70.95844,
- -38.70272
- ],
- [
- -70.89411,
- -38.57644
- ],
- [
- -71.03346,
- -38.45451
- ],
- [
- -71.08724,
- -38.09054
- ],
- [
- -71.23505,
- -37.86541
- ],
- [
- -71.26668,
- -37.68295
- ],
- [
- -71.18031,
- -37.4828
- ],
- [
- -71.27241,
- -37.28686
- ],
- [
- -71.17697,
- -37.1077
- ],
- [
- -71.27586,
- -36.9637
- ],
- [
- -71.20495,
- -36.91075
- ],
- [
- -71.2345,
- -36.83303
- ],
- [
- -71.07654,
- -36.43571
- ],
- [
- -70.96469,
- -36.43366
- ],
- [
- -70.90086,
- -36.34336
- ],
- [
- -70.77062,
- -36.35412
- ],
- [
- -70.59553,
- -36.12118
- ],
- [
- -70.44219,
- -36.14876
- ],
- [
- -70.42788,
- -35.73781
- ],
- [
- -70.50607,
- -35.38014
- ],
- [
- -70.59764,
- -35.34459
- ],
- [
- -70.63128,
- -35.23712
- ],
- [
- -70.42629,
- -35.12462
- ],
- [
- -70.32933,
- -34.83081
- ],
- [
- -70.35687,
- -34.72532
- ],
- [
- -70.07752,
- -34.38253
- ],
- [
- -70.06901,
- -34.24694
- ],
- [
- -69.87771,
- -34.20233
- ],
- [
- -69.95948,
- -33.77235
- ],
- [
- -69.83371,
- -33.34911
- ],
- [
- -70.02502,
- -33.37388
- ],
- [
- -70.14906,
- -33.04145
- ],
- [
- -70.06223,
- -33.01233
- ],
- [
- -70.00981,
- -32.90747
- ],
- [
- -70.19517,
- -32.75732
- ],
- [
- -70.19589,
- -32.50891
- ],
- [
- -70.28486,
- -32.45564
- ],
- [
- -70.44343,
- -32.05325
- ],
- [
- -70.41077,
- -31.9809
- ],
- [
- -70.29402,
- -31.95849
- ],
- [
- -70.5117,
- -31.85844
- ],
- [
- -70.62295,
- -31.59949
- ],
- [
- -70.59941,
- -31.29869
- ],
- [
- -70.5377,
- -31.08557
- ],
- [
- -70.35748,
- -31.0002
- ],
- [
- -70.20264,
- -30.32249
- ],
- [
- -69.97775,
- -30.32288
- ],
- [
- -69.847,
- -30.16294
- ],
- [
- -70.01824,
- -30.10003
- ],
- [
- -69.95038,
- -29.73744
- ],
- [
- -70.03755,
- -29.35428
- ],
- [
- -69.97565,
- -29.18743
- ],
- [
- -69.85112,
- -29.06923
- ],
- [
- -69.70118,
- -28.37779
- ],
- [
- -69.20484,
- -27.90816
- ],
- [
- -68.84844,
- -27.13115
- ],
- [
- -68.76133,
- -27.08588
- ],
- [
- -68.60693,
- -27.09636
- ],
- [
- -68.3489,
- -26.92771
- ],
- [
- -68.64137,
- -26.50722
- ],
- [
- -68.60352,
- -26.25391
- ],
- [
- -68.45177,
- -26.1377
- ],
- [
- -68.63052,
- -25.43524
- ],
- [
- -68.55582,
- -25.14476
- ],
- [
- -68.44595,
- -25.0658
- ],
- [
- -68.62011,
- -24.81717
- ],
- [
- -68.55162,
- -24.58836
- ],
- [
- -68.28078,
- -24.34935
- ],
- [
- -67.32648,
- -24.02538
- ],
- [
- -66.99882,
- -23.00044
- ],
- [
- -67.18775,
- -22.81375
- ],
- [
- -67.08088,
- -22.62433
- ],
- [
- -67.03366,
- -22.53815
- ],
- [
- -66.84345,
- -22.39746
- ],
- [
- -66.73734,
- -22.22282
- ],
- [
- -66.38248,
- -22.07602
- ],
- [
- -66.28978,
- -21.76554
- ],
- [
- -66.21845,
- -21.72575
- ],
- [
- -65.89675,
- -21.88263
- ],
- [
- -65.71368,
- -22.09054
- ],
- [
- -65.61493,
- -22.09152
- ],
- [
- -65.60973,
- -22.09505
- ],
- [
- -65.60607,
- -22.09358
- ],
- [
- -65.60256,
- -22.09658
- ],
- [
- -65.60015,
- -22.09543
- ],
- [
- -65.59229,
- -22.09511
- ],
- [
- -65.59015,
- -22.09735
- ],
- [
- -65.58691,
- -22.09645
- ],
- [
- -65.58512,
- -22.08432
- ],
- [
- -65.57523,
- -22.07312
- ],
- [
- -65.47487,
- -22.08487
- ],
- [
- -64.99026,
- -22.06739
- ],
- [
- -64.59768,
- -22.19269
- ],
- [
- -64.52643,
- -22.29504
- ],
- [
- -64.33114,
- -22.68517
- ],
- [
- -64.10381,
- -22.34114
- ],
- [
- -64.10712,
- -22.32023
- ],
- [
- -64.06522,
- -22.23093
- ],
- [
- -64.04702,
- -22.23757
- ],
- [
- -64.03654,
- -22.19469
- ],
- [
- -64.0029,
- -22.10735
- ],
- [
- -63.99022,
- -22.07925
- ],
- [
- -63.97147,
- -22.07619
- ],
- [
- -63.94118,
- -21.99823
- ],
- [
- -63.70932,
- -21.99896
- ],
- [
- -63.68839,
- -22.01037
- ],
- [
- -63.68079,
- -22.03116
- ],
- [
- -63.68507,
- -22.04019
- ],
- [
- -63.68156,
- -22.05185
- ],
- [
- -63.67659,
- -22.03287
- ],
- [
- -63.67201,
- -22.02293
- ],
- [
- -63.66821,
- -22.01634
- ],
- [
- -63.67191,
- -22.01399
- ],
- [
- -63.66566,
- -21.99839
- ],
- [
- -62.79606,
- -21.98778
- ],
- [
- -62.74618,
- -22.10033
- ],
- [
- -62.18511,
- -22.50843
- ],
- [
- -61.93761,
- -22.97376
- ],
- [
- -61.45605,
- -23.36182
- ],
- [
- -61.05842,
- -23.56621
- ],
- [
- -60.95137,
- -23.75997
- ],
- [
- -60.28746,
- -24.01906
- ],
- [
- -60.03728,
- -24.00408
- ],
- [
- -59.46607,
- -24.33428
- ],
- [
- -59.12256,
- -24.59772
- ],
- [
- -58.46645,
- -24.84584
- ],
- [
- -58.332,
- -24.98132
- ],
- [
- -58.2349,
- -24.91756
- ],
- [
- -57.8565,
- -25.08005
- ],
- [
- -57.76981,
- -25.15013
- ],
- [
- -57.75374,
- -25.17277
- ],
- [
- -57.71597,
- -25.26456
- ],
- [
- -57.71837,
- -25.27146
- ],
- [
- -57.71111,
- -25.27265
- ],
- [
- -57.71008,
- -25.28146
- ],
- [
- -57.70692,
- -25.2845
- ],
- [
- -57.70438,
- -25.28159
- ],
- [
- -57.70273,
- -25.28239
- ],
- [
- -57.70175,
- -25.28459
- ],
- [
- -57.69741,
- -25.28283
- ],
- [
- -57.69281,
- -25.28588
- ],
- [
- -57.69733,
- -25.29337
- ],
- [
- -57.70246,
- -25.29847
- ],
- [
- -57.69612,
- -25.30832
- ],
- [
- -57.69763,
- -25.3199
- ],
- [
- -57.69143,
- -25.32127
- ],
- [
- -57.67993,
- -25.33318
- ],
- [
- -57.64822,
- -25.3679
- ],
- [
- -57.63902,
- -25.38287
- ],
- [
- -57.61504,
- -25.38841
- ],
- [
- -57.59954,
- -25.39704
- ],
- [
- -57.57673,
- -25.42029
- ],
- [
- -57.56698,
- -25.43147
- ],
- [
- -57.55477,
- -25.43999
- ],
- [
- -57.55285,
- -25.44705
- ],
- [
- -57.55811,
- -25.45717
- ],
- [
- -57.55763,
- -25.46897
- ],
- [
- -57.56523,
- -25.48014
- ],
- [
- -57.56806,
- -25.49501
- ],
- [
- -57.57722,
- -25.50575
- ],
- [
- -57.57566,
- -25.52264
- ],
- [
- -57.5661,
- -25.54112
- ],
- [
- -57.56809,
- -25.55797
- ],
- [
- -57.58142,
- -25.57145
- ],
- [
- -57.59952,
- -25.57438
- ],
- [
- -57.60444,
- -25.59855
- ],
- [
- -57.6122,
- -25.61963
- ],
- [
- -57.6367,
- -25.61807
- ],
- [
- -57.66569,
- -25.60273
- ],
- [
- -57.67006,
- -25.65579
- ],
- [
- -57.67513,
- -25.66052
- ],
- [
- -57.68626,
- -25.66287
- ],
- [
- -57.69808,
- -25.65933
- ],
- [
- -57.71855,
- -25.64914
- ],
- [
- -57.72537,
- -25.71924
- ],
- [
- -57.77786,
- -25.77559
- ],
- [
- -57.84986,
- -26.01142
- ],
- [
- -58.08597,
- -26.14202
- ],
- [
- -58.13896,
- -26.66834
- ],
- [
- -58.28224,
- -26.80127
- ],
- [
- -58.32056,
- -26.82169
- ],
- [
- -58.3167,
- -26.86081
- ],
- [
- -58.32384,
- -26.87074
- ],
- [
- -58.56858,
- -27.20629
- ],
- [
- -57.90834,
- -27.24265
- ],
- [
- -56.99114,
- -27.41858
- ],
- [
- -56.60886,
- -27.36586
- ],
- [
- -56.40607,
- -27.52701
- ],
- [
- -56.32355,
- -27.36897
- ],
- [
- -56.09353,
- -27.25219
- ],
- [
- -55.76168,
- -27.38106
- ],
- [
- -55.65541,
- -27.30153
- ],
- [
- -55.67524,
- -27.17004
- ],
- [
- -55.59643,
- -27.06538
- ],
- [
- -55.40826,
- -26.91763
- ],
- [
- -55.20788,
- -26.89214
- ],
- [
- -54.97304,
- -26.63717
- ],
- [
- -54.8532,
- -26.59894
- ],
- [
- -54.72264,
- -26.31238
- ],
- [
- -54.73235,
- -25.98554
- ],
- [
- -54.65309,
- -25.84138
- ],
- [
- -54.71357,
- -25.66721
- ],
- [
- -54.62995,
- -25.55106
- ],
- [
- -54.44288,
- -25.5795
- ],
- [
- -54.11451,
- -25.4396
- ],
- [
- -53.80059,
- -25.65093
- ],
- [
- -53.766,
- -25.94301
- ],
- [
- -53.59024,
- -26.19274
- ],
- [
- -53.67264,
- -26.61495
- ],
- [
- -53.61669,
- -26.95395
- ],
- [
- -53.76351,
- -27.18917
- ],
- [
- -54.15393,
- -27.36033
- ],
- [
- -54.26461,
- -27.49923
- ],
- [
- -54.79439,
- -27.6397
- ],
- [
- -55.0044,
- -27.90341
- ],
- [
- -55.19076,
- -27.92946
- ],
- [
- -55.41589,
- -28.14304
- ],
- [
- -55.66542,
- -28.26547
- ],
- [
- -55.61633,
- -28.32205
- ],
- [
- -55.65957,
- -28.46539
- ],
- [
- -55.83413,
- -28.42136
- ],
- [
- -55.87339,
- -28.49468
- ],
- [
- -56.13558,
- -28.7265
- ],
- [
- -56.37343,
- -29.10817
- ],
- [
- -56.569,
- -29.13892
- ],
- [
- -56.76306,
- -29.48638
- ],
- [
- -57.05958,
- -29.72263
- ],
- [
- -57.24463,
- -29.86452
- ],
- [
- -57.3045,
- -30.03966
- ],
- [
- -57.61942,
- -30.20517
- ],
- [
- -57.60863,
- -30.32424
- ],
- [
- -57.82983,
- -30.53118
- ],
- [
- -57.75241,
- -30.68756
- ],
- [
- -57.75273,
- -30.91942
- ],
- [
- -57.93419,
- -31.27388
- ],
- [
- -57.99,
- -31.36053
- ],
- [
- -57.98302,
- -31.3734
- ],
- [
- -57.97736,
- -31.38022
- ],
- [
- -57.97778,
- -31.38599
- ],
- [
- -57.98203,
- -31.39213
- ],
- [
- -58.00944,
- -31.41341
- ],
- [
- -58.06637,
- -31.47395
- ],
- [
- -57.92613,
- -31.57745
- ],
- [
- -57.98622,
- -31.77449
- ],
- [
- -58.12179,
- -31.89772
- ],
- [
- -58.11905,
- -32.14059
- ],
- [
- -58.04227,
- -32.29153
- ],
- [
- -58.14327,
- -32.45845
- ],
- [
- -58.0758,
- -33.00587
- ],
- [
- -58.18964,
- -33.09402
- ],
- [
- -58.2723,
- -33.1061
- ],
- [
- -58.31012,
- -33.1048
- ],
- [
- -58.35418,
- -33.1221
- ],
- [
- -58.37567,
- -33.17644
- ],
- [
- -58.44465,
- -33.5853
- ],
- [
- -58.43016,
- -33.71813
- ],
- [
- -58.42434,
- -33.86887
- ],
- [
- -58.41858,
- -33.91742
- ],
- [
- -58.33697,
- -34.00477
- ],
- [
- -58.241,
- -34.16246
- ],
- [
- -57.84696,
- -34.50017
- ],
- [
- -55.5438,
- -35.77219
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Instituto Geográfico Nacional de la República Argentina",
- "url": "https://www.ign.gob.ar/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "AR",
- "icon": "https://www.ign.gob.ar/sites/default/files/favicon.png",
- "id": "ign-topografico-wms",
- "license_url": "https://www.ign.gob.ar/descargas/tyc1.html",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "IGN topographical map (WMS)",
- "type": "wms_endpoint",
- "url": "https://ide.ign.gob.ar/geoservicios/services/Mapas_IGN/mapa_topografico/MapServer/WMSServer?request=GetCapabilities&service=WMS"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -55.5438,
- -35.77219
- ],
- [
- -64.31743,
- -49.44788
- ],
- [
- -61.52546,
- -55.68296
- ],
- [
- -66.04226,
- -55.24192
- ],
- [
- -66.6896,
- -55.17191
- ],
- [
- -66.86233,
- -55.04496
- ],
- [
- -67.23387,
- -54.9245
- ],
- [
- -67.47633,
- -54.92785
- ],
- [
- -67.71808,
- -54.91261
- ],
- [
- -67.96138,
- -54.88571
- ],
- [
- -68.18753,
- -54.89288
- ],
- [
- -68.61804,
- -54.92151
- ],
- [
- -68.66375,
- -52.66716
- ],
- [
- -68.51023,
- -52.39432
- ],
- [
- -70.01629,
- -52.05707
- ],
- [
- -72.05562,
- -52.01749
- ],
- [
- -72.09055,
- -51.93758
- ],
- [
- -72.02273,
- -51.88832
- ],
- [
- -72.49598,
- -51.597
- ],
- [
- -72.3623,
- -51.25935
- ],
- [
- -72.46252,
- -51.08654
- ],
- [
- -72.31217,
- -50.90093
- ],
- [
- -72.39293,
- -50.69005
- ],
- [
- -72.49148,
- -50.66866
- ],
- [
- -72.59646,
- -50.73916
- ],
- [
- -72.76983,
- -50.68829
- ],
- [
- -73.22154,
- -50.87193
- ],
- [
- -73.22709,
- -50.66897
- ],
- [
- -73.39438,
- -50.58008
- ],
- [
- -73.57703,
- -50.15788
- ],
- [
- -73.53993,
- -50.01443
- ],
- [
- -73.61453,
- -49.91795
- ],
- [
- -73.52684,
- -49.7716
- ],
- [
- -73.02779,
- -49.70085
- ],
- [
- -73.02788,
- -49.23743
- ],
- [
- -73.16148,
- -49.13062
- ],
- [
- -72.96385,
- -48.89084
- ],
- [
- -72.80952,
- -48.90039
- ],
- [
- -72.59462,
- -48.77255
- ],
- [
- -72.63621,
- -48.45823
- ],
- [
- -72.46698,
- -48.45706
- ],
- [
- -72.42158,
- -48.31422
- ],
- [
- -72.3428,
- -48.29046
- ],
- [
- -72.37166,
- -48.15995
- ],
- [
- -72.57678,
- -47.96054
- ],
- [
- -72.5731,
- -47.72062
- ],
- [
- -72.3839,
- -47.57888
- ],
- [
- -72.38448,
- -47.41759
- ],
- [
- -72.07162,
- -47.2755
- ],
- [
- -72.04726,
- -47.14867
- ],
- [
- -71.93566,
- -47.15037
- ],
- [
- -72.00956,
- -47.08473
- ],
- [
- -72.00759,
- -46.78833
- ],
- [
- -71.71488,
- -46.64453
- ],
- [
- -71.7985,
- -46.26925
- ],
- [
- -71.97019,
- -46.14972
- ],
- [
- -71.63332,
- -45.97063
- ],
- [
- -71.66595,
- -45.89232
- ],
- [
- -71.77408,
- -45.85187
- ],
- [
- -71.8548,
- -45.61169
- ],
- [
- -71.7885,
- -45.50505
- ],
- [
- -71.58354,
- -45.45607
- ],
- [
- -71.58236,
- -45.36316
- ],
- [
- -71.40574,
- -45.27206
- ],
- [
- -71.61593,
- -45.03146
- ],
- [
- -72.07949,
- -44.93988
- ],
- [
- -72.11766,
- -44.73884
- ],
- [
- -71.47444,
- -44.68048
- ],
- [
- -71.2897,
- -44.75036
- ],
- [
- -71.28469,
- -44.60892
- ],
- [
- -71.20209,
- -44.5359
- ],
- [
- -71.40536,
- -44.44891
- ],
- [
- -71.86374,
- -44.44274
- ],
- [
- -71.9047,
- -44.10354
- ],
- [
- -71.70007,
- -43.98287
- ],
- [
- -71.78725,
- -43.80985
- ],
- [
- -71.63263,
- -43.65888
- ],
- [
- -71.87866,
- -43.56195
- ],
- [
- -71.95542,
- -43.44292
- ],
- [
- -71.91512,
- -43.319
- ],
- [
- -71.80268,
- -43.29535
- ],
- [
- -71.73869,
- -43.19234
- ],
- [
- -71.94149,
- -43.11061
- ],
- [
- -72.18001,
- -42.8948
- ],
- [
- -72.18733,
- -42.66619
- ],
- [
- -72.06314,
- -42.53751
- ],
- [
- -72.0441,
- -42.41231
- ],
- [
- -72.14365,
- -42.40333
- ],
- [
- -72.20024,
- -42.17229
- ],
- [
- -72.17802,
- -42.13207
- ],
- [
- -72.06032,
- -42.10593
- ],
- [
- -71.78041,
- -42.12128
- ],
- [
- -71.83133,
- -41.78089
- ],
- [
- -71.94135,
- -41.60926
- ],
- [
- -71.9023,
- -41.06778
- ],
- [
- -72.02097,
- -40.73647
- ],
- [
- -71.91507,
- -40.61832
- ],
- [
- -71.87117,
- -40.38959
- ],
- [
- -71.76665,
- -40.35676
- ],
- [
- -71.87961,
- -40.24227
- ],
- [
- -71.8856,
- -40.10093
- ],
- [
- -71.67779,
- -39.92156
- ],
- [
- -71.74365,
- -39.86164
- ],
- [
- -71.77001,
- -39.61946
- ],
- [
- -71.68665,
- -39.50983
- ],
- [
- -71.58545,
- -39.55159
- ],
- [
- -71.45202,
- -39.31025
- ],
- [
- -71.47673,
- -38.89162
- ],
- [
- -71.25594,
- -38.74909
- ],
- [
- -70.95844,
- -38.70272
- ],
- [
- -70.89411,
- -38.57644
- ],
- [
- -71.03346,
- -38.45451
- ],
- [
- -71.08724,
- -38.09054
- ],
- [
- -71.23505,
- -37.86541
- ],
- [
- -71.26668,
- -37.68295
- ],
- [
- -71.18031,
- -37.4828
- ],
- [
- -71.27241,
- -37.28686
- ],
- [
- -71.17697,
- -37.1077
- ],
- [
- -71.27586,
- -36.9637
- ],
- [
- -71.20495,
- -36.91075
- ],
- [
- -71.2345,
- -36.83303
- ],
- [
- -71.07654,
- -36.43571
- ],
- [
- -70.96469,
- -36.43366
- ],
- [
- -70.90086,
- -36.34336
- ],
- [
- -70.77062,
- -36.35412
- ],
- [
- -70.59553,
- -36.12118
- ],
- [
- -70.44219,
- -36.14876
- ],
- [
- -70.42788,
- -35.73781
- ],
- [
- -70.50607,
- -35.38014
- ],
- [
- -70.59764,
- -35.34459
- ],
- [
- -70.63128,
- -35.23712
- ],
- [
- -70.42629,
- -35.12462
- ],
- [
- -70.32933,
- -34.83081
- ],
- [
- -70.35687,
- -34.72532
- ],
- [
- -70.07752,
- -34.38253
- ],
- [
- -70.06901,
- -34.24694
- ],
- [
- -69.87771,
- -34.20233
- ],
- [
- -69.95948,
- -33.77235
- ],
- [
- -69.83371,
- -33.34911
- ],
- [
- -70.02502,
- -33.37388
- ],
- [
- -70.14906,
- -33.04145
- ],
- [
- -70.06223,
- -33.01233
- ],
- [
- -70.00981,
- -32.90747
- ],
- [
- -70.19517,
- -32.75732
- ],
- [
- -70.19589,
- -32.50891
- ],
- [
- -70.28486,
- -32.45564
- ],
- [
- -70.44343,
- -32.05325
- ],
- [
- -70.41077,
- -31.9809
- ],
- [
- -70.29402,
- -31.95849
- ],
- [
- -70.5117,
- -31.85844
- ],
- [
- -70.62295,
- -31.59949
- ],
- [
- -70.59941,
- -31.29869
- ],
- [
- -70.5377,
- -31.08557
- ],
- [
- -70.35748,
- -31.0002
- ],
- [
- -70.20264,
- -30.32249
- ],
- [
- -69.97775,
- -30.32288
- ],
- [
- -69.847,
- -30.16294
- ],
- [
- -70.01824,
- -30.10003
- ],
- [
- -69.95038,
- -29.73744
- ],
- [
- -70.03755,
- -29.35428
- ],
- [
- -69.97565,
- -29.18743
- ],
- [
- -69.85112,
- -29.06923
- ],
- [
- -69.70118,
- -28.37779
- ],
- [
- -69.20484,
- -27.90816
- ],
- [
- -68.84844,
- -27.13115
- ],
- [
- -68.76133,
- -27.08588
- ],
- [
- -68.60693,
- -27.09636
- ],
- [
- -68.3489,
- -26.92771
- ],
- [
- -68.64137,
- -26.50722
- ],
- [
- -68.60352,
- -26.25391
- ],
- [
- -68.45177,
- -26.1377
- ],
- [
- -68.63052,
- -25.43524
- ],
- [
- -68.55582,
- -25.14476
- ],
- [
- -68.44595,
- -25.0658
- ],
- [
- -68.62011,
- -24.81717
- ],
- [
- -68.55162,
- -24.58836
- ],
- [
- -68.28078,
- -24.34935
- ],
- [
- -67.32648,
- -24.02538
- ],
- [
- -66.99882,
- -23.00044
- ],
- [
- -67.18775,
- -22.81375
- ],
- [
- -67.08088,
- -22.62433
- ],
- [
- -67.03366,
- -22.53815
- ],
- [
- -66.84345,
- -22.39746
- ],
- [
- -66.73734,
- -22.22282
- ],
- [
- -66.38248,
- -22.07602
- ],
- [
- -66.28978,
- -21.76554
- ],
- [
- -66.21845,
- -21.72575
- ],
- [
- -65.89675,
- -21.88263
- ],
- [
- -65.71368,
- -22.09054
- ],
- [
- -65.61493,
- -22.09152
- ],
- [
- -65.60973,
- -22.09505
- ],
- [
- -65.60607,
- -22.09358
- ],
- [
- -65.60256,
- -22.09658
- ],
- [
- -65.60015,
- -22.09543
- ],
- [
- -65.59229,
- -22.09511
- ],
- [
- -65.59015,
- -22.09735
- ],
- [
- -65.58691,
- -22.09645
- ],
- [
- -65.58512,
- -22.08432
- ],
- [
- -65.57523,
- -22.07312
- ],
- [
- -65.47487,
- -22.08487
- ],
- [
- -64.99026,
- -22.06739
- ],
- [
- -64.59768,
- -22.19269
- ],
- [
- -64.52643,
- -22.29504
- ],
- [
- -64.33114,
- -22.68517
- ],
- [
- -64.10381,
- -22.34114
- ],
- [
- -64.10712,
- -22.32023
- ],
- [
- -64.06522,
- -22.23093
- ],
- [
- -64.04702,
- -22.23757
- ],
- [
- -64.03654,
- -22.19469
- ],
- [
- -64.0029,
- -22.10735
- ],
- [
- -63.99022,
- -22.07925
- ],
- [
- -63.97147,
- -22.07619
- ],
- [
- -63.94118,
- -21.99823
- ],
- [
- -63.70932,
- -21.99896
- ],
- [
- -63.68839,
- -22.01037
- ],
- [
- -63.68079,
- -22.03116
- ],
- [
- -63.68507,
- -22.04019
- ],
- [
- -63.68156,
- -22.05185
- ],
- [
- -63.67659,
- -22.03287
- ],
- [
- -63.67201,
- -22.02293
- ],
- [
- -63.66821,
- -22.01634
- ],
- [
- -63.67191,
- -22.01399
- ],
- [
- -63.66566,
- -21.99839
- ],
- [
- -62.79606,
- -21.98778
- ],
- [
- -62.74618,
- -22.10033
- ],
- [
- -62.18511,
- -22.50843
- ],
- [
- -61.93761,
- -22.97376
- ],
- [
- -61.45605,
- -23.36182
- ],
- [
- -61.05842,
- -23.56621
- ],
- [
- -60.95137,
- -23.75997
- ],
- [
- -60.28746,
- -24.01906
- ],
- [
- -60.03728,
- -24.00408
- ],
- [
- -59.46607,
- -24.33428
- ],
- [
- -59.12256,
- -24.59772
- ],
- [
- -58.46645,
- -24.84584
- ],
- [
- -58.332,
- -24.98132
- ],
- [
- -58.2349,
- -24.91756
- ],
- [
- -57.8565,
- -25.08005
- ],
- [
- -57.76981,
- -25.15013
- ],
- [
- -57.75374,
- -25.17277
- ],
- [
- -57.71597,
- -25.26456
- ],
- [
- -57.71837,
- -25.27146
- ],
- [
- -57.71111,
- -25.27265
- ],
- [
- -57.71008,
- -25.28146
- ],
- [
- -57.70692,
- -25.2845
- ],
- [
- -57.70438,
- -25.28159
- ],
- [
- -57.70273,
- -25.28239
- ],
- [
- -57.70175,
- -25.28459
- ],
- [
- -57.69741,
- -25.28283
- ],
- [
- -57.69281,
- -25.28588
- ],
- [
- -57.69733,
- -25.29337
- ],
- [
- -57.70246,
- -25.29847
- ],
- [
- -57.69612,
- -25.30832
- ],
- [
- -57.69763,
- -25.3199
- ],
- [
- -57.69143,
- -25.32127
- ],
- [
- -57.67993,
- -25.33318
- ],
- [
- -57.64822,
- -25.3679
- ],
- [
- -57.63902,
- -25.38287
- ],
- [
- -57.61504,
- -25.38841
- ],
- [
- -57.59954,
- -25.39704
- ],
- [
- -57.57673,
- -25.42029
- ],
- [
- -57.56698,
- -25.43147
- ],
- [
- -57.55477,
- -25.43999
- ],
- [
- -57.55285,
- -25.44705
- ],
- [
- -57.55811,
- -25.45717
- ],
- [
- -57.55763,
- -25.46897
- ],
- [
- -57.56523,
- -25.48014
- ],
- [
- -57.56806,
- -25.49501
- ],
- [
- -57.57722,
- -25.50575
- ],
- [
- -57.57566,
- -25.52264
- ],
- [
- -57.5661,
- -25.54112
- ],
- [
- -57.56809,
- -25.55797
- ],
- [
- -57.58142,
- -25.57145
- ],
- [
- -57.59952,
- -25.57438
- ],
- [
- -57.60444,
- -25.59855
- ],
- [
- -57.6122,
- -25.61963
- ],
- [
- -57.6367,
- -25.61807
- ],
- [
- -57.66569,
- -25.60273
- ],
- [
- -57.67006,
- -25.65579
- ],
- [
- -57.67513,
- -25.66052
- ],
- [
- -57.68626,
- -25.66287
- ],
- [
- -57.69808,
- -25.65933
- ],
- [
- -57.71855,
- -25.64914
- ],
- [
- -57.72537,
- -25.71924
- ],
- [
- -57.77786,
- -25.77559
- ],
- [
- -57.84986,
- -26.01142
- ],
- [
- -58.08597,
- -26.14202
- ],
- [
- -58.13896,
- -26.66834
- ],
- [
- -58.28224,
- -26.80127
- ],
- [
- -58.32056,
- -26.82169
- ],
- [
- -58.3167,
- -26.86081
- ],
- [
- -58.32384,
- -26.87074
- ],
- [
- -58.56858,
- -27.20629
- ],
- [
- -57.90834,
- -27.24265
- ],
- [
- -56.99114,
- -27.41858
- ],
- [
- -56.60886,
- -27.36586
- ],
- [
- -56.40607,
- -27.52701
- ],
- [
- -56.32355,
- -27.36897
- ],
- [
- -56.09353,
- -27.25219
- ],
- [
- -55.76168,
- -27.38106
- ],
- [
- -55.65541,
- -27.30153
- ],
- [
- -55.67524,
- -27.17004
- ],
- [
- -55.59643,
- -27.06538
- ],
- [
- -55.40826,
- -26.91763
- ],
- [
- -55.20788,
- -26.89214
- ],
- [
- -54.97304,
- -26.63717
- ],
- [
- -54.8532,
- -26.59894
- ],
- [
- -54.72264,
- -26.31238
- ],
- [
- -54.73235,
- -25.98554
- ],
- [
- -54.65309,
- -25.84138
- ],
- [
- -54.71357,
- -25.66721
- ],
- [
- -54.62995,
- -25.55106
- ],
- [
- -54.44288,
- -25.5795
- ],
- [
- -54.11451,
- -25.4396
- ],
- [
- -53.80059,
- -25.65093
- ],
- [
- -53.766,
- -25.94301
- ],
- [
- -53.59024,
- -26.19274
- ],
- [
- -53.67264,
- -26.61495
- ],
- [
- -53.61669,
- -26.95395
- ],
- [
- -53.76351,
- -27.18917
- ],
- [
- -54.15393,
- -27.36033
- ],
- [
- -54.26461,
- -27.49923
- ],
- [
- -54.79439,
- -27.6397
- ],
- [
- -55.0044,
- -27.90341
- ],
- [
- -55.19076,
- -27.92946
- ],
- [
- -55.41589,
- -28.14304
- ],
- [
- -55.66542,
- -28.26547
- ],
- [
- -55.61633,
- -28.32205
- ],
- [
- -55.65957,
- -28.46539
- ],
- [
- -55.83413,
- -28.42136
- ],
- [
- -55.87339,
- -28.49468
- ],
- [
- -56.13558,
- -28.7265
- ],
- [
- -56.37343,
- -29.10817
- ],
- [
- -56.569,
- -29.13892
- ],
- [
- -56.76306,
- -29.48638
- ],
- [
- -57.05958,
- -29.72263
- ],
- [
- -57.24463,
- -29.86452
- ],
- [
- -57.3045,
- -30.03966
- ],
- [
- -57.61942,
- -30.20517
- ],
- [
- -57.60863,
- -30.32424
- ],
- [
- -57.82983,
- -30.53118
- ],
- [
- -57.75241,
- -30.68756
- ],
- [
- -57.75273,
- -30.91942
- ],
- [
- -57.93419,
- -31.27388
- ],
- [
- -57.99,
- -31.36053
- ],
- [
- -57.98302,
- -31.3734
- ],
- [
- -57.97736,
- -31.38022
- ],
- [
- -57.97778,
- -31.38599
- ],
- [
- -57.98203,
- -31.39213
- ],
- [
- -58.00944,
- -31.41341
- ],
- [
- -58.06637,
- -31.47395
- ],
- [
- -57.92613,
- -31.57745
- ],
- [
- -57.98622,
- -31.77449
- ],
- [
- -58.12179,
- -31.89772
- ],
- [
- -58.11905,
- -32.14059
- ],
- [
- -58.04227,
- -32.29153
- ],
- [
- -58.14327,
- -32.45845
- ],
- [
- -58.0758,
- -33.00587
- ],
- [
- -58.18964,
- -33.09402
- ],
- [
- -58.2723,
- -33.1061
- ],
- [
- -58.31012,
- -33.1048
- ],
- [
- -58.35418,
- -33.1221
- ],
- [
- -58.37567,
- -33.17644
- ],
- [
- -58.44465,
- -33.5853
- ],
- [
- -58.43016,
- -33.71813
- ],
- [
- -58.42434,
- -33.86887
- ],
- [
- -58.41858,
- -33.91742
- ],
- [
- -58.33697,
- -34.00477
- ],
- [
- -58.241,
- -34.16246
- ],
- [
- -57.84696,
- -34.50017
- ],
- [
- -55.5438,
- -35.77219
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Ministerio de Agroindustria",
- "url": "https://www.agroindustria.gob.ar/"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "AR",
- "id": "Agroindustria-wms",
- "license_url": "https://datos.gob.ar/acerca/marco-legal",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "Ministry of Agroindustry (WMS)",
- "type": "wms_endpoint",
- "url": "https://ide.agroindustria.gob.ar/geoserver/agroindustria/ows?service=wms&version=1.1.1&request=GetCapabilities"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -55.5438,
- -35.77219
- ],
- [
- -64.31743,
- -49.44788
- ],
- [
- -61.52546,
- -55.68296
- ],
- [
- -66.04226,
- -55.24192
- ],
- [
- -66.6896,
- -55.17191
- ],
- [
- -66.86233,
- -55.04496
- ],
- [
- -67.23387,
- -54.9245
- ],
- [
- -67.47633,
- -54.92785
- ],
- [
- -67.71808,
- -54.91261
- ],
- [
- -67.96138,
- -54.88571
- ],
- [
- -68.18753,
- -54.89288
- ],
- [
- -68.61804,
- -54.92151
- ],
- [
- -68.66375,
- -52.66716
- ],
- [
- -68.51023,
- -52.39432
- ],
- [
- -70.01629,
- -52.05707
- ],
- [
- -72.05562,
- -52.01749
- ],
- [
- -72.09055,
- -51.93758
- ],
- [
- -72.02273,
- -51.88832
- ],
- [
- -72.49598,
- -51.597
- ],
- [
- -72.3623,
- -51.25935
- ],
- [
- -72.46252,
- -51.08654
- ],
- [
- -72.31217,
- -50.90093
- ],
- [
- -72.39293,
- -50.69005
- ],
- [
- -72.49148,
- -50.66866
- ],
- [
- -72.59646,
- -50.73916
- ],
- [
- -72.76983,
- -50.68829
- ],
- [
- -73.22154,
- -50.87193
- ],
- [
- -73.22709,
- -50.66897
- ],
- [
- -73.39438,
- -50.58008
- ],
- [
- -73.57703,
- -50.15788
- ],
- [
- -73.53993,
- -50.01443
- ],
- [
- -73.61453,
- -49.91795
- ],
- [
- -73.52684,
- -49.7716
- ],
- [
- -73.02779,
- -49.70085
- ],
- [
- -73.02788,
- -49.23743
- ],
- [
- -73.16148,
- -49.13062
- ],
- [
- -72.96385,
- -48.89084
- ],
- [
- -72.80952,
- -48.90039
- ],
- [
- -72.59462,
- -48.77255
- ],
- [
- -72.63621,
- -48.45823
- ],
- [
- -72.46698,
- -48.45706
- ],
- [
- -72.42158,
- -48.31422
- ],
- [
- -72.3428,
- -48.29046
- ],
- [
- -72.37166,
- -48.15995
- ],
- [
- -72.57678,
- -47.96054
- ],
- [
- -72.5731,
- -47.72062
- ],
- [
- -72.3839,
- -47.57888
- ],
- [
- -72.38448,
- -47.41759
- ],
- [
- -72.07162,
- -47.2755
- ],
- [
- -72.04726,
- -47.14867
- ],
- [
- -71.93566,
- -47.15037
- ],
- [
- -72.00956,
- -47.08473
- ],
- [
- -72.00759,
- -46.78833
- ],
- [
- -71.71488,
- -46.64453
- ],
- [
- -71.7985,
- -46.26925
- ],
- [
- -71.97019,
- -46.14972
- ],
- [
- -71.63332,
- -45.97063
- ],
- [
- -71.66595,
- -45.89232
- ],
- [
- -71.77408,
- -45.85187
- ],
- [
- -71.8548,
- -45.61169
- ],
- [
- -71.7885,
- -45.50505
- ],
- [
- -71.58354,
- -45.45607
- ],
- [
- -71.58236,
- -45.36316
- ],
- [
- -71.40574,
- -45.27206
- ],
- [
- -71.61593,
- -45.03146
- ],
- [
- -72.07949,
- -44.93988
- ],
- [
- -72.11766,
- -44.73884
- ],
- [
- -71.47444,
- -44.68048
- ],
- [
- -71.2897,
- -44.75036
- ],
- [
- -71.28469,
- -44.60892
- ],
- [
- -71.20209,
- -44.5359
- ],
- [
- -71.40536,
- -44.44891
- ],
- [
- -71.86374,
- -44.44274
- ],
- [
- -71.9047,
- -44.10354
- ],
- [
- -71.70007,
- -43.98287
- ],
- [
- -71.78725,
- -43.80985
- ],
- [
- -71.63263,
- -43.65888
- ],
- [
- -71.87866,
- -43.56195
- ],
- [
- -71.95542,
- -43.44292
- ],
- [
- -71.91512,
- -43.319
- ],
- [
- -71.80268,
- -43.29535
- ],
- [
- -71.73869,
- -43.19234
- ],
- [
- -71.94149,
- -43.11061
- ],
- [
- -72.18001,
- -42.8948
- ],
- [
- -72.18733,
- -42.66619
- ],
- [
- -72.06314,
- -42.53751
- ],
- [
- -72.0441,
- -42.41231
- ],
- [
- -72.14365,
- -42.40333
- ],
- [
- -72.20024,
- -42.17229
- ],
- [
- -72.17802,
- -42.13207
- ],
- [
- -72.06032,
- -42.10593
- ],
- [
- -71.78041,
- -42.12128
- ],
- [
- -71.83133,
- -41.78089
- ],
- [
- -71.94135,
- -41.60926
- ],
- [
- -71.9023,
- -41.06778
- ],
- [
- -72.02097,
- -40.73647
- ],
- [
- -71.91507,
- -40.61832
- ],
- [
- -71.87117,
- -40.38959
- ],
- [
- -71.76665,
- -40.35676
- ],
- [
- -71.87961,
- -40.24227
- ],
- [
- -71.8856,
- -40.10093
- ],
- [
- -71.67779,
- -39.92156
- ],
- [
- -71.74365,
- -39.86164
- ],
- [
- -71.77001,
- -39.61946
- ],
- [
- -71.68665,
- -39.50983
- ],
- [
- -71.58545,
- -39.55159
- ],
- [
- -71.45202,
- -39.31025
- ],
- [
- -71.47673,
- -38.89162
- ],
- [
- -71.25594,
- -38.74909
- ],
- [
- -70.95844,
- -38.70272
- ],
- [
- -70.89411,
- -38.57644
- ],
- [
- -71.03346,
- -38.45451
- ],
- [
- -71.08724,
- -38.09054
- ],
- [
- -71.23505,
- -37.86541
- ],
- [
- -71.26668,
- -37.68295
- ],
- [
- -71.18031,
- -37.4828
- ],
- [
- -71.27241,
- -37.28686
- ],
- [
- -71.17697,
- -37.1077
- ],
- [
- -71.27586,
- -36.9637
- ],
- [
- -71.20495,
- -36.91075
- ],
- [
- -71.2345,
- -36.83303
- ],
- [
- -71.07654,
- -36.43571
- ],
- [
- -70.96469,
- -36.43366
- ],
- [
- -70.90086,
- -36.34336
- ],
- [
- -70.77062,
- -36.35412
- ],
- [
- -70.59553,
- -36.12118
- ],
- [
- -70.44219,
- -36.14876
- ],
- [
- -70.42788,
- -35.73781
- ],
- [
- -70.50607,
- -35.38014
- ],
- [
- -70.59764,
- -35.34459
- ],
- [
- -70.63128,
- -35.23712
- ],
- [
- -70.42629,
- -35.12462
- ],
- [
- -70.32933,
- -34.83081
- ],
- [
- -70.35687,
- -34.72532
- ],
- [
- -70.07752,
- -34.38253
- ],
- [
- -70.06901,
- -34.24694
- ],
- [
- -69.87771,
- -34.20233
- ],
- [
- -69.95948,
- -33.77235
- ],
- [
- -69.83371,
- -33.34911
- ],
- [
- -70.02502,
- -33.37388
- ],
- [
- -70.14906,
- -33.04145
- ],
- [
- -70.06223,
- -33.01233
- ],
- [
- -70.00981,
- -32.90747
- ],
- [
- -70.19517,
- -32.75732
- ],
- [
- -70.19589,
- -32.50891
- ],
- [
- -70.28486,
- -32.45564
- ],
- [
- -70.44343,
- -32.05325
- ],
- [
- -70.41077,
- -31.9809
- ],
- [
- -70.29402,
- -31.95849
- ],
- [
- -70.5117,
- -31.85844
- ],
- [
- -70.62295,
- -31.59949
- ],
- [
- -70.59941,
- -31.29869
- ],
- [
- -70.5377,
- -31.08557
- ],
- [
- -70.35748,
- -31.0002
- ],
- [
- -70.20264,
- -30.32249
- ],
- [
- -69.97775,
- -30.32288
- ],
- [
- -69.847,
- -30.16294
- ],
- [
- -70.01824,
- -30.10003
- ],
- [
- -69.95038,
- -29.73744
- ],
- [
- -70.03755,
- -29.35428
- ],
- [
- -69.97565,
- -29.18743
- ],
- [
- -69.85112,
- -29.06923
- ],
- [
- -69.70118,
- -28.37779
- ],
- [
- -69.20484,
- -27.90816
- ],
- [
- -68.84844,
- -27.13115
- ],
- [
- -68.76133,
- -27.08588
- ],
- [
- -68.60693,
- -27.09636
- ],
- [
- -68.3489,
- -26.92771
- ],
- [
- -68.64137,
- -26.50722
- ],
- [
- -68.60352,
- -26.25391
- ],
- [
- -68.45177,
- -26.1377
- ],
- [
- -68.63052,
- -25.43524
- ],
- [
- -68.55582,
- -25.14476
- ],
- [
- -68.44595,
- -25.0658
- ],
- [
- -68.62011,
- -24.81717
- ],
- [
- -68.55162,
- -24.58836
- ],
- [
- -68.28078,
- -24.34935
- ],
- [
- -67.32648,
- -24.02538
- ],
- [
- -66.99882,
- -23.00044
- ],
- [
- -67.18775,
- -22.81375
- ],
- [
- -67.08088,
- -22.62433
- ],
- [
- -67.03366,
- -22.53815
- ],
- [
- -66.84345,
- -22.39746
- ],
- [
- -66.73734,
- -22.22282
- ],
- [
- -66.38248,
- -22.07602
- ],
- [
- -66.28978,
- -21.76554
- ],
- [
- -66.21845,
- -21.72575
- ],
- [
- -65.89675,
- -21.88263
- ],
- [
- -65.71368,
- -22.09054
- ],
- [
- -65.61493,
- -22.09152
- ],
- [
- -65.60973,
- -22.09505
- ],
- [
- -65.60607,
- -22.09358
- ],
- [
- -65.60256,
- -22.09658
- ],
- [
- -65.60015,
- -22.09543
- ],
- [
- -65.59229,
- -22.09511
- ],
- [
- -65.59015,
- -22.09735
- ],
- [
- -65.58691,
- -22.09645
- ],
- [
- -65.58512,
- -22.08432
- ],
- [
- -65.57523,
- -22.07312
- ],
- [
- -65.47487,
- -22.08487
- ],
- [
- -64.99026,
- -22.06739
- ],
- [
- -64.59768,
- -22.19269
- ],
- [
- -64.52643,
- -22.29504
- ],
- [
- -64.33114,
- -22.68517
- ],
- [
- -64.10381,
- -22.34114
- ],
- [
- -64.10712,
- -22.32023
- ],
- [
- -64.06522,
- -22.23093
- ],
- [
- -64.04702,
- -22.23757
- ],
- [
- -64.03654,
- -22.19469
- ],
- [
- -64.0029,
- -22.10735
- ],
- [
- -63.99022,
- -22.07925
- ],
- [
- -63.97147,
- -22.07619
- ],
- [
- -63.94118,
- -21.99823
- ],
- [
- -63.70932,
- -21.99896
- ],
- [
- -63.68839,
- -22.01037
- ],
- [
- -63.68079,
- -22.03116
- ],
- [
- -63.68507,
- -22.04019
- ],
- [
- -63.68156,
- -22.05185
- ],
- [
- -63.67659,
- -22.03287
- ],
- [
- -63.67201,
- -22.02293
- ],
- [
- -63.66821,
- -22.01634
- ],
- [
- -63.67191,
- -22.01399
- ],
- [
- -63.66566,
- -21.99839
- ],
- [
- -62.79606,
- -21.98778
- ],
- [
- -62.74618,
- -22.10033
- ],
- [
- -62.18511,
- -22.50843
- ],
- [
- -61.93761,
- -22.97376
- ],
- [
- -61.45605,
- -23.36182
- ],
- [
- -61.05842,
- -23.56621
- ],
- [
- -60.95137,
- -23.75997
- ],
- [
- -60.28746,
- -24.01906
- ],
- [
- -60.03728,
- -24.00408
- ],
- [
- -59.46607,
- -24.33428
- ],
- [
- -59.12256,
- -24.59772
- ],
- [
- -58.46645,
- -24.84584
- ],
- [
- -58.332,
- -24.98132
- ],
- [
- -58.2349,
- -24.91756
- ],
- [
- -57.8565,
- -25.08005
- ],
- [
- -57.76981,
- -25.15013
- ],
- [
- -57.75374,
- -25.17277
- ],
- [
- -57.71597,
- -25.26456
- ],
- [
- -57.71837,
- -25.27146
- ],
- [
- -57.71111,
- -25.27265
- ],
- [
- -57.71008,
- -25.28146
- ],
- [
- -57.70692,
- -25.2845
- ],
- [
- -57.70438,
- -25.28159
- ],
- [
- -57.70273,
- -25.28239
- ],
- [
- -57.70175,
- -25.28459
- ],
- [
- -57.69741,
- -25.28283
- ],
- [
- -57.69281,
- -25.28588
- ],
- [
- -57.69733,
- -25.29337
- ],
- [
- -57.70246,
- -25.29847
- ],
- [
- -57.69612,
- -25.30832
- ],
- [
- -57.69763,
- -25.3199
- ],
- [
- -57.69143,
- -25.32127
- ],
- [
- -57.67993,
- -25.33318
- ],
- [
- -57.64822,
- -25.3679
- ],
- [
- -57.63902,
- -25.38287
- ],
- [
- -57.61504,
- -25.38841
- ],
- [
- -57.59954,
- -25.39704
- ],
- [
- -57.57673,
- -25.42029
- ],
- [
- -57.56698,
- -25.43147
- ],
- [
- -57.55477,
- -25.43999
- ],
- [
- -57.55285,
- -25.44705
- ],
- [
- -57.55811,
- -25.45717
- ],
- [
- -57.55763,
- -25.46897
- ],
- [
- -57.56523,
- -25.48014
- ],
- [
- -57.56806,
- -25.49501
- ],
- [
- -57.57722,
- -25.50575
- ],
- [
- -57.57566,
- -25.52264
- ],
- [
- -57.5661,
- -25.54112
- ],
- [
- -57.56809,
- -25.55797
- ],
- [
- -57.58142,
- -25.57145
- ],
- [
- -57.59952,
- -25.57438
- ],
- [
- -57.60444,
- -25.59855
- ],
- [
- -57.6122,
- -25.61963
- ],
- [
- -57.6367,
- -25.61807
- ],
- [
- -57.66569,
- -25.60273
- ],
- [
- -57.67006,
- -25.65579
- ],
- [
- -57.67513,
- -25.66052
- ],
- [
- -57.68626,
- -25.66287
- ],
- [
- -57.69808,
- -25.65933
- ],
- [
- -57.71855,
- -25.64914
- ],
- [
- -57.72537,
- -25.71924
- ],
- [
- -57.77786,
- -25.77559
- ],
- [
- -57.84986,
- -26.01142
- ],
- [
- -58.08597,
- -26.14202
- ],
- [
- -58.13896,
- -26.66834
- ],
- [
- -58.28224,
- -26.80127
- ],
- [
- -58.32056,
- -26.82169
- ],
- [
- -58.3167,
- -26.86081
- ],
- [
- -58.32384,
- -26.87074
- ],
- [
- -58.56858,
- -27.20629
- ],
- [
- -57.90834,
- -27.24265
- ],
- [
- -56.99114,
- -27.41858
- ],
- [
- -56.60886,
- -27.36586
- ],
- [
- -56.40607,
- -27.52701
- ],
- [
- -56.32355,
- -27.36897
- ],
- [
- -56.09353,
- -27.25219
- ],
- [
- -55.76168,
- -27.38106
- ],
- [
- -55.65541,
- -27.30153
- ],
- [
- -55.67524,
- -27.17004
- ],
- [
- -55.59643,
- -27.06538
- ],
- [
- -55.40826,
- -26.91763
- ],
- [
- -55.20788,
- -26.89214
- ],
- [
- -54.97304,
- -26.63717
- ],
- [
- -54.8532,
- -26.59894
- ],
- [
- -54.72264,
- -26.31238
- ],
- [
- -54.73235,
- -25.98554
- ],
- [
- -54.65309,
- -25.84138
- ],
- [
- -54.71357,
- -25.66721
- ],
- [
- -54.62995,
- -25.55106
- ],
- [
- -54.44288,
- -25.5795
- ],
- [
- -54.11451,
- -25.4396
- ],
- [
- -53.80059,
- -25.65093
- ],
- [
- -53.766,
- -25.94301
- ],
- [
- -53.59024,
- -26.19274
- ],
- [
- -53.67264,
- -26.61495
- ],
- [
- -53.61669,
- -26.95395
- ],
- [
- -53.76351,
- -27.18917
- ],
- [
- -54.15393,
- -27.36033
- ],
- [
- -54.26461,
- -27.49923
- ],
- [
- -54.79439,
- -27.6397
- ],
- [
- -55.0044,
- -27.90341
- ],
- [
- -55.19076,
- -27.92946
- ],
- [
- -55.41589,
- -28.14304
- ],
- [
- -55.66542,
- -28.26547
- ],
- [
- -55.61633,
- -28.32205
- ],
- [
- -55.65957,
- -28.46539
- ],
- [
- -55.83413,
- -28.42136
- ],
- [
- -55.87339,
- -28.49468
- ],
- [
- -56.13558,
- -28.7265
- ],
- [
- -56.37343,
- -29.10817
- ],
- [
- -56.569,
- -29.13892
- ],
- [
- -56.76306,
- -29.48638
- ],
- [
- -57.05958,
- -29.72263
- ],
- [
- -57.24463,
- -29.86452
- ],
- [
- -57.3045,
- -30.03966
- ],
- [
- -57.61942,
- -30.20517
- ],
- [
- -57.60863,
- -30.32424
- ],
- [
- -57.82983,
- -30.53118
- ],
- [
- -57.75241,
- -30.68756
- ],
- [
- -57.75273,
- -30.91942
- ],
- [
- -57.93419,
- -31.27388
- ],
- [
- -57.99,
- -31.36053
- ],
- [
- -57.98302,
- -31.3734
- ],
- [
- -57.97736,
- -31.38022
- ],
- [
- -57.97778,
- -31.38599
- ],
- [
- -57.98203,
- -31.39213
- ],
- [
- -58.00944,
- -31.41341
- ],
- [
- -58.06637,
- -31.47395
- ],
- [
- -57.92613,
- -31.57745
- ],
- [
- -57.98622,
- -31.77449
- ],
- [
- -58.12179,
- -31.89772
- ],
- [
- -58.11905,
- -32.14059
- ],
- [
- -58.04227,
- -32.29153
- ],
- [
- -58.14327,
- -32.45845
- ],
- [
- -58.0758,
- -33.00587
- ],
- [
- -58.18964,
- -33.09402
- ],
- [
- -58.2723,
- -33.1061
- ],
- [
- -58.31012,
- -33.1048
- ],
- [
- -58.35418,
- -33.1221
- ],
- [
- -58.37567,
- -33.17644
- ],
- [
- -58.44465,
- -33.5853
- ],
- [
- -58.43016,
- -33.71813
- ],
- [
- -58.42434,
- -33.86887
- ],
- [
- -58.41858,
- -33.91742
- ],
- [
- -58.33697,
- -34.00477
- ],
- [
- -58.241,
- -34.16246
- ],
- [
- -57.84696,
- -34.50017
- ],
- [
- -55.5438,
- -35.77219
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Ministerio de Energía y Minería",
- "url": "https://sig.se.gob.ar/geoportal"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857"
- ],
- "country_code": "AR",
- "id": "Ministerio-de-Energia-y-Mineria-wms",
- "license_url": "https://datos.gob.ar/acerca/marco-legal",
- "max_zoom": 20,
- "min_zoom": 1,
- "name": "Ministry of Energy and Mining (WMS)",
- "type": "wms_endpoint",
- "url": "https://sig.se.gob.ar/cgi-bin/mapserv6?map=/var/www/html/visor/geofiles/map/mapase.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetCapabilities"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -62.9988,
- -40.7327
- ],
- [
- -62.9988,
- -37.9476
- ],
- [
- -61.7505,
- -37.9474
- ],
- [
- -61.7501,
- -40.7322
- ],
- [
- -62.9988,
- -40.7327
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AR",
- "description": "Tidal flats and islands at the coast (true color)",
- "end_date": "2017-01-27",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R067_S40_20170127T140051",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Bahía Blanca (low tide)",
- "start_date": "2017-01-27",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170127T140051&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -62.9988,
- -40.7327
- ],
- [
- -62.9988,
- -37.9476
- ],
- [
- -61.7505,
- -37.9474
- ],
- [
- -61.7501,
- -40.7322
- ],
- [
- -62.9988,
- -40.7327
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "AR",
- "description": "Tidal flats and islands at the coast (true color)",
- "end_date": "2017-04-17",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R067_S40_20170417T140051",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Bahía Blanca (high tide)",
- "start_date": "2017-04-17",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170417T140051&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.60875,
- -9.83072
- ],
- [
- -36.60784,
- -9.74047
- ],
- [
- -36.61718,
- -9.74051
- ],
- [
- -36.61631,
- -9.65075
- ],
- [
- -36.70737,
- -9.64977
- ],
- [
- -36.70832,
- -9.74043
- ],
- [
- -36.69898,
- -9.74047
- ],
- [
- -36.69997,
- -9.82968
- ],
- [
- -36.60875,
- -9.83072
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "arapiraca_al",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Arapiraca AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Arapiraca&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -35.96968,
- -9.2928
- ],
- [
- -35.97063,
- -9.20261
- ],
- [
- -35.97727,
- -9.20264
- ],
- [
- -35.98365,
- -9.2027
- ],
- [
- -35.98765,
- -9.20266
- ],
- [
- -35.99159,
- -9.20274
- ],
- [
- -36.00498,
- -9.20284
- ],
- [
- -36.01473,
- -9.20293
- ],
- [
- -36.01651,
- -9.20296
- ],
- [
- -36.01871,
- -9.20293
- ],
- [
- -36.02487,
- -9.20286
- ],
- [
- -36.02892,
- -9.20297
- ],
- [
- -36.03308,
- -9.20289
- ],
- [
- -36.03769,
- -9.20294
- ],
- [
- -36.04581,
- -9.203
- ],
- [
- -36.05161,
- -9.20305
- ],
- [
- -36.05457,
- -9.20301
- ],
- [
- -36.06022,
- -9.20304
- ],
- [
- -36.06191,
- -9.20304
- ],
- [
- -36.0618,
- -9.21319
- ],
- [
- -36.06167,
- -9.21806
- ],
- [
- -36.06156,
- -9.21915
- ],
- [
- -36.06163,
- -9.22156
- ],
- [
- -36.06144,
- -9.22277
- ],
- [
- -36.06139,
- -9.22716
- ],
- [
- -36.06134,
- -9.23227
- ],
- [
- -36.0614,
- -9.23391
- ],
- [
- -36.06145,
- -9.23494
- ],
- [
- -36.06131,
- -9.23646
- ],
- [
- -36.06133,
- -9.23773
- ],
- [
- -36.06142,
- -9.23905
- ],
- [
- -36.06145,
- -9.24133
- ],
- [
- -36.06136,
- -9.2423
- ],
- [
- -36.06141,
- -9.24358
- ],
- [
- -36.06139,
- -9.2453
- ],
- [
- -36.06126,
- -9.24726
- ],
- [
- -36.06123,
- -9.24949
- ],
- [
- -36.06127,
- -9.25107
- ],
- [
- -36.06121,
- -9.25517
- ],
- [
- -36.06119,
- -9.25795
- ],
- [
- -36.06107,
- -9.25945
- ],
- [
- -36.06109,
- -9.26183
- ],
- [
- -36.06106,
- -9.26493
- ],
- [
- -36.06086,
- -9.27146
- ],
- [
- -36.06083,
- -9.2751
- ],
- [
- -36.06074,
- -9.28274
- ],
- [
- -36.0608,
- -9.29234
- ],
- [
- -36.06074,
- -9.29363
- ],
- [
- -36.05477,
- -9.29357
- ],
- [
- -36.04621,
- -9.29349
- ],
- [
- -36.03941,
- -9.29348
- ],
- [
- -36.03501,
- -9.29339
- ],
- [
- -36.02979,
- -9.29341
- ],
- [
- -36.02167,
- -9.29332
- ],
- [
- -36.01278,
- -9.29328
- ],
- [
- -36.00468,
- -9.29321
- ],
- [
- -35.99678,
- -9.29314
- ],
- [
- -35.98969,
- -9.29312
- ],
- [
- -35.98483,
- -9.29305
- ],
- [
- -35.98305,
- -9.29289
- ],
- [
- -35.98173,
- -9.29294
- ],
- [
- -35.97884,
- -9.29282
- ],
- [
- -35.96968,
- -9.2928
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:5641",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "branquinha_al",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Branquinha AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?service=WMS&version=1.1.0&request=GetMap&layers=Branquinha&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.10753,
- -9.43884
- ],
- [
- -36.10752,
- -9.43421
- ],
- [
- -36.10767,
- -9.42959
- ],
- [
- -36.10779,
- -9.42361
- ],
- [
- -36.10769,
- -9.41927
- ],
- [
- -36.10781,
- -9.41391
- ],
- [
- -36.10803,
- -9.41094
- ],
- [
- -36.1081,
- -9.40965
- ],
- [
- -36.10811,
- -9.40747
- ],
- [
- -36.10816,
- -9.40693
- ],
- [
- -36.10819,
- -9.40418
- ],
- [
- -36.10811,
- -9.40176
- ],
- [
- -36.10817,
- -9.40002
- ],
- [
- -36.10827,
- -9.39952
- ],
- [
- -36.10827,
- -9.39646
- ],
- [
- -36.10833,
- -9.39475
- ],
- [
- -36.10832,
- -9.39273
- ],
- [
- -36.10836,
- -9.3904
- ],
- [
- -36.10841,
- -9.38447
- ],
- [
- -36.10847,
- -9.38165
- ],
- [
- -36.10846,
- -9.37767
- ],
- [
- -36.10835,
- -9.37573
- ],
- [
- -36.10845,
- -9.37432
- ],
- [
- -36.10849,
- -9.37234
- ],
- [
- -36.10845,
- -9.3697
- ],
- [
- -36.10867,
- -9.36278
- ],
- [
- -36.10863,
- -9.36102
- ],
- [
- -36.10873,
- -9.35928
- ],
- [
- -36.10874,
- -9.35736
- ],
- [
- -36.10855,
- -9.35479
- ],
- [
- -36.1087,
- -9.3523
- ],
- [
- -36.10871,
- -9.34996
- ],
- [
- -36.10873,
- -9.34893
- ],
- [
- -36.11269,
- -9.34908
- ],
- [
- -36.11726,
- -9.34912
- ],
- [
- -36.12138,
- -9.34905
- ],
- [
- -36.12806,
- -9.3491
- ],
- [
- -36.13217,
- -9.34906
- ],
- [
- -36.13694,
- -9.34915
- ],
- [
- -36.14025,
- -9.34914
- ],
- [
- -36.14134,
- -9.34932
- ],
- [
- -36.14458,
- -9.34916
- ],
- [
- -36.14684,
- -9.34914
- ],
- [
- -36.14842,
- -9.34905
- ],
- [
- -36.15276,
- -9.34907
- ],
- [
- -36.154,
- -9.34922
- ],
- [
- -36.15627,
- -9.34923
- ],
- [
- -36.16026,
- -9.34921
- ],
- [
- -36.16086,
- -9.34929
- ],
- [
- -36.166,
- -9.34933
- ],
- [
- -36.16938,
- -9.34942
- ],
- [
- -36.17176,
- -9.34936
- ],
- [
- -36.17628,
- -9.34945
- ],
- [
- -36.18028,
- -9.34937
- ],
- [
- -36.18227,
- -9.34946
- ],
- [
- -36.18826,
- -9.34938
- ],
- [
- -36.19039,
- -9.34945
- ],
- [
- -36.19354,
- -9.34946
- ],
- [
- -36.19552,
- -9.34941
- ],
- [
- -36.19918,
- -9.34951
- ],
- [
- -36.19926,
- -9.35146
- ],
- [
- -36.19913,
- -9.35234
- ],
- [
- -36.19912,
- -9.35353
- ],
- [
- -36.19919,
- -9.35646
- ],
- [
- -36.19922,
- -9.35771
- ],
- [
- -36.1993,
- -9.35832
- ],
- [
- -36.19933,
- -9.36112
- ],
- [
- -36.19922,
- -9.36177
- ],
- [
- -36.19918,
- -9.36258
- ],
- [
- -36.19931,
- -9.364
- ],
- [
- -36.19926,
- -9.36499
- ],
- [
- -36.19922,
- -9.36563
- ],
- [
- -36.19928,
- -9.3666
- ],
- [
- -36.19917,
- -9.36796
- ],
- [
- -36.19917,
- -9.36868
- ],
- [
- -36.19922,
- -9.36911
- ],
- [
- -36.19912,
- -9.37017
- ],
- [
- -36.19887,
- -9.37149
- ],
- [
- -36.19886,
- -9.37264
- ],
- [
- -36.19902,
- -9.37322
- ],
- [
- -36.19915,
- -9.37504
- ],
- [
- -36.19911,
- -9.37688
- ],
- [
- -36.19896,
- -9.37747
- ],
- [
- -36.19899,
- -9.37915
- ],
- [
- -36.19917,
- -9.38053
- ],
- [
- -36.19919,
- -9.38124
- ],
- [
- -36.19926,
- -9.38175
- ],
- [
- -36.19928,
- -9.38302
- ],
- [
- -36.19913,
- -9.38374
- ],
- [
- -36.19908,
- -9.38592
- ],
- [
- -36.19879,
- -9.38787
- ],
- [
- -36.19881,
- -9.38935
- ],
- [
- -36.19902,
- -9.39092
- ],
- [
- -36.19904,
- -9.392
- ],
- [
- -36.19899,
- -9.39348
- ],
- [
- -36.1988,
- -9.39451
- ],
- [
- -36.19867,
- -9.39705
- ],
- [
- -36.19845,
- -9.39949
- ],
- [
- -36.19864,
- -9.40313
- ],
- [
- -36.19866,
- -9.40476
- ],
- [
- -36.19865,
- -9.40836
- ],
- [
- -36.19875,
- -9.40902
- ],
- [
- -36.19857,
- -9.41058
- ],
- [
- -36.19859,
- -9.41273
- ],
- [
- -36.19874,
- -9.41446
- ],
- [
- -36.19868,
- -9.41711
- ],
- [
- -36.1986,
- -9.41902
- ],
- [
- -36.19846,
- -9.41965
- ],
- [
- -36.1985,
- -9.42235
- ],
- [
- -36.19871,
- -9.42429
- ],
- [
- -36.19858,
- -9.42697
- ],
- [
- -36.1984,
- -9.42895
- ],
- [
- -36.19857,
- -9.43412
- ],
- [
- -36.19871,
- -9.4347
- ],
- [
- -36.19865,
- -9.43595
- ],
- [
- -36.19857,
- -9.43626
- ],
- [
- -36.19859,
- -9.43667
- ],
- [
- -36.19876,
- -9.43749
- ],
- [
- -36.19889,
- -9.43905
- ],
- [
- -36.19882,
- -9.43995
- ],
- [
- -36.1785,
- -9.43977
- ],
- [
- -36.17718,
- -9.43968
- ],
- [
- -36.17265,
- -9.43967
- ],
- [
- -36.17099,
- -9.43971
- ],
- [
- -36.16396,
- -9.43963
- ],
- [
- -36.15386,
- -9.4395
- ],
- [
- -36.13983,
- -9.4393
- ],
- [
- -36.12875,
- -9.43913
- ],
- [
- -36.11497,
- -9.43892
- ],
- [
- -36.10753,
- -9.43884
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "cajueiro_al",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Cajueiro AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Cajueiro&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.30643,
- -9.82332
- ],
- [
- -36.30603,
- -9.78597
- ],
- [
- -36.30602,
- -9.78263
- ],
- [
- -36.30609,
- -9.78168
- ],
- [
- -36.30604,
- -9.78081
- ],
- [
- -36.3059,
- -9.77531
- ],
- [
- -36.30586,
- -9.76496
- ],
- [
- -36.30545,
- -9.73336
- ],
- [
- -36.39634,
- -9.73248
- ],
- [
- -36.39627,
- -9.73744
- ],
- [
- -36.39636,
- -9.74336
- ],
- [
- -36.39644,
- -9.75535
- ],
- [
- -36.3966,
- -9.75856
- ],
- [
- -36.39665,
- -9.75979
- ],
- [
- -36.39655,
- -9.76244
- ],
- [
- -36.39661,
- -9.76489
- ],
- [
- -36.39658,
- -9.76648
- ],
- [
- -36.39661,
- -9.76684
- ],
- [
- -36.39659,
- -9.7696
- ],
- [
- -36.3967,
- -9.77896
- ],
- [
- -36.39675,
- -9.78464
- ],
- [
- -36.39684,
- -9.79067
- ],
- [
- -36.39693,
- -9.79681
- ],
- [
- -36.39703,
- -9.80298
- ],
- [
- -36.39719,
- -9.82033
- ],
- [
- -36.39722,
- -9.82234
- ],
- [
- -36.39392,
- -9.82233
- ],
- [
- -36.35375,
- -9.82279
- ],
- [
- -36.34822,
- -9.82286
- ],
- [
- -36.31697,
- -9.82317
- ],
- [
- -36.31191,
- -9.82324
- ],
- [
- -36.30879,
- -9.82327
- ],
- [
- -36.30643,
- -9.82332
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "campo_alegre_al",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Campo Alegre AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Campo%20Alegre&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.03321,
- -9.45741
- ],
- [
- -36.03322,
- -9.45581
- ],
- [
- -36.03336,
- -9.45483
- ],
- [
- -36.0334,
- -9.45291
- ],
- [
- -36.03327,
- -9.45141
- ],
- [
- -36.03336,
- -9.44287
- ],
- [
- -36.0335,
- -9.43821
- ],
- [
- -36.03353,
- -9.42881
- ],
- [
- -36.03363,
- -9.42027
- ],
- [
- -36.03389,
- -9.41091
- ],
- [
- -36.03389,
- -9.40032
- ],
- [
- -36.03401,
- -9.3888
- ],
- [
- -36.03413,
- -9.38528
- ],
- [
- -36.03428,
- -9.38265
- ],
- [
- -36.03417,
- -9.37849
- ],
- [
- -36.03444,
- -9.36688
- ],
- [
- -36.05246,
- -9.3671
- ],
- [
- -36.05791,
- -9.36711
- ],
- [
- -36.0716,
- -9.36727
- ],
- [
- -36.08622,
- -9.36731
- ],
- [
- -36.103,
- -9.3675
- ],
- [
- -36.11652,
- -9.36755
- ],
- [
- -36.12515,
- -9.36768
- ],
- [
- -36.12522,
- -9.37473
- ],
- [
- -36.12521,
- -9.37721
- ],
- [
- -36.12511,
- -9.38038
- ],
- [
- -36.12514,
- -9.38529
- ],
- [
- -36.12505,
- -9.39026
- ],
- [
- -36.12504,
- -9.39477
- ],
- [
- -36.12506,
- -9.40172
- ],
- [
- -36.12499,
- -9.40382
- ],
- [
- -36.1248,
- -9.40679
- ],
- [
- -36.12463,
- -9.41123
- ],
- [
- -36.12474,
- -9.4136
- ],
- [
- -36.12456,
- -9.4163
- ],
- [
- -36.12459,
- -9.42461
- ],
- [
- -36.12466,
- -9.42691
- ],
- [
- -36.12465,
- -9.42925
- ],
- [
- -36.12457,
- -9.4297
- ],
- [
- -36.12464,
- -9.43538
- ],
- [
- -36.12438,
- -9.44109
- ],
- [
- -36.12446,
- -9.44387
- ],
- [
- -36.12452,
- -9.44579
- ],
- [
- -36.12438,
- -9.44736
- ],
- [
- -36.12448,
- -9.44856
- ],
- [
- -36.12448,
- -9.45095
- ],
- [
- -36.12436,
- -9.45392
- ],
- [
- -36.12434,
- -9.45791
- ],
- [
- -36.11758,
- -9.45783
- ],
- [
- -36.1089,
- -9.45778
- ],
- [
- -36.10419,
- -9.4578
- ],
- [
- -36.10116,
- -9.45773
- ],
- [
- -36.0953,
- -9.45773
- ],
- [
- -36.08461,
- -9.45767
- ],
- [
- -36.07361,
- -9.45757
- ],
- [
- -36.05726,
- -9.45741
- ],
- [
- -36.04816,
- -9.45747
- ],
- [
- -36.04177,
- -9.45739
- ],
- [
- -36.03767,
- -9.45739
- ],
- [
- -36.03321,
- -9.45741
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "capela_al",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Capela AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Capela&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -37.94962,
- -9.42957
- ],
- [
- -37.94834,
- -9.33972
- ],
- [
- -38.03903,
- -9.33834
- ],
- [
- -38.04034,
- -9.42846
- ],
- [
- -37.94962,
- -9.42957
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "delmiro_gouveia",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Delmiro Gouveia AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Delmiro%20Gouveia&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.71382,
- -9.43476
- ],
- [
- -36.71477,
- -9.34443
- ],
- [
- -36.80586,
- -9.34498
- ],
- [
- -36.80525,
- -9.43542
- ],
- [
- -36.71382,
- -9.43476
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "estrela_de_alagoas",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Estrela de Alagoas",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Estrela%20de%20Alagoas&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.78013,
- -9.92939
- ],
- [
- -36.78087,
- -9.83892
- ],
- [
- -36.87233,
- -9.83917
- ],
- [
- -36.87173,
- -9.90542
- ],
- [
- -36.87037,
- -9.92989
- ],
- [
- -36.86156,
- -9.92994
- ],
- [
- -36.85566,
- -9.92981
- ],
- [
- -36.85146,
- -9.92973
- ],
- [
- -36.84575,
- -9.92977
- ],
- [
- -36.83213,
- -9.92967
- ],
- [
- -36.81456,
- -9.9296
- ],
- [
- -36.78013,
- -9.92939
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "girau_do_pnciano",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Girau do Ponciano",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Girau%20do%20Ponciano&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.94048,
- -9.57588
- ],
- [
- -36.94106,
- -9.48536
- ],
- [
- -37.03215,
- -9.48606
- ],
- [
- -37.03164,
- -9.57639
- ],
- [
- -36.94048,
- -9.57588
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "major_isidoro",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Major Isidoro AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Major%20Isidoro&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.34201,
- -9.49289
- ],
- [
- -36.3422,
- -9.47533
- ],
- [
- -36.34275,
- -9.4029
- ],
- [
- -36.34473,
- -9.4029
- ],
- [
- -36.34537,
- -9.40279
- ],
- [
- -36.34702,
- -9.40293
- ],
- [
- -36.3508,
- -9.40291
- ],
- [
- -36.359,
- -9.40307
- ],
- [
- -36.36109,
- -9.403
- ],
- [
- -36.36289,
- -9.40307
- ],
- [
- -36.3659,
- -9.40305
- ],
- [
- -36.36713,
- -9.40301
- ],
- [
- -36.37571,
- -9.40307
- ],
- [
- -36.38049,
- -9.40308
- ],
- [
- -36.38663,
- -9.4032
- ],
- [
- -36.38852,
- -9.40312
- ],
- [
- -36.39286,
- -9.40325
- ],
- [
- -36.39656,
- -9.40322
- ],
- [
- -36.40309,
- -9.40327
- ],
- [
- -36.41973,
- -9.40338
- ],
- [
- -36.43368,
- -9.4034
- ],
- [
- -36.43355,
- -9.41685
- ],
- [
- -36.43344,
- -9.42386
- ],
- [
- -36.43338,
- -9.43753
- ],
- [
- -36.43329,
- -9.45012
- ],
- [
- -36.433,
- -9.49359
- ],
- [
- -36.40839,
- -9.4935
- ],
- [
- -36.40442,
- -9.49354
- ],
- [
- -36.40008,
- -9.49351
- ],
- [
- -36.39787,
- -9.49342
- ],
- [
- -36.39168,
- -9.49328
- ],
- [
- -36.38757,
- -9.49331
- ],
- [
- -36.38536,
- -9.49341
- ],
- [
- -36.37673,
- -9.49331
- ],
- [
- -36.37427,
- -9.49319
- ],
- [
- -36.36707,
- -9.49299
- ],
- [
- -36.36502,
- -9.493
- ],
- [
- -36.36043,
- -9.49299
- ],
- [
- -36.35955,
- -9.49295
- ],
- [
- -36.35895,
- -9.49304
- ],
- [
- -36.35703,
- -9.49294
- ],
- [
- -36.35665,
- -9.493
- ],
- [
- -36.3526,
- -9.493
- ],
- [
- -36.34767,
- -9.49297
- ],
- [
- -36.34201,
- -9.49289
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "mar_vermelho_al",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Mar Vermelho AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Mar%20Vermelho&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.8196,
- -9.35174
- ],
- [
- -36.82017,
- -9.26142
- ],
- [
- -36.82465,
- -9.26133
- ],
- [
- -36.83064,
- -9.26147
- ],
- [
- -36.83673,
- -9.2615
- ],
- [
- -36.84228,
- -9.26148
- ],
- [
- -36.84562,
- -9.2616
- ],
- [
- -36.85564,
- -9.2616
- ],
- [
- -36.86214,
- -9.26159
- ],
- [
- -36.8659,
- -9.26147
- ],
- [
- -36.86724,
- -9.2615
- ],
- [
- -36.86952,
- -9.26149
- ],
- [
- -36.87127,
- -9.26157
- ],
- [
- -36.87476,
- -9.26153
- ],
- [
- -36.87816,
- -9.26163
- ],
- [
- -36.88321,
- -9.2617
- ],
- [
- -36.88565,
- -9.26167
- ],
- [
- -36.88857,
- -9.26148
- ],
- [
- -36.89217,
- -9.26151
- ],
- [
- -36.89383,
- -9.26163
- ],
- [
- -36.8974,
- -9.26175
- ],
- [
- -36.91122,
- -9.26183
- ],
- [
- -36.9111,
- -9.26651
- ],
- [
- -36.91112,
- -9.28542
- ],
- [
- -36.91121,
- -9.29066
- ],
- [
- -36.91118,
- -9.29368
- ],
- [
- -36.91099,
- -9.29929
- ],
- [
- -36.91091,
- -9.30729
- ],
- [
- -36.9109,
- -9.3123
- ],
- [
- -36.91083,
- -9.31597
- ],
- [
- -36.91084,
- -9.32013
- ],
- [
- -36.91098,
- -9.32395
- ],
- [
- -36.91099,
- -9.32587
- ],
- [
- -36.91079,
- -9.32964
- ],
- [
- -36.91079,
- -9.33523
- ],
- [
- -36.91074,
- -9.33944
- ],
- [
- -36.91092,
- -9.34311
- ],
- [
- -36.91084,
- -9.34471
- ],
- [
- -36.91066,
- -9.35229
- ],
- [
- -36.89277,
- -9.35225
- ],
- [
- -36.87735,
- -9.35212
- ],
- [
- -36.86463,
- -9.35203
- ],
- [
- -36.85761,
- -9.35194
- ],
- [
- -36.84344,
- -9.35191
- ],
- [
- -36.83115,
- -9.3518
- ],
- [
- -36.8196,
- -9.35174
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "minador_do_negrao",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Minador do Negrão",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Minador%20do%20Negrao&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -37.7822,
- -9.54444
- ],
- [
- -37.7826,
- -9.45388
- ],
- [
- -37.81147,
- -9.45412
- ],
- [
- -37.81735,
- -9.45451
- ],
- [
- -37.82057,
- -9.45416
- ],
- [
- -37.87394,
- -9.45428
- ],
- [
- -37.87358,
- -9.54475
- ],
- [
- -37.7822,
- -9.54444
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "olho_dagua_do_casado",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Olho d'Agua do Casado AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Olho%20Dagua%20do%20Casado&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -37.28907,
- -9.71916
- ],
- [
- -37.28904,
- -9.71114
- ],
- [
- -37.28911,
- -9.7022
- ],
- [
- -37.28915,
- -9.69175
- ],
- [
- -37.28919,
- -9.68886
- ],
- [
- -37.28927,
- -9.68069
- ],
- [
- -37.28926,
- -9.67732
- ],
- [
- -37.28936,
- -9.66999
- ],
- [
- -37.28936,
- -9.66599
- ],
- [
- -37.28931,
- -9.66133
- ],
- [
- -37.28941,
- -9.65526
- ],
- [
- -37.28946,
- -9.64556
- ],
- [
- -37.2895,
- -9.63489
- ],
- [
- -37.28954,
- -9.62926
- ],
- [
- -37.2964,
- -9.62885
- ],
- [
- -37.31188,
- -9.62897
- ],
- [
- -37.32762,
- -9.62914
- ],
- [
- -37.33181,
- -9.62919
- ],
- [
- -37.34338,
- -9.62917
- ],
- [
- -37.35876,
- -9.62923
- ],
- [
- -37.37175,
- -9.6293
- ],
- [
- -37.37839,
- -9.62913
- ],
- [
- -37.38051,
- -9.62922
- ],
- [
- -37.38061,
- -9.63143
- ],
- [
- -37.38054,
- -9.63785
- ],
- [
- -37.38043,
- -9.63895
- ],
- [
- -37.38053,
- -9.64147
- ],
- [
- -37.38051,
- -9.64876
- ],
- [
- -37.3805,
- -9.6543
- ],
- [
- -37.38043,
- -9.656
- ],
- [
- -37.38024,
- -9.66028
- ],
- [
- -37.38022,
- -9.66551
- ],
- [
- -37.38019,
- -9.67054
- ],
- [
- -37.38016,
- -9.67896
- ],
- [
- -37.38013,
- -9.68781
- ],
- [
- -37.38009,
- -9.70116
- ],
- [
- -37.38003,
- -9.71053
- ],
- [
- -37.3801,
- -9.71743
- ],
- [
- -37.38005,
- -9.71959
- ],
- [
- -37.37932,
- -9.71954
- ],
- [
- -37.37392,
- -9.71956
- ],
- [
- -37.36582,
- -9.71945
- ],
- [
- -37.35849,
- -9.71946
- ],
- [
- -37.35334,
- -9.71938
- ],
- [
- -37.34414,
- -9.71937
- ],
- [
- -37.33423,
- -9.71923
- ],
- [
- -37.32933,
- -9.71927
- ],
- [
- -37.3218,
- -9.71924
- ],
- [
- -37.31983,
- -9.71927
- ],
- [
- -37.31094,
- -9.7192
- ],
- [
- -37.29589,
- -9.71921
- ],
- [
- -37.28907,
- -9.71916
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "al_palestina",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Palestina AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Palestina&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.58664,
- -9.46124
- ],
- [
- -36.58665,
- -9.45851
- ],
- [
- -36.58619,
- -9.41968
- ],
- [
- -36.58604,
- -9.41452
- ],
- [
- -36.58596,
- -9.40593
- ],
- [
- -36.58585,
- -9.39509
- ],
- [
- -36.58579,
- -9.39163
- ],
- [
- -36.58565,
- -9.38983
- ],
- [
- -36.58549,
- -9.38249
- ],
- [
- -36.58529,
- -9.37965
- ],
- [
- -36.58511,
- -9.37744
- ],
- [
- -36.58503,
- -9.37059
- ],
- [
- -36.5889,
- -9.37058
- ],
- [
- -36.59064,
- -9.37065
- ],
- [
- -36.59389,
- -9.3706
- ],
- [
- -36.60037,
- -9.37073
- ],
- [
- -36.61046,
- -9.37049
- ],
- [
- -36.62288,
- -9.37021
- ],
- [
- -36.63377,
- -9.37002
- ],
- [
- -36.63835,
- -9.36986
- ],
- [
- -36.64743,
- -9.36997
- ],
- [
- -36.65141,
- -9.36994
- ],
- [
- -36.65534,
- -9.36972
- ],
- [
- -36.65647,
- -9.36974
- ],
- [
- -36.66111,
- -9.37024
- ],
- [
- -36.66276,
- -9.37026
- ],
- [
- -36.66704,
- -9.36973
- ],
- [
- -36.67052,
- -9.36966
- ],
- [
- -36.67325,
- -9.36966
- ],
- [
- -36.67602,
- -9.36987
- ],
- [
- -36.67593,
- -9.3726
- ],
- [
- -36.67597,
- -9.37679
- ],
- [
- -36.67639,
- -9.38138
- ],
- [
- -36.67654,
- -9.38464
- ],
- [
- -36.67663,
- -9.39265
- ],
- [
- -36.67675,
- -9.39829
- ],
- [
- -36.67689,
- -9.40875
- ],
- [
- -36.67707,
- -9.41887
- ],
- [
- -36.67717,
- -9.43179
- ],
- [
- -36.67724,
- -9.43395
- ],
- [
- -36.67718,
- -9.43753
- ],
- [
- -36.67728,
- -9.44311
- ],
- [
- -36.6773,
- -9.44933
- ],
- [
- -36.67741,
- -9.45528
- ],
- [
- -36.6774,
- -9.45938
- ],
- [
- -36.67735,
- -9.46017
- ],
- [
- -36.67568,
- -9.46021
- ],
- [
- -36.66625,
- -9.4603
- ],
- [
- -36.66224,
- -9.4603
- ],
- [
- -36.65736,
- -9.46042
- ],
- [
- -36.6504,
- -9.46047
- ],
- [
- -36.63543,
- -9.46065
- ],
- [
- -36.61979,
- -9.46083
- ],
- [
- -36.61433,
- -9.46083
- ],
- [
- -36.61029,
- -9.46097
- ],
- [
- -36.60647,
- -9.46097
- ],
- [
- -36.60186,
- -9.46099
- ],
- [
- -36.59426,
- -9.46112
- ],
- [
- -36.58664,
- -9.46124
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "palmeira_dos_indios",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Palmeira dos Indios AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Palmeira%20dos%20Indios&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -37.39003,
- -9.78589
- ],
- [
- -37.39019,
- -9.7762
- ],
- [
- -37.38993,
- -9.76575
- ],
- [
- -37.38991,
- -9.75256
- ],
- [
- -37.39015,
- -9.74102
- ],
- [
- -37.39003,
- -9.73201
- ],
- [
- -37.39012,
- -9.72254
- ],
- [
- -37.39015,
- -9.71289
- ],
- [
- -37.39019,
- -9.70341
- ],
- [
- -37.3902,
- -9.69548
- ],
- [
- -37.40377,
- -9.6955
- ],
- [
- -37.41728,
- -9.6956
- ],
- [
- -37.43224,
- -9.69569
- ],
- [
- -37.44319,
- -9.69573
- ],
- [
- -37.44723,
- -9.69582
- ],
- [
- -37.45682,
- -9.69585
- ],
- [
- -37.47062,
- -9.69591
- ],
- [
- -37.47373,
- -9.69591
- ],
- [
- -37.47586,
- -9.69604
- ],
- [
- -37.48128,
- -9.69605
- ],
- [
- -37.48131,
- -9.6989
- ],
- [
- -37.48122,
- -9.70087
- ],
- [
- -37.48121,
- -9.70239
- ],
- [
- -37.48135,
- -9.70545
- ],
- [
- -37.48138,
- -9.71046
- ],
- [
- -37.48134,
- -9.71617
- ],
- [
- -37.4812,
- -9.71875
- ],
- [
- -37.48125,
- -9.72035
- ],
- [
- -37.48136,
- -9.72134
- ],
- [
- -37.48134,
- -9.7241
- ],
- [
- -37.4813,
- -9.72506
- ],
- [
- -37.48103,
- -9.72732
- ],
- [
- -37.48102,
- -9.73088
- ],
- [
- -37.48127,
- -9.73462
- ],
- [
- -37.48131,
- -9.73638
- ],
- [
- -37.48131,
- -9.73893
- ],
- [
- -37.48131,
- -9.74388
- ],
- [
- -37.4813,
- -9.74989
- ],
- [
- -37.48122,
- -9.75315
- ],
- [
- -37.48102,
- -9.75855
- ],
- [
- -37.48084,
- -9.7642
- ],
- [
- -37.48085,
- -9.76526
- ],
- [
- -37.48094,
- -9.76675
- ],
- [
- -37.48093,
- -9.76881
- ],
- [
- -37.48084,
- -9.7721
- ],
- [
- -37.48087,
- -9.77486
- ],
- [
- -37.48076,
- -9.77993
- ],
- [
- -37.48081,
- -9.7863
- ],
- [
- -37.46382,
- -9.78623
- ],
- [
- -37.45353,
- -9.7862
- ],
- [
- -37.43979,
- -9.78611
- ],
- [
- -37.42998,
- -9.78607
- ],
- [
- -37.4208,
- -9.786
- ],
- [
- -37.40853,
- -9.78596
- ],
- [
- -37.39545,
- -9.78593
- ],
- [
- -37.39003,
- -9.78589
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "pao_de_acucar",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Pão de Açucar AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Pao%20de%20Acucar&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -37.71918,
- -9.65236
- ],
- [
- -37.71918,
- -9.63874
- ],
- [
- -37.71914,
- -9.6321
- ],
- [
- -37.71924,
- -9.62114
- ],
- [
- -37.71929,
- -9.61023
- ],
- [
- -37.71934,
- -9.59988
- ],
- [
- -37.7194,
- -9.58891
- ],
- [
- -37.71945,
- -9.57802
- ],
- [
- -37.71944,
- -9.57173
- ],
- [
- -37.71952,
- -9.56684
- ],
- [
- -37.71956,
- -9.56225
- ],
- [
- -37.71998,
- -9.56218
- ],
- [
- -37.72258,
- -9.56195
- ],
- [
- -37.72818,
- -9.56203
- ],
- [
- -37.73254,
- -9.562
- ],
- [
- -37.74107,
- -9.56206
- ],
- [
- -37.74845,
- -9.56202
- ],
- [
- -37.75926,
- -9.56216
- ],
- [
- -37.76972,
- -9.56227
- ],
- [
- -37.78036,
- -9.56244
- ],
- [
- -37.78537,
- -9.56236
- ],
- [
- -37.78907,
- -9.56233
- ],
- [
- -37.79562,
- -9.56245
- ],
- [
- -37.79771,
- -9.56237
- ],
- [
- -37.81006,
- -9.56243
- ],
- [
- -37.81061,
- -9.56241
- ],
- [
- -37.81053,
- -9.56531
- ],
- [
- -37.81049,
- -9.57629
- ],
- [
- -37.81046,
- -9.58742
- ],
- [
- -37.81038,
- -9.59757
- ],
- [
- -37.81031,
- -9.61798
- ],
- [
- -37.81018,
- -9.65197
- ],
- [
- -37.81018,
- -9.6523
- ],
- [
- -37.81024,
- -9.65259
- ],
- [
- -37.80664,
- -9.65245
- ],
- [
- -37.80206,
- -9.65253
- ],
- [
- -37.79597,
- -9.65237
- ],
- [
- -37.79179,
- -9.65252
- ],
- [
- -37.78815,
- -9.65246
- ],
- [
- -37.78723,
- -9.65242
- ],
- [
- -37.78035,
- -9.65241
- ],
- [
- -37.77865,
- -9.65223
- ],
- [
- -37.77625,
- -9.6523
- ],
- [
- -37.77475,
- -9.65219
- ],
- [
- -37.77234,
- -9.65223
- ],
- [
- -37.7696,
- -9.65245
- ],
- [
- -37.76623,
- -9.65251
- ],
- [
- -37.76345,
- -9.65246
- ],
- [
- -37.7604,
- -9.6525
- ],
- [
- -37.75102,
- -9.65237
- ],
- [
- -37.75012,
- -9.65249
- ],
- [
- -37.74155,
- -9.65248
- ],
- [
- -37.7403,
- -9.65239
- ],
- [
- -37.73785,
- -9.65246
- ],
- [
- -37.73443,
- -9.65238
- ],
- [
- -37.73106,
- -9.65243
- ],
- [
- -37.72651,
- -9.65237
- ],
- [
- -37.72195,
- -9.65225
- ],
- [
- -37.71992,
- -9.65228
- ],
- [
- -37.71918,
- -9.65236
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "al_piranhas",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Piranhas AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Piranhas&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -37.23942,
- -9.35157
- ],
- [
- -37.23947,
- -9.34387
- ],
- [
- -37.23942,
- -9.33792
- ],
- [
- -37.23954,
- -9.33022
- ],
- [
- -37.23973,
- -9.32791
- ],
- [
- -37.23974,
- -9.3228
- ],
- [
- -37.23964,
- -9.32085
- ],
- [
- -37.23971,
- -9.31864
- ],
- [
- -37.2398,
- -9.31706
- ],
- [
- -37.23982,
- -9.31561
- ],
- [
- -37.24053,
- -9.30933
- ],
- [
- -37.24051,
- -9.30004
- ],
- [
- -37.24008,
- -9.29687
- ],
- [
- -37.23998,
- -9.29546
- ],
- [
- -37.23992,
- -9.29319
- ],
- [
- -37.23989,
- -9.28978
- ],
- [
- -37.23995,
- -9.28818
- ],
- [
- -37.24008,
- -9.28641
- ],
- [
- -37.24036,
- -9.28212
- ],
- [
- -37.24038,
- -9.27897
- ],
- [
- -37.24051,
- -9.27557
- ],
- [
- -37.24004,
- -9.26979
- ],
- [
- -37.24018,
- -9.26721
- ],
- [
- -37.24018,
- -9.26612
- ],
- [
- -37.23995,
- -9.26455
- ],
- [
- -37.23983,
- -9.26151
- ],
- [
- -37.24333,
- -9.26136
- ],
- [
- -37.24936,
- -9.26146
- ],
- [
- -37.26445,
- -9.26161
- ],
- [
- -37.28016,
- -9.26172
- ],
- [
- -37.28294,
- -9.26171
- ],
- [
- -37.29581,
- -9.26178
- ],
- [
- -37.30685,
- -9.26178
- ],
- [
- -37.31419,
- -9.26189
- ],
- [
- -37.32437,
- -9.26192
- ],
- [
- -37.33078,
- -9.26175
- ],
- [
- -37.33057,
- -9.27275
- ],
- [
- -37.33048,
- -9.28007
- ],
- [
- -37.33054,
- -9.28117
- ],
- [
- -37.33069,
- -9.28427
- ],
- [
- -37.3307,
- -9.28535
- ],
- [
- -37.33064,
- -9.28617
- ],
- [
- -37.33071,
- -9.28717
- ],
- [
- -37.33064,
- -9.28769
- ],
- [
- -37.33062,
- -9.29027
- ],
- [
- -37.33043,
- -9.29308
- ],
- [
- -37.33038,
- -9.29655
- ],
- [
- -37.33034,
- -9.30591
- ],
- [
- -37.3304,
- -9.31203
- ],
- [
- -37.33038,
- -9.32194
- ],
- [
- -37.33041,
- -9.3342
- ],
- [
- -37.33035,
- -9.34185
- ],
- [
- -37.3303,
- -9.34783
- ],
- [
- -37.33035,
- -9.35202
- ],
- [
- -37.31509,
- -9.35194
- ],
- [
- -37.30011,
- -9.3519
- ],
- [
- -37.29531,
- -9.35183
- ],
- [
- -37.28899,
- -9.35171
- ],
- [
- -37.28497,
- -9.35182
- ],
- [
- -37.27851,
- -9.35173
- ],
- [
- -37.27431,
- -9.35181
- ],
- [
- -37.27115,
- -9.3517
- ],
- [
- -37.26351,
- -9.35168
- ],
- [
- -37.26046,
- -9.35164
- ],
- [
- -37.25402,
- -9.35177
- ],
- [
- -37.24705,
- -9.35163
- ],
- [
- -37.23942,
- -9.35157
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "poco_das_trincheiras",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Poço das Trincheiras AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Poco%20das%20Trincheiras&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -37.20224,
- -9.41356
- ],
- [
- -37.20188,
- -9.37768
- ],
- [
- -37.20208,
- -9.37455
- ],
- [
- -37.20192,
- -9.36733
- ],
- [
- -37.20169,
- -9.36045
- ],
- [
- -37.20172,
- -9.35501
- ],
- [
- -37.20195,
- -9.35101
- ],
- [
- -37.20191,
- -9.34773
- ],
- [
- -37.20175,
- -9.33835
- ],
- [
- -37.2017,
- -9.33505
- ],
- [
- -37.20171,
- -9.33301
- ],
- [
- -37.20142,
- -9.32833
- ],
- [
- -37.20121,
- -9.32469
- ],
- [
- -37.20117,
- -9.32351
- ],
- [
- -37.21425,
- -9.32346
- ],
- [
- -37.21537,
- -9.3234
- ],
- [
- -37.22078,
- -9.32328
- ],
- [
- -37.23727,
- -9.32313
- ],
- [
- -37.25181,
- -9.32293
- ],
- [
- -37.2656,
- -9.32276
- ],
- [
- -37.2803,
- -9.32259
- ],
- [
- -37.29191,
- -9.32245
- ],
- [
- -37.29205,
- -9.33522
- ],
- [
- -37.29304,
- -9.4122
- ],
- [
- -37.28357,
- -9.41235
- ],
- [
- -37.27789,
- -9.4125
- ],
- [
- -37.2716,
- -9.41249
- ],
- [
- -37.26506,
- -9.41262
- ],
- [
- -37.26165,
- -9.41274
- ],
- [
- -37.25499,
- -9.41276
- ],
- [
- -37.24991,
- -9.41296
- ],
- [
- -37.24616,
- -9.41297
- ],
- [
- -37.24108,
- -9.41303
- ],
- [
- -37.23461,
- -9.41321
- ],
- [
- -37.2284,
- -9.41325
- ],
- [
- -37.22165,
- -9.41335
- ],
- [
- -37.21686,
- -9.41346
- ],
- [
- -37.21292,
- -9.41343
- ],
- [
- -37.20224,
- -9.41356
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "santana_do_ipanema",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Santana do Ipanema AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Santana%20do%20Ipanema&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.1415,
- -9.83171
- ],
- [
- -36.05047,
- -9.83246
- ],
- [
- -36.04959,
- -9.74246
- ],
- [
- -36.14059,
- -9.74166
- ],
- [
- -36.1415,
- -9.83171
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "Sao_miguel_dos_campos",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "São Miguel dos Campos AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Sao_miguel_dos_campos&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.31164,
- -9.95468
- ],
- [
- -36.31158,
- -9.94382
- ],
- [
- -36.31145,
- -9.93197
- ],
- [
- -36.31127,
- -9.92436
- ],
- [
- -36.31123,
- -9.91848
- ],
- [
- -36.31119,
- -9.91637
- ],
- [
- -36.31141,
- -9.91324
- ],
- [
- -36.3111,
- -9.90922
- ],
- [
- -36.31108,
- -9.90318
- ],
- [
- -36.31099,
- -9.89379
- ],
- [
- -36.31089,
- -9.8842
- ],
- [
- -36.31078,
- -9.87412
- ],
- [
- -36.31068,
- -9.86457
- ],
- [
- -36.3318,
- -9.86432
- ],
- [
- -36.34001,
- -9.86437
- ],
- [
- -36.3478,
- -9.86425
- ],
- [
- -36.35917,
- -9.8642
- ],
- [
- -36.37047,
- -9.86404
- ],
- [
- -36.38448,
- -9.86386
- ],
- [
- -36.40164,
- -9.86364
- ],
- [
- -36.40221,
- -9.9225
- ],
- [
- -36.40249,
- -9.93177
- ],
- [
- -36.40259,
- -9.94183
- ],
- [
- -36.40248,
- -9.94804
- ],
- [
- -36.40266,
- -9.9537
- ],
- [
- -36.3855,
- -9.95384
- ],
- [
- -36.38283,
- -9.95392
- ],
- [
- -36.37096,
- -9.95399
- ],
- [
- -36.36232,
- -9.95423
- ],
- [
- -36.34747,
- -9.95422
- ],
- [
- -36.33287,
- -9.95446
- ],
- [
- -36.3291,
- -9.95456
- ],
- [
- -36.32089,
- -9.95459
- ],
- [
- -36.31164,
- -9.95468
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "teotonio_vilela",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Teotonio Vilela AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Teotonio%20Vilela&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -35.97725,
- -9.20752
- ],
- [
- -35.9772,
- -9.19398
- ],
- [
- -35.97694,
- -9.19053
- ],
- [
- -35.97678,
- -9.18607
- ],
- [
- -35.97702,
- -9.18208
- ],
- [
- -35.97704,
- -9.17968
- ],
- [
- -35.97682,
- -9.17734
- ],
- [
- -35.97664,
- -9.17517
- ],
- [
- -35.97701,
- -9.17518
- ],
- [
- -35.97696,
- -9.1707
- ],
- [
- -35.97674,
- -9.17066
- ],
- [
- -35.97661,
- -9.16645
- ],
- [
- -35.97618,
- -9.16222
- ],
- [
- -35.9761,
- -9.16026
- ],
- [
- -35.97661,
- -9.16026
- ],
- [
- -35.97672,
- -9.14608
- ],
- [
- -35.97654,
- -9.14122
- ],
- [
- -35.97666,
- -9.1332
- ],
- [
- -35.97653,
- -9.12184
- ],
- [
- -35.97648,
- -9.11748
- ],
- [
- -35.98618,
- -9.11755
- ],
- [
- -35.98947,
- -9.11733
- ],
- [
- -36.00561,
- -9.11733
- ],
- [
- -36.01859,
- -9.11736
- ],
- [
- -36.04601,
- -9.11722
- ],
- [
- -36.06734,
- -9.11698
- ],
- [
- -36.06756,
- -9.16134
- ],
- [
- -36.06771,
- -9.16405
- ],
- [
- -36.06745,
- -9.16408
- ],
- [
- -36.06756,
- -9.16657
- ],
- [
- -36.06777,
- -9.16654
- ],
- [
- -36.06798,
- -9.20701
- ],
- [
- -36.0498,
- -9.20711
- ],
- [
- -36.04671,
- -9.20698
- ],
- [
- -36.02941,
- -9.20709
- ],
- [
- -36.01355,
- -9.20718
- ],
- [
- -35.99318,
- -9.20733
- ],
- [
- -35.97725,
- -9.20752
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "uniao_dos_palmares",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "União dos Palmares AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Uniao%20dos%20Palmares&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -36.198,
- -9.42067
- ],
- [
- -36.19777,
- -9.41789
- ],
- [
- -36.1978,
- -9.41528
- ],
- [
- -36.19801,
- -9.41074
- ],
- [
- -36.19789,
- -9.40857
- ],
- [
- -36.19793,
- -9.40637
- ],
- [
- -36.19797,
- -9.40561
- ],
- [
- -36.19793,
- -9.40405
- ],
- [
- -36.19799,
- -9.40312
- ],
- [
- -36.19827,
- -9.40028
- ],
- [
- -36.19829,
- -9.39496
- ],
- [
- -36.19789,
- -9.39169
- ],
- [
- -36.19844,
- -9.38932
- ],
- [
- -36.19837,
- -9.3862
- ],
- [
- -36.19794,
- -9.38167
- ],
- [
- -36.19801,
- -9.37972
- ],
- [
- -36.19834,
- -9.37867
- ],
- [
- -36.19832,
- -9.37698
- ],
- [
- -36.19817,
- -9.37586
- ],
- [
- -36.19852,
- -9.37139
- ],
- [
- -36.19822,
- -9.36239
- ],
- [
- -36.19862,
- -9.35319
- ],
- [
- -36.19849,
- -9.35097
- ],
- [
- -36.19857,
- -9.34852
- ],
- [
- -36.1988,
- -9.34668
- ],
- [
- -36.1986,
- -9.34349
- ],
- [
- -36.19877,
- -9.34084
- ],
- [
- -36.19895,
- -9.33301
- ],
- [
- -36.19877,
- -9.33039
- ],
- [
- -36.28958,
- -9.33114
- ],
- [
- -36.28938,
- -9.33319
- ],
- [
- -36.2895,
- -9.33538
- ],
- [
- -36.28925,
- -9.34124
- ],
- [
- -36.28945,
- -9.34291
- ],
- [
- -36.28928,
- -9.34521
- ],
- [
- -36.28897,
- -9.37311
- ],
- [
- -36.28915,
- -9.37481
- ],
- [
- -36.28892,
- -9.37708
- ],
- [
- -36.2889,
- -9.38541
- ],
- [
- -36.28872,
- -9.38633
- ],
- [
- -36.28872,
- -9.39343
- ],
- [
- -36.28887,
- -9.39558
- ],
- [
- -36.28877,
- -9.40129
- ],
- [
- -36.28862,
- -9.40652
- ],
- [
- -36.28872,
- -9.40715
- ],
- [
- -36.28877,
- -9.42133
- ],
- [
- -36.198,
- -9.42067
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "vicosa_al",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Viçosa AL",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Vicosa&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -35.52384,
- -9.48089
- ],
- [
- -35.5236,
- -9.44515
- ],
- [
- -35.51572,
- -9.44518
- ],
- [
- -35.51584,
- -9.44229
- ],
- [
- -35.50542,
- -9.44238
- ],
- [
- -35.50518,
- -9.43064
- ],
- [
- -35.49334,
- -9.43073
- ],
- [
- -35.49304,
- -9.3982
- ],
- [
- -35.4893,
- -9.39817
- ],
- [
- -35.48921,
- -9.38628
- ],
- [
- -35.4854,
- -9.38634
- ],
- [
- -35.48525,
- -9.37809
- ],
- [
- -35.48127,
- -9.37812
- ],
- [
- -35.48114,
- -9.36987
- ],
- [
- -35.47698,
- -9.36996
- ],
- [
- -35.47686,
- -9.36385
- ],
- [
- -35.47459,
- -9.36388
- ],
- [
- -35.47447,
- -9.36153
- ],
- [
- -35.47212,
- -9.36141
- ],
- [
- -35.47206,
- -9.35917
- ],
- [
- -35.46976,
- -9.3592
- ],
- [
- -35.46967,
- -9.35682
- ],
- [
- -35.46653,
- -9.35676
- ],
- [
- -35.46641,
- -9.35289
- ],
- [
- -35.46387,
- -9.35277
- ],
- [
- -35.46387,
- -9.35119
- ],
- [
- -35.44135,
- -9.35131
- ],
- [
- -35.44125,
- -9.34541
- ],
- [
- -35.43177,
- -9.34538
- ],
- [
- -35.43171,
- -9.33602
- ],
- [
- -35.39463,
- -9.33632
- ],
- [
- -35.39442,
- -9.30125
- ],
- [
- -35.38165,
- -9.30143
- ],
- [
- -35.38147,
- -9.28638
- ],
- [
- -35.37799,
- -9.28626
- ],
- [
- -35.37796,
- -9.2811
- ],
- [
- -35.36942,
- -9.28122
- ],
- [
- -35.36921,
- -9.27261
- ],
- [
- -35.35966,
- -9.27276
- ],
- [
- -35.35969,
- -9.26465
- ],
- [
- -35.35051,
- -9.26474
- ],
- [
- -35.35036,
- -9.25562
- ],
- [
- -35.34115,
- -9.25565
- ],
- [
- -35.34118,
- -9.24501
- ],
- [
- -35.31775,
- -9.24519
- ],
- [
- -35.3176,
- -9.22567
- ],
- [
- -35.30292,
- -9.22579
- ],
- [
- -35.30283,
- -9.2113
- ],
- [
- -35.30794,
- -9.21136
- ],
- [
- -35.30785,
- -9.19979
- ],
- [
- -35.29103,
- -9.19988
- ],
- [
- -35.29091,
- -9.1966
- ],
- [
- -35.29018,
- -9.19669
- ],
- [
- -35.28997,
- -9.16516
- ],
- [
- -35.27759,
- -9.16522
- ],
- [
- -35.2775,
- -9.16417
- ],
- [
- -35.27541,
- -9.1642
- ],
- [
- -35.27535,
- -9.16152
- ],
- [
- -35.27375,
- -9.16149
- ],
- [
- -35.27366,
- -9.15839
- ],
- [
- -35.27182,
- -9.15842
- ],
- [
- -35.27185,
- -9.15729
- ],
- [
- -35.27149,
- -9.15729
- ],
- [
- -35.27143,
- -9.15469
- ],
- [
- -35.26965,
- -9.15463
- ],
- [
- -35.26959,
- -9.15362
- ],
- [
- -35.26919,
- -9.15362
- ],
- [
- -35.26907,
- -9.13159
- ],
- [
- -35.26403,
- -9.13165
- ],
- [
- -35.264,
- -9.12318
- ],
- [
- -35.26056,
- -9.12321
- ],
- [
- -35.26053,
- -9.11781
- ],
- [
- -35.256,
- -9.11784
- ],
- [
- -35.25573,
- -9.08946
- ],
- [
- -35.25114,
- -9.08955
- ],
- [
- -35.25108,
- -9.08651
- ],
- [
- -35.25026,
- -9.08648
- ],
- [
- -35.25029,
- -9.08475
- ],
- [
- -35.24449,
- -9.08478
- ],
- [
- -35.24449,
- -9.07989
- ],
- [
- -35.24093,
- -9.07997
- ],
- [
- -35.24081,
- -9.07312
- ],
- [
- -35.23734,
- -9.07312
- ],
- [
- -35.23719,
- -9.06322
- ],
- [
- -35.23655,
- -9.06322
- ],
- [
- -35.23652,
- -9.04655
- ],
- [
- -35.23323,
- -9.04652
- ],
- [
- -35.23332,
- -9.04345
- ],
- [
- -35.2306,
- -9.04348
- ],
- [
- -35.2306,
- -9.04014
- ],
- [
- -35.22897,
- -9.04008
- ],
- [
- -35.229,
- -9.03835
- ],
- [
- -35.22505,
- -9.03826
- ],
- [
- -35.22502,
- -9.03167
- ],
- [
- -35.2223,
- -9.03161
- ],
- [
- -35.22233,
- -9.02012
- ],
- [
- -35.21834,
- -9.02009
- ],
- [
- -35.21831,
- -9.01341
- ],
- [
- -35.21671,
- -9.01341
- ],
- [
- -35.21668,
- -9.00998
- ],
- [
- -35.21176,
- -9.00998
- ],
- [
- -35.21173,
- -9.00647
- ],
- [
- -35.20971,
- -9.00653
- ],
- [
- -35.20974,
- -9.00438
- ],
- [
- -35.20765,
- -9.00432
- ],
- [
- -35.20768,
- -9.00226
- ],
- [
- -35.20566,
- -9.00226
- ],
- [
- -35.20563,
- -8.99987
- ],
- [
- -35.20391,
- -8.99987
- ],
- [
- -35.20394,
- -8.99785
- ],
- [
- -35.20213,
- -8.99791
- ],
- [
- -35.20213,
- -8.99579
- ],
- [
- -35.19844,
- -8.99582
- ],
- [
- -35.19844,
- -8.99361
- ],
- [
- -35.19434,
- -8.99361
- ],
- [
- -35.19428,
- -8.99122
- ],
- [
- -35.19065,
- -8.99131
- ],
- [
- -35.19062,
- -8.98833
- ],
- [
- -35.18766,
- -8.98842
- ],
- [
- -35.18763,
- -8.98544
- ],
- [
- -35.18473,
- -8.98541
- ],
- [
- -35.18467,
- -8.98255
- ],
- [
- -35.18238,
- -8.98252
- ],
- [
- -35.18235,
- -8.98052
- ],
- [
- -35.17951,
- -8.98061
- ],
- [
- -35.17948,
- -8.97742
- ],
- [
- -35.17809,
- -8.97745
- ],
- [
- -35.17803,
- -8.97306
- ],
- [
- -35.17558,
- -8.97303
- ],
- [
- -35.17549,
- -8.96912
- ],
- [
- -35.17293,
- -8.96909
- ],
- [
- -35.17284,
- -8.96292
- ],
- [
- -35.17063,
- -8.96289
- ],
- [
- -35.17048,
- -8.95579
- ],
- [
- -35.16852,
- -8.95564
- ],
- [
- -35.16852,
- -8.94806
- ],
- [
- -35.16794,
- -8.948
- ],
- [
- -35.16791,
- -8.93995
- ],
- [
- -35.16245,
- -8.93995
- ],
- [
- -35.16242,
- -8.92978
- ],
- [
- -35.1587,
- -8.92981
- ],
- [
- -35.15873,
- -8.92662
- ],
- [
- -35.15547,
- -8.92668
- ],
- [
- -35.1555,
- -8.92378
- ],
- [
- -35.15348,
- -8.92381
- ],
- [
- -35.15339,
- -8.92065
- ],
- [
- -35.15131,
- -8.92062
- ],
- [
- -35.15122,
- -8.91194
- ],
- [
- -35.15263,
- -8.91194
- ],
- [
- -35.15263,
- -8.90821
- ],
- [
- -35.15439,
- -8.90824
- ],
- [
- -35.1543,
- -8.90215
- ],
- [
- -35.15593,
- -8.90212
- ],
- [
- -35.15593,
- -8.90051
- ],
- [
- -35.15768,
- -8.90048
- ],
- [
- -35.15774,
- -8.89905
- ],
- [
- -35.15958,
- -8.89908
- ],
- [
- -35.15955,
- -8.89747
- ],
- [
- -35.16139,
- -8.8975
- ],
- [
- -35.16133,
- -8.89625
- ],
- [
- -35.16363,
- -8.89625
- ],
- [
- -35.1636,
- -8.89526
- ],
- [
- -35.16553,
- -8.89526
- ],
- [
- -35.1655,
- -8.89315
- ],
- [
- -35.16794,
- -8.89315
- ],
- [
- -35.16791,
- -8.89147
- ],
- [
- -35.17024,
- -8.89153
- ],
- [
- -35.17027,
- -8.8904
- ],
- [
- -35.17302,
- -8.89043
- ],
- [
- -35.17302,
- -8.88876
- ],
- [
- -35.17791,
- -8.88876
- ],
- [
- -35.17794,
- -8.88795
- ],
- [
- -35.17894,
- -8.88792
- ],
- [
- -35.17894,
- -8.88891
- ],
- [
- -35.17966,
- -8.88894
- ],
- [
- -35.17978,
- -8.88858
- ],
- [
- -35.18099,
- -8.88861
- ],
- [
- -35.18099,
- -8.88816
- ],
- [
- -35.18519,
- -8.88816
- ],
- [
- -35.18519,
- -8.88897
- ],
- [
- -35.18591,
- -8.889
- ],
- [
- -35.18591,
- -8.88971
- ],
- [
- -35.18932,
- -8.88971
- ],
- [
- -35.18947,
- -8.8893
- ],
- [
- -35.19014,
- -8.88927
- ],
- [
- -35.19017,
- -8.88831
- ],
- [
- -35.19071,
- -8.88831
- ],
- [
- -35.19077,
- -8.88789
- ],
- [
- -35.19153,
- -8.88792
- ],
- [
- -35.19156,
- -8.88619
- ],
- [
- -35.19754,
- -8.88607
- ],
- [
- -35.19757,
- -8.8873
- ],
- [
- -35.19968,
- -8.8873
- ],
- [
- -35.19974,
- -8.88777
- ],
- [
- -35.2008,
- -8.88777
- ],
- [
- -35.2008,
- -8.88822
- ],
- [
- -35.2033,
- -8.88822
- ],
- [
- -35.20337,
- -8.8887
- ],
- [
- -35.20563,
- -8.88861
- ],
- [
- -35.20557,
- -8.88983
- ],
- [
- -35.20741,
- -8.8898
- ],
- [
- -35.20744,
- -8.89022
- ],
- [
- -35.21125,
- -8.89025
- ],
- [
- -35.21128,
- -8.88769
- ],
- [
- -35.21245,
- -8.88777
- ],
- [
- -35.21248,
- -8.88861
- ],
- [
- -35.21623,
- -8.88858
- ],
- [
- -35.21623,
- -8.88748
- ],
- [
- -35.21871,
- -8.88745
- ],
- [
- -35.21871,
- -8.88897
- ],
- [
- -35.22136,
- -8.88897
- ],
- [
- -35.22263,
- -8.88792
- ],
- [
- -35.22402,
- -8.88748
- ],
- [
- -35.22453,
- -8.88763
- ],
- [
- -35.22644,
- -8.88718
- ],
- [
- -35.22707,
- -8.88598
- ],
- [
- -35.23311,
- -8.88446
- ],
- [
- -35.23933,
- -8.88339
- ],
- [
- -35.24129,
- -8.88416
- ],
- [
- -35.25011,
- -8.88515
- ],
- [
- -35.25624,
- -8.88506
- ],
- [
- -35.26168,
- -8.88294
- ],
- [
- -35.26161,
- -8.88094
- ],
- [
- -35.26406,
- -8.88109
- ],
- [
- -35.26877,
- -8.8793
- ],
- [
- -35.27421,
- -8.87748
- ],
- [
- -35.2781,
- -8.87518
- ],
- [
- -35.28499,
- -8.87507
- ],
- [
- -35.28502,
- -8.87581
- ],
- [
- -35.2881,
- -8.87578
- ],
- [
- -35.29405,
- -8.87545
- ],
- [
- -35.30782,
- -8.87208
- ],
- [
- -35.31757,
- -8.86961
- ],
- [
- -35.32784,
- -8.86716
- ],
- [
- -35.33206,
- -8.86614
- ],
- [
- -35.34103,
- -8.86376
- ],
- [
- -35.3471,
- -8.86244
- ],
- [
- -35.3522,
- -8.86113
- ],
- [
- -35.35257,
- -8.86391
- ],
- [
- -35.34903,
- -8.86611
- ],
- [
- -35.34496,
- -8.87205
- ],
- [
- -35.34327,
- -8.87489
- ],
- [
- -35.34318,
- -8.87569
- ],
- [
- -35.34381,
- -8.87668
- ],
- [
- -35.34481,
- -8.8768
- ],
- [
- -35.34888,
- -8.87721
- ],
- [
- -35.35042,
- -8.87781
- ],
- [
- -35.35254,
- -8.87891
- ],
- [
- -35.35399,
- -8.88011
- ],
- [
- -35.35577,
- -8.88252
- ],
- [
- -35.35755,
- -8.88396
- ],
- [
- -35.36036,
- -8.88512
- ],
- [
- -35.36114,
- -8.88509
- ],
- [
- -35.3612,
- -8.88587
- ],
- [
- -35.36175,
- -8.8859
- ],
- [
- -35.36178,
- -8.88777
- ],
- [
- -35.36253,
- -8.88783
- ],
- [
- -35.36247,
- -8.891
- ],
- [
- -35.36311,
- -8.89112
- ],
- [
- -35.36311,
- -8.89482
- ],
- [
- -35.3644,
- -8.89488
- ],
- [
- -35.36507,
- -8.8967
- ],
- [
- -35.36637,
- -8.90022
- ],
- [
- -35.36754,
- -8.90427
- ],
- [
- -35.36794,
- -8.90782
- ],
- [
- -35.36863,
- -8.90917
- ],
- [
- -35.37207,
- -8.91155
- ],
- [
- -35.3741,
- -8.91349
- ],
- [
- -35.37277,
- -8.916
- ],
- [
- -35.37262,
- -8.91817
- ],
- [
- -35.37084,
- -8.92229
- ],
- [
- -35.37062,
- -8.92486
- ],
- [
- -35.37235,
- -8.93038
- ],
- [
- -35.37153,
- -8.93193
- ],
- [
- -35.37153,
- -8.93363
- ],
- [
- -35.37171,
- -8.93387
- ],
- [
- -35.37171,
- -8.94362
- ],
- [
- -35.36818,
- -8.94377
- ],
- [
- -35.36815,
- -8.94505
- ],
- [
- -35.36927,
- -8.94511
- ],
- [
- -35.36921,
- -8.94863
- ],
- [
- -35.37078,
- -8.94872
- ],
- [
- -35.37081,
- -8.95182
- ],
- [
- -35.37219,
- -8.95176
- ],
- [
- -35.37222,
- -8.95528
- ],
- [
- -35.37319,
- -8.95531
- ],
- [
- -35.37313,
- -8.95737
- ],
- [
- -35.3744,
- -8.95737
- ],
- [
- -35.37446,
- -8.96012
- ],
- [
- -35.37567,
- -8.96018
- ],
- [
- -35.3757,
- -8.96205
- ],
- [
- -35.37688,
- -8.96208
- ],
- [
- -35.37694,
- -8.96444
- ],
- [
- -35.37781,
- -8.96444
- ],
- [
- -35.37775,
- -8.96617
- ],
- [
- -35.38074,
- -8.96617
- ],
- [
- -35.38074,
- -8.96331
- ],
- [
- -35.38288,
- -8.96328
- ],
- [
- -35.38291,
- -8.95982
- ],
- [
- -35.38542,
- -8.95985
- ],
- [
- -35.38542,
- -8.95722
- ],
- [
- -35.38723,
- -8.95722
- ],
- [
- -35.3872,
- -8.95406
- ],
- [
- -35.38947,
- -8.95409
- ],
- [
- -35.38947,
- -8.95084
- ],
- [
- -35.39158,
- -8.95087
- ],
- [
- -35.39158,
- -8.94792
- ],
- [
- -35.39587,
- -8.94792
- ],
- [
- -35.39581,
- -8.94651
- ],
- [
- -35.3972,
- -8.94654
- ],
- [
- -35.39711,
- -8.94472
- ],
- [
- -35.39838,
- -8.94469
- ],
- [
- -35.39838,
- -8.93915
- ],
- [
- -35.40107,
- -8.93915
- ],
- [
- -35.40106,
- -8.93895
- ],
- [
- -35.40167,
- -8.93894
- ],
- [
- -35.40173,
- -8.93688
- ],
- [
- -35.40236,
- -8.93688
- ],
- [
- -35.40236,
- -8.93628
- ],
- [
- -35.40324,
- -8.9364
- ],
- [
- -35.4033,
- -8.93583
- ],
- [
- -35.40426,
- -8.9358
- ],
- [
- -35.4042,
- -8.93363
- ],
- [
- -35.40574,
- -8.9336
- ],
- [
- -35.40577,
- -8.93124
- ],
- [
- -35.4081,
- -8.93133
- ],
- [
- -35.40804,
- -8.92927
- ],
- [
- -35.40937,
- -8.9293
- ],
- [
- -35.40928,
- -8.92739
- ],
- [
- -35.41085,
- -8.92742
- ],
- [
- -35.41085,
- -8.92542
- ],
- [
- -35.41239,
- -8.92545
- ],
- [
- -35.41236,
- -8.9239
- ],
- [
- -35.41335,
- -8.92387
- ],
- [
- -35.41329,
- -8.92193
- ],
- [
- -35.41523,
- -8.92196
- ],
- [
- -35.41523,
- -8.91999
- ],
- [
- -35.41655,
- -8.92002
- ],
- [
- -35.41655,
- -8.91755
- ],
- [
- -35.4196,
- -8.91755
- ],
- [
- -35.41966,
- -8.91964
- ],
- [
- -35.42184,
- -8.91964
- ],
- [
- -35.42187,
- -8.92265
- ],
- [
- -35.42389,
- -8.92268
- ],
- [
- -35.42392,
- -8.92513
- ],
- [
- -35.42537,
- -8.92513
- ],
- [
- -35.42537,
- -8.92766
- ],
- [
- -35.42724,
- -8.92766
- ],
- [
- -35.42727,
- -8.92987
- ],
- [
- -35.42815,
- -8.92984
- ],
- [
- -35.42818,
- -8.9316
- ],
- [
- -35.42987,
- -8.93154
- ],
- [
- -35.4299,
- -8.93407
- ],
- [
- -35.43141,
- -8.93407
- ],
- [
- -35.43141,
- -8.9356
- ],
- [
- -35.43226,
- -8.93557
- ],
- [
- -35.43229,
- -8.93586
- ],
- [
- -35.4334,
- -8.93583
- ],
- [
- -35.4334,
- -8.94001
- ],
- [
- -35.43434,
- -8.94004
- ],
- [
- -35.43434,
- -8.94097
- ],
- [
- -35.43531,
- -8.94097
- ],
- [
- -35.43534,
- -8.94261
- ],
- [
- -35.43567,
- -8.94264
- ],
- [
- -35.4357,
- -8.94329
- ],
- [
- -35.43627,
- -8.94332
- ],
- [
- -35.43624,
- -8.94422
- ],
- [
- -35.4373,
- -8.94422
- ],
- [
- -35.43727,
- -8.9452
- ],
- [
- -35.43823,
- -8.9452
- ],
- [
- -35.43827,
- -8.94684
- ],
- [
- -35.43902,
- -8.94687
- ],
- [
- -35.43902,
- -8.94798
- ],
- [
- -35.44026,
- -8.94798
- ],
- [
- -35.44032,
- -8.94953
- ],
- [
- -35.44159,
- -8.94956
- ],
- [
- -35.44165,
- -8.95152
- ],
- [
- -35.44273,
- -8.95152
- ],
- [
- -35.44273,
- -8.95334
- ],
- [
- -35.44436,
- -8.95334
- ],
- [
- -35.44436,
- -8.95498
- ],
- [
- -35.44569,
- -8.95501
- ],
- [
- -35.44563,
- -8.95674
- ],
- [
- -35.4472,
- -8.9568
- ],
- [
- -35.44717,
- -8.95865
- ],
- [
- -35.44895,
- -8.95871
- ],
- [
- -35.44892,
- -8.96
- ],
- [
- -35.45101,
- -8.95994
- ],
- [
- -35.45098,
- -8.96101
- ],
- [
- -35.45469,
- -8.96095
- ],
- [
- -35.45466,
- -8.96235
- ],
- [
- -35.46049,
- -8.96235
- ],
- [
- -35.46055,
- -8.96557
- ],
- [
- -35.46653,
- -8.96548
- ],
- [
- -35.46659,
- -8.96885
- ],
- [
- -35.46771,
- -8.96883
- ],
- [
- -35.46774,
- -8.97053
- ],
- [
- -35.4739,
- -8.97053
- ],
- [
- -35.47399,
- -8.9753
- ],
- [
- -35.47791,
- -8.97521
- ],
- [
- -35.47797,
- -8.97816
- ],
- [
- -35.4841,
- -8.97813
- ],
- [
- -35.48416,
- -8.98201
- ],
- [
- -35.49084,
- -8.98195
- ],
- [
- -35.49084,
- -8.98562
- ],
- [
- -35.49721,
- -8.98562
- ],
- [
- -35.49721,
- -8.99069
- ],
- [
- -35.50225,
- -8.99057
- ],
- [
- -35.50234,
- -8.99567
- ],
- [
- -35.50648,
- -8.99567
- ],
- [
- -35.50651,
- -8.99856
- ],
- [
- -35.51204,
- -8.9985
- ],
- [
- -35.51207,
- -9.00163
- ],
- [
- -35.51663,
- -9.00166
- ],
- [
- -35.51666,
- -9.00617
- ],
- [
- -35.52119,
- -9.00614
- ],
- [
- -35.52122,
- -9.00739
- ],
- [
- -35.53127,
- -9.00733
- ],
- [
- -35.53127,
- -9.01064
- ],
- [
- -35.54818,
- -9.01049
- ],
- [
- -35.54818,
- -9.01359
- ],
- [
- -35.56968,
- -9.01344
- ],
- [
- -35.56974,
- -9.01738
- ],
- [
- -35.58575,
- -9.01732
- ],
- [
- -35.58578,
- -9.01995
- ],
- [
- -35.60957,
- -9.01983
- ],
- [
- -35.60954,
- -9.02302
- ],
- [
- -35.62911,
- -9.02287
- ],
- [
- -35.62905,
- -9.02508
- ],
- [
- -35.65221,
- -9.0249
- ],
- [
- -35.65224,
- -9.02758
- ],
- [
- -35.67552,
- -9.0274
- ],
- [
- -35.67555,
- -9.03056
- ],
- [
- -35.68295,
- -9.03056
- ],
- [
- -35.68298,
- -9.03435
- ],
- [
- -35.69128,
- -9.03432
- ],
- [
- -35.69128,
- -9.03766
- ],
- [
- -35.6995,
- -9.0376
- ],
- [
- -35.6995,
- -9.04034
- ],
- [
- -35.70668,
- -9.04031
- ],
- [
- -35.70671,
- -9.04518
- ],
- [
- -35.71115,
- -9.04518
- ],
- [
- -35.71133,
- -9.06691
- ],
- [
- -35.70871,
- -9.06691
- ],
- [
- -35.70877,
- -9.07869
- ],
- [
- -35.70656,
- -9.07872
- ],
- [
- -35.70656,
- -9.08653
- ],
- [
- -35.7043,
- -9.08653
- ],
- [
- -35.70433,
- -9.09104
- ],
- [
- -35.69992,
- -9.09107
- ],
- [
- -35.69989,
- -9.0956
- ],
- [
- -35.69536,
- -9.09557
- ],
- [
- -35.69542,
- -9.10001
- ],
- [
- -35.69092,
- -9.10013
- ],
- [
- -35.69101,
- -9.10207
- ],
- [
- -35.63367,
- -9.10246
- ],
- [
- -35.6337,
- -9.10541
- ],
- [
- -35.62585,
- -9.10553
- ],
- [
- -35.62591,
- -9.10964
- ],
- [
- -35.62231,
- -9.10964
- ],
- [
- -35.62234,
- -9.11203
- ],
- [
- -35.6199,
- -9.112
- ],
- [
- -35.6199,
- -9.11501
- ],
- [
- -35.61473,
- -9.11507
- ],
- [
- -35.61473,
- -9.11707
- ],
- [
- -35.61177,
- -9.11701
- ],
- [
- -35.61181,
- -9.1182
- ],
- [
- -35.6096,
- -9.11826
- ],
- [
- -35.60963,
- -9.12571
- ],
- [
- -35.59976,
- -9.12583
- ],
- [
- -35.59979,
- -9.12923
- ],
- [
- -35.59634,
- -9.12926
- ],
- [
- -35.5964,
- -9.13502
- ],
- [
- -35.59197,
- -9.13507
- ],
- [
- -35.59209,
- -9.149
- ],
- [
- -35.59018,
- -9.14897
- ],
- [
- -35.59015,
- -9.15108
- ],
- [
- -35.6016,
- -9.15105
- ],
- [
- -35.60154,
- -9.14912
- ],
- [
- -35.60552,
- -9.14912
- ],
- [
- -35.60549,
- -9.14557
- ],
- [
- -35.61184,
- -9.14554
- ],
- [
- -35.61184,
- -9.14235
- ],
- [
- -35.6176,
- -9.14238
- ],
- [
- -35.61757,
- -9.13853
- ],
- [
- -35.624,
- -9.13853
- ],
- [
- -35.62397,
- -9.13466
- ],
- [
- -35.63177,
- -9.13466
- ],
- [
- -35.63164,
- -9.13063
- ],
- [
- -35.63922,
- -9.1306
- ],
- [
- -35.63919,
- -9.12878
- ],
- [
- -35.66386,
- -9.12869
- ],
- [
- -35.6638,
- -9.1261
- ],
- [
- -35.71278,
- -9.12577
- ],
- [
- -35.71275,
- -9.12407
- ],
- [
- -35.72426,
- -9.12401
- ],
- [
- -35.71964,
- -9.15323
- ],
- [
- -35.72112,
- -9.1532
- ],
- [
- -35.72124,
- -9.17258
- ],
- [
- -35.72066,
- -9.17255
- ],
- [
- -35.72082,
- -9.18558
- ],
- [
- -35.71212,
- -9.18566
- ],
- [
- -35.7133,
- -9.34416
- ],
- [
- -35.69041,
- -9.34433
- ],
- [
- -35.69065,
- -9.37189
- ],
- [
- -35.68899,
- -9.37189
- ],
- [
- -35.68902,
- -9.37598
- ],
- [
- -35.68757,
- -9.37598
- ],
- [
- -35.68766,
- -9.38232
- ],
- [
- -35.68497,
- -9.38235
- ],
- [
- -35.68503,
- -9.39093
- ],
- [
- -35.68168,
- -9.39099
- ],
- [
- -35.68177,
- -9.39936
- ],
- [
- -35.67715,
- -9.39933
- ],
- [
- -35.67724,
- -9.4089
- ],
- [
- -35.67292,
- -9.40893
- ],
- [
- -35.67301,
- -9.41754
- ],
- [
- -35.66972,
- -9.4176
- ],
- [
- -35.66978,
- -9.42498
- ],
- [
- -35.66722,
- -9.42498
- ],
- [
- -35.66728,
- -9.4327
- ],
- [
- -35.66075,
- -9.43288
- ],
- [
- -35.66075,
- -9.43705
- ],
- [
- -35.6513,
- -9.43708
- ],
- [
- -35.65142,
- -9.44211
- ],
- [
- -35.64514,
- -9.44217
- ],
- [
- -35.64523,
- -9.44652
- ],
- [
- -35.63645,
- -9.44661
- ],
- [
- -35.63645,
- -9.44992
- ],
- [
- -35.62711,
- -9.45
- ],
- [
- -35.62727,
- -9.46505
- ],
- [
- -35.62086,
- -9.46511
- ],
- [
- -35.62092,
- -9.4722
- ],
- [
- -35.60939,
- -9.47222
- ],
- [
- -35.60939,
- -9.47529
- ],
- [
- -35.59674,
- -9.47535
- ],
- [
- -35.59674,
- -9.47351
- ],
- [
- -35.57844,
- -9.47371
- ],
- [
- -35.57847,
- -9.47595
- ],
- [
- -35.57267,
- -9.47604
- ],
- [
- -35.5727,
- -9.48042
- ],
- [
- -35.56823,
- -9.48048
- ],
- [
- -35.56826,
- -9.48881
- ],
- [
- -35.54169,
- -9.48893
- ],
- [
- -35.54163,
- -9.48071
- ],
- [
- -35.52384,
- -9.48089
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio",
- "url": "http://www.seplag.al.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "alagoas_litoral",
- "license_url": "http://dados.al.gov.br/dataset/imagens-de-alta-resolucao",
- "name": "Alagoas Litoral 2006",
- "type": "wms",
- "url": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Ortofotos%202006&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -69.94793,
- -4.23168
- ],
- [
- -69.45659,
- -1.49119
- ],
- [
- -69.3973,
- -1.36508
- ],
- [
- -69.42989,
- -1.22173
- ],
- [
- -69.39523,
- -1.12555
- ],
- [
- -69.44292,
- -1.03351
- ],
- [
- -69.41861,
- -0.99827
- ],
- [
- -69.528,
- -0.92514
- ],
- [
- -69.52577,
- -0.86807
- ],
- [
- -69.62491,
- -0.74667
- ],
- [
- -69.56179,
- -0.63692
- ],
- [
- -69.60783,
- -0.5008
- ],
- [
- -69.8446,
- -0.33732
- ],
- [
- -69.92054,
- -0.32573
- ],
- [
- -70.04323,
- -0.18998
- ],
- [
- -70.04302,
- 0.56359
- ],
- [
- -69.80272,
- 0.57162
- ],
- [
- -69.6711,
- 0.66759
- ],
- [
- -69.60529,
- 0.61328
- ],
- [
- -69.59701,
- 0.6542
- ],
- [
- -69.48002,
- 0.73577
- ],
- [
- -69.35277,
- 0.61416
- ],
- [
- -69.28914,
- 0.64997
- ],
- [
- -69.29484,
- 0.60389
- ],
- [
- -69.19975,
- 0.60591
- ],
- [
- -69.19425,
- 0.64982
- ],
- [
- -69.11563,
- 0.64484
- ],
- [
- -69.19001,
- 0.74056
- ],
- [
- -69.14881,
- 0.76751
- ],
- [
- -69.13576,
- 0.87204
- ],
- [
- -69.18846,
- 0.91324
- ],
- [
- -69.1646,
- 0.94156
- ],
- [
- -69.21679,
- 0.97245
- ],
- [
- -69.19773,
- 0.99974
- ],
- [
- -69.24494,
- 1.05655
- ],
- [
- -69.37641,
- 1.08794
- ],
- [
- -69.42312,
- 1.04265
- ],
- [
- -69.60989,
- 1.09826
- ],
- [
- -69.67718,
- 1.06994
- ],
- [
- -69.70963,
- 1.11817
- ],
- [
- -69.84266,
- 1.07272
- ],
- [
- -69.83972,
- 1.71893
- ],
- [
- -69.78236,
- 1.69244
- ],
- [
- -69.53464,
- 1.77691
- ],
- [
- -69.39109,
- 1.72935
- ],
- [
- -68.1645,
- 1.72945
- ],
- [
- -68.19207,
- 1.7797
- ],
- [
- -68.23954,
- 1.77044
- ],
- [
- -68.22688,
- 1.82918
- ],
- [
- -68.28555,
- 1.83084
- ],
- [
- -68.19583,
- 2.03479
- ],
- [
- -68.18033,
- 1.9767
- ],
- [
- -68.14417,
- 1.97854
- ],
- [
- -68.09043,
- 1.89774
- ],
- [
- -67.90162,
- 1.81165
- ],
- [
- -67.76942,
- 2.00924
- ],
- [
- -67.55095,
- 2.04769
- ],
- [
- -67.49519,
- 2.16312
- ],
- [
- -67.39404,
- 2.22894
- ],
- [
- -67.32672,
- 2.06387
- ],
- [
- -67.33083,
- 1.94158
- ],
- [
- -67.22831,
- 1.84127
- ],
- [
- -67.15384,
- 1.8315
- ],
- [
- -67.15922,
- 1.67504
- ],
- [
- -67.08017,
- 1.38546
- ],
- [
- -67.13923,
- 1.32002
- ],
- [
- -67.08675,
- 1.16704
- ],
- [
- -66.85119,
- 1.22896
- ],
- [
- -66.31032,
- 0.74494
- ],
- [
- -66.19737,
- 0.78161
- ],
- [
- -66.07783,
- 0.76174
- ],
- [
- -66.07024,
- 0.8123
- ],
- [
- -65.96712,
- 0.81511
- ],
- [
- -65.88369,
- 0.94159
- ],
- [
- -65.77261,
- 0.95859
- ],
- [
- -65.7421,
- 1.00125
- ],
- [
- -65.58894,
- 1.00471
- ],
- [
- -65.49624,
- 0.87415
- ],
- [
- -65.60623,
- 0.70748
- ],
- [
- -65.54116,
- 0.64881
- ],
- [
- -65.44499,
- 0.68921
- ],
- [
- -65.39213,
- 0.75692
- ],
- [
- -65.41198,
- 0.82415
- ],
- [
- -65.32734,
- 0.93596
- ],
- [
- -65.21302,
- 0.90282
- ],
- [
- -65.1749,
- 0.94131
- ],
- [
- -65.15831,
- 1.1246
- ],
- [
- -65.07232,
- 1.15303
- ],
- [
- -65.06317,
- 1.11205
- ],
- [
- -65.01361,
- 1.10905
- ],
- [
- -64.97445,
- 1.20288
- ],
- [
- -64.90439,
- 1.25153
- ],
- [
- -64.86966,
- 1.22713
- ],
- [
- -64.80053,
- 1.31527
- ],
- [
- -64.74446,
- 1.22569
- ],
- [
- -64.5789,
- 1.34041
- ],
- [
- -64.52608,
- 1.44322
- ],
- [
- -64.43586,
- 1.47006
- ],
- [
- -64.3939,
- 1.52901
- ],
- [
- -64.35111,
- 1.52921
- ],
- [
- -64.34777,
- 1.49508
- ],
- [
- -64.41019,
- 1.40301
- ],
- [
- -64.33791,
- 1.36134
- ],
- [
- -64.3136,
- 1.45617
- ],
- [
- -64.19707,
- 1.52071
- ],
- [
- -64.0735,
- 1.64902
- ],
- [
- -64.05781,
- 1.92899
- ],
- [
- -63.97219,
- 1.99194
- ],
- [
- -63.83555,
- 1.96644
- ],
- [
- -63.71155,
- 2.04645
- ],
- [
- -63.66501,
- 2.01861
- ],
- [
- -63.6268,
- 2.11222
- ],
- [
- -63.56474,
- 2.13571
- ],
- [
- -63.44059,
- 2.126
- ],
- [
- -63.36742,
- 2.26864
- ],
- [
- -63.37088,
- 2.41121
- ],
- [
- -63.42123,
- 2.45102
- ],
- [
- -63.46036,
- 2.39684
- ],
- [
- -63.56398,
- 2.44573
- ],
- [
- -63.76805,
- 2.43994
- ],
- [
- -63.84358,
- 2.4916
- ],
- [
- -64.01914,
- 2.46135
- ],
- [
- -64.0573,
- 2.49752
- ],
- [
- -63.98033,
- 2.7237
- ],
- [
- -64.07709,
- 2.87262
- ],
- [
- -64.07156,
- 2.92142
- ],
- [
- -64.12349,
- 2.99048
- ],
- [
- -64.15754,
- 2.98243
- ],
- [
- -64.14592,
- 3.03459
- ],
- [
- -64.22642,
- 3.12356
- ],
- [
- -64.19795,
- 3.20121
- ],
- [
- -64.2444,
- 3.43036
- ],
- [
- -64.17437,
- 3.56841
- ],
- [
- -64.281,
- 3.70928
- ],
- [
- -64.54357,
- 3.85713
- ],
- [
- -64.72239,
- 4.11775
- ],
- [
- -64.80203,
- 4.17422
- ],
- [
- -64.81123,
- 4.27048
- ],
- [
- -64.69522,
- 4.25323
- ],
- [
- -64.623,
- 4.135
- ],
- [
- -64.5565,
- 4.10529
- ],
- [
- -64.164,
- 4.127
- ],
- [
- -63.964,
- 3.868
- ],
- [
- -63.928,
- 3.925
- ],
- [
- -63.85,
- 3.95
- ],
- [
- -63.682,
- 3.908
- ],
- [
- -63.676,
- 4.019
- ],
- [
- -63.591,
- 3.886
- ],
- [
- -63.497,
- 3.84
- ],
- [
- -63.489,
- 3.874
- ],
- [
- -63.434,
- 3.865
- ],
- [
- -63.428,
- 3.977
- ],
- [
- -63.204,
- 3.952
- ],
- [
- -63.226,
- 3.836
- ],
- [
- -63.103,
- 3.794
- ],
- [
- -63.059,
- 3.748
- ],
- [
- -63.081,
- 3.694
- ],
- [
- -62.96,
- 3.608
- ],
- [
- -62.835,
- 3.739
- ],
- [
- -62.743,
- 3.674
- ],
- [
- -62.729,
- 3.805
- ],
- [
- -62.788,
- 3.894
- ],
- [
- -62.753,
- 4.032
- ],
- [
- -62.555,
- 4.019
- ],
- [
- -62.552,
- 4.109
- ],
- [
- -62.437,
- 4.183
- ],
- [
- -62.14308,
- 4.07768
- ],
- [
- -62.071,
- 4.126
- ],
- [
- -62.076,
- 4.154
- ],
- [
- -61.982,
- 4.181
- ],
- [
- -61.93175,
- 4.12009
- ],
- [
- -61.92213,
- 4.16126
- ],
- [
- -61.824,
- 4.164
- ],
- [
- -61.802,
- 4.229
- ],
- [
- -61.724,
- 4.27
- ],
- [
- -61.56,
- 4.252
- ],
- [
- -61.508,
- 4.322
- ],
- [
- -61.513,
- 4.406
- ],
- [
- -61.288,
- 4.458
- ],
- [
- -61.323,
- 4.535
- ],
- [
- -61.217,
- 4.536
- ],
- [
- -61.14559,
- 4.48016
- ],
- [
- -61.095,
- 4.522
- ],
- [
- -60.994,
- 4.519
- ],
- [
- -60.932,
- 4.587
- ],
- [
- -60.949,
- 4.653
- ],
- [
- -60.899,
- 4.717
- ],
- [
- -60.751,
- 4.756
- ],
- [
- -60.591,
- 4.927
- ],
- [
- -60.661,
- 5.164
- ],
- [
- -60.73197,
- 5.21203
- ],
- [
- -60.434,
- 5.182
- ],
- [
- -60.20825,
- 5.28346
- ],
- [
- -60.172,
- 5.227
- ],
- [
- -60.135,
- 5.249
- ],
- [
- -60.094,
- 5.14
- ],
- [
- -59.96984,
- 5.06334
- ],
- [
- -60.02524,
- 4.7065
- ],
- [
- -60.0705,
- 4.61688
- ],
- [
- -60.15725,
- 4.57247
- ],
- [
- -60.16114,
- 4.51773
- ],
- [
- -59.79503,
- 4.46554
- ],
- [
- -59.66948,
- 4.37629
- ],
- [
- -59.7319,
- 4.28587
- ],
- [
- -59.73069,
- 4.18076
- ],
- [
- -59.61818,
- 4.13166
- ],
- [
- -59.65406,
- 4.06943
- ],
- [
- -59.58417,
- 3.96851
- ],
- [
- -59.5153,
- 3.94493
- ],
- [
- -59.59279,
- 3.88538
- ],
- [
- -59.59631,
- 3.79386
- ],
- [
- -59.66555,
- 3.78126
- ],
- [
- -59.66842,
- 3.70277
- ],
- [
- -59.86728,
- 3.57776
- ],
- [
- -59.80205,
- 3.50156
- ],
- [
- -59.8408,
- 3.43174
- ],
- [
- -59.80488,
- 3.35695
- ],
- [
- -59.907,
- 3.212
- ],
- [
- -59.98944,
- 2.88185
- ],
- [
- -59.99,
- 2.686
- ],
- [
- -59.895,
- 2.482
- ],
- [
- -59.89872,
- 2.36245
- ],
- [
- -59.72315,
- 2.27614
- ],
- [
- -59.751,
- 1.859
- ],
- [
- -59.677,
- 1.839
- ],
- [
- -59.663,
- 1.871
- ],
- [
- -59.69,
- 1.757
- ],
- [
- -59.539,
- 1.723
- ],
- [
- -59.381,
- 1.507
- ],
- [
- -59.329,
- 1.514
- ],
- [
- -59.327,
- 1.464
- ],
- [
- -59.284,
- 1.45
- ],
- [
- -59.253,
- 1.389
- ],
- [
- -58.978,
- 1.302
- ],
- [
- -58.918,
- 1.317
- ],
- [
- -58.886,
- 1.261
- ],
- [
- -58.912,
- 1.239
- ],
- [
- -58.82512,
- 1.17127
- ],
- [
- -58.73956,
- 1.1999
- ],
- [
- -58.69456,
- 1.29732
- ],
- [
- -58.49622,
- 1.26796
- ],
- [
- -58.45787,
- 1.37145
- ],
- [
- -58.50511,
- 1.40317
- ],
- [
- -58.50873,
- 1.46295
- ],
- [
- -58.38559,
- 1.46999
- ],
- [
- -58.39472,
- 1.52651
- ],
- [
- -58.32237,
- 1.59702
- ],
- [
- -58.236,
- 1.54669
- ],
- [
- -58.16064,
- 1.56011
- ],
- [
- -58.12942,
- 1.4989
- ],
- [
- -58.00423,
- 1.50303
- ],
- [
- -57.99009,
- 1.65844
- ],
- [
- -57.85206,
- 1.66782
- ],
- [
- -57.77431,
- 1.72973
- ],
- [
- -57.70509,
- 1.73093
- ],
- [
- -57.65042,
- 1.68237
- ],
- [
- -57.5376,
- 1.7005
- ],
- [
- -57.50187,
- 1.78609
- ],
- [
- -57.43776,
- 1.82681
- ],
- [
- -57.43343,
- 1.90598
- ],
- [
- -57.36768,
- 1.92372
- ],
- [
- -57.36912,
- 1.95638
- ],
- [
- -57.30712,
- 1.99665
- ],
- [
- -57.22923,
- 1.93759
- ],
- [
- -57.08668,
- 2.02644
- ],
- [
- -57.01421,
- 1.91489
- ],
- [
- -56.91971,
- 1.93036
- ],
- [
- -56.79793,
- 1.85336
- ],
- [
- -56.72096,
- 1.92582
- ],
- [
- -56.62145,
- 1.94588
- ],
- [
- -56.57976,
- 1.90588
- ],
- [
- -56.45126,
- 1.95614
- ],
- [
- -56.24404,
- 1.87808
- ],
- [
- -56.1709,
- 1.90048
- ],
- [
- -56.11762,
- 1.85097
- ],
- [
- -55.95638,
- 1.84509
- ],
- [
- -55.90385,
- 1.88803
- ],
- [
- -55.93635,
- 1.98647
- ],
- [
- -55.9031,
- 2.04108
- ],
- [
- -56.00307,
- 2.1676
- ],
- [
- -56.05505,
- 2.18464
- ],
- [
- -56.04288,
- 2.22778
- ],
- [
- -56.13887,
- 2.26574
- ],
- [
- -56.09012,
- 2.37228
- ],
- [
- -56.02181,
- 2.34247
- ],
- [
- -55.97052,
- 2.52931
- ],
- [
- -55.76663,
- 2.45524
- ],
- [
- -55.71028,
- 2.39917
- ],
- [
- -55.49971,
- 2.44324
- ],
- [
- -55.38533,
- 2.41836
- ],
- [
- -55.32019,
- 2.51537
- ],
- [
- -55.23474,
- 2.50338
- ],
- [
- -55.1234,
- 2.56762
- ],
- [
- -55.10302,
- 2.52564
- ],
- [
- -54.95424,
- 2.58359
- ],
- [
- -54.86846,
- 2.43989
- ],
- [
- -54.68917,
- 2.45389
- ],
- [
- -54.68861,
- 2.32472
- ],
- [
- -54.54667,
- 2.31833
- ],
- [
- -54.53778,
- 2.26556
- ],
- [
- -54.46861,
- 2.21306
- ],
- [
- -54.24917,
- 2.14667
- ],
- [
- -54.18056,
- 2.1725
- ],
- [
- -54.11083,
- 2.11222
- ],
- [
- -54.06139,
- 2.19167
- ],
- [
- -53.94083,
- 2.21917
- ],
- [
- -53.93194,
- 2.27194
- ],
- [
- -53.88667,
- 2.26778
- ],
- [
- -53.745,
- 2.37389
- ],
- [
- -53.73389,
- 2.31222
- ],
- [
- -53.52972,
- 2.24917
- ],
- [
- -53.45861,
- 2.2575
- ],
- [
- -53.32833,
- 2.35333
- ],
- [
- -53.21667,
- 2.25333
- ],
- [
- -53.27899,
- 2.18603
- ],
- [
- -53.11861,
- 2.2225
- ],
- [
- -52.99472,
- 2.17528
- ],
- [
- -52.90972,
- 2.19583
- ],
- [
- -52.84722,
- 2.28556
- ],
- [
- -52.67528,
- 2.37389
- ],
- [
- -52.59444,
- 2.47389
- ],
- [
- -52.54028,
- 2.57028
- ],
- [
- -52.56417,
- 2.63944
- ],
- [
- -52.43944,
- 2.87778
- ],
- [
- -52.39583,
- 2.90222
- ],
- [
- -52.33187,
- 3.16938
- ],
- [
- -52.21472,
- 3.26833
- ],
- [
- -51.97104,
- 3.70696
- ],
- [
- -51.92148,
- 3.72422
- ],
- [
- -51.922,
- 3.7792
- ],
- [
- -51.79731,
- 3.88888
- ],
- [
- -51.77783,
- 3.97406
- ],
- [
- -51.65867,
- 4.05276
- ],
- [
- -51.61325,
- 4.17437
- ],
- [
- -51.63716,
- 4.50834
- ],
- [
- -51.49427,
- 4.67426
- ],
- [
- -51.11466,
- 4.42286
- ],
- [
- -50.94232,
- 4.20165
- ],
- [
- -50.85475,
- 3.92491
- ],
- [
- -50.85507,
- 3.45573
- ],
- [
- -50.75331,
- 2.94057
- ],
- [
- -50.29908,
- 2.33079
- ],
- [
- -49.73896,
- 1.79143
- ],
- [
- -48.23746,
- -0.07449
- ],
- [
- -44.84728,
- -1.07246
- ],
- [
- -43.54602,
- -2.04705
- ],
- [
- -43.24389,
- -2.12403
- ],
- [
- -42.78189,
- -2.33053
- ],
- [
- -41.78084,
- -2.51859
- ],
- [
- -41.5085,
- -2.68486
- ],
- [
- -40.66365,
- -2.63829
- ],
- [
- -40.50396,
- -2.57531
- ],
- [
- -39.8907,
- -2.65328
- ],
- [
- -39.15187,
- -3.04444
- ],
- [
- -38.57151,
- -3.48047
- ],
- [
- -38.34306,
- -3.54434
- ],
- [
- -38.21421,
- -3.74103
- ],
- [
- -38.12555,
- -3.80544
- ],
- [
- -37.90182,
- -4.07265
- ],
- [
- -37.77934,
- -4.18046
- ],
- [
- -37.63401,
- -4.24454
- ],
- [
- -37.51218,
- -4.41535
- ],
- [
- -37.22122,
- -4.51045
- ],
- [
- -37.07874,
- -4.71355
- ],
- [
- -36.91716,
- -4.71372
- ],
- [
- -36.62299,
- -4.85815
- ],
- [
- -36.18969,
- -4.88505
- ],
- [
- -35.93627,
- -4.83327
- ],
- [
- -35.56471,
- -4.90758
- ],
- [
- -35.33677,
- -4.99239
- ],
- [
- -35.17659,
- -5.12497
- ],
- [
- -34.79469,
- -6.33583
- ],
- [
- -34.71587,
- -6.74615
- ],
- [
- -34.62306,
- -6.90323
- ],
- [
- -34.59953,
- -7.11133
- ],
- [
- -34.64374,
- -7.98735
- ],
- [
- -34.81497,
- -8.62472
- ],
- [
- -35.0253,
- -9.13761
- ],
- [
- -35.55848,
- -9.81261
- ],
- [
- -35.69663,
- -9.90026
- ],
- [
- -35.96401,
- -10.31281
- ],
- [
- -36.06155,
- -10.37447
- ],
- [
- -36.26639,
- -10.64593
- ],
- [
- -36.61764,
- -10.81082
- ],
- [
- -36.78725,
- -10.95151
- ],
- [
- -36.99511,
- -11.29602
- ],
- [
- -37.11368,
- -11.41261
- ],
- [
- -37.46002,
- -12.10275
- ],
- [
- -37.89668,
- -12.75844
- ],
- [
- -38.22146,
- -13.09717
- ],
- [
- -38.61146,
- -13.26537
- ],
- [
- -38.85337,
- -14.65508
- ],
- [
- -38.74388,
- -15.60089
- ],
- [
- -38.66456,
- -15.74741
- ],
- [
- -38.64697,
- -15.88327
- ],
- [
- -38.8013,
- -16.24838
- ],
- [
- -38.92933,
- -16.80775
- ],
- [
- -38.53193,
- -17.80026
- ],
- [
- -38.49171,
- -18.0046
- ],
- [
- -38.53661,
- -18.09683
- ],
- [
- -38.67053,
- -18.16855
- ],
- [
- -39.35288,
- -18.10892
- ],
- [
- -39.4675,
- -18.30359
- ],
- [
- -39.54529,
- -18.78548
- ],
- [
- -39.49227,
- -19.40134
- ],
- [
- -39.63477,
- -19.74403
- ],
- [
- -39.86353,
- -19.88681
- ],
- [
- -40.17827,
- -20.75426
- ],
- [
- -40.81442,
- -21.67672
- ],
- [
- -40.76948,
- -21.87786
- ],
- [
- -40.81442,
- -22.09702
- ],
- [
- -41.5086,
- -22.52638
- ],
- [
- -41.59666,
- -22.83627
- ],
- [
- -41.79292,
- -23.08823
- ],
- [
- -41.91484,
- -23.18527
- ],
- [
- -43.19603,
- -23.26703
- ],
- [
- -44.07735,
- -23.40501
- ],
- [
- -45.13508,
- -24.12014
- ],
- [
- -46.61368,
- -24.67512
- ],
- [
- -47.85376,
- -25.47012
- ],
- [
- -48.2801,
- -26.23036
- ],
- [
- -48.34897,
- -26.75081
- ],
- [
- -48.11076,
- -27.28208
- ],
- [
- -48.21148,
- -27.85592
- ],
- [
- -48.40713,
- -28.43255
- ],
- [
- -48.68615,
- -28.76016
- ],
- [
- -48.9156,
- -28.86305
- ],
- [
- -49.1579,
- -29.02871
- ],
- [
- -49.52748,
- -29.42005
- ],
- [
- -49.82565,
- -29.86559
- ],
- [
- -50.17344,
- -30.64282
- ],
- [
- -50.60441,
- -31.24135
- ],
- [
- -51.18785,
- -31.77646
- ],
- [
- -51.74211,
- -32.10539
- ],
- [
- -51.89236,
- -32.29596
- ],
- [
- -52.06117,
- -32.38504
- ],
- [
- -52.27087,
- -32.92102
- ],
- [
- -52.45986,
- -33.25369
- ],
- [
- -52.61505,
- -33.42291
- ],
- [
- -53.18109,
- -33.86891
- ],
- [
- -53.43053,
- -33.73947
- ],
- [
- -53.43951,
- -33.69347
- ],
- [
- -53.53228,
- -33.6888
- ],
- [
- -53.51819,
- -33.15342
- ],
- [
- -53.44438,
- -33.05296
- ],
- [
- -53.24468,
- -32.93489
- ],
- [
- -53.31008,
- -32.91875
- ],
- [
- -53.29454,
- -32.89931
- ],
- [
- -53.18496,
- -32.85043
- ],
- [
- -53.14569,
- -32.79202
- ],
- [
- -53.0858,
- -32.78835
- ],
- [
- -53.07558,
- -32.74088
- ],
- [
- -53.24992,
- -32.6041
- ],
- [
- -53.39137,
- -32.58573
- ],
- [
- -53.46423,
- -32.48446
- ],
- [
- -53.58321,
- -32.45192
- ],
- [
- -53.74599,
- -32.07848
- ],
- [
- -53.83375,
- -32.05524
- ],
- [
- -53.84978,
- -32.00064
- ],
- [
- -53.96073,
- -31.95532
- ],
- [
- -53.96972,
- -31.91765
- ],
- [
- -54.10019,
- -31.92825
- ],
- [
- -54.4549,
- -31.65295
- ],
- [
- -54.4528,
- -31.59959
- ],
- [
- -54.58676,
- -31.45656
- ],
- [
- -54.8367,
- -31.442
- ],
- [
- -54.88623,
- -31.3773
- ],
- [
- -54.94087,
- -31.38068
- ],
- [
- -55.00723,
- -31.26692
- ],
- [
- -55.07446,
- -31.33216
- ],
- [
- -55.24003,
- -31.26062
- ],
- [
- -55.29118,
- -31.14226
- ],
- [
- -55.34037,
- -31.13144
- ],
- [
- -55.34981,
- -31.03922
- ],
- [
- -55.42306,
- -31.01823
- ],
- [
- -55.57742,
- -30.83309
- ],
- [
- -55.65834,
- -30.864
- ],
- [
- -55.66621,
- -30.95395
- ],
- [
- -55.723,
- -30.943
- ],
- [
- -55.727,
- -30.979
- ],
- [
- -55.882,
- -31.077
- ],
- [
- -56.00989,
- -31.08267
- ],
- [
- -56.02241,
- -30.78565
- ],
- [
- -56.12508,
- -30.73871
- ],
- [
- -56.17074,
- -30.61517
- ],
- [
- -56.26095,
- -30.58509
- ],
- [
- -56.29193,
- -30.51967
- ],
- [
- -56.38177,
- -30.49956
- ],
- [
- -56.46126,
- -30.38486
- ],
- [
- -56.54706,
- -30.35946
- ],
- [
- -56.54115,
- -30.31291
- ],
- [
- -56.6187,
- -30.30054
- ],
- [
- -56.64628,
- -30.20346
- ],
- [
- -56.77662,
- -30.1633
- ],
- [
- -56.80777,
- -30.10301
- ],
- [
- -57.07113,
- -30.08671
- ],
- [
- -57.22081,
- -30.28928
- ],
- [
- -57.31303,
- -30.25785
- ],
- [
- -57.39229,
- -30.30474
- ],
- [
- -57.46574,
- -30.26589
- ],
- [
- -57.52431,
- -30.28569
- ],
- [
- -57.56087,
- -30.21134
- ],
- [
- -57.64744,
- -30.19483
- ],
- [
- -57.48047,
- -30.12315
- ],
- [
- -57.33713,
- -29.99284
- ],
- [
- -57.294,
- -29.831
- ],
- [
- -57.121,
- -29.765
- ],
- [
- -56.89888,
- -29.53179
- ],
- [
- -56.81905,
- -29.48816
- ],
- [
- -56.76618,
- -29.37768
- ],
- [
- -56.70164,
- -29.35913
- ],
- [
- -56.59315,
- -29.12516
- ],
- [
- -56.418,
- -29.075
- ],
- [
- -56.40775,
- -28.9748
- ],
- [
- -56.29995,
- -28.89614
- ],
- [
- -56.29652,
- -28.8027
- ],
- [
- -56.17858,
- -28.75922
- ],
- [
- -56.00984,
- -28.60718
- ],
- [
- -56.01249,
- -28.50873
- ],
- [
- -55.88357,
- -28.47923
- ],
- [
- -55.87739,
- -28.36159
- ],
- [
- -55.75157,
- -28.37095
- ],
- [
- -55.69433,
- -28.42204
- ],
- [
- -55.67047,
- -28.33218
- ],
- [
- -55.77415,
- -28.27414
- ],
- [
- -55.7757,
- -28.24481
- ],
- [
- -55.63167,
- -28.17719
- ],
- [
- -55.60747,
- -28.11604
- ],
- [
- -55.55957,
- -28.16523
- ],
- [
- -55.4952,
- -28.07682
- ],
- [
- -55.44611,
- -28.09787
- ],
- [
- -55.368,
- -28.029
- ],
- [
- -55.38299,
- -27.97948
- ],
- [
- -55.343,
- -27.972
- ],
- [
- -55.32706,
- -27.92664
- ],
- [
- -55.26574,
- -27.92969
- ],
- [
- -55.196,
- -27.856
- ],
- [
- -55.133,
- -27.897
- ],
- [
- -55.106,
- -27.846
- ],
- [
- -55.035,
- -27.858
- ],
- [
- -55.081,
- -27.779
- ],
- [
- -54.936,
- -27.772
- ],
- [
- -54.90617,
- -27.63871
- ],
- [
- -54.85,
- -27.624
- ],
- [
- -54.814,
- -27.533
- ],
- [
- -54.775,
- -27.586
- ],
- [
- -54.67926,
- -27.57394
- ],
- [
- -54.67709,
- -27.508
- ],
- [
- -54.621,
- -27.541
- ],
- [
- -54.574,
- -27.453
- ],
- [
- -54.5246,
- -27.5059
- ],
- [
- -54.444,
- -27.472
- ],
- [
- -54.47081,
- -27.42674
- ],
- [
- -54.41,
- -27.405
- ],
- [
- -54.35466,
- -27.46528
- ],
- [
- -54.34067,
- -27.40311
- ],
- [
- -54.28484,
- -27.44819
- ],
- [
- -54.261,
- -27.397
- ],
- [
- -54.21736,
- -27.38603
- ],
- [
- -54.172,
- -27.254
- ],
- [
- -54.15619,
- -27.29619
- ],
- [
- -54.08872,
- -27.30149
- ],
- [
- -54.01026,
- -27.19978
- ],
- [
- -53.96219,
- -27.19698
- ],
- [
- -53.95195,
- -27.15169
- ],
- [
- -53.79879,
- -27.14629
- ],
- [
- -53.80233,
- -27.04028
- ],
- [
- -53.76087,
- -27.06543
- ],
- [
- -53.78585,
- -27.02674
- ],
- [
- -53.7473,
- -27.03218
- ],
- [
- -53.7092,
- -26.93414
- ],
- [
- -53.67125,
- -26.94222
- ],
- [
- -53.69684,
- -26.86015
- ],
- [
- -53.66059,
- -26.85814
- ],
- [
- -53.75814,
- -26.72045
- ],
- [
- -53.7205,
- -26.65099
- ],
- [
- -53.75864,
- -26.64113
- ],
- [
- -53.63739,
- -26.24968
- ],
- [
- -53.742,
- -26.108
- ],
- [
- -53.73409,
- -26.04333
- ],
- [
- -53.83619,
- -25.97166
- ],
- [
- -53.82214,
- -25.79377
- ],
- [
- -53.89113,
- -25.62286
- ],
- [
- -53.94895,
- -25.6117
- ],
- [
- -53.95638,
- -25.64628
- ],
- [
- -54.01,
- -25.567
- ],
- [
- -54.07592,
- -25.55766
- ],
- [
- -54.098,
- -25.619
- ],
- [
- -54.099,
- -25.495
- ],
- [
- -54.206,
- -25.541
- ],
- [
- -54.178,
- -25.584
- ],
- [
- -54.23,
- -25.562
- ],
- [
- -54.25,
- -25.597
- ],
- [
- -54.28,
- -25.556
- ],
- [
- -54.38395,
- -25.59747
- ],
- [
- -54.43288,
- -25.69756
- ],
- [
- -54.4927,
- -25.6181
- ],
- [
- -54.59354,
- -25.59275
- ],
- [
- -54.61941,
- -25.45312
- ],
- [
- -54.4295,
- -25.15915
- ],
- [
- -54.43548,
- -24.94769
- ],
- [
- -54.32437,
- -24.66059
- ],
- [
- -54.32714,
- -24.47073
- ],
- [
- -54.25877,
- -24.36377
- ],
- [
- -54.34537,
- -24.14705
- ],
- [
- -54.28223,
- -24.07336
- ],
- [
- -54.43984,
- -23.90446
- ],
- [
- -54.66978,
- -23.81262
- ],
- [
- -54.70533,
- -23.86452
- ],
- [
- -54.89,
- -23.898
- ],
- [
- -54.924,
- -23.959
- ],
- [
- -55.06223,
- -23.99335
- ],
- [
- -55.107,
- -23.961
- ],
- [
- -55.22907,
- -24.01383
- ],
- [
- -55.30415,
- -23.96504
- ],
- [
- -55.34542,
- -23.99458
- ],
- [
- -55.41423,
- -23.9645
- ],
- [
- -55.44167,
- -23.70084
- ],
- [
- -55.47306,
- -23.64834
- ],
- [
- -55.53989,
- -23.625
- ],
- [
- -55.52356,
- -23.19733
- ],
- [
- -55.54199,
- -23.1561
- ],
- [
- -55.59635,
- -23.14993
- ],
- [
- -55.66578,
- -22.85274
- ],
- [
- -55.61432,
- -22.65521
- ],
- [
- -55.72364,
- -22.55166
- ],
- [
- -55.74302,
- -22.39266
- ],
- [
- -55.78939,
- -22.3846
- ],
- [
- -55.84304,
- -22.28725
- ],
- [
- -56.20983,
- -22.27805
- ],
- [
- -56.36485,
- -22.16949
- ],
- [
- -56.39404,
- -22.07434
- ],
- [
- -56.50711,
- -22.09561
- ],
- [
- -56.63705,
- -22.26341
- ],
- [
- -56.70344,
- -22.21693
- ],
- [
- -56.72026,
- -22.26479
- ],
- [
- -56.79344,
- -22.24238
- ],
- [
- -56.84285,
- -22.30155
- ],
- [
- -56.88343,
- -22.24755
- ],
- [
- -56.9967,
- -22.22246
- ],
- [
- -57.3744,
- -22.23204
- ],
- [
- -57.5804,
- -22.17534
- ],
- [
- -57.6106,
- -22.09462
- ],
- [
- -57.70751,
- -22.09111
- ],
- [
- -57.80183,
- -22.15072
- ],
- [
- -57.99384,
- -22.09023
- ],
- [
- -58.00946,
- -22.04038
- ],
- [
- -57.91281,
- -21.88266
- ],
- [
- -57.96603,
- -21.85045
- ],
- [
- -57.90866,
- -21.77355
- ],
- [
- -57.94714,
- -21.74413
- ],
- [
- -57.88329,
- -21.68903
- ],
- [
- -57.93436,
- -21.65037
- ],
- [
- -57.91387,
- -21.59021
- ],
- [
- -57.96795,
- -21.52432
- ],
- [
- -57.8535,
- -21.33109
- ],
- [
- -57.92019,
- -21.27655
- ],
- [
- -57.85066,
- -21.22407
- ],
- [
- -57.86834,
- -21.04417
- ],
- [
- -57.81919,
- -20.94066
- ],
- [
- -57.92836,
- -20.90036
- ],
- [
- -57.8552,
- -20.83403
- ],
- [
- -57.89863,
- -20.78872
- ],
- [
- -57.96183,
- -20.7916
- ],
- [
- -57.93478,
- -20.74565
- ],
- [
- -57.86732,
- -20.73265
- ],
- [
- -57.92414,
- -20.66392
- ],
- [
- -57.98848,
- -20.69879
- ],
- [
- -57.99847,
- -20.43551
- ],
- [
- -58.09339,
- -20.35554
- ],
- [
- -58.09596,
- -20.25445
- ],
- [
- -58.16216,
- -20.25953
- ],
- [
- -58.12152,
- -20.19246
- ],
- [
- -58.16932,
- -20.1694
- ],
- [
- -57.95347,
- -20.02094
- ],
- [
- -57.90248,
- -20.04207
- ],
- [
- -57.85796,
- -19.9703
- ],
- [
- -58.131,
- -19.758
- ],
- [
- -57.784,
- -19.033
- ],
- [
- -57.694,
- -19.011
- ],
- [
- -57.719,
- -18.899
- ],
- [
- -57.766,
- -18.899
- ],
- [
- -57.557,
- -18.24
- ],
- [
- -57.453,
- -18.231
- ],
- [
- -57.574,
- -18.131
- ],
- [
- -57.72302,
- -17.83074
- ],
- [
- -57.68472,
- -17.8306
- ],
- [
- -57.70991,
- -17.72702
- ],
- [
- -57.783,
- -17.639
- ],
- [
- -57.73696,
- -17.5583
- ],
- [
- -57.883,
- -17.449
- ],
- [
- -57.996,
- -17.515
- ],
- [
- -58.06,
- -17.45
- ],
- [
- -58.116,
- -17.451
- ],
- [
- -58.151,
- -17.384
- ],
- [
- -58.263,
- -17.344
- ],
- [
- -58.396,
- -17.181
- ],
- [
- -58.423,
- -16.989
- ],
- [
- -58.474,
- -16.935
- ],
- [
- -58.47,
- -16.703
- ],
- [
- -58.436,
- -16.592
- ],
- [
- -58.333,
- -16.49
- ],
- [
- -58.32227,
- -16.26559
- ],
- [
- -58.388,
- -16.261
- ],
- [
- -58.43059,
- -16.32264
- ],
- [
- -60.17335,
- -16.26672
- ],
- [
- -60.238,
- -15.473
- ],
- [
- -60.57543,
- -15.09677
- ],
- [
- -60.244,
- -15.096
- ],
- [
- -60.272,
- -14.62
- ],
- [
- -60.321,
- -14.608
- ],
- [
- -60.492,
- -14.188
- ],
- [
- -60.479,
- -14.097
- ],
- [
- -60.38066,
- -13.9888
- ],
- [
- -60.45062,
- -13.9364
- ],
- [
- -60.45599,
- -13.85422
- ],
- [
- -60.49068,
- -13.85782
- ],
- [
- -60.46776,
- -13.79446
- ],
- [
- -60.76755,
- -13.68329
- ],
- [
- -60.87678,
- -13.62149
- ],
- [
- -60.91857,
- -13.54334
- ],
- [
- -61.0056,
- -13.552
- ],
- [
- -61.0129,
- -13.48925
- ],
- [
- -61.0938,
- -13.49081
- ],
- [
- -61.10314,
- -13.53056
- ],
- [
- -61.18155,
- -13.50557
- ],
- [
- -61.19236,
- -13.53695
- ],
- [
- -61.29954,
- -13.47718
- ],
- [
- -61.46527,
- -13.55427
- ],
- [
- -61.57927,
- -13.48711
- ],
- [
- -61.852,
- -13.538
- ],
- [
- -61.892,
- -13.431
- ],
- [
- -61.96968,
- -13.40759
- ],
- [
- -61.97592,
- -13.36695
- ],
- [
- -62.11498,
- -13.25932
- ],
- [
- -62.115,
- -13.163
- ],
- [
- -62.15254,
- -13.15993
- ],
- [
- -62.16703,
- -13.11346
- ],
- [
- -62.19,
- -13.153
- ],
- [
- -62.214,
- -13.111
- ],
- [
- -62.27269,
- -13.15687
- ],
- [
- -62.39178,
- -13.13471
- ],
- [
- -62.453,
- -13.064
- ],
- [
- -62.612,
- -13.041
- ],
- [
- -62.65,
- -12.965
- ],
- [
- -62.729,
- -13.02
- ],
- [
- -62.779,
- -13.009
- ],
- [
- -62.89672,
- -12.8539
- ],
- [
- -63.01134,
- -12.83602
- ],
- [
- -63.08186,
- -12.72323
- ],
- [
- -63.06163,
- -12.68584
- ],
- [
- -63.15726,
- -12.6138
- ],
- [
- -63.24621,
- -12.66222
- ],
- [
- -63.23713,
- -12.69043
- ],
- [
- -63.30125,
- -12.68138
- ],
- [
- -63.44052,
- -12.608
- ],
- [
- -63.43627,
- -12.56526
- ],
- [
- -63.50641,
- -12.56562
- ],
- [
- -63.55295,
- -12.50598
- ],
- [
- -63.7848,
- -12.42871
- ],
- [
- -63.88957,
- -12.44745
- ],
- [
- -63.89949,
- -12.50204
- ],
- [
- -63.95144,
- -12.53179
- ],
- [
- -64.13464,
- -12.47732
- ],
- [
- -64.16781,
- -12.51503
- ],
- [
- -64.17504,
- -12.46675
- ],
- [
- -64.22945,
- -12.45419
- ],
- [
- -64.29018,
- -12.50313
- ],
- [
- -64.29452,
- -12.4582
- ],
- [
- -64.41057,
- -12.44436
- ],
- [
- -64.51217,
- -12.3551
- ],
- [
- -64.51256,
- -12.22562
- ],
- [
- -64.70406,
- -12.1827
- ],
- [
- -64.70719,
- -12.08684
- ],
- [
- -64.75486,
- -12.15762
- ],
- [
- -64.7688,
- -12.09356
- ],
- [
- -64.83747,
- -12.11786
- ],
- [
- -64.80954,
- -12.05633
- ],
- [
- -64.84077,
- -12.01027
- ],
- [
- -65.03548,
- -11.99408
- ],
- [
- -65.01398,
- -11.90303
- ],
- [
- -65.0727,
- -11.86587
- ],
- [
- -65.08672,
- -11.7082
- ],
- [
- -65.18953,
- -11.72353
- ],
- [
- -65.18216,
- -11.75609
- ],
- [
- -65.2593,
- -11.71053
- ],
- [
- -65.21178,
- -11.52857
- ],
- [
- -65.3074,
- -11.49957
- ],
- [
- -65.33276,
- -11.33986
- ],
- [
- -65.29053,
- -11.32275
- ],
- [
- -65.34347,
- -11.3082
- ],
- [
- -65.35834,
- -11.26834
- ],
- [
- -65.35938,
- -11.22067
- ],
- [
- -65.31294,
- -11.19578
- ],
- [
- -65.35387,
- -11.18419
- ],
- [
- -65.36177,
- -11.14031
- ],
- [
- -65.28269,
- -11.09009
- ],
- [
- -65.30071,
- -11.03142
- ],
- [
- -65.25053,
- -10.98506
- ],
- [
- -65.27476,
- -10.87302
- ],
- [
- -65.35376,
- -10.78881
- ],
- [
- -65.34667,
- -10.68155
- ],
- [
- -65.40569,
- -10.63935
- ],
- [
- -65.43011,
- -10.48505
- ],
- [
- -65.288,
- -10.219
- ],
- [
- -65.333,
- -9.965
- ],
- [
- -65.28588,
- -9.84413
- ],
- [
- -65.39313,
- -9.68683
- ],
- [
- -65.44394,
- -9.66957
- ],
- [
- -65.4883,
- -9.71015
- ],
- [
- -65.55611,
- -9.84498
- ],
- [
- -65.627,
- -9.83804
- ],
- [
- -65.66963,
- -9.78129
- ],
- [
- -65.71023,
- -9.80857
- ],
- [
- -65.68395,
- -9.74992
- ],
- [
- -65.7432,
- -9.78296
- ],
- [
- -65.77013,
- -9.73442
- ],
- [
- -65.79437,
- -9.79295
- ],
- [
- -65.79962,
- -9.75663
- ],
- [
- -65.86532,
- -9.79533
- ],
- [
- -65.87184,
- -9.75307
- ],
- [
- -65.91976,
- -9.75314
- ],
- [
- -65.98222,
- -9.81011
- ],
- [
- -66.151,
- -9.785
- ],
- [
- -66.426,
- -9.899
- ],
- [
- -66.435,
- -9.866
- ],
- [
- -66.61995,
- -9.89353
- ],
- [
- -66.63701,
- -9.94983
- ],
- [
- -66.8751,
- -10.08268
- ],
- [
- -66.9528,
- -10.18886
- ],
- [
- -66.99683,
- -10.20017
- ],
- [
- -67.01537,
- -10.25919
- ],
- [
- -67.17745,
- -10.33923
- ],
- [
- -67.31545,
- -10.31932
- ],
- [
- -67.31155,
- -10.37716
- ],
- [
- -67.40717,
- -10.37386
- ],
- [
- -67.44361,
- -10.45492
- ],
- [
- -67.57925,
- -10.5028
- ],
- [
- -67.64028,
- -10.59807
- ],
- [
- -67.67631,
- -10.60484
- ],
- [
- -67.70825,
- -10.71083
- ],
- [
- -67.86386,
- -10.64067
- ],
- [
- -68.03289,
- -10.65486
- ],
- [
- -68.10456,
- -10.71426
- ],
- [
- -68.10333,
- -10.77541
- ],
- [
- -68.27819,
- -10.98926
- ],
- [
- -68.71576,
- -11.14483
- ],
- [
- -68.75767,
- -11.00079
- ],
- [
- -68.9118,
- -11.02192
- ],
- [
- -69.41453,
- -10.92575
- ],
- [
- -69.73653,
- -10.97445
- ],
- [
- -69.76903,
- -10.92972
- ],
- [
- -69.93442,
- -10.9219
- ],
- [
- -70.15869,
- -11.04096
- ],
- [
- -70.30672,
- -11.06983
- ],
- [
- -70.43675,
- -11.03923
- ],
- [
- -70.53033,
- -10.93465
- ],
- [
- -70.62103,
- -10.99982
- ],
- [
- -70.62338,
- -9.82054
- ],
- [
- -70.53663,
- -9.76584
- ],
- [
- -70.59972,
- -9.56264
- ],
- [
- -70.55282,
- -9.57093
- ],
- [
- -70.56894,
- -9.53127
- ],
- [
- -70.50506,
- -9.50557
- ],
- [
- -70.49665,
- -9.42489
- ],
- [
- -70.59581,
- -9.4425
- ],
- [
- -70.6632,
- -9.52601
- ],
- [
- -70.75067,
- -9.56043
- ],
- [
- -70.79332,
- -9.63846
- ],
- [
- -70.96337,
- -9.74891
- ],
- [
- -70.99391,
- -9.81721
- ],
- [
- -71.13974,
- -9.85702
- ],
- [
- -71.22052,
- -9.96968
- ],
- [
- -72.1804,
- -9.99967
- ],
- [
- -72.15136,
- -9.79742
- ],
- [
- -72.26296,
- -9.75085
- ],
- [
- -72.25282,
- -9.61633
- ],
- [
- -72.28821,
- -9.60316
- ],
- [
- -72.2829,
- -9.53995
- ],
- [
- -72.35688,
- -9.4946
- ],
- [
- -72.51954,
- -9.49128
- ],
- [
- -72.71676,
- -9.4122
- ],
- [
- -73.2038,
- -9.40715
- ],
- [
- -73.07352,
- -9.23461
- ],
- [
- -73.0093,
- -9.22236
- ],
- [
- -73.02612,
- -9.17786
- ],
- [
- -72.9582,
- -9.14302
- ],
- [
- -72.94091,
- -8.98494
- ],
- [
- -72.99931,
- -8.91778
- ],
- [
- -73.05901,
- -8.90561
- ],
- [
- -73.14992,
- -8.6839
- ],
- [
- -73.20907,
- -8.6857
- ],
- [
- -73.28745,
- -8.61948
- ],
- [
- -73.3055,
- -8.47197
- ],
- [
- -73.38956,
- -8.46878
- ],
- [
- -73.41286,
- -8.41099
- ],
- [
- -73.53744,
- -8.34587
- ],
- [
- -73.62739,
- -8.02187
- ],
- [
- -73.73175,
- -7.9684
- ],
- [
- -73.7725,
- -7.90237
- ],
- [
- -73.76164,
- -7.85803
- ],
- [
- -73.69706,
- -7.86527
- ],
- [
- -73.6843,
- -7.77644
- ],
- [
- -73.82217,
- -7.71788
- ],
- [
- -73.99094,
- -7.53635
- ],
- [
- -73.948,
- -7.52661
- ],
- [
- -73.91981,
- -7.46568
- ],
- [
- -73.96394,
- -7.34764
- ],
- [
- -73.87014,
- -7.37882
- ],
- [
- -73.7003,
- -7.30429
- ],
- [
- -73.79842,
- -7.11306
- ],
- [
- -73.71046,
- -6.84019
- ],
- [
- -73.53639,
- -6.6834
- ],
- [
- -73.39115,
- -6.64193
- ],
- [
- -73.35281,
- -6.59327
- ],
- [
- -73.22741,
- -6.58884
- ],
- [
- -73.18797,
- -6.52302
- ],
- [
- -73.13523,
- -6.51046
- ],
- [
- -73.10473,
- -6.40666
- ],
- [
- -73.24664,
- -6.14963
- ],
- [
- -73.23821,
- -6.04399
- ],
- [
- -73.1868,
- -6.00512
- ],
- [
- -73.15207,
- -5.86796
- ],
- [
- -73.05303,
- -5.79517
- ],
- [
- -72.95912,
- -5.65689
- ],
- [
- -72.95888,
- -5.46613
- ],
- [
- -72.86052,
- -5.27117
- ],
- [
- -72.88725,
- -5.16307
- ],
- [
- -72.73986,
- -5.08859
- ],
- [
- -72.72765,
- -5.05199
- ],
- [
- -72.6212,
- -5.0518
- ],
- [
- -72.598,
- -4.98386
- ],
- [
- -72.38202,
- -4.87296
- ],
- [
- -72.36895,
- -4.80387
- ],
- [
- -72.12601,
- -4.73454
- ],
- [
- -72.04335,
- -4.62384
- ],
- [
- -72.00689,
- -4.64622
- ],
- [
- -71.99464,
- -4.60996
- ],
- [
- -71.94743,
- -4.60877
- ],
- [
- -71.91909,
- -4.5298
- ],
- [
- -71.88549,
- -4.53803
- ],
- [
- -71.9073,
- -4.51644
- ],
- [
- -71.76637,
- -4.50446
- ],
- [
- -71.75109,
- -4.46887
- ],
- [
- -71.70817,
- -4.51165
- ],
- [
- -71.65479,
- -4.47246
- ],
- [
- -71.65032,
- -4.50395
- ],
- [
- -71.61548,
- -4.4687
- ],
- [
- -71.6335,
- -4.51524
- ],
- [
- -71.59625,
- -4.52928
- ],
- [
- -71.53703,
- -4.46442
- ],
- [
- -71.49428,
- -4.48701
- ],
- [
- -71.50716,
- -4.43909
- ],
- [
- -71.43438,
- -4.42882
- ],
- [
- -71.42562,
- -4.47058
- ],
- [
- -71.35026,
- -4.42728
- ],
- [
- -71.30752,
- -4.46288
- ],
- [
- -71.32091,
- -4.42009
- ],
- [
- -71.27782,
- -4.44217
- ],
- [
- -71.26975,
- -4.385
- ],
- [
- -71.20263,
- -4.37987
- ],
- [
- -71.19422,
- -4.42471
- ],
- [
- -71.14478,
- -4.38158
- ],
- [
- -71.11491,
- -4.41119
- ],
- [
- -71.10616,
- -4.37764
- ],
- [
- -70.99389,
- -4.38654
- ],
- [
- -70.99595,
- -4.34632
- ],
- [
- -70.9357,
- -4.38432
- ],
- [
- -70.84483,
- -4.27905
- ],
- [
- -70.86447,
- -4.25245
- ],
- [
- -70.81677,
- -4.23005
- ],
- [
- -70.8458,
- -4.21872
- ],
- [
- -70.75901,
- -4.15944
- ],
- [
- -70.68147,
- -4.20791
- ],
- [
- -70.64256,
- -4.12805
- ],
- [
- -70.62521,
- -4.19151
- ],
- [
- -70.56118,
- -4.1775
- ],
- [
- -70.57357,
- -4.21169
- ],
- [
- -70.54796,
- -4.13671
- ],
- [
- -70.51036,
- -4.14824
- ],
- [
- -70.50417,
- -4.20098
- ],
- [
- -70.48535,
- -4.16132
- ],
- [
- -70.43435,
- -4.16266
- ],
- [
- -70.43146,
- -4.13217
- ],
- [
- -70.33892,
- -4.17997
- ],
- [
- -70.32281,
- -4.14206
- ],
- [
- -70.28769,
- -4.16555
- ],
- [
- -70.29141,
- -4.28709
- ],
- [
- -70.21457,
- -4.29749
- ],
- [
- -70.19194,
- -4.36179
- ],
- [
- -70.15508,
- -4.27308
- ],
- [
- -70.11749,
- -4.28585
- ],
- [
- -70.10881,
- -4.25454
- ],
- [
- -70.04189,
- -4.29409
- ],
- [
- -70.07948,
- -4.31428
- ],
- [
- -70.02826,
- -4.3703
- ],
- [
- -69.99182,
- -4.37482
- ],
- [
- -69.94793,
- -4.23168
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "BDGEx"
- },
- "available_projections": [
- "EPSG:3857"
- ],
- "country_code": "BR",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/south-america/br/Exercito.png",
- "id": "BDGEx_ctm_multi",
- "license_url": "https://wiki.openstreetmap.org/wiki/BDGEx_Tile_Layer",
- "min_zoom": 1,
- "name": "Cartas Topográficas do Exército Brasileiro",
- "type": "wms",
- "url": "https://bdgex.eb.mil.br/mapcache?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ctmmultiescalas_mercator&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -40.94577,
- -21.31404
- ],
- [
- -40.6231,
- -20.86278
- ],
- [
- -40.38882,
- -20.65177
- ],
- [
- -40.22209,
- -20.29831
- ],
- [
- -39.80383,
- -19.66412
- ],
- [
- -39.69603,
- -19.42573
- ],
- [
- -39.67304,
- -19.30437
- ],
- [
- -39.70538,
- -18.61384
- ],
- [
- -39.65292,
- -18.33096
- ],
- [
- -40.22281,
- -17.97587
- ],
- [
- -40.34282,
- -17.9198
- ],
- [
- -40.45278,
- -17.91502
- ],
- [
- -40.46499,
- -17.92049
- ],
- [
- -40.48368,
- -17.90408
- ],
- [
- -40.50164,
- -17.90681
- ],
- [
- -40.51602,
- -17.88903
- ],
- [
- -40.53326,
- -17.88903
- ],
- [
- -40.54548,
- -17.90134
- ],
- [
- -40.58932,
- -17.91502
- ],
- [
- -40.58932,
- -17.93211
- ],
- [
- -40.61519,
- -17.93416
- ],
- [
- -40.62956,
- -17.9868
- ],
- [
- -40.64609,
- -17.9868
- ],
- [
- -40.65903,
- -18.00731
- ],
- [
- -40.68777,
- -18.00594
- ],
- [
- -40.70574,
- -18.01756
- ],
- [
- -40.71365,
- -18.00184
- ],
- [
- -40.72155,
- -17.99774
- ],
- [
- -40.75102,
- -18.00252
- ],
- [
- -40.76754,
- -17.99842
- ],
- [
- -40.76754,
- -17.98133
- ],
- [
- -40.80923,
- -17.94852
- ],
- [
- -40.82432,
- -17.96014
- ],
- [
- -40.83151,
- -17.94989
- ],
- [
- -40.86528,
- -17.9827
- ],
- [
- -40.88397,
- -17.96766
- ],
- [
- -40.90912,
- -17.98475
- ],
- [
- -40.77761,
- -18.10775
- ],
- [
- -40.77832,
- -18.15146
- ],
- [
- -40.79054,
- -18.15351
- ],
- [
- -40.8351,
- -18.14531
- ],
- [
- -40.89547,
- -18.10365
- ],
- [
- -40.93283,
- -18.12755
- ],
- [
- -40.95583,
- -18.1255
- ],
- [
- -40.95296,
- -18.14463
- ],
- [
- -40.96014,
- -18.15009
- ],
- [
- -40.96374,
- -18.14326
- ],
- [
- -40.97955,
- -18.13643
- ],
- [
- -40.99248,
- -18.15009
- ],
- [
- -40.99105,
- -18.16307
- ],
- [
- -41.00901,
- -18.16307
- ],
- [
- -41.05788,
- -18.1658
- ],
- [
- -41.05788,
- -18.17536
- ],
- [
- -41.09597,
- -18.19243
- ],
- [
- -41.09597,
- -18.2054
- ],
- [
- -41.1089,
- -18.21291
- ],
- [
- -41.09812,
- -18.22997
- ],
- [
- -41.10531,
- -18.2327
- ],
- [
- -41.09884,
- -18.25591
- ],
- [
- -41.12903,
- -18.27502
- ],
- [
- -41.16137,
- -18.30572
- ],
- [
- -41.15059,
- -18.37394
- ],
- [
- -41.16424,
- -18.37939
- ],
- [
- -41.16424,
- -18.4019
- ],
- [
- -41.15059,
- -18.40735
- ],
- [
- -41.15849,
- -18.41144
- ],
- [
- -41.17358,
- -18.41144
- ],
- [
- -41.18868,
- -18.44485
- ],
- [
- -41.02123,
- -18.46667
- ],
- [
- -41.04638,
- -18.60362
- ],
- [
- -41.03776,
- -18.61452
- ],
- [
- -41.05788,
- -18.62678
- ],
- [
- -41.0471,
- -18.64857
- ],
- [
- -41.03488,
- -18.65402
- ],
- [
- -40.99895,
- -18.67716
- ],
- [
- -40.94505,
- -18.69418
- ],
- [
- -40.94433,
- -18.76973
- ],
- [
- -40.92134,
- -18.81055
- ],
- [
- -40.93715,
- -18.82347
- ],
- [
- -40.94721,
- -18.82143
- ],
- [
- -40.97092,
- -18.83572
- ],
- [
- -41.08375,
- -18.83232
- ],
- [
- -41.10675,
- -18.83572
- ],
- [
- -41.11753,
- -18.80783
- ],
- [
- -41.13118,
- -18.79286
- ],
- [
- -41.23611,
- -18.7949
- ],
- [
- -41.2512,
- -18.81667
- ],
- [
- -41.2476,
- -18.85544
- ],
- [
- -41.2203,
- -18.87992
- ],
- [
- -41.20808,
- -18.87992
- ],
- [
- -41.20664,
- -18.86632
- ],
- [
- -41.16424,
- -18.867
- ],
- [
- -41.15634,
- -18.88876
- ],
- [
- -41.12903,
- -18.9044
- ],
- [
- -41.12112,
- -18.92412
- ],
- [
- -41.0392,
- -18.98665
- ],
- [
- -41.07585,
- -19.00567
- ],
- [
- -41.06507,
- -19.06342
- ],
- [
- -40.96877,
- -19.12726
- ],
- [
- -40.96158,
- -19.15102
- ],
- [
- -40.92996,
- -19.206
- ],
- [
- -40.94649,
- -19.22296
- ],
- [
- -40.94793,
- -19.24264
- ],
- [
- -40.92565,
- -19.26299
- ],
- [
- -40.94936,
- -19.2786
- ],
- [
- -40.92277,
- -19.31048
- ],
- [
- -40.94361,
- -19.35252
- ],
- [
- -40.93427,
- -19.381
- ],
- [
- -40.95727,
- -19.39184
- ],
- [
- -40.9738,
- -19.42641
- ],
- [
- -40.95439,
- -19.46165
- ],
- [
- -40.97883,
- -19.50298
- ],
- [
- -41.01332,
- -19.50298
- ],
- [
- -41.04638,
- -19.48333
- ],
- [
- -41.05429,
- -19.48401
- ],
- [
- -41.04135,
- -19.56664
- ],
- [
- -41.09238,
- -19.58966
- ],
- [
- -41.14627,
- -19.656
- ],
- [
- -41.16496,
- -19.65871
- ],
- [
- -41.17933,
- -19.6939
- ],
- [
- -41.19658,
- -19.74599
- ],
- [
- -41.16999,
- -19.80618
- ],
- [
- -41.18939,
- -19.82375
- ],
- [
- -41.18868,
- -19.88526
- ],
- [
- -41.21239,
- -19.89743
- ],
- [
- -41.22964,
- -19.90216
- ],
- [
- -41.24689,
- -19.93324
- ],
- [
- -41.25479,
- -19.92919
- ],
- [
- -41.26988,
- -19.93797
- ],
- [
- -41.30653,
- -19.93392
- ],
- [
- -41.31516,
- -19.96972
- ],
- [
- -41.3245,
- -19.97647
- ],
- [
- -41.313,
- -20.01226
- ],
- [
- -41.33672,
- -20.05548
- ],
- [
- -41.34822,
- -20.08653
- ],
- [
- -41.3554,
- -20.12094
- ],
- [
- -41.37768,
- -20.15805
- ],
- [
- -41.38702,
- -20.18638
- ],
- [
- -41.41074,
- -20.19448
- ],
- [
- -41.4208,
- -20.20257
- ],
- [
- -41.7636,
- -20.2046
- ],
- [
- -41.78516,
- -20.28483
- ],
- [
- -41.85055,
- -20.3246
- ],
- [
- -41.86349,
- -20.37513
- ],
- [
- -41.85127,
- -20.38187
- ],
- [
- -41.84337,
- -20.40949
- ],
- [
- -41.80887,
- -20.42498
- ],
- [
- -41.80672,
- -20.47211
- ],
- [
- -41.83115,
- -20.47885
- ],
- [
- -41.81103,
- -20.54212
- ],
- [
- -41.83115,
- -20.55086
- ],
- [
- -41.86205,
- -20.61814
- ],
- [
- -41.82109,
- -20.64437
- ],
- [
- -41.85343,
- -20.68068
- ],
- [
- -41.87139,
- -20.72102
- ],
- [
- -41.8678,
- -20.73849
- ],
- [
- -41.88002,
- -20.73984
- ],
- [
- -41.88289,
- -20.76739
- ],
- [
- -41.85415,
- -20.77478
- ],
- [
- -41.83331,
- -20.7983
- ],
- [
- -41.80887,
- -20.80905
- ],
- [
- -41.78444,
- -20.80569
- ],
- [
- -41.75138,
- -20.82382
- ],
- [
- -41.74707,
- -20.87487
- ],
- [
- -41.72335,
- -20.87554
- ],
- [
- -41.74132,
- -20.92723
- ],
- [
- -41.72335,
- -20.97757
- ],
- [
- -41.74347,
- -21.09763
- ],
- [
- -41.7291,
- -21.12579
- ],
- [
- -41.594,
- -21.16332
- ],
- [
- -41.57244,
- -21.18678
- ],
- [
- -41.49051,
- -21.18879
- ],
- [
- -41.48332,
- -21.20085
- ],
- [
- -41.43948,
- -21.22095
- ],
- [
- -41.41289,
- -21.20956
- ],
- [
- -41.34965,
- -21.21291
- ],
- [
- -41.27994,
- -21.2464
- ],
- [
- -41.24473,
- -21.23234
- ],
- [
- -41.17718,
- -21.25511
- ],
- [
- -41.09238,
- -21.2243
- ],
- [
- -41.04854,
- -21.25913
- ],
- [
- -41.01548,
- -21.25578
- ],
- [
- -41.00254,
- -21.28726
- ],
- [
- -40.94577,
- -21.31404
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Departamento de Estradas de Rodagem do Estado do Espírito Santo",
- "url": "https://der.es.gov.br"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "der-es",
- "license_url": "http://www.acessoainformacao.es.gov.br/DER-ES",
- "name": "DER-ES",
- "overlay": true,
- "type": "wms",
- "url": "http://portal.der.es.gov.br/geoserver/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=deres-ext:TRECHOINFO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -48.3148,
- -15.45953
- ],
- [
- -48.31647,
- -15.70744
- ],
- [
- -48.37636,
- -15.70412
- ],
- [
- -48.37636,
- -15.79064
- ],
- [
- -48.31647,
- -15.79396
- ],
- [
- -48.31813,
- -16.0868
- ],
- [
- -48.12845,
- -16.0868
- ],
- [
- -48.12845,
- -16.12673
- ],
- [
- -48.06689,
- -16.1284
- ],
- [
- -48.06522,
- -16.21159
- ],
- [
- -48.00366,
- -16.21325
- ],
- [
- -48.00532,
- -16.29478
- ],
- [
- -47.80899,
- -16.29312
- ],
- [
- -47.80899,
- -16.13006
- ],
- [
- -47.29153,
- -16.1284
- ],
- [
- -47.29153,
- -16.0685
- ],
- [
- -47.27656,
- -16.06684
- ],
- [
- -47.27822,
- -15.99695
- ],
- [
- -47.30983,
- -15.99862
- ],
- [
- -47.30983,
- -15.58598
- ],
- [
- -47.24661,
- -15.59264
- ],
- [
- -47.24827,
- -15.4978
- ],
- [
- -47.49102,
- -15.49441
- ],
- [
- -47.49619,
- -15.41128
- ],
- [
- -47.69086,
- -15.41294
- ],
- [
- -47.69252,
- -15.4978
- ],
- [
- -48.24825,
- -15.49946
- ],
- [
- -48.24803,
- -15.46183
- ],
- [
- -48.3148,
- -15.45953
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "GeoPortal DF",
- "url": "http://www.geoportal.segeth.df.gov.br/"
- },
- "country_code": "BR",
- "description": "Satellite imagery",
- "end_date": "2015",
- "icon": "http://www.geoportal.segeth.df.gov.br/static/dist/img/logo_geoportal.png",
- "id": "GeoPortal_DF_2015",
- "max_zoom": 22,
- "name": "GeoPortal DF 2015",
- "start_date": "2015",
- "type": "wms",
- "url": "https://www.geoservicos1.segeth.df.gov.br/arcgis/services/Imagens/FOTO_2015/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -48.27336,
- -16.04808
- ],
- [
- -48.21349,
- -15.64139
- ],
- [
- -48.0016,
- -15.54637
- ],
- [
- -47.80395,
- -15.55207
- ],
- [
- -47.50464,
- -15.62334
- ],
- [
- -47.48659,
- -15.97586
- ],
- [
- -47.7992,
- -16.02242
- ],
- [
- -47.95694,
- -16.05663
- ],
- [
- -48.27336,
- -16.04808
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "GeoPortal DF",
- "url": "http://www.geoportal.segeth.df.gov.br/"
- },
- "country_code": "BR",
- "description": "Satellite imagery",
- "end_date": "2016",
- "icon": "http://www.geoportal.segeth.df.gov.br/static/dist/img/logo_geoportal.png",
- "id": "GeoPortal_DF_2016",
- "max_zoom": 22,
- "name": "GeoPortal DF 2016",
- "start_date": "2016",
- "type": "wms",
- "url": "https://www.geoservicos1.segeth.df.gov.br/arcgis/services/Imagens/FOTO_2016/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -48.25141,
- -15.61285
- ],
- [
- -48.08404,
- -15.61516
- ],
- [
- -48.08404,
- -15.60131
- ],
- [
- -48.05172,
- -15.60361
- ],
- [
- -48.05172,
- -15.54244
- ],
- [
- -47.82087,
- -15.5459
- ],
- [
- -47.81972,
- -15.60131
- ],
- [
- -47.71814,
- -15.60246
- ],
- [
- -47.71814,
- -15.55975
- ],
- [
- -47.66759,
- -15.56043
- ],
- [
- -47.66717,
- -15.50807
- ],
- [
- -47.52307,
- -15.51127
- ],
- [
- -47.52422,
- -15.60592
- ],
- [
- -47.61195,
- -15.60708
- ],
- [
- -47.6131,
- -15.68557
- ],
- [
- -47.63619,
- -15.69134
- ],
- [
- -47.63734,
- -15.78137
- ],
- [
- -47.61656,
- -15.78022
- ],
- [
- -47.61772,
- -15.91181
- ],
- [
- -47.56347,
- -15.91411
- ],
- [
- -47.56231,
- -15.95336
- ],
- [
- -47.69852,
- -15.95336
- ],
- [
- -47.70083,
- -16.02377
- ],
- [
- -47.85204,
- -16.02262
- ],
- [
- -47.85088,
- -15.97644
- ],
- [
- -47.94207,
- -15.97644
- ],
- [
- -47.94207,
- -16.06186
- ],
- [
- -48.09674,
- -16.05955
- ],
- [
- -48.0979,
- -15.96836
- ],
- [
- -48.25372,
- -15.96606
- ],
- [
- -48.25141,
- -15.61285
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "GeoPortal DF",
- "url": "http://www.geoportal.segeth.df.gov.br/"
- },
- "country_code": "BR",
- "description": "Satellite imagery",
- "end_date": "2017",
- "icon": "http://www.geoportal.segeth.df.gov.br/static/dist/img/logo_geoportal.png",
- "id": "GeoPortal_DF_2017",
- "max_zoom": 20,
- "name": "GeoPortal DF 2017",
- "start_date": "2017",
- "type": "wms",
- "url": "https://www.geoservicos1.segeth.df.gov.br/arcgis/services/Imagens/PLEIADES_2017/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -48.3148,
- -15.45953
- ],
- [
- -48.31647,
- -15.70744
- ],
- [
- -48.37636,
- -15.70412
- ],
- [
- -48.37636,
- -15.79064
- ],
- [
- -48.31647,
- -15.79396
- ],
- [
- -48.31813,
- -16.0868
- ],
- [
- -48.12845,
- -16.0868
- ],
- [
- -48.12845,
- -16.12673
- ],
- [
- -48.06689,
- -16.1284
- ],
- [
- -48.06522,
- -16.21159
- ],
- [
- -48.00366,
- -16.21325
- ],
- [
- -48.00532,
- -16.29478
- ],
- [
- -47.80899,
- -16.29312
- ],
- [
- -47.80899,
- -16.13006
- ],
- [
- -47.29153,
- -16.1284
- ],
- [
- -47.29153,
- -16.0685
- ],
- [
- -47.27656,
- -16.06684
- ],
- [
- -47.27822,
- -15.99695
- ],
- [
- -47.30983,
- -15.99862
- ],
- [
- -47.30983,
- -15.58598
- ],
- [
- -47.24661,
- -15.59264
- ],
- [
- -47.24827,
- -15.4978
- ],
- [
- -47.49102,
- -15.49441
- ],
- [
- -47.49619,
- -15.41128
- ],
- [
- -47.69086,
- -15.41294
- ],
- [
- -47.69252,
- -15.4978
- ],
- [
- -48.24825,
- -15.49946
- ],
- [
- -48.24803,
- -15.46183
- ],
- [
- -48.3148,
- -15.45953
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "GeoPortal DF",
- "url": "http://www.geoportal.segeth.df.gov.br/"
- },
- "country_code": "BR",
- "description": "Satellite imagery",
- "end_date": "2018",
- "icon": "http://www.geoportal.segeth.df.gov.br/static/dist/img/logo_geoportal.png",
- "id": "GeoPortal_DF_2018",
- "max_zoom": 22,
- "name": "GeoPortal DF 2018",
- "privacy_policy_url": "https://wiki.openstreetmap.org/wiki/Pt:GeoPortalDFBrasilia",
- "start_date": "2018",
- "type": "wmts",
- "url": "wmts:https://www.geoservicos1.segeth.df.gov.br/arcgis/rest/services/Imagens/GEOEYE_TERRACAP_2018/ImageServer/WMTS/1.0.0/WMTSCapabilities.xml"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BC250_Aglomerado_Rural",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BC250-Aglomerado Rural Isolado",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Aglomerado_Rural_Isolado_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BC250_Pista_Pouso",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BC250-Pista de Pouso",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Pista_Ponto_Pouso_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BC250_Rios_Drenagem",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BC250-Rios Drenagem",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Drenagem_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BC250_Rodoviario",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BC250-Trecho Rodoviario",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Rodoviario_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image/png&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BC250_Terra_Indegina",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BC250-Terra Indigena",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Terra_Indigena_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BC250_Uso_Sustentavel",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BC250-Unidade de Uso Sistentável - APA",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Unidade_Uso_Sustentavel_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BC250_Villa",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BC250-Villa",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Vila_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BCIM_Gerador_Eletrica",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BCIM-Estações Geradora de Energia Elétrica",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Est_Gerad_Energia_Eletrica_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:5396",
- "EPSG:22525"
- ],
- "country_code": "BR",
- "id": "IBGE_BCIM_Municipio",
- "license_url": "http://dados.gov.br",
- "name": "IBGE-BCIM-Município",
- "overlay": true,
- "type": "wms",
- "url": "https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Municipio_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -48.2444,
- -16.0508
- ],
- [
- -48.2444,
- -15.5005
- ],
- [
- -47.5695,
- -15.5005
- ],
- [
- -47.5695,
- -16.0508
- ],
- [
- -48.2444,
- -16.0508
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": false,
- "text": "IBGE"
- },
- "country_code": "BR",
- "description": "Addresses data from IBGE",
- "id": "IBGE_DF_Addresses",
- "max_zoom": 20,
- "name": "IBGE Distrito Federal",
- "overlay": true,
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/wille/cirnnxni1000jg8nfppc8g7pm/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -38.48974,
- -12.81113
- ],
- [
- -38.54485,
- -13.01392
- ],
- [
- -38.47755,
- -13.03466
- ],
- [
- -38.33473,
- -12.94685
- ],
- [
- -38.30006,
- -12.90669
- ],
- [
- -38.33954,
- -12.90435
- ],
- [
- -38.35482,
- -12.83021
- ],
- [
- -38.38091,
- -12.82184
- ],
- [
- -38.40717,
- -12.86754
- ],
- [
- -38.46537,
- -12.81599
- ],
- [
- -38.48974,
- -12.81113
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "country_code": "BR",
- "description": "Streets geometry and names of Salvador, Bahia. Source: Faces de Logradouro - IBGE.",
- "id": "IBGE_Salvador_Streets",
- "max_zoom": 20,
- "name": "Nomes de Ruas IBGE Salvador-BA",
- "overlay": true,
- "type": "tms",
- "url": "https://api.mapbox.com/styles/v1/wille/cj8lp78dn62wl2rquim47qo0g/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -69.94793,
- -4.23168
- ],
- [
- -69.45659,
- -1.49119
- ],
- [
- -69.3973,
- -1.36508
- ],
- [
- -69.42989,
- -1.22173
- ],
- [
- -69.39523,
- -1.12555
- ],
- [
- -69.44292,
- -1.03351
- ],
- [
- -69.41861,
- -0.99827
- ],
- [
- -69.528,
- -0.92514
- ],
- [
- -69.52577,
- -0.86807
- ],
- [
- -69.62491,
- -0.74667
- ],
- [
- -69.56179,
- -0.63692
- ],
- [
- -69.60783,
- -0.5008
- ],
- [
- -69.8446,
- -0.33732
- ],
- [
- -69.92054,
- -0.32573
- ],
- [
- -70.04323,
- -0.18998
- ],
- [
- -70.04302,
- 0.56359
- ],
- [
- -69.80272,
- 0.57162
- ],
- [
- -69.6711,
- 0.66759
- ],
- [
- -69.60529,
- 0.61328
- ],
- [
- -69.59701,
- 0.6542
- ],
- [
- -69.48002,
- 0.73577
- ],
- [
- -69.35277,
- 0.61416
- ],
- [
- -69.28914,
- 0.64997
- ],
- [
- -69.29484,
- 0.60389
- ],
- [
- -69.19975,
- 0.60591
- ],
- [
- -69.19425,
- 0.64982
- ],
- [
- -69.11563,
- 0.64484
- ],
- [
- -69.19001,
- 0.74056
- ],
- [
- -69.14881,
- 0.76751
- ],
- [
- -69.13576,
- 0.87204
- ],
- [
- -69.18846,
- 0.91324
- ],
- [
- -69.1646,
- 0.94156
- ],
- [
- -69.21679,
- 0.97245
- ],
- [
- -69.19773,
- 0.99974
- ],
- [
- -69.24494,
- 1.05655
- ],
- [
- -69.37641,
- 1.08794
- ],
- [
- -69.42312,
- 1.04265
- ],
- [
- -69.60989,
- 1.09826
- ],
- [
- -69.67718,
- 1.06994
- ],
- [
- -69.70963,
- 1.11817
- ],
- [
- -69.84266,
- 1.07272
- ],
- [
- -69.83972,
- 1.71893
- ],
- [
- -69.78236,
- 1.69244
- ],
- [
- -69.53464,
- 1.77691
- ],
- [
- -69.39109,
- 1.72935
- ],
- [
- -68.1645,
- 1.72945
- ],
- [
- -68.19207,
- 1.7797
- ],
- [
- -68.23954,
- 1.77044
- ],
- [
- -68.22688,
- 1.82918
- ],
- [
- -68.28555,
- 1.83084
- ],
- [
- -68.19583,
- 2.03479
- ],
- [
- -68.18033,
- 1.9767
- ],
- [
- -68.14417,
- 1.97854
- ],
- [
- -68.09043,
- 1.89774
- ],
- [
- -67.90162,
- 1.81165
- ],
- [
- -67.76942,
- 2.00924
- ],
- [
- -67.55095,
- 2.04769
- ],
- [
- -67.49519,
- 2.16312
- ],
- [
- -67.39404,
- 2.22894
- ],
- [
- -67.32672,
- 2.06387
- ],
- [
- -67.33083,
- 1.94158
- ],
- [
- -67.22831,
- 1.84127
- ],
- [
- -67.15384,
- 1.8315
- ],
- [
- -67.15922,
- 1.67504
- ],
- [
- -67.08017,
- 1.38546
- ],
- [
- -67.13923,
- 1.32002
- ],
- [
- -67.08675,
- 1.16704
- ],
- [
- -66.85119,
- 1.22896
- ],
- [
- -66.31032,
- 0.74494
- ],
- [
- -66.19737,
- 0.78161
- ],
- [
- -66.07783,
- 0.76174
- ],
- [
- -66.07024,
- 0.8123
- ],
- [
- -65.96712,
- 0.81511
- ],
- [
- -65.88369,
- 0.94159
- ],
- [
- -65.77261,
- 0.95859
- ],
- [
- -65.7421,
- 1.00125
- ],
- [
- -65.58894,
- 1.00471
- ],
- [
- -65.49624,
- 0.87415
- ],
- [
- -65.60623,
- 0.70748
- ],
- [
- -65.54116,
- 0.64881
- ],
- [
- -65.44499,
- 0.68921
- ],
- [
- -65.39213,
- 0.75692
- ],
- [
- -65.41198,
- 0.82415
- ],
- [
- -65.32734,
- 0.93596
- ],
- [
- -65.21302,
- 0.90282
- ],
- [
- -65.1749,
- 0.94131
- ],
- [
- -65.15831,
- 1.1246
- ],
- [
- -65.07232,
- 1.15303
- ],
- [
- -65.06317,
- 1.11205
- ],
- [
- -65.01361,
- 1.10905
- ],
- [
- -64.97445,
- 1.20288
- ],
- [
- -64.90439,
- 1.25153
- ],
- [
- -64.86966,
- 1.22713
- ],
- [
- -64.80053,
- 1.31527
- ],
- [
- -64.74446,
- 1.22569
- ],
- [
- -64.5789,
- 1.34041
- ],
- [
- -64.52608,
- 1.44322
- ],
- [
- -64.43586,
- 1.47006
- ],
- [
- -64.3939,
- 1.52901
- ],
- [
- -64.35111,
- 1.52921
- ],
- [
- -64.34777,
- 1.49508
- ],
- [
- -64.41019,
- 1.40301
- ],
- [
- -64.33791,
- 1.36134
- ],
- [
- -64.3136,
- 1.45617
- ],
- [
- -64.19707,
- 1.52071
- ],
- [
- -64.0735,
- 1.64902
- ],
- [
- -64.05781,
- 1.92899
- ],
- [
- -63.97219,
- 1.99194
- ],
- [
- -63.83555,
- 1.96644
- ],
- [
- -63.71155,
- 2.04645
- ],
- [
- -63.66501,
- 2.01861
- ],
- [
- -63.6268,
- 2.11222
- ],
- [
- -63.56474,
- 2.13571
- ],
- [
- -63.44059,
- 2.126
- ],
- [
- -63.36742,
- 2.26864
- ],
- [
- -63.37088,
- 2.41121
- ],
- [
- -63.42123,
- 2.45102
- ],
- [
- -63.46036,
- 2.39684
- ],
- [
- -63.56398,
- 2.44573
- ],
- [
- -63.76805,
- 2.43994
- ],
- [
- -63.84358,
- 2.4916
- ],
- [
- -64.01914,
- 2.46135
- ],
- [
- -64.0573,
- 2.49752
- ],
- [
- -63.98033,
- 2.7237
- ],
- [
- -64.07709,
- 2.87262
- ],
- [
- -64.07156,
- 2.92142
- ],
- [
- -64.12349,
- 2.99048
- ],
- [
- -64.15754,
- 2.98243
- ],
- [
- -64.14592,
- 3.03459
- ],
- [
- -64.22642,
- 3.12356
- ],
- [
- -64.19795,
- 3.20121
- ],
- [
- -64.2444,
- 3.43036
- ],
- [
- -64.17437,
- 3.56841
- ],
- [
- -64.281,
- 3.70928
- ],
- [
- -64.54357,
- 3.85713
- ],
- [
- -64.72239,
- 4.11775
- ],
- [
- -64.80203,
- 4.17422
- ],
- [
- -64.81123,
- 4.27048
- ],
- [
- -64.69522,
- 4.25323
- ],
- [
- -64.623,
- 4.135
- ],
- [
- -64.5565,
- 4.10529
- ],
- [
- -64.164,
- 4.127
- ],
- [
- -63.964,
- 3.868
- ],
- [
- -63.928,
- 3.925
- ],
- [
- -63.85,
- 3.95
- ],
- [
- -63.682,
- 3.908
- ],
- [
- -63.676,
- 4.019
- ],
- [
- -63.591,
- 3.886
- ],
- [
- -63.497,
- 3.84
- ],
- [
- -63.489,
- 3.874
- ],
- [
- -63.434,
- 3.865
- ],
- [
- -63.428,
- 3.977
- ],
- [
- -63.204,
- 3.952
- ],
- [
- -63.226,
- 3.836
- ],
- [
- -63.103,
- 3.794
- ],
- [
- -63.059,
- 3.748
- ],
- [
- -63.081,
- 3.694
- ],
- [
- -62.96,
- 3.608
- ],
- [
- -62.835,
- 3.739
- ],
- [
- -62.743,
- 3.674
- ],
- [
- -62.729,
- 3.805
- ],
- [
- -62.788,
- 3.894
- ],
- [
- -62.753,
- 4.032
- ],
- [
- -62.555,
- 4.019
- ],
- [
- -62.552,
- 4.109
- ],
- [
- -62.437,
- 4.183
- ],
- [
- -62.14308,
- 4.07768
- ],
- [
- -62.071,
- 4.126
- ],
- [
- -62.076,
- 4.154
- ],
- [
- -61.982,
- 4.181
- ],
- [
- -61.93175,
- 4.12009
- ],
- [
- -61.92213,
- 4.16126
- ],
- [
- -61.824,
- 4.164
- ],
- [
- -61.802,
- 4.229
- ],
- [
- -61.724,
- 4.27
- ],
- [
- -61.56,
- 4.252
- ],
- [
- -61.508,
- 4.322
- ],
- [
- -61.513,
- 4.406
- ],
- [
- -61.288,
- 4.458
- ],
- [
- -61.323,
- 4.535
- ],
- [
- -61.217,
- 4.536
- ],
- [
- -61.14559,
- 4.48016
- ],
- [
- -61.095,
- 4.522
- ],
- [
- -60.994,
- 4.519
- ],
- [
- -60.932,
- 4.587
- ],
- [
- -60.949,
- 4.653
- ],
- [
- -60.899,
- 4.717
- ],
- [
- -60.751,
- 4.756
- ],
- [
- -60.591,
- 4.927
- ],
- [
- -60.661,
- 5.164
- ],
- [
- -60.73197,
- 5.21203
- ],
- [
- -60.434,
- 5.182
- ],
- [
- -60.20825,
- 5.28346
- ],
- [
- -60.172,
- 5.227
- ],
- [
- -60.135,
- 5.249
- ],
- [
- -60.094,
- 5.14
- ],
- [
- -59.96984,
- 5.06334
- ],
- [
- -60.02524,
- 4.7065
- ],
- [
- -60.0705,
- 4.61688
- ],
- [
- -60.15725,
- 4.57247
- ],
- [
- -60.16114,
- 4.51773
- ],
- [
- -59.79503,
- 4.46554
- ],
- [
- -59.66948,
- 4.37629
- ],
- [
- -59.7319,
- 4.28587
- ],
- [
- -59.73069,
- 4.18076
- ],
- [
- -59.61818,
- 4.13166
- ],
- [
- -59.65406,
- 4.06943
- ],
- [
- -59.58417,
- 3.96851
- ],
- [
- -59.5153,
- 3.94493
- ],
- [
- -59.59279,
- 3.88538
- ],
- [
- -59.59631,
- 3.79386
- ],
- [
- -59.66555,
- 3.78126
- ],
- [
- -59.66842,
- 3.70277
- ],
- [
- -59.86728,
- 3.57776
- ],
- [
- -59.80205,
- 3.50156
- ],
- [
- -59.8408,
- 3.43174
- ],
- [
- -59.80488,
- 3.35695
- ],
- [
- -59.907,
- 3.212
- ],
- [
- -59.98944,
- 2.88185
- ],
- [
- -59.99,
- 2.686
- ],
- [
- -59.895,
- 2.482
- ],
- [
- -59.89872,
- 2.36245
- ],
- [
- -59.72315,
- 2.27614
- ],
- [
- -59.751,
- 1.859
- ],
- [
- -59.677,
- 1.839
- ],
- [
- -59.663,
- 1.871
- ],
- [
- -59.69,
- 1.757
- ],
- [
- -59.539,
- 1.723
- ],
- [
- -59.381,
- 1.507
- ],
- [
- -59.329,
- 1.514
- ],
- [
- -59.327,
- 1.464
- ],
- [
- -59.284,
- 1.45
- ],
- [
- -59.253,
- 1.389
- ],
- [
- -58.978,
- 1.302
- ],
- [
- -58.918,
- 1.317
- ],
- [
- -58.886,
- 1.261
- ],
- [
- -58.912,
- 1.239
- ],
- [
- -58.82512,
- 1.17127
- ],
- [
- -58.73956,
- 1.1999
- ],
- [
- -58.69456,
- 1.29732
- ],
- [
- -58.49622,
- 1.26796
- ],
- [
- -58.45787,
- 1.37145
- ],
- [
- -58.50511,
- 1.40317
- ],
- [
- -58.50873,
- 1.46295
- ],
- [
- -58.38559,
- 1.46999
- ],
- [
- -58.39472,
- 1.52651
- ],
- [
- -58.32237,
- 1.59702
- ],
- [
- -58.236,
- 1.54669
- ],
- [
- -58.16064,
- 1.56011
- ],
- [
- -58.12942,
- 1.4989
- ],
- [
- -58.00423,
- 1.50303
- ],
- [
- -57.99009,
- 1.65844
- ],
- [
- -57.85206,
- 1.66782
- ],
- [
- -57.77431,
- 1.72973
- ],
- [
- -57.70509,
- 1.73093
- ],
- [
- -57.65042,
- 1.68237
- ],
- [
- -57.5376,
- 1.7005
- ],
- [
- -57.50187,
- 1.78609
- ],
- [
- -57.43776,
- 1.82681
- ],
- [
- -57.43343,
- 1.90598
- ],
- [
- -57.36768,
- 1.92372
- ],
- [
- -57.36912,
- 1.95638
- ],
- [
- -57.30712,
- 1.99665
- ],
- [
- -57.22923,
- 1.93759
- ],
- [
- -57.08668,
- 2.02644
- ],
- [
- -57.01421,
- 1.91489
- ],
- [
- -56.91971,
- 1.93036
- ],
- [
- -56.79793,
- 1.85336
- ],
- [
- -56.72096,
- 1.92582
- ],
- [
- -56.62145,
- 1.94588
- ],
- [
- -56.57976,
- 1.90588
- ],
- [
- -56.45126,
- 1.95614
- ],
- [
- -56.24404,
- 1.87808
- ],
- [
- -56.1709,
- 1.90048
- ],
- [
- -56.11762,
- 1.85097
- ],
- [
- -55.95638,
- 1.84509
- ],
- [
- -55.90385,
- 1.88803
- ],
- [
- -55.93635,
- 1.98647
- ],
- [
- -55.9031,
- 2.04108
- ],
- [
- -56.00307,
- 2.1676
- ],
- [
- -56.05505,
- 2.18464
- ],
- [
- -56.04288,
- 2.22778
- ],
- [
- -56.13887,
- 2.26574
- ],
- [
- -56.09012,
- 2.37228
- ],
- [
- -56.02181,
- 2.34247
- ],
- [
- -55.97052,
- 2.52931
- ],
- [
- -55.76663,
- 2.45524
- ],
- [
- -55.71028,
- 2.39917
- ],
- [
- -55.49971,
- 2.44324
- ],
- [
- -55.38533,
- 2.41836
- ],
- [
- -55.32019,
- 2.51537
- ],
- [
- -55.23474,
- 2.50338
- ],
- [
- -55.1234,
- 2.56762
- ],
- [
- -55.10302,
- 2.52564
- ],
- [
- -54.95424,
- 2.58359
- ],
- [
- -54.86846,
- 2.43989
- ],
- [
- -54.68917,
- 2.45389
- ],
- [
- -54.68861,
- 2.32472
- ],
- [
- -54.54667,
- 2.31833
- ],
- [
- -54.53778,
- 2.26556
- ],
- [
- -54.46861,
- 2.21306
- ],
- [
- -54.24917,
- 2.14667
- ],
- [
- -54.18056,
- 2.1725
- ],
- [
- -54.11083,
- 2.11222
- ],
- [
- -54.06139,
- 2.19167
- ],
- [
- -53.94083,
- 2.21917
- ],
- [
- -53.93194,
- 2.27194
- ],
- [
- -53.88667,
- 2.26778
- ],
- [
- -53.745,
- 2.37389
- ],
- [
- -53.73389,
- 2.31222
- ],
- [
- -53.52972,
- 2.24917
- ],
- [
- -53.45861,
- 2.2575
- ],
- [
- -53.32833,
- 2.35333
- ],
- [
- -53.21667,
- 2.25333
- ],
- [
- -53.27899,
- 2.18603
- ],
- [
- -53.11861,
- 2.2225
- ],
- [
- -52.99472,
- 2.17528
- ],
- [
- -52.90972,
- 2.19583
- ],
- [
- -52.84722,
- 2.28556
- ],
- [
- -52.67528,
- 2.37389
- ],
- [
- -52.59444,
- 2.47389
- ],
- [
- -52.54028,
- 2.57028
- ],
- [
- -52.56417,
- 2.63944
- ],
- [
- -52.43944,
- 2.87778
- ],
- [
- -52.39583,
- 2.90222
- ],
- [
- -52.33187,
- 3.16938
- ],
- [
- -52.21472,
- 3.26833
- ],
- [
- -51.97104,
- 3.70696
- ],
- [
- -51.92148,
- 3.72422
- ],
- [
- -51.922,
- 3.7792
- ],
- [
- -51.79731,
- 3.88888
- ],
- [
- -51.77783,
- 3.97406
- ],
- [
- -51.65867,
- 4.05276
- ],
- [
- -51.61325,
- 4.17437
- ],
- [
- -51.63716,
- 4.50834
- ],
- [
- -51.49427,
- 4.67426
- ],
- [
- -51.11466,
- 4.42286
- ],
- [
- -50.94232,
- 4.20165
- ],
- [
- -50.85475,
- 3.92491
- ],
- [
- -50.85507,
- 3.45573
- ],
- [
- -50.75331,
- 2.94057
- ],
- [
- -50.29908,
- 2.33079
- ],
- [
- -49.73896,
- 1.79143
- ],
- [
- -48.23746,
- -0.07449
- ],
- [
- -44.84728,
- -1.07246
- ],
- [
- -43.54602,
- -2.04705
- ],
- [
- -43.24389,
- -2.12403
- ],
- [
- -42.78189,
- -2.33053
- ],
- [
- -41.78084,
- -2.51859
- ],
- [
- -41.5085,
- -2.68486
- ],
- [
- -40.66365,
- -2.63829
- ],
- [
- -40.50396,
- -2.57531
- ],
- [
- -39.8907,
- -2.65328
- ],
- [
- -39.15187,
- -3.04444
- ],
- [
- -38.57151,
- -3.48047
- ],
- [
- -38.34306,
- -3.54434
- ],
- [
- -38.21421,
- -3.74103
- ],
- [
- -38.12555,
- -3.80544
- ],
- [
- -37.90182,
- -4.07265
- ],
- [
- -37.77934,
- -4.18046
- ],
- [
- -37.63401,
- -4.24454
- ],
- [
- -37.51218,
- -4.41535
- ],
- [
- -37.22122,
- -4.51045
- ],
- [
- -37.07874,
- -4.71355
- ],
- [
- -36.91716,
- -4.71372
- ],
- [
- -36.62299,
- -4.85815
- ],
- [
- -36.18969,
- -4.88505
- ],
- [
- -35.93627,
- -4.83327
- ],
- [
- -35.56471,
- -4.90758
- ],
- [
- -35.33677,
- -4.99239
- ],
- [
- -35.17659,
- -5.12497
- ],
- [
- -34.79469,
- -6.33583
- ],
- [
- -34.71587,
- -6.74615
- ],
- [
- -34.62306,
- -6.90323
- ],
- [
- -34.59953,
- -7.11133
- ],
- [
- -34.64374,
- -7.98735
- ],
- [
- -34.81497,
- -8.62472
- ],
- [
- -35.0253,
- -9.13761
- ],
- [
- -35.55848,
- -9.81261
- ],
- [
- -35.69663,
- -9.90026
- ],
- [
- -35.96401,
- -10.31281
- ],
- [
- -36.06155,
- -10.37447
- ],
- [
- -36.26639,
- -10.64593
- ],
- [
- -36.61764,
- -10.81082
- ],
- [
- -36.78725,
- -10.95151
- ],
- [
- -36.99511,
- -11.29602
- ],
- [
- -37.11368,
- -11.41261
- ],
- [
- -37.46002,
- -12.10275
- ],
- [
- -37.89668,
- -12.75844
- ],
- [
- -38.22146,
- -13.09717
- ],
- [
- -38.61146,
- -13.26537
- ],
- [
- -38.85337,
- -14.65508
- ],
- [
- -38.74388,
- -15.60089
- ],
- [
- -38.66456,
- -15.74741
- ],
- [
- -38.64697,
- -15.88327
- ],
- [
- -38.8013,
- -16.24838
- ],
- [
- -38.92933,
- -16.80775
- ],
- [
- -38.53193,
- -17.80026
- ],
- [
- -38.49171,
- -18.0046
- ],
- [
- -38.53661,
- -18.09683
- ],
- [
- -38.67053,
- -18.16855
- ],
- [
- -39.35288,
- -18.10892
- ],
- [
- -39.4675,
- -18.30359
- ],
- [
- -39.54529,
- -18.78548
- ],
- [
- -39.49227,
- -19.40134
- ],
- [
- -39.63477,
- -19.74403
- ],
- [
- -39.86353,
- -19.88681
- ],
- [
- -40.17827,
- -20.75426
- ],
- [
- -40.81442,
- -21.67672
- ],
- [
- -40.76948,
- -21.87786
- ],
- [
- -40.81442,
- -22.09702
- ],
- [
- -41.5086,
- -22.52638
- ],
- [
- -41.59666,
- -22.83627
- ],
- [
- -41.79292,
- -23.08823
- ],
- [
- -41.91484,
- -23.18527
- ],
- [
- -43.19603,
- -23.26703
- ],
- [
- -44.07735,
- -23.40501
- ],
- [
- -45.13508,
- -24.12014
- ],
- [
- -46.61368,
- -24.67512
- ],
- [
- -47.85376,
- -25.47012
- ],
- [
- -48.2801,
- -26.23036
- ],
- [
- -48.34897,
- -26.75081
- ],
- [
- -48.11076,
- -27.28208
- ],
- [
- -48.21148,
- -27.85592
- ],
- [
- -48.40713,
- -28.43255
- ],
- [
- -48.68615,
- -28.76016
- ],
- [
- -48.9156,
- -28.86305
- ],
- [
- -49.1579,
- -29.02871
- ],
- [
- -49.52748,
- -29.42005
- ],
- [
- -49.82565,
- -29.86559
- ],
- [
- -50.17344,
- -30.64282
- ],
- [
- -50.60441,
- -31.24135
- ],
- [
- -51.18785,
- -31.77646
- ],
- [
- -51.74211,
- -32.10539
- ],
- [
- -51.89236,
- -32.29596
- ],
- [
- -52.06117,
- -32.38504
- ],
- [
- -52.27087,
- -32.92102
- ],
- [
- -52.45986,
- -33.25369
- ],
- [
- -52.61505,
- -33.42291
- ],
- [
- -53.18109,
- -33.86891
- ],
- [
- -53.43053,
- -33.73947
- ],
- [
- -53.43951,
- -33.69347
- ],
- [
- -53.53228,
- -33.6888
- ],
- [
- -53.51819,
- -33.15342
- ],
- [
- -53.44438,
- -33.05296
- ],
- [
- -53.24468,
- -32.93489
- ],
- [
- -53.31008,
- -32.91875
- ],
- [
- -53.29454,
- -32.89931
- ],
- [
- -53.18496,
- -32.85043
- ],
- [
- -53.14569,
- -32.79202
- ],
- [
- -53.0858,
- -32.78835
- ],
- [
- -53.07558,
- -32.74088
- ],
- [
- -53.24992,
- -32.6041
- ],
- [
- -53.39137,
- -32.58573
- ],
- [
- -53.46423,
- -32.48446
- ],
- [
- -53.58321,
- -32.45192
- ],
- [
- -53.74599,
- -32.07848
- ],
- [
- -53.83375,
- -32.05524
- ],
- [
- -53.84978,
- -32.00064
- ],
- [
- -53.96073,
- -31.95532
- ],
- [
- -53.96972,
- -31.91765
- ],
- [
- -54.10019,
- -31.92825
- ],
- [
- -54.4549,
- -31.65295
- ],
- [
- -54.4528,
- -31.59959
- ],
- [
- -54.58676,
- -31.45656
- ],
- [
- -54.8367,
- -31.442
- ],
- [
- -54.88623,
- -31.3773
- ],
- [
- -54.94087,
- -31.38068
- ],
- [
- -55.00723,
- -31.26692
- ],
- [
- -55.07446,
- -31.33216
- ],
- [
- -55.24003,
- -31.26062
- ],
- [
- -55.29118,
- -31.14226
- ],
- [
- -55.34037,
- -31.13144
- ],
- [
- -55.34981,
- -31.03922
- ],
- [
- -55.42306,
- -31.01823
- ],
- [
- -55.57742,
- -30.83309
- ],
- [
- -55.65834,
- -30.864
- ],
- [
- -55.66621,
- -30.95395
- ],
- [
- -55.723,
- -30.943
- ],
- [
- -55.727,
- -30.979
- ],
- [
- -55.882,
- -31.077
- ],
- [
- -56.00989,
- -31.08267
- ],
- [
- -56.02241,
- -30.78565
- ],
- [
- -56.12508,
- -30.73871
- ],
- [
- -56.17074,
- -30.61517
- ],
- [
- -56.26095,
- -30.58509
- ],
- [
- -56.29193,
- -30.51967
- ],
- [
- -56.38177,
- -30.49956
- ],
- [
- -56.46126,
- -30.38486
- ],
- [
- -56.54706,
- -30.35946
- ],
- [
- -56.54115,
- -30.31291
- ],
- [
- -56.6187,
- -30.30054
- ],
- [
- -56.64628,
- -30.20346
- ],
- [
- -56.77662,
- -30.1633
- ],
- [
- -56.80777,
- -30.10301
- ],
- [
- -57.07113,
- -30.08671
- ],
- [
- -57.22081,
- -30.28928
- ],
- [
- -57.31303,
- -30.25785
- ],
- [
- -57.39229,
- -30.30474
- ],
- [
- -57.46574,
- -30.26589
- ],
- [
- -57.52431,
- -30.28569
- ],
- [
- -57.56087,
- -30.21134
- ],
- [
- -57.64744,
- -30.19483
- ],
- [
- -57.48047,
- -30.12315
- ],
- [
- -57.33713,
- -29.99284
- ],
- [
- -57.294,
- -29.831
- ],
- [
- -57.121,
- -29.765
- ],
- [
- -56.89888,
- -29.53179
- ],
- [
- -56.81905,
- -29.48816
- ],
- [
- -56.76618,
- -29.37768
- ],
- [
- -56.70164,
- -29.35913
- ],
- [
- -56.59315,
- -29.12516
- ],
- [
- -56.418,
- -29.075
- ],
- [
- -56.40775,
- -28.9748
- ],
- [
- -56.29995,
- -28.89614
- ],
- [
- -56.29652,
- -28.8027
- ],
- [
- -56.17858,
- -28.75922
- ],
- [
- -56.00984,
- -28.60718
- ],
- [
- -56.01249,
- -28.50873
- ],
- [
- -55.88357,
- -28.47923
- ],
- [
- -55.87739,
- -28.36159
- ],
- [
- -55.75157,
- -28.37095
- ],
- [
- -55.69433,
- -28.42204
- ],
- [
- -55.67047,
- -28.33218
- ],
- [
- -55.77415,
- -28.27414
- ],
- [
- -55.7757,
- -28.24481
- ],
- [
- -55.63167,
- -28.17719
- ],
- [
- -55.60747,
- -28.11604
- ],
- [
- -55.55957,
- -28.16523
- ],
- [
- -55.4952,
- -28.07682
- ],
- [
- -55.44611,
- -28.09787
- ],
- [
- -55.368,
- -28.029
- ],
- [
- -55.38299,
- -27.97948
- ],
- [
- -55.343,
- -27.972
- ],
- [
- -55.32706,
- -27.92664
- ],
- [
- -55.26574,
- -27.92969
- ],
- [
- -55.196,
- -27.856
- ],
- [
- -55.133,
- -27.897
- ],
- [
- -55.106,
- -27.846
- ],
- [
- -55.035,
- -27.858
- ],
- [
- -55.081,
- -27.779
- ],
- [
- -54.936,
- -27.772
- ],
- [
- -54.90617,
- -27.63871
- ],
- [
- -54.85,
- -27.624
- ],
- [
- -54.814,
- -27.533
- ],
- [
- -54.775,
- -27.586
- ],
- [
- -54.67926,
- -27.57394
- ],
- [
- -54.67709,
- -27.508
- ],
- [
- -54.621,
- -27.541
- ],
- [
- -54.574,
- -27.453
- ],
- [
- -54.5246,
- -27.5059
- ],
- [
- -54.444,
- -27.472
- ],
- [
- -54.47081,
- -27.42674
- ],
- [
- -54.41,
- -27.405
- ],
- [
- -54.35466,
- -27.46528
- ],
- [
- -54.34067,
- -27.40311
- ],
- [
- -54.28484,
- -27.44819
- ],
- [
- -54.261,
- -27.397
- ],
- [
- -54.21736,
- -27.38603
- ],
- [
- -54.172,
- -27.254
- ],
- [
- -54.15619,
- -27.29619
- ],
- [
- -54.08872,
- -27.30149
- ],
- [
- -54.01026,
- -27.19978
- ],
- [
- -53.96219,
- -27.19698
- ],
- [
- -53.95195,
- -27.15169
- ],
- [
- -53.79879,
- -27.14629
- ],
- [
- -53.80233,
- -27.04028
- ],
- [
- -53.76087,
- -27.06543
- ],
- [
- -53.78585,
- -27.02674
- ],
- [
- -53.7473,
- -27.03218
- ],
- [
- -53.7092,
- -26.93414
- ],
- [
- -53.67125,
- -26.94222
- ],
- [
- -53.69684,
- -26.86015
- ],
- [
- -53.66059,
- -26.85814
- ],
- [
- -53.75814,
- -26.72045
- ],
- [
- -53.7205,
- -26.65099
- ],
- [
- -53.75864,
- -26.64113
- ],
- [
- -53.63739,
- -26.24968
- ],
- [
- -53.742,
- -26.108
- ],
- [
- -53.73409,
- -26.04333
- ],
- [
- -53.83619,
- -25.97166
- ],
- [
- -53.82214,
- -25.79377
- ],
- [
- -53.89113,
- -25.62286
- ],
- [
- -53.94895,
- -25.6117
- ],
- [
- -53.95638,
- -25.64628
- ],
- [
- -54.01,
- -25.567
- ],
- [
- -54.07592,
- -25.55766
- ],
- [
- -54.098,
- -25.619
- ],
- [
- -54.099,
- -25.495
- ],
- [
- -54.206,
- -25.541
- ],
- [
- -54.178,
- -25.584
- ],
- [
- -54.23,
- -25.562
- ],
- [
- -54.25,
- -25.597
- ],
- [
- -54.28,
- -25.556
- ],
- [
- -54.38395,
- -25.59747
- ],
- [
- -54.43288,
- -25.69756
- ],
- [
- -54.4927,
- -25.6181
- ],
- [
- -54.59354,
- -25.59275
- ],
- [
- -54.61941,
- -25.45312
- ],
- [
- -54.4295,
- -25.15915
- ],
- [
- -54.43548,
- -24.94769
- ],
- [
- -54.32437,
- -24.66059
- ],
- [
- -54.32714,
- -24.47073
- ],
- [
- -54.25877,
- -24.36377
- ],
- [
- -54.34537,
- -24.14705
- ],
- [
- -54.28223,
- -24.07336
- ],
- [
- -54.43984,
- -23.90446
- ],
- [
- -54.66978,
- -23.81262
- ],
- [
- -54.70533,
- -23.86452
- ],
- [
- -54.89,
- -23.898
- ],
- [
- -54.924,
- -23.959
- ],
- [
- -55.06223,
- -23.99335
- ],
- [
- -55.107,
- -23.961
- ],
- [
- -55.22907,
- -24.01383
- ],
- [
- -55.30415,
- -23.96504
- ],
- [
- -55.34542,
- -23.99458
- ],
- [
- -55.41423,
- -23.9645
- ],
- [
- -55.44167,
- -23.70084
- ],
- [
- -55.47306,
- -23.64834
- ],
- [
- -55.53989,
- -23.625
- ],
- [
- -55.52356,
- -23.19733
- ],
- [
- -55.54199,
- -23.1561
- ],
- [
- -55.59635,
- -23.14993
- ],
- [
- -55.66578,
- -22.85274
- ],
- [
- -55.61432,
- -22.65521
- ],
- [
- -55.72364,
- -22.55166
- ],
- [
- -55.74302,
- -22.39266
- ],
- [
- -55.78939,
- -22.3846
- ],
- [
- -55.84304,
- -22.28725
- ],
- [
- -56.20983,
- -22.27805
- ],
- [
- -56.36485,
- -22.16949
- ],
- [
- -56.39404,
- -22.07434
- ],
- [
- -56.50711,
- -22.09561
- ],
- [
- -56.63705,
- -22.26341
- ],
- [
- -56.70344,
- -22.21693
- ],
- [
- -56.72026,
- -22.26479
- ],
- [
- -56.79344,
- -22.24238
- ],
- [
- -56.84285,
- -22.30155
- ],
- [
- -56.88343,
- -22.24755
- ],
- [
- -56.9967,
- -22.22246
- ],
- [
- -57.3744,
- -22.23204
- ],
- [
- -57.5804,
- -22.17534
- ],
- [
- -57.6106,
- -22.09462
- ],
- [
- -57.70751,
- -22.09111
- ],
- [
- -57.80183,
- -22.15072
- ],
- [
- -57.99384,
- -22.09023
- ],
- [
- -58.00946,
- -22.04038
- ],
- [
- -57.91281,
- -21.88266
- ],
- [
- -57.96603,
- -21.85045
- ],
- [
- -57.90866,
- -21.77355
- ],
- [
- -57.94714,
- -21.74413
- ],
- [
- -57.88329,
- -21.68903
- ],
- [
- -57.93436,
- -21.65037
- ],
- [
- -57.91387,
- -21.59021
- ],
- [
- -57.96795,
- -21.52432
- ],
- [
- -57.8535,
- -21.33109
- ],
- [
- -57.92019,
- -21.27655
- ],
- [
- -57.85066,
- -21.22407
- ],
- [
- -57.86834,
- -21.04417
- ],
- [
- -57.81919,
- -20.94066
- ],
- [
- -57.92836,
- -20.90036
- ],
- [
- -57.8552,
- -20.83403
- ],
- [
- -57.89863,
- -20.78872
- ],
- [
- -57.96183,
- -20.7916
- ],
- [
- -57.93478,
- -20.74565
- ],
- [
- -57.86732,
- -20.73265
- ],
- [
- -57.92414,
- -20.66392
- ],
- [
- -57.98848,
- -20.69879
- ],
- [
- -57.99847,
- -20.43551
- ],
- [
- -58.09339,
- -20.35554
- ],
- [
- -58.09596,
- -20.25445
- ],
- [
- -58.16216,
- -20.25953
- ],
- [
- -58.12152,
- -20.19246
- ],
- [
- -58.16932,
- -20.1694
- ],
- [
- -57.95347,
- -20.02094
- ],
- [
- -57.90248,
- -20.04207
- ],
- [
- -57.85796,
- -19.9703
- ],
- [
- -58.131,
- -19.758
- ],
- [
- -57.784,
- -19.033
- ],
- [
- -57.694,
- -19.011
- ],
- [
- -57.719,
- -18.899
- ],
- [
- -57.766,
- -18.899
- ],
- [
- -57.557,
- -18.24
- ],
- [
- -57.453,
- -18.231
- ],
- [
- -57.574,
- -18.131
- ],
- [
- -57.72302,
- -17.83074
- ],
- [
- -57.68472,
- -17.8306
- ],
- [
- -57.70991,
- -17.72702
- ],
- [
- -57.783,
- -17.639
- ],
- [
- -57.73696,
- -17.5583
- ],
- [
- -57.883,
- -17.449
- ],
- [
- -57.996,
- -17.515
- ],
- [
- -58.06,
- -17.45
- ],
- [
- -58.116,
- -17.451
- ],
- [
- -58.151,
- -17.384
- ],
- [
- -58.263,
- -17.344
- ],
- [
- -58.396,
- -17.181
- ],
- [
- -58.423,
- -16.989
- ],
- [
- -58.474,
- -16.935
- ],
- [
- -58.47,
- -16.703
- ],
- [
- -58.436,
- -16.592
- ],
- [
- -58.333,
- -16.49
- ],
- [
- -58.32227,
- -16.26559
- ],
- [
- -58.388,
- -16.261
- ],
- [
- -58.43059,
- -16.32264
- ],
- [
- -60.17335,
- -16.26672
- ],
- [
- -60.238,
- -15.473
- ],
- [
- -60.57543,
- -15.09677
- ],
- [
- -60.244,
- -15.096
- ],
- [
- -60.272,
- -14.62
- ],
- [
- -60.321,
- -14.608
- ],
- [
- -60.492,
- -14.188
- ],
- [
- -60.479,
- -14.097
- ],
- [
- -60.38066,
- -13.9888
- ],
- [
- -60.45062,
- -13.9364
- ],
- [
- -60.45599,
- -13.85422
- ],
- [
- -60.49068,
- -13.85782
- ],
- [
- -60.46776,
- -13.79446
- ],
- [
- -60.76755,
- -13.68329
- ],
- [
- -60.87678,
- -13.62149
- ],
- [
- -60.91857,
- -13.54334
- ],
- [
- -61.0056,
- -13.552
- ],
- [
- -61.0129,
- -13.48925
- ],
- [
- -61.0938,
- -13.49081
- ],
- [
- -61.10314,
- -13.53056
- ],
- [
- -61.18155,
- -13.50557
- ],
- [
- -61.19236,
- -13.53695
- ],
- [
- -61.29954,
- -13.47718
- ],
- [
- -61.46527,
- -13.55427
- ],
- [
- -61.57927,
- -13.48711
- ],
- [
- -61.852,
- -13.538
- ],
- [
- -61.892,
- -13.431
- ],
- [
- -61.96968,
- -13.40759
- ],
- [
- -61.97592,
- -13.36695
- ],
- [
- -62.11498,
- -13.25932
- ],
- [
- -62.115,
- -13.163
- ],
- [
- -62.15254,
- -13.15993
- ],
- [
- -62.16703,
- -13.11346
- ],
- [
- -62.19,
- -13.153
- ],
- [
- -62.214,
- -13.111
- ],
- [
- -62.27269,
- -13.15687
- ],
- [
- -62.39178,
- -13.13471
- ],
- [
- -62.453,
- -13.064
- ],
- [
- -62.612,
- -13.041
- ],
- [
- -62.65,
- -12.965
- ],
- [
- -62.729,
- -13.02
- ],
- [
- -62.779,
- -13.009
- ],
- [
- -62.89672,
- -12.8539
- ],
- [
- -63.01134,
- -12.83602
- ],
- [
- -63.08186,
- -12.72323
- ],
- [
- -63.06163,
- -12.68584
- ],
- [
- -63.15726,
- -12.6138
- ],
- [
- -63.24621,
- -12.66222
- ],
- [
- -63.23713,
- -12.69043
- ],
- [
- -63.30125,
- -12.68138
- ],
- [
- -63.44052,
- -12.608
- ],
- [
- -63.43627,
- -12.56526
- ],
- [
- -63.50641,
- -12.56562
- ],
- [
- -63.55295,
- -12.50598
- ],
- [
- -63.7848,
- -12.42871
- ],
- [
- -63.88957,
- -12.44745
- ],
- [
- -63.89949,
- -12.50204
- ],
- [
- -63.95144,
- -12.53179
- ],
- [
- -64.13464,
- -12.47732
- ],
- [
- -64.16781,
- -12.51503
- ],
- [
- -64.17504,
- -12.46675
- ],
- [
- -64.22945,
- -12.45419
- ],
- [
- -64.29018,
- -12.50313
- ],
- [
- -64.29452,
- -12.4582
- ],
- [
- -64.41057,
- -12.44436
- ],
- [
- -64.51217,
- -12.3551
- ],
- [
- -64.51256,
- -12.22562
- ],
- [
- -64.70406,
- -12.1827
- ],
- [
- -64.70719,
- -12.08684
- ],
- [
- -64.75486,
- -12.15762
- ],
- [
- -64.7688,
- -12.09356
- ],
- [
- -64.83747,
- -12.11786
- ],
- [
- -64.80954,
- -12.05633
- ],
- [
- -64.84077,
- -12.01027
- ],
- [
- -65.03548,
- -11.99408
- ],
- [
- -65.01398,
- -11.90303
- ],
- [
- -65.0727,
- -11.86587
- ],
- [
- -65.08672,
- -11.7082
- ],
- [
- -65.18953,
- -11.72353
- ],
- [
- -65.18216,
- -11.75609
- ],
- [
- -65.2593,
- -11.71053
- ],
- [
- -65.21178,
- -11.52857
- ],
- [
- -65.3074,
- -11.49957
- ],
- [
- -65.33276,
- -11.33986
- ],
- [
- -65.29053,
- -11.32275
- ],
- [
- -65.34347,
- -11.3082
- ],
- [
- -65.35834,
- -11.26834
- ],
- [
- -65.35938,
- -11.22067
- ],
- [
- -65.31294,
- -11.19578
- ],
- [
- -65.35387,
- -11.18419
- ],
- [
- -65.36177,
- -11.14031
- ],
- [
- -65.28269,
- -11.09009
- ],
- [
- -65.30071,
- -11.03142
- ],
- [
- -65.25053,
- -10.98506
- ],
- [
- -65.27476,
- -10.87302
- ],
- [
- -65.35376,
- -10.78881
- ],
- [
- -65.34667,
- -10.68155
- ],
- [
- -65.40569,
- -10.63935
- ],
- [
- -65.43011,
- -10.48505
- ],
- [
- -65.288,
- -10.219
- ],
- [
- -65.333,
- -9.965
- ],
- [
- -65.28588,
- -9.84413
- ],
- [
- -65.39313,
- -9.68683
- ],
- [
- -65.44394,
- -9.66957
- ],
- [
- -65.4883,
- -9.71015
- ],
- [
- -65.55611,
- -9.84498
- ],
- [
- -65.627,
- -9.83804
- ],
- [
- -65.66963,
- -9.78129
- ],
- [
- -65.71023,
- -9.80857
- ],
- [
- -65.68395,
- -9.74992
- ],
- [
- -65.7432,
- -9.78296
- ],
- [
- -65.77013,
- -9.73442
- ],
- [
- -65.79437,
- -9.79295
- ],
- [
- -65.79962,
- -9.75663
- ],
- [
- -65.86532,
- -9.79533
- ],
- [
- -65.87184,
- -9.75307
- ],
- [
- -65.91976,
- -9.75314
- ],
- [
- -65.98222,
- -9.81011
- ],
- [
- -66.151,
- -9.785
- ],
- [
- -66.426,
- -9.899
- ],
- [
- -66.435,
- -9.866
- ],
- [
- -66.61995,
- -9.89353
- ],
- [
- -66.63701,
- -9.94983
- ],
- [
- -66.8751,
- -10.08268
- ],
- [
- -66.9528,
- -10.18886
- ],
- [
- -66.99683,
- -10.20017
- ],
- [
- -67.01537,
- -10.25919
- ],
- [
- -67.17745,
- -10.33923
- ],
- [
- -67.31545,
- -10.31932
- ],
- [
- -67.31155,
- -10.37716
- ],
- [
- -67.40717,
- -10.37386
- ],
- [
- -67.44361,
- -10.45492
- ],
- [
- -67.57925,
- -10.5028
- ],
- [
- -67.64028,
- -10.59807
- ],
- [
- -67.67631,
- -10.60484
- ],
- [
- -67.70825,
- -10.71083
- ],
- [
- -67.86386,
- -10.64067
- ],
- [
- -68.03289,
- -10.65486
- ],
- [
- -68.10456,
- -10.71426
- ],
- [
- -68.10333,
- -10.77541
- ],
- [
- -68.27819,
- -10.98926
- ],
- [
- -68.71576,
- -11.14483
- ],
- [
- -68.75767,
- -11.00079
- ],
- [
- -68.9118,
- -11.02192
- ],
- [
- -69.41453,
- -10.92575
- ],
- [
- -69.73653,
- -10.97445
- ],
- [
- -69.76903,
- -10.92972
- ],
- [
- -69.93442,
- -10.9219
- ],
- [
- -70.15869,
- -11.04096
- ],
- [
- -70.30672,
- -11.06983
- ],
- [
- -70.43675,
- -11.03923
- ],
- [
- -70.53033,
- -10.93465
- ],
- [
- -70.62103,
- -10.99982
- ],
- [
- -70.62338,
- -9.82054
- ],
- [
- -70.53663,
- -9.76584
- ],
- [
- -70.59972,
- -9.56264
- ],
- [
- -70.55282,
- -9.57093
- ],
- [
- -70.56894,
- -9.53127
- ],
- [
- -70.50506,
- -9.50557
- ],
- [
- -70.49665,
- -9.42489
- ],
- [
- -70.59581,
- -9.4425
- ],
- [
- -70.6632,
- -9.52601
- ],
- [
- -70.75067,
- -9.56043
- ],
- [
- -70.79332,
- -9.63846
- ],
- [
- -70.96337,
- -9.74891
- ],
- [
- -70.99391,
- -9.81721
- ],
- [
- -71.13974,
- -9.85702
- ],
- [
- -71.22052,
- -9.96968
- ],
- [
- -72.1804,
- -9.99967
- ],
- [
- -72.15136,
- -9.79742
- ],
- [
- -72.26296,
- -9.75085
- ],
- [
- -72.25282,
- -9.61633
- ],
- [
- -72.28821,
- -9.60316
- ],
- [
- -72.2829,
- -9.53995
- ],
- [
- -72.35688,
- -9.4946
- ],
- [
- -72.51954,
- -9.49128
- ],
- [
- -72.71676,
- -9.4122
- ],
- [
- -73.2038,
- -9.40715
- ],
- [
- -73.07352,
- -9.23461
- ],
- [
- -73.0093,
- -9.22236
- ],
- [
- -73.02612,
- -9.17786
- ],
- [
- -72.9582,
- -9.14302
- ],
- [
- -72.94091,
- -8.98494
- ],
- [
- -72.99931,
- -8.91778
- ],
- [
- -73.05901,
- -8.90561
- ],
- [
- -73.14992,
- -8.6839
- ],
- [
- -73.20907,
- -8.6857
- ],
- [
- -73.28745,
- -8.61948
- ],
- [
- -73.3055,
- -8.47197
- ],
- [
- -73.38956,
- -8.46878
- ],
- [
- -73.41286,
- -8.41099
- ],
- [
- -73.53744,
- -8.34587
- ],
- [
- -73.62739,
- -8.02187
- ],
- [
- -73.73175,
- -7.9684
- ],
- [
- -73.7725,
- -7.90237
- ],
- [
- -73.76164,
- -7.85803
- ],
- [
- -73.69706,
- -7.86527
- ],
- [
- -73.6843,
- -7.77644
- ],
- [
- -73.82217,
- -7.71788
- ],
- [
- -73.99094,
- -7.53635
- ],
- [
- -73.948,
- -7.52661
- ],
- [
- -73.91981,
- -7.46568
- ],
- [
- -73.96394,
- -7.34764
- ],
- [
- -73.87014,
- -7.37882
- ],
- [
- -73.7003,
- -7.30429
- ],
- [
- -73.79842,
- -7.11306
- ],
- [
- -73.71046,
- -6.84019
- ],
- [
- -73.53639,
- -6.6834
- ],
- [
- -73.39115,
- -6.64193
- ],
- [
- -73.35281,
- -6.59327
- ],
- [
- -73.22741,
- -6.58884
- ],
- [
- -73.18797,
- -6.52302
- ],
- [
- -73.13523,
- -6.51046
- ],
- [
- -73.10473,
- -6.40666
- ],
- [
- -73.24664,
- -6.14963
- ],
- [
- -73.23821,
- -6.04399
- ],
- [
- -73.1868,
- -6.00512
- ],
- [
- -73.15207,
- -5.86796
- ],
- [
- -73.05303,
- -5.79517
- ],
- [
- -72.95912,
- -5.65689
- ],
- [
- -72.95888,
- -5.46613
- ],
- [
- -72.86052,
- -5.27117
- ],
- [
- -72.88725,
- -5.16307
- ],
- [
- -72.73986,
- -5.08859
- ],
- [
- -72.72765,
- -5.05199
- ],
- [
- -72.6212,
- -5.0518
- ],
- [
- -72.598,
- -4.98386
- ],
- [
- -72.38202,
- -4.87296
- ],
- [
- -72.36895,
- -4.80387
- ],
- [
- -72.12601,
- -4.73454
- ],
- [
- -72.04335,
- -4.62384
- ],
- [
- -72.00689,
- -4.64622
- ],
- [
- -71.99464,
- -4.60996
- ],
- [
- -71.94743,
- -4.60877
- ],
- [
- -71.91909,
- -4.5298
- ],
- [
- -71.88549,
- -4.53803
- ],
- [
- -71.9073,
- -4.51644
- ],
- [
- -71.76637,
- -4.50446
- ],
- [
- -71.75109,
- -4.46887
- ],
- [
- -71.70817,
- -4.51165
- ],
- [
- -71.65479,
- -4.47246
- ],
- [
- -71.65032,
- -4.50395
- ],
- [
- -71.61548,
- -4.4687
- ],
- [
- -71.6335,
- -4.51524
- ],
- [
- -71.59625,
- -4.52928
- ],
- [
- -71.53703,
- -4.46442
- ],
- [
- -71.49428,
- -4.48701
- ],
- [
- -71.50716,
- -4.43909
- ],
- [
- -71.43438,
- -4.42882
- ],
- [
- -71.42562,
- -4.47058
- ],
- [
- -71.35026,
- -4.42728
- ],
- [
- -71.30752,
- -4.46288
- ],
- [
- -71.32091,
- -4.42009
- ],
- [
- -71.27782,
- -4.44217
- ],
- [
- -71.26975,
- -4.385
- ],
- [
- -71.20263,
- -4.37987
- ],
- [
- -71.19422,
- -4.42471
- ],
- [
- -71.14478,
- -4.38158
- ],
- [
- -71.11491,
- -4.41119
- ],
- [
- -71.10616,
- -4.37764
- ],
- [
- -70.99389,
- -4.38654
- ],
- [
- -70.99595,
- -4.34632
- ],
- [
- -70.9357,
- -4.38432
- ],
- [
- -70.84483,
- -4.27905
- ],
- [
- -70.86447,
- -4.25245
- ],
- [
- -70.81677,
- -4.23005
- ],
- [
- -70.8458,
- -4.21872
- ],
- [
- -70.75901,
- -4.15944
- ],
- [
- -70.68147,
- -4.20791
- ],
- [
- -70.64256,
- -4.12805
- ],
- [
- -70.62521,
- -4.19151
- ],
- [
- -70.56118,
- -4.1775
- ],
- [
- -70.57357,
- -4.21169
- ],
- [
- -70.54796,
- -4.13671
- ],
- [
- -70.51036,
- -4.14824
- ],
- [
- -70.50417,
- -4.20098
- ],
- [
- -70.48535,
- -4.16132
- ],
- [
- -70.43435,
- -4.16266
- ],
- [
- -70.43146,
- -4.13217
- ],
- [
- -70.33892,
- -4.17997
- ],
- [
- -70.32281,
- -4.14206
- ],
- [
- -70.28769,
- -4.16555
- ],
- [
- -70.29141,
- -4.28709
- ],
- [
- -70.21457,
- -4.29749
- ],
- [
- -70.19194,
- -4.36179
- ],
- [
- -70.15508,
- -4.27308
- ],
- [
- -70.11749,
- -4.28585
- ],
- [
- -70.10881,
- -4.25454
- ],
- [
- -70.04189,
- -4.29409
- ],
- [
- -70.07948,
- -4.31428
- ],
- [
- -70.02826,
- -4.3703
- ],
- [
- -69.99182,
- -4.37482
- ],
- [
- -69.94793,
- -4.23168
- ]
- ],
- [
- [
- -34.00035,
- -3.76654
- ],
- [
- -34.01797,
- -3.84985
- ],
- [
- -34.00664,
- -3.91809
- ],
- [
- -33.98608,
- -3.95952
- ],
- [
- -33.95923,
- -3.99217
- ],
- [
- -33.8921,
- -4.03653
- ],
- [
- -33.81658,
- -4.05077
- ],
- [
- -33.72931,
- -4.03151
- ],
- [
- -33.66638,
- -3.9838
- ],
- [
- -33.62736,
- -3.9185
- ],
- [
- -33.61519,
- -3.84985
- ],
- [
- -33.63239,
- -3.76864
- ],
- [
- -33.68693,
- -3.69537
- ],
- [
- -33.74987,
- -3.65978
- ],
- [
- -33.81658,
- -3.6489
- ],
- [
- -33.89336,
- -3.66397
- ],
- [
- -33.96007,
- -3.70877
- ],
- [
- -34.00035,
- -3.76654
- ]
- ],
- [
- [
- -32.5538,
- -4.00884
- ],
- [
- -32.59937,
- -3.9531
- ],
- [
- -32.64061,
- -3.87309
- ],
- [
- -32.61755,
- -3.73712
- ],
- [
- -32.58338,
- -3.70527
- ],
- [
- -32.54228,
- -3.65606
- ],
- [
- -32.4592,
- -3.63029
- ],
- [
- -32.35174,
- -3.63887
- ],
- [
- -32.30049,
- -3.67684
- ],
- [
- -32.24749,
- -3.75266
- ],
- [
- -32.23155,
- -3.81889
- ],
- [
- -32.2357,
- -3.90247
- ],
- [
- -32.30194,
- -3.9883
- ],
- [
- -32.42898,
- -4.0384
- ],
- [
- -32.5538,
- -4.00884
- ]
- ],
- [
- [
- -29.50321,
- 0.79391
- ],
- [
- -29.54097,
- 0.8689
- ],
- [
- -29.54727,
- 0.92553
- ],
- [
- -29.52367,
- 0.99422
- ],
- [
- -29.48958,
- 1.06134
- ],
- [
- -29.43136,
- 1.10224
- ],
- [
- -29.35899,
- 1.1206
- ],
- [
- -29.29238,
- 1.11378
- ],
- [
- -29.22158,
- 1.0776
- ],
- [
- -29.16285,
- 1.00314
- ],
- [
- -29.14501,
- 0.92605
- ],
- [
- -29.14764,
- 0.88358
- ],
- [
- -29.17176,
- 0.8196
- ],
- [
- -29.24885,
- 0.74357
- ],
- [
- -29.29448,
- 0.72521
- ],
- [
- -29.36371,
- 0.71892
- ],
- [
- -29.43556,
- 0.73937
- ],
- [
- -29.50321,
- 0.79391
- ]
- ],
- [
- [
- -29.09537,
- -20.42649
- ],
- [
- -29.19756,
- -20.33509
- ],
- [
- -29.3343,
- -20.28932
- ],
- [
- -29.46741,
- -20.3288
- ],
- [
- -29.54604,
- -20.42958
- ],
- [
- -29.55396,
- -20.52706
- ],
- [
- -29.51696,
- -20.62613
- ],
- [
- -29.40995,
- -20.68955
- ],
- [
- -29.27599,
- -20.72578
- ],
- [
- -29.15968,
- -20.66209
- ],
- [
- -29.07188,
- -20.57088
- ],
- [
- -28.9712,
- -20.64769
- ],
- [
- -28.83286,
- -20.69814
- ],
- [
- -28.67968,
- -20.62099
- ],
- [
- -28.63549,
- -20.49284
- ],
- [
- -28.63412,
- -20.47146
- ],
- [
- -28.7431,
- -20.30094
- ],
- [
- -28.8683,
- -20.27288
- ],
- [
- -29.0031,
- -20.32416
- ],
- [
- -29.09537,
- -20.42649
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "country_code": "BR",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png",
- "id": "IBGE_Setores_Rurais",
- "license_url": "https://wiki.openstreetmap.org/wiki/IBGE_Tile_Layer",
- "max_zoom": 14,
- "name": "IBGE Mapa de Setores Rurais",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.i00mo1kj/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -69.94793,
- -4.23168
- ],
- [
- -69.45659,
- -1.49119
- ],
- [
- -69.3973,
- -1.36508
- ],
- [
- -69.42989,
- -1.22173
- ],
- [
- -69.39523,
- -1.12555
- ],
- [
- -69.44292,
- -1.03351
- ],
- [
- -69.41861,
- -0.99827
- ],
- [
- -69.528,
- -0.92514
- ],
- [
- -69.52577,
- -0.86807
- ],
- [
- -69.62491,
- -0.74667
- ],
- [
- -69.56179,
- -0.63692
- ],
- [
- -69.60783,
- -0.5008
- ],
- [
- -69.8446,
- -0.33732
- ],
- [
- -69.92054,
- -0.32573
- ],
- [
- -70.04323,
- -0.18998
- ],
- [
- -70.04302,
- 0.56359
- ],
- [
- -69.80272,
- 0.57162
- ],
- [
- -69.6711,
- 0.66759
- ],
- [
- -69.60529,
- 0.61328
- ],
- [
- -69.59701,
- 0.6542
- ],
- [
- -69.48002,
- 0.73577
- ],
- [
- -69.35277,
- 0.61416
- ],
- [
- -69.28914,
- 0.64997
- ],
- [
- -69.29484,
- 0.60389
- ],
- [
- -69.19975,
- 0.60591
- ],
- [
- -69.19425,
- 0.64982
- ],
- [
- -69.11563,
- 0.64484
- ],
- [
- -69.19001,
- 0.74056
- ],
- [
- -69.14881,
- 0.76751
- ],
- [
- -69.13576,
- 0.87204
- ],
- [
- -69.18846,
- 0.91324
- ],
- [
- -69.1646,
- 0.94156
- ],
- [
- -69.21679,
- 0.97245
- ],
- [
- -69.19773,
- 0.99974
- ],
- [
- -69.24494,
- 1.05655
- ],
- [
- -69.37641,
- 1.08794
- ],
- [
- -69.42312,
- 1.04265
- ],
- [
- -69.60989,
- 1.09826
- ],
- [
- -69.67718,
- 1.06994
- ],
- [
- -69.70963,
- 1.11817
- ],
- [
- -69.84266,
- 1.07272
- ],
- [
- -69.83972,
- 1.71893
- ],
- [
- -69.78236,
- 1.69244
- ],
- [
- -69.53464,
- 1.77691
- ],
- [
- -69.39109,
- 1.72935
- ],
- [
- -68.1645,
- 1.72945
- ],
- [
- -68.19207,
- 1.7797
- ],
- [
- -68.23954,
- 1.77044
- ],
- [
- -68.22688,
- 1.82918
- ],
- [
- -68.28555,
- 1.83084
- ],
- [
- -68.19583,
- 2.03479
- ],
- [
- -68.18033,
- 1.9767
- ],
- [
- -68.14417,
- 1.97854
- ],
- [
- -68.09043,
- 1.89774
- ],
- [
- -67.90162,
- 1.81165
- ],
- [
- -67.76942,
- 2.00924
- ],
- [
- -67.55095,
- 2.04769
- ],
- [
- -67.49519,
- 2.16312
- ],
- [
- -67.39404,
- 2.22894
- ],
- [
- -67.32672,
- 2.06387
- ],
- [
- -67.33083,
- 1.94158
- ],
- [
- -67.22831,
- 1.84127
- ],
- [
- -67.15384,
- 1.8315
- ],
- [
- -67.15922,
- 1.67504
- ],
- [
- -67.08017,
- 1.38546
- ],
- [
- -67.13923,
- 1.32002
- ],
- [
- -67.08675,
- 1.16704
- ],
- [
- -66.85119,
- 1.22896
- ],
- [
- -66.31032,
- 0.74494
- ],
- [
- -66.19737,
- 0.78161
- ],
- [
- -66.07783,
- 0.76174
- ],
- [
- -66.07024,
- 0.8123
- ],
- [
- -65.96712,
- 0.81511
- ],
- [
- -65.88369,
- 0.94159
- ],
- [
- -65.77261,
- 0.95859
- ],
- [
- -65.7421,
- 1.00125
- ],
- [
- -65.58894,
- 1.00471
- ],
- [
- -65.49624,
- 0.87415
- ],
- [
- -65.60623,
- 0.70748
- ],
- [
- -65.54116,
- 0.64881
- ],
- [
- -65.44499,
- 0.68921
- ],
- [
- -65.39213,
- 0.75692
- ],
- [
- -65.41198,
- 0.82415
- ],
- [
- -65.32734,
- 0.93596
- ],
- [
- -65.21302,
- 0.90282
- ],
- [
- -65.1749,
- 0.94131
- ],
- [
- -65.15831,
- 1.1246
- ],
- [
- -65.07232,
- 1.15303
- ],
- [
- -65.06317,
- 1.11205
- ],
- [
- -65.01361,
- 1.10905
- ],
- [
- -64.97445,
- 1.20288
- ],
- [
- -64.90439,
- 1.25153
- ],
- [
- -64.86966,
- 1.22713
- ],
- [
- -64.80053,
- 1.31527
- ],
- [
- -64.74446,
- 1.22569
- ],
- [
- -64.5789,
- 1.34041
- ],
- [
- -64.52608,
- 1.44322
- ],
- [
- -64.43586,
- 1.47006
- ],
- [
- -64.3939,
- 1.52901
- ],
- [
- -64.35111,
- 1.52921
- ],
- [
- -64.34777,
- 1.49508
- ],
- [
- -64.41019,
- 1.40301
- ],
- [
- -64.33791,
- 1.36134
- ],
- [
- -64.3136,
- 1.45617
- ],
- [
- -64.19707,
- 1.52071
- ],
- [
- -64.0735,
- 1.64902
- ],
- [
- -64.05781,
- 1.92899
- ],
- [
- -63.97219,
- 1.99194
- ],
- [
- -63.83555,
- 1.96644
- ],
- [
- -63.71155,
- 2.04645
- ],
- [
- -63.66501,
- 2.01861
- ],
- [
- -63.6268,
- 2.11222
- ],
- [
- -63.56474,
- 2.13571
- ],
- [
- -63.44059,
- 2.126
- ],
- [
- -63.36742,
- 2.26864
- ],
- [
- -63.37088,
- 2.41121
- ],
- [
- -63.42123,
- 2.45102
- ],
- [
- -63.46036,
- 2.39684
- ],
- [
- -63.56398,
- 2.44573
- ],
- [
- -63.76805,
- 2.43994
- ],
- [
- -63.84358,
- 2.4916
- ],
- [
- -64.01914,
- 2.46135
- ],
- [
- -64.0573,
- 2.49752
- ],
- [
- -63.98033,
- 2.7237
- ],
- [
- -64.07709,
- 2.87262
- ],
- [
- -64.07156,
- 2.92142
- ],
- [
- -64.12349,
- 2.99048
- ],
- [
- -64.15754,
- 2.98243
- ],
- [
- -64.14592,
- 3.03459
- ],
- [
- -64.22642,
- 3.12356
- ],
- [
- -64.19795,
- 3.20121
- ],
- [
- -64.2444,
- 3.43036
- ],
- [
- -64.17437,
- 3.56841
- ],
- [
- -64.281,
- 3.70928
- ],
- [
- -64.54357,
- 3.85713
- ],
- [
- -64.72239,
- 4.11775
- ],
- [
- -64.80203,
- 4.17422
- ],
- [
- -64.81123,
- 4.27048
- ],
- [
- -64.69522,
- 4.25323
- ],
- [
- -64.623,
- 4.135
- ],
- [
- -64.5565,
- 4.10529
- ],
- [
- -64.164,
- 4.127
- ],
- [
- -63.964,
- 3.868
- ],
- [
- -63.928,
- 3.925
- ],
- [
- -63.85,
- 3.95
- ],
- [
- -63.682,
- 3.908
- ],
- [
- -63.676,
- 4.019
- ],
- [
- -63.591,
- 3.886
- ],
- [
- -63.497,
- 3.84
- ],
- [
- -63.489,
- 3.874
- ],
- [
- -63.434,
- 3.865
- ],
- [
- -63.428,
- 3.977
- ],
- [
- -63.204,
- 3.952
- ],
- [
- -63.226,
- 3.836
- ],
- [
- -63.103,
- 3.794
- ],
- [
- -63.059,
- 3.748
- ],
- [
- -63.081,
- 3.694
- ],
- [
- -62.96,
- 3.608
- ],
- [
- -62.835,
- 3.739
- ],
- [
- -62.743,
- 3.674
- ],
- [
- -62.729,
- 3.805
- ],
- [
- -62.788,
- 3.894
- ],
- [
- -62.753,
- 4.032
- ],
- [
- -62.555,
- 4.019
- ],
- [
- -62.552,
- 4.109
- ],
- [
- -62.437,
- 4.183
- ],
- [
- -62.14308,
- 4.07768
- ],
- [
- -62.071,
- 4.126
- ],
- [
- -62.076,
- 4.154
- ],
- [
- -61.982,
- 4.181
- ],
- [
- -61.93175,
- 4.12009
- ],
- [
- -61.92213,
- 4.16126
- ],
- [
- -61.824,
- 4.164
- ],
- [
- -61.802,
- 4.229
- ],
- [
- -61.724,
- 4.27
- ],
- [
- -61.56,
- 4.252
- ],
- [
- -61.508,
- 4.322
- ],
- [
- -61.513,
- 4.406
- ],
- [
- -61.288,
- 4.458
- ],
- [
- -61.323,
- 4.535
- ],
- [
- -61.217,
- 4.536
- ],
- [
- -61.14559,
- 4.48016
- ],
- [
- -61.095,
- 4.522
- ],
- [
- -60.994,
- 4.519
- ],
- [
- -60.932,
- 4.587
- ],
- [
- -60.949,
- 4.653
- ],
- [
- -60.899,
- 4.717
- ],
- [
- -60.751,
- 4.756
- ],
- [
- -60.591,
- 4.927
- ],
- [
- -60.661,
- 5.164
- ],
- [
- -60.73197,
- 5.21203
- ],
- [
- -60.434,
- 5.182
- ],
- [
- -60.20825,
- 5.28346
- ],
- [
- -60.172,
- 5.227
- ],
- [
- -60.135,
- 5.249
- ],
- [
- -60.094,
- 5.14
- ],
- [
- -59.96984,
- 5.06334
- ],
- [
- -60.02524,
- 4.7065
- ],
- [
- -60.0705,
- 4.61688
- ],
- [
- -60.15725,
- 4.57247
- ],
- [
- -60.16114,
- 4.51773
- ],
- [
- -59.79503,
- 4.46554
- ],
- [
- -59.66948,
- 4.37629
- ],
- [
- -59.7319,
- 4.28587
- ],
- [
- -59.73069,
- 4.18076
- ],
- [
- -59.61818,
- 4.13166
- ],
- [
- -59.65406,
- 4.06943
- ],
- [
- -59.58417,
- 3.96851
- ],
- [
- -59.5153,
- 3.94493
- ],
- [
- -59.59279,
- 3.88538
- ],
- [
- -59.59631,
- 3.79386
- ],
- [
- -59.66555,
- 3.78126
- ],
- [
- -59.66842,
- 3.70277
- ],
- [
- -59.86728,
- 3.57776
- ],
- [
- -59.80205,
- 3.50156
- ],
- [
- -59.8408,
- 3.43174
- ],
- [
- -59.80488,
- 3.35695
- ],
- [
- -59.907,
- 3.212
- ],
- [
- -59.98944,
- 2.88185
- ],
- [
- -59.99,
- 2.686
- ],
- [
- -59.895,
- 2.482
- ],
- [
- -59.89872,
- 2.36245
- ],
- [
- -59.72315,
- 2.27614
- ],
- [
- -59.751,
- 1.859
- ],
- [
- -59.677,
- 1.839
- ],
- [
- -59.663,
- 1.871
- ],
- [
- -59.69,
- 1.757
- ],
- [
- -59.539,
- 1.723
- ],
- [
- -59.381,
- 1.507
- ],
- [
- -59.329,
- 1.514
- ],
- [
- -59.327,
- 1.464
- ],
- [
- -59.284,
- 1.45
- ],
- [
- -59.253,
- 1.389
- ],
- [
- -58.978,
- 1.302
- ],
- [
- -58.918,
- 1.317
- ],
- [
- -58.886,
- 1.261
- ],
- [
- -58.912,
- 1.239
- ],
- [
- -58.82512,
- 1.17127
- ],
- [
- -58.73956,
- 1.1999
- ],
- [
- -58.69456,
- 1.29732
- ],
- [
- -58.49622,
- 1.26796
- ],
- [
- -58.45787,
- 1.37145
- ],
- [
- -58.50511,
- 1.40317
- ],
- [
- -58.50873,
- 1.46295
- ],
- [
- -58.38559,
- 1.46999
- ],
- [
- -58.39472,
- 1.52651
- ],
- [
- -58.32237,
- 1.59702
- ],
- [
- -58.236,
- 1.54669
- ],
- [
- -58.16064,
- 1.56011
- ],
- [
- -58.12942,
- 1.4989
- ],
- [
- -58.00423,
- 1.50303
- ],
- [
- -57.99009,
- 1.65844
- ],
- [
- -57.85206,
- 1.66782
- ],
- [
- -57.77431,
- 1.72973
- ],
- [
- -57.70509,
- 1.73093
- ],
- [
- -57.65042,
- 1.68237
- ],
- [
- -57.5376,
- 1.7005
- ],
- [
- -57.50187,
- 1.78609
- ],
- [
- -57.43776,
- 1.82681
- ],
- [
- -57.43343,
- 1.90598
- ],
- [
- -57.36768,
- 1.92372
- ],
- [
- -57.36912,
- 1.95638
- ],
- [
- -57.30712,
- 1.99665
- ],
- [
- -57.22923,
- 1.93759
- ],
- [
- -57.08668,
- 2.02644
- ],
- [
- -57.01421,
- 1.91489
- ],
- [
- -56.91971,
- 1.93036
- ],
- [
- -56.79793,
- 1.85336
- ],
- [
- -56.72096,
- 1.92582
- ],
- [
- -56.62145,
- 1.94588
- ],
- [
- -56.57976,
- 1.90588
- ],
- [
- -56.45126,
- 1.95614
- ],
- [
- -56.24404,
- 1.87808
- ],
- [
- -56.1709,
- 1.90048
- ],
- [
- -56.11762,
- 1.85097
- ],
- [
- -55.95638,
- 1.84509
- ],
- [
- -55.90385,
- 1.88803
- ],
- [
- -55.93635,
- 1.98647
- ],
- [
- -55.9031,
- 2.04108
- ],
- [
- -56.00307,
- 2.1676
- ],
- [
- -56.05505,
- 2.18464
- ],
- [
- -56.04288,
- 2.22778
- ],
- [
- -56.13887,
- 2.26574
- ],
- [
- -56.09012,
- 2.37228
- ],
- [
- -56.02181,
- 2.34247
- ],
- [
- -55.97052,
- 2.52931
- ],
- [
- -55.76663,
- 2.45524
- ],
- [
- -55.71028,
- 2.39917
- ],
- [
- -55.49971,
- 2.44324
- ],
- [
- -55.38533,
- 2.41836
- ],
- [
- -55.32019,
- 2.51537
- ],
- [
- -55.23474,
- 2.50338
- ],
- [
- -55.1234,
- 2.56762
- ],
- [
- -55.10302,
- 2.52564
- ],
- [
- -54.95424,
- 2.58359
- ],
- [
- -54.86846,
- 2.43989
- ],
- [
- -54.68917,
- 2.45389
- ],
- [
- -54.68861,
- 2.32472
- ],
- [
- -54.54667,
- 2.31833
- ],
- [
- -54.53778,
- 2.26556
- ],
- [
- -54.46861,
- 2.21306
- ],
- [
- -54.24917,
- 2.14667
- ],
- [
- -54.18056,
- 2.1725
- ],
- [
- -54.11083,
- 2.11222
- ],
- [
- -54.06139,
- 2.19167
- ],
- [
- -53.94083,
- 2.21917
- ],
- [
- -53.93194,
- 2.27194
- ],
- [
- -53.88667,
- 2.26778
- ],
- [
- -53.745,
- 2.37389
- ],
- [
- -53.73389,
- 2.31222
- ],
- [
- -53.52972,
- 2.24917
- ],
- [
- -53.45861,
- 2.2575
- ],
- [
- -53.32833,
- 2.35333
- ],
- [
- -53.21667,
- 2.25333
- ],
- [
- -53.27899,
- 2.18603
- ],
- [
- -53.11861,
- 2.2225
- ],
- [
- -52.99472,
- 2.17528
- ],
- [
- -52.90972,
- 2.19583
- ],
- [
- -52.84722,
- 2.28556
- ],
- [
- -52.67528,
- 2.37389
- ],
- [
- -52.59444,
- 2.47389
- ],
- [
- -52.54028,
- 2.57028
- ],
- [
- -52.56417,
- 2.63944
- ],
- [
- -52.43944,
- 2.87778
- ],
- [
- -52.39583,
- 2.90222
- ],
- [
- -52.33187,
- 3.16938
- ],
- [
- -52.21472,
- 3.26833
- ],
- [
- -51.97104,
- 3.70696
- ],
- [
- -51.92148,
- 3.72422
- ],
- [
- -51.922,
- 3.7792
- ],
- [
- -51.79731,
- 3.88888
- ],
- [
- -51.77783,
- 3.97406
- ],
- [
- -51.65867,
- 4.05276
- ],
- [
- -51.61325,
- 4.17437
- ],
- [
- -51.63716,
- 4.50834
- ],
- [
- -51.49427,
- 4.67426
- ],
- [
- -51.11466,
- 4.42286
- ],
- [
- -50.94232,
- 4.20165
- ],
- [
- -50.85475,
- 3.92491
- ],
- [
- -50.85507,
- 3.45573
- ],
- [
- -50.75331,
- 2.94057
- ],
- [
- -50.29908,
- 2.33079
- ],
- [
- -49.73896,
- 1.79143
- ],
- [
- -48.23746,
- -0.07449
- ],
- [
- -44.84728,
- -1.07246
- ],
- [
- -43.54602,
- -2.04705
- ],
- [
- -43.24389,
- -2.12403
- ],
- [
- -42.78189,
- -2.33053
- ],
- [
- -41.78084,
- -2.51859
- ],
- [
- -41.5085,
- -2.68486
- ],
- [
- -40.66365,
- -2.63829
- ],
- [
- -40.50396,
- -2.57531
- ],
- [
- -39.8907,
- -2.65328
- ],
- [
- -39.15187,
- -3.04444
- ],
- [
- -38.57151,
- -3.48047
- ],
- [
- -38.34306,
- -3.54434
- ],
- [
- -38.21421,
- -3.74103
- ],
- [
- -38.12555,
- -3.80544
- ],
- [
- -37.90182,
- -4.07265
- ],
- [
- -37.77934,
- -4.18046
- ],
- [
- -37.63401,
- -4.24454
- ],
- [
- -37.51218,
- -4.41535
- ],
- [
- -37.22122,
- -4.51045
- ],
- [
- -37.07874,
- -4.71355
- ],
- [
- -36.91716,
- -4.71372
- ],
- [
- -36.62299,
- -4.85815
- ],
- [
- -36.18969,
- -4.88505
- ],
- [
- -35.93627,
- -4.83327
- ],
- [
- -35.56471,
- -4.90758
- ],
- [
- -35.33677,
- -4.99239
- ],
- [
- -35.17659,
- -5.12497
- ],
- [
- -34.79469,
- -6.33583
- ],
- [
- -34.71587,
- -6.74615
- ],
- [
- -34.62306,
- -6.90323
- ],
- [
- -34.59953,
- -7.11133
- ],
- [
- -34.64374,
- -7.98735
- ],
- [
- -34.81497,
- -8.62472
- ],
- [
- -35.0253,
- -9.13761
- ],
- [
- -35.55848,
- -9.81261
- ],
- [
- -35.69663,
- -9.90026
- ],
- [
- -35.96401,
- -10.31281
- ],
- [
- -36.06155,
- -10.37447
- ],
- [
- -36.26639,
- -10.64593
- ],
- [
- -36.61764,
- -10.81082
- ],
- [
- -36.78725,
- -10.95151
- ],
- [
- -36.99511,
- -11.29602
- ],
- [
- -37.11368,
- -11.41261
- ],
- [
- -37.46002,
- -12.10275
- ],
- [
- -37.89668,
- -12.75844
- ],
- [
- -38.22146,
- -13.09717
- ],
- [
- -38.61146,
- -13.26537
- ],
- [
- -38.85337,
- -14.65508
- ],
- [
- -38.74388,
- -15.60089
- ],
- [
- -38.66456,
- -15.74741
- ],
- [
- -38.64697,
- -15.88327
- ],
- [
- -38.8013,
- -16.24838
- ],
- [
- -38.92933,
- -16.80775
- ],
- [
- -38.53193,
- -17.80026
- ],
- [
- -38.49171,
- -18.0046
- ],
- [
- -38.53661,
- -18.09683
- ],
- [
- -38.67053,
- -18.16855
- ],
- [
- -39.35288,
- -18.10892
- ],
- [
- -39.4675,
- -18.30359
- ],
- [
- -39.54529,
- -18.78548
- ],
- [
- -39.49227,
- -19.40134
- ],
- [
- -39.63477,
- -19.74403
- ],
- [
- -39.86353,
- -19.88681
- ],
- [
- -40.17827,
- -20.75426
- ],
- [
- -40.81442,
- -21.67672
- ],
- [
- -40.76948,
- -21.87786
- ],
- [
- -40.81442,
- -22.09702
- ],
- [
- -41.5086,
- -22.52638
- ],
- [
- -41.59666,
- -22.83627
- ],
- [
- -41.79292,
- -23.08823
- ],
- [
- -41.91484,
- -23.18527
- ],
- [
- -43.19603,
- -23.26703
- ],
- [
- -44.07735,
- -23.40501
- ],
- [
- -45.13508,
- -24.12014
- ],
- [
- -46.61368,
- -24.67512
- ],
- [
- -47.85376,
- -25.47012
- ],
- [
- -48.2801,
- -26.23036
- ],
- [
- -48.34897,
- -26.75081
- ],
- [
- -48.11076,
- -27.28208
- ],
- [
- -48.21148,
- -27.85592
- ],
- [
- -48.40713,
- -28.43255
- ],
- [
- -48.68615,
- -28.76016
- ],
- [
- -48.9156,
- -28.86305
- ],
- [
- -49.1579,
- -29.02871
- ],
- [
- -49.52748,
- -29.42005
- ],
- [
- -49.82565,
- -29.86559
- ],
- [
- -50.17344,
- -30.64282
- ],
- [
- -50.60441,
- -31.24135
- ],
- [
- -51.18785,
- -31.77646
- ],
- [
- -51.74211,
- -32.10539
- ],
- [
- -51.89236,
- -32.29596
- ],
- [
- -52.06117,
- -32.38504
- ],
- [
- -52.27087,
- -32.92102
- ],
- [
- -52.45986,
- -33.25369
- ],
- [
- -52.61505,
- -33.42291
- ],
- [
- -53.18109,
- -33.86891
- ],
- [
- -53.43053,
- -33.73947
- ],
- [
- -53.43951,
- -33.69347
- ],
- [
- -53.53228,
- -33.6888
- ],
- [
- -53.51819,
- -33.15342
- ],
- [
- -53.44438,
- -33.05296
- ],
- [
- -53.24468,
- -32.93489
- ],
- [
- -53.31008,
- -32.91875
- ],
- [
- -53.29454,
- -32.89931
- ],
- [
- -53.18496,
- -32.85043
- ],
- [
- -53.14569,
- -32.79202
- ],
- [
- -53.0858,
- -32.78835
- ],
- [
- -53.07558,
- -32.74088
- ],
- [
- -53.24992,
- -32.6041
- ],
- [
- -53.39137,
- -32.58573
- ],
- [
- -53.46423,
- -32.48446
- ],
- [
- -53.58321,
- -32.45192
- ],
- [
- -53.74599,
- -32.07848
- ],
- [
- -53.83375,
- -32.05524
- ],
- [
- -53.84978,
- -32.00064
- ],
- [
- -53.96073,
- -31.95532
- ],
- [
- -53.96972,
- -31.91765
- ],
- [
- -54.10019,
- -31.92825
- ],
- [
- -54.4549,
- -31.65295
- ],
- [
- -54.4528,
- -31.59959
- ],
- [
- -54.58676,
- -31.45656
- ],
- [
- -54.8367,
- -31.442
- ],
- [
- -54.88623,
- -31.3773
- ],
- [
- -54.94087,
- -31.38068
- ],
- [
- -55.00723,
- -31.26692
- ],
- [
- -55.07446,
- -31.33216
- ],
- [
- -55.24003,
- -31.26062
- ],
- [
- -55.29118,
- -31.14226
- ],
- [
- -55.34037,
- -31.13144
- ],
- [
- -55.34981,
- -31.03922
- ],
- [
- -55.42306,
- -31.01823
- ],
- [
- -55.57742,
- -30.83309
- ],
- [
- -55.65834,
- -30.864
- ],
- [
- -55.66621,
- -30.95395
- ],
- [
- -55.723,
- -30.943
- ],
- [
- -55.727,
- -30.979
- ],
- [
- -55.882,
- -31.077
- ],
- [
- -56.00989,
- -31.08267
- ],
- [
- -56.02241,
- -30.78565
- ],
- [
- -56.12508,
- -30.73871
- ],
- [
- -56.17074,
- -30.61517
- ],
- [
- -56.26095,
- -30.58509
- ],
- [
- -56.29193,
- -30.51967
- ],
- [
- -56.38177,
- -30.49956
- ],
- [
- -56.46126,
- -30.38486
- ],
- [
- -56.54706,
- -30.35946
- ],
- [
- -56.54115,
- -30.31291
- ],
- [
- -56.6187,
- -30.30054
- ],
- [
- -56.64628,
- -30.20346
- ],
- [
- -56.77662,
- -30.1633
- ],
- [
- -56.80777,
- -30.10301
- ],
- [
- -57.07113,
- -30.08671
- ],
- [
- -57.22081,
- -30.28928
- ],
- [
- -57.31303,
- -30.25785
- ],
- [
- -57.39229,
- -30.30474
- ],
- [
- -57.46574,
- -30.26589
- ],
- [
- -57.52431,
- -30.28569
- ],
- [
- -57.56087,
- -30.21134
- ],
- [
- -57.64744,
- -30.19483
- ],
- [
- -57.48047,
- -30.12315
- ],
- [
- -57.33713,
- -29.99284
- ],
- [
- -57.294,
- -29.831
- ],
- [
- -57.121,
- -29.765
- ],
- [
- -56.89888,
- -29.53179
- ],
- [
- -56.81905,
- -29.48816
- ],
- [
- -56.76618,
- -29.37768
- ],
- [
- -56.70164,
- -29.35913
- ],
- [
- -56.59315,
- -29.12516
- ],
- [
- -56.418,
- -29.075
- ],
- [
- -56.40775,
- -28.9748
- ],
- [
- -56.29995,
- -28.89614
- ],
- [
- -56.29652,
- -28.8027
- ],
- [
- -56.17858,
- -28.75922
- ],
- [
- -56.00984,
- -28.60718
- ],
- [
- -56.01249,
- -28.50873
- ],
- [
- -55.88357,
- -28.47923
- ],
- [
- -55.87739,
- -28.36159
- ],
- [
- -55.75157,
- -28.37095
- ],
- [
- -55.69433,
- -28.42204
- ],
- [
- -55.67047,
- -28.33218
- ],
- [
- -55.77415,
- -28.27414
- ],
- [
- -55.7757,
- -28.24481
- ],
- [
- -55.63167,
- -28.17719
- ],
- [
- -55.60747,
- -28.11604
- ],
- [
- -55.55957,
- -28.16523
- ],
- [
- -55.4952,
- -28.07682
- ],
- [
- -55.44611,
- -28.09787
- ],
- [
- -55.368,
- -28.029
- ],
- [
- -55.38299,
- -27.97948
- ],
- [
- -55.343,
- -27.972
- ],
- [
- -55.32706,
- -27.92664
- ],
- [
- -55.26574,
- -27.92969
- ],
- [
- -55.196,
- -27.856
- ],
- [
- -55.133,
- -27.897
- ],
- [
- -55.106,
- -27.846
- ],
- [
- -55.035,
- -27.858
- ],
- [
- -55.081,
- -27.779
- ],
- [
- -54.936,
- -27.772
- ],
- [
- -54.90617,
- -27.63871
- ],
- [
- -54.85,
- -27.624
- ],
- [
- -54.814,
- -27.533
- ],
- [
- -54.775,
- -27.586
- ],
- [
- -54.67926,
- -27.57394
- ],
- [
- -54.67709,
- -27.508
- ],
- [
- -54.621,
- -27.541
- ],
- [
- -54.574,
- -27.453
- ],
- [
- -54.5246,
- -27.5059
- ],
- [
- -54.444,
- -27.472
- ],
- [
- -54.47081,
- -27.42674
- ],
- [
- -54.41,
- -27.405
- ],
- [
- -54.35466,
- -27.46528
- ],
- [
- -54.34067,
- -27.40311
- ],
- [
- -54.28484,
- -27.44819
- ],
- [
- -54.261,
- -27.397
- ],
- [
- -54.21736,
- -27.38603
- ],
- [
- -54.172,
- -27.254
- ],
- [
- -54.15619,
- -27.29619
- ],
- [
- -54.08872,
- -27.30149
- ],
- [
- -54.01026,
- -27.19978
- ],
- [
- -53.96219,
- -27.19698
- ],
- [
- -53.95195,
- -27.15169
- ],
- [
- -53.79879,
- -27.14629
- ],
- [
- -53.80233,
- -27.04028
- ],
- [
- -53.76087,
- -27.06543
- ],
- [
- -53.78585,
- -27.02674
- ],
- [
- -53.7473,
- -27.03218
- ],
- [
- -53.7092,
- -26.93414
- ],
- [
- -53.67125,
- -26.94222
- ],
- [
- -53.69684,
- -26.86015
- ],
- [
- -53.66059,
- -26.85814
- ],
- [
- -53.75814,
- -26.72045
- ],
- [
- -53.7205,
- -26.65099
- ],
- [
- -53.75864,
- -26.64113
- ],
- [
- -53.63739,
- -26.24968
- ],
- [
- -53.742,
- -26.108
- ],
- [
- -53.73409,
- -26.04333
- ],
- [
- -53.83619,
- -25.97166
- ],
- [
- -53.82214,
- -25.79377
- ],
- [
- -53.89113,
- -25.62286
- ],
- [
- -53.94895,
- -25.6117
- ],
- [
- -53.95638,
- -25.64628
- ],
- [
- -54.01,
- -25.567
- ],
- [
- -54.07592,
- -25.55766
- ],
- [
- -54.098,
- -25.619
- ],
- [
- -54.099,
- -25.495
- ],
- [
- -54.206,
- -25.541
- ],
- [
- -54.178,
- -25.584
- ],
- [
- -54.23,
- -25.562
- ],
- [
- -54.25,
- -25.597
- ],
- [
- -54.28,
- -25.556
- ],
- [
- -54.38395,
- -25.59747
- ],
- [
- -54.43288,
- -25.69756
- ],
- [
- -54.4927,
- -25.6181
- ],
- [
- -54.59354,
- -25.59275
- ],
- [
- -54.61941,
- -25.45312
- ],
- [
- -54.4295,
- -25.15915
- ],
- [
- -54.43548,
- -24.94769
- ],
- [
- -54.32437,
- -24.66059
- ],
- [
- -54.32714,
- -24.47073
- ],
- [
- -54.25877,
- -24.36377
- ],
- [
- -54.34537,
- -24.14705
- ],
- [
- -54.28223,
- -24.07336
- ],
- [
- -54.43984,
- -23.90446
- ],
- [
- -54.66978,
- -23.81262
- ],
- [
- -54.70533,
- -23.86452
- ],
- [
- -54.89,
- -23.898
- ],
- [
- -54.924,
- -23.959
- ],
- [
- -55.06223,
- -23.99335
- ],
- [
- -55.107,
- -23.961
- ],
- [
- -55.22907,
- -24.01383
- ],
- [
- -55.30415,
- -23.96504
- ],
- [
- -55.34542,
- -23.99458
- ],
- [
- -55.41423,
- -23.9645
- ],
- [
- -55.44167,
- -23.70084
- ],
- [
- -55.47306,
- -23.64834
- ],
- [
- -55.53989,
- -23.625
- ],
- [
- -55.52356,
- -23.19733
- ],
- [
- -55.54199,
- -23.1561
- ],
- [
- -55.59635,
- -23.14993
- ],
- [
- -55.66578,
- -22.85274
- ],
- [
- -55.61432,
- -22.65521
- ],
- [
- -55.72364,
- -22.55166
- ],
- [
- -55.74302,
- -22.39266
- ],
- [
- -55.78939,
- -22.3846
- ],
- [
- -55.84304,
- -22.28725
- ],
- [
- -56.20983,
- -22.27805
- ],
- [
- -56.36485,
- -22.16949
- ],
- [
- -56.39404,
- -22.07434
- ],
- [
- -56.50711,
- -22.09561
- ],
- [
- -56.63705,
- -22.26341
- ],
- [
- -56.70344,
- -22.21693
- ],
- [
- -56.72026,
- -22.26479
- ],
- [
- -56.79344,
- -22.24238
- ],
- [
- -56.84285,
- -22.30155
- ],
- [
- -56.88343,
- -22.24755
- ],
- [
- -56.9967,
- -22.22246
- ],
- [
- -57.3744,
- -22.23204
- ],
- [
- -57.5804,
- -22.17534
- ],
- [
- -57.6106,
- -22.09462
- ],
- [
- -57.70751,
- -22.09111
- ],
- [
- -57.80183,
- -22.15072
- ],
- [
- -57.99384,
- -22.09023
- ],
- [
- -58.00946,
- -22.04038
- ],
- [
- -57.91281,
- -21.88266
- ],
- [
- -57.96603,
- -21.85045
- ],
- [
- -57.90866,
- -21.77355
- ],
- [
- -57.94714,
- -21.74413
- ],
- [
- -57.88329,
- -21.68903
- ],
- [
- -57.93436,
- -21.65037
- ],
- [
- -57.91387,
- -21.59021
- ],
- [
- -57.96795,
- -21.52432
- ],
- [
- -57.8535,
- -21.33109
- ],
- [
- -57.92019,
- -21.27655
- ],
- [
- -57.85066,
- -21.22407
- ],
- [
- -57.86834,
- -21.04417
- ],
- [
- -57.81919,
- -20.94066
- ],
- [
- -57.92836,
- -20.90036
- ],
- [
- -57.8552,
- -20.83403
- ],
- [
- -57.89863,
- -20.78872
- ],
- [
- -57.96183,
- -20.7916
- ],
- [
- -57.93478,
- -20.74565
- ],
- [
- -57.86732,
- -20.73265
- ],
- [
- -57.92414,
- -20.66392
- ],
- [
- -57.98848,
- -20.69879
- ],
- [
- -57.99847,
- -20.43551
- ],
- [
- -58.09339,
- -20.35554
- ],
- [
- -58.09596,
- -20.25445
- ],
- [
- -58.16216,
- -20.25953
- ],
- [
- -58.12152,
- -20.19246
- ],
- [
- -58.16932,
- -20.1694
- ],
- [
- -57.95347,
- -20.02094
- ],
- [
- -57.90248,
- -20.04207
- ],
- [
- -57.85796,
- -19.9703
- ],
- [
- -58.131,
- -19.758
- ],
- [
- -57.784,
- -19.033
- ],
- [
- -57.694,
- -19.011
- ],
- [
- -57.719,
- -18.899
- ],
- [
- -57.766,
- -18.899
- ],
- [
- -57.557,
- -18.24
- ],
- [
- -57.453,
- -18.231
- ],
- [
- -57.574,
- -18.131
- ],
- [
- -57.72302,
- -17.83074
- ],
- [
- -57.68472,
- -17.8306
- ],
- [
- -57.70991,
- -17.72702
- ],
- [
- -57.783,
- -17.639
- ],
- [
- -57.73696,
- -17.5583
- ],
- [
- -57.883,
- -17.449
- ],
- [
- -57.996,
- -17.515
- ],
- [
- -58.06,
- -17.45
- ],
- [
- -58.116,
- -17.451
- ],
- [
- -58.151,
- -17.384
- ],
- [
- -58.263,
- -17.344
- ],
- [
- -58.396,
- -17.181
- ],
- [
- -58.423,
- -16.989
- ],
- [
- -58.474,
- -16.935
- ],
- [
- -58.47,
- -16.703
- ],
- [
- -58.436,
- -16.592
- ],
- [
- -58.333,
- -16.49
- ],
- [
- -58.32227,
- -16.26559
- ],
- [
- -58.388,
- -16.261
- ],
- [
- -58.43059,
- -16.32264
- ],
- [
- -60.17335,
- -16.26672
- ],
- [
- -60.238,
- -15.473
- ],
- [
- -60.57543,
- -15.09677
- ],
- [
- -60.244,
- -15.096
- ],
- [
- -60.272,
- -14.62
- ],
- [
- -60.321,
- -14.608
- ],
- [
- -60.492,
- -14.188
- ],
- [
- -60.479,
- -14.097
- ],
- [
- -60.38066,
- -13.9888
- ],
- [
- -60.45062,
- -13.9364
- ],
- [
- -60.45599,
- -13.85422
- ],
- [
- -60.49068,
- -13.85782
- ],
- [
- -60.46776,
- -13.79446
- ],
- [
- -60.76755,
- -13.68329
- ],
- [
- -60.87678,
- -13.62149
- ],
- [
- -60.91857,
- -13.54334
- ],
- [
- -61.0056,
- -13.552
- ],
- [
- -61.0129,
- -13.48925
- ],
- [
- -61.0938,
- -13.49081
- ],
- [
- -61.10314,
- -13.53056
- ],
- [
- -61.18155,
- -13.50557
- ],
- [
- -61.19236,
- -13.53695
- ],
- [
- -61.29954,
- -13.47718
- ],
- [
- -61.46527,
- -13.55427
- ],
- [
- -61.57927,
- -13.48711
- ],
- [
- -61.852,
- -13.538
- ],
- [
- -61.892,
- -13.431
- ],
- [
- -61.96968,
- -13.40759
- ],
- [
- -61.97592,
- -13.36695
- ],
- [
- -62.11498,
- -13.25932
- ],
- [
- -62.115,
- -13.163
- ],
- [
- -62.15254,
- -13.15993
- ],
- [
- -62.16703,
- -13.11346
- ],
- [
- -62.19,
- -13.153
- ],
- [
- -62.214,
- -13.111
- ],
- [
- -62.27269,
- -13.15687
- ],
- [
- -62.39178,
- -13.13471
- ],
- [
- -62.453,
- -13.064
- ],
- [
- -62.612,
- -13.041
- ],
- [
- -62.65,
- -12.965
- ],
- [
- -62.729,
- -13.02
- ],
- [
- -62.779,
- -13.009
- ],
- [
- -62.89672,
- -12.8539
- ],
- [
- -63.01134,
- -12.83602
- ],
- [
- -63.08186,
- -12.72323
- ],
- [
- -63.06163,
- -12.68584
- ],
- [
- -63.15726,
- -12.6138
- ],
- [
- -63.24621,
- -12.66222
- ],
- [
- -63.23713,
- -12.69043
- ],
- [
- -63.30125,
- -12.68138
- ],
- [
- -63.44052,
- -12.608
- ],
- [
- -63.43627,
- -12.56526
- ],
- [
- -63.50641,
- -12.56562
- ],
- [
- -63.55295,
- -12.50598
- ],
- [
- -63.7848,
- -12.42871
- ],
- [
- -63.88957,
- -12.44745
- ],
- [
- -63.89949,
- -12.50204
- ],
- [
- -63.95144,
- -12.53179
- ],
- [
- -64.13464,
- -12.47732
- ],
- [
- -64.16781,
- -12.51503
- ],
- [
- -64.17504,
- -12.46675
- ],
- [
- -64.22945,
- -12.45419
- ],
- [
- -64.29018,
- -12.50313
- ],
- [
- -64.29452,
- -12.4582
- ],
- [
- -64.41057,
- -12.44436
- ],
- [
- -64.51217,
- -12.3551
- ],
- [
- -64.51256,
- -12.22562
- ],
- [
- -64.70406,
- -12.1827
- ],
- [
- -64.70719,
- -12.08684
- ],
- [
- -64.75486,
- -12.15762
- ],
- [
- -64.7688,
- -12.09356
- ],
- [
- -64.83747,
- -12.11786
- ],
- [
- -64.80954,
- -12.05633
- ],
- [
- -64.84077,
- -12.01027
- ],
- [
- -65.03548,
- -11.99408
- ],
- [
- -65.01398,
- -11.90303
- ],
- [
- -65.0727,
- -11.86587
- ],
- [
- -65.08672,
- -11.7082
- ],
- [
- -65.18953,
- -11.72353
- ],
- [
- -65.18216,
- -11.75609
- ],
- [
- -65.2593,
- -11.71053
- ],
- [
- -65.21178,
- -11.52857
- ],
- [
- -65.3074,
- -11.49957
- ],
- [
- -65.33276,
- -11.33986
- ],
- [
- -65.29053,
- -11.32275
- ],
- [
- -65.34347,
- -11.3082
- ],
- [
- -65.35834,
- -11.26834
- ],
- [
- -65.35938,
- -11.22067
- ],
- [
- -65.31294,
- -11.19578
- ],
- [
- -65.35387,
- -11.18419
- ],
- [
- -65.36177,
- -11.14031
- ],
- [
- -65.28269,
- -11.09009
- ],
- [
- -65.30071,
- -11.03142
- ],
- [
- -65.25053,
- -10.98506
- ],
- [
- -65.27476,
- -10.87302
- ],
- [
- -65.35376,
- -10.78881
- ],
- [
- -65.34667,
- -10.68155
- ],
- [
- -65.40569,
- -10.63935
- ],
- [
- -65.43011,
- -10.48505
- ],
- [
- -65.288,
- -10.219
- ],
- [
- -65.333,
- -9.965
- ],
- [
- -65.28588,
- -9.84413
- ],
- [
- -65.39313,
- -9.68683
- ],
- [
- -65.44394,
- -9.66957
- ],
- [
- -65.4883,
- -9.71015
- ],
- [
- -65.55611,
- -9.84498
- ],
- [
- -65.627,
- -9.83804
- ],
- [
- -65.66963,
- -9.78129
- ],
- [
- -65.71023,
- -9.80857
- ],
- [
- -65.68395,
- -9.74992
- ],
- [
- -65.7432,
- -9.78296
- ],
- [
- -65.77013,
- -9.73442
- ],
- [
- -65.79437,
- -9.79295
- ],
- [
- -65.79962,
- -9.75663
- ],
- [
- -65.86532,
- -9.79533
- ],
- [
- -65.87184,
- -9.75307
- ],
- [
- -65.91976,
- -9.75314
- ],
- [
- -65.98222,
- -9.81011
- ],
- [
- -66.151,
- -9.785
- ],
- [
- -66.426,
- -9.899
- ],
- [
- -66.435,
- -9.866
- ],
- [
- -66.61995,
- -9.89353
- ],
- [
- -66.63701,
- -9.94983
- ],
- [
- -66.8751,
- -10.08268
- ],
- [
- -66.9528,
- -10.18886
- ],
- [
- -66.99683,
- -10.20017
- ],
- [
- -67.01537,
- -10.25919
- ],
- [
- -67.17745,
- -10.33923
- ],
- [
- -67.31545,
- -10.31932
- ],
- [
- -67.31155,
- -10.37716
- ],
- [
- -67.40717,
- -10.37386
- ],
- [
- -67.44361,
- -10.45492
- ],
- [
- -67.57925,
- -10.5028
- ],
- [
- -67.64028,
- -10.59807
- ],
- [
- -67.67631,
- -10.60484
- ],
- [
- -67.70825,
- -10.71083
- ],
- [
- -67.86386,
- -10.64067
- ],
- [
- -68.03289,
- -10.65486
- ],
- [
- -68.10456,
- -10.71426
- ],
- [
- -68.10333,
- -10.77541
- ],
- [
- -68.27819,
- -10.98926
- ],
- [
- -68.71576,
- -11.14483
- ],
- [
- -68.75767,
- -11.00079
- ],
- [
- -68.9118,
- -11.02192
- ],
- [
- -69.41453,
- -10.92575
- ],
- [
- -69.73653,
- -10.97445
- ],
- [
- -69.76903,
- -10.92972
- ],
- [
- -69.93442,
- -10.9219
- ],
- [
- -70.15869,
- -11.04096
- ],
- [
- -70.30672,
- -11.06983
- ],
- [
- -70.43675,
- -11.03923
- ],
- [
- -70.53033,
- -10.93465
- ],
- [
- -70.62103,
- -10.99982
- ],
- [
- -70.62338,
- -9.82054
- ],
- [
- -70.53663,
- -9.76584
- ],
- [
- -70.59972,
- -9.56264
- ],
- [
- -70.55282,
- -9.57093
- ],
- [
- -70.56894,
- -9.53127
- ],
- [
- -70.50506,
- -9.50557
- ],
- [
- -70.49665,
- -9.42489
- ],
- [
- -70.59581,
- -9.4425
- ],
- [
- -70.6632,
- -9.52601
- ],
- [
- -70.75067,
- -9.56043
- ],
- [
- -70.79332,
- -9.63846
- ],
- [
- -70.96337,
- -9.74891
- ],
- [
- -70.99391,
- -9.81721
- ],
- [
- -71.13974,
- -9.85702
- ],
- [
- -71.22052,
- -9.96968
- ],
- [
- -72.1804,
- -9.99967
- ],
- [
- -72.15136,
- -9.79742
- ],
- [
- -72.26296,
- -9.75085
- ],
- [
- -72.25282,
- -9.61633
- ],
- [
- -72.28821,
- -9.60316
- ],
- [
- -72.2829,
- -9.53995
- ],
- [
- -72.35688,
- -9.4946
- ],
- [
- -72.51954,
- -9.49128
- ],
- [
- -72.71676,
- -9.4122
- ],
- [
- -73.2038,
- -9.40715
- ],
- [
- -73.07352,
- -9.23461
- ],
- [
- -73.0093,
- -9.22236
- ],
- [
- -73.02612,
- -9.17786
- ],
- [
- -72.9582,
- -9.14302
- ],
- [
- -72.94091,
- -8.98494
- ],
- [
- -72.99931,
- -8.91778
- ],
- [
- -73.05901,
- -8.90561
- ],
- [
- -73.14992,
- -8.6839
- ],
- [
- -73.20907,
- -8.6857
- ],
- [
- -73.28745,
- -8.61948
- ],
- [
- -73.3055,
- -8.47197
- ],
- [
- -73.38956,
- -8.46878
- ],
- [
- -73.41286,
- -8.41099
- ],
- [
- -73.53744,
- -8.34587
- ],
- [
- -73.62739,
- -8.02187
- ],
- [
- -73.73175,
- -7.9684
- ],
- [
- -73.7725,
- -7.90237
- ],
- [
- -73.76164,
- -7.85803
- ],
- [
- -73.69706,
- -7.86527
- ],
- [
- -73.6843,
- -7.77644
- ],
- [
- -73.82217,
- -7.71788
- ],
- [
- -73.99094,
- -7.53635
- ],
- [
- -73.948,
- -7.52661
- ],
- [
- -73.91981,
- -7.46568
- ],
- [
- -73.96394,
- -7.34764
- ],
- [
- -73.87014,
- -7.37882
- ],
- [
- -73.7003,
- -7.30429
- ],
- [
- -73.79842,
- -7.11306
- ],
- [
- -73.71046,
- -6.84019
- ],
- [
- -73.53639,
- -6.6834
- ],
- [
- -73.39115,
- -6.64193
- ],
- [
- -73.35281,
- -6.59327
- ],
- [
- -73.22741,
- -6.58884
- ],
- [
- -73.18797,
- -6.52302
- ],
- [
- -73.13523,
- -6.51046
- ],
- [
- -73.10473,
- -6.40666
- ],
- [
- -73.24664,
- -6.14963
- ],
- [
- -73.23821,
- -6.04399
- ],
- [
- -73.1868,
- -6.00512
- ],
- [
- -73.15207,
- -5.86796
- ],
- [
- -73.05303,
- -5.79517
- ],
- [
- -72.95912,
- -5.65689
- ],
- [
- -72.95888,
- -5.46613
- ],
- [
- -72.86052,
- -5.27117
- ],
- [
- -72.88725,
- -5.16307
- ],
- [
- -72.73986,
- -5.08859
- ],
- [
- -72.72765,
- -5.05199
- ],
- [
- -72.6212,
- -5.0518
- ],
- [
- -72.598,
- -4.98386
- ],
- [
- -72.38202,
- -4.87296
- ],
- [
- -72.36895,
- -4.80387
- ],
- [
- -72.12601,
- -4.73454
- ],
- [
- -72.04335,
- -4.62384
- ],
- [
- -72.00689,
- -4.64622
- ],
- [
- -71.99464,
- -4.60996
- ],
- [
- -71.94743,
- -4.60877
- ],
- [
- -71.91909,
- -4.5298
- ],
- [
- -71.88549,
- -4.53803
- ],
- [
- -71.9073,
- -4.51644
- ],
- [
- -71.76637,
- -4.50446
- ],
- [
- -71.75109,
- -4.46887
- ],
- [
- -71.70817,
- -4.51165
- ],
- [
- -71.65479,
- -4.47246
- ],
- [
- -71.65032,
- -4.50395
- ],
- [
- -71.61548,
- -4.4687
- ],
- [
- -71.6335,
- -4.51524
- ],
- [
- -71.59625,
- -4.52928
- ],
- [
- -71.53703,
- -4.46442
- ],
- [
- -71.49428,
- -4.48701
- ],
- [
- -71.50716,
- -4.43909
- ],
- [
- -71.43438,
- -4.42882
- ],
- [
- -71.42562,
- -4.47058
- ],
- [
- -71.35026,
- -4.42728
- ],
- [
- -71.30752,
- -4.46288
- ],
- [
- -71.32091,
- -4.42009
- ],
- [
- -71.27782,
- -4.44217
- ],
- [
- -71.26975,
- -4.385
- ],
- [
- -71.20263,
- -4.37987
- ],
- [
- -71.19422,
- -4.42471
- ],
- [
- -71.14478,
- -4.38158
- ],
- [
- -71.11491,
- -4.41119
- ],
- [
- -71.10616,
- -4.37764
- ],
- [
- -70.99389,
- -4.38654
- ],
- [
- -70.99595,
- -4.34632
- ],
- [
- -70.9357,
- -4.38432
- ],
- [
- -70.84483,
- -4.27905
- ],
- [
- -70.86447,
- -4.25245
- ],
- [
- -70.81677,
- -4.23005
- ],
- [
- -70.8458,
- -4.21872
- ],
- [
- -70.75901,
- -4.15944
- ],
- [
- -70.68147,
- -4.20791
- ],
- [
- -70.64256,
- -4.12805
- ],
- [
- -70.62521,
- -4.19151
- ],
- [
- -70.56118,
- -4.1775
- ],
- [
- -70.57357,
- -4.21169
- ],
- [
- -70.54796,
- -4.13671
- ],
- [
- -70.51036,
- -4.14824
- ],
- [
- -70.50417,
- -4.20098
- ],
- [
- -70.48535,
- -4.16132
- ],
- [
- -70.43435,
- -4.16266
- ],
- [
- -70.43146,
- -4.13217
- ],
- [
- -70.33892,
- -4.17997
- ],
- [
- -70.32281,
- -4.14206
- ],
- [
- -70.28769,
- -4.16555
- ],
- [
- -70.29141,
- -4.28709
- ],
- [
- -70.21457,
- -4.29749
- ],
- [
- -70.19194,
- -4.36179
- ],
- [
- -70.15508,
- -4.27308
- ],
- [
- -70.11749,
- -4.28585
- ],
- [
- -70.10881,
- -4.25454
- ],
- [
- -70.04189,
- -4.29409
- ],
- [
- -70.07948,
- -4.31428
- ],
- [
- -70.02826,
- -4.3703
- ],
- [
- -69.99182,
- -4.37482
- ],
- [
- -69.94793,
- -4.23168
- ]
- ],
- [
- [
- -34.00035,
- -3.76654
- ],
- [
- -34.01797,
- -3.84985
- ],
- [
- -34.00664,
- -3.91809
- ],
- [
- -33.98608,
- -3.95952
- ],
- [
- -33.95923,
- -3.99217
- ],
- [
- -33.8921,
- -4.03653
- ],
- [
- -33.81658,
- -4.05077
- ],
- [
- -33.72931,
- -4.03151
- ],
- [
- -33.66638,
- -3.9838
- ],
- [
- -33.62736,
- -3.9185
- ],
- [
- -33.61519,
- -3.84985
- ],
- [
- -33.63239,
- -3.76864
- ],
- [
- -33.68693,
- -3.69537
- ],
- [
- -33.74987,
- -3.65978
- ],
- [
- -33.81658,
- -3.6489
- ],
- [
- -33.89336,
- -3.66397
- ],
- [
- -33.96007,
- -3.70877
- ],
- [
- -34.00035,
- -3.76654
- ]
- ],
- [
- [
- -32.5538,
- -4.00884
- ],
- [
- -32.59937,
- -3.9531
- ],
- [
- -32.64061,
- -3.87309
- ],
- [
- -32.61755,
- -3.73712
- ],
- [
- -32.58338,
- -3.70527
- ],
- [
- -32.54228,
- -3.65606
- ],
- [
- -32.4592,
- -3.63029
- ],
- [
- -32.35174,
- -3.63887
- ],
- [
- -32.30049,
- -3.67684
- ],
- [
- -32.24749,
- -3.75266
- ],
- [
- -32.23155,
- -3.81889
- ],
- [
- -32.2357,
- -3.90247
- ],
- [
- -32.30194,
- -3.9883
- ],
- [
- -32.42898,
- -4.0384
- ],
- [
- -32.5538,
- -4.00884
- ]
- ],
- [
- [
- -29.50321,
- 0.79391
- ],
- [
- -29.54097,
- 0.8689
- ],
- [
- -29.54727,
- 0.92553
- ],
- [
- -29.52367,
- 0.99422
- ],
- [
- -29.48958,
- 1.06134
- ],
- [
- -29.43136,
- 1.10224
- ],
- [
- -29.35899,
- 1.1206
- ],
- [
- -29.29238,
- 1.11378
- ],
- [
- -29.22158,
- 1.0776
- ],
- [
- -29.16285,
- 1.00314
- ],
- [
- -29.14501,
- 0.92605
- ],
- [
- -29.14764,
- 0.88358
- ],
- [
- -29.17176,
- 0.8196
- ],
- [
- -29.24885,
- 0.74357
- ],
- [
- -29.29448,
- 0.72521
- ],
- [
- -29.36371,
- 0.71892
- ],
- [
- -29.43556,
- 0.73937
- ],
- [
- -29.50321,
- 0.79391
- ]
- ],
- [
- [
- -29.09537,
- -20.42649
- ],
- [
- -29.19756,
- -20.33509
- ],
- [
- -29.3343,
- -20.28932
- ],
- [
- -29.46741,
- -20.3288
- ],
- [
- -29.54604,
- -20.42958
- ],
- [
- -29.55396,
- -20.52706
- ],
- [
- -29.51696,
- -20.62613
- ],
- [
- -29.40995,
- -20.68955
- ],
- [
- -29.27599,
- -20.72578
- ],
- [
- -29.15968,
- -20.66209
- ],
- [
- -29.07188,
- -20.57088
- ],
- [
- -28.9712,
- -20.64769
- ],
- [
- -28.83286,
- -20.69814
- ],
- [
- -28.67968,
- -20.62099
- ],
- [
- -28.63549,
- -20.49284
- ],
- [
- -28.63412,
- -20.47146
- ],
- [
- -28.7431,
- -20.30094
- ],
- [
- -28.8683,
- -20.27288
- ],
- [
- -29.0031,
- -20.32416
- ],
- [
- -29.09537,
- -20.42649
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE"
- },
- "country_code": "BR",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png",
- "id": "IBGE_Setores_Urbanos",
- "license_url": "https://wiki.openstreetmap.org/wiki/IBGE_Tile_Layer",
- "max_zoom": 19,
- "name": "IBGE Mapa de Setores Urbanos",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.hgda0m6h/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -69.94793,
- -4.23168
- ],
- [
- -69.45659,
- -1.49119
- ],
- [
- -69.3973,
- -1.36508
- ],
- [
- -69.42989,
- -1.22173
- ],
- [
- -69.39523,
- -1.12555
- ],
- [
- -69.44292,
- -1.03351
- ],
- [
- -69.41861,
- -0.99827
- ],
- [
- -69.528,
- -0.92514
- ],
- [
- -69.52577,
- -0.86807
- ],
- [
- -69.62491,
- -0.74667
- ],
- [
- -69.56179,
- -0.63692
- ],
- [
- -69.60783,
- -0.5008
- ],
- [
- -69.8446,
- -0.33732
- ],
- [
- -69.92054,
- -0.32573
- ],
- [
- -70.04323,
- -0.18998
- ],
- [
- -70.04302,
- 0.56359
- ],
- [
- -69.80272,
- 0.57162
- ],
- [
- -69.6711,
- 0.66759
- ],
- [
- -69.60529,
- 0.61328
- ],
- [
- -69.59701,
- 0.6542
- ],
- [
- -69.48002,
- 0.73577
- ],
- [
- -69.35277,
- 0.61416
- ],
- [
- -69.28914,
- 0.64997
- ],
- [
- -69.29484,
- 0.60389
- ],
- [
- -69.19975,
- 0.60591
- ],
- [
- -69.19425,
- 0.64982
- ],
- [
- -69.11563,
- 0.64484
- ],
- [
- -69.19001,
- 0.74056
- ],
- [
- -69.14881,
- 0.76751
- ],
- [
- -69.13576,
- 0.87204
- ],
- [
- -69.18846,
- 0.91324
- ],
- [
- -69.1646,
- 0.94156
- ],
- [
- -69.21679,
- 0.97245
- ],
- [
- -69.19773,
- 0.99974
- ],
- [
- -69.24494,
- 1.05655
- ],
- [
- -69.37641,
- 1.08794
- ],
- [
- -69.42312,
- 1.04265
- ],
- [
- -69.60989,
- 1.09826
- ],
- [
- -69.67718,
- 1.06994
- ],
- [
- -69.70963,
- 1.11817
- ],
- [
- -69.84266,
- 1.07272
- ],
- [
- -69.83972,
- 1.71893
- ],
- [
- -69.78236,
- 1.69244
- ],
- [
- -69.53464,
- 1.77691
- ],
- [
- -69.39109,
- 1.72935
- ],
- [
- -68.1645,
- 1.72945
- ],
- [
- -68.19207,
- 1.7797
- ],
- [
- -68.23954,
- 1.77044
- ],
- [
- -68.22688,
- 1.82918
- ],
- [
- -68.28555,
- 1.83084
- ],
- [
- -68.19583,
- 2.03479
- ],
- [
- -68.18033,
- 1.9767
- ],
- [
- -68.14417,
- 1.97854
- ],
- [
- -68.09043,
- 1.89774
- ],
- [
- -67.90162,
- 1.81165
- ],
- [
- -67.76942,
- 2.00924
- ],
- [
- -67.55095,
- 2.04769
- ],
- [
- -67.49519,
- 2.16312
- ],
- [
- -67.39404,
- 2.22894
- ],
- [
- -67.32672,
- 2.06387
- ],
- [
- -67.33083,
- 1.94158
- ],
- [
- -67.22831,
- 1.84127
- ],
- [
- -67.15384,
- 1.8315
- ],
- [
- -67.15922,
- 1.67504
- ],
- [
- -67.08017,
- 1.38546
- ],
- [
- -67.13923,
- 1.32002
- ],
- [
- -67.08675,
- 1.16704
- ],
- [
- -66.85119,
- 1.22896
- ],
- [
- -66.31032,
- 0.74494
- ],
- [
- -66.19737,
- 0.78161
- ],
- [
- -66.07783,
- 0.76174
- ],
- [
- -66.07024,
- 0.8123
- ],
- [
- -65.96712,
- 0.81511
- ],
- [
- -65.88369,
- 0.94159
- ],
- [
- -65.77261,
- 0.95859
- ],
- [
- -65.7421,
- 1.00125
- ],
- [
- -65.58894,
- 1.00471
- ],
- [
- -65.49624,
- 0.87415
- ],
- [
- -65.60623,
- 0.70748
- ],
- [
- -65.54116,
- 0.64881
- ],
- [
- -65.44499,
- 0.68921
- ],
- [
- -65.39213,
- 0.75692
- ],
- [
- -65.41198,
- 0.82415
- ],
- [
- -65.32734,
- 0.93596
- ],
- [
- -65.21302,
- 0.90282
- ],
- [
- -65.1749,
- 0.94131
- ],
- [
- -65.15831,
- 1.1246
- ],
- [
- -65.07232,
- 1.15303
- ],
- [
- -65.06317,
- 1.11205
- ],
- [
- -65.01361,
- 1.10905
- ],
- [
- -64.97445,
- 1.20288
- ],
- [
- -64.90439,
- 1.25153
- ],
- [
- -64.86966,
- 1.22713
- ],
- [
- -64.80053,
- 1.31527
- ],
- [
- -64.74446,
- 1.22569
- ],
- [
- -64.5789,
- 1.34041
- ],
- [
- -64.52608,
- 1.44322
- ],
- [
- -64.43586,
- 1.47006
- ],
- [
- -64.3939,
- 1.52901
- ],
- [
- -64.35111,
- 1.52921
- ],
- [
- -64.34777,
- 1.49508
- ],
- [
- -64.41019,
- 1.40301
- ],
- [
- -64.33791,
- 1.36134
- ],
- [
- -64.3136,
- 1.45617
- ],
- [
- -64.19707,
- 1.52071
- ],
- [
- -64.0735,
- 1.64902
- ],
- [
- -64.05781,
- 1.92899
- ],
- [
- -63.97219,
- 1.99194
- ],
- [
- -63.83555,
- 1.96644
- ],
- [
- -63.71155,
- 2.04645
- ],
- [
- -63.66501,
- 2.01861
- ],
- [
- -63.6268,
- 2.11222
- ],
- [
- -63.56474,
- 2.13571
- ],
- [
- -63.44059,
- 2.126
- ],
- [
- -63.36742,
- 2.26864
- ],
- [
- -63.37088,
- 2.41121
- ],
- [
- -63.42123,
- 2.45102
- ],
- [
- -63.46036,
- 2.39684
- ],
- [
- -63.56398,
- 2.44573
- ],
- [
- -63.76805,
- 2.43994
- ],
- [
- -63.84358,
- 2.4916
- ],
- [
- -64.01914,
- 2.46135
- ],
- [
- -64.0573,
- 2.49752
- ],
- [
- -63.98033,
- 2.7237
- ],
- [
- -64.07709,
- 2.87262
- ],
- [
- -64.07156,
- 2.92142
- ],
- [
- -64.12349,
- 2.99048
- ],
- [
- -64.15754,
- 2.98243
- ],
- [
- -64.14592,
- 3.03459
- ],
- [
- -64.22642,
- 3.12356
- ],
- [
- -64.19795,
- 3.20121
- ],
- [
- -64.2444,
- 3.43036
- ],
- [
- -64.17437,
- 3.56841
- ],
- [
- -64.281,
- 3.70928
- ],
- [
- -64.54357,
- 3.85713
- ],
- [
- -64.72239,
- 4.11775
- ],
- [
- -64.80203,
- 4.17422
- ],
- [
- -64.81123,
- 4.27048
- ],
- [
- -64.69522,
- 4.25323
- ],
- [
- -64.623,
- 4.135
- ],
- [
- -64.5565,
- 4.10529
- ],
- [
- -64.164,
- 4.127
- ],
- [
- -63.964,
- 3.868
- ],
- [
- -63.928,
- 3.925
- ],
- [
- -63.85,
- 3.95
- ],
- [
- -63.682,
- 3.908
- ],
- [
- -63.676,
- 4.019
- ],
- [
- -63.591,
- 3.886
- ],
- [
- -63.497,
- 3.84
- ],
- [
- -63.489,
- 3.874
- ],
- [
- -63.434,
- 3.865
- ],
- [
- -63.428,
- 3.977
- ],
- [
- -63.204,
- 3.952
- ],
- [
- -63.226,
- 3.836
- ],
- [
- -63.103,
- 3.794
- ],
- [
- -63.059,
- 3.748
- ],
- [
- -63.081,
- 3.694
- ],
- [
- -62.96,
- 3.608
- ],
- [
- -62.835,
- 3.739
- ],
- [
- -62.743,
- 3.674
- ],
- [
- -62.729,
- 3.805
- ],
- [
- -62.788,
- 3.894
- ],
- [
- -62.753,
- 4.032
- ],
- [
- -62.555,
- 4.019
- ],
- [
- -62.552,
- 4.109
- ],
- [
- -62.437,
- 4.183
- ],
- [
- -62.14308,
- 4.07768
- ],
- [
- -62.071,
- 4.126
- ],
- [
- -62.076,
- 4.154
- ],
- [
- -61.982,
- 4.181
- ],
- [
- -61.93175,
- 4.12009
- ],
- [
- -61.92213,
- 4.16126
- ],
- [
- -61.824,
- 4.164
- ],
- [
- -61.802,
- 4.229
- ],
- [
- -61.724,
- 4.27
- ],
- [
- -61.56,
- 4.252
- ],
- [
- -61.508,
- 4.322
- ],
- [
- -61.513,
- 4.406
- ],
- [
- -61.288,
- 4.458
- ],
- [
- -61.323,
- 4.535
- ],
- [
- -61.217,
- 4.536
- ],
- [
- -61.14559,
- 4.48016
- ],
- [
- -61.095,
- 4.522
- ],
- [
- -60.994,
- 4.519
- ],
- [
- -60.932,
- 4.587
- ],
- [
- -60.949,
- 4.653
- ],
- [
- -60.899,
- 4.717
- ],
- [
- -60.751,
- 4.756
- ],
- [
- -60.591,
- 4.927
- ],
- [
- -60.661,
- 5.164
- ],
- [
- -60.73197,
- 5.21203
- ],
- [
- -60.434,
- 5.182
- ],
- [
- -60.20825,
- 5.28346
- ],
- [
- -60.172,
- 5.227
- ],
- [
- -60.135,
- 5.249
- ],
- [
- -60.094,
- 5.14
- ],
- [
- -59.96984,
- 5.06334
- ],
- [
- -60.02524,
- 4.7065
- ],
- [
- -60.0705,
- 4.61688
- ],
- [
- -60.15725,
- 4.57247
- ],
- [
- -60.16114,
- 4.51773
- ],
- [
- -59.79503,
- 4.46554
- ],
- [
- -59.66948,
- 4.37629
- ],
- [
- -59.7319,
- 4.28587
- ],
- [
- -59.73069,
- 4.18076
- ],
- [
- -59.61818,
- 4.13166
- ],
- [
- -59.65406,
- 4.06943
- ],
- [
- -59.58417,
- 3.96851
- ],
- [
- -59.5153,
- 3.94493
- ],
- [
- -59.59279,
- 3.88538
- ],
- [
- -59.59631,
- 3.79386
- ],
- [
- -59.66555,
- 3.78126
- ],
- [
- -59.66842,
- 3.70277
- ],
- [
- -59.86728,
- 3.57776
- ],
- [
- -59.80205,
- 3.50156
- ],
- [
- -59.8408,
- 3.43174
- ],
- [
- -59.80488,
- 3.35695
- ],
- [
- -59.907,
- 3.212
- ],
- [
- -59.98944,
- 2.88185
- ],
- [
- -59.99,
- 2.686
- ],
- [
- -59.895,
- 2.482
- ],
- [
- -59.89872,
- 2.36245
- ],
- [
- -59.72315,
- 2.27614
- ],
- [
- -59.751,
- 1.859
- ],
- [
- -59.677,
- 1.839
- ],
- [
- -59.663,
- 1.871
- ],
- [
- -59.69,
- 1.757
- ],
- [
- -59.539,
- 1.723
- ],
- [
- -59.381,
- 1.507
- ],
- [
- -59.329,
- 1.514
- ],
- [
- -59.327,
- 1.464
- ],
- [
- -59.284,
- 1.45
- ],
- [
- -59.253,
- 1.389
- ],
- [
- -58.978,
- 1.302
- ],
- [
- -58.918,
- 1.317
- ],
- [
- -58.886,
- 1.261
- ],
- [
- -58.912,
- 1.239
- ],
- [
- -58.82512,
- 1.17127
- ],
- [
- -58.73956,
- 1.1999
- ],
- [
- -58.69456,
- 1.29732
- ],
- [
- -58.49622,
- 1.26796
- ],
- [
- -58.45787,
- 1.37145
- ],
- [
- -58.50511,
- 1.40317
- ],
- [
- -58.50873,
- 1.46295
- ],
- [
- -58.38559,
- 1.46999
- ],
- [
- -58.39472,
- 1.52651
- ],
- [
- -58.32237,
- 1.59702
- ],
- [
- -58.236,
- 1.54669
- ],
- [
- -58.16064,
- 1.56011
- ],
- [
- -58.12942,
- 1.4989
- ],
- [
- -58.00423,
- 1.50303
- ],
- [
- -57.99009,
- 1.65844
- ],
- [
- -57.85206,
- 1.66782
- ],
- [
- -57.77431,
- 1.72973
- ],
- [
- -57.70509,
- 1.73093
- ],
- [
- -57.65042,
- 1.68237
- ],
- [
- -57.5376,
- 1.7005
- ],
- [
- -57.50187,
- 1.78609
- ],
- [
- -57.43776,
- 1.82681
- ],
- [
- -57.43343,
- 1.90598
- ],
- [
- -57.36768,
- 1.92372
- ],
- [
- -57.36912,
- 1.95638
- ],
- [
- -57.30712,
- 1.99665
- ],
- [
- -57.22923,
- 1.93759
- ],
- [
- -57.08668,
- 2.02644
- ],
- [
- -57.01421,
- 1.91489
- ],
- [
- -56.91971,
- 1.93036
- ],
- [
- -56.79793,
- 1.85336
- ],
- [
- -56.72096,
- 1.92582
- ],
- [
- -56.62145,
- 1.94588
- ],
- [
- -56.57976,
- 1.90588
- ],
- [
- -56.45126,
- 1.95614
- ],
- [
- -56.24404,
- 1.87808
- ],
- [
- -56.1709,
- 1.90048
- ],
- [
- -56.11762,
- 1.85097
- ],
- [
- -55.95638,
- 1.84509
- ],
- [
- -55.90385,
- 1.88803
- ],
- [
- -55.93635,
- 1.98647
- ],
- [
- -55.9031,
- 2.04108
- ],
- [
- -56.00307,
- 2.1676
- ],
- [
- -56.05505,
- 2.18464
- ],
- [
- -56.04288,
- 2.22778
- ],
- [
- -56.13887,
- 2.26574
- ],
- [
- -56.09012,
- 2.37228
- ],
- [
- -56.02181,
- 2.34247
- ],
- [
- -55.97052,
- 2.52931
- ],
- [
- -55.76663,
- 2.45524
- ],
- [
- -55.71028,
- 2.39917
- ],
- [
- -55.49971,
- 2.44324
- ],
- [
- -55.38533,
- 2.41836
- ],
- [
- -55.32019,
- 2.51537
- ],
- [
- -55.23474,
- 2.50338
- ],
- [
- -55.1234,
- 2.56762
- ],
- [
- -55.10302,
- 2.52564
- ],
- [
- -54.95424,
- 2.58359
- ],
- [
- -54.86846,
- 2.43989
- ],
- [
- -54.68917,
- 2.45389
- ],
- [
- -54.68861,
- 2.32472
- ],
- [
- -54.54667,
- 2.31833
- ],
- [
- -54.53778,
- 2.26556
- ],
- [
- -54.46861,
- 2.21306
- ],
- [
- -54.24917,
- 2.14667
- ],
- [
- -54.18056,
- 2.1725
- ],
- [
- -54.11083,
- 2.11222
- ],
- [
- -54.06139,
- 2.19167
- ],
- [
- -53.94083,
- 2.21917
- ],
- [
- -53.93194,
- 2.27194
- ],
- [
- -53.88667,
- 2.26778
- ],
- [
- -53.745,
- 2.37389
- ],
- [
- -53.73389,
- 2.31222
- ],
- [
- -53.52972,
- 2.24917
- ],
- [
- -53.45861,
- 2.2575
- ],
- [
- -53.32833,
- 2.35333
- ],
- [
- -53.21667,
- 2.25333
- ],
- [
- -53.27899,
- 2.18603
- ],
- [
- -53.11861,
- 2.2225
- ],
- [
- -52.99472,
- 2.17528
- ],
- [
- -52.90972,
- 2.19583
- ],
- [
- -52.84722,
- 2.28556
- ],
- [
- -52.67528,
- 2.37389
- ],
- [
- -52.59444,
- 2.47389
- ],
- [
- -52.54028,
- 2.57028
- ],
- [
- -52.56417,
- 2.63944
- ],
- [
- -52.43944,
- 2.87778
- ],
- [
- -52.39583,
- 2.90222
- ],
- [
- -52.33187,
- 3.16938
- ],
- [
- -52.21472,
- 3.26833
- ],
- [
- -51.97104,
- 3.70696
- ],
- [
- -51.92148,
- 3.72422
- ],
- [
- -51.922,
- 3.7792
- ],
- [
- -51.79731,
- 3.88888
- ],
- [
- -51.77783,
- 3.97406
- ],
- [
- -51.65867,
- 4.05276
- ],
- [
- -51.61325,
- 4.17437
- ],
- [
- -51.63716,
- 4.50834
- ],
- [
- -51.49427,
- 4.67426
- ],
- [
- -51.11466,
- 4.42286
- ],
- [
- -50.94232,
- 4.20165
- ],
- [
- -50.85475,
- 3.92491
- ],
- [
- -50.85507,
- 3.45573
- ],
- [
- -50.75331,
- 2.94057
- ],
- [
- -50.29908,
- 2.33079
- ],
- [
- -49.73896,
- 1.79143
- ],
- [
- -48.23746,
- -0.07449
- ],
- [
- -44.84728,
- -1.07246
- ],
- [
- -43.54602,
- -2.04705
- ],
- [
- -43.24389,
- -2.12403
- ],
- [
- -42.78189,
- -2.33053
- ],
- [
- -41.78084,
- -2.51859
- ],
- [
- -41.5085,
- -2.68486
- ],
- [
- -40.66365,
- -2.63829
- ],
- [
- -40.50396,
- -2.57531
- ],
- [
- -39.8907,
- -2.65328
- ],
- [
- -39.15187,
- -3.04444
- ],
- [
- -38.57151,
- -3.48047
- ],
- [
- -38.34306,
- -3.54434
- ],
- [
- -38.21421,
- -3.74103
- ],
- [
- -38.12555,
- -3.80544
- ],
- [
- -37.90182,
- -4.07265
- ],
- [
- -37.77934,
- -4.18046
- ],
- [
- -37.63401,
- -4.24454
- ],
- [
- -37.51218,
- -4.41535
- ],
- [
- -37.22122,
- -4.51045
- ],
- [
- -37.07874,
- -4.71355
- ],
- [
- -36.91716,
- -4.71372
- ],
- [
- -36.62299,
- -4.85815
- ],
- [
- -36.18969,
- -4.88505
- ],
- [
- -35.93627,
- -4.83327
- ],
- [
- -35.56471,
- -4.90758
- ],
- [
- -35.33677,
- -4.99239
- ],
- [
- -35.17659,
- -5.12497
- ],
- [
- -34.79469,
- -6.33583
- ],
- [
- -34.71587,
- -6.74615
- ],
- [
- -34.62306,
- -6.90323
- ],
- [
- -34.59953,
- -7.11133
- ],
- [
- -34.64374,
- -7.98735
- ],
- [
- -34.81497,
- -8.62472
- ],
- [
- -35.0253,
- -9.13761
- ],
- [
- -35.55848,
- -9.81261
- ],
- [
- -35.69663,
- -9.90026
- ],
- [
- -35.96401,
- -10.31281
- ],
- [
- -36.06155,
- -10.37447
- ],
- [
- -36.26639,
- -10.64593
- ],
- [
- -36.61764,
- -10.81082
- ],
- [
- -36.78725,
- -10.95151
- ],
- [
- -36.99511,
- -11.29602
- ],
- [
- -37.11368,
- -11.41261
- ],
- [
- -37.46002,
- -12.10275
- ],
- [
- -37.89668,
- -12.75844
- ],
- [
- -38.22146,
- -13.09717
- ],
- [
- -38.61146,
- -13.26537
- ],
- [
- -38.85337,
- -14.65508
- ],
- [
- -38.74388,
- -15.60089
- ],
- [
- -38.66456,
- -15.74741
- ],
- [
- -38.64697,
- -15.88327
- ],
- [
- -38.8013,
- -16.24838
- ],
- [
- -38.92933,
- -16.80775
- ],
- [
- -38.53193,
- -17.80026
- ],
- [
- -38.49171,
- -18.0046
- ],
- [
- -38.53661,
- -18.09683
- ],
- [
- -38.67053,
- -18.16855
- ],
- [
- -39.35288,
- -18.10892
- ],
- [
- -39.4675,
- -18.30359
- ],
- [
- -39.54529,
- -18.78548
- ],
- [
- -39.49227,
- -19.40134
- ],
- [
- -39.63477,
- -19.74403
- ],
- [
- -39.86353,
- -19.88681
- ],
- [
- -40.17827,
- -20.75426
- ],
- [
- -40.81442,
- -21.67672
- ],
- [
- -40.76948,
- -21.87786
- ],
- [
- -40.81442,
- -22.09702
- ],
- [
- -41.5086,
- -22.52638
- ],
- [
- -41.59666,
- -22.83627
- ],
- [
- -41.79292,
- -23.08823
- ],
- [
- -41.91484,
- -23.18527
- ],
- [
- -43.19603,
- -23.26703
- ],
- [
- -44.07735,
- -23.40501
- ],
- [
- -45.13508,
- -24.12014
- ],
- [
- -46.61368,
- -24.67512
- ],
- [
- -47.85376,
- -25.47012
- ],
- [
- -48.2801,
- -26.23036
- ],
- [
- -48.34897,
- -26.75081
- ],
- [
- -48.11076,
- -27.28208
- ],
- [
- -48.21148,
- -27.85592
- ],
- [
- -48.40713,
- -28.43255
- ],
- [
- -48.68615,
- -28.76016
- ],
- [
- -48.9156,
- -28.86305
- ],
- [
- -49.1579,
- -29.02871
- ],
- [
- -49.52748,
- -29.42005
- ],
- [
- -49.82565,
- -29.86559
- ],
- [
- -50.17344,
- -30.64282
- ],
- [
- -50.60441,
- -31.24135
- ],
- [
- -51.18785,
- -31.77646
- ],
- [
- -51.74211,
- -32.10539
- ],
- [
- -51.89236,
- -32.29596
- ],
- [
- -52.06117,
- -32.38504
- ],
- [
- -52.27087,
- -32.92102
- ],
- [
- -52.45986,
- -33.25369
- ],
- [
- -52.61505,
- -33.42291
- ],
- [
- -53.18109,
- -33.86891
- ],
- [
- -53.43053,
- -33.73947
- ],
- [
- -53.43951,
- -33.69347
- ],
- [
- -53.53228,
- -33.6888
- ],
- [
- -53.51819,
- -33.15342
- ],
- [
- -53.44438,
- -33.05296
- ],
- [
- -53.24468,
- -32.93489
- ],
- [
- -53.31008,
- -32.91875
- ],
- [
- -53.29454,
- -32.89931
- ],
- [
- -53.18496,
- -32.85043
- ],
- [
- -53.14569,
- -32.79202
- ],
- [
- -53.0858,
- -32.78835
- ],
- [
- -53.07558,
- -32.74088
- ],
- [
- -53.24992,
- -32.6041
- ],
- [
- -53.39137,
- -32.58573
- ],
- [
- -53.46423,
- -32.48446
- ],
- [
- -53.58321,
- -32.45192
- ],
- [
- -53.74599,
- -32.07848
- ],
- [
- -53.83375,
- -32.05524
- ],
- [
- -53.84978,
- -32.00064
- ],
- [
- -53.96073,
- -31.95532
- ],
- [
- -53.96972,
- -31.91765
- ],
- [
- -54.10019,
- -31.92825
- ],
- [
- -54.4549,
- -31.65295
- ],
- [
- -54.4528,
- -31.59959
- ],
- [
- -54.58676,
- -31.45656
- ],
- [
- -54.8367,
- -31.442
- ],
- [
- -54.88623,
- -31.3773
- ],
- [
- -54.94087,
- -31.38068
- ],
- [
- -55.00723,
- -31.26692
- ],
- [
- -55.07446,
- -31.33216
- ],
- [
- -55.24003,
- -31.26062
- ],
- [
- -55.29118,
- -31.14226
- ],
- [
- -55.34037,
- -31.13144
- ],
- [
- -55.34981,
- -31.03922
- ],
- [
- -55.42306,
- -31.01823
- ],
- [
- -55.57742,
- -30.83309
- ],
- [
- -55.65834,
- -30.864
- ],
- [
- -55.66621,
- -30.95395
- ],
- [
- -55.723,
- -30.943
- ],
- [
- -55.727,
- -30.979
- ],
- [
- -55.882,
- -31.077
- ],
- [
- -56.00989,
- -31.08267
- ],
- [
- -56.02241,
- -30.78565
- ],
- [
- -56.12508,
- -30.73871
- ],
- [
- -56.17074,
- -30.61517
- ],
- [
- -56.26095,
- -30.58509
- ],
- [
- -56.29193,
- -30.51967
- ],
- [
- -56.38177,
- -30.49956
- ],
- [
- -56.46126,
- -30.38486
- ],
- [
- -56.54706,
- -30.35946
- ],
- [
- -56.54115,
- -30.31291
- ],
- [
- -56.6187,
- -30.30054
- ],
- [
- -56.64628,
- -30.20346
- ],
- [
- -56.77662,
- -30.1633
- ],
- [
- -56.80777,
- -30.10301
- ],
- [
- -57.07113,
- -30.08671
- ],
- [
- -57.22081,
- -30.28928
- ],
- [
- -57.31303,
- -30.25785
- ],
- [
- -57.39229,
- -30.30474
- ],
- [
- -57.46574,
- -30.26589
- ],
- [
- -57.52431,
- -30.28569
- ],
- [
- -57.56087,
- -30.21134
- ],
- [
- -57.64744,
- -30.19483
- ],
- [
- -57.48047,
- -30.12315
- ],
- [
- -57.33713,
- -29.99284
- ],
- [
- -57.294,
- -29.831
- ],
- [
- -57.121,
- -29.765
- ],
- [
- -56.89888,
- -29.53179
- ],
- [
- -56.81905,
- -29.48816
- ],
- [
- -56.76618,
- -29.37768
- ],
- [
- -56.70164,
- -29.35913
- ],
- [
- -56.59315,
- -29.12516
- ],
- [
- -56.418,
- -29.075
- ],
- [
- -56.40775,
- -28.9748
- ],
- [
- -56.29995,
- -28.89614
- ],
- [
- -56.29652,
- -28.8027
- ],
- [
- -56.17858,
- -28.75922
- ],
- [
- -56.00984,
- -28.60718
- ],
- [
- -56.01249,
- -28.50873
- ],
- [
- -55.88357,
- -28.47923
- ],
- [
- -55.87739,
- -28.36159
- ],
- [
- -55.75157,
- -28.37095
- ],
- [
- -55.69433,
- -28.42204
- ],
- [
- -55.67047,
- -28.33218
- ],
- [
- -55.77415,
- -28.27414
- ],
- [
- -55.7757,
- -28.24481
- ],
- [
- -55.63167,
- -28.17719
- ],
- [
- -55.60747,
- -28.11604
- ],
- [
- -55.55957,
- -28.16523
- ],
- [
- -55.4952,
- -28.07682
- ],
- [
- -55.44611,
- -28.09787
- ],
- [
- -55.368,
- -28.029
- ],
- [
- -55.38299,
- -27.97948
- ],
- [
- -55.343,
- -27.972
- ],
- [
- -55.32706,
- -27.92664
- ],
- [
- -55.26574,
- -27.92969
- ],
- [
- -55.196,
- -27.856
- ],
- [
- -55.133,
- -27.897
- ],
- [
- -55.106,
- -27.846
- ],
- [
- -55.035,
- -27.858
- ],
- [
- -55.081,
- -27.779
- ],
- [
- -54.936,
- -27.772
- ],
- [
- -54.90617,
- -27.63871
- ],
- [
- -54.85,
- -27.624
- ],
- [
- -54.814,
- -27.533
- ],
- [
- -54.775,
- -27.586
- ],
- [
- -54.67926,
- -27.57394
- ],
- [
- -54.67709,
- -27.508
- ],
- [
- -54.621,
- -27.541
- ],
- [
- -54.574,
- -27.453
- ],
- [
- -54.5246,
- -27.5059
- ],
- [
- -54.444,
- -27.472
- ],
- [
- -54.47081,
- -27.42674
- ],
- [
- -54.41,
- -27.405
- ],
- [
- -54.35466,
- -27.46528
- ],
- [
- -54.34067,
- -27.40311
- ],
- [
- -54.28484,
- -27.44819
- ],
- [
- -54.261,
- -27.397
- ],
- [
- -54.21736,
- -27.38603
- ],
- [
- -54.172,
- -27.254
- ],
- [
- -54.15619,
- -27.29619
- ],
- [
- -54.08872,
- -27.30149
- ],
- [
- -54.01026,
- -27.19978
- ],
- [
- -53.96219,
- -27.19698
- ],
- [
- -53.95195,
- -27.15169
- ],
- [
- -53.79879,
- -27.14629
- ],
- [
- -53.80233,
- -27.04028
- ],
- [
- -53.76087,
- -27.06543
- ],
- [
- -53.78585,
- -27.02674
- ],
- [
- -53.7473,
- -27.03218
- ],
- [
- -53.7092,
- -26.93414
- ],
- [
- -53.67125,
- -26.94222
- ],
- [
- -53.69684,
- -26.86015
- ],
- [
- -53.66059,
- -26.85814
- ],
- [
- -53.75814,
- -26.72045
- ],
- [
- -53.7205,
- -26.65099
- ],
- [
- -53.75864,
- -26.64113
- ],
- [
- -53.63739,
- -26.24968
- ],
- [
- -53.742,
- -26.108
- ],
- [
- -53.73409,
- -26.04333
- ],
- [
- -53.83619,
- -25.97166
- ],
- [
- -53.82214,
- -25.79377
- ],
- [
- -53.89113,
- -25.62286
- ],
- [
- -53.94895,
- -25.6117
- ],
- [
- -53.95638,
- -25.64628
- ],
- [
- -54.01,
- -25.567
- ],
- [
- -54.07592,
- -25.55766
- ],
- [
- -54.098,
- -25.619
- ],
- [
- -54.099,
- -25.495
- ],
- [
- -54.206,
- -25.541
- ],
- [
- -54.178,
- -25.584
- ],
- [
- -54.23,
- -25.562
- ],
- [
- -54.25,
- -25.597
- ],
- [
- -54.28,
- -25.556
- ],
- [
- -54.38395,
- -25.59747
- ],
- [
- -54.43288,
- -25.69756
- ],
- [
- -54.4927,
- -25.6181
- ],
- [
- -54.59354,
- -25.59275
- ],
- [
- -54.61941,
- -25.45312
- ],
- [
- -54.4295,
- -25.15915
- ],
- [
- -54.43548,
- -24.94769
- ],
- [
- -54.32437,
- -24.66059
- ],
- [
- -54.32714,
- -24.47073
- ],
- [
- -54.25877,
- -24.36377
- ],
- [
- -54.34537,
- -24.14705
- ],
- [
- -54.28223,
- -24.07336
- ],
- [
- -54.43984,
- -23.90446
- ],
- [
- -54.66978,
- -23.81262
- ],
- [
- -54.70533,
- -23.86452
- ],
- [
- -54.89,
- -23.898
- ],
- [
- -54.924,
- -23.959
- ],
- [
- -55.06223,
- -23.99335
- ],
- [
- -55.107,
- -23.961
- ],
- [
- -55.22907,
- -24.01383
- ],
- [
- -55.30415,
- -23.96504
- ],
- [
- -55.34542,
- -23.99458
- ],
- [
- -55.41423,
- -23.9645
- ],
- [
- -55.44167,
- -23.70084
- ],
- [
- -55.47306,
- -23.64834
- ],
- [
- -55.53989,
- -23.625
- ],
- [
- -55.52356,
- -23.19733
- ],
- [
- -55.54199,
- -23.1561
- ],
- [
- -55.59635,
- -23.14993
- ],
- [
- -55.66578,
- -22.85274
- ],
- [
- -55.61432,
- -22.65521
- ],
- [
- -55.72364,
- -22.55166
- ],
- [
- -55.74302,
- -22.39266
- ],
- [
- -55.78939,
- -22.3846
- ],
- [
- -55.84304,
- -22.28725
- ],
- [
- -56.20983,
- -22.27805
- ],
- [
- -56.36485,
- -22.16949
- ],
- [
- -56.39404,
- -22.07434
- ],
- [
- -56.50711,
- -22.09561
- ],
- [
- -56.63705,
- -22.26341
- ],
- [
- -56.70344,
- -22.21693
- ],
- [
- -56.72026,
- -22.26479
- ],
- [
- -56.79344,
- -22.24238
- ],
- [
- -56.84285,
- -22.30155
- ],
- [
- -56.88343,
- -22.24755
- ],
- [
- -56.9967,
- -22.22246
- ],
- [
- -57.3744,
- -22.23204
- ],
- [
- -57.5804,
- -22.17534
- ],
- [
- -57.6106,
- -22.09462
- ],
- [
- -57.70751,
- -22.09111
- ],
- [
- -57.80183,
- -22.15072
- ],
- [
- -57.99384,
- -22.09023
- ],
- [
- -58.00946,
- -22.04038
- ],
- [
- -57.91281,
- -21.88266
- ],
- [
- -57.96603,
- -21.85045
- ],
- [
- -57.90866,
- -21.77355
- ],
- [
- -57.94714,
- -21.74413
- ],
- [
- -57.88329,
- -21.68903
- ],
- [
- -57.93436,
- -21.65037
- ],
- [
- -57.91387,
- -21.59021
- ],
- [
- -57.96795,
- -21.52432
- ],
- [
- -57.8535,
- -21.33109
- ],
- [
- -57.92019,
- -21.27655
- ],
- [
- -57.85066,
- -21.22407
- ],
- [
- -57.86834,
- -21.04417
- ],
- [
- -57.81919,
- -20.94066
- ],
- [
- -57.92836,
- -20.90036
- ],
- [
- -57.8552,
- -20.83403
- ],
- [
- -57.89863,
- -20.78872
- ],
- [
- -57.96183,
- -20.7916
- ],
- [
- -57.93478,
- -20.74565
- ],
- [
- -57.86732,
- -20.73265
- ],
- [
- -57.92414,
- -20.66392
- ],
- [
- -57.98848,
- -20.69879
- ],
- [
- -57.99847,
- -20.43551
- ],
- [
- -58.09339,
- -20.35554
- ],
- [
- -58.09596,
- -20.25445
- ],
- [
- -58.16216,
- -20.25953
- ],
- [
- -58.12152,
- -20.19246
- ],
- [
- -58.16932,
- -20.1694
- ],
- [
- -57.95347,
- -20.02094
- ],
- [
- -57.90248,
- -20.04207
- ],
- [
- -57.85796,
- -19.9703
- ],
- [
- -58.131,
- -19.758
- ],
- [
- -57.784,
- -19.033
- ],
- [
- -57.694,
- -19.011
- ],
- [
- -57.719,
- -18.899
- ],
- [
- -57.766,
- -18.899
- ],
- [
- -57.557,
- -18.24
- ],
- [
- -57.453,
- -18.231
- ],
- [
- -57.574,
- -18.131
- ],
- [
- -57.72302,
- -17.83074
- ],
- [
- -57.68472,
- -17.8306
- ],
- [
- -57.70991,
- -17.72702
- ],
- [
- -57.783,
- -17.639
- ],
- [
- -57.73696,
- -17.5583
- ],
- [
- -57.883,
- -17.449
- ],
- [
- -57.996,
- -17.515
- ],
- [
- -58.06,
- -17.45
- ],
- [
- -58.116,
- -17.451
- ],
- [
- -58.151,
- -17.384
- ],
- [
- -58.263,
- -17.344
- ],
- [
- -58.396,
- -17.181
- ],
- [
- -58.423,
- -16.989
- ],
- [
- -58.474,
- -16.935
- ],
- [
- -58.47,
- -16.703
- ],
- [
- -58.436,
- -16.592
- ],
- [
- -58.333,
- -16.49
- ],
- [
- -58.32227,
- -16.26559
- ],
- [
- -58.388,
- -16.261
- ],
- [
- -58.43059,
- -16.32264
- ],
- [
- -60.17335,
- -16.26672
- ],
- [
- -60.238,
- -15.473
- ],
- [
- -60.57543,
- -15.09677
- ],
- [
- -60.244,
- -15.096
- ],
- [
- -60.272,
- -14.62
- ],
- [
- -60.321,
- -14.608
- ],
- [
- -60.492,
- -14.188
- ],
- [
- -60.479,
- -14.097
- ],
- [
- -60.38066,
- -13.9888
- ],
- [
- -60.45062,
- -13.9364
- ],
- [
- -60.45599,
- -13.85422
- ],
- [
- -60.49068,
- -13.85782
- ],
- [
- -60.46776,
- -13.79446
- ],
- [
- -60.76755,
- -13.68329
- ],
- [
- -60.87678,
- -13.62149
- ],
- [
- -60.91857,
- -13.54334
- ],
- [
- -61.0056,
- -13.552
- ],
- [
- -61.0129,
- -13.48925
- ],
- [
- -61.0938,
- -13.49081
- ],
- [
- -61.10314,
- -13.53056
- ],
- [
- -61.18155,
- -13.50557
- ],
- [
- -61.19236,
- -13.53695
- ],
- [
- -61.29954,
- -13.47718
- ],
- [
- -61.46527,
- -13.55427
- ],
- [
- -61.57927,
- -13.48711
- ],
- [
- -61.852,
- -13.538
- ],
- [
- -61.892,
- -13.431
- ],
- [
- -61.96968,
- -13.40759
- ],
- [
- -61.97592,
- -13.36695
- ],
- [
- -62.11498,
- -13.25932
- ],
- [
- -62.115,
- -13.163
- ],
- [
- -62.15254,
- -13.15993
- ],
- [
- -62.16703,
- -13.11346
- ],
- [
- -62.19,
- -13.153
- ],
- [
- -62.214,
- -13.111
- ],
- [
- -62.27269,
- -13.15687
- ],
- [
- -62.39178,
- -13.13471
- ],
- [
- -62.453,
- -13.064
- ],
- [
- -62.612,
- -13.041
- ],
- [
- -62.65,
- -12.965
- ],
- [
- -62.729,
- -13.02
- ],
- [
- -62.779,
- -13.009
- ],
- [
- -62.89672,
- -12.8539
- ],
- [
- -63.01134,
- -12.83602
- ],
- [
- -63.08186,
- -12.72323
- ],
- [
- -63.06163,
- -12.68584
- ],
- [
- -63.15726,
- -12.6138
- ],
- [
- -63.24621,
- -12.66222
- ],
- [
- -63.23713,
- -12.69043
- ],
- [
- -63.30125,
- -12.68138
- ],
- [
- -63.44052,
- -12.608
- ],
- [
- -63.43627,
- -12.56526
- ],
- [
- -63.50641,
- -12.56562
- ],
- [
- -63.55295,
- -12.50598
- ],
- [
- -63.7848,
- -12.42871
- ],
- [
- -63.88957,
- -12.44745
- ],
- [
- -63.89949,
- -12.50204
- ],
- [
- -63.95144,
- -12.53179
- ],
- [
- -64.13464,
- -12.47732
- ],
- [
- -64.16781,
- -12.51503
- ],
- [
- -64.17504,
- -12.46675
- ],
- [
- -64.22945,
- -12.45419
- ],
- [
- -64.29018,
- -12.50313
- ],
- [
- -64.29452,
- -12.4582
- ],
- [
- -64.41057,
- -12.44436
- ],
- [
- -64.51217,
- -12.3551
- ],
- [
- -64.51256,
- -12.22562
- ],
- [
- -64.70406,
- -12.1827
- ],
- [
- -64.70719,
- -12.08684
- ],
- [
- -64.75486,
- -12.15762
- ],
- [
- -64.7688,
- -12.09356
- ],
- [
- -64.83747,
- -12.11786
- ],
- [
- -64.80954,
- -12.05633
- ],
- [
- -64.84077,
- -12.01027
- ],
- [
- -65.03548,
- -11.99408
- ],
- [
- -65.01398,
- -11.90303
- ],
- [
- -65.0727,
- -11.86587
- ],
- [
- -65.08672,
- -11.7082
- ],
- [
- -65.18953,
- -11.72353
- ],
- [
- -65.18216,
- -11.75609
- ],
- [
- -65.2593,
- -11.71053
- ],
- [
- -65.21178,
- -11.52857
- ],
- [
- -65.3074,
- -11.49957
- ],
- [
- -65.33276,
- -11.33986
- ],
- [
- -65.29053,
- -11.32275
- ],
- [
- -65.34347,
- -11.3082
- ],
- [
- -65.35834,
- -11.26834
- ],
- [
- -65.35938,
- -11.22067
- ],
- [
- -65.31294,
- -11.19578
- ],
- [
- -65.35387,
- -11.18419
- ],
- [
- -65.36177,
- -11.14031
- ],
- [
- -65.28269,
- -11.09009
- ],
- [
- -65.30071,
- -11.03142
- ],
- [
- -65.25053,
- -10.98506
- ],
- [
- -65.27476,
- -10.87302
- ],
- [
- -65.35376,
- -10.78881
- ],
- [
- -65.34667,
- -10.68155
- ],
- [
- -65.40569,
- -10.63935
- ],
- [
- -65.43011,
- -10.48505
- ],
- [
- -65.288,
- -10.219
- ],
- [
- -65.333,
- -9.965
- ],
- [
- -65.28588,
- -9.84413
- ],
- [
- -65.39313,
- -9.68683
- ],
- [
- -65.44394,
- -9.66957
- ],
- [
- -65.4883,
- -9.71015
- ],
- [
- -65.55611,
- -9.84498
- ],
- [
- -65.627,
- -9.83804
- ],
- [
- -65.66963,
- -9.78129
- ],
- [
- -65.71023,
- -9.80857
- ],
- [
- -65.68395,
- -9.74992
- ],
- [
- -65.7432,
- -9.78296
- ],
- [
- -65.77013,
- -9.73442
- ],
- [
- -65.79437,
- -9.79295
- ],
- [
- -65.79962,
- -9.75663
- ],
- [
- -65.86532,
- -9.79533
- ],
- [
- -65.87184,
- -9.75307
- ],
- [
- -65.91976,
- -9.75314
- ],
- [
- -65.98222,
- -9.81011
- ],
- [
- -66.151,
- -9.785
- ],
- [
- -66.426,
- -9.899
- ],
- [
- -66.435,
- -9.866
- ],
- [
- -66.61995,
- -9.89353
- ],
- [
- -66.63701,
- -9.94983
- ],
- [
- -66.8751,
- -10.08268
- ],
- [
- -66.9528,
- -10.18886
- ],
- [
- -66.99683,
- -10.20017
- ],
- [
- -67.01537,
- -10.25919
- ],
- [
- -67.17745,
- -10.33923
- ],
- [
- -67.31545,
- -10.31932
- ],
- [
- -67.31155,
- -10.37716
- ],
- [
- -67.40717,
- -10.37386
- ],
- [
- -67.44361,
- -10.45492
- ],
- [
- -67.57925,
- -10.5028
- ],
- [
- -67.64028,
- -10.59807
- ],
- [
- -67.67631,
- -10.60484
- ],
- [
- -67.70825,
- -10.71083
- ],
- [
- -67.86386,
- -10.64067
- ],
- [
- -68.03289,
- -10.65486
- ],
- [
- -68.10456,
- -10.71426
- ],
- [
- -68.10333,
- -10.77541
- ],
- [
- -68.27819,
- -10.98926
- ],
- [
- -68.71576,
- -11.14483
- ],
- [
- -68.75767,
- -11.00079
- ],
- [
- -68.9118,
- -11.02192
- ],
- [
- -69.41453,
- -10.92575
- ],
- [
- -69.73653,
- -10.97445
- ],
- [
- -69.76903,
- -10.92972
- ],
- [
- -69.93442,
- -10.9219
- ],
- [
- -70.15869,
- -11.04096
- ],
- [
- -70.30672,
- -11.06983
- ],
- [
- -70.43675,
- -11.03923
- ],
- [
- -70.53033,
- -10.93465
- ],
- [
- -70.62103,
- -10.99982
- ],
- [
- -70.62338,
- -9.82054
- ],
- [
- -70.53663,
- -9.76584
- ],
- [
- -70.59972,
- -9.56264
- ],
- [
- -70.55282,
- -9.57093
- ],
- [
- -70.56894,
- -9.53127
- ],
- [
- -70.50506,
- -9.50557
- ],
- [
- -70.49665,
- -9.42489
- ],
- [
- -70.59581,
- -9.4425
- ],
- [
- -70.6632,
- -9.52601
- ],
- [
- -70.75067,
- -9.56043
- ],
- [
- -70.79332,
- -9.63846
- ],
- [
- -70.96337,
- -9.74891
- ],
- [
- -70.99391,
- -9.81721
- ],
- [
- -71.13974,
- -9.85702
- ],
- [
- -71.22052,
- -9.96968
- ],
- [
- -72.1804,
- -9.99967
- ],
- [
- -72.15136,
- -9.79742
- ],
- [
- -72.26296,
- -9.75085
- ],
- [
- -72.25282,
- -9.61633
- ],
- [
- -72.28821,
- -9.60316
- ],
- [
- -72.2829,
- -9.53995
- ],
- [
- -72.35688,
- -9.4946
- ],
- [
- -72.51954,
- -9.49128
- ],
- [
- -72.71676,
- -9.4122
- ],
- [
- -73.2038,
- -9.40715
- ],
- [
- -73.07352,
- -9.23461
- ],
- [
- -73.0093,
- -9.22236
- ],
- [
- -73.02612,
- -9.17786
- ],
- [
- -72.9582,
- -9.14302
- ],
- [
- -72.94091,
- -8.98494
- ],
- [
- -72.99931,
- -8.91778
- ],
- [
- -73.05901,
- -8.90561
- ],
- [
- -73.14992,
- -8.6839
- ],
- [
- -73.20907,
- -8.6857
- ],
- [
- -73.28745,
- -8.61948
- ],
- [
- -73.3055,
- -8.47197
- ],
- [
- -73.38956,
- -8.46878
- ],
- [
- -73.41286,
- -8.41099
- ],
- [
- -73.53744,
- -8.34587
- ],
- [
- -73.62739,
- -8.02187
- ],
- [
- -73.73175,
- -7.9684
- ],
- [
- -73.7725,
- -7.90237
- ],
- [
- -73.76164,
- -7.85803
- ],
- [
- -73.69706,
- -7.86527
- ],
- [
- -73.6843,
- -7.77644
- ],
- [
- -73.82217,
- -7.71788
- ],
- [
- -73.99094,
- -7.53635
- ],
- [
- -73.948,
- -7.52661
- ],
- [
- -73.91981,
- -7.46568
- ],
- [
- -73.96394,
- -7.34764
- ],
- [
- -73.87014,
- -7.37882
- ],
- [
- -73.7003,
- -7.30429
- ],
- [
- -73.79842,
- -7.11306
- ],
- [
- -73.71046,
- -6.84019
- ],
- [
- -73.53639,
- -6.6834
- ],
- [
- -73.39115,
- -6.64193
- ],
- [
- -73.35281,
- -6.59327
- ],
- [
- -73.22741,
- -6.58884
- ],
- [
- -73.18797,
- -6.52302
- ],
- [
- -73.13523,
- -6.51046
- ],
- [
- -73.10473,
- -6.40666
- ],
- [
- -73.24664,
- -6.14963
- ],
- [
- -73.23821,
- -6.04399
- ],
- [
- -73.1868,
- -6.00512
- ],
- [
- -73.15207,
- -5.86796
- ],
- [
- -73.05303,
- -5.79517
- ],
- [
- -72.95912,
- -5.65689
- ],
- [
- -72.95888,
- -5.46613
- ],
- [
- -72.86052,
- -5.27117
- ],
- [
- -72.88725,
- -5.16307
- ],
- [
- -72.73986,
- -5.08859
- ],
- [
- -72.72765,
- -5.05199
- ],
- [
- -72.6212,
- -5.0518
- ],
- [
- -72.598,
- -4.98386
- ],
- [
- -72.38202,
- -4.87296
- ],
- [
- -72.36895,
- -4.80387
- ],
- [
- -72.12601,
- -4.73454
- ],
- [
- -72.04335,
- -4.62384
- ],
- [
- -72.00689,
- -4.64622
- ],
- [
- -71.99464,
- -4.60996
- ],
- [
- -71.94743,
- -4.60877
- ],
- [
- -71.91909,
- -4.5298
- ],
- [
- -71.88549,
- -4.53803
- ],
- [
- -71.9073,
- -4.51644
- ],
- [
- -71.76637,
- -4.50446
- ],
- [
- -71.75109,
- -4.46887
- ],
- [
- -71.70817,
- -4.51165
- ],
- [
- -71.65479,
- -4.47246
- ],
- [
- -71.65032,
- -4.50395
- ],
- [
- -71.61548,
- -4.4687
- ],
- [
- -71.6335,
- -4.51524
- ],
- [
- -71.59625,
- -4.52928
- ],
- [
- -71.53703,
- -4.46442
- ],
- [
- -71.49428,
- -4.48701
- ],
- [
- -71.50716,
- -4.43909
- ],
- [
- -71.43438,
- -4.42882
- ],
- [
- -71.42562,
- -4.47058
- ],
- [
- -71.35026,
- -4.42728
- ],
- [
- -71.30752,
- -4.46288
- ],
- [
- -71.32091,
- -4.42009
- ],
- [
- -71.27782,
- -4.44217
- ],
- [
- -71.26975,
- -4.385
- ],
- [
- -71.20263,
- -4.37987
- ],
- [
- -71.19422,
- -4.42471
- ],
- [
- -71.14478,
- -4.38158
- ],
- [
- -71.11491,
- -4.41119
- ],
- [
- -71.10616,
- -4.37764
- ],
- [
- -70.99389,
- -4.38654
- ],
- [
- -70.99595,
- -4.34632
- ],
- [
- -70.9357,
- -4.38432
- ],
- [
- -70.84483,
- -4.27905
- ],
- [
- -70.86447,
- -4.25245
- ],
- [
- -70.81677,
- -4.23005
- ],
- [
- -70.8458,
- -4.21872
- ],
- [
- -70.75901,
- -4.15944
- ],
- [
- -70.68147,
- -4.20791
- ],
- [
- -70.64256,
- -4.12805
- ],
- [
- -70.62521,
- -4.19151
- ],
- [
- -70.56118,
- -4.1775
- ],
- [
- -70.57357,
- -4.21169
- ],
- [
- -70.54796,
- -4.13671
- ],
- [
- -70.51036,
- -4.14824
- ],
- [
- -70.50417,
- -4.20098
- ],
- [
- -70.48535,
- -4.16132
- ],
- [
- -70.43435,
- -4.16266
- ],
- [
- -70.43146,
- -4.13217
- ],
- [
- -70.33892,
- -4.17997
- ],
- [
- -70.32281,
- -4.14206
- ],
- [
- -70.28769,
- -4.16555
- ],
- [
- -70.29141,
- -4.28709
- ],
- [
- -70.21457,
- -4.29749
- ],
- [
- -70.19194,
- -4.36179
- ],
- [
- -70.15508,
- -4.27308
- ],
- [
- -70.11749,
- -4.28585
- ],
- [
- -70.10881,
- -4.25454
- ],
- [
- -70.04189,
- -4.29409
- ],
- [
- -70.07948,
- -4.31428
- ],
- [
- -70.02826,
- -4.3703
- ],
- [
- -69.99182,
- -4.37482
- ],
- [
- -69.94793,
- -4.23168
- ]
- ],
- [
- [
- -34.00035,
- -3.76654
- ],
- [
- -34.01797,
- -3.84985
- ],
- [
- -34.00664,
- -3.91809
- ],
- [
- -33.98608,
- -3.95952
- ],
- [
- -33.95923,
- -3.99217
- ],
- [
- -33.8921,
- -4.03653
- ],
- [
- -33.81658,
- -4.05077
- ],
- [
- -33.72931,
- -4.03151
- ],
- [
- -33.66638,
- -3.9838
- ],
- [
- -33.62736,
- -3.9185
- ],
- [
- -33.61519,
- -3.84985
- ],
- [
- -33.63239,
- -3.76864
- ],
- [
- -33.68693,
- -3.69537
- ],
- [
- -33.74987,
- -3.65978
- ],
- [
- -33.81658,
- -3.6489
- ],
- [
- -33.89336,
- -3.66397
- ],
- [
- -33.96007,
- -3.70877
- ],
- [
- -34.00035,
- -3.76654
- ]
- ],
- [
- [
- -32.5538,
- -4.00884
- ],
- [
- -32.59937,
- -3.9531
- ],
- [
- -32.64061,
- -3.87309
- ],
- [
- -32.61755,
- -3.73712
- ],
- [
- -32.58338,
- -3.70527
- ],
- [
- -32.54228,
- -3.65606
- ],
- [
- -32.4592,
- -3.63029
- ],
- [
- -32.35174,
- -3.63887
- ],
- [
- -32.30049,
- -3.67684
- ],
- [
- -32.24749,
- -3.75266
- ],
- [
- -32.23155,
- -3.81889
- ],
- [
- -32.2357,
- -3.90247
- ],
- [
- -32.30194,
- -3.9883
- ],
- [
- -32.42898,
- -4.0384
- ],
- [
- -32.5538,
- -4.00884
- ]
- ],
- [
- [
- -29.50321,
- 0.79391
- ],
- [
- -29.54097,
- 0.8689
- ],
- [
- -29.54727,
- 0.92553
- ],
- [
- -29.52367,
- 0.99422
- ],
- [
- -29.48958,
- 1.06134
- ],
- [
- -29.43136,
- 1.10224
- ],
- [
- -29.35899,
- 1.1206
- ],
- [
- -29.29238,
- 1.11378
- ],
- [
- -29.22158,
- 1.0776
- ],
- [
- -29.16285,
- 1.00314
- ],
- [
- -29.14501,
- 0.92605
- ],
- [
- -29.14764,
- 0.88358
- ],
- [
- -29.17176,
- 0.8196
- ],
- [
- -29.24885,
- 0.74357
- ],
- [
- -29.29448,
- 0.72521
- ],
- [
- -29.36371,
- 0.71892
- ],
- [
- -29.43556,
- 0.73937
- ],
- [
- -29.50321,
- 0.79391
- ]
- ],
- [
- [
- -29.09537,
- -20.42649
- ],
- [
- -29.19756,
- -20.33509
- ],
- [
- -29.3343,
- -20.28932
- ],
- [
- -29.46741,
- -20.3288
- ],
- [
- -29.54604,
- -20.42958
- ],
- [
- -29.55396,
- -20.52706
- ],
- [
- -29.51696,
- -20.62613
- ],
- [
- -29.40995,
- -20.68955
- ],
- [
- -29.27599,
- -20.72578
- ],
- [
- -29.15968,
- -20.66209
- ],
- [
- -29.07188,
- -20.57088
- ],
- [
- -28.9712,
- -20.64769
- ],
- [
- -28.83286,
- -20.69814
- ],
- [
- -28.67968,
- -20.62099
- ],
- [
- -28.63549,
- -20.49284
- ],
- [
- -28.63412,
- -20.47146
- ],
- [
- -28.7431,
- -20.30094
- ],
- [
- -28.8683,
- -20.27288
- ],
- [
- -29.0031,
- -20.32416
- ],
- [
- -29.09537,
- -20.42649
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "IBGE, OSM Brasil"
- },
- "country_code": "BR",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png",
- "id": "IBGE_Nomes_Ruas",
- "license_url": "https://wiki.openstreetmap.org/wiki/IBGE_Street_Names",
- "max_zoom": 22,
- "min_zoom": 4,
- "name": "IBGE Nomes de Ruas",
- "overlay": true,
- "type": "tms",
- "url": "https://api.maptiler.com/maps/b2037b15-5614-4fed-9608-9830b8dc574a/256/{zoom}/{x}/{y}.png?key=YmPoUxbTlEHlrASzv56Z"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -51.10903,
- -23.39275
- ],
- [
- -51.11015,
- -23.39112
- ],
- [
- -51.11198,
- -23.3896
- ],
- [
- -51.11358,
- -23.38977
- ],
- [
- -51.121,
- -23.38593
- ],
- [
- -51.12225,
- -23.38511
- ],
- [
- -51.12483,
- -23.3835
- ],
- [
- -51.12538,
- -23.38187
- ],
- [
- -51.12482,
- -23.3777
- ],
- [
- -51.12446,
- -23.37505
- ],
- [
- -51.12437,
- -23.3723
- ],
- [
- -51.12244,
- -23.37033
- ],
- [
- -51.12302,
- -23.36643
- ],
- [
- -51.12856,
- -23.36548
- ],
- [
- -51.12832,
- -23.35884
- ],
- [
- -51.12477,
- -23.35476
- ],
- [
- -51.12703,
- -23.35091
- ],
- [
- -51.12412,
- -23.3468
- ],
- [
- -51.12025,
- -23.34781
- ],
- [
- -51.11765,
- -23.33969
- ],
- [
- -51.11265,
- -23.34129
- ],
- [
- -51.1094,
- -23.33489
- ],
- [
- -51.10756,
- -23.33409
- ],
- [
- -51.10486,
- -23.33398
- ],
- [
- -51.10253,
- -23.33419
- ],
- [
- -51.09987,
- -23.33102
- ],
- [
- -51.09801,
- -23.32936
- ],
- [
- -51.09999,
- -23.32831
- ],
- [
- -51.10323,
- -23.32532
- ],
- [
- -51.10473,
- -23.32319
- ],
- [
- -51.10466,
- -23.32129
- ],
- [
- -51.10515,
- -23.31844
- ],
- [
- -51.10636,
- -23.31575
- ],
- [
- -51.10661,
- -23.31467
- ],
- [
- -51.1105,
- -23.31167
- ],
- [
- -51.11158,
- -23.30842
- ],
- [
- -51.0995,
- -23.30947
- ],
- [
- -51.0974,
- -23.30863
- ],
- [
- -51.09512,
- -23.30745
- ],
- [
- -51.09202,
- -23.30494
- ],
- [
- -51.09036,
- -23.30371
- ],
- [
- -51.09205,
- -23.29875
- ],
- [
- -51.09269,
- -23.2975
- ],
- [
- -51.09408,
- -23.29295
- ],
- [
- -51.10074,
- -23.29332
- ],
- [
- -51.10102,
- -23.28871
- ],
- [
- -51.10068,
- -23.28837
- ],
- [
- -51.10085,
- -23.28778
- ],
- [
- -51.09938,
- -23.28664
- ],
- [
- -51.09632,
- -23.27791
- ],
- [
- -51.10285,
- -23.27302
- ],
- [
- -51.10836,
- -23.27034
- ],
- [
- -51.1131,
- -23.2684
- ],
- [
- -51.1316,
- -23.26534
- ],
- [
- -51.13188,
- -23.26201
- ],
- [
- -51.13173,
- -23.25506
- ],
- [
- -51.1329,
- -23.25468
- ],
- [
- -51.13296,
- -23.25075
- ],
- [
- -51.13474,
- -23.25127
- ],
- [
- -51.13534,
- -23.25133
- ],
- [
- -51.13517,
- -23.24359
- ],
- [
- -51.13535,
- -23.24118
- ],
- [
- -51.13752,
- -23.24219
- ],
- [
- -51.13885,
- -23.2435
- ],
- [
- -51.14109,
- -23.24521
- ],
- [
- -51.14717,
- -23.24318
- ],
- [
- -51.14761,
- -23.23828
- ],
- [
- -51.14908,
- -23.23588
- ],
- [
- -51.14977,
- -23.23681
- ],
- [
- -51.15139,
- -23.23854
- ],
- [
- -51.15289,
- -23.23884
- ],
- [
- -51.15384,
- -23.23895
- ],
- [
- -51.1582,
- -23.23814
- ],
- [
- -51.16045,
- -23.23816
- ],
- [
- -51.16035,
- -23.24658
- ],
- [
- -51.15912,
- -23.24783
- ],
- [
- -51.16131,
- -23.24777
- ],
- [
- -51.16659,
- -23.24594
- ],
- [
- -51.17193,
- -23.24582
- ],
- [
- -51.17205,
- -23.24956
- ],
- [
- -51.17424,
- -23.2484
- ],
- [
- -51.17514,
- -23.24932
- ],
- [
- -51.17686,
- -23.24816
- ],
- [
- -51.17947,
- -23.25169
- ],
- [
- -51.18135,
- -23.25381
- ],
- [
- -51.18274,
- -23.25363
- ],
- [
- -51.18379,
- -23.25326
- ],
- [
- -51.18496,
- -23.2533
- ],
- [
- -51.18627,
- -23.25215
- ],
- [
- -51.18665,
- -23.24748
- ],
- [
- -51.19118,
- -23.24914
- ],
- [
- -51.19142,
- -23.25286
- ],
- [
- -51.19369,
- -23.25278
- ],
- [
- -51.19384,
- -23.26074
- ],
- [
- -51.20097,
- -23.26055
- ],
- [
- -51.20127,
- -23.2426
- ],
- [
- -51.20994,
- -23.24278
- ],
- [
- -51.2109,
- -23.26988
- ],
- [
- -51.21969,
- -23.27222
- ],
- [
- -51.22597,
- -23.27453
- ],
- [
- -51.22934,
- -23.2786
- ],
- [
- -51.23452,
- -23.2816
- ],
- [
- -51.23498,
- -23.28325
- ],
- [
- -51.23507,
- -23.28544
- ],
- [
- -51.23371,
- -23.2859
- ],
- [
- -51.23216,
- -23.28802
- ],
- [
- -51.2287,
- -23.29229
- ],
- [
- -51.2274,
- -23.2946
- ],
- [
- -51.22679,
- -23.29548
- ],
- [
- -51.2256,
- -23.29657
- ],
- [
- -51.22393,
- -23.29721
- ],
- [
- -51.22048,
- -23.30073
- ],
- [
- -51.21864,
- -23.3013
- ],
- [
- -51.21668,
- -23.30212
- ],
- [
- -51.21424,
- -23.30441
- ],
- [
- -51.21097,
- -23.30697
- ],
- [
- -51.22328,
- -23.3183
- ],
- [
- -51.22439,
- -23.31459
- ],
- [
- -51.22521,
- -23.31289
- ],
- [
- -51.22512,
- -23.31258
- ],
- [
- -51.22521,
- -23.31251
- ],
- [
- -51.22553,
- -23.31253
- ],
- [
- -51.22595,
- -23.31239
- ],
- [
- -51.22617,
- -23.31183
- ],
- [
- -51.22936,
- -23.31489
- ],
- [
- -51.22802,
- -23.31661
- ],
- [
- -51.22789,
- -23.31902
- ],
- [
- -51.22767,
- -23.32023
- ],
- [
- -51.22723,
- -23.32151
- ],
- [
- -51.22739,
- -23.32223
- ],
- [
- -51.22725,
- -23.32285
- ],
- [
- -51.23033,
- -23.32558
- ],
- [
- -51.23046,
- -23.32671
- ],
- [
- -51.22954,
- -23.32789
- ],
- [
- -51.22916,
- -23.3305
- ],
- [
- -51.22929,
- -23.33178
- ],
- [
- -51.22681,
- -23.33447
- ],
- [
- -51.22602,
- -23.33657
- ],
- [
- -51.22473,
- -23.33839
- ],
- [
- -51.2221,
- -23.34023
- ],
- [
- -51.22257,
- -23.34196
- ],
- [
- -51.22381,
- -23.34339
- ],
- [
- -51.22384,
- -23.34531
- ],
- [
- -51.22441,
- -23.347
- ],
- [
- -51.22454,
- -23.34829
- ],
- [
- -51.22404,
- -23.34968
- ],
- [
- -51.22351,
- -23.35011
- ],
- [
- -51.22382,
- -23.35077
- ],
- [
- -51.22305,
- -23.35174
- ],
- [
- -51.2226,
- -23.35296
- ],
- [
- -51.22587,
- -23.35481
- ],
- [
- -51.2265,
- -23.36706
- ],
- [
- -51.22354,
- -23.36915
- ],
- [
- -51.22367,
- -23.37968
- ],
- [
- -51.22038,
- -23.38163
- ],
- [
- -51.21647,
- -23.3817
- ],
- [
- -51.21416,
- -23.37995
- ],
- [
- -51.20928,
- -23.37395
- ],
- [
- -51.20738,
- -23.36814
- ],
- [
- -51.20629,
- -23.36723
- ],
- [
- -51.20472,
- -23.36627
- ],
- [
- -51.19823,
- -23.36668
- ],
- [
- -51.19297,
- -23.36651
- ],
- [
- -51.18986,
- -23.36544
- ],
- [
- -51.18806,
- -23.36464
- ],
- [
- -51.18718,
- -23.36453
- ],
- [
- -51.1858,
- -23.36374
- ],
- [
- -51.18304,
- -23.36359
- ],
- [
- -51.18071,
- -23.36376
- ],
- [
- -51.17907,
- -23.36158
- ],
- [
- -51.17764,
- -23.35836
- ],
- [
- -51.16684,
- -23.35626
- ],
- [
- -51.16614,
- -23.35854
- ],
- [
- -51.16476,
- -23.36039
- ],
- [
- -51.16077,
- -23.35922
- ],
- [
- -51.15983,
- -23.3666
- ],
- [
- -51.16204,
- -23.36861
- ],
- [
- -51.16276,
- -23.37416
- ],
- [
- -51.15845,
- -23.3758
- ],
- [
- -51.15505,
- -23.37631
- ],
- [
- -51.15396,
- -23.37903
- ],
- [
- -51.15299,
- -23.38105
- ],
- [
- -51.15119,
- -23.38208
- ],
- [
- -51.14917,
- -23.38251
- ],
- [
- -51.14722,
- -23.38216
- ],
- [
- -51.14518,
- -23.38259
- ],
- [
- -51.1441,
- -23.38376
- ],
- [
- -51.14512,
- -23.38808
- ],
- [
- -51.1418,
- -23.3894
- ],
- [
- -51.14031,
- -23.3888
- ],
- [
- -51.14068,
- -23.39161
- ],
- [
- -51.14127,
- -23.39354
- ],
- [
- -51.14094,
- -23.39443
- ],
- [
- -51.14046,
- -23.39536
- ],
- [
- -51.13939,
- -23.3951
- ],
- [
- -51.13739,
- -23.39315
- ],
- [
- -51.13609,
- -23.3898
- ],
- [
- -51.13429,
- -23.38976
- ],
- [
- -51.13216,
- -23.39007
- ],
- [
- -51.13172,
- -23.39286
- ],
- [
- -51.12259,
- -23.38864
- ],
- [
- -51.12228,
- -23.39166
- ],
- [
- -51.11883,
- -23.39317
- ],
- [
- -51.11568,
- -23.39335
- ],
- [
- -51.10903,
- -23.39275
- ]
- ],
- [
- [
- -51.13829,
- -23.41601
- ],
- [
- -51.13331,
- -23.41867
- ],
- [
- -51.13209,
- -23.41644
- ],
- [
- -51.13002,
- -23.41829
- ],
- [
- -51.12869,
- -23.41901
- ],
- [
- -51.12824,
- -23.42103
- ],
- [
- -51.12696,
- -23.42186
- ],
- [
- -51.12533,
- -23.42269
- ],
- [
- -51.12445,
- -23.42097
- ],
- [
- -51.12151,
- -23.42411
- ],
- [
- -51.12063,
- -23.42327
- ],
- [
- -51.11971,
- -23.42312
- ],
- [
- -51.11977,
- -23.42157
- ],
- [
- -51.1188,
- -23.42155
- ],
- [
- -51.11643,
- -23.42084
- ],
- [
- -51.11943,
- -23.41917
- ],
- [
- -51.11787,
- -23.41678
- ],
- [
- -51.11655,
- -23.41731
- ],
- [
- -51.1157,
- -23.4157
- ],
- [
- -51.11512,
- -23.41309
- ],
- [
- -51.11908,
- -23.41111
- ],
- [
- -51.1196,
- -23.4117
- ],
- [
- -51.12052,
- -23.41489
- ],
- [
- -51.12148,
- -23.41714
- ],
- [
- -51.12309,
- -23.41863
- ],
- [
- -51.12755,
- -23.41654
- ],
- [
- -51.12803,
- -23.4174
- ],
- [
- -51.1312,
- -23.41557
- ],
- [
- -51.1308,
- -23.41477
- ],
- [
- -51.13279,
- -23.41264
- ],
- [
- -51.13522,
- -23.41106
- ],
- [
- -51.13586,
- -23.41096
- ],
- [
- -51.13682,
- -23.41119
- ],
- [
- -51.13721,
- -23.41158
- ],
- [
- -51.1373,
- -23.41324
- ],
- [
- -51.13743,
- -23.41471
- ],
- [
- -51.13829,
- -23.41601
- ]
- ],
- [
- [
- -51.18929,
- -23.61469
- ],
- [
- -51.18869,
- -23.61385
- ],
- [
- -51.18818,
- -23.61339
- ],
- [
- -51.18731,
- -23.61302
- ],
- [
- -51.18629,
- -23.61314
- ],
- [
- -51.18402,
- -23.61396
- ],
- [
- -51.18349,
- -23.61397
- ],
- [
- -51.18183,
- -23.61284
- ],
- [
- -51.1814,
- -23.61344
- ],
- [
- -51.18063,
- -23.61314
- ],
- [
- -51.18001,
- -23.61409
- ],
- [
- -51.17866,
- -23.61329
- ],
- [
- -51.18065,
- -23.6106
- ],
- [
- -51.17972,
- -23.61018
- ],
- [
- -51.18062,
- -23.60849
- ],
- [
- -51.18212,
- -23.6085
- ],
- [
- -51.18261,
- -23.60775
- ],
- [
- -51.1832,
- -23.60804
- ],
- [
- -51.18415,
- -23.60628
- ],
- [
- -51.18511,
- -23.60666
- ],
- [
- -51.18649,
- -23.6047
- ],
- [
- -51.18902,
- -23.6061
- ],
- [
- -51.18821,
- -23.60742
- ],
- [
- -51.18919,
- -23.60802
- ],
- [
- -51.1889,
- -23.60953
- ],
- [
- -51.18962,
- -23.60993
- ],
- [
- -51.19119,
- -23.61119
- ],
- [
- -51.19015,
- -23.61245
- ],
- [
- -51.19054,
- -23.61276
- ],
- [
- -51.19029,
- -23.61378
- ],
- [
- -51.18929,
- -23.61469
- ]
- ],
- [
- [
- -51.08006,
- -23.52984
- ],
- [
- -51.07962,
- -23.52205
- ],
- [
- -51.08468,
- -23.52194
- ],
- [
- -51.08582,
- -23.52404
- ],
- [
- -51.08589,
- -23.52704
- ],
- [
- -51.08579,
- -23.52777
- ],
- [
- -51.0853,
- -23.52806
- ],
- [
- -51.08514,
- -23.52857
- ],
- [
- -51.08512,
- -23.52982
- ],
- [
- -51.08471,
- -23.53024
- ],
- [
- -51.08343,
- -23.53024
- ],
- [
- -51.0833,
- -23.52978
- ],
- [
- -51.08006,
- -23.52984
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Prefeitura do Londrinas, PR",
- "url": "http://siglon.londrina.pr.gov.br"
- },
- "country_code": "BR",
- "end_date": "2011",
- "id": "londrina2011",
- "license_url": "http://siglon.londrina.pr.gov.br",
- "max_zoom": 19,
- "name": "Londrina Ortofoto 2011",
- "start_date": "2011",
- "type": "tms",
- "url": "https://siglon.londrina.pr.gov.br/arcgis/rest/services/Imagens/Ortofotos_2011_Paranacidade/MapServer/WMTS/tile/1.0.0/Imagens_Ortofotos_2011_Paranacidade/default/GoogleMapsCompatible/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -43.17709,
- -22.96971
- ],
- [
- -43.14586,
- -22.96959
- ],
- [
- -43.14605,
- -22.92719
- ],
- [
- -43.15625,
- -22.92731
- ],
- [
- -43.15647,
- -22.87557
- ],
- [
- -43.17739,
- -22.87494
- ],
- [
- -43.17742,
- -22.88553
- ],
- [
- -43.19804,
- -22.88571
- ],
- [
- -43.19804,
- -22.85429
- ],
- [
- -43.21875,
- -22.85444
- ],
- [
- -43.21901,
- -22.83365
- ],
- [
- -43.22937,
- -22.83365
- ],
- [
- -43.22934,
- -22.82371
- ],
- [
- -43.19869,
- -22.82353
- ],
- [
- -43.19856,
- -22.83413
- ],
- [
- -43.18826,
- -22.83398
- ],
- [
- -43.18804,
- -22.84448
- ],
- [
- -43.16667,
- -22.84442
- ],
- [
- -43.16683,
- -22.83404
- ],
- [
- -43.15638,
- -22.83407
- ],
- [
- -43.15654,
- -22.81336
- ],
- [
- -43.10436,
- -22.81306
- ],
- [
- -43.10446,
- -22.80288
- ],
- [
- -43.09387,
- -22.80276
- ],
- [
- -43.0941,
- -22.73998
- ],
- [
- -43.13599,
- -22.73992
- ],
- [
- -43.13569,
- -22.75067
- ],
- [
- -43.12573,
- -22.75055
- ],
- [
- -43.12556,
- -22.77118
- ],
- [
- -43.14595,
- -22.77109
- ],
- [
- -43.14612,
- -22.76055
- ],
- [
- -43.17771,
- -22.76088
- ],
- [
- -43.17758,
- -22.77115
- ],
- [
- -43.18807,
- -22.7713
- ],
- [
- -43.18807,
- -22.78166
- ],
- [
- -43.25067,
- -22.78163
- ],
- [
- -43.25057,
- -22.79198
- ],
- [
- -43.28054,
- -22.79282
- ],
- [
- -43.30343,
- -22.79312
- ],
- [
- -43.33353,
- -22.79297
- ],
- [
- -43.33347,
- -22.80258
- ],
- [
- -43.38574,
- -22.8024
- ],
- [
- -43.38542,
- -22.81255
- ],
- [
- -43.41691,
- -22.81285
- ],
- [
- -43.41675,
- -22.82341
- ],
- [
- -43.42717,
- -22.82335
- ],
- [
- -43.4274,
- -22.83374
- ],
- [
- -43.45844,
- -22.83362
- ],
- [
- -43.45864,
- -22.81276
- ],
- [
- -43.48984,
- -22.813
- ],
- [
- -43.48994,
- -22.7965
- ],
- [
- -43.50208,
- -22.79746
- ],
- [
- -43.51543,
- -22.79737
- ],
- [
- -43.52078,
- -22.79591
- ],
- [
- -43.54169,
- -22.79603
- ],
- [
- -43.54179,
- -22.80234
- ],
- [
- -43.54653,
- -22.80246
- ],
- [
- -43.54666,
- -22.81189
- ],
- [
- -43.55251,
- -22.81279
- ],
- [
- -43.56991,
- -22.81294
- ],
- [
- -43.56998,
- -22.8197
- ],
- [
- -43.57361,
- -22.82326
- ],
- [
- -43.58348,
- -22.82329
- ],
- [
- -43.58352,
- -22.83347
- ],
- [
- -43.59391,
- -22.83374
- ],
- [
- -43.59394,
- -22.85468
- ],
- [
- -43.66099,
- -22.85459
- ],
- [
- -43.66099,
- -22.85983
- ],
- [
- -43.70852,
- -22.86019
- ],
- [
- -43.70836,
- -22.86503
- ],
- [
- -43.72206,
- -22.86488
- ],
- [
- -43.72213,
- -22.86847
- ],
- [
- -43.75015,
- -22.86859
- ],
- [
- -43.75009,
- -22.8753
- ],
- [
- -43.76038,
- -22.87527
- ],
- [
- -43.75992,
- -22.8785
- ],
- [
- -43.75976,
- -22.88457
- ],
- [
- -43.76132,
- -22.88586
- ],
- [
- -43.78129,
- -22.8858
- ],
- [
- -43.78126,
- -22.89591
- ],
- [
- -43.80213,
- -22.89621
- ],
- [
- -43.80135,
- -22.91137
- ],
- [
- -43.80119,
- -22.92758
- ],
- [
- -43.79213,
- -22.92776
- ],
- [
- -43.7922,
- -22.93822
- ],
- [
- -43.78191,
- -22.93799
- ],
- [
- -43.78184,
- -22.94869
- ],
- [
- -43.75067,
- -22.94845
- ],
- [
- -43.7506,
- -22.95909
- ],
- [
- -43.72986,
- -22.95886
- ],
- [
- -43.72966,
- -22.97984
- ],
- [
- -43.70904,
- -22.97966
- ],
- [
- -43.70891,
- -22.99033
- ],
- [
- -43.69846,
- -22.99006
- ],
- [
- -43.69836,
- -23.00065
- ],
- [
- -43.66735,
- -23.00044
- ],
- [
- -43.66726,
- -23.01117
- ],
- [
- -43.63125,
- -23.00937
- ],
- [
- -43.63131,
- -23.02079
- ],
- [
- -43.63586,
- -23.02091
- ],
- [
- -43.63602,
- -23.03164
- ],
- [
- -43.67771,
- -23.03164
- ],
- [
- -43.67765,
- -23.04233
- ],
- [
- -43.67086,
- -23.0423
- ],
- [
- -43.67109,
- -23.0631
- ],
- [
- -43.64599,
- -23.06304
- ],
- [
- -43.64605,
- -23.05276
- ],
- [
- -43.60475,
- -23.05255
- ],
- [
- -43.60452,
- -23.06307
- ],
- [
- -43.58381,
- -23.06289
- ],
- [
- -43.58368,
- -23.08404
- ],
- [
- -43.54186,
- -23.08383
- ],
- [
- -43.54195,
- -23.06319
- ],
- [
- -43.52147,
- -23.06301
- ],
- [
- -43.5213,
- -23.07352
- ],
- [
- -43.50043,
- -23.07337
- ],
- [
- -43.50043,
- -23.04218
- ],
- [
- -43.45877,
- -23.04221
- ],
- [
- -43.4587,
- -23.03194
- ],
- [
- -43.43782,
- -23.03182
- ],
- [
- -43.43776,
- -23.02154
- ],
- [
- -43.3235,
- -23.02121
- ],
- [
- -43.3233,
- -23.04212
- ],
- [
- -43.31291,
- -23.04195
- ],
- [
- -43.31275,
- -23.05267
- ],
- [
- -43.30239,
- -23.05258
- ],
- [
- -43.30236,
- -23.04227
- ],
- [
- -43.29194,
- -23.04215
- ],
- [
- -43.29197,
- -23.03194
- ],
- [
- -43.27109,
- -23.03182
- ],
- [
- -43.27119,
- -23.01093
- ],
- [
- -43.26061,
- -23.01087
- ],
- [
- -43.26067,
- -23.00059
- ],
- [
- -43.25057,
- -23.00047
- ],
- [
- -43.25054,
- -23.01126
- ],
- [
- -43.23989,
- -23.01102
- ],
- [
- -43.23986,
- -23.00062
- ],
- [
- -43.21908,
- -23.0005
- ],
- [
- -43.21904,
- -22.99021
- ],
- [
- -43.20901,
- -22.99009
- ],
- [
- -43.20862,
- -23.08389
- ],
- [
- -43.18768,
- -23.08377
- ],
- [
- -43.18761,
- -23.07334
- ],
- [
- -43.13582,
- -23.07337
- ],
- [
- -43.13589,
- -23.05249
- ],
- [
- -43.17732,
- -23.05255
- ],
- [
- -43.17709,
- -22.96971
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro.",
- "url": "https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2013_UTM/MapServer"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:29193"
- ],
- "country_code": "BR",
- "end_date": "2013",
- "id": "rio2013",
- "license_url": "http://data.rio/about",
- "name": "Rio Mosaic 2013",
- "start_date": "2013",
- "type": "wms",
- "url": "http://geo.rio.rj.gov.br/ArcGIS/services/Imagens/Mosaico_2013/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -42.30363,
- -22.43698
- ],
- [
- -44.10842,
- -22.06579
- ],
- [
- -44.5313,
- -23.7863
- ],
- [
- -42.70469,
- -24.16178
- ],
- [
- -42.30363,
- -22.43698
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro.",
- "url": "https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2015_UTM/MapServer"
- },
- "available_projections": [
- "EPSG:4326",
- "EPSG:3857",
- "EPSG:29193"
- ],
- "country_code": "BR",
- "end_date": "2015",
- "id": "rio2015",
- "license_url": "http://data.rio/about",
- "max_zoom": 13,
- "name": "Rio Mosaic 2015",
- "start_date": "2015",
- "type": "wms",
- "url": "https://pgeo3.rio.rj.gov.br/arcgis/services/Imagens/Mosaico_2015_UTM/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -48.62488,
- -26.91624
- ],
- [
- -48.62416,
- -26.83409
- ],
- [
- -48.56163,
- -26.83412
- ],
- [
- -48.56165,
- -26.74919
- ],
- [
- -48.62675,
- -26.74918
- ],
- [
- -48.62715,
- -26.73276
- ],
- [
- -48.64126,
- -26.733
- ],
- [
- -48.64174,
- -26.70912
- ],
- [
- -48.62414,
- -26.70913
- ],
- [
- -48.62418,
- -26.50079
- ],
- [
- -48.57099,
- -26.50077
- ],
- [
- -48.57155,
- -26.47415
- ],
- [
- -48.55418,
- -26.47381
- ],
- [
- -48.5545,
- -26.45736
- ],
- [
- -48.56155,
- -26.45747
- ],
- [
- -48.56161,
- -26.41746
- ],
- [
- -48.4991,
- -26.41747
- ],
- [
- -48.49909,
- -26.25081
- ],
- [
- -48.43664,
- -26.25079
- ],
- [
- -48.43661,
- -26.20752
- ],
- [
- -48.4601,
- -26.20751
- ],
- [
- -48.46195,
- -26.1242
- ],
- [
- -48.56161,
- -26.12419
- ],
- [
- -48.56163,
- -25.95753
- ],
- [
- -48.62411,
- -25.95753
- ],
- [
- -48.62411,
- -25.94507
- ],
- [
- -48.68838,
- -25.94607
- ],
- [
- -48.6884,
- -25.95752
- ],
- [
- -49.25089,
- -25.95752
- ],
- [
- -49.2509,
- -25.9992
- ],
- [
- -49.31339,
- -25.9992
- ],
- [
- -49.31338,
- -26.0825
- ],
- [
- -49.37591,
- -26.0825
- ],
- [
- -49.37591,
- -26.12419
- ],
- [
- -49.50093,
- -26.12418
- ],
- [
- -49.50092,
- -26.16586
- ],
- [
- -49.68661,
- -26.16585
- ],
- [
- -49.68661,
- -26.12417
- ],
- [
- -49.74907,
- -26.08246
- ],
- [
- -49.74908,
- -26.04084
- ],
- [
- -49.8116,
- -26.04085
- ],
- [
- -49.81159,
- -25.99918
- ],
- [
- -49.93657,
- -25.99915
- ],
- [
- -49.93661,
- -25.98244
- ],
- [
- -50.00091,
- -25.98288
- ],
- [
- -50.00094,
- -25.99915
- ],
- [
- -50.31338,
- -25.99916
- ],
- [
- -50.31342,
- -26.04083
- ],
- [
- -50.37411,
- -26.04084
- ],
- [
- -50.3741,
- -25.9992
- ],
- [
- -50.49914,
- -25.99918
- ],
- [
- -50.49911,
- -25.98414
- ],
- [
- -50.62593,
- -25.98452
- ],
- [
- -50.62595,
- -26.04084
- ],
- [
- -50.6884,
- -26.04161
- ],
- [
- -50.68845,
- -26.12416
- ],
- [
- -50.75094,
- -26.12414
- ],
- [
- -50.75095,
- -26.20752
- ],
- [
- -51.12595,
- -26.20747
- ],
- [
- -51.12595,
- -26.24913
- ],
- [
- -51.18848,
- -26.24918
- ],
- [
- -51.31344,
- -26.33245
- ],
- [
- -51.31347,
- -26.62414
- ],
- [
- -51.4366,
- -26.62415
- ],
- [
- -51.43659,
- -26.56476
- ],
- [
- -51.62409,
- -26.5641
- ],
- [
- -51.62411,
- -26.5408
- ],
- [
- -51.99907,
- -26.5408
- ],
- [
- -52.06158,
- -26.49911
- ],
- [
- -52.06158,
- -26.45747
- ],
- [
- -52.12408,
- -26.45749
- ],
- [
- -52.12406,
- -26.41579
- ],
- [
- -52.37407,
- -26.4158
- ],
- [
- -52.37409,
- -26.39133
- ],
- [
- -52.56156,
- -26.3894
- ],
- [
- -52.56158,
- -26.37415
- ],
- [
- -52.62408,
- -26.37417
- ],
- [
- -52.62409,
- -26.33247
- ],
- [
- -53.12408,
- -26.33247
- ],
- [
- -53.1241,
- -26.31707
- ],
- [
- -53.1618,
- -26.3165
- ],
- [
- -53.16136,
- -26.29082
- ],
- [
- -53.18656,
- -26.29083
- ],
- [
- -53.24907,
- -26.24911
- ],
- [
- -53.24906,
- -26.23919
- ],
- [
- -53.31159,
- -26.23824
- ],
- [
- -53.3741,
- -26.22882
- ],
- [
- -53.43845,
- -26.22777
- ],
- [
- -53.43843,
- -26.24914
- ],
- [
- -53.5616,
- -26.24916
- ],
- [
- -53.56159,
- -26.23983
- ],
- [
- -53.65501,
- -26.23814
- ],
- [
- -53.65623,
- -26.29263
- ],
- [
- -53.67011,
- -26.31684
- ],
- [
- -53.68846,
- -26.33242
- ],
- [
- -53.70322,
- -26.3741
- ],
- [
- -53.70929,
- -26.38449
- ],
- [
- -53.7098,
- -26.39568
- ],
- [
- -53.70619,
- -26.40722
- ],
- [
- -53.70721,
- -26.45927
- ],
- [
- -53.71438,
- -26.46168
- ],
- [
- -53.71476,
- -26.48118
- ],
- [
- -53.73047,
- -26.49913
- ],
- [
- -53.73146,
- -26.54081
- ],
- [
- -53.75096,
- -26.5408
- ],
- [
- -53.75095,
- -26.62417
- ],
- [
- -53.7602,
- -26.62414
- ],
- [
- -53.76125,
- -26.6675
- ],
- [
- -53.75098,
- -26.66751
- ],
- [
- -53.75096,
- -26.74298
- ],
- [
- -53.72737,
- -26.7434
- ],
- [
- -53.72133,
- -26.74905
- ],
- [
- -53.72141,
- -26.75093
- ],
- [
- -53.74571,
- -26.75943
- ],
- [
- -53.74612,
- -26.77704
- ],
- [
- -53.71948,
- -26.77755
- ],
- [
- -53.72084,
- -26.83416
- ],
- [
- -53.70047,
- -26.83414
- ],
- [
- -53.70277,
- -26.93108
- ],
- [
- -53.71168,
- -26.93091
- ],
- [
- -53.71224,
- -26.95557
- ],
- [
- -53.751,
- -26.95479
- ],
- [
- -53.75092,
- -26.99915
- ],
- [
- -53.76467,
- -26.99915
- ],
- [
- -53.8037,
- -27.03751
- ],
- [
- -53.80454,
- -27.07258
- ],
- [
- -53.80809,
- -27.07249
- ],
- [
- -53.80862,
- -27.09613
- ],
- [
- -53.8269,
- -27.09577
- ],
- [
- -53.82762,
- -27.12414
- ],
- [
- -53.84644,
- -27.12413
- ],
- [
- -53.84765,
- -27.17014
- ],
- [
- -53.83506,
- -27.18932
- ],
- [
- -53.83536,
- -27.20054
- ],
- [
- -53.68847,
- -27.20284
- ],
- [
- -53.68849,
- -27.22789
- ],
- [
- -53.43654,
- -27.23246
- ],
- [
- -53.43655,
- -27.16751
- ],
- [
- -53.37598,
- -27.16751
- ],
- [
- -53.37601,
- -27.23352
- ],
- [
- -53.24905,
- -27.23564
- ],
- [
- -53.24905,
- -27.20922
- ],
- [
- -53.06344,
- -27.20918
- ],
- [
- -53.06345,
- -27.2334
- ],
- [
- -52.81348,
- -27.23685
- ],
- [
- -52.81346,
- -27.27653
- ],
- [
- -52.75096,
- -27.27732
- ],
- [
- -52.75096,
- -27.29249
- ],
- [
- -52.4385,
- -27.29252
- ],
- [
- -52.43848,
- -27.32689
- ],
- [
- -52.37603,
- -27.32753
- ],
- [
- -52.37599,
- -27.3342
- ],
- [
- -52.25098,
- -27.33418
- ],
- [
- -52.25099,
- -27.34669
- ],
- [
- -52.18655,
- -27.34728
- ],
- [
- -52.18657,
- -27.33419
- ],
- [
- -52.12598,
- -27.3342
- ],
- [
- -52.12599,
- -27.36413
- ],
- [
- -52.02979,
- -27.36489
- ],
- [
- -52.03036,
- -27.42442
- ],
- [
- -51.97534,
- -27.42479
- ],
- [
- -51.97603,
- -27.50088
- ],
- [
- -51.93845,
- -27.50085
- ],
- [
- -51.93845,
- -27.54252
- ],
- [
- -51.68846,
- -27.54247
- ],
- [
- -51.68847,
- -27.55742
- ],
- [
- -51.59903,
- -27.5579
- ],
- [
- -51.59923,
- -27.59481
- ],
- [
- -51.56351,
- -27.59498
- ],
- [
- -51.56348,
- -27.62586
- ],
- [
- -51.50088,
- -27.62586
- ],
- [
- -51.50095,
- -27.66754
- ],
- [
- -51.43937,
- -27.6675
- ],
- [
- -51.43954,
- -27.70932
- ],
- [
- -51.37597,
- -27.7095
- ],
- [
- -51.37601,
- -27.75089
- ],
- [
- -51.31349,
- -27.7509
- ],
- [
- -51.31346,
- -27.79253
- ],
- [
- -51.18847,
- -27.79251
- ],
- [
- -51.18848,
- -27.87586
- ],
- [
- -51.12598,
- -27.87586
- ],
- [
- -51.12597,
- -27.91752
- ],
- [
- -51.06348,
- -27.9175
- ],
- [
- -51.06347,
- -27.95919
- ],
- [
- -51.00095,
- -28.00086
- ],
- [
- -50.9385,
- -28.00086
- ],
- [
- -50.93849,
- -28.16755
- ],
- [
- -50.81346,
- -28.16752
- ],
- [
- -50.81345,
- -28.29253
- ],
- [
- -50.75096,
- -28.29251
- ],
- [
- -50.68845,
- -28.33418
- ],
- [
- -50.68849,
- -28.41754
- ],
- [
- -50.626,
- -28.41752
- ],
- [
- -50.56352,
- -28.44094
- ],
- [
- -50.43848,
- -28.44051
- ],
- [
- -50.43847,
- -28.45917
- ],
- [
- -50.37597,
- -28.45921
- ],
- [
- -50.37598,
- -28.47554
- ],
- [
- -50.18844,
- -28.47454
- ],
- [
- -50.18849,
- -28.51143
- ],
- [
- -50.12398,
- -28.51104
- ],
- [
- -50.12402,
- -28.50086
- ],
- [
- -49.87597,
- -28.50085
- ],
- [
- -49.87601,
- -28.5142
- ],
- [
- -49.81347,
- -28.51369
- ],
- [
- -49.81347,
- -28.58255
- ],
- [
- -49.83003,
- -28.58251
- ],
- [
- -49.82951,
- -28.62597
- ],
- [
- -49.8759,
- -28.66572
- ],
- [
- -50.001,
- -28.74915
- ],
- [
- -50.001,
- -29.04083
- ],
- [
- -50.03319,
- -29.04081
- ],
- [
- -50.03219,
- -29.14711
- ],
- [
- -50.12602,
- -29.14774
- ],
- [
- -50.12598,
- -29.16579
- ],
- [
- -50.13613,
- -29.16581
- ],
- [
- -50.1885,
- -29.19623
- ],
- [
- -50.1885,
- -29.31905
- ],
- [
- -50.1422,
- -29.31873
- ],
- [
- -50.14208,
- -29.33422
- ],
- [
- -50.126,
- -29.33418
- ],
- [
- -50.12599,
- -29.36238
- ],
- [
- -49.99906,
- -29.36153
- ],
- [
- -49.99904,
- -29.24031
- ],
- [
- -49.93848,
- -29.23986
- ],
- [
- -49.93851,
- -29.25087
- ],
- [
- -49.87601,
- -29.25087
- ],
- [
- -49.876,
- -29.30098
- ],
- [
- -49.82262,
- -29.30052
- ],
- [
- -49.82227,
- -29.33419
- ],
- [
- -49.81347,
- -29.33422
- ],
- [
- -49.81354,
- -29.3411
- ],
- [
- -49.68654,
- -29.33991
- ],
- [
- -49.68651,
- -29.29255
- ],
- [
- -49.62399,
- -29.29252
- ],
- [
- -49.62398,
- -29.25085
- ],
- [
- -49.56149,
- -29.25083
- ],
- [
- -49.56145,
- -29.16749
- ],
- [
- -49.49901,
- -29.16746
- ],
- [
- -49.49902,
- -29.08419
- ],
- [
- -49.4365,
- -29.08418
- ],
- [
- -49.43651,
- -29.04251
- ],
- [
- -49.37405,
- -29.04248
- ],
- [
- -49.37402,
- -28.9592
- ],
- [
- -49.31153,
- -28.95917
- ],
- [
- -49.31152,
- -28.91749
- ],
- [
- -49.24898,
- -28.9175
- ],
- [
- -49.24897,
- -28.87582
- ],
- [
- -49.18655,
- -28.87585
- ],
- [
- -49.18653,
- -28.83414
- ],
- [
- -49.12402,
- -28.83418
- ],
- [
- -49.12401,
- -28.7925
- ],
- [
- -49.06149,
- -28.79247
- ],
- [
- -49.06146,
- -28.75084
- ],
- [
- -48.99903,
- -28.75085
- ],
- [
- -48.99903,
- -28.70919
- ],
- [
- -48.93658,
- -28.70918
- ],
- [
- -48.93658,
- -28.66752
- ],
- [
- -48.87405,
- -28.66751
- ],
- [
- -48.87404,
- -28.62585
- ],
- [
- -48.74912,
- -28.62585
- ],
- [
- -48.74912,
- -28.54254
- ],
- [
- -48.68656,
- -28.54253
- ],
- [
- -48.68658,
- -28.33417
- ],
- [
- -48.62408,
- -28.33416
- ],
- [
- -48.62406,
- -28.08418
- ],
- [
- -48.5616,
- -28.08418
- ],
- [
- -48.56159,
- -27.95919
- ],
- [
- -48.49905,
- -27.95916
- ],
- [
- -48.49904,
- -27.91581
- ],
- [
- -48.56157,
- -27.9158
- ],
- [
- -48.5616,
- -27.87584
- ],
- [
- -48.49902,
- -27.87586
- ],
- [
- -48.49902,
- -27.83422
- ],
- [
- -48.43657,
- -27.83418
- ],
- [
- -48.43661,
- -27.62583
- ],
- [
- -48.37406,
- -27.62585
- ],
- [
- -48.37405,
- -27.50086
- ],
- [
- -48.31157,
- -27.50086
- ],
- [
- -48.31153,
- -27.24913
- ],
- [
- -48.43657,
- -27.24913
- ],
- [
- -48.43654,
- -27.20916
- ],
- [
- -48.37402,
- -27.2092
- ],
- [
- -48.37405,
- -27.1658
- ],
- [
- -48.43656,
- -27.1658
- ],
- [
- -48.43656,
- -27.12415
- ],
- [
- -48.49906,
- -27.12413
- ],
- [
- -48.49907,
- -27.08667
- ],
- [
- -48.50022,
- -27.08666
- ],
- [
- -48.50031,
- -27.08247
- ],
- [
- -48.5616,
- -27.08248
- ],
- [
- -48.56159,
- -27.04252
- ],
- [
- -48.49906,
- -27.04252
- ],
- [
- -48.49906,
- -26.99913
- ],
- [
- -48.56156,
- -26.99913
- ],
- [
- -48.56157,
- -26.91579
- ],
- [
- -48.62488,
- -26.91624
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "text": "Sistema de Informações Geográficas - Governo de Santa Catarina",
- "url": "http://sigsc.sds.sc.gov.br/download/termo_sigsc.pdf"
- },
- "available_projections": [
- "EPSG:29193",
- "EPSG:31982",
- "EPSG:3857",
- "EPSG:41001",
- "EPSG:4326"
- ],
- "country_code": "BR",
- "end_date": "2012",
- "id": "sc2012",
- "license_url": "http://sigsc.sds.sc.gov.br",
- "name": "SIG Santa Catarina OrtoRGB 2012",
- "start_date": "2012",
- "type": "wms",
- "url": "http://sigsc.sc.gov.br/sigserver/SIGSC/wms?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OrtoRGB-Landsat-2012&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -69.8568,
- -55.55949
- ],
- [
- -72.26521,
- -55.14943
- ],
- [
- -72.26521,
- -54.51089
- ],
- [
- -72.08531,
- -54.17909
- ],
- [
- -69.49116,
- -54.17889
- ],
- [
- -69.4915,
- -55.28379
- ],
- [
- -69.62231,
- -55.5591
- ],
- [
- -69.8568,
- -55.55949
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "CL",
- "description": "A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping (false color IR)",
- "end_date": "2013-09-16",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC82280982013259LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 12,
- "name": "imagico.de: Isla Londonderry",
- "start_date": "2013-09-16",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC82280982013259LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -72.86696,
- -41.51741
- ],
- [
- -72.86696,
- -41.04527
- ],
- [
- -72.23181,
- -41.04527
- ],
- [
- -71.8751,
- -41.10829
- ],
- [
- -72.00007,
- -41.51741
- ],
- [
- -72.86696,
- -41.51741
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "CL",
- "description": "Image from after the 2015 eruption (true color)",
- "end_date": "2016-01-31",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC82330892016031LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Volcán Calbuco",
- "start_date": "2016-01-31",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC82330892016031LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -78.532,
- -1.80509
- ],
- [
- -78.532,
- -1.60811
- ],
- [
- -78.33562,
- -1.60811
- ],
- [
- -78.33562,
- -1.80509
- ],
- [
- -78.532,
- -1.80509
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "EC",
- "description": "2007 ASTER image offering better glacier coverage than common sources (true color with estimated blue)",
- "end_date": "2012-02-05",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: El Altar",
- "start_date": "2012-02-05",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00302052007154424_20150518041444_91492&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -92.05216,
- 1.3213
- ],
- [
- -92.05216,
- 1.72181
- ],
- [
- -91.74849,
- 1.72181
- ],
- [
- -91.74849,
- 1.3213
- ],
- [
- -92.05216,
- 1.3213
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "EC",
- "description": "Recent image, only old and poor images in other sources currently (true color)",
- "end_date": "2016-03-11",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R040_N01_20160311T164128",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Darwin and Wolf islands, Galapagos",
- "start_date": "2016-03-11",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R040_N01_20160311T164128&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -28.21075,
- -56.72108
- ],
- [
- -28.21075,
- -56.62498
- ],
- [
- -27.96956,
- -56.62498
- ],
- [
- -27.96956,
- -56.72108
- ],
- [
- -28.21075,
- -56.72108
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GS",
- "description": "Missing in other image sources (true color with estimated blue)",
- "end_date": "2013-11-16",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Leskov Island ASTER",
- "start_date": "2013-11-16",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00311162013112731_20150618142416_109190&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -180.0,
- -67.42635
- ],
- [
- -180.0,
- -67.32544
- ],
- [
- -179.82473,
- -67.32538
- ],
- [
- -179.82473,
- -67.42635
- ],
- [
- -180.0,
- -67.42635
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GS",
- "description": "Missing in other image sources (true color)",
- "end_date": "2014-02-05",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC80611072014036LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Scott Island",
- "start_date": "2014-02-05",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC80611072014036LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -27.99293,
- -56.73479
- ],
- [
- -28.22776,
- -56.73262
- ],
- [
- -28.22416,
- -56.60075
- ],
- [
- -27.96975,
- -56.60283
- ],
- [
- -27.97319,
- -56.73479
- ],
- [
- -27.99293,
- -56.73479
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GS",
- "description": "Missing in other image sources (true color)",
- "end_date": "2015-10-13",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC81991002015286LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Leskov Island Landsat",
- "start_date": "2015-10-13",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC81991002015286LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -34.17701,
- -55.29693
- ],
- [
- -35.19599,
- -55.28285
- ],
- [
- -35.16664,
- -54.72097
- ],
- [
- -34.12517,
- -54.73465
- ],
- [
- -34.1401,
- -55.29693
- ],
- [
- -34.17701,
- -55.29693
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GS",
- "description": "Missing in other image sources (true color)",
- "end_date": "2015-12-10",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC82050982015344LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Clerke Rocks",
- "start_date": "2015-12-10",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC82050982015344LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -42.12875,
- -53.7205
- ],
- [
- -42.14626,
- -53.45782
- ],
- [
- -41.67573,
- -53.44586
- ],
- [
- -41.65582,
- -53.70872
- ],
- [
- -42.12875,
- -53.7205
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "GS",
- "description": "Missing in other image sources (true color)",
- "end_date": "2015-12-13",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-LC82100972015347LGN00",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 13,
- "name": "imagico.de: Shag Rocks",
- "start_date": "2015-12-13",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=LC82100972015347LGN00&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -79.62539,
- 8.77083
- ],
- [
- -79.68684,
- 8.82197
- ],
- [
- -79.68667,
- 8.93705
- ],
- [
- -79.65363,
- 9.09294
- ],
- [
- -79.26816,
- 9.09294
- ],
- [
- -79.32833,
- 8.77083
- ],
- [
- -79.62539,
- 8.77083
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "PA",
- "description": "New locks with less clouds than in the Sentinel-2 image - make sure to check image alignment (true color)",
- "end_date": "2016-12-30",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-EO1A0120532016364110KF",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Panama Canal - Pacific side",
- "start_date": "2016-12-30",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=EO1A0120532016364110KF&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -80.01654,
- 8.84898
- ],
- [
- -80.01654,
- 9.41481
- ],
- [
- -79.46859,
- 9.41481
- ],
- [
- -79.46859,
- 8.84898
- ],
- [
- -80.01654,
- 8.84898
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "PA",
- "description": "Images of the new locks (but partly cloudy) (true color)",
- "end_date": "2016-06-07",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R111_N09_20160604T154554",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Panama Canal",
- "start_date": "2016-06-07",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R111_N09_20160604T154554&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -72.75945,
- -15.68684
- ],
- [
- -72.75945,
- -15.4957
- ],
- [
- -72.74434,
- -15.4263
- ],
- [
- -72.41286,
- -15.4263
- ],
- [
- -72.41286,
- -15.65296
- ],
- [
- -72.42411,
- -15.68667
- ],
- [
- -72.75945,
- -15.68684
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "PE",
- "description": "Up-to-date image for glacier mapping (true color)",
- "end_date": "2016-09-21",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-EO1A0040712016264110KF",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Coropuna",
- "start_date": "2016-09-21",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=EO1A0040712016264110KF&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": {
- "coordinates": [
- [
- [
- -71.18071,
- -14.49785
- ],
- [
- -71.17976,
- -13.71029
- ],
- [
- -70.55637,
- -13.71263
- ],
- [
- -70.55637,
- -14.49785
- ],
- [
- -71.18071,
- -14.49785
- ]
- ]
- ],
- "type": "Polygon"
- },
- "properties": {
- "attribution": {
- "required": true,
- "text": "imagico.de OSM images for mapping",
- "url": "http://maps.imagico.de/#osmim"
- },
- "country_code": "PE",
- "description": "Poor and outdated imagery in other sources (true color)",
- "end_date": "2016-05-10",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png",
- "id": "osmim-imagicode-S2A_R039_S15_20160510T145731",
- "license_url": "http://imagico.de/map/osmim_tiles.php",
- "max_zoom": 14,
- "name": "imagico.de: Willkanuta Mountains and Quelccaya Ice Cap",
- "start_date": "2016-05-10",
- "type": "tms",
- "url": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R039_S15_20160510T145731&z={zoom}&x={x}&y={-y}"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "default": true,
- "description": "Satellite and aerial imagery.",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/Bing.png",
- "id": "Bing",
- "license_url": "https://wiki.openstreetmap.org/wiki/Bing_Maps",
- "max_zoom": 22,
- "min_zoom": 1,
- "name": "Bing aerial imagery",
- "no_tile_header": {
- "X-VE-Tile-Info": [
- "no-tile"
- ]
- },
- "permission_osm": "explicit",
- "privacy_policy_url": "https://privacy.microsoft.com/en-gb/privacystatement",
- "type": "bing",
- "url": "https://www.bing.com/maps"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Terms & Feedback",
- "url": "https://wiki.openstreetmap.org/wiki/Esri"
- },
- "category": "photo",
- "default": true,
- "description": "Esri world imagery.",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png",
- "id": "EsriWorldImagery",
- "max_zoom": 22,
- "name": "Esri World Imagery",
- "no_tile_header": {
- "Etag": [
- "\"10i954m13i2\""
- ]
- },
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Terms & Feedback",
- "url": "https://wiki.openstreetmap.org/wiki/Esri"
- },
- "category": "photo",
- "default": true,
- "description": "Esri archive imagery that may be clearer and more accurate than the default layer.",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png",
- "id": "EsriWorldImageryClarity",
- "license_url": "https://github.com/osmlab/editor-layer-index/pull/358#issuecomment-361416110",
- "max_zoom": 22,
- "name": "Esri World Imagery (Clarity) Beta",
- "permission_osm": "explicit",
- "type": "tms",
- "url": "https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Terms & Feedback",
- "url": "https://www.mapbox.com/about/maps"
- },
- "category": "osmbasedmap",
- "default": true,
- "description": "Shows major features to help orient you.",
- "i18n": true,
- "id": "mapbox_locator_overlay",
- "max_zoom": 16,
- "name": "Locator Overlay",
- "overlay": true,
- "privacy_policy_url": "https://www.mapbox.com/legal/privacy/",
- "type": "tms",
- "url": "https://api.mapbox.com/styles/v1/openstreetmap/ckasmteyi1tda1ipfis6wqhuq/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJja2JjaDZoMm8wMXU5MzJvMmZwOHY3ZHRyIn0.nzEnT3XUHOzDoZxawHYGxg"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Terms & Feedback",
- "url": "https://www.mapbox.com/about/maps"
- },
- "category": "photo",
- "default": true,
- "description": "Satellite and aerial imagery.",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/MapBoxSatellite.png",
- "id": "Mapbox",
- "license_url": "https://wiki.openstreetmap.org/wiki/Vertical_Aerial_Photographs#DigitalGlobe_.2F_MapBox",
- "max_zoom": 22,
- "name": "Mapbox Satellite",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://www.mapbox.com/legal/privacy/",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/mapbox.satellite/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA",
- "url": "https://tools.geofabrik.de/osmi"
- },
- "category": "qa",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png",
- "id": "OSM_Inspector-Addresses",
- "max_zoom": 18,
- "name": "OSM Inspector: Addresses",
- "overlay": true,
- "type": "tms",
- "url": "https://tools.geofabrik.de/osmi/tiles/addresses/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA",
- "url": "https://tools.geofabrik.de/osmi"
- },
- "category": "qa",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png",
- "id": "OSM_Inspector-Geometry",
- "max_zoom": 18,
- "name": "OSM Inspector: Geometry",
- "overlay": true,
- "type": "tms",
- "url": "https://tools.geofabrik.de/osmi/tiles/geometry/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA",
- "url": "https://tools.geofabrik.de/osmi"
- },
- "category": "qa",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png",
- "id": "OSM_Inspector-Highways",
- "max_zoom": 18,
- "name": "OSM Inspector: Highways",
- "overlay": true,
- "type": "tms",
- "url": "https://tools.geofabrik.de/osmi/tiles/highways/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA",
- "url": "https://tools.geofabrik.de/osmi"
- },
- "category": "qa",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png",
- "id": "OSM_Inspector-Multipolygon",
- "max_zoom": 19,
- "min_zoom": 8,
- "name": "OSM Inspector: Area",
- "overlay": true,
- "type": "tms",
- "url": "https://tools.geofabrik.de/osmi/tiles/area/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA",
- "url": "https://tools.geofabrik.de/osmi"
- },
- "category": "qa",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png",
- "id": "OSM_Inspector-Places",
- "max_zoom": 18,
- "name": "OSM Inspector: Places",
- "overlay": true,
- "type": "tms",
- "url": "https://tools.geofabrik.de/osmi/tiles/places/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA",
- "url": "https://tools.geofabrik.de/osmi"
- },
- "category": "qa",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png",
- "id": "OSM_Inspector-Routing",
- "max_zoom": 18,
- "name": "OSM Inspector: Routing",
- "overlay": true,
- "type": "tms",
- "url": "https://tools.geofabrik.de/osmi/tiles/routing/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA",
- "url": "https://tools.geofabrik.de/osmi"
- },
- "category": "qa",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png",
- "id": "OSM_Inspector-Tagging",
- "max_zoom": 18,
- "name": "OSM Inspector: Tagging",
- "overlay": true,
- "type": "tms",
- "url": "https://tools.geofabrik.de/osmi/tiles/tagging/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA",
- "url": "http://openptmap.de"
- },
- "category": "osmbasedmap",
- "i18n": true,
- "icon": "http://openptmap.de/favicon_pt.png",
- "id": "openpt_map",
- "max_zoom": 17,
- "min_zoom": 4,
- "name": "OpenPT Map (overlay)",
- "overlay": true,
- "type": "tms",
- "url": "http://openptmap.de/tiles/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "text": "Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors",
- "url": "https://www.openrailwaymap.org/"
- },
- "category": "osmbasedmap",
- "description": "Overlay imagery showing railway infrastructure based on OpenStreetMap data",
- "i18n": true,
- "icon": "https://www.openrailwaymap.org/img/openrailwaymap-64.png",
- "id": "openrailwaymap",
- "max_zoom": 20,
- "name": "OpenRailwayMap",
- "overlay": true,
- "privacy_policy_url": "https://www.openrailwaymap.org/en/imprint",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tiles.openrailwaymap.org/standard/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "text": "Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors",
- "url": "https://www.openrailwaymap.org/"
- },
- "description": "Overlay imagery showing railway speed limits based on OpenStreetMap data",
- "i18n": true,
- "icon": "https://www.openrailwaymap.org/img/openrailwaymap-64.png",
- "id": "openrailwaymap-maxspeeds",
- "max_zoom": 20,
- "name": "OpenRailwayMap Maxspeeds",
- "overlay": true,
- "privacy_policy_url": "https://www.openrailwaymap.org/en/imprint",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tiles.openrailwaymap.org/maxspeed/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "text": "Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors",
- "url": "https://www.openrailwaymap.org/"
- },
- "description": "Overlay imagery showing railway signals based on OpenStreetMap data",
- "i18n": true,
- "icon": "https://www.openrailwaymap.org/img/openrailwaymap-64.png",
- "id": "openrailwaymap-signalling",
- "max_zoom": 20,
- "name": "OpenRailwayMap Signalling",
- "overlay": true,
- "privacy_policy_url": "https://www.openrailwaymap.org/en/imprint",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tiles.openrailwaymap.org/signals/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA",
- "url": "https://www.openstreetmap.org/copyright"
- },
- "category": "osmbasedmap",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenSeaMap.png",
- "id": "openseamap",
- "max_zoom": 18,
- "name": "OpenSeaMap",
- "overlay": true,
- "type": "tms",
- "url": "https://tiles.openseamap.org/seamark/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "text": "© OpenSnowMap.org",
- "url": "https://www.opensnowmap.org/"
- },
- "category": "osmbasedmap",
- "description": "Overlay imagery for piste mapping in OSM. Updated daily.",
- "icon": "https://www.opensnowmap.org/pics/alpine.png",
- "id": "opensnowmap-overlay",
- "max_zoom": 18,
- "name": "OpenSnowMap overlay",
- "overlay": true,
- "type": "tms",
- "url": "https://www.opensnowmap.org/pistes/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA",
- "url": "https://www.openstreetmap.org/"
- },
- "category": "osmbasedmap",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
- "id": "osm-mapnik-no_labels",
- "max_zoom": 18,
- "name": "OpenStreetMap (Mapnik, no labels)",
- "type": "tms",
- "url": "https://tiles.wmflabs.org/osm-no-labels/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL",
- "url": "https://www.openstreetmap.org/"
- },
- "category": "osmbasedmap",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
- "id": "osmfr",
- "max_zoom": 20,
- "name": "OpenStreetMap (French Style)",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.openstreetmap.fr/osmfr/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "html": "GPS Direction: ← ↓ ↑ → © OpenStreetMap contributors.",
- "required": true,
- "text": "© OpenStreetMap contributors",
- "url": "https://www.openstreetmap.org/copyright"
- },
- "category": "other",
- "description": "Public GPS traces uploaded to OpenStreetMap.",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
- "id": "osm-gps",
- "license_url": "https://wiki.osmfoundation.org/wiki/Terms_of_Use",
- "max_zoom": 20,
- "name": "OpenStreetMap GPS traces",
- "overlay": true,
- "privacy_policy_url": "https://wiki.osmfoundation.org/wiki/Privacy_Policy",
- "type": "tms",
- "url": "https://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": false,
- "text": "© OpenStreetMap contributors, CC-BY-SA",
- "url": "https://www.openstreetmap.org"
- },
- "category": "osmbasedmap",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
- "id": "osm-mapnik-german_style",
- "max_zoom": 18,
- "name": "OpenStreetMap (German Style)",
- "type": "tms",
- "url": "https://{switch:a,b,c,d}.tile.openstreetmap.de/tiles/osmde/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, tiles courtesy of Humanitarian OpenStreetMap Team",
- "url": "https://www.hotosm.org/"
- },
- "category": "osmbasedmap",
- "icon": "https://wiki.openstreetmap.org/w/images/thumb/c/c9/Hot_logo.svg/300px-Hot_logo.svg.png",
- "id": "HDM_HOT",
- "max_zoom": 20,
- "name": "OpenStreetMap (HOT Style)",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.openstreetmap.fr/hot/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA 2.0",
- "url": "https://www.openstreetmap.org"
- },
- "category": "osmbasedmap",
- "default": true,
- "description": "The default OpenStreetMap layer.",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
- "id": "MAPNIK",
- "license_url": "https://wiki.osmfoundation.org/wiki/Terms_of_Use",
- "max_zoom": 19,
- "name": "OpenStreetMap (Standard)",
- "privacy_policy_url": "https://wiki.osmfoundation.org/wiki/Privacy_Policy",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA",
- "url": "https://www.openstreetmap.org"
- },
- "category": "osmbasedmap",
- "default": true,
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-MapnikBlackWhite.png",
- "id": "osm-mapnik-black_and_white",
- "max_zoom": 18,
- "name": "OpenStreetMap (Standard Black & White)",
- "type": "tms",
- "url": "https://tiles.wmflabs.org/bw-mapnik/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Kartendaten: © OpenStreetMap-Mitwirkende, SRTM | Kartendarstellung: © OpenTopoMap (CC-BY-SA)",
- "url": "https://tile.opentopomap.org/about#verwendung"
- },
- "category": "osmbasedmap",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenTopoMap.png",
- "id": "OpenTopoMap",
- "max_zoom": 17,
- "min_zoom": 3,
- "name": "OpenTopoMap",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.opentopomap.org/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA",
- "url": "https://öpnvkarte.de/"
- },
- "category": "osmbasedmap",
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/PublicTransport(PNV).png",
- "id": "public_transport_oepnv",
- "max_zoom": 18,
- "name": "Public Transport (ÖPNV)",
- "type": "tms",
- "url": "https://tile.memomaps.de/tilegen/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Simon Poole, Data ©OpenStreetMap contributors",
- "url": "https://qa.poole.ch"
- },
- "category": "qa",
- "i18n": true,
- "id": "qa_no_address",
- "max_zoom": 18,
- "name": "QA No Address",
- "overlay": true,
- "type": "tms",
- "url": "https://tile{switch:2,3}.poole.ch/noaddress/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© Tiles: skobbler Map data: OpenStreetMap contributors",
- "url": "https://maps.skobbler.com"
- },
- "category": "osmbasedmap",
- "i18n": true,
- "icon": "https://www.skobbler.com/images/skobbler_logo_josm.png",
- "id": "skobbler",
- "max_zoom": 18,
- "min_zoom": 1,
- "name": "skobbler",
- "type": "tms",
- "url": "https://tiles{switch:1,2,3,4}-4001b3692e229e3215c9b7a73e528198.skobblermaps.com/TileService/tiles/2.0/00021210101/0/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL",
- "url": "http://maps.stamen.com/#terrain"
- },
- "category": "elevation",
- "i18n": true,
- "icon": "https://stamen.com/wp-content/uploads/2016/07/stamen_compass_rose_small-01.png",
- "id": "stamen-terrain-background",
- "max_zoom": 18,
- "min_zoom": 4,
- "name": "Stamen Terrain",
- "type": "tms",
- "url": "https://stamen-tiles-{switch:a,b,c,d}.a.ssl.fastly.net/terrain-background/{zoom}/{x}/{y}.jpg"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maps © Thunderforest, Data © OpenStreetMap contributors",
- "url": "https://www.thunderforest.com/terms"
- },
- "category": "osmbasedmap",
- "i18n": true,
- "id": "tf-landscape",
- "license_url": "https://thunderforest.com/terms",
- "max_zoom": 22,
- "name": "Thunderforest Landscape",
- "privacy_policy_url": "https://www.thunderforest.com/privacy",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.thunderforest.com/landscape/{zoom}/{x}/{y}.png?apikey={apikey}"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maps © Thunderforest, Data © OpenStreetMap contributors",
- "url": "https://www.thunderforest.com/terms"
- },
- "category": "osmbasedmap",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/TF-OpenCycleMap.png",
- "id": "tf-cycle",
- "license_url": "https://thunderforest.com/terms",
- "max_zoom": 22,
- "name": "Thunderforest OpenCycleMap",
- "privacy_policy_url": "https://www.thunderforest.com/privacy",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.thunderforest.com/cycle/{zoom}/{x}/{y}.png?apikey={apikey}"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Maps © Thunderforest, Data © OpenStreetMap contributors",
- "url": "https://www.thunderforest.com/terms"
- },
- "category": "osmbasedmap",
- "i18n": true,
- "id": "tf-outdoors",
- "license_url": "https://thunderforest.com/terms",
- "max_zoom": 22,
- "name": "Thunderforest Outdoors",
- "privacy_policy_url": "https://www.thunderforest.com/privacy",
- "type": "tms",
- "url": "https://{switch:a,b,c}.tile.thunderforest.com/outdoors/{zoom}/{x}/{y}.png?apikey={apikey}"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0",
- "url": "https://cycling.waymarkedtrails.org/en/help/legal"
- },
- "category": "other",
- "i18n": true,
- "icon": "https://static.waymarkedtrails.org/img/map_cycling.png",
- "id": "Waymarked_Trails-Cycling",
- "max_zoom": 17,
- "name": "Waymarked Trails: Cycling",
- "overlay": true,
- "type": "tms",
- "url": "https://tile.waymarkedtrails.org/cycling/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0",
- "url": "https://hiking.waymarkedtrails.org/en/help/legal"
- },
- "category": "other",
- "i18n": true,
- "icon": "https://static.waymarkedtrails.org/img/map_hiking.png",
- "id": "Waymarked_Trails-Hiking",
- "max_zoom": 17,
- "name": "Waymarked Trails: Hiking",
- "overlay": true,
- "type": "tms",
- "url": "https://tile.waymarkedtrails.org/hiking/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0",
- "url": "https://mtb.waymarkedtrails.org/en/help/legal"
- },
- "category": "other",
- "i18n": true,
- "icon": "https://static.waymarkedtrails.org/img/map_mtb.png",
- "id": "Waymarked_Trails-MTB",
- "max_zoom": 17,
- "name": "Waymarked Trails: MTB",
- "overlay": true,
- "type": "tms",
- "url": "https://tile.waymarkedtrails.org/mtb/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0",
- "url": "https://skating.waymarkedtrails.org/en/help/legal"
- },
- "category": "other",
- "i18n": true,
- "icon": "https://static.waymarkedtrails.org/img/map_skating.png",
- "id": "Waymarked_Trails-Skating",
- "max_zoom": 17,
- "name": "Waymarked Trails: Skating",
- "overlay": true,
- "type": "tms",
- "url": "https://tile.waymarkedtrails.org/skating/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0",
- "url": "https://slopes.waymarkedtrails.org/en/help/legal"
- },
- "category": "other",
- "i18n": true,
- "icon": "https://static.waymarkedtrails.org/img/map_slopes.png",
- "id": "Waymarked_Trails-Winter_Sports",
- "max_zoom": 17,
- "name": "Waymarked Trails: Winter Sports",
- "overlay": true,
- "type": "tms",
- "url": "https://tile.waymarkedtrails.org/slopes/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0",
- "url": "https://skating.waymarkedtrails.org/en/help/legal"
- },
- "category": "other",
- "icon": "https://static.waymarkedtrails.org/img/map_riding.png",
- "id": "Waymarked_Trails-Horse_Riding",
- "max_zoom": 17,
- "name": "Waymarked Trails: Horse Riding",
- "overlay": true,
- "type": "tms",
- "url": "https://tile.waymarkedtrails.org/riding/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "© OpenStreetMap contributors, CC-BY-SA",
- "url": "https://www.openstreetmap.org/"
- },
- "category": "osmbasedmap",
- "id": "wikimedia-map",
- "max_zoom": 18,
- "name": "Wikimedia Map",
- "type": "tms",
- "url": "https://maps.wikimedia.org/osm-intl/{zoom}/{x}/{y}.png"
- },
- "type": "Feature"
- },
- {
- "geometry": null,
- "properties": {
- "attribution": {
- "required": true,
- "text": "Sentinel-2 cloudless - https://s2maps.eu by EOX IT Services GmbH (Contains modified Copernicus Sentinel data 2017 & 2018)",
- "url": "https://s2maps.eu/"
- },
- "available_projections": [
- "EPSG:3857",
- "EPSG:4326",
- "EPSG:900913"
- ],
- "category": "photo",
- "default": false,
- "description": "Post-processed Sentinel Satellite imagery.",
- "end_date": "2018",
- "i18n": true,
- "icon": "https://osmlab.github.io/editor-layer-index/sources/world/eox.png",
- "id": "EOXAT2018CLOUDLESS",
- "license_url": "https://wiki.openstreetmap.org/wiki/Eox.at",
- "max_zoom": 18,
- "name": "eox.at 2018 cloudless",
- "permission_osm": "explicit",
- "privacy_policy_url": "https://eox.at/impressum/",
- "start_date": "2018",
- "type": "wms",
- "url": "https://tiles.maps.eox.at?LAYERS=s2cloudless-2018_3857&STYLES=&FORMAT=image/jpeg&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap"
- },
- "type": "Feature"
- }
- ],
- "meta": {
- "format_version": "1.0",
- "generated": "2020-09-25 14:02:52"
- },
- "type": "FeatureCollection"
-}
+{"features":[{"geometry":{"coordinates":[[[2.31954,6.55745],[2.33645,6.56024],[2.36377,6.56211],[2.36738,6.56068],[2.37777,6.5494],[2.37779,6.53485],[2.36994,6.49332],[2.37038,6.45527],[2.36958,6.45269],[2.36188,6.44177],[2.35392,6.40545],[2.36749,6.4015],[2.39526,6.40072],[2.40128,6.40374],[2.40588,6.40341],[2.42046,6.39383],[2.42485,6.39794],[2.42949,6.39887],[2.43625,6.39628],[2.43958,6.40042],[2.44439,6.40189],[2.45376,6.39899],[2.47145,6.39632],[2.48162,6.39106],[2.49453,6.3874],[2.50893,6.38888],[2.50719,6.39229],[2.5012,6.39162],[2.4963,6.39521],[2.4951,6.40123],[2.49543,6.40401],[2.4983,6.41022],[2.50191,6.41282],[2.51087,6.41321],[2.52219,6.40849],[2.53352,6.40517],[2.5381,6.40961],[2.54111,6.4109],[2.54651,6.41099],[2.54654,6.40651],[2.57639,6.40724],[2.57642,6.41177],[2.58576,6.41196],[2.58868,6.41095],[2.60877,6.39414],[2.6257,6.39488],[2.64555,6.39729],[2.65039,6.39339],[2.65367,6.36823],[2.64312,6.36659],[2.61251,6.36289],[2.56868,6.3607],[2.54683,6.36055],[2.54687,6.35546],[2.50207,6.35461],[2.47064,6.35596],[2.46777,6.35203],[2.46423,6.3502],[2.45254,6.35006],[2.45113,6.34813],[2.44737,6.34629],[2.43757,6.34654],[2.43298,6.33841],[2.43016,6.33707],[2.42245,6.33707],[2.39236,6.34115],[2.39315,6.34115],[2.36528,6.34445],[2.35386,6.3453],[2.34377,6.34458],[2.34094,6.34534],[2.31086,6.36567],[2.28435,6.37465],[2.28147,6.37762],[2.27599,6.39517],[2.27612,6.3982],[2.31529,6.49261],[2.3158,6.55307],[2.31954,6.55745]],[[1.69563,6.25076],[1.7001,6.24712],[1.70418,6.24697],[1.75875,6.25836],[1.77079,6.25995],[1.81712,6.27161],[1.84457,6.27657],[1.85768,6.27945],[1.88843,6.28326],[1.90482,6.28595],[1.90618,6.29435],[1.90083,6.29721],[1.89881,6.29954],[1.89404,6.30085],[1.89048,6.2997],[1.88748,6.29636],[1.88344,6.29622],[1.8697,6.29227],[1.8564,6.29198],[1.85207,6.28675],[1.84991,6.28906],[1.84691,6.29203],[1.84353,6.29333],[1.84041,6.29315],[1.83627,6.29129],[1.8341,6.28733],[1.83417,6.2852],[1.8323,6.28456],[1.82786,6.28644],[1.82182,6.29084],[1.81563,6.28998],[1.81211,6.29143],[1.80758,6.29571],[1.80472,6.29693],[1.80074,6.2971],[1.79776,6.29612],[1.79625,6.29492],[1.7949,6.28965],[1.79641,6.28608],[1.80098,6.28338],[1.79567,6.28013],[1.79156,6.28174],[1.78499,6.28122],[1.78092,6.27753],[1.77588,6.2755],[1.76745,6.27696],[1.75653,6.27496],[1.74833,6.27239],[1.74762,6.27726],[1.74572,6.27938],[1.73948,6.27985],[1.7368,6.27761],[1.73572,6.27892],[1.72902,6.27911],[1.72435,6.27422],[1.72449,6.26786],[1.72556,6.26683],[1.69934,6.26159],[1.69573,6.25726],[1.69563,6.25076]]],"type":"Polygon"},"properties":{"best":true,"country_code":"BJ","end_date":"2016","id":"Benin_cotonou_pleiade_2016","license_url":"http://taches.francophonelibre.org/project/6","max_zoom":21,"name":"Benin: Cotonou Pleiade 2016","start_date":"2016","type":"tms","url":"https://geoxxx.agrocampus-ouest.fr/owsifl/gwc/service/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Benin:cotonou_pleiade_2016&STYLE=&FORMAT=image/jpeg&tileMatrixSet=EPSG:3857&tileMatrix=EPSG:3857:{zoom}&tileRow={y}&tileCol={x}"},"type":"Feature"},{"geometry":{"coordinates":[[[1.83975,6.2578],[1.83975,7.11427],[2.5494,7.11427],[2.5494,6.48905],[2.49781,6.25806],[1.83975,6.2578]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"BJ","description":"Patchy and partly cloudy coverage in usual sources (true color)","end_date":"2015-12-21","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R022_N06_20151221T103009","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Cotonou","start_date":"2015-12-21","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R022_N06_20151221T103009&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-24.75878,14.74814],[-24.75878,15.09249],[-24.26706,15.09249],[-24.26706,14.74814],[-24.75878,14.74814]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"CV","description":"Image from after the 2014/2015 eruption (true color)","end_date":"2015-12-13","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC82100502015347LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Fogo, Cape Verde","start_date":"2015-12-13","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC82100502015347LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[37.20666,-0.26685],[37.20666,-0.01193],[37.56552,-0.01193],[37.56552,-0.26685],[37.20666,-0.26685]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"KE","description":"Up-to-date image for glacier mapping (true color)","end_date":"2016-06-13","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R092_S02_20160613T075613","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Mount Kenya 2016","start_date":"2016-06-13","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S02_20160613T075613&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[37.24769,-3.22921],[37.24769,-2.96816],[37.61581,-2.96816],[37.61581,-3.22921],[37.24769,-3.22921]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"TZ","description":"Up-to-date image for glacier mapping (true color)","end_date":"2016-08-02","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R092_S05_20160802T075556","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Mount Kilimanjaro 2016","start_date":"2016-08-02","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S05_20160802T075556&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[29.7663,0.20689],[29.7663,0.50918],[30.0346,0.50918],[30.0346,0.20689],[29.7663,0.20689]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"UG","description":"Recent image of most of the remaining Rwenzori Mountains glaciers (false color IR)","end_date":"2015-02-09","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81730602015040LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Rwenzori Mountains","start_date":"2015-02-09","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81730602015040LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[29.80514,0.23586],[29.80514,0.46709],[30.02503,0.46709],[30.02503,0.23586],[29.80514,0.23586]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"UG","description":"Up-to-date image for glacier mapping (true color)","end_date":"2016-07-02","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R078_N01_20160702T082522","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Rwenzori Mountains 2016","start_date":"2016-07-02","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N01_20160702T082522&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[17.83968,-32.79834],[17.88935,-32.69728],[18.00364,-32.69822],[18.09917,-32.74853],[18.28987,-32.55266],[18.29302,-32.04871],[18.10545,-31.6455],[17.85293,-31.3444],[17.548,-30.90217],[17.40445,-30.63747],[17.24937,-30.39917],[16.9937,-29.65436],[16.7988,-29.19437],[16.54941,-28.84159],[16.44987,-28.69188],[16.4491,-28.55158],[16.60026,-28.48257],[16.75141,-28.4487],[16.74622,-28.2459],[16.88551,-28.04729],[16.99295,-28.0244],[17.05297,-28.02571],[17.10076,-28.03388],[17.20115,-28.09305],[17.20263,-28.23284],[17.24746,-28.23382],[17.2508,-28.19889],[17.35119,-28.19759],[17.35156,-28.24427],[17.40158,-28.24524],[17.41491,-28.34898],[17.40083,-28.548],[17.4527,-28.54897],[17.45121,-28.64951],[17.49836,-28.68721],[17.60282,-28.683],[17.64997,-28.69679],[17.65259,-28.73815],[17.80139,-28.73815],[17.99943,-28.75606],[18.00027,-28.79562],[18.15745,-28.87181],[18.50638,-28.87181],[18.61536,-28.82959],[18.90875,-28.82775],[19.1047,-28.94885],[19.19691,-28.93785],[19.24301,-28.85162],[19.23149,-28.80296],[19.25873,-28.70099],[19.44315,-28.69732],[19.55003,-28.49583],[19.69673,-28.49399],[19.69882,-28.44794],[19.85076,-28.44333],[19.84971,-28.40278],[19.99536,-28.39909],[19.98937,-24.74979],[20.29167,-24.91923],[20.47246,-25.15017],[20.65324,-25.45294],[20.73326,-25.6802],[20.8281,-25.89635],[20.84292,-26.21585],[20.65028,-26.48409],[20.65324,-26.82049],[21.08891,-26.84693],[21.67277,-26.839],[21.7765,-26.66963],[21.97211,-26.64314],[22.28034,-26.32747],[22.57078,-26.1334],[22.77528,-25.67752],[23.00052,-25.27619],[23.46583,-25.27351],[23.88372,-25.59737],[24.2364,-25.6134],[24.60391,-25.78966],[25.1107,-25.73894],[25.50784,-25.68554],[25.64418,-25.48238],[25.84193,-24.78054],[25.84664,-24.75385],[26.39285,-24.63329],[26.47391,-24.56533],[26.509,-24.48424],[26.58619,-24.40758],[26.73006,-24.30145],[26.85674,-24.24995],[26.85744,-24.10269],[26.92155,-23.8991],[26.93183,-23.84619],[26.97148,-23.69943],[27.00061,-23.63676],[27.0578,-23.60526],[27.13605,-23.52034],[27.33396,-23.39738],[27.51441,-23.35939],[27.59581,-23.20855],[27.80986,-23.0995],[27.88285,-23.06205],[27.93829,-22.94965],[28.04076,-22.82551],[28.20568,-22.65529],[28.33972,-22.56394],[28.49061,-22.5607],[28.61088,-22.54002],[28.82818,-22.45502],[28.92853,-22.42323],[28.95941,-22.30901],[29.01626,-22.20834],[29.23241,-22.16935],[29.35312,-22.18429],[29.6549,-22.11864],[29.77771,-22.1362],[29.9293,-22.18494],[30.11668,-22.28303],[30.25634,-22.29148],[30.30336,-22.33952],[30.50618,-22.30576],[30.83743,-22.28498],[31.00586,-22.30771],[31.18342,-22.32329],[31.29306,-22.36746],[31.56806,-23.19034],[31.55683,-23.44308],[31.69311,-23.61752],[31.71197,-23.74114],[31.77747,-23.88006],[31.88863,-23.94811],[31.91444,-24.17467],[31.99483,-24.30409],[32.01667,-24.4406],[32.00773,-24.65366],[32.01964,-24.91407],[32.03552,-25.08498],[32.01964,-25.38214],[31.99285,-25.44938],[31.99979,-25.51657],[32.00575,-25.6079],[32.00575,-25.66248],[31.93627,-25.84037],[31.98094,-25.95465],[31.86878,-26.00373],[31.41621,-25.72777],[31.32291,-25.74386],[31.25046,-25.82965],[31.1393,-25.91627],[31.11647,-25.99124],[30.96561,-26.26658],[30.89217,-26.32797],[30.85346,-26.40356],[30.82269,-26.44888],[30.80226,-26.52407],[30.80384,-26.80821],[30.90209,-26.78075],[30.91003,-26.84895],[30.98249,-26.90826],[30.97653,-27.00292],[31.00344,-27.04416],[31.15433,-27.19804],[31.50156,-27.31112],[31.97002,-27.31112],[31.97002,-27.12047],[31.97697,-27.05066],[32.00025,-26.79839],[32.10698,-26.79846],[32.31145,-26.84795],[32.89999,-26.85161],[32.88609,-26.9817],[32.70943,-27.47854],[32.62407,-27.77751],[32.5814,-28.07479],[32.53872,-28.2288],[32.42756,-28.50216],[32.36404,-28.59457],[32.07026,-28.84698],[31.98788,-28.90695],[31.77648,-28.96949],[31.46385,-29.28593],[31.35963,-29.38543],[31.16808,-29.63074],[31.06486,-29.78935],[31.05345,-29.84705],[31.06699,-29.86403],[31.04555,-29.9502],[30.95186,-30.00339],[30.86518,-30.10241],[30.72447,-30.3925],[30.35563,-30.93089],[30.09724,-31.24583],[29.86731,-31.43043],[29.74094,-31.50147],[29.48131,-31.69787],[28.89432,-32.28989],[28.54971,-32.58946],[28.14365,-32.83207],[28.07487,-32.94169],[27.84509,-33.08287],[27.3758,-33.38607],[26.88054,-33.6459],[26.59169,-33.74808],[26.45273,-33.79358],[26.20675,-33.75489],[26.00779,-33.7224],[25.80555,-33.75243],[25.75111,-33.80065],[25.65291,-33.85436],[25.65291,-33.94698],[25.71958,-34.00401],[25.72028,-34.05112],[25.55089,-34.06315],[25.35046,-34.05026],[25.28106,-34.00203],[25.04763,-33.99946],[24.95472,-34.00436],[24.94966,-34.10104],[24.87704,-34.15065],[24.87629,-34.20053],[24.85326,-34.21896],[24.76453,-34.20179],[24.50014,-34.20033],[24.34867,-34.11638],[24.19888,-34.1019],[23.99634,-34.05144],[23.80175,-34.05243],[23.74936,-34.01119],[23.49735,-34.00901],[23.41552,-34.04346],[23.41543,-34.11404],[22.90009,-34.0993],[22.84124,-34.05479],[22.64703,-34.05026],[22.64598,-34.00728],[22.57002,-34.00641],[22.50505,-34.06459],[22.252,-34.06459],[22.22213,-34.10147],[22.16212,-34.1057],[22.17124,-34.15218],[22.15769,-34.21809],[22.00156,-34.21722],[21.9497,-34.322],[21.86115,-34.40071],[21.56147,-34.40201],[21.5468,-34.36612],[21.50174,-34.36699],[21.5007,-34.40201],[21.41949,-34.44652],[21.19787,-34.44782],[21.09882,-34.39913],[21.00337,-34.37539],[20.89319,-34.39971],[20.89766,-34.4854],[20.74468,-34.48281],[20.5042,-34.48626],[20.25272,-34.70148],[20.08035,-34.83619],[19.99233,-34.83791],[19.89907,-34.82758],[19.89383,-34.7936],[19.5973,-34.79618],[19.39297,-34.64202],[19.28771,-34.64048],[19.28614,-34.59866],[19.34744,-34.52445],[19.32853,-34.45344],[19.098,-34.44998],[19.07256,-34.38024],[19.00235,-34.35256],[18.95206,-34.39494],[18.7975,-34.39364],[18.79842,-34.10164],[18.50175,-34.10153],[18.49995,-34.36169],[18.44773,-34.362],[18.44799,-34.35227],[18.39744,-34.3514],[18.39717,-34.3023],[18.35657,-34.30056],[18.34793,-34.20204],[18.29721,-34.19503],[18.29511,-33.99371],[18.33745,-33.99141],[18.34766,-33.84924],[18.34793,-33.78155],[18.41247,-33.74488],[18.36155,-33.65016],[18.2992,-33.58559],[18.21668,-33.44887],[18.13899,-33.39741],[17.94735,-33.16026],[17.88552,-33.05757],[17.84859,-32.96685],[17.83968,-32.85073],[17.83968,-32.79834]]],"type":"Polygon"},"properties":{"best":true,"country_code":"ZA","id":"South_Africa-CD_NGI-Aerial","max_zoom":22,"min_zoom":1,"name":"South Africa CD:NGI Aerial","type":"tms","url":"http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[18.44866,-33.89362],[18.44859,-33.90264],[18.4702,-33.90277],[18.48139,-33.84724],[18.44925,-33.80107],[18.42815,-33.73564],[18.43914,-33.71772],[18.40719,-33.65899],[18.33224,-33.57752],[18.33245,-33.55045],[18.354,-33.55059],[18.35425,-33.5236],[18.36524,-33.52366],[18.36503,-33.5148],[18.37601,-33.51477],[18.37605,-33.5058],[18.42966,-33.50594],[18.4297,-33.48785],[18.44049,-33.48789],[18.4406,-33.46988],[18.49437,-33.4701],[18.49433,-33.47916],[18.51583,-33.47917],[18.51574,-33.48819],[18.52647,-33.4883],[18.52632,-33.52435],[18.54793,-33.52443],[18.54795,-33.51539],[18.56937,-33.5155],[18.56937,-33.52448],[18.58012,-33.52453],[18.58007,-33.5426],[18.59078,-33.5426],[18.59074,-33.56064],[18.57995,-33.56053],[18.57988,-33.56962],[18.5907,-33.56962],[18.59065,-33.57868],[18.62301,-33.57873],[18.62292,-33.58773],[18.66597,-33.58789],[18.66593,-33.61493],[18.67672,-33.61497],[18.67658,-33.65103],[18.6873,-33.65102],[18.68734,-33.66004],[18.69807,-33.66009],[18.69807,-33.66907],[18.75204,-33.66925],[18.75208,-33.64219],[18.77364,-33.64225],[18.77371,-33.63319],[18.82746,-33.6333],[18.82752,-33.6603],[18.81667,-33.66029],[18.8166,-33.67832],[18.80581,-33.67831],[18.80581,-33.70539],[18.8274,-33.70544],[18.82733,-33.72347],[18.83812,-33.72343],[18.83804,-33.74139],[18.81652,-33.74137],[18.81637,-33.79551],[18.80559,-33.79551],[18.80551,-33.81357],[18.79476,-33.81355],[18.79472,-33.83154],[18.77311,-33.83152],[18.77313,-33.84052],[18.76236,-33.84052],[18.76227,-33.90359],[18.75146,-33.90352],[18.75108,-33.98478],[18.76191,-33.9848],[18.76178,-34.02988],[18.7726,-34.0299],[18.77258,-34.03891],[18.79403,-34.03894],[18.79388,-34.0407],[18.79845,-34.04119],[18.80324,-34.04118],[18.80341,-34.03892],[18.81594,-34.03897],[18.81634,-34.02993],[18.83798,-34.03165],[18.838,-34.03],[18.84842,-34.03001],[18.84847,-34.02185],[18.85993,-34.02347],[18.85986,-34.02101],[18.86827,-34.02208],[18.86819,-34.02117],[18.88546,-34.02343],[18.88518,-34.02132],[18.90252,-34.02103],[18.90258,-34.012],[18.91342,-34.012],[18.91348,-33.99396],[18.94588,-33.99403],[18.94586,-34.0031],[18.96743,-34.003],[18.96747,-34.01208],[18.97822,-34.01208],[18.97833,-34.02114],[18.98914,-34.02114],[18.98916,-34.03913],[19.00002,-34.03913],[19.00002,-34.05718],[19.01084,-34.05725],[19.01079,-34.08414],[19.0,-34.08413],[19.00002,-34.0932],[18.98915,-34.09317],[18.98918,-34.1022],[18.97832,-34.10218],[18.97832,-34.11123],[18.9675,-34.11121],[18.96749,-34.12925],[18.9566,-34.12924],[18.95656,-34.13824],[18.96742,-34.13831],[18.96742,-34.14732],[18.98918,-34.1473],[18.98918,-34.1653],[18.97827,-34.16529],[18.97832,-34.17429],[18.96742,-34.17427],[18.96746,-34.1833],[18.95656,-34.18332],[18.95656,-34.19236],[18.94574,-34.19232],[18.9457,-34.20132],[18.93487,-34.20137],[18.93489,-34.21933],[18.90236,-34.21935],[18.90176,-34.23626],[18.88784,-34.23735],[18.88942,-34.25541],[18.88059,-34.25534],[18.87927,-34.26443],[18.86969,-34.26441],[18.86971,-34.27344],[18.83714,-34.27342],[18.83712,-34.26438],[18.84802,-34.2644],[18.84803,-34.23739],[18.81549,-34.21028],[18.81565,-34.17413],[18.85488,-34.15627],[18.76176,-34.08405],[18.65337,-34.07748],[18.47974,-34.11012],[18.44637,-34.13423],[18.44445,-34.16409],[18.436,-34.16405],[18.43597,-34.18202],[18.44681,-34.18211],[18.44673,-34.19111],[18.46593,-34.19121],[18.48662,-34.24539],[18.47889,-34.25437],[18.486,-34.25437],[18.46771,-34.29941],[18.48922,-34.34458],[18.50011,-34.34458],[18.49992,-34.36262],[18.46743,-34.36251],[18.46737,-34.35349],[18.3916,-34.31707],[18.39177,-34.29002],[18.37016,-34.28087],[18.37068,-34.21789],[18.34923,-34.18162],[18.32747,-34.18149],[18.32767,-34.16346],[18.31187,-34.15438],[18.3114,-34.14353],[18.32367,-34.13469],[18.34993,-34.10421],[18.33932,-34.08828],[18.36125,-34.05972],[18.35505,-34.05538],[18.34275,-34.06433],[18.32,-34.06443],[18.29607,-34.04513],[18.30682,-34.02526],[18.32877,-34.0192],[18.32892,-34.00125],[18.33974,-34.00127],[18.3398,-33.98663],[18.36287,-33.97351],[18.36381,-33.92925],[18.37262,-33.92927],[18.37284,-33.91776],[18.39773,-33.89335],[18.44866,-33.89362]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"City of Cape Town Aerial - OPENSTREETMAP USE ONLY","url":"https://www.capetown.gov.za"},"country_code":"ZA","description":"OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 12cm ground sample distance","end_date":"2015","id":"South_Africa-CapeTown-Aerial-2013","max_zoom":21,"min_zoom":1,"name":"City of Cape Town 2013 Aerial","start_date":"2013","type":"tms","url":"https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2013/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[18.44866,-33.89362],[18.44859,-33.90264],[18.4702,-33.90277],[18.48139,-33.84724],[18.44925,-33.80107],[18.42815,-33.73564],[18.43914,-33.71772],[18.40719,-33.65899],[18.33224,-33.57752],[18.33245,-33.55045],[18.354,-33.55059],[18.35425,-33.5236],[18.36524,-33.52366],[18.36503,-33.5148],[18.37601,-33.51477],[18.37605,-33.5058],[18.42966,-33.50594],[18.4297,-33.48785],[18.44049,-33.48789],[18.4406,-33.46988],[18.49437,-33.4701],[18.49433,-33.47916],[18.51583,-33.47917],[18.51574,-33.48819],[18.52647,-33.4883],[18.52632,-33.52435],[18.54793,-33.52443],[18.54795,-33.51539],[18.56937,-33.5155],[18.56937,-33.52448],[18.58012,-33.52453],[18.58007,-33.5426],[18.59078,-33.5426],[18.59074,-33.56064],[18.57995,-33.56053],[18.57988,-33.56962],[18.5907,-33.56962],[18.59065,-33.57868],[18.62301,-33.57873],[18.62292,-33.58773],[18.66597,-33.58789],[18.66593,-33.61493],[18.67672,-33.61497],[18.67658,-33.65103],[18.6873,-33.65102],[18.68734,-33.66004],[18.69807,-33.66009],[18.69807,-33.66907],[18.75204,-33.66925],[18.75208,-33.64219],[18.77364,-33.64225],[18.77371,-33.63319],[18.82746,-33.6333],[18.82752,-33.6603],[18.81667,-33.66029],[18.8166,-33.67832],[18.80581,-33.67831],[18.80581,-33.70539],[18.8274,-33.70544],[18.82733,-33.72347],[18.83812,-33.72343],[18.83804,-33.74139],[18.81652,-33.74137],[18.81637,-33.79551],[18.80559,-33.79551],[18.80551,-33.81357],[18.79476,-33.81355],[18.79472,-33.83154],[18.77311,-33.83152],[18.77313,-33.84052],[18.76236,-33.84052],[18.76227,-33.90359],[18.75146,-33.90352],[18.75108,-33.98478],[18.76191,-33.9848],[18.76178,-34.02988],[18.7726,-34.0299],[18.77258,-34.03891],[18.79403,-34.03894],[18.79388,-34.0407],[18.79845,-34.04119],[18.80324,-34.04118],[18.80341,-34.03892],[18.81594,-34.03897],[18.81634,-34.02993],[18.83798,-34.03165],[18.838,-34.03],[18.84842,-34.03001],[18.84847,-34.02185],[18.85993,-34.02347],[18.85986,-34.02101],[18.86827,-34.02208],[18.86819,-34.02117],[18.88546,-34.02343],[18.88518,-34.02132],[18.90252,-34.02103],[18.90258,-34.012],[18.91342,-34.012],[18.91348,-33.99396],[18.94588,-33.99403],[18.94586,-34.0031],[18.96743,-34.003],[18.96747,-34.01208],[18.97822,-34.01208],[18.97833,-34.02114],[18.98914,-34.02114],[18.98916,-34.03913],[19.00002,-34.03913],[19.00002,-34.05718],[19.01084,-34.05725],[19.01079,-34.08414],[19.0,-34.08413],[19.00002,-34.0932],[18.98915,-34.09317],[18.98918,-34.1022],[18.97832,-34.10218],[18.97832,-34.11123],[18.9675,-34.11121],[18.96749,-34.12925],[18.9566,-34.12924],[18.95656,-34.13824],[18.96742,-34.13831],[18.96742,-34.14732],[18.98918,-34.1473],[18.98918,-34.1653],[18.97827,-34.16529],[18.97832,-34.17429],[18.96742,-34.17427],[18.96746,-34.1833],[18.95656,-34.18332],[18.95656,-34.19236],[18.94574,-34.19232],[18.9457,-34.20132],[18.93487,-34.20137],[18.93489,-34.21933],[18.90236,-34.21935],[18.90176,-34.23626],[18.88784,-34.23735],[18.88942,-34.25541],[18.88059,-34.25534],[18.87927,-34.26443],[18.86969,-34.26441],[18.86971,-34.27344],[18.83714,-34.27342],[18.83712,-34.26438],[18.84802,-34.2644],[18.84803,-34.23739],[18.81549,-34.21028],[18.81565,-34.17413],[18.85488,-34.15627],[18.76176,-34.08405],[18.65337,-34.07748],[18.47974,-34.11012],[18.44637,-34.13423],[18.44445,-34.16409],[18.436,-34.16405],[18.43597,-34.18202],[18.44681,-34.18211],[18.44673,-34.19111],[18.46593,-34.19121],[18.48662,-34.24539],[18.47889,-34.25437],[18.486,-34.25437],[18.46771,-34.29941],[18.48922,-34.34458],[18.50011,-34.34458],[18.49992,-34.36262],[18.46743,-34.36251],[18.46737,-34.35349],[18.3916,-34.31707],[18.39177,-34.29002],[18.37016,-34.28087],[18.37068,-34.21789],[18.34923,-34.18162],[18.32747,-34.18149],[18.32767,-34.16346],[18.31187,-34.15438],[18.3114,-34.14353],[18.32367,-34.13469],[18.34993,-34.10421],[18.33932,-34.08828],[18.36125,-34.05972],[18.35505,-34.05538],[18.34275,-34.06433],[18.32,-34.06443],[18.29607,-34.04513],[18.30682,-34.02526],[18.32877,-34.0192],[18.32892,-34.00125],[18.33974,-34.00127],[18.3398,-33.98663],[18.36287,-33.97351],[18.36381,-33.92925],[18.37262,-33.92927],[18.37284,-33.91776],[18.39773,-33.89335],[18.44866,-33.89362]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"City of Cape Town Aerial - OPENSTREETMAP USE ONLY","url":"https://www.capetown.gov.za"},"country_code":"ZA","description":"OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance","end_date":"2016","id":"South_Africa-CapeTown-Aerial","max_zoom":21,"min_zoom":1,"name":"City of Cape Town 2015 Aerial","start_date":"2015","type":"tms","url":"https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2015/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[18.35572,-34.06348],[18.30856,-34.14988],[18.33655,-34.18764],[18.39162,-34.31413],[18.44973,-34.35206],[18.46768,-34.36437],[18.50723,-34.36336],[18.49749,-34.34603],[18.47559,-34.3287],[18.47589,-34.30558],[18.48776,-34.23493],[18.46646,-34.19971],[18.44151,-34.17606],[18.45764,-34.13225],[18.51574,-34.10278],[18.65052,-34.07582],[18.71958,-34.07728],[18.78742,-34.09416],[18.85527,-34.1604],[18.8218,-34.17223],[18.81328,-34.18481],[18.8148,-34.20343],[18.8361,-34.23815],[18.84401,-34.24142],[18.84736,-34.26053],[18.83458,-34.26506],[18.83214,-34.28391],[18.87808,-34.27637],[18.99369,-34.16342],[19.01316,-34.08207],[19.01225,-34.05334],[18.99186,-34.01981],[18.95292,-33.99282],[18.91003,-33.99207],[18.89603,-34.01855],[18.80355,-34.0193],[18.80324,-34.03746],[18.78651,-34.03721],[18.7859,-34.01981],[18.764,-34.0193],[18.76339,-33.8421],[18.79868,-33.84202],[18.7986,-33.81936],[18.82271,-33.8193],[18.82246,-33.74478],[18.8423,-33.74473],[18.84223,-33.72326],[18.82944,-33.72329],[18.82938,-33.70408],[18.80702,-33.70413],[18.80694,-33.67957],[18.81842,-33.67955],[18.81836,-33.66202],[18.82923,-33.662],[18.82913,-33.63214],[18.7506,-33.63232],[18.75072,-33.66656],[18.70223,-33.66667],[18.70217,-33.64934],[18.67759,-33.6494],[18.67747,-33.61367],[18.66782,-33.61369],[18.66773,-33.58722],[18.62376,-33.58733],[18.62373,-33.57749],[18.59163,-33.57756],[18.59161,-33.56929],[18.58033,-33.56932],[18.5803,-33.56088],[18.59158,-33.56086],[18.59151,-33.54227],[18.58072,-33.5423],[18.58066,-33.52366],[18.57027,-33.52368],[18.57024,-33.51513],[18.54757,-33.51519],[18.5476,-33.524],[18.52671,-33.52405],[18.52658,-33.4876],[18.51639,-33.48763],[18.51633,-33.47028],[18.42782,-33.47049],[18.42794,-33.5038],[18.3618,-33.50396],[18.36186,-33.52233],[18.30611,-33.52247],[18.3062,-33.54803],[18.30685,-33.57209],[18.32668,-33.58017],[18.36546,-33.62072],[18.4044,-33.65061],[18.42326,-33.69339],[18.42721,-33.72882],[18.4333,-33.77284],[18.45946,-33.82138],[18.48076,-33.8517],[18.47985,-33.88303],[18.46585,-33.89944],[18.4552,-33.90399],[18.43269,-33.89389],[18.39831,-33.8949],[18.37458,-33.90752],[18.36576,-33.93378],[18.36637,-33.96104],[18.34994,-33.97769],[18.33138,-33.99081],[18.32469,-34.02006],[18.30126,-34.02435],[18.30278,-34.04956],[18.32895,-34.06544],[18.35572,-34.06348]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"City of Cape Town Aerial","url":"http://odp.capetown.gov.za/datasets/aerial-imagery"},"country_code":"ZA","description":"City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance","end_date":"2017","id":"South_Africa-CapeTown-Aerial-2017","license_url":"https://osmlab.github.io/editor-layer-index/sources/africa/za/South_Africa_CapeTown_2017_2018_Aerial_Imagery.pdf","max_zoom":11,"min_zoom":1,"name":"2017 Aerial Imagery from the City of Cape Town","permission_osm":"explicit","start_date":"2017","type":"wmts","url":"https://citymaps.capetown.gov.za/agsext1/rest/services/Aerial_Photography_Cached/AP_2017_Jan/MapServer/WMTS/tile/1.0.0/Aerial_Photography_Cached_AP_2017_Jan/default/default028mm/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.35572,-34.06348],[18.30856,-34.14988],[18.33655,-34.18764],[18.39162,-34.31413],[18.44973,-34.35206],[18.46768,-34.36437],[18.50723,-34.36336],[18.49749,-34.34603],[18.47559,-34.3287],[18.47589,-34.30558],[18.48776,-34.23493],[18.46646,-34.19971],[18.44151,-34.17606],[18.45764,-34.13225],[18.51574,-34.10278],[18.65052,-34.07582],[18.71958,-34.07728],[18.78742,-34.09416],[18.85527,-34.1604],[18.8218,-34.17223],[18.81328,-34.18481],[18.8148,-34.20343],[18.8361,-34.23815],[18.84401,-34.24142],[18.84736,-34.26053],[18.83458,-34.26506],[18.83214,-34.28391],[18.87808,-34.27637],[18.99369,-34.16342],[19.01316,-34.08207],[19.01225,-34.05334],[18.99186,-34.01981],[18.95292,-33.99282],[18.91003,-33.99207],[18.89603,-34.01855],[18.80355,-34.0193],[18.80324,-34.03746],[18.78651,-34.03721],[18.7859,-34.01981],[18.764,-34.0193],[18.76339,-33.8421],[18.79868,-33.84202],[18.7986,-33.81936],[18.82271,-33.8193],[18.82246,-33.74478],[18.8423,-33.74473],[18.84223,-33.72326],[18.82944,-33.72329],[18.82938,-33.70408],[18.80702,-33.70413],[18.80694,-33.67957],[18.81842,-33.67955],[18.81836,-33.66202],[18.82923,-33.662],[18.82913,-33.63214],[18.7506,-33.63232],[18.75072,-33.66656],[18.70223,-33.66667],[18.70217,-33.64934],[18.67759,-33.6494],[18.67747,-33.61367],[18.66782,-33.61369],[18.66773,-33.58722],[18.62376,-33.58733],[18.62373,-33.57749],[18.59163,-33.57756],[18.59161,-33.56929],[18.58033,-33.56932],[18.5803,-33.56088],[18.59158,-33.56086],[18.59151,-33.54227],[18.58072,-33.5423],[18.58066,-33.52366],[18.57027,-33.52368],[18.57024,-33.51513],[18.54757,-33.51519],[18.5476,-33.524],[18.52671,-33.52405],[18.52658,-33.4876],[18.51639,-33.48763],[18.51633,-33.47028],[18.42782,-33.47049],[18.42794,-33.5038],[18.3618,-33.50396],[18.36186,-33.52233],[18.30611,-33.52247],[18.3062,-33.54803],[18.30685,-33.57209],[18.32668,-33.58017],[18.36546,-33.62072],[18.4044,-33.65061],[18.42326,-33.69339],[18.42721,-33.72882],[18.4333,-33.77284],[18.45946,-33.82138],[18.48076,-33.8517],[18.47985,-33.88303],[18.46585,-33.89944],[18.4552,-33.90399],[18.43269,-33.89389],[18.39831,-33.8949],[18.37458,-33.90752],[18.36576,-33.93378],[18.36637,-33.96104],[18.34994,-33.97769],[18.33138,-33.99081],[18.32469,-34.02006],[18.30126,-34.02435],[18.30278,-34.04956],[18.32895,-34.06544],[18.35572,-34.06348]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"City of Cape Town Aerial","url":"http://odp.capetown.gov.za/datasets/aerial-imagery"},"best":true,"country_code":"ZA","description":"City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance.","end_date":"2018","id":"South_Africa-CapeTown-Aerial-2018","license_url":"https://osmlab.github.io/editor-layer-index/sources/africa/za/South_Africa_CapeTown_2017_2018_Aerial_Imagery.pdf","max_zoom":11,"min_zoom":1,"name":"2018 Aerial Imagery from the City of Cape Town","permission_osm":"explicit","privacy_policy_url":"https://www.capetown.gov.za/General/Privacy","start_date":"2018","type":"tms","url":"https://citymaps.capetown.gov.za/agsext1/rest/services/Aerial_Photography_Cached/AP_2018_Feb/MapServer/WMTS/tile/1.0.0/Aerial_Photography_Cached_AP_2018_Feb/default/default028mm/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[156.96951,-84.50098],[154.50858,-84.46255],[154.50858,-82.60681],[175.46774,-82.58505],[177.00583,-83.52807],[177.00583,-84.19262],[171.93839,-84.34633],[166.83798,-84.4437],[161.67029,-84.50045],[156.96951,-84.50098]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AQ","description":"Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)","end_date":"2016-02-04","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC80281222016035LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":10,"name":"imagico.de: Southern Transantarctic Mountains","start_date":"2016-02-04","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC80281222016035LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-53.20922,-84.12525],[-60.61538,-83.78609],[-60.61538,-82.29969],[-48.72405,-82.29987],[-44.52178,-82.43683],[-44.51354,-84.12525],[-53.20922,-84.12525]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AQ","description":"Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)","end_date":"2016-02-02","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81511242016033LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":10,"name":"imagico.de: Pensacola Mountains","start_date":"2016-02-02","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81511242016033LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-56.13476,-61.63472],[-56.13476,-61.19936],[-55.83264,-60.84015],[-53.72343,-60.83982],[-53.72343,-61.63472],[-56.13476,-61.63472]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AQ","description":"Fairly clear up-to-date image for updating glacier edges (true color)","end_date":"2016-01-09","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R009_S61_20160109","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Elephant Island/Clarence Island","start_date":"2016-01-09","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R009_S61_20160109&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[96.1197,-67.6542],[96.1201,-67.1899],[98.7331,-65.044],[105.1028,-65.044],[105.1028,-65.7224],[103.3017,-67.6542],[96.1197,-67.6542]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AQ","description":"Largest ice free area at the East Antarctic coast - shows considerable amounts of non-permanent ice. (true color)","end_date":"2017-02-23","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R017_S67_20170223T022551","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Bunger Hills","start_date":"2017-02-23","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R017_S67_20170223T022551&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[162.9125,-78.4514],[162.6595,-78.4257],[159.2712,-77.6013],[159.2712,-77.4108],[164.157,-76.477],[169.7813,-76.4764],[169.7813,-78.4514],[162.9125,-78.4514]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AQ","description":"Up-to-date late season image - not ice minimum, be careful with distinguishing sea ice from ice shelves. (true color)","end_date":"2017-02-14","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R042_S78_20170214T202521","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: McMurdo Sound and Dry Valleys","start_date":"2017-02-14","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R042_S78_20170214T202521&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[45.4547,-68.5091],[45.4547,-67.5724],[49.7155,-65.7176],[59.2693,-65.7176],[67.3735,-67.3449],[67.3735,-68.2581],[67.088,-68.5091],[45.4547,-68.5091]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AQ","description":"Sentinel-2 images of Enderby Land and Kemp Coast (true color)","end_date":"2017-03-27","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-enderby","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Enderby Land and Kemp Coast","start_date":"2017-01-25","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=enderby&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-62.7282,-68.9652],[-64.0489,-68.7318],[-64.0486,-68.5373],[-60.8845,-65.9399],[-59.9187,-65.9389],[-59.1088,-66.0775],[-59.1088,-68.8359],[-59.2544,-68.9652],[-62.7282,-68.9652]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AQ","description":"For updating the ice edge after the 2017 iceberg calving (true color)","end_date":"2018-01-06","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-larsen_2018","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Larsen C ice shelf after calving","start_date":"2018-01-06","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=larsen_2018&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[92.10238,20.81356],[93.56905,24.09755],[94.1733,23.92695],[95.19503,26.70727],[96.75509,27.52867],[97.58456,28.5806],[98.73812,27.51405],[98.74362,25.87992],[97.67794,24.75774],[97.96359,24.04238],[98.82052,24.16272],[99.52364,22.95934],[100.36959,21.50514],[101.79232,22.48305],[105.36288,23.33311],[106.81857,22.84801],[108.19735,21.36197],[107.43895,18.85398],[117.14537,7.46562],[119.6173,5.28754],[118.12315,4.05023],[117.25523,4.36249],[115.86546,4.34606],[115.50841,3.02498],[114.5526,1.5101],[113.54186,1.25748],[112.96507,1.5705],[112.24547,1.5101],[111.67418,1.01583],[110.4547,0.90049],[109.49889,1.9219],[103.22569,1.12568],[100.46263,3.23889],[97.6721,8.05888],[93.89281,15.93987],[92.10238,20.81356]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© osm-tools.org & OpenStreetMap contributors, CC-BY-SA","url":"https://www.osm-tools.org"},"country_code":"ZZ","id":"osm-cambodia_laos_thailand_vietnam-bilingual","max_zoom":20,"name":"Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual","type":"tms","url":"https://{switch:a,b,c,d}.tile.osm-tools.org/osm/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[136.4226,-4.2853],[136.4226,-3.6447],[137.7971,-3.6447],[137.7971,-4.2853],[136.4226,-4.2853]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"ID","description":"Older image of the Sudirman Range with no fresh snow showing glacier extent (true color)","end_date":"2015-10-13","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81030632015286LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Sudirman Range 2015","start_date":"2015-10-13","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81030632015286LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[120.84382,-3.59545],[120.84382,-3.15985],[120.98184,-2.51468],[122.62618,-2.51468],[122.62618,-3.00215],[122.5007,-3.59545],[120.84382,-3.59545]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"ID","description":"Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail (true color)","end_date":"2013-09-27","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81130622013270LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Southeastern Sulawesi","start_date":"2013-09-27","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81130622013270LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[114.36,2.02846],[113.53448,2.03],[113.53619,3.07077],[114.76512,3.06751],[114.76254,2.08816],[114.36,2.02846]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"ID","description":"Missing in older pre-2011 images (true color)","end_date":"2014-03-16","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81190582014075LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Bakun Reservoir","start_date":"2014-03-16","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81190582014075LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[104.00155,-8e-05],[104.00137,1.45099],[104.91015,1.45116],[104.91015,-8e-05],[104.00155,-8e-05]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"ID","description":"Missing Islands in OSM (true color)","end_date":"2016","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81250592016107LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Batam","start_date":"2014","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81250592016107LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[136.8044,-4.2585],[136.8044,-3.7836],[137.7701,-3.7836],[137.7701,-4.2585],[136.8044,-4.2585]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"ID","description":"Cloud free image of the Sudirman Range but with fresh snow (true color)","end_date":"2016-08-12","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R088_S05_20160812T011732","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Sudirman Range 2016","start_date":"2016-08-12","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R088_S05_20160812T011732&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[34.64563,32.92073],[34.98374,33.13352],[35.15662,33.09994],[35.31781,33.11463],[35.36541,33.06285],[35.46229,33.09994],[35.51741,33.12652],[35.5266,33.21531],[35.53893,33.25442],[35.56446,33.2969],[35.61264,33.27918],[35.67429,33.30627],[35.70785,33.34269],[35.75363,33.35091],[35.81509,33.3392],[35.91531,32.9406],[35.80834,32.772],[35.77835,32.72446],[35.59491,32.62828],[35.5729,32.36541],[35.59461,32.21856],[35.55452,32.02901],[35.57225,31.75415],[35.48771,31.41951],[35.4209,31.25116],[35.47936,31.1783],[35.42771,30.95172],[35.3321,30.77107],[35.20709,30.53307],[35.17202,30.11204],[35.07514,29.83713],[35.02336,29.64569],[34.93992,29.39946],[34.89517,29.37711],[34.84785,29.59084],[34.69667,30.10714],[34.52423,30.40912],[34.48879,30.64515],[34.07929,31.52265],[34.64563,32.92073]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.","url":"https://israelhiking.osm.org.il/"},"country_code":"IL","description":"Israel Hiking map","icon":"https://israelhiking.osm.org.il/content/favicons/favicon.ico","id":"Israel_Hiking","max_zoom":16,"min_zoom":7,"name":"Israel Hiking","type":"tms","url":"https://israelhiking.osm.org.il/Tiles/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[34.64563,32.92073],[34.98374,33.13352],[35.15662,33.09994],[35.31781,33.11463],[35.36541,33.06285],[35.46229,33.09994],[35.51741,33.12652],[35.5266,33.21531],[35.53893,33.25442],[35.56446,33.2969],[35.61264,33.27918],[35.67429,33.30627],[35.70785,33.34269],[35.75363,33.35091],[35.81509,33.3392],[35.91531,32.9406],[35.80834,32.772],[35.77835,32.72446],[35.59491,32.62828],[35.5729,32.36541],[35.59461,32.21856],[35.55452,32.02901],[35.57225,31.75415],[35.48771,31.41951],[35.4209,31.25116],[35.47936,31.1783],[35.42771,30.95172],[35.3321,30.77107],[35.20709,30.53307],[35.17202,30.11204],[35.07514,29.83713],[35.02336,29.64569],[34.93992,29.39946],[34.89517,29.37711],[34.84785,29.59084],[34.69667,30.10714],[34.52423,30.40912],[34.48879,30.64515],[34.07929,31.52265],[34.64563,32.92073]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.","url":"https://israelhiking.osm.org.il/"},"country_code":"IL","description":"Israel MTB map","icon":"https://israelhiking.osm.org.il/content/favicons/favicon.ico","id":"Israel_MTB","max_zoom":16,"min_zoom":7,"name":"Israel MTB","type":"tms","url":"https://israelhiking.osm.org.il/MTBTiles/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[67.9684,22.36265],[67.86231,22.38392],[67.86231,24.88693],[71.48986,24.88693],[71.48986,22.36265],[67.9684,22.36265]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"IN","description":"Land/water distinction difficult to properly map based on Bing/Mapbox images (false color IR)","end_date":"2015","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81510432015030LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Rann of Kutch","start_date":"2015","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81510432015030LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"type":"Polygon"},"properties":{"attribution":{"text":"GSI KIBAN 2500","url":"https://aginfo.cgk.affrc.go.jp/mapprv/tou.html.ja"},"country_code":"JP","description":"GSI Kiban 2500 via aginfo.cgk.affrc.go.jp. Good for tracing, but a bit older.","i18n":true,"id":"finds.jp_KBN_2500","license_url":"https://wiki.openstreetmap.org/wiki/GSI_KIBAN","max_zoom":20,"min_zoom":15,"name":"Japan GSI KIBAN 2500","type":"tms","url":"https://aginfo.cgk.affrc.go.jp/ws/tmc/1.0.0/KBN2500FN-900913-L/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[141.85547,44.64912],[140.22949,43.9691],[138.95508,41.80408],[139.48242,40.17887],[138.86719,38.30718],[136.31836,37.19533],[132.14355,35.13788],[128.93555,33.35806],[129.50684,32.4727],[129.77051,31.69078],[130.20996,30.90223],[131.2207,30.78904],[131.66016,32.32428],[132.71484,32.87959],[133.76953,33.17434],[136.75781,33.87042],[139.30664,35.06597],[140.88867,35.17381],[141.15234,36.5626],[142.11914,39.94344],[141.76758,42.68243],[141.85547,44.64912]]],"type":"Polygon"},"properties":{"attribution":{"text":"GSI Japan","url":"https://maps.gsi.go.jp/help/use.html"},"country_code":"JP","description":"Japan GSI Standard Map. Widely covered.","i18n":true,"id":"gsi.go.jp_std_map","license_url":"https://wiki.openstreetmap.org/wiki/GSImaps","max_zoom":18,"min_zoom":5,"name":"Japan GSI Standard Map","type":"tms","url":"https://cyberjapandata.gsi.go.jp/xyz/std/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"type":"Polygon"},"properties":{"attribution":{"text":"GSI Japan","url":"https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html"},"country_code":"JP","description":"Japan GSI airphoto Imagery. Not fully orthorectified, but a bit newer and/or differently covered than GSI ortho Imagery.","i18n":true,"id":"gsi.go.jp_airphoto","license_url":"https://maps.gsi.go.jp/development/ichiran.html#airphoto","max_zoom":18,"min_zoom":14,"name":"Japan GSI airphoto Imagery","type":"tms","url":"https://cyberjapandata.gsi.go.jp/xyz/airphoto/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"type":"Polygon"},"properties":{"attribution":{"text":"GSI Japan seamless photo","url":"https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html"},"country_code":"JP","description":"Japan GSI seamlessphoto Imagery. The collection of latest imageries of GSI ortho, airphoto, post disaster and others.","i18n":true,"id":"gsi.go.jp_seamlessphoto","license_url":"https://maps.gsi.go.jp/development/ichiran.html#seamlessphoto","max_zoom":18,"min_zoom":14,"name":"Japan GSI seamlessphoto Imagery","type":"tms","url":"https://cyberjapandata.gsi.go.jp/xyz/seamlessphoto/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[58.049,43.2623],[58.049,46.7334],[58.096,46.8645],[61.5524,46.8629],[61.5524,46.3896],[61.4685,45.3544],[60.6267,43.2623],[58.049,43.2623]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"KZ","description":"Water and wetland extents, dams etc. (true color)","end_date":"2016-09-09","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-aral1","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Aral Sea (low water level)","start_date":"2016-09-09","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=aral1&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[58.049,43.2623],[58.049,46.7189],[58.1014,46.8645],[61.5524,46.8629],[61.5524,46.3896],[61.4675,45.3416],[60.6317,43.2623],[58.049,43.2623]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"KZ","description":"Water and wetland extents, dams etc. - some remaining winter ice in the north (true color)","end_date":"2016-03-03","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-aral2","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Aral Sea (high water level)","start_date":"2016-03-03","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=aral2&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[51.0243,45.0729],[51.0243,46.569],[52.4259,46.5687],[53.6471,46.3177],[53.6474,45.0729],[51.0243,45.0729]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"KZ","description":"Coastal contruction and Kashagan oil field in Kazakhstan in May 2018 (true color)","end_date":"2018-05-16","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-caspian_2018","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Northeast Caspian Sea 2018","start_date":"2018-05-16","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=caspian_2018&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[79.01779,8.82757],[79.01402,9.64678],[80.17642,9.65042],[80.17728,8.8313],[79.01779,8.82757]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"LK","description":"Supplementing incomplete coverage in other sources (true color)","end_date":"2016-03-27","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R119_N09_20160327T050917","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Adams Bridge","start_date":"2016-03-27","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R119_N09_20160327T050917&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[121.11444,14.5407],[121.11236,14.54131],[121.10965,14.54186],[121.10884,14.54093],[121.10824,14.53808],[121.10841,14.53675],[121.1079,14.53542],[121.10779,14.53295],[121.10792,14.5312],[121.1089,14.53069],[121.11431,14.53035],[121.1153,14.53085],[121.11541,14.53166],[121.11528,14.53388],[121.1145,14.53395],[121.1138,14.53366],[121.1135,14.5343],[121.11435,14.53631],[121.11457,14.53796],[121.11472,14.53901],[121.11459,14.53985],[121.11444,14.5407]]],"type":"Polygon"},"properties":{"best":true,"country_code":"PH","id":"Arenda_OAM","max_zoom":22,"min_zoom":16,"name":"Lupang Arenda, Taytay Drone Imagery","permission_osm":"explicit","type":"tms","url":"https://tiles.openaerialmap.org/5d25d7bf161a790005c03e6e/0/5d25d7bf161a790005c03e6f/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[120.33659,15.98577],[120.44599,15.984],[120.44613,15.97446],[120.47646,15.97459],[120.59425,15.94683],[120.59806,16.09079],[120.59654,16.198],[120.36854,16.21853],[120.34758,16.04231],[120.33659,15.98577]],[[120.8268,15.3658],[121.2684,15.2602],[121.2699,14.7025],[120.695,14.8423],[120.8268,15.3658]]],"type":"Polygon"},"properties":{"country_code":"PH","id":"Pangasinan_Bulacan_HiRes","max_zoom":19,"min_zoom":12,"name":"Pangasinán/Bulacan (Philippines HiRes)","type":"tms","url":"https://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[75.98364,34.97851],[73.96164,35.36957],[74.44281,37.09391],[76.50601,36.70267],[75.98364,34.97851]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"PK","description":"Represents approximately minimum snow cover so can be well used for glacier mapping (true color)","end_date":"2013-10-09","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81490352013282LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Western Karakoram","start_date":"2013-10-09","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81490352013282LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[34.49022,31.59487],[34.49339,31.59263],[34.5678,31.5401],[34.5653,31.53226],[34.55613,31.52552],[34.54729,31.5121],[34.53011,31.5066],[34.5255,31.50251],[34.51369,31.50067],[34.505,31.49543],[34.4887,31.48263],[34.48532,31.48028],[34.47962,31.47778],[34.47471,31.47207],[34.4674,31.46448],[34.46576,31.46275],[34.45308,31.45139],[34.44585,31.4441],[34.44216,31.44327],[34.43798,31.44112],[34.43226,31.43458],[34.43164,31.43265],[34.4268,31.42804],[34.42211,31.42437],[34.41326,31.41862],[34.41329,31.41758],[34.41174,31.41604],[34.40918,31.41542],[34.4067,31.41295],[34.40506,31.41295],[34.40197,31.4112],[34.40134,31.40986],[34.39492,31.40391],[34.39351,31.40113],[34.38824,31.39599],[34.38037,31.38951],[34.38074,31.38791],[34.37407,31.37915],[34.37338,31.37422],[34.37159,31.37209],[34.37214,31.37093],[34.37158,31.36972],[34.3704,31.36909],[34.36827,31.36992],[34.36685,31.36914],[34.36497,31.36137],[34.37438,31.30609],[34.36708,31.29074],[34.34339,31.27846],[34.33119,31.26149],[34.31931,31.25317],[34.29093,31.24009],[34.26762,31.21894],[34.25915,31.22131],[34.231,31.26295],[34.21113,31.32157],[34.2434,31.34554],[34.29954,31.39629],[34.34172,31.43251],[34.36439,31.45715],[34.41099,31.50162],[34.42619,31.52686],[34.44463,31.54193],[34.49022,31.59487]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Copyright CNES 2014, Distribution Airbus Defence and Space","url":"https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip"},"country_code":"PS","end_date":"2014-07-06","id":"gaza_pleiades_20140706_nir","max_zoom":22,"name":"Gaza Strip - Pléiades - 2014/07/06 (NIR)","start_date":"2014-07-06","type":"tms","url":"https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706_nir/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[34.49022,31.59487],[34.49339,31.59263],[34.5678,31.5401],[34.5653,31.53226],[34.55613,31.52552],[34.54729,31.5121],[34.53011,31.5066],[34.5255,31.50251],[34.51369,31.50067],[34.505,31.49543],[34.4887,31.48263],[34.48532,31.48028],[34.47962,31.47778],[34.47471,31.47207],[34.4674,31.46448],[34.46576,31.46275],[34.45308,31.45139],[34.44585,31.4441],[34.44216,31.44327],[34.43798,31.44112],[34.43226,31.43458],[34.43164,31.43265],[34.4268,31.42804],[34.42211,31.42437],[34.41326,31.41862],[34.41329,31.41758],[34.41174,31.41604],[34.40918,31.41542],[34.4067,31.41295],[34.40506,31.41295],[34.40197,31.4112],[34.40134,31.40986],[34.39492,31.40391],[34.39351,31.40113],[34.38824,31.39599],[34.38037,31.38951],[34.38074,31.38791],[34.37407,31.37915],[34.37338,31.37422],[34.37159,31.37209],[34.37214,31.37093],[34.37158,31.36972],[34.3704,31.36909],[34.36827,31.36992],[34.36685,31.36914],[34.36497,31.36137],[34.37438,31.30609],[34.36708,31.29074],[34.34339,31.27846],[34.33119,31.26149],[34.31931,31.25317],[34.29093,31.24009],[34.26762,31.21894],[34.25915,31.22131],[34.231,31.26295],[34.21113,31.32157],[34.2434,31.34554],[34.29954,31.39629],[34.34172,31.43251],[34.36439,31.45715],[34.41099,31.50162],[34.42619,31.52686],[34.44463,31.54193],[34.49022,31.59487]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Copyright CNES 2014, Distribution Airbus Defence and Space","url":"https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip"},"country_code":"PS","end_date":"2014-07-06","id":"gaza_pleiades_20140706","max_zoom":22,"name":"Gaza Strip - Pléiades - 2014/07/06","start_date":"2014-07-06","type":"tms","url":"https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.27848,70.11174],[30.77568,69.82379],[30.88567,69.60134],[30.07925,69.70996],[30.01001,69.47197],[28.36758,68.92939],[28.68857,68.8165],[28.38412,68.5494],[28.61946,68.15368],[29.29281,68.02793],[29.92133,67.63731],[28.98188,66.93578],[30.06695,65.74475],[29.67942,65.66431],[29.56488,64.90444],[30.49199,64.10354],[29.93021,63.72835],[31.49568,62.90009],[31.11931,62.48988],[29.20748,61.31401],[27.4862,60.30133],[26.39009,59.92985],[26.91914,59.57938],[27.82954,59.53154],[28.12685,59.36757],[27.30915,58.80412],[27.63487,57.89748],[27.26678,57.58119],[27.80667,57.26726],[27.60984,56.82296],[27.84829,56.81343],[28.30397,56.00917],[29.30575,55.93635],[29.49395,55.65306],[30.23792,55.81532],[30.88151,55.57085],[30.71476,54.77384],[31.10248,54.61217],[31.28732,54.20322],[31.80737,54.02874],[31.73503,53.7526],[32.3069,53.70644],[32.6811,53.40566],[32.0986,53.12929],[31.38296,53.25917],[31.20669,53.06964],[31.75549,52.06822],[32.09497,51.98266],[32.44809,52.27175],[32.89863,52.19427],[33.78861,52.31255],[34.35746,51.79404],[34.03453,51.68698],[34.19268,51.23231],[35.07328,51.16195],[35.59275,50.31192],[36.07715,50.39531],[36.64995,50.16646],[37.41356,50.38116],[38.01555,49.85233],[38.28829,50.02419],[38.92585,49.74657],[39.17134,49.81935],[39.79514,49.50784],[39.99489,49.54761],[40.1341,49.31827],[39.62763,49.06151],[39.61548,48.58986],[39.8875,48.22399],[39.71582,47.88397],[38.87402,47.9262],[38.32055,47.6572],[38.23594,46.98468],[37.41553,46.76322],[36.64303,45.68821],[35.78323,45.6953],[35.5479,45.57771],[35.25239,45.8388],[34.95522,45.81513],[34.64487,46.03539],[33.64373,46.28118],[33.50204,46.05619],[32.29008,45.63796],[32.24215,45.18556],[33.1961,44.89718],[33.08447,44.45073],[33.73338,44.13411],[34.25741,44.18416],[34.75216,44.53336],[35.19419,44.54824],[35.63792,44.77878],[36.82653,44.86342],[37.30884,44.50028],[38.58442,44.07787],[39.77181,43.19436],[40.14963,43.51766],[40.65366,43.50114],[41.61549,43.17233],[42.84302,43.12009],[43.93197,42.50111],[44.57483,42.69518],[44.81052,42.56385],[44.92369,42.69655],[45.12851,42.6547],[45.32356,42.47483],[45.70059,42.42948],[45.56284,42.25334],[45.77294,42.05502],[46.72213,41.77576],[47.24051,41.28804],[47.77601,41.1355],[48.86453,41.95753],[47.84597,43.11901],[48.1644,44.09189],[47.8084,44.24603],[47.78865,44.65814],[47.37386,44.72613],[47.64786,45.15848],[48.27987,45.40203],[48.86567,45.38544],[49.93666,46.04634],[48.62393,46.65237],[49.04755,46.75114],[48.23329,47.7388],[47.41085,47.8885],[47.23594,47.80066],[47.15755,48.3071],[46.59034,48.46934],[47.09872,49.14378],[46.85039,49.38503],[46.94498,49.81672],[47.38377,50.05208],[47.36594,50.27447],[47.59166,50.40748],[48.4479,49.75097],[48.76092,49.87291],[48.95297,50.02451],[48.71294,50.54935],[49.45624,50.81043],[49.46337,51.05153],[50.38884,51.28291],[50.62893,51.56545],[51.23949,51.62827],[51.26264,51.44307],[51.63571,51.40443],[52.31873,51.68726],[52.54097,51.40815],[53.53716,51.3739],[54.42749,50.80938],[54.54151,50.47668],[54.78157,50.61327],[54.65958,50.97017],[55.71887,50.49804],[56.51267,51.00062],[57.16343,51.04051],[57.50648,50.82501],[57.79196,50.87955],[57.81701,51.06097],[58.29841,51.09797],[58.63651,50.76234],[59.40752,50.5865],[59.50366,50.44446],[59.83658,50.49067],[60.14419,50.78129],[60.30811,50.62164],[60.82497,50.60673],[61.4775,50.76372],[61.73371,51.27975],[60.9563,51.66168],[60.48638,51.69575],[60.55461,51.83352],[60.19803,51.9389],[61.10595,52.3143],[60.7726,52.69768],[61.16093,52.94651],[62.0233,52.89914],[62.19602,53.05015],[61.70444,53.30797],[61.23391,53.34354],[61.64179,53.52702],[61.11265,53.6706],[61.32252,54.02155],[61.93821,53.8984],[62.3479,53.98152],[62.5166,53.86345],[62.63738,54.02574],[63.23851,54.14052],[64.95391,54.36365],[65.23567,54.28547],[65.27782,54.4981],[65.55275,54.58507],[68.24901,54.92079],[68.30415,55.13647],[68.64694,55.15331],[68.77505,55.31655],[69.02836,55.23811],[69.03674,55.37045],[70.20063,55.09731],[70.76852,55.23043],[71.17515,54.64735],[71.15395,54.37672],[70.94941,54.34494],[71.09352,54.08826],[71.73271,54.05468],[71.79116,54.19184],[72.19242,54.0773],[72.26859,54.18256],[72.51375,53.85759],[72.71928,54.07208],[72.92642,54.04317],[73.39994,53.89362],[73.19241,53.55241],[73.44144,53.385],[73.93355,53.59363],[74.40758,53.40888],[74.50614,53.6269],[75.07475,53.74859],[75.47389,54.04444],[76.74415,54.34325],[76.69981,54.20269],[76.40203,54.19956],[76.46503,53.9997],[77.87975,53.24298],[80.05173,50.69358],[80.51988,50.93412],[80.70717,51.25352],[81.10698,51.13065],[81.01967,50.91674],[81.35919,50.92006],[81.45208,50.70372],[82.56112,50.69488],[82.78288,50.86773],[83.39428,50.95179],[83.89711,50.76756],[84.31094,50.17701],[84.94911,50.02382],[85.23928,49.54103],[86.21145,49.41643],[86.58109,49.66593],[87.42123,49.02101],[88.00845,49.13609],[88.23826,49.42432],[89.15498,49.4515],[89.75596,49.69343],[89.69338,49.88559],[92.36371,50.79781],[92.63326,50.6551],[92.96927,50.74261],[93.11647,50.53637],[94.23916,50.53319],[94.60536,49.98558],[95.52948,49.85375],[95.85203,49.98876],[97.33491,49.70385],[97.91491,49.88112],[98.35058,50.29995],[98.37164,50.52891],[97.90421,51.01184],[98.08842,51.40432],[98.78829,51.82535],[98.9223,52.09636],[99.85793,51.71593],[102.0795,51.31954],[102.2659,50.64856],[103.2692,50.14192],[104.1506,50.09528],[105.3358,50.42247],[105.9772,50.36646],[106.6131,50.2864],[107.2216,49.94051],[107.8674,49.88297],[107.9188,49.62664],[108.5228,49.27065],[110.8318,49.13151],[112.8329,49.46813],[114.3339,50.22572],[115.5053,49.85507],[116.2382,49.97786],[117.8774,49.45985],[119.321,50.07283],[119.3404,50.57032],[120.0956,51.59387],[120.7452,51.96097],[120.7613,52.57697],[120.0884,52.63744],[120.1049,52.73635],[120.8901,53.23289],[123.6187,53.48627],[124.8532,53.05015],[125.1487,53.15071],[125.5857,53.02373],[126.4815,52.10319],[126.8733,51.03162],[127.2297,50.71578],[127.2872,50.30199],[127.5453,50.18689],[127.5004,49.77009],[127.8411,49.52235],[128.5465,49.54902],[129.0795,49.30177],[129.4759,49.37681],[130.1979,48.82225],[130.5595,48.8049],[130.4748,48.59328],[130.7561,48.30394],[130.6074,48.07632],[130.9676,47.65113],[132.568,47.66682],[133.0785,48.05274],[134.6858,48.35052],[134.4936,47.98576],[134.7102,47.72819],[134.1255,47.3412],[133.8315,46.29377],[133.1504,45.54089],[133.0559,45.14931],[131.8762,45.39202],[131.4421,45.02841],[130.9201,44.88378],[131.2381,44.08007],[131.2402,43.41428],[131.0517,42.97433],[130.3442,42.73033],[130.8987,42.12396],[133.2675,39.96882],[141.1205,45.96801],[146.0519,43.12595],[180.0,35.61404],[180.0,83.83133],[37.2795,83.81215],[31.27848,70.11174]],[[-180.0,72.2916],[-180.0,72.29053],[-180.0,62.26134],[-173.832,63.31249],[-169.0297,65.48511],[-168.976,65.98378],[-168.9764,66.01591],[-175.445,71.5095],[-180.0,72.2916]],[[22.7962,54.35926],[22.89215,54.81546],[22.59123,55.07575],[22.07676,55.03107],[20.65365,55.3899],[20.39793,55.18633],[19.72775,55.10661],[19.40837,54.61169],[19.64733,54.44727],[20.63083,54.3604],[22.7962,54.35926]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"IRS","url":"http://irs.gis-lab.info"},"country_code":"RU","id":"ScanEx-IRS","name":"ScanEx IRS","type":"scanex","url":"IRS"},"type":"Feature"},{"geometry":{"coordinates":[[[31.27848,70.11174],[30.77568,69.82379],[30.88567,69.60134],[30.07925,69.70996],[30.01001,69.47197],[28.36758,68.92939],[28.68857,68.8165],[28.38412,68.5494],[28.61946,68.15368],[29.29281,68.02793],[29.92133,67.63731],[28.98188,66.93578],[30.06695,65.74475],[29.67942,65.66431],[29.56488,64.90444],[30.49199,64.10354],[29.93021,63.72835],[31.49568,62.90009],[31.11931,62.48988],[29.20748,61.31401],[27.4862,60.30133],[26.39009,59.92985],[26.91914,59.57938],[27.82954,59.53154],[28.12685,59.36757],[27.30915,58.80412],[27.63487,57.89748],[27.26678,57.58119],[27.80667,57.26726],[27.60984,56.82296],[27.84829,56.81343],[28.30397,56.00917],[29.30575,55.93635],[29.49395,55.65306],[30.23792,55.81532],[30.88151,55.57085],[30.71476,54.77384],[31.10248,54.61217],[31.28732,54.20322],[31.80737,54.02874],[31.73503,53.7526],[32.3069,53.70644],[32.6811,53.40566],[32.0986,53.12929],[31.38296,53.25917],[31.20669,53.06964],[31.75549,52.06822],[32.09497,51.98266],[32.44809,52.27175],[32.89863,52.19427],[33.78861,52.31255],[34.35746,51.79404],[34.03453,51.68698],[34.19268,51.23231],[35.07328,51.16195],[35.59275,50.31192],[36.07715,50.39531],[36.64995,50.16646],[37.41356,50.38116],[38.01555,49.85233],[38.28829,50.02419],[38.92585,49.74657],[39.17134,49.81935],[39.79514,49.50784],[39.99489,49.54761],[40.1341,49.31827],[39.62763,49.06151],[39.61548,48.58986],[39.8875,48.22399],[39.71582,47.88397],[38.87402,47.9262],[38.32055,47.6572],[38.23594,46.98468],[37.41553,46.76322],[36.64303,45.68821],[35.78323,45.6953],[35.5479,45.57771],[35.25239,45.8388],[34.95522,45.81513],[34.64487,46.03539],[33.64373,46.28118],[33.50204,46.05619],[32.29008,45.63796],[32.24215,45.18556],[33.1961,44.89718],[33.08447,44.45073],[33.73338,44.13411],[34.25741,44.18416],[34.75216,44.53336],[35.19419,44.54824],[35.63792,44.77878],[36.82653,44.86342],[37.30884,44.50028],[38.58442,44.07787],[39.77181,43.19436],[40.14963,43.51766],[40.65366,43.50114],[41.61549,43.17233],[42.84302,43.12009],[43.93197,42.50111],[44.57483,42.69518],[44.81052,42.56385],[44.92369,42.69655],[45.12851,42.6547],[45.32356,42.47483],[45.70059,42.42948],[45.56284,42.25334],[45.77294,42.05502],[46.72213,41.77576],[47.24051,41.28804],[47.77601,41.1355],[48.86453,41.95753],[47.84597,43.11901],[48.1644,44.09189],[47.8084,44.24603],[47.78865,44.65814],[47.37386,44.72613],[47.64786,45.15848],[48.27987,45.40203],[48.86567,45.38544],[49.93666,46.04634],[48.62393,46.65237],[49.04755,46.75114],[48.23329,47.7388],[47.41085,47.8885],[47.23594,47.80066],[47.15755,48.3071],[46.59034,48.46934],[47.09872,49.14378],[46.85039,49.38503],[46.94498,49.81672],[47.38377,50.05208],[47.36594,50.27447],[47.59166,50.40748],[48.4479,49.75097],[48.76092,49.87291],[48.95297,50.02451],[48.71294,50.54935],[49.45624,50.81043],[49.46337,51.05153],[50.38884,51.28291],[50.62893,51.56545],[51.23949,51.62827],[51.26264,51.44307],[51.63571,51.40443],[52.31873,51.68726],[52.54097,51.40815],[53.53716,51.3739],[54.42749,50.80938],[54.54151,50.47668],[54.78157,50.61327],[54.65958,50.97017],[55.71887,50.49804],[56.51267,51.00062],[57.16343,51.04051],[57.50648,50.82501],[57.79196,50.87955],[57.81701,51.06097],[58.29841,51.09797],[58.63651,50.76234],[59.40752,50.5865],[59.50366,50.44446],[59.83658,50.49067],[60.14419,50.78129],[60.30811,50.62164],[60.82497,50.60673],[61.4775,50.76372],[61.73371,51.27975],[60.9563,51.66168],[60.48638,51.69575],[60.55461,51.83352],[60.19803,51.9389],[61.10595,52.3143],[60.7726,52.69768],[61.16093,52.94651],[62.0233,52.89914],[62.19602,53.05015],[61.70444,53.30797],[61.23391,53.34354],[61.64179,53.52702],[61.11265,53.6706],[61.32252,54.02155],[61.93821,53.8984],[62.3479,53.98152],[62.5166,53.86345],[62.63738,54.02574],[63.23851,54.14052],[64.95391,54.36365],[65.23567,54.28547],[65.27782,54.4981],[65.55275,54.58507],[68.24901,54.92079],[68.30415,55.13647],[68.64694,55.15331],[68.77505,55.31655],[69.02836,55.23811],[69.03674,55.37045],[70.20063,55.09731],[70.76852,55.23043],[71.17515,54.64735],[71.15395,54.37672],[70.94941,54.34494],[71.09352,54.08826],[71.73271,54.05468],[71.79116,54.19184],[72.19242,54.0773],[72.26859,54.18256],[72.51375,53.85759],[72.71928,54.07208],[72.92642,54.04317],[73.39994,53.89362],[73.19241,53.55241],[73.44144,53.385],[73.93355,53.59363],[74.40758,53.40888],[74.50614,53.6269],[75.07475,53.74859],[75.47389,54.04444],[76.74415,54.34325],[76.69981,54.20269],[76.40203,54.19956],[76.46503,53.9997],[77.87975,53.24298],[80.05173,50.69358],[80.51988,50.93412],[80.70717,51.25352],[81.10698,51.13065],[81.01967,50.91674],[81.35919,50.92006],[81.45208,50.70372],[82.56112,50.69488],[82.78288,50.86773],[83.39428,50.95179],[83.89711,50.76756],[84.31094,50.17701],[84.94911,50.02382],[85.23928,49.54103],[86.21145,49.41643],[86.58109,49.66593],[87.42123,49.02101],[88.00845,49.13609],[88.23826,49.42432],[89.15498,49.4515],[89.75596,49.69343],[89.69338,49.88559],[92.36371,50.79781],[92.63326,50.6551],[92.96927,50.74261],[93.11647,50.53637],[94.23916,50.53319],[94.60536,49.98558],[95.52948,49.85375],[95.85203,49.98876],[97.33491,49.70385],[97.91491,49.88112],[98.35058,50.29995],[98.37164,50.52891],[97.90421,51.01184],[98.08842,51.40432],[98.78829,51.82535],[98.9223,52.09636],[99.85793,51.71593],[102.0795,51.31954],[102.2659,50.64856],[103.2692,50.14192],[104.1506,50.09528],[105.3358,50.42247],[105.9772,50.36646],[106.6131,50.2864],[107.2216,49.94051],[107.8674,49.88297],[107.9188,49.62664],[108.5228,49.27065],[110.8318,49.13151],[112.8329,49.46813],[114.3339,50.22572],[115.5053,49.85507],[116.2382,49.97786],[117.8774,49.45985],[119.321,50.07283],[119.3404,50.57032],[120.0956,51.59387],[120.7452,51.96097],[120.7613,52.57697],[120.0884,52.63744],[120.1049,52.73635],[120.8901,53.23289],[123.6187,53.48627],[124.8532,53.05015],[125.1487,53.15071],[125.5857,53.02373],[126.4815,52.10319],[126.8733,51.03162],[127.2297,50.71578],[127.2872,50.30199],[127.5453,50.18689],[127.5004,49.77009],[127.8411,49.52235],[128.5465,49.54902],[129.0795,49.30177],[129.4759,49.37681],[130.1979,48.82225],[130.5595,48.8049],[130.4748,48.59328],[130.7561,48.30394],[130.6074,48.07632],[130.9676,47.65113],[132.568,47.66682],[133.0785,48.05274],[134.6858,48.35052],[134.4936,47.98576],[134.7102,47.72819],[134.1255,47.3412],[133.8315,46.29377],[133.1504,45.54089],[133.0559,45.14931],[131.8762,45.39202],[131.4421,45.02841],[130.9201,44.88378],[131.2381,44.08007],[131.2402,43.41428],[131.0517,42.97433],[130.3442,42.73033],[130.8987,42.12396],[133.2675,39.96882],[141.1205,45.96801],[146.0519,43.12595],[180.0,35.61404],[180.0,83.83133],[37.2795,83.81215],[31.27848,70.11174]],[[-180.0,72.2916],[-180.0,72.29053],[-180.0,62.26134],[-173.832,63.31249],[-169.0297,65.48511],[-168.976,65.98378],[-168.9764,66.01591],[-175.445,71.5095],[-180.0,72.2916]],[[22.7962,54.35926],[22.89215,54.81546],[22.59123,55.07575],[22.07676,55.03107],[20.65365,55.3899],[20.39793,55.18633],[19.72775,55.10661],[19.40837,54.61169],[19.64733,54.44727],[20.63083,54.3604],[22.7962,54.35926]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"IRS","url":"http://irs.gis-lab.info"},"country_code":"RU","id":"ScanEx-SPOT","name":"ScanEx SPOT","type":"scanex","url":"SPOT"},"type":"Feature"},{"geometry":{"coordinates":[[[126.36143,51.37553],[126.34804,52.33932],[128.60762,52.3409],[128.61174,51.37553],[126.36143,51.37553]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"RU","description":"Recent image showing newest features (true color)","end_date":"2016-06-23","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R089_N52_20160623T024048","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Vostochny Cosmodrome","start_date":"2016-06-23","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20160623T024048&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"©OneMap Singapore ODL v1.0","url":"https://www.onemap.sg/legal/opendatalicence.html"},"available_projections":["EPSG:4326","EPSG:3414"],"country_code":"SG","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png","id":"Singapore-Landlot","license_url":"https://www.onemap.sg/legal/opendatalicence.html","name":"Singapore Landlot","type":"wms","url":"https://mapservices.onemap.sg/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=singapore_landlot_wmts&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"©OneMap Singapore ODL v1.0","url":"https://www.onemap.sg/legal/opendatalicence.html"},"available_projections":["EPSG:4326","EPSG:3414"],"country_code":"SG","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png","id":"Singapore-OneMap","license_url":"https://www.onemap.sg/legal/opendatalicence.html","name":"Singapore OneMap","type":"wms","url":"https://mapservices.onemap.sg/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=singapore_3414_wms&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","url":"https://maps.nlsc.gov.tw"},"country_code":"TW","description":"The emap from Taiwan National Land Surveying and Mapping Center","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png","id":"NLSC-EMAP5","license_url":"https://data.gov.tw/license","max_zoom":15,"name":"NLSC General Map with Contour line","start_date":"2015","type":"tms","url":"https://wmts.nlsc.gov.tw/wmts/EMAP5_OPENDATA/default/EPSG:3857/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","url":"https://maps.nlsc.gov.tw/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3826","EPSG:3825"],"country_code":"TW","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png","id":"TW_NLSC_WMS_LANDSECT","license_url":"https://github.com/osmlab/editor-layer-index/pull/255#issuecomment-266776138","name":"Taiwan Land-Section Data","type":"wms","url":"https://wms.nlsc.gov.tw/wms?VERSION=1.1.1&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=LANDSECT&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","url":"https://maps.nlsc.gov.tw/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3826","EPSG:3825"],"country_code":"TW","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png","id":"TW_NLSC_WMS_Village","license_url":"https://github.com/osmlab/editor-layer-index/pull/255#issuecomment-266776138","name":"Taiwan Village Boundaries","type":"wms","url":"https://wms.nlsc.gov.tw/wms?VERSION=1.1.1&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Village&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","url":"https://maps.nlsc.gov.tw/"},"country_code":"TW","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png","id":"TW_NLSC_WMS_EMAP6","license_url":"https://github.com/osmlab/editor-layer-index/pull/255#issuecomment-266776138","max_zoom":15,"name":"Taiwan e-Map Open Data","type":"tms","url":"https://wmts.nlsc.gov.tw/wmts/EMAP6_OPENDATA/default/GoogleMapsCompatible/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[23.64258,50.62507],[21.56616,51.21377],[14.34815,51.21377],[11.83227,50.41202],[11.84051,47.80209],[10.30243,47.80024],[8.60229,47.94211],[6.88293,47.58764],[5.59753,46.29761],[6.86096,44.20387],[7.55859,43.56447],[9.2395,43.56447],[10.18433,42.19597],[13.64502,40.40513],[21.10474,40.63897],[23.64258,41.16211],[26.12549,41.16211],[28.2019,41.86956],[29.94873,45.24395],[26.99341,48.35625],[23.64258,50.62507]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","url":"https://www.freemap.sk/?layers=X"},"country_code":"ZZ","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png","id":"Freemap.sk-Outdoor","max_zoom":19,"min_zoom":6,"name":"Freemap.sk Outdoor","type":"tms","url":"https://outdoor.tiles.freemap.sk/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[27.53173,60.21799],[31.35496,62.51233],[31.63513,62.90773],[30.09154,64.91889],[30.21239,65.87473],[29.13573,66.90422],[30.19041,67.67609],[28.70726,68.42748],[29.02587,68.9505],[31.04735,69.53452],[31.78344,70.44784],[28.32274,71.32192],[23.76342,71.29023],[17.1826,69.99806],[12.10691,68.01581],[9.97556,64.85828],[4.13084,61.95963],[4.57029,59.00664],[6.21826,57.95859],[8.14086,57.8506],[10.41502,58.75682],[12.63702,56.0383],[12.7716,55.25095],[14.2932,55.19769],[18.58886,56.84297],[20.69823,59.3444],[27.53173,60.21799]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kelkkareitit.fi","url":"https://kelkkareitit.fi/"},"country_code":"XN","description":"Kelkkareitit.fi snowmobile trails from OSM (Nordic coverage)","i18n":true,"icon":"https://kelkkareitit.fi/img/favicon.png","id":"kelkkareitit","max_zoom":18,"min_zoom":3,"name":"Nordic snowmobile overlay","overlay":true,"type":"tms","url":"https://tiles.kelkkareitit.fi/kelkkareitit/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[46.63155,67.66223],[45.04952,68.32091],[45.66475,67.07035],[44.47823,65.58881],[42.4128,66.12799],[41.09444,65.47961],[38.1501,63.61054],[36.21651,63.66908],[33.93135,64.5894],[33.71163,65.94952],[32.1296,66.79486],[31.90987,67.37658],[34.81026,66.77754],[38.85323,66.26987],[40.78682,66.88128],[40.43526,67.57857],[35.20577,69.00836],[30.15206,69.53714],[27.51534,70.18764],[23.56026,69.76635],[20.83565,69.33648],[18.81417,68.80275],[14.7712,66.62109],[12.39815,64.03702],[10.9919,63.07826],[7.60811,62.169],[7.95967,61.18923],[6.64131,58.84036],[7.87178,58.5435],[10.72823,60.30889],[13.27706,56.75683],[13.27706,55.60741],[14.41963,56.44234],[15.56221,56.66034],[15.91378,58.9312],[18.37471,59.87064],[16.66085,60.80572],[16.79268,62.59679],[19.16573,63.78579],[20.44014,64.05625],[20.96749,64.49495],[20.35225,64.94533],[22.28585,66.21676],[25.88936,65.66136],[25.84542,64.75858],[24.92256,64.5894],[21.71456,62.85856],[21.7585,60.91271],[23.64815,60.19988],[28.57003,60.97674],[30.6794,62.08682],[34.50264,63.09815],[36.17256,62.53605],[36.96358,61.23156],[31.11885,59.62711],[24.35128,59.08958],[24.52706,56.92508],[23.60421,56.66034],[22.32979,57.49624],[21.89034,55.05749],[19.38546,54.03798],[17.56911,54.65691],[14.02413,53.38779],[12.73512,54.19675],[11.21163,53.79209],[10.28517,54.19675],[9.27443,54.75213],[9.39528,55.59441],[9.94185,56.51458],[8.40376,56.38403],[8.89351,54.87459],[9.86769,53.56862],[9.02535,52.973],[6.70723,53.18419],[4.35616,51.10132],[-0.08232,49.21531],[-1.42265,48.46332],[-3.44413,48.37582],[-0.87333,46.32175],[-0.65361,45.34196],[-1.33476,43.23465],[-2.80693,43.12249],[-7.70683,43.41049],[-8.6956,43.13852],[-8.36601,42.31535],[-8.95927,39.0506],[-8.4539,38.43364],[-8.56376,37.39357],[-6.74003,37.55051],[-5.61943,36.39194],[-4.23515,36.99098],[-2.36747,36.99098],[-0.30204,38.8113],[-0.67558,39.62838],[0.7087,41.28343],[2.92794,41.98956],[2.77413,43.18661],[3.98262,43.79236],[6.11397,43.25066],[8.64083,44.67398],[10.39864,44.18757],[10.83809,43.13852],[13.10128,41.49773],[13.67256,41.61283],[16.00167,40.06699],[16.3752,39.15291],[16.33126,40.10061],[16.90255,40.71963],[17.89131,40.43592],[15.86983,41.39891],[15.60616,41.77689],[14.46358,42.05485],[13.62862,42.76864],[13.34297,43.4424],[11.9587,44.25056],[11.98067,45.52699],[13.47481,45.89522],[15.07881,45.2028],[16.28731,43.87162],[19.89083,42.03853],[19.71505,40.48608],[20.81368,39.425],[21.40694,38.5712],[22.82418,38.55402],[22.34078,38.93105],[22.64839,39.69604],[22.26387,40.64465],[25.0544,41.10983],[27.04293,40.76125],[27.8669,41.46481],[27.31758,42.51002],[27.46041,43.39452],[29.20723,45.00118],[30.58052,46.70734],[32.07466,47.06774],[33.12935,46.30658],[34.78829,46.40515],[38.22701,47.40342],[39.44649,47.35134],[39.44649,46.88784],[38.34786,46.48842],[38.76534,46.02505],[37.46895,45.10983],[40.61104,43.55397],[41.84151,42.66371],[41.91841,41.57174],[40.11666,40.70297],[38.20504,40.80284],[36.0627,41.24214],[34.7773,41.83422],[33.07442,41.80147],[31.03096,40.92747],[29.35005,41.06843],[30.15206,40.75293],[29.04244,40.26847],[26.8232,40.26847],[26.28487,39.56912],[27.10884,39.75519],[27.21871,38.77705],[27.50435,37.57664],[28.33931,37.16628],[29.66866,36.46266],[30.6025,36.94709],[31.78902,36.82407],[32.66793,36.25917],[33.85445,36.48033],[34.90914,37.00853],[36.3044,37.0173],[36.24947,36.47149],[36.00777,36.26803],[35.96382,35.59194],[32.72286,34.39496],[30.34981,36.17053],[28.41622,36.06403],[25.69161,34.52178],[23.67012,34.64841],[20.00069,38.14908],[19.06685,40.41083],[19.29756,41.78509],[15.59517,42.98602],[12.95845,45.41142],[12.63985,45.25696],[12.6838,44.40774],[14.00215,43.64149],[15.07881,42.16081],[16.2983,42.52622],[16.32027,41.79328],[18.60543,40.53619],[18.61641,39.68759],[14.61739,35.52938],[12.4421,35.26967],[11.56319,36.97343],[11.89278,38.42503],[13.21114,38.9396],[15.63912,39.32309],[9.79439,42.22593],[10.0251,38.69135],[7.56417,38.8113],[7.89376,42.46141],[9.71749,43.65739],[8.78365,44.18757],[6.37764,42.77671],[4.04854,43.25866],[3.36739,41.43187],[4.85054,39.72985],[-0.54374,37.4808],[-2.11479,36.49799],[-5.68535,35.82388],[-9.45366,36.80648],[-16.52885,31.89324],[-18.08891,32.85819],[-10.31059,36.91197],[-25.20805,36.43615],[-29.95414,39.29759],[-9.47563,37.03485],[-10.04692,39.54371],[-9.38774,43.26666],[-8.06938,44.0061],[-1.96098,43.66534],[-1.73027,45.96399],[-5.27885,48.09042],[-5.65239,48.81903],[-1.82914,50.20279],[-6.83891,49.62268],[-6.06987,51.90145],[-10.15678,51.12202],[-10.96977,51.96919],[-10.53032,54.48077],[-7.82768,55.88567],[-8.97026,57.93632],[-7.74099,62.30725],[-25.09819,63.56656],[-24.44725,67.1899],[-14.13383,66.92869],[-9.78325,71.08717],[-6.9268,71.63489],[-13.14506,67.08319],[-12.61772,63.17261],[-5.16899,62.60184],[-8.02543,58.37684],[-0.04936,61.28967],[-0.99418,59.61044],[-2.48832,58.13407],[-0.88432,57.64353],[-1.5435,56.21698],[1.0273,53.42054],[2.58736,52.69424],[2.6313,51.72486],[4.41109,53.70764],[7.42134,54.18611],[7.50923,56.96703],[10.71724,58.26145],[10.36568,58.81193],[7.31148,57.49033],[4.96041,58.36532],[4.12545,59.71033],[4.30123,62.14334],[7.35543,63.60566],[10.03609,65.18156],[11.39839,67.63299],[14.40865,69.3326],[21.72554,71.02297],[8.69576,79.22832],[30.73433,79.09611],[22.12105,71.41906],[30.82222,71.12986],[41.8525,67.72478],[41.89644,66.91146],[43.52242,67.0318],[42.4897,68.86225],[44.35738,68.86225],[46.73043,68.43023],[46.63155,67.66223]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA","url":"https://tools.geofabrik.de/osmi/"},"country_code":"EU","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png","id":"OSM_Inspector-Boundaries","max_zoom":18,"name":"OSM Inspector: Coastline (EU)","overlay":true,"type":"wms_endpoint","url":"https://tools.geofabrik.de/osmi/views/boundaries/wxs?service=wms&request=getCapabilities"},"type":"Feature"},{"geometry":{"coordinates":[[[19.73762,41.30154],[19.88628,41.27213],[19.86877,41.38582],[19.68338,41.3732],[19.73762,41.30154]]],"type":"Polygon"},"properties":{"attribution":{"text":"Data provided by the Muncipality of Tirana hosted by Open Labs","url":"https://geoportal.openlabs.cc/"},"country_code":"AL","description":"Bus stops & lines provided by the Muncipality of Tirana hosted by Open Labs","end_date":"2017","id":"openlabs-geoportal-public-transport","license_url":"https://cloud.openlabs.cc/s/3lzVn1ZzUEMifHq#pdfviewer","max_zoom":21,"name":"Municipality of Tirana - Public Transport (Open Labs GeoPortal) (overlay)","overlay":true,"start_date":"2017","type":"tms","url":"https://geoportal.openlabs.cc/mapcache/tms/1.0.0/public-transport@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[19.70226,41.1404],[19.77573,41.11868],[19.86431,41.12126],[20.24986,41.3495],[20.03082,41.41184],[19.92577,41.5204],[19.88869,41.50755],[19.88937,41.42265],[19.81659,41.46177],[19.7335,41.43037],[19.74174,41.37887],[19.65797,41.37475],[19.57214,41.24322],[19.61815,41.22567],[19.67171,41.22722],[19.70226,41.1404]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Data provided by the Muncipality of Tirana hosted by Open Labs","url":"https://geoportal.openlabs.cc"},"country_code":"AL","description":"Streets & Builings provided by the Muncipality of Tirana hosted by Open Labs","end_date":"2017","id":"openlabs-geoportal-tirana","license_url":"https://cloud.openlabs.cc/s/3lzVn1ZzUEMifHq#pdfviewer","max_zoom":21,"name":"Municipality of Tirana (Open Labs GeoPortal)","start_date":"2017","type":"tms","url":"https://geoportal.openlabs.cc/mapcache/tms/1.0.0/tirana@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[19.11233,42.15316],[19.08426,43.08074],[20.63299,43.09603],[20.63788,42.16779],[19.11233,42.15316]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AL","description":"Late summer imagery where usual sources are severely limited by clouds and snow (true color)","end_date":"2015-08-31","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R136_N41_20150831T093006","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Prokletije Mountains","start_date":"2015-08-31","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R136_N41_20150831T093006&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"basemap.at","url":"https://basemap.at"},"category":"map","country_code":"AT","description":"Basemap of Austria, based on government data.","i18n":true,"icon":"https://www.basemap.at/images/logo_basemap.jpg","id":"basemap.at","license_url":"https://basemap.at/#sec-nutzung","max_zoom":19,"name":"basemap.at","permission_osm":"explicit","type":"tms","url":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"basemap.at","url":"https://basemap.at"},"best":true,"category":"photo","country_code":"AT","description":"Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.","i18n":true,"icon":"https://www.basemap.at/images/logo_basemap.jpg","id":"basemap.at-orthofoto","license_url":"https://basemap.at/#sec-nutzung","max_zoom":19,"name":"basemap.at Orthofoto","permission_osm":"explicit","type":"tms","url":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"geoimage.at","url":"http://geoimage.at"},"available_projections":["CRS:84","EPSG:25832","EPSG:25833","EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3045","EPSG:31254","EPSG:31255","EPSG:31256","EPSG:31257","EPSG:31258","EPSG:31259","EPSG:31287","EPSG:32632","EPSG:32633","EPSG:3416","EPSG:3857","EPSG:4258","EPSG:4326","EPSG:900913"],"category":"photo","country_code":"AT","description":"Aktuelle Digitale Orthophotos des LFRZ aus gemeinsamen Befliegungen mit den Landesregierungen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/GeoimageatMaxRes.png","id":"geoimage.at","license_url":"http://www.geoimage.at/geoimage/geodatendienste","name":"Geoimage.at MaxRes","permission_osm":"explicit","privacy_policy_url":"https://www.bmlrt.gv.at/datenschutzinformationen.html","type":"wms","url":"https://gis.bmlfuw.gv.at/wmsgw/?key=4d80de696cd562a63ce463a58a61488d&service=WMS&LAYERS=Luftbild&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"tiris.tirol.gv.at","url":"https://tiris.tirol.gv.at"},"available_projections":["EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3857","EPSG:4258","EPSG:4326","EPSG:25832","EPSG:25833","EPSG:31254","EPSG:31255","EPSG:31256","EPSG:31257","EPSG:31258","EPSG:31259","EPSG:31287","EPSG:32632","EPSG:32633"],"category":"elevation","country_code":"AT","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif","id":"tirol.gv.at-contourlines","license_url":"https://www.tirol.gv.at/data/datenkatalog/geographie-und-planung/gelaende-tirol","min_zoom":15,"name":"Tiris: contour lines","overlay":true,"permission_osm":"explicit","type":"wms","url":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Hoehenschichtlinien_20m&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"tiris.tirol.gv.at","url":"https://tiris.tirol.gv.at"},"available_projections":["EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3857","EPSG:4258","EPSG:4326","EPSG:25832","EPSG:25833","EPSG:31254","EPSG:31255","EPSG:31256","EPSG:31257","EPSG:31258","EPSG:31259","EPSG:31287","EPSG:32632","EPSG:32633"],"category":"elevation","country_code":"AT","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif","id":"tirol.gv.at-DGM","license_url":"https://www.tirol.gv.at/data/datenkatalog/geographie-und-planung/gelaende-tirol","name":"Tiris: DGM (Terrain model)","permission_osm":"explicit","type":"wms","url":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Schummerung_Gelaendemodell&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"tiris.tirol.gv.at","url":"https://tiris.tirol.gv.at"},"available_projections":["EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3857","EPSG:4258","EPSG:4326","EPSG:25832","EPSG:25833","EPSG:31254","EPSG:31255","EPSG:31256","EPSG:31257","EPSG:31258","EPSG:31259","EPSG:31287","EPSG:32632","EPSG:32633"],"category":"elevation","country_code":"AT","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif","id":"tirol.gv.at-DOM","license_url":"https://www.tirol.gv.at/data/datenkatalog/geographie-und-planung/gelaende-tirol","name":"Tiris: DOM (Surface model)","permission_osm":"explicit","type":"wms","url":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Schummerung_Oberflaechenmodell&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"tiris.tirol.gv.at","url":"https://tiris.tirol.gv.at"},"available_projections":["EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3857","EPSG:4258","EPSG:4326","EPSG:25832","EPSG:25833","EPSG:31254","EPSG:31255","EPSG:31256","EPSG:31257","EPSG:31258","EPSG:31259","EPSG:31287","EPSG:32632","EPSG:32633"],"category":"photo","country_code":"AT","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif","id":"tirol.gv.at-orthofoto","license_url":"https://www.data.gv.at/katalog/dataset/35691b6c-9ed7-4517-b4b3-688b0569729a","name":"Tiris: orthophoto","permission_osm":"explicit","type":"wms","url":"https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Aktuell_RGB&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"tiris.tirol.gv.at","url":"https://tiris.tirol.gv.at"},"available_projections":["EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3857","EPSG:4258","EPSG:4326","EPSG:25832","EPSG:25833","EPSG:31254","EPSG:31255","EPSG:31256","EPSG:31257","EPSG:31258","EPSG:31259","EPSG:31287","EPSG:32632","EPSG:32633"],"country_code":"AT","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif","id":"tirol.gv.at-orthofoto-cir","license_url":"https://www.data.gv.at/katalog/dataset/35691b6c-9ed7-4517-b4b3-688b0569729a","name":"Tiris: orthophoto infrared","permission_osm":"explicit","type":"wms","url":"https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Aktuell_CIR&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.54475,48.17286],[16.54103,48.17657],[16.54978,48.17675],[16.54665,48.17162],[16.55629,48.16171],[16.55567,48.16446],[16.56161,48.16037],[16.57306,48.16319],[16.57603,48.13522],[16.54301,48.14333],[16.51377,48.15893],[16.4777,48.15744],[16.45536,48.13951],[16.43313,48.13788],[16.43701,48.11994],[16.42291,48.12306],[16.4083,48.11791],[16.40511,48.12198],[16.3246,48.13779],[16.31181,48.11945],[16.29806,48.12896],[16.2711,48.13385],[16.23607,48.13001],[16.2189,48.12377],[16.2181,48.12807],[16.23861,48.13205],[16.23843,48.13716],[16.22081,48.13555],[16.20986,48.14762],[16.22321,48.15318],[16.19798,48.15454],[16.19619,48.16396],[16.18183,48.17112],[16.19981,48.18616],[16.20739,48.20235],[16.20194,48.20479],[16.20962,48.20963],[16.1976,48.21479],[16.19778,48.22288],[16.18517,48.2232],[16.19911,48.22858],[16.19251,48.23671],[16.20677,48.26483],[16.24105,48.24837],[16.24154,48.23832],[16.25662,48.23988],[16.27043,48.25193],[16.26406,48.25492],[16.28556,48.25832],[16.29412,48.26395],[16.28617,48.2667],[16.28901,48.27051],[16.32741,48.27721],[16.34813,48.29048],[16.35351,48.28369],[16.3706,48.2817],[16.36714,48.28685],[16.37787,48.28832],[16.37557,48.29592],[16.37982,48.30201],[16.38536,48.30146],[16.38043,48.31507],[16.39518,48.32257],[16.39412,48.31926],[16.40287,48.31676],[16.41682,48.32253],[16.43803,48.31628],[16.44041,48.29192],[16.47547,48.27501],[16.48123,48.27343],[16.4835,48.27971],[16.48132,48.29351],[16.49645,48.29249],[16.51491,48.28554],[16.5067,48.2736],[16.51285,48.26784],[16.53263,48.2621],[16.54697,48.263],[16.53941,48.24284],[16.55274,48.239],[16.53627,48.20044],[16.54184,48.18206],[16.53631,48.17755],[16.54475,48.17286]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Stadt Wien","url":"https://data.wien.gv.at"},"category":"map","country_code":"AT","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif","id":"wien.gv.at-labels","max_zoom":19,"min_zoom":12,"name":"Vienna: Beschriftungen (annotations)","overlay":true,"permission_osm":"explicit","type":"tms","url":"https://maps.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[16.54475,48.17286],[16.54103,48.17657],[16.54978,48.17675],[16.54665,48.17162],[16.55629,48.16171],[16.55567,48.16446],[16.56161,48.16037],[16.57306,48.16319],[16.57603,48.13522],[16.54301,48.14333],[16.51377,48.15893],[16.4777,48.15744],[16.45536,48.13951],[16.43313,48.13788],[16.43701,48.11994],[16.42291,48.12306],[16.4083,48.11791],[16.40511,48.12198],[16.3246,48.13779],[16.31181,48.11945],[16.29806,48.12896],[16.2711,48.13385],[16.23607,48.13001],[16.2189,48.12377],[16.2181,48.12807],[16.23861,48.13205],[16.23843,48.13716],[16.22081,48.13555],[16.20986,48.14762],[16.22321,48.15318],[16.19798,48.15454],[16.19619,48.16396],[16.18183,48.17112],[16.19981,48.18616],[16.20739,48.20235],[16.20194,48.20479],[16.20962,48.20963],[16.1976,48.21479],[16.19778,48.22288],[16.18517,48.2232],[16.19911,48.22858],[16.19251,48.23671],[16.20677,48.26483],[16.24105,48.24837],[16.24154,48.23832],[16.25662,48.23988],[16.27043,48.25193],[16.26406,48.25492],[16.28556,48.25832],[16.29412,48.26395],[16.28617,48.2667],[16.28901,48.27051],[16.32741,48.27721],[16.34813,48.29048],[16.35351,48.28369],[16.3706,48.2817],[16.36714,48.28685],[16.37787,48.28832],[16.37557,48.29592],[16.37982,48.30201],[16.38536,48.30146],[16.38043,48.31507],[16.39518,48.32257],[16.39412,48.31926],[16.40287,48.31676],[16.41682,48.32253],[16.43803,48.31628],[16.44041,48.29192],[16.47547,48.27501],[16.48123,48.27343],[16.4835,48.27971],[16.48132,48.29351],[16.49645,48.29249],[16.51491,48.28554],[16.5067,48.2736],[16.51285,48.26784],[16.53263,48.2621],[16.54697,48.263],[16.53941,48.24284],[16.55274,48.239],[16.53627,48.20044],[16.54184,48.18206],[16.53631,48.17755],[16.54475,48.17286]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Stadt Wien","url":"https://data.wien.gv.at"},"category":"map","country_code":"AT","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif","id":"wien.gv.at-gp","max_zoom":19,"min_zoom":10,"name":"Vienna: Mehrzweckkarte (general purpose)","permission_osm":"explicit","type":"tms","url":"https://maps.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.14995,48.10832],[16.14989,48.33315],[16.61873,48.33296],[16.61749,48.10813],[16.46644,48.10819],[16.46644,48.10744],[16.18104,48.10756],[16.18104,48.10831],[16.14995,48.10832]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Stadt Wien","url":"https://data.wien.gv.at"},"category":"photo","country_code":"AT","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif","id":"wien.gv.at-aerial_image","max_zoom":19,"min_zoom":10,"name":"Vienna: Orthofoto (aerial image)","permission_osm":"explicit","type":"tms","url":"https://maps.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[9.96805,47.54631],[9.96809,47.54627],[9.97125,47.54425],[9.96484,47.53803],[9.9684,47.52802],[9.96526,47.52089],[9.99569,47.50278],[9.98736,47.49847],[10.00076,47.48211],[10.02301,47.48411],[10.03743,47.48918],[10.04477,47.48762],[10.05413,47.47589],[10.05347,47.46686],[10.06468,47.46364],[10.06999,47.45595],[10.08057,47.45536],[10.08857,47.46029],[10.09164,47.45893],[10.09385,47.44046],[10.10559,47.42872],[10.09374,47.41688],[10.07418,47.41472],[10.06914,47.41018],[10.08624,47.39952],[10.08284,47.39381],[10.09984,47.35476],[10.11934,47.37561],[10.14169,47.36718],[10.16587,47.36887],[10.16958,47.3713],[10.1694,47.38583],[10.1813,47.38725],[10.18185,47.39243],[10.19508,47.38935],[10.19988,47.38334],[10.21259,47.38039],[10.22705,47.38889],[10.23619,47.38192],[10.23168,47.37897],[10.23716,47.37357],[10.21699,47.35436],[10.2171,47.34988],[10.20424,47.33675],[10.20742,47.33232],[10.19951,47.32646],[10.21113,47.31898],[10.21597,47.31106],[10.21236,47.31122],[10.19913,47.29754],[10.18964,47.29394],[10.17961,47.29603],[10.17208,47.27908],[10.17404,47.27025],[10.17834,47.27011],[10.17449,47.2637],[10.21884,47.25533],[10.22343,47.24983],[10.21087,47.2478],[10.19776,47.23666],[10.20791,47.2328],[10.21428,47.21684],[10.21269,47.20432],[10.19963,47.19539],[10.19951,47.18525],[10.21151,47.17124],[10.2092,47.16537],[10.20851,47.15948],[10.21321,47.1577],[10.2222,47.15323],[10.22166,47.14925],[10.21481,47.14352],[10.20333,47.14215],[10.20887,47.13164],[10.18629,47.12886],[10.18652,47.11946],[10.17288,47.12033],[10.16299,47.11361],[10.15766,47.11426],[10.15442,47.10578],[10.13243,47.08122],[10.13459,47.06392],[10.15085,47.06184],[10.15693,47.04883],[10.14418,47.03355],[10.12326,47.02209],[10.13284,47.01204],[10.15447,47.00545],[10.15961,46.99882],[10.15442,46.99299],[10.16001,46.984],[10.14463,46.98301],[10.13492,46.96584],[10.13501,46.95483],[10.12684,46.9435],[10.09772,46.92676],[10.09954,46.91712],[10.10921,46.90834],[10.10908,46.89431],[10.12497,46.88014],[10.14147,46.87468],[10.13967,46.86217],[10.14506,46.8511],[10.13941,46.84738],[10.12309,46.84848],[10.11912,46.84417],[10.10518,46.8409],[10.09195,46.85143],[10.09265,46.85818],[10.08712,46.86128],[10.05488,46.8617],[10.0509,46.86442],[10.05192,46.87405],[10.03891,46.88611],[10.03221,46.88802],[10.01782,46.90161],[10.00494,46.89889],[9.98243,46.9062],[9.97793,46.91603],[9.96657,46.91222],[9.95907,46.91602],[9.94612,46.91235],[9.93758,46.91324],[9.92153,46.91882],[9.91231,46.92606],[9.90632,46.9253],[9.89449,46.93164],[9.87613,46.93463],[9.88071,46.94011],[9.87657,46.94071],[9.87488,46.95039],[9.87872,46.95707],[9.87073,46.96321],[9.88482,46.98546],[9.8923,46.99036],[9.88878,47.00072],[9.8707,47.00965],[9.87115,47.01306],[9.88035,47.01722],[9.87779,47.02055],[9.85974,47.02321],[9.85273,47.01641],[9.83612,47.01253],[9.82353,47.01986],[9.80756,47.02356],[9.78491,47.03849],[9.74808,47.03692],[9.74185,47.04268],[9.71821,47.04337],[9.70701,47.04805],[9.7076,47.05381],[9.69756,47.05239],[9.68392,47.05765],[9.68184,47.0621],[9.67743,47.06141],[9.65821,47.05818],[9.64506,47.05978],[9.64158,47.05598],[9.63654,47.0517],[9.62633,47.05133],[9.60705,47.06077],[9.6134,47.0695],[9.61153,47.0794],[9.61869,47.07817],[9.62339,47.08258],[9.63346,47.08344],[9.63564,47.09553],[9.62858,47.10756],[9.62083,47.11032],[9.63503,47.12813],[9.62467,47.13265],[9.62258,47.14135],[9.62587,47.1459],[9.62059,47.15164],[9.6089,47.14775],[9.59679,47.16294],[9.57946,47.17116],[9.56456,47.17029],[9.57302,47.1756],[9.57259,47.19079],[9.58032,47.19578],[9.58477,47.20532],[9.5687,47.21968],[9.55851,47.22416],[9.55176,47.22377],[9.56679,47.24288],[9.53073,47.27058],[9.54619,47.28005],[9.55634,47.29829],[9.58805,47.3173],[9.59966,47.3455],[9.61073,47.35571],[9.62446,47.36615],[9.65876,47.36946],[9.67255,47.38021],[9.67311,47.39194],[9.65162,47.40463],[9.64551,47.4312],[9.64512,47.4378],[9.65799,47.44779],[9.65898,47.4522],[9.62234,47.45747],[9.60904,47.47054],[9.60292,47.46198],[9.59514,47.46331],[9.58217,47.48276],[9.5622,47.49592],[9.55057,47.53718],[9.5827,47.53592],[9.60465,47.52952],[9.73478,47.53396],[9.73517,47.54661],[9.74164,47.55499],[9.7471,47.55569],[9.74337,47.55867],[9.75207,47.56747],[9.74806,47.57052],[9.75632,47.57262],[9.75633,47.57963],[9.76197,47.58096],[9.76553,47.58912],[9.76933,47.58739],[9.77697,47.59544],[9.79151,47.59352],[9.79999,47.59611],[9.81414,47.58807],[9.82381,47.5871],[9.82728,47.57997],[9.82079,47.57076],[9.82562,47.55922],[9.8171,47.55333],[9.81579,47.54767],[9.85023,47.54164],[9.85839,47.53388],[9.87451,47.52854],[9.87804,47.53876],[9.87515,47.54343],[9.88125,47.54814],[9.8891,47.54399],[9.89935,47.54475],[9.90666,47.54217],[9.91358,47.53255],[9.92189,47.52964],[9.93352,47.53265],[9.94108,47.53822],[9.9637,47.53472],[9.95883,47.54313],[9.96318,47.54229],[9.96805,47.54631]]],"type":"Polygon"},"properties":{"attribution":{"text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:31254","EPSG:31284","EPSG:32632","EPSG:25832","EPSG:21781"],"category":"elevation","country_code":"AT","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png","id":"vogis.cnv.at-DGM","license_url":"http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm","name":"VoGIS: DGM (Terrain model)","permission_osm":"explicit","type":"wms","url":"https://vogis.cnv.at/mapserver/mapserv?map=i_hoehen_und_gelaende_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=schummerung_50cm_terrain&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[9.96805,47.54631],[9.96809,47.54627],[9.97125,47.54425],[9.96484,47.53803],[9.9684,47.52802],[9.96526,47.52089],[9.99569,47.50278],[9.98736,47.49847],[10.00076,47.48211],[10.02301,47.48411],[10.03743,47.48918],[10.04477,47.48762],[10.05413,47.47589],[10.05347,47.46686],[10.06468,47.46364],[10.06999,47.45595],[10.08057,47.45536],[10.08857,47.46029],[10.09164,47.45893],[10.09385,47.44046],[10.10559,47.42872],[10.09374,47.41688],[10.07418,47.41472],[10.06914,47.41018],[10.08624,47.39952],[10.08284,47.39381],[10.09984,47.35476],[10.11934,47.37561],[10.14169,47.36718],[10.16587,47.36887],[10.16958,47.3713],[10.1694,47.38583],[10.1813,47.38725],[10.18185,47.39243],[10.19508,47.38935],[10.19988,47.38334],[10.21259,47.38039],[10.22705,47.38889],[10.23619,47.38192],[10.23168,47.37897],[10.23716,47.37357],[10.21699,47.35436],[10.2171,47.34988],[10.20424,47.33675],[10.20742,47.33232],[10.19951,47.32646],[10.21113,47.31898],[10.21597,47.31106],[10.21236,47.31122],[10.19913,47.29754],[10.18964,47.29394],[10.17961,47.29603],[10.17208,47.27908],[10.17404,47.27025],[10.17834,47.27011],[10.17449,47.2637],[10.21884,47.25533],[10.22343,47.24983],[10.21087,47.2478],[10.19776,47.23666],[10.20791,47.2328],[10.21428,47.21684],[10.21269,47.20432],[10.19963,47.19539],[10.19951,47.18525],[10.21151,47.17124],[10.2092,47.16537],[10.20851,47.15948],[10.21321,47.1577],[10.2222,47.15323],[10.22166,47.14925],[10.21481,47.14352],[10.20333,47.14215],[10.20887,47.13164],[10.18629,47.12886],[10.18652,47.11946],[10.17288,47.12033],[10.16299,47.11361],[10.15766,47.11426],[10.15442,47.10578],[10.13243,47.08122],[10.13459,47.06392],[10.15085,47.06184],[10.15693,47.04883],[10.14418,47.03355],[10.12326,47.02209],[10.13284,47.01204],[10.15447,47.00545],[10.15961,46.99882],[10.15442,46.99299],[10.16001,46.984],[10.14463,46.98301],[10.13492,46.96584],[10.13501,46.95483],[10.12684,46.9435],[10.09772,46.92676],[10.09954,46.91712],[10.10921,46.90834],[10.10908,46.89431],[10.12497,46.88014],[10.14147,46.87468],[10.13967,46.86217],[10.14506,46.8511],[10.13941,46.84738],[10.12309,46.84848],[10.11912,46.84417],[10.10518,46.8409],[10.09195,46.85143],[10.09265,46.85818],[10.08712,46.86128],[10.05488,46.8617],[10.0509,46.86442],[10.05192,46.87405],[10.03891,46.88611],[10.03221,46.88802],[10.01782,46.90161],[10.00494,46.89889],[9.98243,46.9062],[9.97793,46.91603],[9.96657,46.91222],[9.95907,46.91602],[9.94612,46.91235],[9.93758,46.91324],[9.92153,46.91882],[9.91231,46.92606],[9.90632,46.9253],[9.89449,46.93164],[9.87613,46.93463],[9.88071,46.94011],[9.87657,46.94071],[9.87488,46.95039],[9.87872,46.95707],[9.87073,46.96321],[9.88482,46.98546],[9.8923,46.99036],[9.88878,47.00072],[9.8707,47.00965],[9.87115,47.01306],[9.88035,47.01722],[9.87779,47.02055],[9.85974,47.02321],[9.85273,47.01641],[9.83612,47.01253],[9.82353,47.01986],[9.80756,47.02356],[9.78491,47.03849],[9.74808,47.03692],[9.74185,47.04268],[9.71821,47.04337],[9.70701,47.04805],[9.7076,47.05381],[9.69756,47.05239],[9.68392,47.05765],[9.68184,47.0621],[9.67743,47.06141],[9.65821,47.05818],[9.64506,47.05978],[9.64158,47.05598],[9.63654,47.0517],[9.62633,47.05133],[9.60705,47.06077],[9.6134,47.0695],[9.61153,47.0794],[9.61869,47.07817],[9.62339,47.08258],[9.63346,47.08344],[9.63564,47.09553],[9.62858,47.10756],[9.62083,47.11032],[9.63503,47.12813],[9.62467,47.13265],[9.62258,47.14135],[9.62587,47.1459],[9.62059,47.15164],[9.6089,47.14775],[9.59679,47.16294],[9.57946,47.17116],[9.56456,47.17029],[9.57302,47.1756],[9.57259,47.19079],[9.58032,47.19578],[9.58477,47.20532],[9.5687,47.21968],[9.55851,47.22416],[9.55176,47.22377],[9.56679,47.24288],[9.53073,47.27058],[9.54619,47.28005],[9.55634,47.29829],[9.58805,47.3173],[9.59966,47.3455],[9.61073,47.35571],[9.62446,47.36615],[9.65876,47.36946],[9.67255,47.38021],[9.67311,47.39194],[9.65162,47.40463],[9.64551,47.4312],[9.64512,47.4378],[9.65799,47.44779],[9.65898,47.4522],[9.62234,47.45747],[9.60904,47.47054],[9.60292,47.46198],[9.59514,47.46331],[9.58217,47.48276],[9.5622,47.49592],[9.55057,47.53718],[9.5827,47.53592],[9.60465,47.52952],[9.73478,47.53396],[9.73517,47.54661],[9.74164,47.55499],[9.7471,47.55569],[9.74337,47.55867],[9.75207,47.56747],[9.74806,47.57052],[9.75632,47.57262],[9.75633,47.57963],[9.76197,47.58096],[9.76553,47.58912],[9.76933,47.58739],[9.77697,47.59544],[9.79151,47.59352],[9.79999,47.59611],[9.81414,47.58807],[9.82381,47.5871],[9.82728,47.57997],[9.82079,47.57076],[9.82562,47.55922],[9.8171,47.55333],[9.81579,47.54767],[9.85023,47.54164],[9.85839,47.53388],[9.87451,47.52854],[9.87804,47.53876],[9.87515,47.54343],[9.88125,47.54814],[9.8891,47.54399],[9.89935,47.54475],[9.90666,47.54217],[9.91358,47.53255],[9.92189,47.52964],[9.93352,47.53265],[9.94108,47.53822],[9.9637,47.53472],[9.95883,47.54313],[9.96318,47.54229],[9.96805,47.54631]]],"type":"Polygon"},"properties":{"attribution":{"text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:31254","EPSG:31284","EPSG:32632","EPSG:25832","EPSG:21781"],"category":"elevation","country_code":"AT","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png","id":"vogis.cnv.at-DOM","license_url":"http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm","name":"VoGIS: DOM (Surface model)","permission_osm":"explicit","type":"wms","url":"https://vogis.cnv.at/mapserver/mapserv?map=i_hoehen_und_gelaende_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=schummerung_50cm_surface&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"type":"Polygon"},"properties":{"attribution":{"text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:31254","EPSG:31284","EPSG:32632","EPSG:25832","EPSG:21781"],"category":"historicphoto","country_code":"AT","end_date":"2012","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png","id":"vogis.cnv.at-ef2012_12cm","license_url":"http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm","name":"VoGIS: Echtfarbenbild 2012 (12cm)","permission_osm":"explicit","start_date":"2012","type":"wms","url":"https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2012_12cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"type":"Polygon"},"properties":{"attribution":{"text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:31254","EPSG:31284","EPSG:32632","EPSG:25832","EPSG:21781"],"category":"historicphoto","country_code":"AT","end_date":"2015","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png","id":"vogis.cnv.at-ef2015_10cm","license_url":"http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm","name":"VoGIS: Echtfarbenbild 2015 (10cm)","permission_osm":"explicit","start_date":"2015","type":"wms","url":"https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2015_10cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"type":"Polygon"},"properties":{"attribution":{"text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:31254","EPSG:31284","EPSG:32632","EPSG:25832","EPSG:21781"],"category":"photo","country_code":"AT","end_date":"2018","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png","id":"vogis.cnv.at-ef2018_10cm","license_url":"http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm","name":"VoGIS: Echtfarbenbild 2018 (10cm)","permission_osm":"explicit","start_date":"2018","type":"wms","url":"https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2018_10cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.17039,46.82979],[10.17108,46.93644],[10.18413,46.94113],[10.1855,47.10157],[10.23906,47.10437],[10.24283,47.15611],[10.25691,47.18704],[10.24558,47.27597],[10.25313,47.32347],[10.26893,47.32626],[10.26446,47.41102],[10.13194,47.4087],[10.13434,47.46107],[10.11752,47.46153],[10.11889,47.47337],[10.08731,47.47429],[10.08491,47.50724],[10.06843,47.507],[10.0674,47.5215],[10.02345,47.52428],[10.00079,47.57943],[9.84904,47.57757],[9.85042,47.61462],[9.72751,47.61277],[9.7203,47.59089],[9.70347,47.58915],[9.70313,47.54491],[9.68219,47.54491],[9.68047,47.55348],[9.56391,47.54931],[9.56202,47.53958],[9.55172,47.53958],[9.55172,47.53402],[9.52168,47.53471],[9.52701,47.30497],[9.50503,47.30264],[9.50091,47.23368],[9.52357,47.23228],[9.52426,47.16557],[9.54486,47.16405],[9.54383,47.15448],[9.57232,47.15401],[9.57026,47.12809],[9.59018,47.12867],[9.59189,47.10029],[9.57232,47.10017],[9.57713,47.02861],[9.72407,47.03048],[9.72304,47.01749],[9.77454,47.01562],[9.77626,47.00555],[9.79274,47.00391],[9.7948,46.99127],[9.83874,46.99314],[9.84012,46.90349],[9.89024,46.90725],[9.88543,46.88707],[9.95925,46.89141],[9.962,46.87675],[10.0001,46.87862],[9.99667,46.85715],[10.01864,46.85656],[10.02345,46.83073],[10.17039,46.82979]]],"type":"Polygon"},"properties":{"attribution":{"text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:31254","EPSG:31284","EPSG:32632","EPSG:25832","EPSG:21781"],"category":"historicphoto","country_code":"AT","end_date":"2015","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png","id":"vogis.cnv.at-wi2015_20cm","license_url":"http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm","name":"VoGIS: Echtfarbenbild Winter 2015 (20cm)","permission_osm":"explicit","start_date":"2015","type":"wms","url":"https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=wi2015_20cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[9.96805,47.54631],[9.96809,47.54627],[9.97125,47.54425],[9.96484,47.53803],[9.9684,47.52802],[9.96526,47.52089],[9.99569,47.50278],[9.98736,47.49847],[10.00076,47.48211],[10.02301,47.48411],[10.03743,47.48918],[10.04477,47.48762],[10.05413,47.47589],[10.05347,47.46686],[10.06468,47.46364],[10.06999,47.45595],[10.08057,47.45536],[10.08857,47.46029],[10.09164,47.45893],[10.09385,47.44046],[10.10559,47.42872],[10.09374,47.41688],[10.07418,47.41472],[10.06914,47.41018],[10.08624,47.39952],[10.08284,47.39381],[10.09984,47.35476],[10.11934,47.37561],[10.14169,47.36718],[10.16587,47.36887],[10.16958,47.3713],[10.1694,47.38583],[10.1813,47.38725],[10.18185,47.39243],[10.19508,47.38935],[10.19988,47.38334],[10.21259,47.38039],[10.22705,47.38889],[10.23619,47.38192],[10.23168,47.37897],[10.23716,47.37357],[10.21699,47.35436],[10.2171,47.34988],[10.20424,47.33675],[10.20742,47.33232],[10.19951,47.32646],[10.21113,47.31898],[10.21597,47.31106],[10.21236,47.31122],[10.19913,47.29754],[10.18964,47.29394],[10.17961,47.29603],[10.17208,47.27908],[10.17404,47.27025],[10.17834,47.27011],[10.17449,47.2637],[10.21884,47.25533],[10.22343,47.24983],[10.21087,47.2478],[10.19776,47.23666],[10.20791,47.2328],[10.21428,47.21684],[10.21269,47.20432],[10.19963,47.19539],[10.19951,47.18525],[10.21151,47.17124],[10.2092,47.16537],[10.20851,47.15948],[10.21321,47.1577],[10.2222,47.15323],[10.22166,47.14925],[10.21481,47.14352],[10.20333,47.14215],[10.20887,47.13164],[10.18629,47.12886],[10.18652,47.11946],[10.17288,47.12033],[10.16299,47.11361],[10.15766,47.11426],[10.15442,47.10578],[10.13243,47.08122],[10.13459,47.06392],[10.15085,47.06184],[10.15693,47.04883],[10.14418,47.03355],[10.12326,47.02209],[10.13284,47.01204],[10.15447,47.00545],[10.15961,46.99882],[10.15442,46.99299],[10.16001,46.984],[10.14463,46.98301],[10.13492,46.96584],[10.13501,46.95483],[10.12684,46.9435],[10.09772,46.92676],[10.09954,46.91712],[10.10921,46.90834],[10.10908,46.89431],[10.12497,46.88014],[10.14147,46.87468],[10.13967,46.86217],[10.14506,46.8511],[10.13941,46.84738],[10.12309,46.84848],[10.11912,46.84417],[10.10518,46.8409],[10.09195,46.85143],[10.09265,46.85818],[10.08712,46.86128],[10.05488,46.8617],[10.0509,46.86442],[10.05192,46.87405],[10.03891,46.88611],[10.03221,46.88802],[10.01782,46.90161],[10.00494,46.89889],[9.98243,46.9062],[9.97793,46.91603],[9.96657,46.91222],[9.95907,46.91602],[9.94612,46.91235],[9.93758,46.91324],[9.92153,46.91882],[9.91231,46.92606],[9.90632,46.9253],[9.89449,46.93164],[9.87613,46.93463],[9.88071,46.94011],[9.87657,46.94071],[9.87488,46.95039],[9.87872,46.95707],[9.87073,46.96321],[9.88482,46.98546],[9.8923,46.99036],[9.88878,47.00072],[9.8707,47.00965],[9.87115,47.01306],[9.88035,47.01722],[9.87779,47.02055],[9.85974,47.02321],[9.85273,47.01641],[9.83612,47.01253],[9.82353,47.01986],[9.80756,47.02356],[9.78491,47.03849],[9.74808,47.03692],[9.74185,47.04268],[9.71821,47.04337],[9.70701,47.04805],[9.7076,47.05381],[9.69756,47.05239],[9.68392,47.05765],[9.68184,47.0621],[9.67743,47.06141],[9.65821,47.05818],[9.64506,47.05978],[9.64158,47.05598],[9.63654,47.0517],[9.62633,47.05133],[9.60705,47.06077],[9.6134,47.0695],[9.61153,47.0794],[9.61869,47.07817],[9.62339,47.08258],[9.63346,47.08344],[9.63564,47.09553],[9.62858,47.10756],[9.62083,47.11032],[9.63503,47.12813],[9.62467,47.13265],[9.62258,47.14135],[9.62587,47.1459],[9.62059,47.15164],[9.6089,47.14775],[9.59679,47.16294],[9.57946,47.17116],[9.56456,47.17029],[9.57302,47.1756],[9.57259,47.19079],[9.58032,47.19578],[9.58477,47.20532],[9.5687,47.21968],[9.55851,47.22416],[9.55176,47.22377],[9.56679,47.24288],[9.53073,47.27058],[9.54619,47.28005],[9.55634,47.29829],[9.58805,47.3173],[9.59966,47.3455],[9.61073,47.35571],[9.62446,47.36615],[9.65876,47.36946],[9.67255,47.38021],[9.67311,47.39194],[9.65162,47.40463],[9.64551,47.4312],[9.64512,47.4378],[9.65799,47.44779],[9.65898,47.4522],[9.62234,47.45747],[9.60904,47.47054],[9.60292,47.46198],[9.59514,47.46331],[9.58217,47.48276],[9.5622,47.49592],[9.55057,47.53718],[9.5827,47.53592],[9.60465,47.52952],[9.73478,47.53396],[9.73517,47.54661],[9.74164,47.55499],[9.7471,47.55569],[9.74337,47.55867],[9.75207,47.56747],[9.74806,47.57052],[9.75632,47.57262],[9.75633,47.57963],[9.76197,47.58096],[9.76553,47.58912],[9.76933,47.58739],[9.77697,47.59544],[9.79151,47.59352],[9.79999,47.59611],[9.81414,47.58807],[9.82381,47.5871],[9.82728,47.57997],[9.82079,47.57076],[9.82562,47.55922],[9.8171,47.55333],[9.81579,47.54767],[9.85023,47.54164],[9.85839,47.53388],[9.87451,47.52854],[9.87804,47.53876],[9.87515,47.54343],[9.88125,47.54814],[9.8891,47.54399],[9.89935,47.54475],[9.90666,47.54217],[9.91358,47.53255],[9.92189,47.52964],[9.93352,47.53265],[9.94108,47.53822],[9.9637,47.53472],[9.95883,47.54313],[9.96318,47.54229],[9.96805,47.54631]]],"type":"Polygon"},"properties":{"attribution":{"text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:31254","EPSG:31284","EPSG:32632","EPSG:25832","EPSG:21781"],"category":"map","country_code":"AT","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png","id":"vogis.cnv.at-flaechenwidmung_wms","license_url":"http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm","name":"VoGIS: Flächenwidmungsplan","type":"wms_endpoint","url":"https://vogis.cnv.at/mapserver/mapserv?map=i_flaechenwidmung_v_wms.map"},"type":"Feature"},{"geometry":{"coordinates":[[[9.96805,47.54631],[9.96809,47.54627],[9.97125,47.54425],[9.96484,47.53803],[9.9684,47.52802],[9.96526,47.52089],[9.99569,47.50278],[9.98736,47.49847],[10.00076,47.48211],[10.02301,47.48411],[10.03743,47.48918],[10.04477,47.48762],[10.05413,47.47589],[10.05347,47.46686],[10.06468,47.46364],[10.06999,47.45595],[10.08057,47.45536],[10.08857,47.46029],[10.09164,47.45893],[10.09385,47.44046],[10.10559,47.42872],[10.09374,47.41688],[10.07418,47.41472],[10.06914,47.41018],[10.08624,47.39952],[10.08284,47.39381],[10.09984,47.35476],[10.11934,47.37561],[10.14169,47.36718],[10.16587,47.36887],[10.16958,47.3713],[10.1694,47.38583],[10.1813,47.38725],[10.18185,47.39243],[10.19508,47.38935],[10.19988,47.38334],[10.21259,47.38039],[10.22705,47.38889],[10.23619,47.38192],[10.23168,47.37897],[10.23716,47.37357],[10.21699,47.35436],[10.2171,47.34988],[10.20424,47.33675],[10.20742,47.33232],[10.19951,47.32646],[10.21113,47.31898],[10.21597,47.31106],[10.21236,47.31122],[10.19913,47.29754],[10.18964,47.29394],[10.17961,47.29603],[10.17208,47.27908],[10.17404,47.27025],[10.17834,47.27011],[10.17449,47.2637],[10.21884,47.25533],[10.22343,47.24983],[10.21087,47.2478],[10.19776,47.23666],[10.20791,47.2328],[10.21428,47.21684],[10.21269,47.20432],[10.19963,47.19539],[10.19951,47.18525],[10.21151,47.17124],[10.2092,47.16537],[10.20851,47.15948],[10.21321,47.1577],[10.2222,47.15323],[10.22166,47.14925],[10.21481,47.14352],[10.20333,47.14215],[10.20887,47.13164],[10.18629,47.12886],[10.18652,47.11946],[10.17288,47.12033],[10.16299,47.11361],[10.15766,47.11426],[10.15442,47.10578],[10.13243,47.08122],[10.13459,47.06392],[10.15085,47.06184],[10.15693,47.04883],[10.14418,47.03355],[10.12326,47.02209],[10.13284,47.01204],[10.15447,47.00545],[10.15961,46.99882],[10.15442,46.99299],[10.16001,46.984],[10.14463,46.98301],[10.13492,46.96584],[10.13501,46.95483],[10.12684,46.9435],[10.09772,46.92676],[10.09954,46.91712],[10.10921,46.90834],[10.10908,46.89431],[10.12497,46.88014],[10.14147,46.87468],[10.13967,46.86217],[10.14506,46.8511],[10.13941,46.84738],[10.12309,46.84848],[10.11912,46.84417],[10.10518,46.8409],[10.09195,46.85143],[10.09265,46.85818],[10.08712,46.86128],[10.05488,46.8617],[10.0509,46.86442],[10.05192,46.87405],[10.03891,46.88611],[10.03221,46.88802],[10.01782,46.90161],[10.00494,46.89889],[9.98243,46.9062],[9.97793,46.91603],[9.96657,46.91222],[9.95907,46.91602],[9.94612,46.91235],[9.93758,46.91324],[9.92153,46.91882],[9.91231,46.92606],[9.90632,46.9253],[9.89449,46.93164],[9.87613,46.93463],[9.88071,46.94011],[9.87657,46.94071],[9.87488,46.95039],[9.87872,46.95707],[9.87073,46.96321],[9.88482,46.98546],[9.8923,46.99036],[9.88878,47.00072],[9.8707,47.00965],[9.87115,47.01306],[9.88035,47.01722],[9.87779,47.02055],[9.85974,47.02321],[9.85273,47.01641],[9.83612,47.01253],[9.82353,47.01986],[9.80756,47.02356],[9.78491,47.03849],[9.74808,47.03692],[9.74185,47.04268],[9.71821,47.04337],[9.70701,47.04805],[9.7076,47.05381],[9.69756,47.05239],[9.68392,47.05765],[9.68184,47.0621],[9.67743,47.06141],[9.65821,47.05818],[9.64506,47.05978],[9.64158,47.05598],[9.63654,47.0517],[9.62633,47.05133],[9.60705,47.06077],[9.6134,47.0695],[9.61153,47.0794],[9.61869,47.07817],[9.62339,47.08258],[9.63346,47.08344],[9.63564,47.09553],[9.62858,47.10756],[9.62083,47.11032],[9.63503,47.12813],[9.62467,47.13265],[9.62258,47.14135],[9.62587,47.1459],[9.62059,47.15164],[9.6089,47.14775],[9.59679,47.16294],[9.57946,47.17116],[9.56456,47.17029],[9.57302,47.1756],[9.57259,47.19079],[9.58032,47.19578],[9.58477,47.20532],[9.5687,47.21968],[9.55851,47.22416],[9.55176,47.22377],[9.56679,47.24288],[9.53073,47.27058],[9.54619,47.28005],[9.55634,47.29829],[9.58805,47.3173],[9.59966,47.3455],[9.61073,47.35571],[9.62446,47.36615],[9.65876,47.36946],[9.67255,47.38021],[9.67311,47.39194],[9.65162,47.40463],[9.64551,47.4312],[9.64512,47.4378],[9.65799,47.44779],[9.65898,47.4522],[9.62234,47.45747],[9.60904,47.47054],[9.60292,47.46198],[9.59514,47.46331],[9.58217,47.48276],[9.5622,47.49592],[9.55057,47.53718],[9.5827,47.53592],[9.60465,47.52952],[9.73478,47.53396],[9.73517,47.54661],[9.74164,47.55499],[9.7471,47.55569],[9.74337,47.55867],[9.75207,47.56747],[9.74806,47.57052],[9.75632,47.57262],[9.75633,47.57963],[9.76197,47.58096],[9.76553,47.58912],[9.76933,47.58739],[9.77697,47.59544],[9.79151,47.59352],[9.79999,47.59611],[9.81414,47.58807],[9.82381,47.5871],[9.82728,47.57997],[9.82079,47.57076],[9.82562,47.55922],[9.8171,47.55333],[9.81579,47.54767],[9.85023,47.54164],[9.85839,47.53388],[9.87451,47.52854],[9.87804,47.53876],[9.87515,47.54343],[9.88125,47.54814],[9.8891,47.54399],[9.89935,47.54475],[9.90666,47.54217],[9.91358,47.53255],[9.92189,47.52964],[9.93352,47.53265],[9.94108,47.53822],[9.9637,47.53472],[9.95883,47.54313],[9.96318,47.54229],[9.96805,47.54631]]],"type":"Polygon"},"properties":{"attribution":{"text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:31254","EPSG:31284","EPSG:32632","EPSG:25832","EPSG:21781"],"category":"photo","country_code":"AT","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png","id":"vogis.cnv.at-luftbilder_wms","license_url":"http://data.vorarlberg.gv.at/ogd/nutzungsbedingungen/nutzungsbedingungen.htm","name":"VoGIS: Luftbilder","type":"wms_endpoint","url":"https://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map"},"type":"Feature"},{"geometry":{"coordinates":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"basemap.at","url":"https://basemap.at"},"category":"map","country_code":"AT","description":"Annotation overlay provided by basemap.at.","i18n":true,"icon":"https://www.basemap.at/images/logo_basemap.jpg","id":"basemap.at-overlay","license_url":"https://basemap.at/#sec-nutzung","max_zoom":19,"name":"basemap.at Overlay","overlay":true,"permission_osm":"explicit","type":"tms","url":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmapoverlay/normal/google3857/{zoom}/{y}/{x}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© agentschap Informatie Vlaanderen"},"available_projections":["EPSG:4326","EPSG:4258","EPSG:31370","EPSG:3812","EPSG:3043","EPSG:32631","EPSG:25831","EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2015","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png","id":"AGIV10cm","license_url":"https://download.agiv.be/Producten/Detail?id=1209&title=Orthofotomozaiek_grootschalig_winteropnamen_kleur_2013_2015_Vlaanderen","name":"AIV Flanders 2013-2015 aerial imagery 10cm","start_date":"2013","type":"wms","url":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/OGW/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OGWRGB13_15VL&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.40434,50.78177],[4.45538,50.79328],[4.40268,50.8961],[4.331,50.90094],[4.27142,50.82002],[4.30648,50.81244],[4.36348,50.77251],[4.40434,50.78177],[4.43104,50.73831],[4.31859,50.72022],[4.29031,50.69402],[4.14853,50.72834],[3.95877,50.68947],[3.9097,50.69245],[3.89113,50.74333],[3.77568,50.74789],[3.75857,50.78045],[3.67752,50.77062],[3.64047,50.72242],[3.54139,50.73377],[3.54062,50.76307],[3.46005,50.76556],[3.3522,50.70614],[3.30562,50.75466],[3.17839,50.75609],[3.15329,50.78564],[3.02008,50.77312],[2.99943,50.81035],[2.91648,50.75356],[2.85476,50.75745],[2.86521,50.70565],[2.78473,50.7369],[2.713,50.81534],[2.63518,50.8129],[2.59909,50.85306],[2.59031,50.91893],[2.63262,50.94575],[2.57372,51.00842],[2.54165,51.09345],[3.15582,51.32714],[3.18307,51.37128],[3.23443,51.34669],[3.36356,51.37228],[3.38101,51.27446],[3.44201,51.24313],[3.52759,51.24604],[3.51511,51.28753],[3.58984,51.30577],[3.7783,51.26235],[3.79088,51.21429],[3.92412,51.21938],[4.16613,51.2929],[4.26163,51.37647],[4.42065,51.36473],[4.39108,51.45149],[4.54747,51.48571],[4.53541,51.42303],[4.64953,51.42758],[4.76359,51.5088],[4.84188,51.48074],[4.8383,51.42174],[4.89366,51.41698],[4.92785,51.39544],[5.02894,51.48789],[5.08018,51.46948],[5.10202,51.42892],[5.07117,51.3935],[5.13109,51.35137],[5.13448,51.31547],[5.20031,51.32172],[5.24189,51.30534],[5.23036,51.26436],[5.34828,51.27492],[5.41741,51.26229],[5.4863,51.30197],[5.5556,51.26986],[5.56045,51.22233],[5.76027,51.18505],[5.85578,51.14463],[5.75909,51.03588],[5.72665,50.91307],[5.64522,50.8372],[5.68732,50.804],[5.47863,50.72352],[5.41196,50.72368],[5.38908,50.74775],[5.30912,50.71802],[5.16984,50.72257],[5.16508,50.6957],[5.05642,50.71567],[5.00339,50.76594],[4.92545,50.74275],[4.90869,50.76968],[4.83106,50.77028],[4.76014,50.80544],[4.64309,50.79755],[4.65486,50.7552],[4.62021,50.74348],[4.59727,50.76359],[4.52399,50.72724],[4.49455,50.75679],[4.43104,50.73831],[4.40434,50.78177]],[[5.67393,50.75373],[5.88438,50.70114],[5.94172,50.76524],[5.76662,50.78761],[5.67393,50.75373]],[[4.91171,51.43492],[4.93711,51.42614],[4.95891,51.45471],[4.92801,51.46049],[4.91171,51.43492]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© agentschap Informatie Vlaanderen"},"best":false,"category":"map","country_code":"BE","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png","id":"AGIVFlandersGRB","license_url":"https://www.agiv.be/~/media/agiv/producten/grb/documenten/grb%20open%20data%20licentie.pdf","max_zoom":21,"name":"AIV Flanders GRB","type":"tms","url":"https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=grb_bsk&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.7737,50.79368],[4.8379,50.75916],[4.92511,50.73483],[4.98862,50.76264],[5.036,50.73527],[5.0645,50.69875],[5.1644,50.69005],[5.19393,50.71179],[5.3086,50.71245],[5.36422,50.74396],[5.43391,50.70766],[5.54378,50.74396],[5.61141,50.73527],[5.71166,50.73505],[5.77105,50.74092],[5.81946,50.70484],[5.89568,50.70614],[5.9204,50.72831],[5.91971,50.74504],[5.89843,50.77675],[5.81569,50.76351],[5.77517,50.79216],[5.69552,50.79737],[5.69072,50.82319],[5.66325,50.82904],[5.65467,50.86481],[5.72368,50.9012],[5.77174,50.95443],[5.75114,50.97368],[5.78273,51.00048],[5.78032,51.0523],[5.80848,51.05338],[5.80951,51.07668],[5.84315,51.09372],[5.84418,51.1101],[5.82599,51.11851],[5.86959,51.14953],[5.8277,51.17365],[5.792,51.16891],[5.7738,51.19344],[5.666,51.1928],[5.64059,51.21065],[5.5709,51.22829],[5.56231,51.27535],[5.49811,51.30605],[5.47099,51.30219],[5.45794,51.2893],[5.43048,51.28823],[5.41434,51.27363],[5.36593,51.282],[5.33641,51.28265],[5.32577,51.26718],[5.24337,51.27406],[5.24989,51.31335],[5.20972,51.32794],[5.14174,51.31914],[5.14209,51.35367],[5.08647,51.39482],[5.11565,51.43615],[5.08853,51.47508],[5.05214,51.47636],[5.04561,51.4939],[5.02364,51.4939],[5.01609,51.48663],[4.82966,51.48663],[4.83001,51.50009],[4.76855,51.51099],[4.74727,51.50394],[4.658,51.4492],[4.65663,51.43144],[4.53956,51.43379],[4.55466,51.48171],[4.5296,51.48748],[4.46368,51.48235],[4.37167,51.45562],[4.37751,51.40553],[4.4139,51.37511],[4.39776,51.36118],[4.34798,51.36675],[4.34627,51.38497],[4.20344,51.38111],[4.2213,51.3511],[4.15641,51.29832],[4.05101,51.25193],[4.00638,51.25279],[3.95144,51.22205],[3.88484,51.22936],[3.81926,51.21797],[3.80038,51.22872],[3.80107,51.26074],[3.74442,51.28007],[3.63593,51.29746],[3.58615,51.31378],[3.5065,51.28308],[3.51371,51.25021],[3.43921,51.25064],[3.39766,51.27513],[3.37329,51.31678],[3.39114,51.34274],[3.3623,51.37961],[3.24283,51.35474],[3.20266,51.37039],[3.15631,51.35196],[3.14223,51.33051],[2.53318,51.09092],[2.56476,50.9968],[2.61832,50.9527],[2.57781,50.91852],[2.5936,50.88431],[2.58948,50.85051],[2.6245,50.80757],[2.71033,50.8054],[2.78449,50.71853],[2.87375,50.69983],[2.86483,50.74765],[2.92525,50.75156],[2.97263,50.77024],[2.97332,50.79889],[3.00078,50.79759],[3.01383,50.76676],[3.09863,50.76611],[3.13537,50.78196],[3.16832,50.75004],[3.30428,50.74613],[3.31561,50.71484],[3.3678,50.70179],[3.44848,50.75091],[3.53293,50.75156],[3.53328,50.72549],[3.63902,50.7131],[3.69086,50.7672],[3.75163,50.76177],[3.7712,50.73874],[3.87729,50.73983],[3.87969,50.70418],[3.9202,50.68352],[3.99951,50.682],[4.06749,50.68961],[4.16018,50.72049],[4.17632,50.70331],[4.24739,50.68222],[4.31708,50.69418],[4.31846,50.70962],[4.38403,50.71027],[4.38437,50.72353],[4.47226,50.74743],[4.52617,50.71853],[4.55226,50.73766],[4.64908,50.73722],[4.6532,50.78717],[4.72426,50.78218],[4.73731,50.79585],[4.7737,50.79368]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© agentschap Informatie Vlaanderen"},"best":true,"category":"photo","country_code":"BE","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png","id":"AGIV","license_url":"https://download.agiv.be/Producten/Detail?id=1545&title=Orthofotomozaiek_middenschalig_winteropnamen_kleur_meest_recent_Vlaanderen_2016_04","max_zoom":21,"name":"AIV Flanders most recent aerial imagery","type":"tms","url":"https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=omwrgbmrvl&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© agentschap Informatie Vlaanderen"},"available_projections":["EPSG:4326","EPSG:4258","EPSG:31370","EPSG:3812","EPSG:3043","EPSG:32631","EPSG:25831","EPSG:3857"],"category":"elevation","country_code":"BE","end_date":"2015","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png","id":"AIV_DHMV_II_HILL_25cm","license_url":"https://www.geopunt.be/catalogus/datasetfolder/be2276f8-21fa-4e51-b4bc-c79eaf8bab81","name":"AIV Digitaal Hoogtemodel Vlaanderen II, multidirectionale hillshade 0,25 m","start_date":"2013","type":"wms","url":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DHMV_II_HILL_25cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© agentschap Informatie Vlaanderen"},"available_projections":["EPSG:4326","EPSG:4258","EPSG:31370","EPSG:3812","EPSG:3043","EPSG:32631","EPSG:25831","EPSG:3857"],"category":"elevation","country_code":"BE","end_date":"2015","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png","id":"AIV_DHMV_II_SVF_25cm","license_url":"https://www.geopunt.be/catalogus/datasetfolder/07dcd02f-eb0a-4247-95d1-155bb1129b3b","name":"AIV Digitaal Hoogtemodel Vlaanderen II, Skyview factor 0,25 m","start_date":"2013","type":"wms","url":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DHMV_II_SVF_25cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.47007,49.49196],[5.44409,49.51409],[5.46213,49.53677],[5.43766,49.54766],[5.42566,49.59145],[5.40775,49.60448],[5.35207,49.62396],[5.34232,49.61192],[5.30544,49.60645],[5.3026,49.63608],[5.32535,49.6575],[5.27025,49.68827],[5.24458,49.67985],[5.16215,49.6918],[5.16164,49.71172],[5.12622,49.70442],[5.09058,49.75946],[5.06262,49.75724],[5.01261,49.77534],[4.9921,49.79533],[4.95485,49.79586],[4.94404,49.78583],[4.90589,49.78055],[4.84827,49.78972],[4.86599,49.81918],[4.84266,49.86913],[4.85659,49.86973],[4.87961,49.91078],[4.84433,49.94482],[4.78844,49.95381],[4.78535,49.97018],[4.79004,49.98569],[4.81194,49.99563],[4.81579,50.02853],[4.83599,50.04069],[4.82339,50.04664],[4.81641,50.06702],[4.83456,50.06856],[4.83709,50.09442],[4.84472,50.10023],[4.85447,50.1029],[4.866,50.09623],[4.86587,50.12038],[4.8776,50.13223],[4.89443,50.13779],[4.88043,50.1403],[4.87725,50.15205],[4.8529,50.15168],[4.83169,50.1526],[4.82334,50.15923],[4.78067,50.14092],[4.76486,50.13634],[4.75217,50.11158],[4.71293,50.09598],[4.70278,50.09336],[4.68851,50.06595],[4.70309,50.05587],[4.68731,50.01802],[4.69495,49.99662],[4.69461,49.99504],[4.63074,49.98584],[4.58965,49.98336],[4.55981,49.96757],[4.54315,49.9679],[4.52365,49.94973],[4.51156,49.94579],[4.47953,49.94584],[4.44588,49.93656],[4.40593,49.94785],[4.39149,49.94697],[4.38072,49.95088],[4.34921,49.95202],[4.3137,49.96541],[4.19616,49.9536],[4.19304,49.95746],[4.19582,49.96629],[4.13704,49.97691],[4.15996,49.99544],[4.13683,50.00786],[4.13272,50.01973],[4.16174,50.05032],[4.17458,50.04772],[4.22857,50.06873],[4.19529,50.10571],[4.19766,50.12037],[4.19566,50.13394],[4.15448,50.12716],[4.13656,50.12909],[4.12568,50.13511],[4.13677,50.15213],[4.14989,50.1647],[4.14686,50.17314],[4.15567,50.19785],[4.14799,50.21344],[4.15979,50.21579],[4.19179,50.24106],[4.21836,50.25492],[4.20676,50.27068],[4.17487,50.27492],[4.16567,50.28779],[4.155,50.27742],[4.16937,50.26848],[4.16851,50.25626],[4.13426,50.25572],[4.13228,50.26754],[4.12086,50.27276],[4.12139,50.29732],[4.10928,50.30112],[4.0977,50.31201],[4.08017,50.30809],[4.07339,50.31754],[4.03817,50.33987],[4.02738,50.35491],[3.98611,50.34137],[3.96482,50.34012],[3.96355,50.34742],[3.90223,50.3257],[3.88419,50.32554],[3.88429,50.33511],[3.85645,50.34099],[3.84244,50.35243],[3.81321,50.34251],[3.80551,50.35098],[3.74124,50.34624],[3.73556,50.32532],[3.73175,50.30705],[3.70911,50.3021],[3.68231,50.31988],[3.66397,50.34724],[3.65542,50.37075],[3.66788,50.38597],[3.67276,50.40227],[3.66777,50.42262],[3.66743,50.43635],[3.65685,50.4464],[3.66129,50.45399],[3.64419,50.4618],[3.6099,50.4935],[3.58162,50.48917],[3.56897,50.4982],[3.49868,50.48577],[3.49448,50.49918],[3.51582,50.52075],[3.4742,50.53204],[3.44739,50.50415],[3.43663,50.5083],[3.42736,50.50327],[3.37405,50.48993],[3.35949,50.50325],[3.32767,50.50732],[3.31872,50.51788],[3.30319,50.51966],[3.28718,50.52552],[3.27549,50.53872],[3.27524,50.59381],[3.25497,50.62115],[3.24349,50.64031],[3.23893,50.65864],[3.24019,50.67023],[3.26029,50.67692],[3.25131,50.69091],[3.25881,50.69312],[3.24518,50.71225],[3.23779,50.71086],[3.22148,50.70958],[3.20498,50.71072],[3.18953,50.72603],[3.19445,50.7316],[3.14457,50.78871],[3.12547,50.78553],[3.11348,50.79278],[3.10455,50.78042],[3.08585,50.77064],[3.05758,50.77987],[3.04064,50.77484],[3.03691,50.77003],[3.02927,50.76813],[3.01945,50.77263],[2.99536,50.76043],[2.96822,50.74763],[2.9557,50.75181],[2.93962,50.74441],[2.94602,50.73167],[2.9349,50.72822],[2.92939,50.70786],[2.92206,50.70224],[2.91184,50.70267],[2.91281,50.69463],[2.90742,50.69209],[2.90017,50.69202],[2.88533,50.70547],[2.87992,50.70199],[2.86855,50.70242],[2.84646,50.72043],[2.81843,50.71386],[2.78869,50.72508],[2.77811,50.74686],[2.76469,50.75397],[2.75409,50.76251],[2.75922,50.77052],[2.73745,50.77967],[2.7236,50.79079],[2.71636,50.8123],[2.6788,50.81207],[2.67057,50.81562],[2.63543,50.80987],[2.61055,50.84419],[2.59427,50.84743],[2.60628,50.86565],[2.60151,50.90993],[2.58525,50.91825],[2.62479,50.94743],[2.62148,50.95406],[2.60263,50.98638],[2.56946,51.00113],[2.55892,51.06596],[2.34072,51.31453],[3.01078,51.59839],[3.32658,51.43728],[3.37581,51.3584],[3.38739,51.33392],[3.36094,51.31523],[3.3789,51.30251],[3.36832,51.29778],[3.38177,51.28732],[3.38342,51.27485],[3.38922,51.27329],[3.41852,51.25984],[3.43471,51.24621],[3.45031,51.24219],[3.527,51.24651],[3.51433,51.28799],[3.54179,51.29123],[3.56145,51.29637],[3.57559,51.29428],[3.58905,51.30652],[3.63839,51.29078],[3.6582,51.29056],[3.69139,51.28043],[3.71763,51.27428],[3.77605,51.26777],[3.79652,51.25635],[3.79031,51.24163],[3.78934,51.22711],[3.79294,51.21546],[3.85827,51.21334],[3.88901,51.22423],[3.89467,51.21743],[3.88782,51.20283],[3.91256,51.20837],[3.91482,51.21509],[3.9281,51.22508],[3.93751,51.2174],[3.95603,51.22117],[4.01551,51.24825],[4.0551,51.24402],[4.1651,51.2938],[4.23804,51.35274],[4.21772,51.36206],[4.21546,51.37487],[4.33535,51.37775],[4.34197,51.36012],[4.38556,51.35574],[4.39906,51.35785],[4.42462,51.3668],[4.42309,51.37577],[4.38147,51.41805],[4.39426,51.44251],[4.37771,51.44595],[4.38055,51.45075],[4.4768,51.47912],[4.53739,51.48358],[4.54967,51.47364],[4.53097,51.44965],[4.53758,51.42456],[4.57427,51.43404],[4.6431,51.42478],[4.64951,51.42741],[4.66744,51.42777],[4.66465,51.44625],[4.69115,51.45283],[4.70175,51.46691],[4.72792,51.48435],[4.74476,51.48977],[4.74945,51.49905],[4.75827,51.50302],[4.7766,51.50625],[4.81666,51.49552],[4.82318,51.48441],[4.84355,51.48177],[4.83884,51.46588],[4.84529,51.45817],[4.82521,51.44674],[4.83103,51.42488],[4.88072,51.4166],[4.91431,51.45952],[4.95767,51.4548],[4.94134,51.42928],[4.93775,51.40655],[4.96007,51.42194],[4.99955,51.44324],[5.00816,51.47134],[5.01937,51.48074],[5.03235,51.48827],[5.04093,51.4876],[5.04722,51.47217],[5.08032,51.47226],[5.10643,51.43135],[5.0727,51.39365],[5.11662,51.36118],[5.13225,51.3472],[5.13581,51.31594],[5.15592,51.31278],[5.20039,51.32325],[5.24326,51.3057],[5.22742,51.26844],[5.238,51.26255],[5.26216,51.26778],[5.335,51.26474],[5.34493,51.27681],[5.41551,51.2639],[5.44065,51.28246],[5.48215,51.30064],[5.51628,51.29599],[5.55816,51.26613],[5.56283,51.22287],[5.65253,51.19899],[5.65947,51.19052],[5.71011,51.18671],[5.74598,51.19455],[5.76873,51.18843],[5.78118,51.18082],[5.78447,51.15925],[5.82594,51.16827],[5.85709,51.14477],[5.83976,51.12993],[5.81435,51.11524],[5.83555,51.10842],[5.8338,51.09577],[5.82291,51.09124],[5.8119,51.0943],[5.79816,51.09023],[5.80612,51.07955],[5.80458,51.05888],[5.77731,51.05804],[5.76027,51.03223],[5.77383,51.02859],[5.77829,51.02399],[5.76759,51.00526],[5.76846,50.9985],[5.76419,50.99502],[5.74816,50.98087],[5.72174,50.96128],[5.73469,50.95683],[5.7426,50.96113],[5.74604,50.96209],[5.75617,50.95898],[5.76011,50.95227],[5.73223,50.9221],[5.72625,50.9059],[5.70051,50.90955],[5.69711,50.8958],[5.68051,50.88068],[5.64516,50.86533],[5.64337,50.84974],[5.64049,50.84701],[5.64576,50.83961],[5.64567,50.83789],[5.65094,50.83431],[5.65568,50.82591],[5.70296,50.80821],[5.69338,50.79687],[5.70259,50.78396],[5.69204,50.75629],[5.7218,50.76538],[5.73762,50.75842],[5.73912,50.76522],[5.76476,50.7837],[5.77748,50.78344],[5.78519,50.7684],[5.7927,50.77138],[5.80759,50.75681],[5.84525,50.76609],[5.84901,50.75975],[5.88667,50.77108],[5.89689,50.75501],[5.95896,50.76308],[6.02001,50.75521],[6.04208,50.74557],[6.03953,50.7295],[6.11623,50.72364],[6.1491,50.68465],[6.16312,50.67169],[6.17755,50.65576],[6.18715,50.6505],[6.18348,50.6457],[6.18205,50.63583],[6.26822,50.62829],[6.27251,50.62033],[6.24102,50.58657],[6.22795,50.58535],[6.18304,50.55597],[6.1833,50.54646],[6.19789,50.53715],[6.22586,50.49832],[6.26954,50.50961],[6.35349,50.49244],[6.34706,50.46422],[6.37423,50.45989],[6.3825,50.43975],[6.37408,50.40637],[6.35129,50.38206],[6.40305,50.34866],[6.41162,50.32769],[6.40783,50.31893],[6.38558,50.31658],[6.36388,50.30021],[6.32792,50.3186],[6.31289,50.31636],[6.29335,50.2909],[6.29547,50.27422],[6.28111,50.26236],[6.23624,50.25692],[6.21151,50.24816],[6.1981,50.23275],[6.18166,50.23125],[6.1789,50.22147],[6.19337,50.20761],[6.19683,50.17988],[6.15231,50.16841],[6.15923,50.14002],[6.13978,50.12527],[6.10856,50.1326],[6.11273,50.16093],[6.10156,50.16551],[6.08452,50.16697],[6.0821,50.15275],[6.06344,50.14834],[6.03055,50.15829],[6.02136,50.17685],[5.96932,50.16795],[5.96515,50.12813],[5.90347,50.11172],[5.89064,50.07554],[5.86237,50.06368],[5.8749,50.04624],[5.86392,50.02594],[5.82586,50.00934],[5.82665,50.00135],[5.8448,49.99123],[5.83952,49.9756],[5.80883,49.95773],[5.78215,49.957],[5.76822,49.91307],[5.74481,49.89975],[5.78087,49.88794],[5.78897,49.87213],[5.77636,49.86265],[5.75667,49.8703],[5.76191,49.85693],[5.75803,49.84287],[5.74291,49.83555],[5.75151,49.81985],[5.75473,49.79514],[5.7909,49.79765],[5.8179,49.75977],[5.83544,49.74713],[5.82702,49.72616],[5.86996,49.72777],[5.88817,49.70952],[5.86372,49.68213],[5.91262,49.66488],[5.90382,49.65192],[5.90876,49.63876],[5.89899,49.63401],[5.89117,49.63469],[5.87663,49.60771],[5.84953,49.59399],[5.87403,49.58991],[5.8736,49.57435],[5.84053,49.55222],[5.82582,49.54931],[5.81858,49.5461],[5.79504,49.55029],[5.77149,49.55832],[5.76226,49.554],[5.76126,49.53952],[5.74792,49.53452],[5.73009,49.53954],[5.6987,49.53744],[5.66008,49.55039],[5.64371,49.54565],[5.6228,49.5283],[5.62589,49.51698],[5.61175,49.50102],[5.59116,49.51734],[5.55638,49.52373],[5.54257,49.5105],[5.47007,49.49196]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6","url":"https://openstreetmap.org/"},"category":"osmbasedmap","country_code":"BE","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","id":"osmbe-nl","license_url":"https://github.com/jbelien/openstreetmap-carto-be/wiki/Tile-Usage-Policy","max_zoom":18,"name":"OpenStreetMap (Belgian Style - Dutch)","type":"tms","url":"https://tile.openstreetmap.be/osmbe-nl/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[5.47007,49.49196],[5.44409,49.51409],[5.46213,49.53677],[5.43766,49.54766],[5.42566,49.59145],[5.40775,49.60448],[5.35207,49.62396],[5.34232,49.61192],[5.30544,49.60645],[5.3026,49.63608],[5.32535,49.6575],[5.27025,49.68827],[5.24458,49.67985],[5.16215,49.6918],[5.16164,49.71172],[5.12622,49.70442],[5.09058,49.75946],[5.06262,49.75724],[5.01261,49.77534],[4.9921,49.79533],[4.95485,49.79586],[4.94404,49.78583],[4.90589,49.78055],[4.84827,49.78972],[4.86599,49.81918],[4.84266,49.86913],[4.85659,49.86973],[4.87961,49.91078],[4.84433,49.94482],[4.78844,49.95381],[4.78535,49.97018],[4.79004,49.98569],[4.81194,49.99563],[4.81579,50.02853],[4.83599,50.04069],[4.82339,50.04664],[4.81641,50.06702],[4.83456,50.06856],[4.83709,50.09442],[4.84472,50.10023],[4.85447,50.1029],[4.866,50.09623],[4.86587,50.12038],[4.8776,50.13223],[4.89443,50.13779],[4.88043,50.1403],[4.87725,50.15205],[4.8529,50.15168],[4.83169,50.1526],[4.82334,50.15923],[4.78067,50.14092],[4.76486,50.13634],[4.75217,50.11158],[4.71293,50.09598],[4.70278,50.09336],[4.68851,50.06595],[4.70309,50.05587],[4.68731,50.01802],[4.69495,49.99662],[4.69461,49.99504],[4.63074,49.98584],[4.58965,49.98336],[4.55981,49.96757],[4.54315,49.9679],[4.52365,49.94973],[4.51156,49.94579],[4.47953,49.94584],[4.44588,49.93656],[4.40593,49.94785],[4.39149,49.94697],[4.38072,49.95088],[4.34921,49.95202],[4.3137,49.96541],[4.19616,49.9536],[4.19304,49.95746],[4.19582,49.96629],[4.13704,49.97691],[4.15996,49.99544],[4.13683,50.00786],[4.13272,50.01973],[4.16174,50.05032],[4.17458,50.04772],[4.22857,50.06873],[4.19529,50.10571],[4.19766,50.12037],[4.19566,50.13394],[4.15448,50.12716],[4.13656,50.12909],[4.12568,50.13511],[4.13677,50.15213],[4.14989,50.1647],[4.14686,50.17314],[4.15567,50.19785],[4.14799,50.21344],[4.15979,50.21579],[4.19179,50.24106],[4.21836,50.25492],[4.20676,50.27068],[4.17487,50.27492],[4.16567,50.28779],[4.155,50.27742],[4.16937,50.26848],[4.16851,50.25626],[4.13426,50.25572],[4.13228,50.26754],[4.12086,50.27276],[4.12139,50.29732],[4.10928,50.30112],[4.0977,50.31201],[4.08017,50.30809],[4.07339,50.31754],[4.03817,50.33987],[4.02738,50.35491],[3.98611,50.34137],[3.96482,50.34012],[3.96355,50.34742],[3.90223,50.3257],[3.88419,50.32554],[3.88429,50.33511],[3.85645,50.34099],[3.84244,50.35243],[3.81321,50.34251],[3.80551,50.35098],[3.74124,50.34624],[3.73556,50.32532],[3.73175,50.30705],[3.70911,50.3021],[3.68231,50.31988],[3.66397,50.34724],[3.65542,50.37075],[3.66788,50.38597],[3.67276,50.40227],[3.66777,50.42262],[3.66743,50.43635],[3.65685,50.4464],[3.66129,50.45399],[3.64419,50.4618],[3.6099,50.4935],[3.58162,50.48917],[3.56897,50.4982],[3.49868,50.48577],[3.49448,50.49918],[3.51582,50.52075],[3.4742,50.53204],[3.44739,50.50415],[3.43663,50.5083],[3.42736,50.50327],[3.37405,50.48993],[3.35949,50.50325],[3.32767,50.50732],[3.31872,50.51788],[3.30319,50.51966],[3.28718,50.52552],[3.27549,50.53872],[3.27524,50.59381],[3.25497,50.62115],[3.24349,50.64031],[3.23893,50.65864],[3.24019,50.67023],[3.26029,50.67692],[3.25131,50.69091],[3.25881,50.69312],[3.24518,50.71225],[3.23779,50.71086],[3.22148,50.70958],[3.20498,50.71072],[3.18953,50.72603],[3.19445,50.7316],[3.14457,50.78871],[3.12547,50.78553],[3.11348,50.79278],[3.10455,50.78042],[3.08585,50.77064],[3.05758,50.77987],[3.04064,50.77484],[3.03691,50.77003],[3.02927,50.76813],[3.01945,50.77263],[2.99536,50.76043],[2.96822,50.74763],[2.9557,50.75181],[2.93962,50.74441],[2.94602,50.73167],[2.9349,50.72822],[2.92939,50.70786],[2.92206,50.70224],[2.91184,50.70267],[2.91281,50.69463],[2.90742,50.69209],[2.90017,50.69202],[2.88533,50.70547],[2.87992,50.70199],[2.86855,50.70242],[2.84646,50.72043],[2.81843,50.71386],[2.78869,50.72508],[2.77811,50.74686],[2.76469,50.75397],[2.75409,50.76251],[2.75922,50.77052],[2.73745,50.77967],[2.7236,50.79079],[2.71636,50.8123],[2.6788,50.81207],[2.67057,50.81562],[2.63543,50.80987],[2.61055,50.84419],[2.59427,50.84743],[2.60628,50.86565],[2.60151,50.90993],[2.58525,50.91825],[2.62479,50.94743],[2.62148,50.95406],[2.60263,50.98638],[2.56946,51.00113],[2.55892,51.06596],[2.34072,51.31453],[3.01078,51.59839],[3.32658,51.43728],[3.37581,51.3584],[3.38739,51.33392],[3.36094,51.31523],[3.3789,51.30251],[3.36832,51.29778],[3.38177,51.28732],[3.38342,51.27485],[3.38922,51.27329],[3.41852,51.25984],[3.43471,51.24621],[3.45031,51.24219],[3.527,51.24651],[3.51433,51.28799],[3.54179,51.29123],[3.56145,51.29637],[3.57559,51.29428],[3.58905,51.30652],[3.63839,51.29078],[3.6582,51.29056],[3.69139,51.28043],[3.71763,51.27428],[3.77605,51.26777],[3.79652,51.25635],[3.79031,51.24163],[3.78934,51.22711],[3.79294,51.21546],[3.85827,51.21334],[3.88901,51.22423],[3.89467,51.21743],[3.88782,51.20283],[3.91256,51.20837],[3.91482,51.21509],[3.9281,51.22508],[3.93751,51.2174],[3.95603,51.22117],[4.01551,51.24825],[4.0551,51.24402],[4.1651,51.2938],[4.23804,51.35274],[4.21772,51.36206],[4.21546,51.37487],[4.33535,51.37775],[4.34197,51.36012],[4.38556,51.35574],[4.39906,51.35785],[4.42462,51.3668],[4.42309,51.37577],[4.38147,51.41805],[4.39426,51.44251],[4.37771,51.44595],[4.38055,51.45075],[4.4768,51.47912],[4.53739,51.48358],[4.54967,51.47364],[4.53097,51.44965],[4.53758,51.42456],[4.57427,51.43404],[4.6431,51.42478],[4.64951,51.42741],[4.66744,51.42777],[4.66465,51.44625],[4.69115,51.45283],[4.70175,51.46691],[4.72792,51.48435],[4.74476,51.48977],[4.74945,51.49905],[4.75827,51.50302],[4.7766,51.50625],[4.81666,51.49552],[4.82318,51.48441],[4.84355,51.48177],[4.83884,51.46588],[4.84529,51.45817],[4.82521,51.44674],[4.83103,51.42488],[4.88072,51.4166],[4.91431,51.45952],[4.95767,51.4548],[4.94134,51.42928],[4.93775,51.40655],[4.96007,51.42194],[4.99955,51.44324],[5.00816,51.47134],[5.01937,51.48074],[5.03235,51.48827],[5.04093,51.4876],[5.04722,51.47217],[5.08032,51.47226],[5.10643,51.43135],[5.0727,51.39365],[5.11662,51.36118],[5.13225,51.3472],[5.13581,51.31594],[5.15592,51.31278],[5.20039,51.32325],[5.24326,51.3057],[5.22742,51.26844],[5.238,51.26255],[5.26216,51.26778],[5.335,51.26474],[5.34493,51.27681],[5.41551,51.2639],[5.44065,51.28246],[5.48215,51.30064],[5.51628,51.29599],[5.55816,51.26613],[5.56283,51.22287],[5.65253,51.19899],[5.65947,51.19052],[5.71011,51.18671],[5.74598,51.19455],[5.76873,51.18843],[5.78118,51.18082],[5.78447,51.15925],[5.82594,51.16827],[5.85709,51.14477],[5.83976,51.12993],[5.81435,51.11524],[5.83555,51.10842],[5.8338,51.09577],[5.82291,51.09124],[5.8119,51.0943],[5.79816,51.09023],[5.80612,51.07955],[5.80458,51.05888],[5.77731,51.05804],[5.76027,51.03223],[5.77383,51.02859],[5.77829,51.02399],[5.76759,51.00526],[5.76846,50.9985],[5.76419,50.99502],[5.74816,50.98087],[5.72174,50.96128],[5.73469,50.95683],[5.7426,50.96113],[5.74604,50.96209],[5.75617,50.95898],[5.76011,50.95227],[5.73223,50.9221],[5.72625,50.9059],[5.70051,50.90955],[5.69711,50.8958],[5.68051,50.88068],[5.64516,50.86533],[5.64337,50.84974],[5.64049,50.84701],[5.64576,50.83961],[5.64567,50.83789],[5.65094,50.83431],[5.65568,50.82591],[5.70296,50.80821],[5.69338,50.79687],[5.70259,50.78396],[5.69204,50.75629],[5.7218,50.76538],[5.73762,50.75842],[5.73912,50.76522],[5.76476,50.7837],[5.77748,50.78344],[5.78519,50.7684],[5.7927,50.77138],[5.80759,50.75681],[5.84525,50.76609],[5.84901,50.75975],[5.88667,50.77108],[5.89689,50.75501],[5.95896,50.76308],[6.02001,50.75521],[6.04208,50.74557],[6.03953,50.7295],[6.11623,50.72364],[6.1491,50.68465],[6.16312,50.67169],[6.17755,50.65576],[6.18715,50.6505],[6.18348,50.6457],[6.18205,50.63583],[6.26822,50.62829],[6.27251,50.62033],[6.24102,50.58657],[6.22795,50.58535],[6.18304,50.55597],[6.1833,50.54646],[6.19789,50.53715],[6.22586,50.49832],[6.26954,50.50961],[6.35349,50.49244],[6.34706,50.46422],[6.37423,50.45989],[6.3825,50.43975],[6.37408,50.40637],[6.35129,50.38206],[6.40305,50.34866],[6.41162,50.32769],[6.40783,50.31893],[6.38558,50.31658],[6.36388,50.30021],[6.32792,50.3186],[6.31289,50.31636],[6.29335,50.2909],[6.29547,50.27422],[6.28111,50.26236],[6.23624,50.25692],[6.21151,50.24816],[6.1981,50.23275],[6.18166,50.23125],[6.1789,50.22147],[6.19337,50.20761],[6.19683,50.17988],[6.15231,50.16841],[6.15923,50.14002],[6.13978,50.12527],[6.10856,50.1326],[6.11273,50.16093],[6.10156,50.16551],[6.08452,50.16697],[6.0821,50.15275],[6.06344,50.14834],[6.03055,50.15829],[6.02136,50.17685],[5.96932,50.16795],[5.96515,50.12813],[5.90347,50.11172],[5.89064,50.07554],[5.86237,50.06368],[5.8749,50.04624],[5.86392,50.02594],[5.82586,50.00934],[5.82665,50.00135],[5.8448,49.99123],[5.83952,49.9756],[5.80883,49.95773],[5.78215,49.957],[5.76822,49.91307],[5.74481,49.89975],[5.78087,49.88794],[5.78897,49.87213],[5.77636,49.86265],[5.75667,49.8703],[5.76191,49.85693],[5.75803,49.84287],[5.74291,49.83555],[5.75151,49.81985],[5.75473,49.79514],[5.7909,49.79765],[5.8179,49.75977],[5.83544,49.74713],[5.82702,49.72616],[5.86996,49.72777],[5.88817,49.70952],[5.86372,49.68213],[5.91262,49.66488],[5.90382,49.65192],[5.90876,49.63876],[5.89899,49.63401],[5.89117,49.63469],[5.87663,49.60771],[5.84953,49.59399],[5.87403,49.58991],[5.8736,49.57435],[5.84053,49.55222],[5.82582,49.54931],[5.81858,49.5461],[5.79504,49.55029],[5.77149,49.55832],[5.76226,49.554],[5.76126,49.53952],[5.74792,49.53452],[5.73009,49.53954],[5.6987,49.53744],[5.66008,49.55039],[5.64371,49.54565],[5.6228,49.5283],[5.62589,49.51698],[5.61175,49.50102],[5.59116,49.51734],[5.55638,49.52373],[5.54257,49.5105],[5.47007,49.49196]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6","url":"https://openstreetmap.org/"},"category":"osmbasedmap","country_code":"BE","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","id":"osmbe-fr","license_url":"https://github.com/jbelien/openstreetmap-carto-be/wiki/Tile-Usage-Policy","max_zoom":18,"name":"OpenStreetMap (Belgian Style - French)","type":"tms","url":"https://tile.openstreetmap.be/osmbe-fr/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[5.47007,49.49196],[5.44409,49.51409],[5.46213,49.53677],[5.43766,49.54766],[5.42566,49.59145],[5.40775,49.60448],[5.35207,49.62396],[5.34232,49.61192],[5.30544,49.60645],[5.3026,49.63608],[5.32535,49.6575],[5.27025,49.68827],[5.24458,49.67985],[5.16215,49.6918],[5.16164,49.71172],[5.12622,49.70442],[5.09058,49.75946],[5.06262,49.75724],[5.01261,49.77534],[4.9921,49.79533],[4.95485,49.79586],[4.94404,49.78583],[4.90589,49.78055],[4.84827,49.78972],[4.86599,49.81918],[4.84266,49.86913],[4.85659,49.86973],[4.87961,49.91078],[4.84433,49.94482],[4.78844,49.95381],[4.78535,49.97018],[4.79004,49.98569],[4.81194,49.99563],[4.81579,50.02853],[4.83599,50.04069],[4.82339,50.04664],[4.81641,50.06702],[4.83456,50.06856],[4.83709,50.09442],[4.84472,50.10023],[4.85447,50.1029],[4.866,50.09623],[4.86587,50.12038],[4.8776,50.13223],[4.89443,50.13779],[4.88043,50.1403],[4.87725,50.15205],[4.8529,50.15168],[4.83169,50.1526],[4.82334,50.15923],[4.78067,50.14092],[4.76486,50.13634],[4.75217,50.11158],[4.71293,50.09598],[4.70278,50.09336],[4.68851,50.06595],[4.70309,50.05587],[4.68731,50.01802],[4.69495,49.99662],[4.69461,49.99504],[4.63074,49.98584],[4.58965,49.98336],[4.55981,49.96757],[4.54315,49.9679],[4.52365,49.94973],[4.51156,49.94579],[4.47953,49.94584],[4.44588,49.93656],[4.40593,49.94785],[4.39149,49.94697],[4.38072,49.95088],[4.34921,49.95202],[4.3137,49.96541],[4.19616,49.9536],[4.19304,49.95746],[4.19582,49.96629],[4.13704,49.97691],[4.15996,49.99544],[4.13683,50.00786],[4.13272,50.01973],[4.16174,50.05032],[4.17458,50.04772],[4.22857,50.06873],[4.19529,50.10571],[4.19766,50.12037],[4.19566,50.13394],[4.15448,50.12716],[4.13656,50.12909],[4.12568,50.13511],[4.13677,50.15213],[4.14989,50.1647],[4.14686,50.17314],[4.15567,50.19785],[4.14799,50.21344],[4.15979,50.21579],[4.19179,50.24106],[4.21836,50.25492],[4.20676,50.27068],[4.17487,50.27492],[4.16567,50.28779],[4.155,50.27742],[4.16937,50.26848],[4.16851,50.25626],[4.13426,50.25572],[4.13228,50.26754],[4.12086,50.27276],[4.12139,50.29732],[4.10928,50.30112],[4.0977,50.31201],[4.08017,50.30809],[4.07339,50.31754],[4.03817,50.33987],[4.02738,50.35491],[3.98611,50.34137],[3.96482,50.34012],[3.96355,50.34742],[3.90223,50.3257],[3.88419,50.32554],[3.88429,50.33511],[3.85645,50.34099],[3.84244,50.35243],[3.81321,50.34251],[3.80551,50.35098],[3.74124,50.34624],[3.73556,50.32532],[3.73175,50.30705],[3.70911,50.3021],[3.68231,50.31988],[3.66397,50.34724],[3.65542,50.37075],[3.66788,50.38597],[3.67276,50.40227],[3.66777,50.42262],[3.66743,50.43635],[3.65685,50.4464],[3.66129,50.45399],[3.64419,50.4618],[3.6099,50.4935],[3.58162,50.48917],[3.56897,50.4982],[3.49868,50.48577],[3.49448,50.49918],[3.51582,50.52075],[3.4742,50.53204],[3.44739,50.50415],[3.43663,50.5083],[3.42736,50.50327],[3.37405,50.48993],[3.35949,50.50325],[3.32767,50.50732],[3.31872,50.51788],[3.30319,50.51966],[3.28718,50.52552],[3.27549,50.53872],[3.27524,50.59381],[3.25497,50.62115],[3.24349,50.64031],[3.23893,50.65864],[3.24019,50.67023],[3.26029,50.67692],[3.25131,50.69091],[3.25881,50.69312],[3.24518,50.71225],[3.23779,50.71086],[3.22148,50.70958],[3.20498,50.71072],[3.18953,50.72603],[3.19445,50.7316],[3.14457,50.78871],[3.12547,50.78553],[3.11348,50.79278],[3.10455,50.78042],[3.08585,50.77064],[3.05758,50.77987],[3.04064,50.77484],[3.03691,50.77003],[3.02927,50.76813],[3.01945,50.77263],[2.99536,50.76043],[2.96822,50.74763],[2.9557,50.75181],[2.93962,50.74441],[2.94602,50.73167],[2.9349,50.72822],[2.92939,50.70786],[2.92206,50.70224],[2.91184,50.70267],[2.91281,50.69463],[2.90742,50.69209],[2.90017,50.69202],[2.88533,50.70547],[2.87992,50.70199],[2.86855,50.70242],[2.84646,50.72043],[2.81843,50.71386],[2.78869,50.72508],[2.77811,50.74686],[2.76469,50.75397],[2.75409,50.76251],[2.75922,50.77052],[2.73745,50.77967],[2.7236,50.79079],[2.71636,50.8123],[2.6788,50.81207],[2.67057,50.81562],[2.63543,50.80987],[2.61055,50.84419],[2.59427,50.84743],[2.60628,50.86565],[2.60151,50.90993],[2.58525,50.91825],[2.62479,50.94743],[2.62148,50.95406],[2.60263,50.98638],[2.56946,51.00113],[2.55892,51.06596],[2.34072,51.31453],[3.01078,51.59839],[3.32658,51.43728],[3.37581,51.3584],[3.38739,51.33392],[3.36094,51.31523],[3.3789,51.30251],[3.36832,51.29778],[3.38177,51.28732],[3.38342,51.27485],[3.38922,51.27329],[3.41852,51.25984],[3.43471,51.24621],[3.45031,51.24219],[3.527,51.24651],[3.51433,51.28799],[3.54179,51.29123],[3.56145,51.29637],[3.57559,51.29428],[3.58905,51.30652],[3.63839,51.29078],[3.6582,51.29056],[3.69139,51.28043],[3.71763,51.27428],[3.77605,51.26777],[3.79652,51.25635],[3.79031,51.24163],[3.78934,51.22711],[3.79294,51.21546],[3.85827,51.21334],[3.88901,51.22423],[3.89467,51.21743],[3.88782,51.20283],[3.91256,51.20837],[3.91482,51.21509],[3.9281,51.22508],[3.93751,51.2174],[3.95603,51.22117],[4.01551,51.24825],[4.0551,51.24402],[4.1651,51.2938],[4.23804,51.35274],[4.21772,51.36206],[4.21546,51.37487],[4.33535,51.37775],[4.34197,51.36012],[4.38556,51.35574],[4.39906,51.35785],[4.42462,51.3668],[4.42309,51.37577],[4.38147,51.41805],[4.39426,51.44251],[4.37771,51.44595],[4.38055,51.45075],[4.4768,51.47912],[4.53739,51.48358],[4.54967,51.47364],[4.53097,51.44965],[4.53758,51.42456],[4.57427,51.43404],[4.6431,51.42478],[4.64951,51.42741],[4.66744,51.42777],[4.66465,51.44625],[4.69115,51.45283],[4.70175,51.46691],[4.72792,51.48435],[4.74476,51.48977],[4.74945,51.49905],[4.75827,51.50302],[4.7766,51.50625],[4.81666,51.49552],[4.82318,51.48441],[4.84355,51.48177],[4.83884,51.46588],[4.84529,51.45817],[4.82521,51.44674],[4.83103,51.42488],[4.88072,51.4166],[4.91431,51.45952],[4.95767,51.4548],[4.94134,51.42928],[4.93775,51.40655],[4.96007,51.42194],[4.99955,51.44324],[5.00816,51.47134],[5.01937,51.48074],[5.03235,51.48827],[5.04093,51.4876],[5.04722,51.47217],[5.08032,51.47226],[5.10643,51.43135],[5.0727,51.39365],[5.11662,51.36118],[5.13225,51.3472],[5.13581,51.31594],[5.15592,51.31278],[5.20039,51.32325],[5.24326,51.3057],[5.22742,51.26844],[5.238,51.26255],[5.26216,51.26778],[5.335,51.26474],[5.34493,51.27681],[5.41551,51.2639],[5.44065,51.28246],[5.48215,51.30064],[5.51628,51.29599],[5.55816,51.26613],[5.56283,51.22287],[5.65253,51.19899],[5.65947,51.19052],[5.71011,51.18671],[5.74598,51.19455],[5.76873,51.18843],[5.78118,51.18082],[5.78447,51.15925],[5.82594,51.16827],[5.85709,51.14477],[5.83976,51.12993],[5.81435,51.11524],[5.83555,51.10842],[5.8338,51.09577],[5.82291,51.09124],[5.8119,51.0943],[5.79816,51.09023],[5.80612,51.07955],[5.80458,51.05888],[5.77731,51.05804],[5.76027,51.03223],[5.77383,51.02859],[5.77829,51.02399],[5.76759,51.00526],[5.76846,50.9985],[5.76419,50.99502],[5.74816,50.98087],[5.72174,50.96128],[5.73469,50.95683],[5.7426,50.96113],[5.74604,50.96209],[5.75617,50.95898],[5.76011,50.95227],[5.73223,50.9221],[5.72625,50.9059],[5.70051,50.90955],[5.69711,50.8958],[5.68051,50.88068],[5.64516,50.86533],[5.64337,50.84974],[5.64049,50.84701],[5.64576,50.83961],[5.64567,50.83789],[5.65094,50.83431],[5.65568,50.82591],[5.70296,50.80821],[5.69338,50.79687],[5.70259,50.78396],[5.69204,50.75629],[5.7218,50.76538],[5.73762,50.75842],[5.73912,50.76522],[5.76476,50.7837],[5.77748,50.78344],[5.78519,50.7684],[5.7927,50.77138],[5.80759,50.75681],[5.84525,50.76609],[5.84901,50.75975],[5.88667,50.77108],[5.89689,50.75501],[5.95896,50.76308],[6.02001,50.75521],[6.04208,50.74557],[6.03953,50.7295],[6.11623,50.72364],[6.1491,50.68465],[6.16312,50.67169],[6.17755,50.65576],[6.18715,50.6505],[6.18348,50.6457],[6.18205,50.63583],[6.26822,50.62829],[6.27251,50.62033],[6.24102,50.58657],[6.22795,50.58535],[6.18304,50.55597],[6.1833,50.54646],[6.19789,50.53715],[6.22586,50.49832],[6.26954,50.50961],[6.35349,50.49244],[6.34706,50.46422],[6.37423,50.45989],[6.3825,50.43975],[6.37408,50.40637],[6.35129,50.38206],[6.40305,50.34866],[6.41162,50.32769],[6.40783,50.31893],[6.38558,50.31658],[6.36388,50.30021],[6.32792,50.3186],[6.31289,50.31636],[6.29335,50.2909],[6.29547,50.27422],[6.28111,50.26236],[6.23624,50.25692],[6.21151,50.24816],[6.1981,50.23275],[6.18166,50.23125],[6.1789,50.22147],[6.19337,50.20761],[6.19683,50.17988],[6.15231,50.16841],[6.15923,50.14002],[6.13978,50.12527],[6.10856,50.1326],[6.11273,50.16093],[6.10156,50.16551],[6.08452,50.16697],[6.0821,50.15275],[6.06344,50.14834],[6.03055,50.15829],[6.02136,50.17685],[5.96932,50.16795],[5.96515,50.12813],[5.90347,50.11172],[5.89064,50.07554],[5.86237,50.06368],[5.8749,50.04624],[5.86392,50.02594],[5.82586,50.00934],[5.82665,50.00135],[5.8448,49.99123],[5.83952,49.9756],[5.80883,49.95773],[5.78215,49.957],[5.76822,49.91307],[5.74481,49.89975],[5.78087,49.88794],[5.78897,49.87213],[5.77636,49.86265],[5.75667,49.8703],[5.76191,49.85693],[5.75803,49.84287],[5.74291,49.83555],[5.75151,49.81985],[5.75473,49.79514],[5.7909,49.79765],[5.8179,49.75977],[5.83544,49.74713],[5.82702,49.72616],[5.86996,49.72777],[5.88817,49.70952],[5.86372,49.68213],[5.91262,49.66488],[5.90382,49.65192],[5.90876,49.63876],[5.89899,49.63401],[5.89117,49.63469],[5.87663,49.60771],[5.84953,49.59399],[5.87403,49.58991],[5.8736,49.57435],[5.84053,49.55222],[5.82582,49.54931],[5.81858,49.5461],[5.79504,49.55029],[5.77149,49.55832],[5.76226,49.554],[5.76126,49.53952],[5.74792,49.53452],[5.73009,49.53954],[5.6987,49.53744],[5.66008,49.55039],[5.64371,49.54565],[5.6228,49.5283],[5.62589,49.51698],[5.61175,49.50102],[5.59116,49.51734],[5.55638,49.52373],[5.54257,49.5105],[5.47007,49.49196]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6","url":"https://openstreetmap.org/"},"category":"osmbasedmap","country_code":"BE","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","id":"osmbe","license_url":"https://github.com/jbelien/openstreetmap-carto-be/wiki/Tile-Usage-Policy","max_zoom":18,"name":"OpenStreetMap (Belgian Style)","type":"tms","url":"https://tile.openstreetmap.be/osmbe/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:31370","EPSG:4326","EPSG:3857"],"best":true,"category":"photo","country_code":"BE","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png","id":"SPW_ORTHO_LAST","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf","name":"SPW(allonie) most recent aerial imagery","type":"wms","url":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_LAST/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:31370","EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2010","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png","id":"SPW2009","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf","name":"SPW(allonie) 2009-2010 aerial imagery","start_date":"2009","type":"wms","url":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2009_2010/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:31370","EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2013","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png","id":"SPW2012","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf","name":"SPW(allonie) 2012-2013 aerial imagery","start_date":"2012","type":"wms","url":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2012_2013/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:31370","EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2015","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png","id":"SPW2015","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf","name":"SPW(allonie) 2015 aerial imagery","start_date":"2015","type":"wms","url":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2015/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:31370","EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2016","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png","id":"SPW2016","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf","name":"SPW(allonie) 2016 aerial imagery","start_date":"2016","type":"wms","url":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2016/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:31370","EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2018","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png","id":"SPW2018","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf","name":"SPW(allonie) 2018 aerial imagery","privacy_policy_url":"http://geoportail.wallonie.be/vie-privee.html","start_date":"2018","type":"wms","url":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2018/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"type":"Polygon"},"properties":{"available_projections":["CRS:84","EPSG:102100","EPSG:31370","EPSG:3857","EPSG:4258","EPSG:4326"],"category":"map","country_code":"BE","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png","id":"SPW_PICC","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf","name":"SPW(allonie) PICC numerical imagery","privacy_policy_url":"https://geoportail.wallonie.be/vie-privee.html","type":"wms","url":"https://geoservices.wallonie.be/arcgis/services/TOPOGRAPHIE/PICC_VDIFF/MapServer/WmsServer?SERVICE=WMS&TRANSPARENT=FALSE&STYLES=&LAYERS=1,3,4,5,7,9,10,11,12,14,15,16,17,19,20,21,23,24,25,26,27,28,29&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:31370","EPSG:3857"],"category":"elevation","country_code":"BE","end_date":"2014","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png","id":"SPWrelief2014","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_license_for_SPW_WMS_usage.pdf","name":"SPW(allonie) shaded relief","start_date":"2013","type":"wms","url":"https://geoservices.wallonie.be/arcgis/services/RELIEF/WALLONIE_MNT_2013_2014_HILLSHADE/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.40236,49.50688],[5.81984,49.54253],[6.1714,49.62089],[5.85829,49.68846],[5.7704,49.85343],[5.894,50.11832],[6.15492,50.13593],[6.39662,50.36775],[6.28126,50.46576],[6.11372,50.7933],[5.72646,50.77941],[5.70998,50.85229],[5.61385,50.80024],[5.46278,50.79677],[5.21284,50.70119],[4.94917,50.80371],[4.75966,50.80718],[4.72121,50.88869],[4.60585,50.77941],[4.48775,50.85749],[4.36964,50.85056],[4.15266,50.72728],[3.59236,50.76725],[3.29848,50.76377],[3.04579,50.80024],[2.86177,50.72728],[2.89748,50.68553],[3.0815,50.76725],[3.19685,50.68031],[3.28749,50.52691],[3.67201,50.47625],[3.68574,50.31692],[3.99062,50.27305],[4.14992,50.17465],[4.24055,50.08661],[4.15266,49.99842],[4.18562,49.96486],[4.55366,49.94542],[4.69923,50.03372],[4.81184,50.0919],[4.84206,50.01607],[4.86677,49.90475],[4.85854,49.80382],[5.08925,49.7648],[5.34743,49.60843],[5.40236,49.50688]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:3857","EPSG:4326"],"category":"other","country_code":"BE","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png","id":"TEClines","license_url":"https://www.infotec.be/fr-be/minformer/opendata.aspx","name":"TEC bus lines","overlay":true,"type":"wms","url":"https://geodata.tec-wl.be/arcgis/services/Lignes/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.40236,49.50688],[5.81984,49.54253],[6.1714,49.62089],[5.85829,49.68846],[5.7704,49.85343],[5.894,50.11832],[6.15492,50.13593],[6.39662,50.36775],[6.28126,50.46576],[6.11372,50.7933],[5.72646,50.77941],[5.70998,50.85229],[5.61385,50.80024],[5.46278,50.79677],[5.21284,50.70119],[4.94917,50.80371],[4.75966,50.80718],[4.72121,50.88869],[4.60585,50.77941],[4.48775,50.85749],[4.36964,50.85056],[4.15266,50.72728],[3.59236,50.76725],[3.29848,50.76377],[3.04579,50.80024],[2.86177,50.72728],[2.89748,50.68553],[3.0815,50.76725],[3.19685,50.68031],[3.28749,50.52691],[3.67201,50.47625],[3.68574,50.31692],[3.99062,50.27305],[4.14992,50.17465],[4.24055,50.08661],[4.15266,49.99842],[4.18562,49.96486],[4.55366,49.94542],[4.69923,50.03372],[4.81184,50.0919],[4.84206,50.01607],[4.86677,49.90475],[4.85854,49.80382],[5.08925,49.7648],[5.34743,49.60843],[5.40236,49.50688]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:3857","EPSG:4326"],"category":"other","country_code":"BE","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png","id":"TECstops","license_url":"https://www.infotec.be/fr-be/minformer/opendata.aspx","name":"TEC bus stops","overlay":true,"type":"wms","url":"https://geodata.tec-wl.be/arcgis/services/Poteaux/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["EPSG:31370","EPSG:4326","EPSG:3857"],"best":false,"category":"map","country_code":"BE","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"UrbisAdmFR","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"UrbisAdm FR","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisFR&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["EPSG:3857"],"category":"map","country_code":"BE","end_date":"2013","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"URBISfr2013","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"URBISfr numerical imagery (2013)","start_date":"2013","type":"wms","url":"https://gis.irisnet.be/arcgis/rest/services/basemap/urbisFR/MapServer/export?f=image&format=png8&transparent=False&SRS={proj}&bboxSR=3857&imageSR=3857&bbox={bbox}&size={width},{height}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["EPSG:31370","EPSG:4326","EPSG:3857"],"best":false,"category":"map","country_code":"BE","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"UrbisAdmNL","license_url":"https://cibg.brussels/nl/onze-oplossingen/urbis-solutions/urbis-open-data-licentie","name":"UrbisAdm NL","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisNL&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["EPSG:3857"],"category":"map","country_code":"BE","end_date":"2013","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"URBISnl2013","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"URBISnl numerical imagery (2013)","start_date":"2013","type":"wms","url":"https://gis.irisnet.be/arcgis/rest/services/basemap/urbisNL/MapServer/export?f=image&format=png8&transparent=False&SRS={proj}&bboxSR=3857&imageSR=3857&bbox={bbox}&size={width},{height}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2009","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"URBIS2009","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"URBIS 2009 aerial imagery","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","start_date":"2009","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2009&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2012","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"URBIS2012","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"URBIS 2012 aerial imagery","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","start_date":"2012","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2012&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.4001,50.76373],[4.43093,50.77254],[4.43586,50.77237],[4.46549,50.78373],[4.48189,50.78835],[4.48269,50.79849],[4.46363,50.80686],[4.46407,50.81546],[4.48204,50.81699],[4.48103,50.82343],[4.47465,50.83505],[4.47403,50.84587],[4.46712,50.85447],[4.45257,50.85797],[4.45017,50.86151],[4.42968,50.86764],[4.43423,50.87384],[4.44147,50.87513],[4.44381,50.88004],[4.43534,50.88977],[4.43968,50.89475],[4.43287,50.90363],[4.42096,50.90917],[4.42023,50.91387],[4.38315,50.91381],[4.37879,50.90637],[4.37334,50.90289],[4.36241,50.906],[4.34824,50.90611],[4.33955,50.90685],[4.32771,50.90515],[4.31471,50.89842],[4.30413,50.89498],[4.2871,50.89192],[4.28725,50.88532],[4.29293,50.88265],[4.27948,50.8736],[4.27347,50.86822],[4.27364,50.85871],[4.27688,50.85575],[4.27644,50.84376],[4.26664,50.8405],[4.25488,50.83992],[4.24755,50.83453],[4.24799,50.82866],[4.24357,50.82599],[4.24376,50.81356],[4.25233,50.81268],[4.25649,50.80711],[4.27025,50.8073],[4.27222,50.80537],[4.28414,50.80241],[4.28885,50.80434],[4.29544,50.8043],[4.30046,50.79506],[4.31076,50.79299],[4.31444,50.78372],[4.32628,50.77221],[4.34194,50.76891],[4.34474,50.77029],[4.37535,50.76577],[4.3755,50.76381],[4.4001,50.76373]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2014","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"URBIS2014","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"URBIS 2014 aerial imagery","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","start_date":"2014","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2014&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2015","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"URBIS2015","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"URBIS 2015 aerial imagery","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","start_date":"2015","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2015&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["CRS:84","EPSG:31370","EPSG:4326","EPSG:3857"],"best":false,"category":"historicphoto","country_code":"BE","end_date":"2016","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"UrbISOrtho2016","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"UrbIS-Ortho 2016","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","start_date":"2016","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2016&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["CRS:84","EPSG:31370","EPSG:4326","EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2017","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"UrbISOrtho2017","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"UrbIS-Ortho 2017","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","start_date":"2017","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2017&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["CRS:84","EPSG:31370","EPSG:4326","EPSG:3857"],"category":"historicphoto","country_code":"BE","end_date":"2018","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"UrbISOrtho2018","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"UrbIS-Ortho 2018","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","start_date":"2018","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2018&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"},"available_projections":["CRS:84","EPSG:31370","EPSG:4326","EPSG:3857"],"best":true,"category":"photo","country_code":"BE","end_date":"2019","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png","id":"UrbISOrtho2019","license_url":"https://bric.brussels/en/our-solutions/urbis-solutions/Licence_Open_data_Fr_v4.pdf","name":"UrbIS-Ortho 2019","privacy_policy_url":"https://bric.brussels/en/disclaimer-conditions-of-use-of-the-bric-website","start_date":"2019","type":"wms","url":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2019&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[23.80811,41.58488],[22.99238,41.60195],[23.01186,42.29984],[23.99402,42.28339],[23.96561,41.58488],[23.80811,41.58488]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"BY","description":"Late summer imagery where usual sources are severely limited by clouds and snow (true color)","end_date":"2015-08-28","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R093_N41_20150828T092005","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Rila and Pirin Mountains","start_date":"2015-08-28","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N41_20150828T092005&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[7.54,46.86],[7.54,46.85],[7.5,46.85],[7.5,46.86],[7.45,46.86],[7.45,46.85],[7.42,46.85],[7.42,46.86],[7.43,46.86],[7.43,46.87],[7.41,46.87],[7.41,46.88],[7.4,46.88],[7.4,46.87],[7.39,46.87],[7.39,46.86],[7.35,46.86],[7.35,46.88],[7.34,46.88],[7.34,46.89],[7.29,46.89],[7.29,46.88],[7.27,46.88],[7.27,46.89],[7.25,46.89],[7.25,46.91],[7.23,46.91],[7.23,46.93],[7.24,46.93],[7.24,46.94],[7.23,46.94],[7.23,46.96],[7.24,46.96],[7.24,46.97],[7.25,46.97],[7.25,46.98],[7.27,46.98],[7.27,46.99],[7.28,46.99],[7.28,47.0],[7.29,47.0],[7.29,47.01],[7.32,47.01],[7.32,47.02],[7.37,47.02],[7.37,47.03],[7.4,47.03],[7.4,47.04],[7.44,47.04],[7.44,47.05],[7.47,47.05],[7.47,47.04],[7.49,47.04],[7.49,47.03],[7.48,47.03],[7.48,47.01],[7.54,47.01],[7.54,46.99],[7.55,46.99],[7.55,46.96],[7.52,46.96],[7.52,46.95],[7.53,46.95],[7.53,46.92],[7.52,46.92],[7.52,46.91],[7.53,46.91],[7.53,46.9],[7.54,46.9],[7.54,46.88],[7.55,46.88],[7.55,46.86],[7.54,46.86]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Amtliche Vermessung farbig WMTS, OpenData.swiss, Geoinformation Stadt Bern"},"category":"map","country_code":"CH","description":"Amtliche Vermessung farbig WMTS","id":"Bern-AmtlicheVermessung","license_url":"https://opendata.swiss/de/terms-of-use/","name":"Amtliche Vermessung farbig WMTS, OpenData.swiss, Geoinformation Stadt Bern","privacy_policy_url":"https://www.bern.ch/disclaimer#datenschutz","type":"wmts","url":"https://map.bern.ch/arcgis/rest/services/AV_farbig/MapServer/WMTS?"},"type":"Feature"},{"geometry":{"coordinates":[[[7.3807,47.00952],[7.38073,47.02301],[7.43853,47.02303],[7.43865,47.01408],[7.45174,47.014],[7.45172,47.00503],[7.54111,47.005],[7.54111,46.99873],[7.54378,46.99871],[7.54375,46.98696],[7.55682,46.987],[7.55685,46.96003],[7.51744,46.96001],[7.51744,46.95108],[7.53051,46.95106],[7.53051,46.92407],[7.51741,46.92405],[7.51738,46.91505],[7.53042,46.91507],[7.53048,46.9061],[7.54358,46.90602],[7.54358,46.87905],[7.55659,46.87903],[7.55662,46.8611],[7.54349,46.86104],[7.5434,46.85212],[7.49095,46.85212],[7.49107,46.87907],[7.47794,46.87909],[7.47797,46.89707],[7.45168,46.89713],[7.45171,46.88808],[7.43855,46.88814],[7.43858,46.87015],[7.41233,46.87015],[7.41236,46.87907],[7.39917,46.87911],[7.3992,46.86108],[7.38613,46.86114],[7.3861,46.85218],[7.373,46.85216],[7.37303,46.86112],[7.34677,46.8611],[7.3468,46.88808],[7.25488,46.88796],[7.25485,46.90596],[7.24172,46.90592],[7.24169,46.91497],[7.22856,46.91493],[7.22833,46.96887],[7.24146,46.96891],[7.24149,46.98688],[7.26769,46.98694],[7.26777,46.99593],[7.28078,46.99595],[7.2809,47.0094],[7.3807,47.00952]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Orthophoto 2012, Vermessungsamt Stadt Bern"},"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2012","id":"Bern-2012","license_url":"https://wiki.openstreetmap.org/wiki/Bern#Orthofotos","max_zoom":19,"min_zoom":14,"name":"Stadt Bern 10cm/25cm (2012)","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2012","type":"tms","url":"https://mapproxy.osm.ch/tiles/bern2012/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[6.66713,46.83358],[6.66313,46.83833],[6.67213,46.84191],[6.6749,46.84226],[6.67843,46.83807],[6.66713,46.83358]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Bonvillars - Orthophoto technique 2013","url":"https://osmdata.asitvd.ch/"},"category":"photo","country_code":"CH","end_date":"2013","id":"Bonvillars-2013","max_zoom":20,"min_zoom":14,"name":"Bonvillars Orthophoto 2013","privacy_policy_url":"https://www.asitvd.ch/tarifs-conditions.html","start_date":"2013","type":"tms","url":"https://osmdata.asitvd.ch/tiles/bonvillars2013/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[6.79478,46.57542],[6.79949,46.57407],[6.80256,46.57491],[6.80336,46.57687],[6.80427,46.57664],[6.80489,46.57792],[6.80794,46.57761],[6.8094,46.57885],[6.81084,46.57896],[6.81322,46.57823],[6.81153,46.58099],[6.8142,46.58396],[6.81411,46.58567],[6.8206,46.58368],[6.82371,46.57747],[6.82693,46.57796],[6.82927,46.57637],[6.83485,46.57533],[6.83744,46.57677],[6.83691,46.57748],[6.83982,46.57896],[6.84239,46.58244],[6.84532,46.58276],[6.84644,46.58394],[6.84857,46.58331],[6.85087,46.58113],[6.85262,46.58197],[6.85996,46.57987],[6.86554,46.57725],[6.86507,46.57623],[6.8679,46.57515],[6.87446,46.56497],[6.8845,46.56195],[6.88686,46.56341],[6.89214,46.5679],[6.89918,46.56671],[6.89885,46.56499],[6.89393,46.55991],[6.88822,46.55815],[6.86839,46.54164],[6.86498,46.53896],[6.86015,46.53597],[6.85563,46.54086],[6.85501,46.54144],[6.85087,46.54111],[6.8407,46.53819],[6.83032,46.53744],[6.82783,46.54298],[6.82553,46.54357],[6.81278,46.52707],[6.81088,46.52513],[6.81534,46.52139],[6.8181,46.5165],[6.82263,46.51411],[6.82429,46.51207],[6.83034,46.51246],[6.83239,46.50544],[6.83503,46.50231],[6.84126,46.49706],[6.84294,46.49632],[6.84554,46.49667],[6.84775,46.49369],[6.84891,46.49337],[6.85729,46.49305],[6.86276,46.49384],[6.86634,46.50079],[6.87244,46.50431],[6.88168,46.51257],[6.8967,46.52044],[6.89773,46.52005],[6.89711,46.51766],[6.89767,46.51483],[6.89522,46.51079],[6.89572,46.50773],[6.89974,46.51039],[6.90142,46.51233],[6.92517,46.50769],[6.92759,46.50467],[6.93363,46.50167],[6.93674,46.50096],[6.95614,46.49949],[6.97239,46.48879],[6.97581,46.4784],[6.97783,46.47289],[6.97815,46.46833],[6.97906,46.46107],[6.98016,46.45896],[6.99212,46.44891],[6.98361,46.43873],[6.98394,46.43799],[6.98746,46.43794],[7.01786,46.44707],[7.02103,46.45729],[7.06583,46.48904],[7.0724,46.4864],[7.10037,46.48699],[7.12279,46.49869],[7.1264,46.50317],[7.13096,46.50466],[7.13624,46.50861],[7.13704,46.51308],[7.14005,46.51688],[7.14044,46.51988],[7.14318,46.52183],[7.1437,46.52475],[7.1453,46.52701],[7.14835,46.52846],[7.15834,46.52681],[7.16346,46.52855],[7.16709,46.53101],[7.18234,46.53837],[7.19218,46.54656],[7.20081,46.54169],[7.20108,46.543],[7.20765,46.53291],[7.21417,46.53762],[7.21811,46.54211],[7.22171,46.54481],[7.22311,46.5476],[7.22543,46.54923],[7.2322,46.55123],[7.23614,46.554],[7.24047,46.55424],[7.24705,46.55623],[7.25574,46.56029],[7.26385,46.56752],[7.2681,46.57369],[7.28136,46.58411],[7.2992,46.5791],[7.30805,46.58132],[7.31254,46.58917],[7.3207,46.59183],[7.31479,46.60042],[7.3162,46.60937],[7.31826,46.61615],[7.3178,46.61856],[7.31213,46.6217],[7.31327,46.63662],[7.32284,46.63731],[7.32684,46.63873],[7.32975,46.64171],[7.32787,46.64616],[7.321,46.65465],[7.32345,46.65526],[7.32914,46.65459],[7.33116,46.65522],[7.33403,46.65471],[7.34549,46.6553],[7.34756,46.65307],[7.35063,46.65164],[7.35079,46.64799],[7.35456,46.64669],[7.3558,46.64533],[7.35528,46.64193],[7.35714,46.63927],[7.35877,46.64418],[7.36209,46.64683],[7.36229,46.64791],[7.36608,46.64898],[7.37747,46.65636],[7.36933,46.65564],[7.36953,46.65748],[7.37103,46.65907],[7.37083,46.66085],[7.37187,46.66283],[7.37122,46.66375],[7.37252,46.66757],[7.37108,46.66942],[7.37649,46.67503],[7.37293,46.68012],[7.37777,46.68357],[7.37587,46.68645],[7.376,46.6878],[7.38027,46.69018],[7.37693,46.69272],[7.3686,46.69265],[7.3649,46.69505],[7.36261,46.69928],[7.3598,46.69802],[7.34598,46.69895],[7.34604,46.7019],[7.34939,46.70555],[7.35037,46.70874],[7.35021,46.71119],[7.34903,46.71249],[7.34065,46.71464],[7.33277,46.71491],[7.32868,46.71641],[7.31011,46.71815],[7.30785,46.71717],[7.30002,46.72247],[7.29683,46.72737],[7.29685,46.73565],[7.29834,46.74013],[7.30304,46.74517],[7.30454,46.74816],[7.30486,46.75026],[7.30335,46.7514],[7.30309,46.75261],[7.30359,46.75919],[7.29987,46.76375],[7.29881,46.76513],[7.29307,46.77136],[7.29532,46.77537],[7.29639,46.77729],[7.30081,46.77905],[7.30053,46.78064],[7.30113,46.78134],[7.30447,46.78321],[7.30447,46.78415],[7.30207,46.78638],[7.30351,46.78887],[7.30201,46.79079],[7.30159,46.79283],[7.30732,46.79872],[7.31044,46.80823],[7.31537,46.81246],[7.32028,46.8149],[7.32047,46.81564],[7.32072,46.82011],[7.31981,46.82515],[7.32891,46.829],[7.3302,46.82968],[7.33123,46.83177],[7.33103,46.8328],[7.32926,46.83563],[7.32333,46.84041],[7.30755,46.84704],[7.30775,46.84808],[7.30613,46.84999],[7.31207,46.85557],[7.31351,46.85936],[7.31739,46.8606],[7.32087,46.86154],[7.32576,46.85681],[7.323,46.85476],[7.32603,46.85163],[7.33181,46.8512],[7.33536,46.85043],[7.33678,46.84979],[7.33821,46.84946],[7.34726,46.85375],[7.34934,46.85331],[7.35167,46.85502],[7.35444,46.85875],[7.35772,46.86065],[7.35925,46.86311],[7.35794,46.86513],[7.35838,46.8688],[7.35738,46.8701],[7.35386,46.87129],[7.35253,46.87555],[7.35339,46.88676],[7.34843,46.88934],[7.32573,46.89373],[7.30935,46.89152],[7.29618,46.89377],[7.28938,46.89377],[7.28639,46.89269],[7.28245,46.8898],[7.2802,46.8896],[7.27259,46.89249],[7.26634,46.89361],[7.25931,46.89797],[7.24433,46.90037],[7.24314,46.89792],[7.23633,46.89809],[7.23203,46.90029],[7.2309,46.9024],[7.23032,46.90394],[7.22351,46.90276],[7.21755,46.89735],[7.21244,46.90173],[7.2088,46.9026],[7.20781,46.90913],[7.20578,46.91477],[7.20692,46.92481],[7.2111,46.92527],[7.21854,46.92434],[7.2342,46.92939],[7.23411,46.93669],[7.23477,46.93827],[7.2302,46.93995],[7.2282,46.93881],[7.22555,46.93633],[7.2174,46.93307],[7.2093,46.93334],[7.20823,46.93323],[7.2058,46.94023],[7.2055,46.94112],[7.20951,46.94188],[7.21027,46.94302],[7.21044,46.94569],[7.21011,46.94781],[7.20885,46.95435],[7.21102,46.95652],[7.20838,46.95768],[7.20742,46.95967],[7.19764,46.96065],[7.19459,46.96135],[7.19463,46.9629],[7.19552,46.96416],[7.19633,46.96365],[7.19794,46.96445],[7.1993,46.9638],[7.20646,46.96413],[7.20745,46.96751],[7.21422,46.96692],[7.21467,46.97133],[7.21739,46.97147],[7.21686,46.97271],[7.22247,46.97454],[7.22163,46.97556],[7.22821,46.97836],[7.23569,46.98456],[7.23486,46.98675],[7.22594,46.9924],[7.22625,46.99868],[7.22575,46.99915],[7.21779,47.00641],[7.21299,47.0068],[7.09058,46.978],[7.03295,46.98265],[6.73785,46.81195],[6.73908,46.71021],[6.81908,46.65533],[6.82741,46.65982],[6.82089,46.65179],[6.81729,46.64923],[6.81851,46.6478],[6.81458,46.64747],[6.81344,46.64953],[6.81194,46.6492],[6.81081,46.65038],[6.80674,46.65059],[6.80203,46.64889],[6.79891,46.64914],[6.79879,46.64781],[6.80367,46.64567],[6.80325,46.6448],[6.8038,46.64451],[6.80321,46.64376],[6.80171,46.64421],[6.79895,46.63959],[6.79692,46.63314],[6.79838,46.63016],[6.80043,46.62991],[6.80065,46.62843],[6.80172,46.62854],[6.80228,46.62775],[6.80197,46.62507],[6.80355,46.62124],[6.80244,46.61877],[6.80296,46.61615],[6.80185,46.61555],[6.80389,46.60903],[6.80239,46.60142],[6.79833,46.59986],[6.8002,46.59362],[6.80124,46.5925],[6.79848,46.58616],[6.79948,46.58559],[6.79894,46.58205],[6.79611,46.57932],[6.79626,46.57728],[6.79478,46.57542]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Canton Fribourg 2016 'orthophoto technique'"},"best":false,"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2016","id":"CTFRIBOURG2016","license_url":"https://www.geocat.ch/geonetwork/srv/fre/catalog.search#/metadata/9c059550-1cf7-4338-aa51-f39474a67639","max_zoom":21,"min_zoom":1,"name":"Canton Fribourg 2016","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2016","type":"tms","url":"https://mapproxy.osm.ch/tiles/fribourg_2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[5.6703,46.2143],[6.1123,46.5677],[6.2941,46.57],[6.5293,46.4609],[6.577,46.3643],[6.5509,46.0711],[6.4452,45.9382],[6.3702,45.9234],[5.7294,45.9575],[5.6805,46.0223],[5.6805,46.0223],[5.6703,46.2143]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Système d'information du territoire à Genève (SITG)"},"available_projections":["EPSG:2056","CRS:84","EPSG:4326"],"best":false,"category":"elevation","country_code":"CH","end_date":"2014","id":"Geneve-dsm-2014","license_url":"https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf","name":"Canton de Génève, MNA RELIEF OMBRE SURFACE 2014 (SITG)","privacy_policy_url":"https://ge.ch/sitg/conditions-utilisation","start_date":"2014","type":"wms","url":"https://ge.ch/sitgags2/services/RASTER/MNA_RELIEF_SURFACE/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[5.6703,46.2143],[6.1123,46.5677],[6.2941,46.57],[6.5293,46.4609],[6.577,46.3643],[6.5509,46.0711],[6.4452,45.9382],[6.3702,45.9234],[5.7294,45.9575],[5.6805,46.0223],[5.6805,46.0223],[5.6703,46.2143]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Système d'information du territoire à Genève (SITG)"},"available_projections":["EPSG:2056","CRS:84","EPSG:4326"],"best":false,"category":"elevation","country_code":"CH","end_date":"2014","id":"Geneve-dtm-2014","license_url":"https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf","name":"Canton de Génève, MNA RELIEF OMBRE TERRAIN 2014 (SITG)","privacy_policy_url":"https://ge.ch/sitg/conditions-utilisation","start_date":"2014","type":"wms","url":"https://ge.ch/sitgags2/services/RASTER/MNA_RELIEF_TERRAIN/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[6.12,46.12],[6.08,46.12],[6.08,46.14],[6.06,46.14],[6.06,46.12],[5.94,46.12],[5.94,46.16],[5.96,46.16],[5.96,46.18],[5.94,46.18],[5.94,46.22],[5.96,46.22],[5.96,46.24],[6.02,46.24],[6.02,46.26],[6.08,46.26],[6.08,46.3],[6.1,46.3],[6.1,46.34],[6.14,46.34],[6.14,46.32],[6.16,46.32],[6.16,46.38],[6.22,46.38],[6.22,46.36],[6.26,46.36],[6.26,46.28],[6.32,46.28],[6.32,46.22],[6.3,46.22],[6.3,46.2],[6.26,46.2],[6.26,46.18],[6.22,46.18],[6.22,46.16],[6.2,46.16],[6.2,46.14],[6.16,46.14],[6.16,46.12],[6.12,46.12]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Système d'information du territoire à Genève (SITG)"},"available_projections":["EPSG:4326","EPSG:2056","CRS:84"],"best":false,"category":"photo","country_code":"CH","end_date":"2016","id":"Geneve-orthophoto-2016","license_url":"https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf","name":"Canton de Génève, Orthophoto 2016 (5cm) (SITG)","privacy_policy_url":"https://ge.ch/sitg/conditions-utilisation","start_date":"2016","type":"wms","url":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2016/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[5.6703,46.2143],[6.1123,46.5677],[6.2941,46.57],[6.5293,46.4609],[6.577,46.3643],[6.5509,46.0711],[6.4452,45.9382],[6.3702,45.9234],[5.7294,45.9575],[5.6805,46.0223],[5.6805,46.0223],[5.6703,46.2143]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Système d'information du territoire à Genève (SITG)"},"available_projections":["EPSG:2056","EPSG:3857","EPSG:102110","EPSG:2154","EPSG:102100","EPSG:4326","CRS:84"],"best":false,"category":"photo","country_code":"CH","end_date":"2018","id":"Geneve-orthophoto-2018","license_url":"https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf","name":"Canton de Génève, Orthophoto 2018 (20cm) (SITG)","privacy_policy_url":"https://ge.ch/sitg/conditions-utilisation","start_date":"2018","type":"wms","url":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2018/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[6.12,46.12],[6.08,46.12],[6.08,46.14],[6.06,46.14],[6.06,46.12],[5.94,46.12],[5.94,46.16],[5.96,46.16],[5.96,46.18],[5.94,46.18],[5.94,46.22],[5.96,46.22],[5.96,46.24],[6.02,46.24],[6.02,46.26],[6.08,46.26],[6.08,46.3],[6.1,46.3],[6.1,46.34],[6.14,46.34],[6.14,46.32],[6.16,46.32],[6.16,46.38],[6.22,46.38],[6.22,46.36],[6.26,46.36],[6.26,46.28],[6.32,46.28],[6.32,46.22],[6.3,46.22],[6.3,46.2],[6.26,46.2],[6.26,46.18],[6.22,46.18],[6.22,46.16],[6.2,46.16],[6.2,46.14],[6.16,46.14],[6.16,46.12],[6.12,46.12]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Système d'information du territoire à Genève (SITG)"},"available_projections":["CRS:84","EPSG:2056","EPSG:4326"],"best":true,"category":"photo","country_code":"CH","end_date":"2019","id":"Geneve-orthophoto-2019","license_url":"https://ge.ch/sitg/media/sitg/files/documents/conditions_generales_dutilisation_des_donnees_et_produits_du_sitg_en_libre_acces.pdf","name":"Canton de Génève, Orthophoto 2019 (5cm) (SITG)","privacy_policy_url":"https://ge.ch/sitg/conditions-utilisation","start_date":"2019","type":"wms","url":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2019/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.02235,46.42856],[7.0224,46.42045],[7.02176,46.41955],[7.02225,46.41954],[7.02161,46.41749],[7.02242,46.4174],[7.02242,46.41681],[7.02113,46.41443],[7.02164,46.41259],[7.0216,46.41188],[7.01918,46.41055],[7.01896,46.41004],[7.01757,46.40826],[7.01426,46.40696],[7.00948,46.40695],[7.00952,46.40451],[7.00368,46.40153],[6.97052,46.40139],[6.97056,46.39354],[6.96507,46.38333],[6.89379,46.383],[6.89327,46.39209],[6.8968,46.4],[6.89678,46.40097],[6.89395,46.401],[6.89768,46.40888],[6.89246,46.41386],[6.89237,46.41807],[6.8949,46.4193],[6.89285,46.41948],[6.89395,46.42312],[6.89225,46.42339],[6.89219,46.42802],[6.88743,46.428],[6.87652,46.43163],[6.86624,46.43633],[6.84003,46.44591],[6.83504,46.44934],[6.827,46.45204],[6.82695,46.45379],[6.81953,46.45655],[6.80361,46.45993],[6.78775,46.46253],[6.78697,46.5246],[6.82604,46.5248],[6.82609,46.52662],[6.83907,46.5267],[6.83888,46.55006],[6.90658,46.55042],[6.912,46.54301],[6.91083,46.53983],[6.90979,46.53512],[6.90931,46.53517],[6.90867,46.53373],[6.91195,46.53297],[6.91335,46.53604],[6.9268,46.53364],[6.92723,46.5349],[6.93714,46.53311],[6.93691,46.5327],[6.94028,46.53196],[6.94164,46.53477],[6.94309,46.53455],[6.94345,46.53528],[6.95641,46.53003],[6.95632,46.52733],[6.95111,46.52725],[6.95301,46.52611],[6.94341,46.52605],[6.94343,46.52546],[7.01629,46.52568],[7.02158,46.52211],[7.02196,46.47355],[7.07099,46.47368],[7.07402,46.4719],[7.07383,46.4326],[7.05947,46.43233],[7.05278,46.42879],[7.02235,46.42856]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Cartoriviera","url":"https://map.cartoriviera.ch/?baselayer_ref=orthos_2012_mobile&baselayer_opacity=100"},"category":"photo","country_code":"CH","end_date":"2012","id":"Cartoriviera-2012","max_zoom":20,"min_zoom":14,"name":"Cartoriviera - Orthophoto 2012","privacy_policy_url":"https://www.asitvd.ch/tarifs-conditions.html","start_date":"2012","type":"tms","url":"https://osmdata.asitvd.ch/tiles/cartoriviera2012/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[6.62313,46.82339],[6.62899,46.82484],[6.62882,46.82674],[6.62531,46.83274],[6.62382,46.83317],[6.61839,46.83194],[6.62313,46.82339]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Fiez - Orthophoto technique 2013","url":"https://osmdata.asitvd.ch/"},"category":"photo","country_code":"CH","end_date":"2013","id":"Fiez-2013","max_zoom":20,"min_zoom":14,"name":"Fiez Orthophoto 2013","privacy_policy_url":"https://www.asitvd.ch/tarifs-conditions.html","start_date":"2013","type":"tms","url":"https://osmdata.asitvd.ch/tiles/fiez2013/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[8.09602,47.57882],[8.10323,47.57879],[8.10323,47.58583],[8.10591,47.58732],[8.11019,47.58878],[8.11589,47.5893],[8.12168,47.58916],[8.12546,47.58873],[8.12959,47.58888],[8.13023,47.59122],[8.132,47.59358],[8.13506,47.59546],[8.13831,47.59698],[8.14161,47.59939],[8.14534,47.60076],[8.14961,47.60144],[8.15438,47.60127],[8.15751,47.60063],[8.16119,47.59914],[8.16255,47.59976],[8.16438,47.60148],[8.16653,47.60399],[8.17087,47.60673],[8.17608,47.60838],[8.17912,47.60868],[8.18153,47.6118],[8.18304,47.61489],[8.18498,47.6176],[8.18953,47.62151],[8.19212,47.62321],[8.22261,47.623],[8.22561,47.6212],[8.22849,47.61842],[8.22959,47.61621],[8.23008,47.61501],[8.23261,47.61686],[8.23657,47.61803],[8.24,47.61835],[8.24351,47.61783],[8.24749,47.61877],[8.25066,47.61988],[8.25708,47.6208],[8.26104,47.62069],[8.26491,47.61935],[8.26732,47.61769],[8.26902,47.61531],[8.27579,47.61702],[8.28106,47.61707],[8.28772,47.61626],[8.29421,47.61442],[8.29947,47.61221],[8.30311,47.60977],[8.30287,47.59447],[8.30438,47.59227],[8.30591,47.59109],[8.30791,47.59019],[8.31236,47.58917],[8.31655,47.58713],[8.32049,47.58436],[8.32598,47.57888],[8.32864,47.57716],[8.33219,47.57604],[8.33902,47.57577],[8.34702,47.57628],[8.35962,47.57552],[8.36475,47.57436],[8.37207,47.57377],[8.38002,47.57233],[8.38194,47.57496],[8.38387,47.57686],[8.38879,47.58027],[8.39232,47.58174],[8.39611,47.58247],[8.40013,47.58255],[8.40432,47.58158],[8.41158,47.57928],[8.418,47.57602],[8.42381,47.57452],[8.43039,47.57228],[8.43275,47.57035],[8.4336,47.56849],[8.43353,47.56669],[8.4319,47.56444],[8.4286,47.56217],[8.42575,47.56121],[8.4259,47.55854],[8.42498,47.55624],[8.42353,47.55469],[8.42296,47.5537],[8.4246,47.5517],[8.42492,47.54981],[8.42434,47.54836],[8.42539,47.54679],[8.425,47.54418],[8.4233,47.5422],[8.421,47.54106],[8.41832,47.54049],[8.41551,47.54062],[8.4139,47.53924],[8.41283,47.5372],[8.41194,47.53626],[8.41241,47.53415],[8.41185,47.53237],[8.41117,47.53158],[8.40143,47.53169],[8.40124,47.52443],[8.39936,47.5222],[8.39666,47.52082],[8.39385,47.51988],[8.39085,47.51973],[8.38877,47.52014],[8.38809,47.5146],[8.38551,47.51075],[8.38366,47.50944],[8.36776,47.50953],[8.36739,47.48709],[8.3751,47.48689],[8.37889,47.4853],[8.38196,47.48188],[8.38184,47.47521],[8.38328,47.47192],[8.38244,47.46879],[8.37943,47.46643],[8.37751,47.4659],[8.37787,47.46496],[8.38238,47.46423],[8.38671,47.46097],[8.39171,47.45743],[8.39315,47.45349],[8.39514,47.45031],[8.39418,47.44722],[8.39171,47.44535],[8.3896,47.44449],[8.38996,47.44339],[8.39111,47.4416],[8.39213,47.43924],[8.39339,47.4359],[8.39249,47.43411],[8.39369,47.43143],[8.39568,47.42854],[8.39959,47.42463],[8.39953,47.41954],[8.449,47.41897],[8.45369,47.41233],[8.45369,47.40451],[8.44858,47.39649],[8.40362,47.39685],[8.40483,47.39392],[8.4029,47.38903],[8.4035,47.38553],[8.40314,47.38304],[8.40483,47.37905],[8.40844,47.37575],[8.41379,47.37338],[8.4159,47.37016],[8.41584,47.36539],[8.4144,47.36327],[8.41494,47.35912],[8.41722,47.35573],[8.41632,47.35231],[8.41355,47.34913],[8.41367,47.34688],[8.41476,47.3448],[8.41885,47.34244],[8.42264,47.34052],[8.42469,47.33718],[8.42421,47.33163],[8.42914,47.33286],[8.4351,47.33192],[8.43763,47.33281],[8.44328,47.33506],[8.44527,47.33746],[8.45213,47.3402],[8.45761,47.33975],[8.46212,47.33649],[8.46278,47.33322],[8.46043,47.32829],[8.45797,47.32457],[8.45556,47.32005],[8.44918,47.31495],[8.44713,47.31217],[8.44021,47.30948],[8.43624,47.29817],[8.43311,47.29593],[8.42806,47.29397],[8.42318,47.29001],[8.41656,47.28789],[8.41024,47.28728],[8.4035,47.28409],[8.40188,47.2805],[8.40862,47.27593],[8.41066,47.2716],[8.40892,47.26613],[8.41235,47.2618],[8.41235,47.25873],[8.41109,47.25608],[8.41698,47.25142],[8.41885,47.2475],[8.41801,47.24305],[8.4144,47.23904],[8.41373,47.23565],[8.4106,47.23226],[8.40435,47.22797],[8.40296,47.2256],[8.40398,47.22127],[8.40856,47.21718],[8.40928,47.21326],[8.40844,47.20945],[8.41012,47.20258],[8.41319,47.19678],[8.41271,47.1924],[8.4088,47.18799],[8.40814,47.18475],[8.4091,47.1812],[8.41518,47.17915],[8.41915,47.17563],[8.42294,47.16553],[8.42294,47.15747],[8.42011,47.15325],[8.42246,47.14838],[8.42276,47.14392],[8.42053,47.13954],[8.41584,47.13524],[8.40898,47.13274],[8.40386,47.13201],[8.40116,47.13258],[8.39532,47.1327],[8.38437,47.1345],[8.37895,47.13385],[8.37245,47.13442],[8.36908,47.13659],[8.368,47.13876],[8.35656,47.14228],[8.35409,47.14564],[8.35331,47.14916],[8.3506,47.15161],[8.3503,47.15419],[8.34772,47.15669],[8.34561,47.15923],[8.34086,47.16164],[8.33935,47.16512],[8.3373,47.16896],[8.33315,47.17154],[8.33261,47.17351],[8.33062,47.17792],[8.33002,47.18717],[8.32924,47.18786],[8.32936,47.19494],[8.32292,47.19514],[8.32148,47.19854],[8.32196,47.20115],[8.31835,47.21043],[8.31413,47.21178],[8.31089,47.2153],[8.31107,47.21857],[8.31221,47.2198],[8.30884,47.22433],[8.30932,47.22646],[8.30715,47.23042],[8.30727,47.2321],[8.30595,47.23582],[8.30607,47.23949],[8.30378,47.24366],[8.30144,47.24677],[8.29554,47.24836],[8.29187,47.25293],[8.28814,47.25869],[8.28766,47.26143],[8.28627,47.26519],[8.28723,47.26805],[8.28838,47.26964],[8.2823,47.27478],[8.27718,47.27576],[8.27273,47.27531],[8.26749,47.27593],[8.26533,47.27719],[8.2616,47.27695],[8.25793,47.27781],[8.25576,47.27887],[8.25317,47.27678],[8.25034,47.27548],[8.2501,47.27348],[8.24956,47.27017],[8.24559,47.26715],[8.24095,47.26678],[8.23452,47.26727],[8.23145,47.26278],[8.2309,47.25931],[8.22663,47.24942],[8.222,47.24713],[8.21526,47.24431],[8.21363,47.24203],[8.21309,47.23602],[8.21123,47.23246],[8.21285,47.22548],[8.21117,47.22266],[8.20689,47.22053],[8.19762,47.22065],[8.19149,47.21861],[8.16976,47.21865],[8.16543,47.22315],[8.16085,47.22405],[8.15351,47.2294],[8.15171,47.2332],[8.14822,47.23647],[8.14798,47.241],[8.14635,47.24203],[8.13823,47.24166],[8.13558,47.23941],[8.12673,47.23606],[8.1218,47.23631],[8.11614,47.23872],[8.10675,47.23945],[8.10266,47.24113],[8.09983,47.24436],[8.09766,47.2493],[8.09797,47.25069],[8.09339,47.25567],[8.08852,47.2569],[8.08485,47.25583],[8.08323,47.25405],[8.07995,47.25246],[8.0769,47.25054],[8.06854,47.24284],[8.06325,47.24098],[8.05134,47.23865],[8.04857,47.23886],[8.03575,47.23747],[8.0322,47.23555],[8.02714,47.23534],[8.01139,47.23967],[8.00927,47.24116],[8.00791,47.24312],[8.00783,47.24821],[8.00857,47.25042],[8.0084,47.25769],[8.00712,47.25922],[8.00299,47.26162],[8.00052,47.26486],[7.99759,47.26789],[7.99627,47.27271],[7.99474,47.27369],[7.98993,47.27121],[7.97278,47.26907],[7.96857,47.27008],[7.96737,47.27098],[7.95861,47.27112],[7.9601,47.26748],[7.96274,47.26396],[7.96576,47.26171],[7.96699,47.25879],[7.96695,47.25001],[7.95963,47.24582],[7.95112,47.23918],[7.94469,47.236],[7.93733,47.23106],[7.93405,47.23051],[7.9298,47.23077],[7.9178,47.23305],[7.90784,47.23837],[7.89793,47.2377],[7.8695,47.23207],[7.85478,47.22719],[7.85137,47.22713],[7.83958,47.22947],[7.83584,47.22976],[7.83082,47.23259],[7.82707,47.23505],[7.82431,47.23831],[7.82129,47.24042],[7.82014,47.24264],[7.81822,47.24562],[7.81771,47.24917],[7.81822,47.25082],[7.81835,47.25371],[7.81988,47.25587],[7.82116,47.2568],[7.82112,47.25778],[7.8192,47.26058],[7.81912,47.26154],[7.81686,47.26486],[7.8175,47.26731],[7.81958,47.26982],[7.82439,47.27158],[7.82805,47.2721],[7.83592,47.27837],[7.83707,47.28342],[7.84005,47.2872],[7.84201,47.29067],[7.84588,47.29427],[7.84763,47.2982],[7.85137,47.30299],[7.8529,47.30741],[7.85571,47.31032],[7.86065,47.31254],[7.86422,47.31349],[7.87018,47.31672],[7.87631,47.31736],[7.88082,47.31716],[7.88337,47.31667],[7.88588,47.31941],[7.88886,47.32131],[7.88805,47.32443],[7.88907,47.3287],[7.8915,47.33262],[7.8978,47.34014],[7.9001,47.34156],[7.90005,47.3432],[7.90222,47.34557],[7.90635,47.34704],[7.90963,47.34735],[7.91359,47.34626],[7.91618,47.34456],[7.91699,47.34303],[7.92401,47.33899],[7.93839,47.33792],[7.94929,47.33784],[7.95431,47.33596],[7.95593,47.33317],[7.95691,47.32968],[7.95571,47.32535],[7.96993,47.32797],[7.97308,47.33017],[7.98333,47.33432],[7.98563,47.33692],[7.98954,47.33818],[7.99248,47.33827],[7.99784,47.34017],[7.99635,47.34257],[7.99601,47.34588],[7.99733,47.34859],[8.00116,47.35081],[8.00137,47.3569],[8.00261,47.3577],[8.00418,47.36044],[8.00976,47.36419],[8.01125,47.36598],[8.01746,47.36926],[8.01912,47.37157],[8.0198,47.37376],[8.02023,47.37598],[8.02172,47.37837],[8.02193,47.38093],[8.02282,47.38286],[8.02078,47.38857],[8.01606,47.38929],[8.01265,47.38897],[8.00772,47.39012],[8.00367,47.39205],[8.00163,47.39479],[8.00155,47.39998],[8.00023,47.40306],[7.99801,47.40453],[7.99261,47.40551],[7.98776,47.40637],[7.98418,47.40839],[7.98027,47.4081],[7.9732,47.41127],[7.96963,47.41383],[7.95695,47.41893],[7.95529,47.4218],[7.95593,47.42402],[7.95746,47.42621],[7.96274,47.42828],[7.97746,47.43254],[7.97567,47.43732],[7.97614,47.44138],[7.97431,47.44368],[7.95129,47.45111],[7.94861,47.4539],[7.94818,47.4566],[7.94678,47.45755],[7.94039,47.45669],[7.93588,47.45738],[7.93631,47.47625],[7.9318,47.47605],[7.92469,47.47717],[7.91571,47.47743],[7.90903,47.47947],[7.90316,47.47967],[7.90295,47.48965],[7.8969,47.4898],[7.8918,47.49405],[7.89086,47.49765],[7.8878,47.49931],[7.88631,47.5023],[7.87999,47.50397],[7.87403,47.50787],[7.86994,47.50944],[7.87006,47.51239],[7.86435,47.51245],[7.85851,47.51543],[7.8558,47.51854],[7.85625,47.52147],[7.8549,47.52474],[7.85183,47.5285],[7.84647,47.52714],[7.84148,47.52777],[7.8413,47.52406],[7.84015,47.51587],[7.83943,47.51259],[7.83688,47.51256],[7.83679,47.51049],[7.83352,47.50949],[7.83156,47.50765],[7.82981,47.50552],[7.82522,47.50354],[7.82049,47.5004],[7.81475,47.49491],[7.81181,47.49261],[7.80645,47.4914],[7.80403,47.49146],[7.80049,47.49014],[7.77977,47.49028],[7.77871,47.49304],[7.7796,47.496],[7.78386,47.5004],[7.78203,47.50368],[7.78088,47.5073],[7.78109,47.51018],[7.77977,47.51265],[7.77969,47.51529],[7.77045,47.51802],[7.75905,47.52003],[7.75266,47.52009],[7.74781,47.51957],[7.73368,47.52291],[7.72781,47.52719],[7.71985,47.52978],[7.71262,47.53095],[7.70764,47.5344],[7.70551,47.53917],[7.70696,47.54279],[7.71415,47.54627],[7.72245,47.54756],[7.749,47.54977],[7.75428,47.55339],[7.76654,47.55615],[7.77168,47.55761],[7.78007,47.55836],[7.78577,47.55982],[7.7902,47.5616],[7.79398,47.56634],[7.80492,47.57237],[7.80611,47.57989],[7.81173,47.58954],[7.81577,47.59218],[7.82211,47.59352],[7.83645,47.59163],[7.83952,47.59045],[7.84305,47.58778],[7.84875,47.58899],[7.85624,47.59189],[7.86488,47.59393],[7.87126,47.5943],[7.87726,47.59367],[7.88535,47.59424],[7.89343,47.59301],[7.90109,47.58976],[7.90833,47.58514],[7.91386,47.57923],[7.91867,47.57194],[7.91956,47.56772],[7.91875,47.56433],[7.9156,47.56008],[7.91577,47.55715],[7.91841,47.55405],[7.92126,47.55261],[7.92552,47.55227],[7.93471,47.55221],[7.9405,47.55078],[7.94326,47.54968],[7.94356,47.55052],[7.94458,47.55589],[7.94841,47.55979],[7.95394,47.56229],[7.96003,47.56333],[7.96577,47.56272],[7.97203,47.5612],[7.97833,47.56057],[7.98624,47.56094],[7.99718,47.56212],[8.0045,47.56137],[8.01114,47.55974],[8.01641,47.55701],[8.02046,47.55574],[8.0262,47.55741],[8.03799,47.55876],[8.04254,47.56028],[8.0485,47.56333],[8.05454,47.56798],[8.05931,47.56921],[8.0622,47.56895],[8.06693,47.57002],[8.07242,47.56973],[8.07739,47.56795],[8.08182,47.56436],[8.08522,47.56281],[8.08791,47.56298],[8.09259,47.56559],[8.09395,47.56809],[8.09484,47.57587],[8.09602,47.57882]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"AGIS OF2014"},"best":false,"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2014","id":"Aargau-AGIS-2014","license_url":"https://wiki.openstreetmap.org/wiki/Switzerland/AGIS","max_zoom":19,"min_zoom":8,"name":"Kanton Aargau 25cm (AGIS 2014)","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2014","type":"tms","url":"https://mapproxy.osm.ch/tiles/AGIS2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"AGIS OF2016"},"best":false,"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2016","id":"Aargau-AGIS-2016","license_url":"https://wiki.openstreetmap.org/wiki/Switzerland/AGIS","max_zoom":19,"min_zoom":8,"name":"Kanton Aargau 25cm (AGIS 2016)","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2016","type":"tms","url":"https://mapproxy.osm.ch/tiles/AGIS2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"AGIS OF2017"},"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2017","id":"Aargau-AGIS-2017","license_url":"https://wiki.openstreetmap.org/wiki/Switzerland/AGIS","max_zoom":19,"min_zoom":8,"name":"Kanton Aargau 25cm (AGIS 2017)","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2017","type":"tms","url":"https://mapproxy.osm.ch/tiles/AGIS2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"AGIS OF2019"},"best":true,"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2019","id":"Aargau-AGIS-2019","license_url":"https://wiki.openstreetmap.org/wiki/Switzerland/AGIS","max_zoom":19,"min_zoom":8,"name":"Kanton Aargau 25cm (AGIS 2019)","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2019","type":"tms","url":"https://mapproxy.osm.ch/tiles/AGIS2019/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"AGIS 2014 50cm DTM/Hillshade"},"best":true,"category":"elevation","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","id":"Aargau-AGIS-2014-Hillshade","license_url":"https://wiki.openstreetmap.org/wiki/Switzerland/AGIS","max_zoom":19,"min_zoom":8,"name":"Kanton Aargau 50cm DTM/Hillshade","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2014","type":"tms","url":"https://mapproxy.osm.ch/tiles/AGIS2014HILLSHADE/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[7.37028,47.41368],[7.35758,47.41508],[7.35792,47.41827],[7.35354,47.41961],[7.34488,47.42402],[7.33973,47.42971],[7.33269,47.43024],[7.32685,47.43192],[7.32528,47.43489],[7.3305,47.44176],[7.33899,47.44109],[7.34496,47.43608],[7.35266,47.43436],[7.3812,47.43208],[7.37599,47.41431],[7.37815,47.414],[7.38204,47.41331],[7.38839,47.41398],[7.41371,47.41093],[7.42074,47.4111],[7.42748,47.41448],[7.43811,47.41274],[7.4484,47.41507],[7.45558,47.42792],[7.45062,47.43534],[7.43784,47.44632],[7.42542,47.44328],[7.4209,47.44594],[7.42242,47.45072],[7.4288,47.45388],[7.43003,47.45949],[7.44577,47.46197],[7.44717,47.45696],[7.45651,47.44926],[7.49236,47.45897],[7.53068,47.46119],[7.52745,47.47391],[7.53633,47.48383],[7.53623,47.49105],[7.5326,47.49097],[7.53179,47.4974],[7.52004,47.49678],[7.51223,47.49892],[7.50935,47.50888],[7.49908,47.51628],[7.49787,47.52125],[7.50228,47.51491],[7.51746,47.51728],[7.5222,47.51409],[7.53096,47.52905],[7.51935,47.53472],[7.51075,47.52899],[7.5023,47.5284],[7.49804,47.53615],[7.50545,47.54438],[7.51676,47.54541],[7.52732,47.55278],[7.55466,47.56437],[7.56458,47.55704],[7.56124,47.55172],[7.55875,47.55235],[7.55588,47.54434],[7.56479,47.54569],[7.58726,47.5419],[7.58269,47.53247],[7.58948,47.52792],[7.59025,47.51979],[7.59478,47.51929],[7.61378,47.53925],[7.6223,47.53977],[7.62285,47.55004],[7.61774,47.55437],[7.61762,47.55865],[7.63273,47.56149],[7.63997,47.55816],[7.649,47.5483],[7.66131,47.54483],[7.66586,47.53746],[7.67467,47.53375],[7.69494,47.5325],[7.71347,47.53978],[7.71596,47.53582],[7.72362,47.53675],[7.72716,47.53293],[7.73322,47.53275],[7.73797,47.52732],[7.74902,47.52498],[7.75786,47.52605],[7.78763,47.52012],[7.79014,47.51864],[7.78887,47.50683],[7.7928,47.50068],[7.78663,47.49312],[7.79889,47.49565],[7.79816,47.4994],[7.7994,47.49748],[7.80742,47.49714],[7.81471,47.5048],[7.83198,47.51474],[7.83321,47.53382],[7.84653,47.53266],[7.85233,47.53524],[7.86257,47.52692],[7.86396,47.51931],[7.87666,47.52269],[7.87567,47.51319],[7.89399,47.50606],[7.90477,47.49218],[7.90482,47.48491],[7.93329,47.48141],[7.94702,47.48489],[7.94003,47.46202],[7.94885,47.46378],[7.95761,47.45881],[7.95785,47.45128],[7.94678,47.44319],[7.95003,47.43172],[7.96183,47.42183],[7.95657,47.41968],[7.95504,47.41561],[7.94839,47.41627],[7.93493,47.41177],[7.93672,47.40806],[7.93266,47.40527],[7.90974,47.39852],[7.89022,47.40714],[7.88333,47.4061],[7.88344,47.4012],[7.8777,47.40126],[7.86914,47.39551],[7.87943,47.38799],[7.87881,47.38351],[7.86265,47.38198],[7.84012,47.37476],[7.83055,47.36512],[7.80217,47.3611],[7.79637,47.35347],[7.79356,47.33905],[7.78529,47.33788],[7.76896,47.33891],[7.76642,47.34273],[7.75152,47.34433],[7.73415,47.35776],[7.72791,47.36886],[7.70195,47.37245],[7.6442,47.36721],[7.64176,47.38047],[7.63558,47.38059],[7.63332,47.38291],[7.63331,47.38534],[7.63725,47.38607],[7.63272,47.41003],[7.66405,47.41002],[7.6798,47.41751],[7.68658,47.43366],[7.68297,47.43872],[7.68485,47.44784],[7.69227,47.45421],[7.69883,47.45586],[7.69993,47.46191],[7.70988,47.46938],[7.69976,47.48063],[7.66833,47.48635],[7.66612,47.49687],[7.65217,47.49581],[7.64865,47.49183],[7.65539,47.49021],[7.65051,47.48826],[7.65593,47.48739],[7.64442,47.48564],[7.64097,47.48273],[7.6073,47.4894],[7.60885,47.48353],[7.60563,47.47936],[7.60815,47.47521],[7.60449,47.47045],[7.61887,47.46745],[7.62607,47.46291],[7.62217,47.46195],[7.61646,47.44523],[7.6158,47.43275],[7.59207,47.43271],[7.58121,47.42878],[7.57842,47.43491],[7.5689,47.4369],[7.5683,47.42233],[7.58074,47.4147],[7.52524,47.41163],[7.53117,47.40353],[7.51862,47.38822],[7.5113,47.38974],[7.50226,47.38481],[7.49233,47.38523],[7.47841,47.39056],[7.47747,47.40128],[7.46448,47.40251],[7.46092,47.40068],[7.45002,47.40393],[7.44951,47.39976],[7.4434,47.40231],[7.44131,47.40018],[7.44357,47.3889],[7.43732,47.38089],[7.41169,47.38057],[7.41628,47.38479],[7.41449,47.3943],[7.39894,47.39684],[7.39592,47.40338],[7.38869,47.40302],[7.38405,47.41236],[7.37968,47.41281],[7.37584,47.41401],[7.37028,47.41368]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geodaten des Kantons Basel-Landschaft 2015","url":"https://www.geo.bl.ch/fileadmin/user_upload/Geodaten/Nutzungsbedingungen_GBD_BL_V3p2.pdf"},"best":true,"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2015","id":"Basel-Landschaft-2015","max_zoom":21,"min_zoom":18,"name":"Kanton Basel-Landschaft 10cm (2015)","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2015","type":"tms","url":"https://mapproxy.osm.ch/tiles/KTBASELLANDSCHAFT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[7.492,47.4817],[7.492,47.6342],[7.784,47.6342],[7.784,47.4817],[7.492,47.4817]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Basel-Stadt OF 2015"},"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2015","id":"KTBASELSTADT2015","max_zoom":21,"min_zoom":8,"name":"Kanton Basel-Stadt 2015","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2015","type":"tms","url":"https://mapproxy.osm.ch/tiles/KTBASELSTADT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[8.38726,47.10908],[8.38983,47.25303],[8.42944,47.25265],[8.42894,47.22567],[8.60057,47.22407],[8.60037,47.21507],[8.61357,47.21495],[8.61338,47.20594],[8.62658,47.20582],[8.62618,47.18783],[8.63934,47.18769],[8.63914,47.1787],[8.66555,47.17844],[8.66534,47.16943],[8.7049,47.16899],[8.70427,47.14203],[8.69105,47.14215],[8.69046,47.11516],[8.67731,47.1153],[8.67706,47.10634],[8.66389,47.10647],[8.66371,47.0975],[8.65052,47.09761],[8.65031,47.08863],[8.59764,47.08915],[8.59746,47.08015],[8.49204,47.0812],[8.49245,47.09917],[8.43969,47.09967],[8.43996,47.10863],[8.38726,47.10908]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"GIS Kanton Zug"},"available_projections":["EPSG:3857","EPSG:4326","CRS:84","EPSG:21781","EPSG:2056"],"best":true,"category":"photo","country_code":"CH","description":"Ausdehnung: ganzer Kanton Aufloesung: 10cm per Pixel Bildflug: 1.4.2011","end_date":"2011","id":"Zug-2011","license_url":"https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms","min_zoom":10,"name":"Kanton Zug 2011","privacy_policy_url":"https://www.zg.ch/datenschutzerklaerung","start_date":"2011","type":"wms","url":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2011_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.41093,47.16521],[8.40759,47.16918],[8.40754,47.23725],[8.419,47.23722],[8.42336,47.22958],[8.43891,47.22945],[8.48056,47.2125],[8.5294,47.22688],[8.57951,47.22275],[8.57946,47.17083],[8.57535,47.14926],[8.56428,47.14944],[8.53594,47.15205],[8.50658,47.15268],[8.50686,47.162],[8.44723,47.16256],[8.41093,47.16521]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"GIS Kanton Zug"},"available_projections":["EPSG:21781","EPSG:2056","CRS:84","EPSG:3857","EPSG:4326"],"best":true,"category":"photo","country_code":"CH","description":"Orthofoto fuer den Nordteil des Kantons Zug. Geflogen am 20.04.2016. 10cm Aufloesung per Pixel. Abdeckung: Gemeinden Cham, Steinhausen und Baar, sowie Teile von Zug Befliegung vor Laubaustrieb, ohne Schneeabdeckung.","end_date":"2016","id":"Zug-2016","license_url":"https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms","min_zoom":10,"name":"Kanton Zug Nord 2016","privacy_policy_url":"https://www.zg.ch/datenschutzerklaerung","start_date":"2016","type":"wms","url":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2016_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.50052,47.11291],[8.49638,47.11761],[8.49451,47.12364],[8.49538,47.12653],[8.50462,47.13724],[8.50322,47.13933],[8.50466,47.14722],[8.51099,47.15916],[8.56415,47.15299],[8.5652,47.14929],[8.54924,47.13843],[8.55098,47.12132],[8.50052,47.11291]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"GIS Kanton Zug"},"available_projections":["EPSG:21781","EPSG:3857","EPSG:4326","EPSG:2056","CRS:84"],"best":true,"category":"photo","country_code":"CH","description":"Orthofoto fuer den Suedteil der Gemeinde Zug. Geflogen per Drohne an mehreren Tagen Anfangs April 2018. 10cm Aufloesung per Pixel. Abdeckung: Suedteil der Gemeinde Zug Befliegung vor Laubaustrieb, ohne Schneeabdeckung.","end_date":"2018","id":"Zug-2018","license_url":"https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms","name":"Kanton Zug Gemeinde Zug Süd 2018","privacy_policy_url":"https://www.zg.ch/datenschutzerklaerung","start_date":"2018","type":"wms","url":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2018_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.49387,47.11529],[8.5121,47.13373],[8.55582,47.129],[8.58655,47.07954],[8.57399,47.07633],[8.51862,47.08507],[8.51862,47.08507],[8.51839,47.08532],[8.49387,47.11529]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"GIS Kanton Zug"},"available_projections":["EPSG:3857","CRS:84","EPSG:4326","EPSG:21781","EPSG:2056"],"best":true,"category":"photo","country_code":"CH","description":"Orthofoto für das Gebiet von Walchwil und Zug (Alpli). Die Befliegung für das genannte Orthofoto fand am 29. März 2019 statt.","end_date":"2019","id":"Zug-2019-wms","license_url":"https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms","min_zoom":10,"name":"Kanton Zug (Walchwil und Zug (Alpli)) 2019","privacy_policy_url":"https://www.zg.ch/datenschutzerklaerung","start_date":"2019","type":"wms","url":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2019_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[6.82526,47.07901],[7.28497,46.74221],[7.06335,46.27329],[8.20129,46.43975],[8.44334,46.59001],[8.47595,46.76315],[8.41244,46.79841],[8.13984,46.7869],[7.96543,46.80687],[7.90089,46.8914],[7.97676,47.00414],[7.88784,47.05609],[7.90363,47.17665],[7.81952,47.29413],[7.55859,47.33231],[7.16583,47.31183],[6.82388,47.18131],[6.82526,47.07901]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Digitales Oberflächenmodell LIDAR 50cm © Amt für Wald des Kantons Bern"},"available_projections":["EPSG:21781","EPSG:3857","EPSG:2056","EPSG:4326","EPSG:102100","CRS:84"],"category":"elevation","country_code":"CH","end_date":"2015","id":"Bern-dsm-hillshade-2015","license_url":"http://files.be.ch/bve/agi/geoportal/geo/nutzungsbedingungen/agi_dv_nutzungsbedingungen.pdf","min_zoom":8,"name":"Kanton Bern, Digitales Oberflaechenmodell 50cm, Relief","privacy_policy_url":"http://www.geo.apps.be.ch/de/rechtliches.html","start_date":"2015","type":"wms","url":"https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WMSServer?LAYERS=GEODB.LDOM50CM_LORELIEF_STANDARD&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[6.82526,47.07901],[7.28497,46.74221],[7.06335,46.27329],[8.20129,46.43975],[8.44334,46.59001],[8.47595,46.76315],[8.41244,46.79841],[8.13984,46.7869],[7.96543,46.80687],[7.90089,46.8914],[7.97676,47.00414],[7.88784,47.05609],[7.90363,47.17665],[7.81952,47.29413],[7.55859,47.33231],[7.16583,47.31183],[6.82388,47.18131],[6.82526,47.07901]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Digitales Terrainmodell LIDAR 50cm © Amt für Wald des Kantons Bern"},"available_projections":["EPSG:21781","EPSG:3857","EPSG:2056","EPSG:4326","EPSG:102100","CRS:84"],"category":"elevation","country_code":"CH","end_date":"2015","id":"Bern-dtm-hillshade-2015","license_url":"http://files.be.ch/bve/agi/geoportal/geo/nutzungsbedingungen/agi_dv_nutzungsbedingungen.pdf","min_zoom":8,"name":"Kanton Bern, Digitales Terrainmodell 50cm, Relief","privacy_policy_url":"http://www.geo.apps.be.ch/de/rechtliches.html","start_date":"2015","type":"wms","url":"https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WMSServer?LAYERS=GEODB.LDTM50CM_LTRELIEF_STANDARD&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.6,47.56],[8.6,47.52],[8.52,47.52],[8.52,47.6],[8.44,47.6],[8.44,47.64],[8.36,47.64],[8.36,47.72],[8.4,47.72],[8.4,47.76],[8.44,47.76],[8.44,47.8],[8.52,47.8],[8.52,47.84],[8.68,47.84],[8.68,47.8],[8.76,47.8],[8.76,47.76],[8.88,47.76],[8.88,47.72],[8.92,47.72],[8.92,47.64],[8.76,47.64],[8.76,47.68],[8.68,47.68],[8.68,47.64],[8.64,47.64],[8.64,47.56],[8.6,47.56]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Schaffhausen, Relief 2013"},"available_projections":["EPSG:4326","EPSG:2056","EPSG:21781"],"best":false,"category":"elevation","country_code":"CH","default":false,"end_date":"2013","i18n":false,"id":"Kanton-Schaffhausen-DSM-2013","license_url":"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Volkswirtschaftsdepartement/Amt-f-r-Geoinformation-252309-DE.html","min_zoom":10,"name":"Kanton Schaffhausen, Relief 2013","privacy_policy_url":"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Regierung/Staatskanzlei/Impressum/Datenschutz-1711122-DE.html","start_date":"2013","type":"wms","url":"https://wms.geo.sh.ch/raster?LAYERS=Relief_2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.6,47.56],[8.6,47.52],[8.52,47.52],[8.52,47.6],[8.44,47.6],[8.44,47.64],[8.36,47.64],[8.36,47.72],[8.4,47.72],[8.4,47.76],[8.44,47.76],[8.44,47.8],[8.52,47.8],[8.52,47.84],[8.68,47.84],[8.68,47.8],[8.76,47.8],[8.76,47.76],[8.88,47.76],[8.88,47.72],[8.92,47.72],[8.92,47.64],[8.76,47.64],[8.76,47.68],[8.68,47.68],[8.68,47.64],[8.64,47.64],[8.64,47.56],[8.6,47.56]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Schaffhausen, Luftbild 2013"},"available_projections":["EPSG:4326","EPSG:2056","EPSG:21781"],"best":true,"category":"photo","country_code":"CH","default":false,"end_date":"2013","i18n":false,"id":"Kanton-Schaffhausen-Luftbild-2013","license_url":"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Volkswirtschaftsdepartement/Amt-f-r-Geoinformation-252309-DE.html","min_zoom":10,"name":"Kanton Schaffhausen, Luftbild 2013","privacy_policy_url":"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Regierung/Staatskanzlei/Impressum/Datenschutz-1711122-DE.html","start_date":"2013","type":"wms","url":"https://wms.geo.sh.ch/raster?LAYERS=Luftbild_2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.48,47.1],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.52,47.34],[7.52,47.36],[7.42,47.36],[7.42,47.4],[7.36,47.4],[7.36,47.44],[7.38,47.44],[7.38,47.46],[7.4,47.46],[7.4,47.5],[7.42,47.5],[7.42,47.52],[7.46,47.52],[7.46,47.5],[7.5,47.5],[7.5,47.52],[7.54,47.52],[7.54,47.5],[7.56,47.5],[7.56,47.48],[7.54,47.48],[7.54,47.44],[7.48,47.44],[7.48,47.42],[7.5,47.42],[7.5,47.4],[7.52,47.4],[7.52,47.42],[7.56,47.42],[7.56,47.46],[7.58,47.46],[7.58,47.44],[7.6,47.44],[7.6,47.5],[7.64,47.5],[7.64,47.52],[7.68,47.52],[7.68,47.5],[7.72,47.5],[7.72,47.44],[7.7,47.44],[7.7,47.4],[7.66,47.4],[7.66,47.38],[7.74,47.38],[7.74,47.36],[7.78,47.36],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8.0,47.46],[8.0,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"DOM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"},"available_projections":["EPSG:4326","EPSG:2056","EPSG:3857","EPSG:21781","CRS:84"],"category":"elevation","country_code":"CH","end_date":"2014","id":"Solothurn-sogis2014-dom-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, DOM Relief 2014 50cm","privacy_policy_url":"https://www.so.ch/rechtliches/","start_date":"2014","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dom_relief&FORMAT=image/jpeg&CRS={proj}&STYLES=&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.6909,47.56247],[7.69077,47.54008],[7.67786,47.54008],[7.67788,47.54458],[7.67138,47.5446],[7.67142,47.54897],[7.66481,47.54906],[7.66477,47.55349],[7.65816,47.55364],[7.65824,47.55801],[7.65146,47.5581],[7.65146,47.56258],[7.64503,47.56264],[7.64498,47.56707],[7.61121,47.56716],[7.61112,47.5627],[7.6046,47.56264],[7.60464,47.549],[7.61099,47.54886],[7.61117,47.54468],[7.60456,47.54468],[7.60447,47.54019],[7.59833,47.54017],[7.59846,47.54917],[7.57859,47.54915],[7.57855,47.55366],[7.57181,47.55369],[7.57185,47.56719],[7.56516,47.56719],[7.5652,47.57173],[7.54487,47.57173],[7.54478,47.56728],[7.53808,47.56725],[7.53812,47.56276],[7.52487,47.56274],[7.52491,47.55827],[7.5182,47.55825],[7.51812,47.55385],[7.49821,47.55381],[7.49817,47.54933],[7.49154,47.54935],[7.49158,47.54054],[7.48489,47.54054],[7.48487,47.53123],[7.49169,47.53123],[7.49171,47.52692],[7.48497,47.52692],[7.48495,47.51771],[7.4915,47.51769],[7.4915,47.50868],[7.49808,47.50865],[7.4981,47.49083],[7.49154,47.49085],[7.49154,47.48635],[7.4848,47.48635],[7.4848,47.48189],[7.47178,47.48192],[7.47173,47.48638],[7.46523,47.48641],[7.46523,47.49089],[7.45225,47.49096],[7.45216,47.49528],[7.4456,47.49546],[7.44551,47.49995],[7.42519,47.50003],[7.42511,47.49109],[7.41845,47.49098],[7.41843,47.47707],[7.43822,47.4771],[7.43834,47.47263],[7.44491,47.47263],[7.44495,47.46849],[7.42521,47.46849],[7.42521,47.46396],[7.4186,47.46399],[7.41848,47.45496],[7.41204,47.45491],[7.41187,47.44594],[7.40517,47.446],[7.40513,47.44144],[7.39873,47.44147],[7.39856,47.43697],[7.38586,47.43688],[7.38577,47.44135],[7.35256,47.44144],[7.35256,47.44588],[7.33943,47.44594],[7.33943,47.4505],[7.32582,47.45041],[7.32569,47.44585],[7.31921,47.44585],[7.31908,47.44144],[7.31243,47.44135],[7.31243,47.43212],[7.31904,47.43209],[7.31904,47.42318],[7.3323,47.42309],[7.3323,47.41859],[7.33887,47.41856],[7.33895,47.41415],[7.34556,47.41409],[7.34569,47.40959],[7.35882,47.40962],[7.35891,47.40518],[7.37856,47.40512],[7.37856,47.39617],[7.392,47.39611],[7.392,47.39167],[7.39856,47.39161],[7.39865,47.38713],[7.40517,47.38713],[7.40517,47.38298],[7.39865,47.3831],[7.39861,47.37819],[7.40513,47.37813],[7.40517,47.37371],[7.45143,47.37371],[7.45156,47.36906],[7.5177,47.36918],[7.5177,47.36022],[7.531,47.36016],[7.531,47.34673],[7.54422,47.34662],[7.54417,47.3422],[7.55078,47.34214],[7.55078,47.33775],[7.55761,47.33776],[7.55763,47.33327],[7.56423,47.33325],[7.56422,47.32874],[7.5774,47.32872],[7.57744,47.32421],[7.59086,47.32418],[7.59088,47.32871],[7.61739,47.32858],[7.61743,47.33312],[7.68961,47.33295],[7.68961,47.3285],[7.69627,47.32835],[7.69644,47.32393],[7.7165,47.3238],[7.71661,47.32835],[7.72322,47.32838],[7.72326,47.33289],[7.72978,47.33283],[7.72991,47.33734],[7.75596,47.33725],[7.756,47.33272],[7.80289,47.33258],[7.8031,47.35061],[7.80971,47.3507],[7.80971,47.35503],[7.82945,47.35492],[7.82958,47.3596],[7.84276,47.35945],[7.8428,47.36838],[7.85602,47.36835],[7.85619,47.37285],[7.87606,47.37282],[7.87606,47.37727],[7.88932,47.37727],[7.88954,47.39517],[7.9022,47.39523],[7.9022,47.39067],[7.91584,47.39061],[7.91597,47.39511],[7.93571,47.39502],[7.93584,47.39955],[7.94254,47.39964],[7.94262,47.40397],[7.94923,47.40406],[7.94919,47.4085],[7.96241,47.4085],[7.96245,47.41294],[7.96897,47.41294],[7.96906,47.42183],[7.98906,47.42174],[7.98931,47.44909],[7.9827,47.44915],[7.98275,47.45808],[7.97627,47.45811],[7.97618,47.46264],[7.96962,47.46273],[7.96949,47.46717],[7.9564,47.46737],[7.95644,47.48967],[7.94996,47.48973],[7.94987,47.49417],[7.94292,47.4942],[7.94292,47.48979],[7.91683,47.48993],[7.91674,47.49884],[7.91022,47.49895],[7.91026,47.50791],[7.90374,47.50797],[7.9037,47.5124],[7.89048,47.51237],[7.89044,47.51701],[7.88374,47.51707],[7.88378,47.5304],[7.87055,47.53047],[7.87052,47.53491],[7.86393,47.53496],[7.86391,47.53943],[7.85734,47.53948],[7.85737,47.54405],[7.84396,47.54406],[7.84379,47.53963],[7.82381,47.5396],[7.8237,47.51716],[7.81669,47.51726],[7.81658,47.51275],[7.80358,47.51277],[7.80349,47.50826],[7.79718,47.50829],[7.79729,47.52626],[7.78399,47.52632],[7.78403,47.53082],[7.76416,47.53089],[7.76427,47.55335],[7.751,47.55339],[7.75103,47.55786],[7.70448,47.55796],[7.70448,47.56244],[7.6909,47.56247]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Kanton Solothurn, DSM Relief 2018, WMS Solothurn (SOGIS)"},"available_projections":["EPSG:21781","CRS:84","EPSG:3857","EPSG:4326","EPSG:2056"],"category":"elevation","country_code":"CH","end_date":"2018","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png","id":"Solothurn-sogis2018-dsm-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, DSM Relief 2018","privacy_policy_url":"https://www.so.ch/rechtliches/","start_date":"2018","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.bl.agi.lidar_2018.dsm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.96884,47.4311],[7.96882,47.42646],[7.98205,47.42644],[7.98204,47.42202],[7.99533,47.42199],[7.99531,47.41748],[8.00832,47.41746],[8.0083,47.41292],[8.01506,47.41291],[8.01504,47.40836],[8.02168,47.40835],[8.02166,47.40377],[8.03466,47.40375],[8.03462,47.39481],[8.0411,47.3948],[8.041,47.36778],[8.03449,47.36779],[8.03445,47.35883],[8.02772,47.35884],[8.02771,47.35434],[8.021,47.35435],[8.02095,47.34092],[8.01415,47.34093],[8.01412,47.33199],[8.00755,47.332],[8.00754,47.32743],[7.99438,47.32746],[7.99436,47.32308],[7.98747,47.3231],[7.98745,47.31858],[7.98086,47.31859],[7.98084,47.31424],[7.95446,47.31428],[7.95444,47.30972],[7.94125,47.30975],[7.94126,47.31419],[7.9347,47.3142],[7.93475,47.32781],[7.90823,47.32786],[7.90818,47.31445],[7.90154,47.31446],[7.9015,47.30548],[7.87494,47.30553],[7.87493,47.30106],[7.86842,47.30107],[7.86839,47.29218],[7.8617,47.29219],[7.86166,47.28304],[7.85501,47.28305],[7.85496,47.26965],[7.84831,47.26966],[7.8483,47.26521],[7.84167,47.26522],[7.84165,47.26077],[7.82842,47.26079],[7.8284,47.25628],[7.79535,47.25634],[7.79533,47.2519],[7.78854,47.25191],[7.78852,47.24743],[7.78209,47.24744],[7.78211,47.25192],[7.72279,47.25202],[7.7228,47.2566],[7.71619,47.25661],[7.71623,47.26558],[7.70303,47.26561],[7.70306,47.27463],[7.69643,47.27465],[7.69645,47.27905],[7.68982,47.27906],[7.68984,47.28368],[7.67636,47.2837],[7.67634,47.27905],[7.65688,47.27908],[7.65686,47.2747],[7.60392,47.27479],[7.60387,47.26134],[7.61049,47.26133],[7.61044,47.24784],[7.61702,47.24782],[7.617,47.24319],[7.62354,47.24318],[7.62351,47.23435],[7.64994,47.23431],[7.64992,47.22978],[7.64992,47.22981],[7.65658,47.2298],[7.65652,47.2118],[7.66306,47.21178],[7.66304,47.20728],[7.66959,47.20727],[7.66958,47.20272],[7.67622,47.20271],[7.6762,47.19821],[7.68278,47.1982],[7.68275,47.1892],[7.68933,47.18919],[7.68927,47.17123],[7.70242,47.17121],[7.70241,47.16664],[7.70885,47.16663],[7.7088,47.15309],[7.70236,47.1531],[7.70234,47.14872],[7.69576,47.14873],[7.69574,47.14423],[7.68239,47.14425],[7.68241,47.14875],[7.66276,47.14879],[7.66274,47.14415],[7.59682,47.14426],[7.59681,47.13996],[7.5769,47.13999],[7.57693,47.14904],[7.57042,47.14905],[7.57045,47.15793],[7.55736,47.15795],[7.55734,47.15346],[7.53764,47.1535],[7.53759,47.13991],[7.53099,47.13993],[7.53097,47.1355],[7.52431,47.13551],[7.52426,47.12195],[7.51768,47.12197],[7.51766,47.11748],[7.50465,47.11751],[7.50463,47.11297],[7.49809,47.11298],[7.49807,47.10842],[7.48487,47.10844],[7.48486,47.10402],[7.47822,47.10403],[7.47818,47.09491],[7.4847,47.0949],[7.48465,47.08143],[7.47814,47.08144],[7.47811,47.07246],[7.46496,47.07248],[7.46494,47.06801],[7.43186,47.06807],[7.43187,47.07237],[7.42546,47.07238],[7.42553,47.09039],[7.4124,47.09041],[7.41239,47.08598],[7.37955,47.08603],[7.37956,47.09022],[7.37282,47.09023],[7.37286,47.09945],[7.36617,47.09946],[7.3662,47.10834],[7.35955,47.10835],[7.35961,47.12663],[7.36606,47.12662],[7.36608,47.13104],[7.39904,47.13098],[7.39902,47.12657],[7.41894,47.12654],[7.41896,47.1307],[7.41223,47.13072],[7.41228,47.14473],[7.41885,47.14472],[7.41887,47.14902],[7.43181,47.14899],[7.43184,47.15807],[7.43859,47.15805],[7.43861,47.16233],[7.46496,47.16228],[7.46494,47.15801],[7.47164,47.158],[7.47165,47.16227],[7.478,47.16226],[7.47801,47.16695],[7.47148,47.16696],[7.4715,47.17148],[7.46487,47.17149],[7.46489,47.17589],[7.45184,47.17591],[7.45183,47.17151],[7.43871,47.17153],[7.43869,47.16701],[7.42551,47.16703],[7.42547,47.15795],[7.41887,47.15796],[7.41885,47.15342],[7.37264,47.15349],[7.37274,47.18038],[7.3659,47.1804],[7.36592,47.18494],[7.34629,47.18498],[7.34632,47.19374],[7.33955,47.19375],[7.33958,47.20289],[7.33304,47.2029],[7.33312,47.22548],[7.35273,47.22544],[7.35275,47.22993],[7.36595,47.2299],[7.36597,47.23453],[7.37912,47.23451],[7.37913,47.23895],[7.39234,47.23892],[7.39236,47.24347],[7.4056,47.24345],[7.40565,47.25694],[7.41228,47.25693],[7.4123,47.2614],[7.42542,47.26138],[7.42543,47.26592],[7.43187,47.26591],[7.43189,47.27042],[7.4583,47.27038],[7.45832,47.27492],[7.46506,47.27491],[7.4651,47.28387],[7.47169,47.28385],[7.47171,47.28847],[7.47832,47.28846],[7.47834,47.29293],[7.49152,47.29291],[7.49154,47.29737],[7.51134,47.29734],[7.51135,47.30184],[7.53122,47.3018],[7.53125,47.31073],[7.53782,47.31072],[7.53787,47.32429],[7.55104,47.32427],[7.55106,47.32882],[7.56434,47.3288],[7.56437,47.33783],[7.57086,47.33782],[7.57087,47.3423],[7.57765,47.34229],[7.57764,47.33783],[7.59081,47.33781],[7.59083,47.34227],[7.59743,47.34226],[7.59741,47.33781],[7.60407,47.3378],[7.60409,47.34225],[7.69661,47.3421],[7.6966,47.33761],[7.70993,47.33759],[7.70995,47.34208],[7.72322,47.34206],[7.72324,47.34657],[7.73643,47.34655],[7.73645,47.35093],[7.77622,47.35087],[7.77621,47.34642],[7.78269,47.34641],[7.78272,47.35523],[7.78936,47.35522],[7.7894,47.36427],[7.79613,47.36426],[7.79615,47.36877],[7.82248,47.36873],[7.82249,47.37319],[7.82926,47.37318],[7.82929,47.38217],[7.84261,47.38215],[7.84262,47.38661],[7.86243,47.38658],[7.8625,47.40454],[7.86917,47.40453],[7.86919,47.40901],[7.87587,47.409],[7.87589,47.41351],[7.90231,47.41347],[7.90229,47.4089],[7.92225,47.40887],[7.92228,47.4177],[7.93556,47.41768],[7.93558,47.42211],[7.94882,47.42209],[7.94884,47.42664],[7.95552,47.42663],[7.95553,47.43112],[7.96884,47.4311]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Solothurn, DSM Relief 2019, WMS Solothurn (SOGIS)"},"available_projections":["CRS:84","EPSG:3857","EPSG:2056","EPSG:4326","EPSG:21781"],"category":"elevation","country_code":"CH","end_date":"2019","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png","id":"Solothurn-sogis2019-dsm-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, DSM Relief 2019","privacy_policy_url":"https://www.asitvd.ch/tarifs-conditions.html","start_date":"2019","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2019.dsm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.48,47.1],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.52,47.34],[7.52,47.36],[7.42,47.36],[7.42,47.4],[7.36,47.4],[7.36,47.44],[7.38,47.44],[7.38,47.46],[7.4,47.46],[7.4,47.5],[7.42,47.5],[7.42,47.52],[7.46,47.52],[7.46,47.5],[7.5,47.5],[7.5,47.52],[7.54,47.52],[7.54,47.5],[7.56,47.5],[7.56,47.48],[7.54,47.48],[7.54,47.44],[7.48,47.44],[7.48,47.42],[7.5,47.42],[7.5,47.4],[7.52,47.4],[7.52,47.42],[7.56,47.42],[7.56,47.46],[7.58,47.46],[7.58,47.44],[7.6,47.44],[7.6,47.5],[7.64,47.5],[7.64,47.52],[7.68,47.52],[7.68,47.5],[7.72,47.5],[7.72,47.44],[7.7,47.44],[7.7,47.4],[7.66,47.4],[7.66,47.38],[7.74,47.38],[7.74,47.36],[7.78,47.36],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8.0,47.46],[8.0,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"DTM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"},"available_projections":["EPSG:4326","EPSG:2056","EPSG:3857","EPSG:21781","CRS:84"],"category":"elevation","country_code":"CH","end_date":"2014","id":"Solothurn-sogis2014-dtm-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, DTM Relief 2014 50cm","privacy_policy_url":"https://www.so.ch/rechtliches/","start_date":"2014","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dtm_relief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.6909,47.56247],[7.69077,47.54008],[7.67786,47.54008],[7.67788,47.54458],[7.67138,47.5446],[7.67142,47.54897],[7.66481,47.54906],[7.66477,47.55349],[7.65816,47.55364],[7.65824,47.55801],[7.65146,47.5581],[7.65146,47.56258],[7.64503,47.56264],[7.64498,47.56707],[7.61121,47.56716],[7.61112,47.5627],[7.6046,47.56264],[7.60464,47.549],[7.61099,47.54886],[7.61117,47.54468],[7.60456,47.54468],[7.60447,47.54019],[7.59833,47.54017],[7.59846,47.54917],[7.57859,47.54915],[7.57855,47.55366],[7.57181,47.55369],[7.57185,47.56719],[7.56516,47.56719],[7.5652,47.57173],[7.54487,47.57173],[7.54478,47.56728],[7.53808,47.56725],[7.53812,47.56276],[7.52487,47.56274],[7.52491,47.55827],[7.5182,47.55825],[7.51812,47.55385],[7.49821,47.55381],[7.49817,47.54933],[7.49154,47.54935],[7.49158,47.54054],[7.48489,47.54054],[7.48487,47.53123],[7.49169,47.53123],[7.49171,47.52692],[7.48497,47.52692],[7.48495,47.51771],[7.4915,47.51769],[7.4915,47.50868],[7.49808,47.50865],[7.4981,47.49083],[7.49154,47.49085],[7.49154,47.48635],[7.4848,47.48635],[7.4848,47.48189],[7.47178,47.48192],[7.47173,47.48638],[7.46523,47.48641],[7.46523,47.49089],[7.45225,47.49096],[7.45216,47.49528],[7.4456,47.49546],[7.44551,47.49995],[7.42519,47.50003],[7.42511,47.49109],[7.41845,47.49098],[7.41843,47.47707],[7.43822,47.4771],[7.43834,47.47263],[7.44491,47.47263],[7.44495,47.46849],[7.42521,47.46849],[7.42521,47.46396],[7.4186,47.46399],[7.41848,47.45496],[7.41204,47.45491],[7.41187,47.44594],[7.40517,47.446],[7.40513,47.44144],[7.39873,47.44147],[7.39856,47.43697],[7.38586,47.43688],[7.38577,47.44135],[7.35256,47.44144],[7.35256,47.44588],[7.33943,47.44594],[7.33943,47.4505],[7.32582,47.45041],[7.32569,47.44585],[7.31921,47.44585],[7.31908,47.44144],[7.31243,47.44135],[7.31243,47.43212],[7.31904,47.43209],[7.31904,47.42318],[7.3323,47.42309],[7.3323,47.41859],[7.33887,47.41856],[7.33895,47.41415],[7.34556,47.41409],[7.34569,47.40959],[7.35882,47.40962],[7.35891,47.40518],[7.37856,47.40512],[7.37856,47.39617],[7.392,47.39611],[7.392,47.39167],[7.39856,47.39161],[7.39865,47.38713],[7.40517,47.38713],[7.40517,47.38298],[7.39865,47.3831],[7.39861,47.37819],[7.40513,47.37813],[7.40517,47.37371],[7.45143,47.37371],[7.45156,47.36906],[7.5177,47.36918],[7.5177,47.36022],[7.531,47.36016],[7.531,47.34673],[7.54422,47.34662],[7.54417,47.3422],[7.55078,47.34214],[7.55078,47.33775],[7.55761,47.33776],[7.55763,47.33327],[7.56423,47.33325],[7.56422,47.32874],[7.5774,47.32872],[7.57744,47.32421],[7.59086,47.32418],[7.59088,47.32871],[7.61739,47.32858],[7.61743,47.33312],[7.68961,47.33295],[7.68961,47.3285],[7.69627,47.32835],[7.69644,47.32393],[7.7165,47.3238],[7.71661,47.32835],[7.72322,47.32838],[7.72326,47.33289],[7.72978,47.33283],[7.72991,47.33734],[7.75596,47.33725],[7.756,47.33272],[7.80289,47.33258],[7.8031,47.35061],[7.80971,47.3507],[7.80971,47.35503],[7.82945,47.35492],[7.82958,47.3596],[7.84276,47.35945],[7.8428,47.36838],[7.85602,47.36835],[7.85619,47.37285],[7.87606,47.37282],[7.87606,47.37727],[7.88932,47.37727],[7.88954,47.39517],[7.9022,47.39523],[7.9022,47.39067],[7.91584,47.39061],[7.91597,47.39511],[7.93571,47.39502],[7.93584,47.39955],[7.94254,47.39964],[7.94262,47.40397],[7.94923,47.40406],[7.94919,47.4085],[7.96241,47.4085],[7.96245,47.41294],[7.96897,47.41294],[7.96906,47.42183],[7.98906,47.42174],[7.98931,47.44909],[7.9827,47.44915],[7.98275,47.45808],[7.97627,47.45811],[7.97618,47.46264],[7.96962,47.46273],[7.96949,47.46717],[7.9564,47.46737],[7.95644,47.48967],[7.94996,47.48973],[7.94987,47.49417],[7.94292,47.4942],[7.94292,47.48979],[7.91683,47.48993],[7.91674,47.49884],[7.91022,47.49895],[7.91026,47.50791],[7.90374,47.50797],[7.9037,47.5124],[7.89048,47.51237],[7.89044,47.51701],[7.88374,47.51707],[7.88378,47.5304],[7.87055,47.53047],[7.87052,47.53491],[7.86393,47.53496],[7.86391,47.53943],[7.85734,47.53948],[7.85737,47.54405],[7.84396,47.54406],[7.84379,47.53963],[7.82381,47.5396],[7.8237,47.51716],[7.81669,47.51726],[7.81658,47.51275],[7.80358,47.51277],[7.80349,47.50826],[7.79718,47.50829],[7.79729,47.52626],[7.78399,47.52632],[7.78403,47.53082],[7.76416,47.53089],[7.76427,47.55335],[7.751,47.55339],[7.75103,47.55786],[7.70448,47.55796],[7.70448,47.56244],[7.6909,47.56247]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Kanton Solothurn, DTM Relief 2018, WMS Solothurn (SOGIS)"},"available_projections":["EPSG:21781","EPSG:4326","EPSG:2056","EPSG:3857","EPSG:84"],"best":true,"country_code":"CH","end_date":"2018","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png","id":"Solothurn-sogis2018-dtm-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":8,"name":"Kanton Solothurn, DTM Relief 2018","privacy_policy_url":"https://www.so.ch/rechtliches/","start_date":"2018","type":"wms","url":"https://geo.so.ch/api/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/jpeg&TRANSPARENT=true&LAYERS=ch.bl.agi.lidar_2018.dtm_relief&STYLES=&SRS={proj}&CRS={proj}&TILED=false&DPI=96&OPACITIES=255&t=675&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[7.96884,47.4311],[7.96882,47.42646],[7.98205,47.42644],[7.98204,47.42202],[7.99533,47.42199],[7.99531,47.41748],[8.00832,47.41746],[8.0083,47.41292],[8.01506,47.41291],[8.01504,47.40836],[8.02168,47.40835],[8.02166,47.40377],[8.03466,47.40375],[8.03462,47.39481],[8.0411,47.3948],[8.041,47.36778],[8.03449,47.36779],[8.03445,47.35883],[8.02772,47.35884],[8.02771,47.35434],[8.021,47.35435],[8.02095,47.34092],[8.01415,47.34093],[8.01412,47.33199],[8.00755,47.332],[8.00754,47.32743],[7.99438,47.32746],[7.99436,47.32308],[7.98747,47.3231],[7.98745,47.31858],[7.98086,47.31859],[7.98084,47.31424],[7.95446,47.31428],[7.95444,47.30972],[7.94125,47.30975],[7.94126,47.31419],[7.9347,47.3142],[7.93475,47.32781],[7.90823,47.32786],[7.90818,47.31445],[7.90154,47.31446],[7.9015,47.30548],[7.87494,47.30553],[7.87493,47.30106],[7.86842,47.30107],[7.86839,47.29218],[7.8617,47.29219],[7.86166,47.28304],[7.85501,47.28305],[7.85496,47.26965],[7.84831,47.26966],[7.8483,47.26521],[7.84167,47.26522],[7.84165,47.26077],[7.82842,47.26079],[7.8284,47.25628],[7.79535,47.25634],[7.79533,47.2519],[7.78854,47.25191],[7.78852,47.24743],[7.78209,47.24744],[7.78211,47.25192],[7.72279,47.25202],[7.7228,47.2566],[7.71619,47.25661],[7.71623,47.26558],[7.70303,47.26561],[7.70306,47.27463],[7.69643,47.27465],[7.69645,47.27905],[7.68982,47.27906],[7.68984,47.28368],[7.67636,47.2837],[7.67634,47.27905],[7.65688,47.27908],[7.65686,47.2747],[7.60392,47.27479],[7.60387,47.26134],[7.61049,47.26133],[7.61044,47.24784],[7.61702,47.24782],[7.617,47.24319],[7.62354,47.24318],[7.62351,47.23435],[7.64994,47.23431],[7.64992,47.22978],[7.64992,47.22981],[7.65658,47.2298],[7.65652,47.2118],[7.66306,47.21178],[7.66304,47.20728],[7.66959,47.20727],[7.66958,47.20272],[7.67622,47.20271],[7.6762,47.19821],[7.68278,47.1982],[7.68275,47.1892],[7.68933,47.18919],[7.68927,47.17123],[7.70242,47.17121],[7.70241,47.16664],[7.70885,47.16663],[7.7088,47.15309],[7.70236,47.1531],[7.70234,47.14872],[7.69576,47.14873],[7.69574,47.14423],[7.68239,47.14425],[7.68241,47.14875],[7.66276,47.14879],[7.66274,47.14415],[7.59682,47.14426],[7.59681,47.13996],[7.5769,47.13999],[7.57693,47.14904],[7.57042,47.14905],[7.57045,47.15793],[7.55736,47.15795],[7.55734,47.15346],[7.53764,47.1535],[7.53759,47.13991],[7.53099,47.13993],[7.53097,47.1355],[7.52431,47.13551],[7.52426,47.12195],[7.51768,47.12197],[7.51766,47.11748],[7.50465,47.11751],[7.50463,47.11297],[7.49809,47.11298],[7.49807,47.10842],[7.48487,47.10844],[7.48486,47.10402],[7.47822,47.10403],[7.47818,47.09491],[7.4847,47.0949],[7.48465,47.08143],[7.47814,47.08144],[7.47811,47.07246],[7.46496,47.07248],[7.46494,47.06801],[7.43186,47.06807],[7.43187,47.07237],[7.42546,47.07238],[7.42553,47.09039],[7.4124,47.09041],[7.41239,47.08598],[7.37955,47.08603],[7.37956,47.09022],[7.37282,47.09023],[7.37286,47.09945],[7.36617,47.09946],[7.3662,47.10834],[7.35955,47.10835],[7.35961,47.12663],[7.36606,47.12662],[7.36608,47.13104],[7.39904,47.13098],[7.39902,47.12657],[7.41894,47.12654],[7.41896,47.1307],[7.41223,47.13072],[7.41228,47.14473],[7.41885,47.14472],[7.41887,47.14902],[7.43181,47.14899],[7.43184,47.15807],[7.43859,47.15805],[7.43861,47.16233],[7.46496,47.16228],[7.46494,47.15801],[7.47164,47.158],[7.47165,47.16227],[7.478,47.16226],[7.47801,47.16695],[7.47148,47.16696],[7.4715,47.17148],[7.46487,47.17149],[7.46489,47.17589],[7.45184,47.17591],[7.45183,47.17151],[7.43871,47.17153],[7.43869,47.16701],[7.42551,47.16703],[7.42547,47.15795],[7.41887,47.15796],[7.41885,47.15342],[7.37264,47.15349],[7.37274,47.18038],[7.3659,47.1804],[7.36592,47.18494],[7.34629,47.18498],[7.34632,47.19374],[7.33955,47.19375],[7.33958,47.20289],[7.33304,47.2029],[7.33312,47.22548],[7.35273,47.22544],[7.35275,47.22993],[7.36595,47.2299],[7.36597,47.23453],[7.37912,47.23451],[7.37913,47.23895],[7.39234,47.23892],[7.39236,47.24347],[7.4056,47.24345],[7.40565,47.25694],[7.41228,47.25693],[7.4123,47.2614],[7.42542,47.26138],[7.42543,47.26592],[7.43187,47.26591],[7.43189,47.27042],[7.4583,47.27038],[7.45832,47.27492],[7.46506,47.27491],[7.4651,47.28387],[7.47169,47.28385],[7.47171,47.28847],[7.47832,47.28846],[7.47834,47.29293],[7.49152,47.29291],[7.49154,47.29737],[7.51134,47.29734],[7.51135,47.30184],[7.53122,47.3018],[7.53125,47.31073],[7.53782,47.31072],[7.53787,47.32429],[7.55104,47.32427],[7.55106,47.32882],[7.56434,47.3288],[7.56437,47.33783],[7.57086,47.33782],[7.57087,47.3423],[7.57765,47.34229],[7.57764,47.33783],[7.59081,47.33781],[7.59083,47.34227],[7.59743,47.34226],[7.59741,47.33781],[7.60407,47.3378],[7.60409,47.34225],[7.69661,47.3421],[7.6966,47.33761],[7.70993,47.33759],[7.70995,47.34208],[7.72322,47.34206],[7.72324,47.34657],[7.73643,47.34655],[7.73645,47.35093],[7.77622,47.35087],[7.77621,47.34642],[7.78269,47.34641],[7.78272,47.35523],[7.78936,47.35522],[7.7894,47.36427],[7.79613,47.36426],[7.79615,47.36877],[7.82248,47.36873],[7.82249,47.37319],[7.82926,47.37318],[7.82929,47.38217],[7.84261,47.38215],[7.84262,47.38661],[7.86243,47.38658],[7.8625,47.40454],[7.86917,47.40453],[7.86919,47.40901],[7.87587,47.409],[7.87589,47.41351],[7.90231,47.41347],[7.90229,47.4089],[7.92225,47.40887],[7.92228,47.4177],[7.93556,47.41768],[7.93558,47.42211],[7.94882,47.42209],[7.94884,47.42664],[7.95552,47.42663],[7.95553,47.43112],[7.96884,47.4311]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Solothurn, DTM Relief 2019, WMS Solothurn (SOGIS)"},"available_projections":["EPSG:2056","CRS:84","EPSG:4326","EPSG:21781","EPSG:3857"],"category":"elevation","country_code":"CH","end_date":"2019","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png","id":"Solothurn-sogis2019-dtm-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, DTM Relief 2019","privacy_policy_url":"https://www.asitvd.ch/tarifs-conditions.html","start_date":"2019","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2019.dtm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.44,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.46,47.26],[7.46,47.28],[7.48,47.28],[7.48,47.26],[7.5,47.26],[7.5,47.28],[7.56,47.28],[7.56,47.3],[7.6,47.3],[7.6,47.28],[7.62,47.28],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1],[7.48,47.06],[7.44,47.06]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Solothurn, Orthofoto 2014 RGB"},"available_projections":["EPSG:4326","EPSG:21781","CRS:84","EPSG:3857","EPSG:2056"],"best":false,"category":"photo","country_code":"CH","default":false,"description":"","end_date":"2014","i18n":false,"id":"Solothurn-sogis-ortho2014-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, Orthofoto 2014 RGB","privacy_policy_url":"https://www.so.ch/rechtliches/","start_date":"2014","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2014.rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.32],[7.72,47.32],[7.72,47.34],[7.78,47.34],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Solothurn, Orthofoto 2015 RGB"},"available_projections":["EPSG:4326","EPSG:21781","CRS:84","EPSG:3857","EPSG:2056"],"best":false,"category":"photo","country_code":"CH","default":false,"description":"","end_date":"2015","i18n":false,"id":"Solothurn-sogis-ortho2015-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, Orthofoto 2015 RGB","privacy_policy_url":"https://www.so.ch/rechtliches/","start_date":"2015","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2015.rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.48,47.08],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.56,47.34],[7.56,47.36],[7.62,47.36],[7.62,47.38],[7.74,47.38],[7.74,47.36],[7.8,47.36],[7.8,47.32],[7.76,47.32],[7.76,47.3],[7.72,47.3],[7.72,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1],[7.48,47.08]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Solothurn, Orthofoto 2016 RGB"},"available_projections":["EPSG:4326","EPSG:21781","CRS:84","EPSG:3857","EPSG:2056"],"best":true,"category":"photo","country_code":"CH","default":false,"description":"","end_date":"2016","i18n":false,"id":"Solothurn-sogis-ortho2016-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, Orthofoto 2016 RGB","privacy_policy_url":"https://www.so.ch/rechtliches/","start_date":"2016","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2016_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.32],[7.72,47.32],[7.72,47.34],[7.78,47.34],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Solothurn, Orthofoto 2017 RGB"},"available_projections":["EPSG:4326","EPSG:21781","CRS:84","EPSG:3857","EPSG:2056"],"best":true,"category":"photo","country_code":"CH","default":false,"description":"","end_date":"2017","i18n":false,"id":"Solothurn-sogis-ortho2017-wms","license_url":"https://wiki.openstreetmap.org/wiki/SOGIS_WMS","min_zoom":10,"name":"Kanton Solothurn, Orthofoto 2017 RGB","privacy_policy_url":"https://www.so.ch/rechtliches/","start_date":"2017","type":"wms","url":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2017_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Thurgau, Basisplan-AV","url":"https://opendata.swiss/dataset/basisplan-av"},"available_projections":["EPSG:4326","EPSG:2056","EPSG:21781","EPSG:3857"],"best":false,"category":"map","country_code":"CH","default":false,"description":"Basisplan-AV des Kantons Thurgau farbig & schwarzweiss mit Liegenschaften, Nomenklatur, Landes-, Kantons- und Gemeindegrenzen, Einzelobjekten, Bodenbedeckung, Strassennamen, Höhenkurven und Geländemodell","i18n":false,"icon":"","id":"kt_tg_av","license_url":"https://opendata.swiss/dataset/basisplan-av","min_zoom":10,"name":"Kanton Thurgau, Basisplan-AV","privacy_policy_url":"https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128","type":"wms","url":"https://ows.geo.tg.ch/geofy_access_proxy/basisplanf?LAYERS=Basisplan_farbig&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Thurgau, Rad-Routen","url":"https://opendata.swiss/dataset/rad-routen"},"available_projections":["EPSG:4326","EPSG:2056","EPSG:21781","EPSG:3857"],"best":false,"category":"map","country_code":"CH","default":false,"description":"Langsamverkehr: Radweg-Netz (Routen) signalisiert durch Wegweiser","i18n":false,"icon":"","id":"kt_tg_radrouten","license_url":"https://opendata.swiss/dataset/rad-routen","min_zoom":10,"name":"Kanton Thurgau, Rad-Routen","privacy_policy_url":"https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128","type":"wms","url":"https://ows.geo.tg.ch/geofy_access_proxy/radwege?LAYERS=Radwege&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Thurgau, DTM Relief 2014","url":"https://opendata.swiss/dataset/reliefschattierung"},"available_projections":["EPSG:2056","EPSG:4326","EPSG:3857","EPSG:21781"],"best":false,"category":"elevation","country_code":"CH","default":false,"description":"Digitale Repräsentation des Geländes","end_date":"2014","i18n":false,"icon":"","id":"kt_tg_dtm_hillshade","license_url":"https://opendata.swiss/dataset/reliefschattierung","min_zoom":10,"name":"Kanton Thurgau Relief DTM","privacy_policy_url":"https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128","start_date":"2014","type":"wms","url":"https://ows-raster.geo.tg.ch/geofy_access_proxy/reliefschattierung?LAYERS=DTMRelief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Thurgau, Wanderwege","url":"https://opendata.swiss/dataset/wanderwege"},"available_projections":["EPSG:4326","EPSG:2056","EPSG:21781","EPSG:3857"],"best":false,"category":"map","country_code":"CH","default":false,"description":"Langsamverkehr: Verlauf der Wanderwege mit symbolischer Darstellung der Wegweiser, Unterführungen, Treppen und Brücken. Informationen über die Wegoberfläche und Rollstuhlgängigkeit.","i18n":false,"icon":"","id":"kt_tg_ww","license_url":"https://opendata.swiss/dataset/wanderwege","min_zoom":10,"name":"Kanton Thurgau, Wanderwege","privacy_policy_url":"https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128","type":"wms","url":"https://ows.geo.tg.ch/geofy_access_proxy/wanderwege?LAYERS=Wanderwege&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kanton Thurgau, Orthofoto2017 RGB","url":"https://opendata.swiss/en/dataset/orthofoto-2017-dop17"},"available_projections":["EPSG:4326","EPSG:2056","EPSG:21781","EPSG:3857"],"best":true,"category":"photo","country_code":"CH","default":false,"description":"Digitales multispektrales Orthofotomosaik des Kantons Thurgau","end_date":"2017","i18n":false,"icon":"","id":"kt_tg_ortho_2017","license_url":"https://opendata.swiss/dataset/orthofoto-2017-dop17","min_zoom":10,"name":"Kanton Thurgau, Orthofoto2017 RGB","privacy_policy_url":"https://geoinformation.tg.ch/thurgis/thurgis-disclaimer.html/7128","start_date":"2017","type":"wms","url":"https://ows-raster.geo.tg.ch/geofy_access_proxy/orthofoto2017?LAYERS=Orthofoto2017_RGB&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Oberflächenschummerung"},"available_projections":["EPSG:2056","EPSG:21781","EPSG:21780","EPSG:21782","EPSG:4326","EPSG:4258","EPSG:3857"],"category":"elevation","country_code":"CH","end_date":"2014","id":"OGDLidarZH-DOM","license_url":"https://opendata.swiss/de/dataset/wms-digitales-hohenmodell-ogd1","min_zoom":10,"name":"Kanton Zurich, Oberflächenschummerung 50cm","privacy_policy_url":"https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html","start_date":"2014","type":"wms","url":"https://wms.zh.ch/OGDLidarZH?FORMAT=image/jpeg&STYLES=&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=dom2014hillshade&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Terrainschummerung"},"available_projections":["EPSG:2056","EPSG:21781","EPSG:21780","EPSG:21782","EPSG:4326","EPSG:4258","EPSG:3857"],"category":"elevation","country_code":"CH","end_date":"2014","id":"OGDLidarZH-DTM","license_url":"https://opendata.swiss/de/dataset/wms-digitales-hohenmodell-ogd1","min_zoom":10,"name":"Kanton Zurich, Terrainschummerung 50cm","privacy_policy_url":"https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html","start_date":"2014","type":"wms","url":"https://wms.zh.ch/OGDLidarZH?FORMAT=image/jpeg&STYLES=&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=dtm2014hillshade&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2014/15 RGB"},"available_projections":["EPSG:2056","EPSG:21781","EPSG:21780","EPSG:21782","EPSG:4326","EPSG:4258","EPSG:3857"],"category":"photo","country_code":"CH","end_date":"2015","id":"OGDOrthoZH2015","license_url":"https://opendata.swiss/de/dataset/wms-orthofotos-ogd1","min_zoom":10,"name":"Kanton Zurich, Orthofoto ZH Sommer 2014/15 RGB 10cm","privacy_policy_url":"https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html","start_date":"2014","type":"wms","url":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&STYLES=&REQUEST=GetMap&LAYERS=ortho_s_14&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Frühjahr 2015/16 RGB"},"available_projections":["EPSG:2056","EPSG:21781","EPSG:21780","EPSG:21782","EPSG:4326","EPSG:4258","EPSG:3857"],"category":"photo","country_code":"CH","end_date":"2016","id":"OGDOrthoZH2016","license_url":"https://opendata.swiss/de/dataset/wms-orthofotos-ogd1","min_zoom":10,"name":"Kanton Zurich, Orthofoto ZH Frühjahr 2015/16 RGB 10cm","privacy_policy_url":"https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html","start_date":"2015","type":"wms","url":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&STYLES=&REQUEST=GetMap&LAYERS=ortho_w_15&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2018 RGB"},"available_projections":["EPSG:2056","EPSG:21781","EPSG:21780","EPSG:21782","EPSG:4326","EPSG:4258","EPSG:3857"],"best":true,"category":"photo","country_code":"CH","end_date":"2018","id":"OGDOrthoZH2018","license_url":"https://opendata.swiss/de/dataset/wms-orthofotos-ogd1","min_zoom":10,"name":"Kanton Zurich, Orthofoto ZH Sommer 2018 RGB 10cm","privacy_policy_url":"https://www.zh.ch/internet/de/service/nav/footer/nutzungsregelungen.html","start_date":"2018","type":"wms","url":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&STYLES=&LAYERS=ortho&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[6.66668,46.49441],[6.61637,46.49406],[6.61636,46.49836],[6.60135,46.49825],[6.60131,46.50227],[6.55923,46.50194],[6.55773,46.59687],[6.72895,46.59805],[6.7304,46.49004],[6.67702,46.48978],[6.67703,46.49011],[6.67345,46.49006],[6.67347,46.49041],[6.66672,46.49036],[6.66668,46.49441]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Ville de Lausanne - Orthophoto 2016","url":"http://carto.lausanne.ch/lausanne-gc/"},"category":"photo","country_code":"CH","end_date":"2016","id":"Lausanne-2016","max_zoom":20,"min_zoom":12,"name":"Lausanne - Orthophoto 2016","privacy_policy_url":"https://www.asitvd.ch/tarifs-conditions.html","start_date":"2016","type":"tms","url":"https://osmdata.asitvd.ch/tiles/lausanne2016/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[6.18068,46.38878],[6.21445,46.41522],[6.25774,46.3887],[6.22398,46.36228],[6.18068,46.38878]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Ville de Nyon","url":"http://www.nyon.ch/fr/officiel/services-offices/informatique-et-population-776-3911"},"category":"photo","country_code":"CH","end_date":"2016-03-10","id":"Ville_de_Nyon-HD-2016","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_waiver_Nyon.pdf","max_zoom":20,"min_zoom":10,"name":"Ville de Nyon - Orthophoto 2016 HD 5cm/pi","permission_osm":"explicit","privacy_policy_url":"https://www.asitvd.ch/tarifs-conditions.html","start_date":"2016-03-10","type":"tms","url":"http://osmdata.asitvd.ch/tiles/nyon2016/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[6.71057,46.54396],[6.72968,46.54408],[6.72995,46.52605],[6.71085,46.52596],[6.71113,46.50796],[6.6922,46.50788],[6.6923,46.49883],[6.63531,46.49847],[6.63488,46.52547],[6.65381,46.52558],[6.65361,46.54358],[6.69163,46.54384],[6.69155,46.55284],[6.71047,46.55293],[6.71057,46.54396]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"SIGIP","url":"https://www.sigip.ch/"},"category":"photo","country_code":"CH","end_date":"2012","id":"SIGIP-2012","max_zoom":20,"min_zoom":14,"name":"SIGIP - Orthophoto 2012","privacy_policy_url":"https://www.asitvd.ch/tarifs-conditions.html","start_date":"2012","type":"tms","url":"https://osmdata.asitvd.ch/tiles/sigip2012/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[7.29431,46.92376],[7.29827,46.92747],[7.30616,46.93095],[7.30433,46.93623],[7.30686,46.94037],[7.32464,46.94328],[7.32845,46.94641],[7.34141,46.94608],[7.34385,46.94737],[7.34346,46.94879],[7.35136,46.94855],[7.35056,46.95021],[7.35309,46.95193],[7.3582,46.95118],[7.3685,46.95662],[7.37151,46.96073],[7.37503,46.95983],[7.37851,46.96147],[7.38062,46.96547],[7.38321,46.9663],[7.3938,46.96693],[7.40005,46.96918],[7.40829,46.96869],[7.42817,46.9738],[7.43271,46.97269],[7.43536,46.96843],[7.43785,46.96843],[7.44125,46.97679],[7.44569,46.97479],[7.44838,46.97564],[7.4477,46.97901],[7.44405,46.97807],[7.44127,46.97982],[7.45067,46.99015],[7.45221,46.98968],[7.45465,46.97782],[7.46804,46.97583],[7.47079,46.97],[7.47019,46.96741],[7.47816,46.97118],[7.48452,46.97016],[7.48613,46.9679],[7.48579,46.96468],[7.47847,46.9629],[7.48029,46.96068],[7.47893,46.95878],[7.47978,46.9566],[7.47701,46.95446],[7.48405,46.94999],[7.48339,46.9452],[7.49556,46.93962],[7.49351,46.93766],[7.4908,46.93876],[7.4895,46.93687],[7.47667,46.93695],[7.47811,46.93625],[7.4747,46.93392],[7.47535,46.93299],[7.4691,46.92924],[7.47077,46.9255],[7.45857,46.93484],[7.44764,46.93043],[7.43542,46.93497],[7.4338,46.93312],[7.43764,46.93074],[7.41469,46.93682],[7.41384,46.93157],[7.40708,46.93038],[7.40806,46.92563],[7.40213,46.9242],[7.40148,46.92119],[7.38757,46.93045],[7.38231,46.92728],[7.38002,46.92989],[7.38087,46.93241],[7.37487,46.93143],[7.37489,46.93271],[7.36807,46.93239],[7.36831,46.93043],[7.36041,46.92859],[7.36056,46.9272],[7.33878,46.92454],[7.33937,46.91967],[7.32746,46.91903],[7.32692,46.9236],[7.32437,46.92519],[7.30823,46.92229],[7.29431,46.92376]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophoto 2016, Vermessungsamt Stadt Bern"},"best":true,"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2016","id":"Bern-bern2016-tms","license_url":"http://lists.openstreetmap.ch/pipermail/talk-ch/2016-November/003868.html","max_zoom":21,"min_zoom":8,"name":"Stadt Bern 10cm (2016)","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2016","type":"tms","url":"https://mapproxy.osm.ch/tiles/bern2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[7.29431,46.92376],[7.29827,46.92747],[7.30616,46.93095],[7.30433,46.93623],[7.30686,46.94037],[7.32464,46.94328],[7.32845,46.94641],[7.34141,46.94608],[7.34385,46.94737],[7.34346,46.94879],[7.35136,46.94855],[7.35056,46.95021],[7.35309,46.95193],[7.3582,46.95118],[7.3685,46.95662],[7.37151,46.96073],[7.37503,46.95983],[7.37851,46.96147],[7.38062,46.96547],[7.38321,46.9663],[7.3938,46.96693],[7.40005,46.96918],[7.40829,46.96869],[7.42817,46.9738],[7.43271,46.97269],[7.43536,46.96843],[7.43785,46.96843],[7.44125,46.97679],[7.44569,46.97479],[7.44838,46.97564],[7.4477,46.97901],[7.44405,46.97807],[7.44127,46.97982],[7.45067,46.99015],[7.45221,46.98968],[7.45465,46.97782],[7.46804,46.97583],[7.47079,46.97],[7.47019,46.96741],[7.47816,46.97118],[7.48452,46.97016],[7.48613,46.9679],[7.48579,46.96468],[7.47847,46.9629],[7.48029,46.96068],[7.47893,46.95878],[7.47978,46.9566],[7.47701,46.95446],[7.48405,46.94999],[7.48339,46.9452],[7.49556,46.93962],[7.49351,46.93766],[7.4908,46.93876],[7.4895,46.93687],[7.47667,46.93695],[7.47811,46.93625],[7.4747,46.93392],[7.47535,46.93299],[7.4691,46.92924],[7.47077,46.9255],[7.45857,46.93484],[7.44764,46.93043],[7.43542,46.93497],[7.4338,46.93312],[7.43764,46.93074],[7.41469,46.93682],[7.41384,46.93157],[7.40708,46.93038],[7.40806,46.92563],[7.40213,46.9242],[7.40148,46.92119],[7.38757,46.93045],[7.38231,46.92728],[7.38002,46.92989],[7.38087,46.93241],[7.37487,46.93143],[7.37489,46.93271],[7.36807,46.93239],[7.36831,46.93043],[7.36041,46.92859],[7.36056,46.9272],[7.33878,46.92454],[7.33937,46.91967],[7.32746,46.91903],[7.32692,46.9236],[7.32437,46.92519],[7.30823,46.92229],[7.29431,46.92376]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophoto 2016, Vermessungsamt Stadt Bern"},"available_projections":["EPSG:2056","CRS:84","EPSG:21781","EPSG:4326"],"best":true,"category":"photo","country_code":"CH","end_date":"2016","id":"Bern-bern2016-wms","license_url":"http://lists.openstreetmap.ch/pipermail/talk-ch/2016-November/003868.html","min_zoom":10,"name":"Stadt Bern 10cm (2016)","privacy_policy_url":"https://www.bern.ch/disclaimer","start_date":"2016","type":"wms","url":"https://map.bern.ch/wms/OpenData/proxy.php?LAYERS=luftbild_2016&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[9.29495,47.4188],[9.30293,47.42309],[9.3054,47.42254],[9.30939,47.42124],[9.30716,47.41791],[9.30484,47.41656],[9.30475,47.41636],[9.30664,47.41509],[9.30763,47.41549],[9.3086,47.41483],[9.31042,47.41557],[9.31229,47.41591],[9.31387,47.41688],[9.31495,47.41718],[9.3172,47.41707],[9.3231,47.41822],[9.32347,47.41862],[9.32535,47.4188],[9.32756,47.42006],[9.32868,47.42002],[9.3308,47.42092],[9.33295,47.42305],[9.3345,47.42383],[9.33767,47.42457],[9.33791,47.42555],[9.33932,47.42595],[9.34226,47.42491],[9.34359,47.42632],[9.34492,47.42671],[9.3484,47.42723],[9.34911,47.42813],[9.35138,47.42906],[9.35267,47.42916],[9.35432,47.43003],[9.35537,47.43096],[9.35627,47.43298],[9.35816,47.43404],[9.35921,47.4342],[9.36001,47.43392],[9.36052,47.43434],[9.36057,47.43533],[9.35939,47.43717],[9.35681,47.43944],[9.35737,47.44086],[9.35821,47.44193],[9.35776,47.44302],[9.35784,47.44362],[9.35851,47.44417],[9.35939,47.4443],[9.36016,47.44423],[9.361,47.44379],[9.36164,47.44423],[9.36121,47.44513],[9.36175,47.44569],[9.36318,47.44568],[9.36447,47.44508],[9.36687,47.44466],[9.36694,47.445],[9.36608,47.44562],[9.36456,47.44713],[9.36475,47.44771],[9.36748,47.44867],[9.36876,47.44867],[9.37091,47.44997],[9.37288,47.44986],[9.37557,47.44855],[9.37411,47.44957],[9.37323,47.45086],[9.37363,47.45153],[9.3734,47.45218],[9.37413,47.4526],[9.37561,47.45218],[9.37683,47.45257],[9.37769,47.45318],[9.38134,47.45369],[9.38277,47.45142],[9.3822,47.44925],[9.38464,47.45005],[9.3888,47.45105],[9.38949,47.45092],[9.39095,47.44983],[9.39194,47.44584],[9.38986,47.44473],[9.39097,47.44424],[9.39125,47.44365],[9.39333,47.44295],[9.39376,47.44363],[9.39374,47.44436],[9.39353,47.44485],[9.394,47.44581],[9.3935,47.44607],[9.39376,47.44681],[9.3946,47.44825],[9.39539,47.44842],[9.39599,47.45023],[9.39704,47.45225],[9.40082,47.45183],[9.40161,47.45282],[9.40372,47.45272],[9.404,47.45322],[9.40595,47.45334],[9.40745,47.45251],[9.40771,47.452],[9.40835,47.45251],[9.40973,47.45227],[9.41367,47.45256],[9.41603,47.45141],[9.41561,47.45093],[9.41694,47.4501],[9.41728,47.45032],[9.41771,47.45154],[9.41934,47.45304],[9.42091,47.45241],[9.42151,47.45273],[9.4235,47.45272],[9.42479,47.45341],[9.42588,47.45328],[9.42621,47.45245],[9.42822,47.45205],[9.43039,47.45073],[9.43048,47.44733],[9.43226,47.44498],[9.43213,47.44384],[9.43088,47.4433],[9.42996,47.44156],[9.43075,47.44028],[9.43185,47.43816],[9.43125,47.43758],[9.43202,47.43696],[9.43202,47.43648],[9.4346,47.43601],[9.43582,47.43478],[9.43614,47.43363],[9.43545,47.43156],[9.4346,47.43116],[9.43354,47.42981],[9.43402,47.42907],[9.43399,47.42862],[9.43522,47.42709],[9.43582,47.42588],[9.43597,47.42434],[9.43565,47.42399],[9.43567,47.42309],[9.4353,47.42261],[9.43605,47.42054],[9.43468,47.42023],[9.43475,47.41965],[9.43382,47.41928],[9.43417,47.41862],[9.43391,47.41822],[9.43151,47.41778],[9.43187,47.41657],[9.43264,47.41556],[9.43288,47.4146],[9.43372,47.41429],[9.43391,47.41389],[9.43288,47.41226],[9.43129,47.41101],[9.43058,47.41091],[9.4308,47.41046],[9.43065,47.40933],[9.42824,47.40824],[9.42681,47.40687],[9.42741,47.40499],[9.42172,47.40506],[9.42155,47.4024],[9.41365,47.40249],[9.41359,47.39982],[9.40166,47.4],[9.40153,47.39726],[9.39316,47.39746],[9.39329,47.40012],[9.3893,47.40016],[9.38949,47.40295],[9.37745,47.40317],[9.37756,47.4058],[9.37003,47.40596],[9.3699,47.40316],[9.362,47.40335],[9.3619,47.40066],[9.34997,47.40089],[9.34982,47.39815],[9.34095,47.39832],[9.33969,47.39873],[9.33857,47.3995],[9.3381,47.3996],[9.33754,47.39925],[9.3369,47.39873],[9.33578,47.39857],[9.33516,47.39861],[9.33413,47.39932],[9.33372,47.39906],[9.33293,47.39892],[9.33222,47.39896],[9.33128,47.40005],[9.33005,47.40032],[9.32913,47.40077],[9.32812,47.4006],[9.32748,47.40062],[9.32632,47.40032],[9.326,47.4],[9.3252,47.39979],[9.32475,47.39989],[9.32377,47.39916],[9.32173,47.39855],[9.32098,47.39777],[9.31924,47.39742],[9.31909,47.39698],[9.31821,47.39672],[9.31774,47.39678],[9.31701,47.39719],[9.31671,47.39723],[9.31126,47.39626],[9.31083,47.39604],[9.30911,47.39592],[9.30849,47.39594],[9.30748,47.39572],[9.30724,47.39543],[9.30609,47.39523],[9.30493,47.39507],[9.30295,47.39465],[9.30154,47.3946],[9.30001,47.39492],[9.2978,47.39566],[9.29634,47.39584],[9.2948,47.39565],[9.29351,47.39594],[9.29319,47.3965],[9.29343,47.39723],[9.29456,47.39826],[9.29506,47.39819],[9.29606,47.39919],[9.29482,47.39973],[9.29458,47.40053],[9.29169,47.40199],[9.29113,47.4026],[9.29068,47.40378],[9.29098,47.40496],[9.29134,47.40629],[9.29381,47.40907],[9.29446,47.40915],[9.29669,47.40882],[9.29609,47.41273],[9.29495,47.4188]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthofoto 2018 Stadt St. Gallen","url":"https://daten.stadt.sg.ch/"},"available_projections":["EPSG:21781","EPSG:4326","EPSG:2056"],"best":true,"category":"photo","country_code":"CH","description":"7.5 cm orthophoto from 2018","end_date":"2018","id":"SG-2018-WMS","license_url":"https://wiki.openstreetmap.org/wiki/Stadt_St._Gallen_Open_Data","max_zoom":21,"min_zoom":15,"name":"Stadt St. Gallen","permission_osm":"explicit","privacy_policy_url":"https://daten.stadt.sg.ch/terms/privacy-policy/","start_date":"2018","type":"wms","url":"https://map.stadt.sg.ch/cgi-bin/mapserv.exe?map=d:data/wms_op_stadt_sg.map&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OP_SG&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.68,47.32],[8.74,47.32],[8.74,47.365],[8.68,47.365],[8.68,47.32]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Stadt Uster Vermessung Orthophoto 2008"},"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2008","id":"Uster-2008","license_url":"https://wiki.openstreetmap.org/wiki/Stadt_Uster_WMS","max_zoom":21,"name":"Stadt Uster Orthophoto 2008 10cm","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2008","type":"tms","url":"https://mapproxy.osm.ch/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[8.44624,47.44143],[8.63178,47.43968],[8.62895,47.31377],[8.44381,47.31555],[8.44624,47.44143]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Stadt Zürich Luftbild 2011"},"category":"photo","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","end_date":"2011","id":"Zuerich-zh_luftbild2011-tms","license_url":"https://data.stadt-zuerich.ch/dataset/geo_orthofoto_2011_stadt_zuerich___fruehling","max_zoom":21,"name":"Stadt Zürich Luftbild 2011","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","start_date":"2011","type":"tms","url":"https://mapproxy.osm.ch/tiles/zh_luftbild2011/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[8.44624,47.44143],[8.63178,47.43968],[8.62895,47.31377],[8.44381,47.31555],[8.44624,47.44143]]],"type":"Polygon"},"properties":{"attribution":{"text":"Stadt Zürich Open Government Data"},"available_projections":["CRS:84","EPSG:3857","EPSG:2056","EPSG:4326"],"category":"photo","country_code":"CH","end_date":"2013","id":"Zuerich-zh_luftbild2013-wms","license_url":"https://data.stadt-zuerich.ch/dataset/geo_orthofoto_2013_stadt_zuerich___fruehling","max_zoom":21,"name":"Stadt Zürich Luftbild 2013","privacy_policy_url":"https://www.stadt-zuerich.ch/portal/de/index/footer/rechtliche_hinweise.html","start_date":"2013","type":"wms","url":"https://www.ogd.stadt-zuerich.ch/wms/geoportal/Orthofoto_2013_Stadt_Zuerich___Fruehling?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=OP_2013_STZH.tif&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.56681,47.34713],[8.56665,47.34706],[8.56563,47.34684],[8.56575,47.34666],[8.56509,47.34645],[8.54207,47.33502],[8.54073,47.33376],[8.5403,47.33396],[8.54019,47.33372],[8.54042,47.33358],[8.5388,47.33208],[8.53642,47.33076],[8.53622,47.33018],[8.53345,47.32992],[8.5318,47.3295],[8.53145,47.32846],[8.53102,47.32789],[8.52974,47.32777],[8.52969,47.32687],[8.52899,47.32698],[8.52813,47.32685],[8.52802,47.32635],[8.52755,47.32639],[8.52762,47.32616],[8.52579,47.32619],[8.52563,47.32575],[8.52426,47.32608],[8.5242,47.32486],[8.52372,47.32416],[8.52304,47.32433],[8.52193,47.32436],[8.52194,47.32394],[8.51932,47.32401],[8.51868,47.32386],[8.51768,47.3232],[8.51642,47.32308],[8.5156,47.32315],[8.51472,47.32272],[8.51295,47.3229],[8.51162,47.32222],[8.50957,47.32202],[8.5095,47.32165],[8.50788,47.32203],[8.50735,47.32173],[8.50529,47.32144],[8.50476,47.32121],[8.5043,47.32074],[8.50317,47.32022],[8.50241,47.32053],[8.50227,47.32082],[8.50152,47.32129],[8.50102,47.32198],[8.50095,47.32259],[8.5006,47.32278],[8.50078,47.3237],[8.50066,47.32451],[8.50098,47.32595],[8.5015,47.3265],[8.50159,47.32732],[8.50188,47.32765],[8.50132,47.32883],[8.5014,47.32903],[8.50069,47.32979],[8.50087,47.33053],[8.50063,47.3311],[8.50112,47.33183],[8.50075,47.33202],[8.50078,47.33224],[8.50106,47.3326],[8.50191,47.33303],[8.5022,47.33364],[8.50177,47.33412],[8.50152,47.33504],[8.50199,47.33666],[8.50161,47.33728],[8.49877,47.33968],[8.49808,47.34169],[8.49702,47.34247],[8.49709,47.34326],[8.49798,47.34365],[8.4981,47.34387],[8.49817,47.34453],[8.49773,47.34521],[8.49636,47.34648],[8.4951,47.34691],[8.49467,47.3476],[8.49285,47.34828],[8.49206,47.3495],[8.49145,47.34964],[8.49128,47.34983],[8.49089,47.35067],[8.49,47.35056],[8.48813,47.352],[8.48691,47.35203],[8.4868,47.3522],[8.48728,47.35311],[8.4871,47.3534],[8.48501,47.35469],[8.48463,47.35536],[8.48463,47.3567],[8.48426,47.35737],[8.48321,47.35814],[8.48272,47.35907],[8.48205,47.35954],[8.47879,47.36078],[8.47698,47.36029],[8.47365,47.36081],[8.47275,47.36079],[8.47169,47.36132],[8.47053,47.36166],[8.46951,47.36438],[8.4664,47.36574],[8.46583,47.3661],[8.46545,47.36664],[8.46485,47.36681],[8.46427,47.36728],[8.46418,47.36838],[8.4649,47.36897],[8.46482,47.36911],[8.46938,47.37136],[8.47042,47.3726],[8.47022,47.37395],[8.46868,47.37382],[8.46761,47.37357],[8.46544,47.37444],[8.46288,47.37603],[8.45995,47.3775],[8.45638,47.37801],[8.45116,47.37817],[8.45047,47.37836],[8.44847,47.37967],[8.44801,47.38025],[8.45174,47.38062],[8.45371,47.38027],[8.45614,47.38072],[8.45669,47.38094],[8.45673,47.38244],[8.45745,47.38222],[8.45843,47.38231],[8.45841,47.38263],[8.45745,47.38325],[8.45767,47.3834],[8.45756,47.38371],[8.45807,47.38388],[8.46004,47.38594],[8.46088,47.38704],[8.46121,47.38795],[8.46104,47.38803],[8.46381,47.39053],[8.46518,47.39132],[8.46556,47.39113],[8.46618,47.39113],[8.46727,47.39065],[8.46697,47.39131],[8.46739,47.3929],[8.4671,47.39334],[8.46607,47.39378],[8.4651,47.39453],[8.46484,47.39481],[8.46488,47.39508],[8.46535,47.39492],[8.46854,47.39461],[8.47018,47.39401],[8.47066,47.39439],[8.47191,47.39388],[8.47208,47.39408],[8.47152,47.3943],[8.47151,47.3949],[8.4721,47.39517],[8.47301,47.39506],[8.47349,47.396],[8.46516,47.39829],[8.46568,47.39922],[8.46759,47.39873],[8.46806,47.39957],[8.46615,47.40006],[8.4677,47.403],[8.4699,47.40298],[8.47551,47.40381],[8.47815,47.40387],[8.47819,47.40508],[8.47738,47.40517],[8.47705,47.40619],[8.47729,47.40914],[8.47703,47.40935],[8.47543,47.40971],[8.47583,47.41077],[8.47605,47.41072],[8.47628,47.41102],[8.47665,47.41097],[8.47725,47.41194],[8.47488,47.41241],[8.47394,47.41222],[8.47303,47.41146],[8.47268,47.41058],[8.47101,47.41094],[8.47113,47.41137],[8.47085,47.41167],[8.47044,47.41159],[8.47031,47.41253],[8.46876,47.41225],[8.46801,47.41334],[8.46863,47.41363],[8.46857,47.41408],[8.46955,47.41484],[8.47007,47.41557],[8.46913,47.41649],[8.46913,47.41693],[8.46962,47.41752],[8.47158,47.41763],[8.4772,47.41974],[8.47688,47.42016],[8.47783,47.42212],[8.47895,47.42172],[8.47937,47.42113],[8.47972,47.42141],[8.48131,47.42134],[8.48171,47.423],[8.48294,47.42266],[8.48292,47.42222],[8.48609,47.42155],[8.48658,47.42164],[8.48683,47.42186],[8.48796,47.42201],[8.48851,47.42271],[8.49019,47.42234],[8.491,47.4239],[8.49006,47.42435],[8.49007,47.42532],[8.49027,47.42536],[8.49017,47.42578],[8.48552,47.42712],[8.48481,47.42784],[8.48466,47.42873],[8.48437,47.42896],[8.48445,47.42979],[8.48579,47.43103],[8.49562,47.43281],[8.50027,47.43442],[8.50207,47.43467],[8.50364,47.43402],[8.50997,47.43213],[8.51155,47.43116],[8.51274,47.43085],[8.516,47.43174],[8.51628,47.43175],[8.51681,47.43133],[8.51872,47.4319],[8.51979,47.43167],[8.52463,47.43126],[8.52549,47.43316],[8.5303,47.43207],[8.53063,47.43266],[8.533,47.43228],[8.53374,47.43251],[8.53467,47.432],[8.53521,47.43188],[8.53606,47.43187],[8.5374,47.4314],[8.53964,47.43126],[8.5401,47.4311],[8.54033,47.43186],[8.54363,47.43143],[8.54284,47.43289],[8.54311,47.43288],[8.54451,47.4325],[8.54459,47.43262],[8.54607,47.43207],[8.54858,47.43142],[8.55009,47.43128],[8.55098,47.43102],[8.55199,47.43104],[8.55535,47.43066],[8.5561,47.42803],[8.55684,47.42624],[8.55783,47.42554],[8.55697,47.4249],[8.55736,47.42472],[8.5569,47.42424],[8.55723,47.4241],[8.55419,47.4208],[8.56082,47.41817],[8.56129,47.41829],[8.56235,47.41632],[8.56282,47.41643],[8.56323,47.41565],[8.56622,47.41632],[8.56692,47.41629],[8.56735,47.41649],[8.5678,47.41684],[8.56875,47.41855],[8.56903,47.41871],[8.5696,47.41868],[8.56944,47.41926],[8.57223,47.41893],[8.57367,47.42004],[8.57378,47.4178],[8.57342,47.41711],[8.57386,47.41438],[8.57384,47.41324],[8.57331,47.41257],[8.5726,47.41207],[8.573,47.41144],[8.58806,47.40797],[8.58894,47.40756],[8.59312,47.40704],[8.59728,47.40631],[8.59722,47.406],[8.59608,47.40612],[8.59378,47.40222],[8.59622,47.40154],[8.5948,47.39918],[8.59725,47.39851],[8.59644,47.39715],[8.59637,47.39663],[8.59623,47.39646],[8.59453,47.39712],[8.59392,47.39647],[8.59335,47.39614],[8.59208,47.39691],[8.59172,47.39681],[8.59148,47.397],[8.58828,47.3958],[8.58905,47.39501],[8.58995,47.39478],[8.58818,47.39351],[8.58752,47.39321],[8.58747,47.39297],[8.58619,47.3928],[8.58442,47.39195],[8.58369,47.39008],[8.58305,47.38905],[8.58316,47.38831],[8.58437,47.38834],[8.58432,47.38894],[8.58492,47.39011],[8.58528,47.3904],[8.58696,47.39017],[8.5869,47.38977],[8.58765,47.38905],[8.58698,47.38793],[8.59181,47.38638],[8.59307,47.38565],[8.59299,47.38523],[8.59354,47.38522],[8.59274,47.38417],[8.59082,47.38476],[8.59013,47.38381],[8.58966,47.384],[8.58956,47.38373],[8.59217,47.38311],[8.59151,47.38244],[8.59384,47.38081],[8.59407,47.38061],[8.59406,47.38029],[8.59556,47.3796],[8.59574,47.37927],[8.59721,47.37849],[8.59674,47.37782],[8.59702,47.37716],[8.5976,47.37661],[8.59705,47.37589],[8.59778,47.37557],[8.59828,47.3751],[8.59855,47.37473],[8.59813,47.37447],[8.6002,47.37331],[8.60053,47.3734],[8.60096,47.37312],[8.60194,47.37198],[8.60192,47.37171],[8.60324,47.37131],[8.60607,47.36871],[8.60745,47.36816],[8.60812,47.36761],[8.61067,47.3673],[8.612,47.36684],[8.61308,47.36776],[8.61344,47.36779],[8.61366,47.36802],[8.61549,47.3677],[8.61645,47.36841],[8.61665,47.36828],[8.61764,47.36681],[8.61709,47.36626],[8.61682,47.36535],[8.61565,47.36466],[8.61495,47.36458],[8.61557,47.36342],[8.61566,47.36273],[8.61482,47.36263],[8.6147,47.36151],[8.61929,47.36121],[8.61996,47.36104],[8.62174,47.36007],[8.62257,47.35983],[8.62187,47.35946],[8.62133,47.35746],[8.62351,47.35592],[8.62352,47.35561],[8.62544,47.35466],[8.62416,47.35397],[8.62245,47.35364],[8.62209,47.35334],[8.61989,47.35367],[8.61976,47.35385],[8.61844,47.35382],[8.61839,47.35425],[8.61708,47.35414],[8.61569,47.35442],[8.6152,47.3541],[8.61386,47.35402],[8.61255,47.35437],[8.61156,47.35394],[8.61107,47.35352],[8.61042,47.35337],[8.60946,47.35352],[8.60776,47.35333],[8.60607,47.35363],[8.60506,47.35359],[8.6038,47.353],[8.60305,47.35219],[8.6032,47.35207],[8.60294,47.35175],[8.603,47.35076],[8.60262,47.35073],[8.6016,47.35073],[8.60104,47.35105],[8.60026,47.35112],[8.5996,47.35145],[8.59859,47.35145],[8.59824,47.35165],[8.59689,47.3514],[8.59666,47.35161],[8.59596,47.35169],[8.59564,47.3519],[8.59494,47.35161],[8.59454,47.35175],[8.5939,47.35161],[8.5935,47.35211],[8.59229,47.3523],[8.59189,47.35278],[8.59118,47.35321],[8.59047,47.35271],[8.59014,47.35286],[8.58846,47.35289],[8.58797,47.35307],[8.58748,47.35267],[8.5863,47.35288],[8.58591,47.35231],[8.5853,47.35201],[8.58462,47.35141],[8.58417,47.35129],[8.58438,47.35116],[8.58398,47.35085],[8.58348,47.35104],[8.58335,47.35087],[8.58221,47.35101],[8.58246,47.35062],[8.57851,47.34873],[8.57827,47.34888],[8.57786,47.34865],[8.57686,47.34878],[8.57688,47.34859],[8.57625,47.34839],[8.57308,47.34751],[8.573,47.34765],[8.57214,47.34744],[8.57163,47.34728],[8.5717,47.34712],[8.57029,47.34672],[8.56968,47.3476],[8.56741,47.34674],[8.56681,47.34713]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Stadt Zürich Open Government Data"},"category":"map","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","id":"Zuerich-city_map","license_url":"https://www.stadt-zuerich.ch/portal/de/index/ogd/nutzungsbedingungen.html","max_zoom":21,"name":"Stadt Zürich Stadtplan","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","type":"tms","url":"https://mapproxy.osm.ch/tiles/zh_stadtplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[8.45788,47.44582],[8.57392,47.44477],[8.57362,47.43124],[8.60266,47.43096],[8.60231,47.41746],[8.6318,47.41716],[8.6295,47.33628],[8.57162,47.33679],[8.57152,47.32292],[8.54236,47.3236],[8.54212,47.31013],[8.48418,47.31062],[8.48478,47.33762],[8.45582,47.33787],[8.45609,47.35135],[8.42713,47.35161],[8.42864,47.43259],[8.45745,47.43231],[8.45788,47.44582]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Stadt Zürich Open Government Data"},"category":"map","country_code":"CH","description":"This imagery is provided via a proxy operated by https://sosm.ch/","id":"Zuerich-zh_uebersichtsplan-tms","license_url":"https://data.stadt-zuerich.ch/dataset/geo_uebersichtsplan_stadt_zuerich","max_zoom":21,"name":"Stadt Zürich Übersichtsplan","privacy_policy_url":"https://sosm.ch/about/terms-of-service/","type":"tms","url":"https://mapproxy.osm.ch/tiles/zh_uebersichtsplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw"},"type":"Feature"},{"geometry":{"coordinates":[[[10.55906,45.95485],[7.47396,45.95533],[7.55585,46.2708],[8.0547,47.66469],[11.75245,47.66481],[11.75245,46.81334],[11.38424,45.95509],[10.55906,45.95485]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"category":"photo","country_code":"CH","description":"Up-to-date image for glacier mapping - beware of some fresh snow at higher altitudes (true color)","end_date":"2016-09-29","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R065_N47_20160929T102022","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Central Alps in late September 2016","start_date":"2016-09-29","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R065_N47_20160929T102022&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.6412,43.2493],[4.3118,43.2653],[4.3118,44.2167],[5.2562,46.965],[5.9151,48.7177],[7.3866,48.7467],[10.088,48.7467],[10.088,48.7032],[7.7819,43.2813],[7.76,43.2653],[7.3646,43.2493],[4.6412,43.2493]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"category":"photo","country_code":"CH","description":"Autumn colors in the Alps, Jura and southwestern Germany (true color)","end_date":"2017-10-17","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-walps_autumn_2017","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Western Alps autumn colors 2017","start_date":"2017-10-17","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=walps_autumn_2017&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:5514","EPSG:102066","EPSG:102067","EPSG:32633","EPSG:32634","EPSG:5221","EPSG:4326","EPSG:4258","EPSG:3034","EPSG:3035","EPSG:3045","EPSG:3046","EPSG:3857","EPSG:3835","EPSG:3836"],"country_code":"CZ","id":"Czech_CUZK-KM","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Czech_Republic/freemap","name":"Czech CUZK:KM","overlay":true,"type":"wms","url":"https://wms.cuzk.cz/wms.asp?service=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&LAYERS=parcelni_cisla_i,obrazy_parcel_i,RST_KMD_I,hranice_parcel_i,DEF_BUDOVY,RST_KN_I,dalsi_p_mapy_i,prehledka_kat_prac,prehledka_kat_uz,prehledka_kraju-linie&FORMAT=image/png&transparent=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"type":"Polygon"},"properties":{"country_code":"CZ","id":"Czech_CUZK-KM-tms","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Czech_Republic/freemap","max_zoom":18,"min_zoom":13,"name":"Czech CUZK:KM tiles proxy","overlay":true,"type":"tms","url":"https://osm-{switch:a,b,c}.zby.cz/tiles_cuzk.php/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Czech RUIAN","url":"https://poloha.net/"},"country_code":"CZ","id":"Czech_RUIAN-budovy","license_url":"https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#.C4.8C.C3.9AZK_-_R.C3.9AIAN","max_zoom":20,"min_zoom":12,"name":"Czech RUIAN budovy","type":"tms","url":"https://tile.poloha.net/budovy/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Czech RUIAN","url":"https://poloha.net/"},"country_code":"CZ","id":"Czech_RUIAN-parcely","license_url":"https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#.C4.8C.C3.9AZK_-_R.C3.9AIAN","max_zoom":20,"min_zoom":12,"name":"Czech RUIAN parcely","type":"tms","url":"https://tile.poloha.net/parcely/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:102067","EPSG:32633","EPSG:4326"],"country_code":"CZ","id":"Czech_pLPIS","license_url":"https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#pLPIS_-_ve.C5.99ejn.C3.BD_registr_p.C5.AFdy","name":"Czech pLPIS","type":"wms","url":"https://eagri.cz/public/app/wms/public_DPB_PB_OPV.fcgi?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DPB_UCINNE,DPB_UCINNE_KOD&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true"},"type":"Feature"},{"geometry":{"coordinates":[[[14.81232,49.93089],[14.18755,49.87687],[14.12025,50.19882],[14.74502,50.25247],[14.81232,49.93089]]],"type":"Polygon"},"properties":{"country_code":"CZ","id":"IPR-orotofoto-last-tms","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Czech_Republic/freemap","max_zoom":20,"min_zoom":1,"name":"IPR ortofoto LAST (tmsproxy)","type":"tms","url":"https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_last.php/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]],"type":"Polygon"},"properties":{"country_code":"CZ","id":"IPR-orotofoto-vege-tms","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Czech_Republic/freemap","max_zoom":20,"min_zoom":2,"name":"IPR ortofoto Low-Vegetation (tmsproxy)","type":"tms","url":"https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_vege.php/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[14.81232,49.93089],[14.18755,49.87687],[14.12025,50.19882],[14.74502,50.25247],[14.81232,49.93089]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:5514","EPSG:102067"],"country_code":"CZ","id":"PrahaIPRlatestorthophoto","license_url":"https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#Ortofotomapy_IPR_Praha","max_zoom":20,"min_zoom":1,"name":"Praha IPR latest orthophoto","type":"wms","url":"http://giswa1.mag.mepnet.cz/arcgis/services/MAP/letecke_snimky_posledni_snimkovani_cache/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:5514","EPSG:102067"],"country_code":"CZ","id":"PrahaIPRlow-vegetationorthophoto","license_url":"https://wiki.openstreetmap.org/wiki/Cs:WikiProjekt_%C4%8Cesko/freemap#Ortofotomapy_IPR_Praha","max_zoom":20,"min_zoom":1,"name":"Praha IPR low-vegetation orthophoto","type":"wms","url":"http://giswa1.mag.mepnet.cz/arcgis/services/MAP/mimovegetacni_snimkovani_cache/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.12359,50.56846],[10.14286,50.55078],[10.20281,50.55742],[10.25205,50.51796],[10.32698,50.49345],[10.41048,50.41848],[10.60317,50.33109],[10.62244,50.2271],[10.72521,50.21066],[10.72949,50.24765],[10.85153,50.24354],[10.71879,50.32015],[10.71236,50.36524],[10.85581,50.39664],[10.93717,50.39664],[10.99069,50.36661],[11.12772,50.36661],[11.1791,50.31332],[11.16197,50.29417],[11.24119,50.2928],[11.24975,50.37344],[11.24119,50.47982],[11.35895,50.5234],[11.43816,50.50979],[11.44244,50.48936],[11.42532,50.4771],[11.42532,50.44166],[11.48955,50.42257],[11.49169,50.39801],[11.51952,50.39801],[11.52594,50.37617],[11.59874,50.40347],[11.63727,50.38845],[11.79357,50.4212],[11.83639,50.39255],[11.92203,50.42802],[11.98626,50.38709],[11.98412,50.35705],[12.04835,50.33109],[12.09331,50.32972],[12.1297,50.29828],[12.14041,50.27228],[12.10615,50.25586],[12.11258,50.23532],[12.14897,50.23669],[12.19822,50.20107],[12.22391,50.16406],[12.20464,50.14348],[12.20678,50.10779],[12.24318,50.09955],[12.27743,50.07208],[12.49367,49.98543],[12.49796,49.94136],[12.55576,49.92206],[12.54934,49.86827],[12.48083,49.78817],[12.41018,49.75775],[12.46156,49.70655],[12.5472,49.68023],[12.58788,49.55261],[12.65425,49.53455],[12.66281,49.43302],[12.75274,49.41073],[12.7977,49.34661],[12.90475,49.35638],[12.99681,49.33685],[13.05462,49.27543],[13.13169,49.21952],[13.19164,49.14395],[13.2366,49.12153],[13.29655,49.12293],[13.37148,49.08088],[13.4143,49.02897],[13.4143,48.97981],[13.57916,48.96997],[13.63483,48.94326],[13.67765,48.88698],[13.73759,48.89261],[13.7847,48.83346],[13.84036,48.77423],[13.81681,48.70646],[13.84464,48.70081],[13.8425,48.60038],[13.76543,48.5423],[13.75258,48.50401],[13.67122,48.50543],[13.64339,48.54371],[13.45712,48.5508],[13.45712,48.41598],[13.40574,48.36053],[13.2837,48.27511],[13.09315,48.26941],[12.95827,48.19097],[12.87691,48.18526],[12.772,48.09382],[12.86407,48.01368],[12.89832,47.95492],[12.94543,47.95636],[12.99681,47.88461],[13.01394,47.83434],[12.93472,47.7322],[13.0589,47.72499],[13.11885,47.63851],[13.06532,47.56922],[13.05676,47.47379],[13.00323,47.45208],[12.76772,47.55044],[12.76986,47.63274],[12.73989,47.67312],[12.6671,47.67024],[12.57503,47.6212],[12.48083,47.61975],[12.41446,47.67024],[12.24318,47.67745],[12.2132,47.69186],[12.19179,47.68177],[12.2132,47.66591],[12.21106,47.60388],[12.17467,47.59521],[12.13827,47.60388],[11.89205,47.60388],[11.85137,47.57933],[11.63942,47.58222],[11.59445,47.54899],[11.59017,47.51285],[11.51738,47.49839],[11.4403,47.50417],[11.39534,47.47524],[11.42746,47.44484],[11.3461,47.44339],[11.27973,47.39559],[11.21336,47.38834],[11.24761,47.43181],[11.10203,47.39269],[10.965,47.38979],[10.97785,47.43615],[10.9179,47.47524],[10.8708,47.47524],[10.85581,47.49405],[10.90077,47.5143],[10.87294,47.53598],[10.81085,47.51285],[10.64385,47.54899],[10.59461,47.55477],[10.57962,47.52876],[10.46187,47.54032],[10.46615,47.48392],[10.48756,47.47813],[10.48756,47.41298],[10.45973,47.40283],[10.45973,47.37529],[10.41048,47.37384],[10.40834,47.34339],[10.32056,47.28678],[10.28202,47.27806],[10.28416,47.26208],[10.14714,47.26208],[10.1921,47.30275],[10.19424,47.37384],[10.16641,47.37384],[10.16641,47.34629],[10.10004,47.34339],[10.0615,47.36369],[10.06792,47.41877],[10.09361,47.42601],[10.09576,47.44194],[9.978,47.48537],[9.95659,47.52731],[9.8945,47.52876],[9.85596,47.50851],[9.81743,47.54465],[9.82171,47.57644],[9.77461,47.58222],[9.73821,47.52586],[9.67398,47.53454],[9.58406,47.56488],[9.63972,47.60532],[9.7168,47.60388],[9.85596,47.676],[9.978,47.65582],[10.02938,47.68177],[10.10004,47.66735],[10.13215,47.676],[10.14286,47.70195],[10.0615,47.7725],[10.11288,47.8099],[10.08291,47.85302],[10.1086,47.90902],[10.07649,47.96496],[10.13001,48.02084],[10.13429,48.10669],[10.10004,48.12813],[10.05508,48.26228],[9.96944,48.36765],[10.03153,48.42593],[10.02938,48.46144],[10.12359,48.47705],[10.15356,48.4515],[10.23492,48.51252],[10.31628,48.51678],[10.29915,48.61878],[10.24563,48.6683],[10.27346,48.70646],[10.3698,48.68385],[10.43189,48.69939],[10.45116,48.72765],[10.40192,48.746],[10.44046,48.84896],[10.43403,48.95873],[10.33769,49.02055],[10.24991,49.03599],[10.24991,49.07387],[10.20066,49.10331],[10.25205,49.13274],[10.12359,49.19714],[10.11931,49.26285],[10.15142,49.28939],[10.10432,49.34522],[10.14072,49.39401],[10.1086,49.44555],[10.11074,49.50537],[10.0722,49.53316],[10.01654,49.47616],[9.92662,49.47894],[9.92448,49.55678],[9.89878,49.58177],[9.85596,49.53872],[9.80672,49.55678],[9.86667,49.60675],[9.85382,49.6442],[9.81743,49.66083],[9.83455,49.68993],[9.79602,49.72039],[9.75748,49.70793],[9.74035,49.68577],[9.70609,49.71624],[9.67826,49.71624],[9.68254,49.68854],[9.62045,49.69131],[9.64615,49.78955],[9.55836,49.77434],[9.57121,49.73561],[9.50698,49.75222],[9.49199,49.77987],[9.46844,49.76051],[9.42562,49.77849],[9.40421,49.76466],[9.33356,49.7702],[9.32928,49.73423],[9.4085,49.72593],[9.42776,49.69824],[9.41492,49.6442],[9.38066,49.63865],[9.35925,49.64974],[9.33998,49.63727],[9.31215,49.64836],[9.27789,49.62617],[9.28432,49.60814],[9.2415,49.57483],[9.09805,49.57205],[9.06594,49.60814],[9.10019,49.65113],[9.09163,49.6927],[9.13017,49.71208],[9.13873,49.74253],[9.10876,49.75637],[9.13659,49.79093],[9.10019,49.78955],[9.07236,49.82824],[9.03596,49.83514],[9.01669,50.02671],[8.96317,50.03084],[8.95674,50.05971],[9.00171,50.0707],[9.02097,50.11054],[9.1216,50.12289],[9.15586,50.11328],[9.19654,50.11878],[9.18583,50.13525],[9.23507,50.1476],[9.37638,50.12701],[9.4085,50.0817],[9.52197,50.09543],[9.50484,50.14211],[9.53267,50.16406],[9.48985,50.16954],[9.49413,50.24354],[9.61403,50.22163],[9.66541,50.23532],[9.63544,50.24901],[9.66756,50.27228],[9.74249,50.30922],[9.72964,50.35841],[9.77032,50.42939],[9.86881,50.40074],[9.91805,50.40893],[10.03581,50.47982],[10.03795,50.51115],[10.12359,50.56846]]],"type":"Polygon"},"properties":{"attribution":{"text":"Bayerische Vermessungsverwaltung","url":"https://www.ldbv.bayern.de/"},"available_projections":["EPSG:31467","EPSG:31468","EPSG:25832","EPSG:25833","EPSG:4258","EPSG:4326"],"best":true,"category":"photo","country_code":"DE","id":"bavaria-80cm","max_zoom":18,"min_zoom":7,"name":"Bavaria (80 cm)","type":"wms","url":"https://geoservices.bayern.de/wms/v2/ogc_dop80_oa.cgi?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=by_dop80c&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[13.48699,52.68076],[13.52584,52.65196],[13.5299,52.64437],[13.54209,52.60921],[13.58109,52.58134],[13.59674,52.55936],[13.63477,52.55121],[13.66547,52.52854],[13.67199,52.50379],[13.65806,52.50372],[13.65796,52.49324],[13.7547,52.4565],[13.76644,52.43884],[13.76627,52.42973],[13.74494,52.39909],[13.65235,52.33133],[13.6417,52.33103],[13.62609,52.35491],[13.59432,52.37455],[13.53198,52.38376],[13.51948,52.39236],[13.48536,52.39227],[13.43552,52.38016],[13.42885,52.37401],[13.38689,52.37388],[13.38642,52.38667],[13.36857,52.38728],[13.37045,52.39349],[13.33968,52.40887],[13.31243,52.39775],[13.30557,52.40452],[13.23622,52.40342],[13.18886,52.40417],[13.17719,52.39067],[13.14859,52.38971],[13.14868,52.38421],[13.11889,52.38385],[13.11935,52.40025],[13.10487,52.40723],[13.07371,52.40668],[13.07367,52.41403],[13.10516,52.47897],[13.11685,52.47881],[13.112,52.55915],[13.11865,52.59156],[13.15251,52.60489],[13.16282,52.60462],[13.21264,52.6321],[13.22139,52.63215],[13.27292,52.66444],[13.31376,52.66442],[13.32714,52.64692],[13.36783,52.6468],[13.39158,52.65382],[13.42728,52.6549],[13.47594,52.68122],[13.48699,52.68076]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geoportal Berlin/Digitale farbige Orthophotos 2011"},"available_projections":["EPSG:25833","EPSG:25832","EPSG:3068","EPSG:4326","EPSG:4258"],"category":"historicphoto","country_code":"DE","description":"Digitale Orthophotos für das gesamte Berliner Stadtgebiet mit einer Bodenauflösung von 0,20 m im Blattschnitt 2 km x 2 km.","end_date":"2011","id":"Berlin-2011","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583","name":"Berlin aerial photography 2011","start_date":"2011","type":"wms","url":"https://fbinter.stadt-berlin.de/fb/wms/senstadt/k_luftbild2011_20?LAYERS=0&STYLES=default&FORMAT=image/png&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[13.19746,52.64206],[13.25639,52.64285],[13.2558,52.66101],[13.31391,52.66185],[13.31476,52.64353],[13.37431,52.64462],[13.37386,52.66269],[13.4026,52.663],[13.40332,52.64501],[13.4334,52.64555],[13.43227,52.68001],[13.49082,52.68111],[13.49147,52.66428],[13.52092,52.66457],[13.5216,52.6465],[13.55096,52.6469],[13.55147,52.62938],[13.52219,52.62898],[13.52335,52.59248],[13.58263,52.59329],[13.58307,52.57535],[13.61246,52.57582],[13.61324,52.55784],[13.64268,52.55813],[13.64296,52.5401],[13.67253,52.54048],[13.67375,52.50475],[13.64413,52.5045],[13.64476,52.48608],[13.7037,52.48683],[13.70415,52.46901],[13.73362,52.4692],[13.73399,52.45121],[13.76358,52.45156],[13.76447,52.40209],[13.73546,52.39753],[13.73611,52.37963],[13.70678,52.37935],[13.70731,52.36136],[13.67785,52.36104],[13.67898,52.33017],[13.62102,52.32946],[13.61999,52.36033],[13.59046,52.36007],[13.5901,52.37806],[13.53116,52.37735],[13.53064,52.39525],[13.47168,52.39459],[13.47149,52.4125],[13.44101,52.41219],[13.44257,52.37604],[13.35487,52.37498],[13.35427,52.39306],[13.23667,52.39114],[13.23609,52.40922],[13.17635,52.40836],[13.17752,52.39029],[13.14791,52.38987],[13.14876,52.37459],[13.11971,52.37422],[13.11941,52.38955],[13.08981,52.38899],[13.08938,52.40707],[13.0618,52.40662],[13.06075,52.42408],[13.08842,52.42449],[13.086,52.47853],[13.11546,52.47896],[13.11462,52.49695],[13.1441,52.49729],[13.14332,52.5157],[13.1137,52.51528],[13.11077,52.6047],[13.19862,52.6062],[13.19746,52.64206]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geoportal Berlin/Digitale farbige Orthophotos 2014"},"category":"historicphoto","country_code":"DE","end_date":"2014","id":"Berlin-2014","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583","max_zoom":18,"name":"Berlin aerial photography 2014","start_date":"2014","type":"tms","url":"https://tiles.codefor.de/berlin-2014/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[13.11068,52.59538],[13.13975,52.60527],[13.18355,52.61488],[13.21262,52.63315],[13.24167,52.64282],[13.256,52.65201],[13.27004,52.67021],[13.31368,52.67072],[13.32914,52.66204],[13.32948,52.6529],[13.43284,52.65414],[13.44733,52.6816],[13.50561,52.68244],[13.50654,52.65531],[13.53605,52.65572],[13.5376,52.61991],[13.52229,52.61977],[13.52304,52.60165],[13.59776,52.58469],[13.59865,52.55769],[13.62817,52.55805],[13.64303,52.5492],[13.65813,52.54042],[13.67312,52.53144],[13.67356,52.51358],[13.65913,52.51344],[13.65998,52.48643],[13.68931,52.48687],[13.73386,52.46933],[13.73405,52.46034],[13.76362,52.46068],[13.76431,52.42464],[13.74941,52.42474],[13.75045,52.39778],[13.73585,52.39762],[13.70661,52.37944],[13.707,52.3614],[13.67782,52.36125],[13.66405,52.33395],[13.62073,52.33337],[13.62031,52.36042],[13.58986,52.3781],[13.53149,52.37748],[13.53133,52.38641],[13.44223,52.38484],[13.42813,52.3667],[13.38464,52.3662],[13.35432,52.39301],[13.29537,52.39209],[13.29531,52.40103],[13.19171,52.39957],[13.19222,52.39056],[13.14774,52.38996],[13.14839,52.38095],[13.11964,52.38041],[13.0744,52.40683],[13.07392,52.42426],[13.10275,52.43374],[13.10123,52.47874],[13.11558,52.47897],[13.11068,52.59538]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geoportal Berlin/Digitale farbige Orthophotos 2015"},"category":"historicphoto","country_code":"DE","end_date":"2015-08-03","id":"Berlin-2015","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583","max_zoom":18,"name":"Berlin aerial photography 2015","start_date":"2015-08-02","type":"tms","url":"https://tiles.codefor.de/berlin-2015/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geoportal Berlin/Digitale farbige Orthophotos 2016"},"category":"historicphoto","country_code":"DE","end_date":"2016-04-03","id":"Berlin-2016","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583","max_zoom":18,"name":"Berlin aerial photography 2016","start_date":"2016-04-02","type":"tms","url":"https://tiles.codefor.de/berlin-2016/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geoportal Berlin/Digitale Color-Infrarot-Orthophotos 2016"},"category":"historicphoto","country_code":"DE","end_date":"2016-04-03","id":"Berlin-2016-infrared","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583","max_zoom":18,"name":"Berlin aerial photography 2016 (infrared)","start_date":"2016-04-02","type":"tms","url":"https://tiles.codefor.de/berlin-2016i/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geoportal Berlin/Digitale farbige Orthophotos 2017"},"category":"historicphoto","country_code":"DE","end_date":"2017-03-28","id":"Berlin-2017","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583","max_zoom":18,"name":"Berlin aerial photography 2017","start_date":"2017-03-27","type":"tms","url":"https://tiles.codefor.de/berlin-2017/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geoportal Berlin/Digitale farbige Orthophotos 2018"},"category":"historicphoto","country_code":"DE","end_date":"2018-04-07","id":"Berlin-2018","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=367583#p367583","max_zoom":18,"name":"Berlin aerial photography 2018","start_date":"2018-03-19","type":"tms","url":"https://tiles.codefor.de/berlin-2018/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geoportal Berlin/Digitale farbige Orthophotos 2019 (DOP20RGB)"},"best":true,"category":"photo","country_code":"DE","end_date":"2019-04-06","id":"Berlin-2019","license_url":"https://wiki.openstreetmap.org/wiki/File:2019-06-03_Datenlizenz_Deutschland_Berlin_OSM.pdf","max_zoom":18,"name":"Berlin aerial photography 2019","start_date":"2019-04-01","type":"tms","url":"https://tiles.codefor.de/berlin-2019/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[8.19422,48.97504],[7.97355,49.02623],[7.94677,49.06313],[7.44328,49.18928],[7.05679,49.11163],[6.94302,49.21345],[6.81633,49.16389],[6.68209,49.24061],[6.3501,49.46202],[6.35353,49.57302],[6.42632,49.67177],[6.50254,49.71885],[6.45241,50.61258],[6.03871,50.71215],[6.00369,50.753],[6.05742,50.8559],[6.0787,50.90247],[6.0727,51.06792],[6.17123,51.33853],[6.22548,51.36554],[6.15715,51.5509],[6.12763,51.91069],[6.79985,51.86661],[7.02851,52.31255],[6.72947,52.64179],[7.07486,52.75269],[7.20532,53.18442],[7.04464,53.33106],[6.5173,53.65785],[8.23529,54.99001],[11.92257,54.52963],[14.1679,54.59631],[14.46591,53.24712],[14.14318,52.83946],[14.64375,52.58613],[14.57646,52.32756],[14.74537,52.06577],[14.66847,51.7353],[14.7234,51.53927],[15.03926,51.28745],[14.98845,51.09207],[14.88922,50.93856],[14.81593,50.87729],[14.63671,50.89116],[14.59311,50.91887],[14.57217,51.01076],[14.26283,51.06473],[14.28086,50.98024],[14.22816,50.85796],[13.69532,50.72883],[13.03442,50.50085],[12.49077,50.34582],[12.32632,50.29277],[12.35379,50.21462],[12.32701,50.16363],[12.1677,50.34889],[12.07707,50.2524],[12.18195,50.21136],[12.26014,50.09069],[12.53892,49.4164],[12.88808,49.3385],[13.21287,49.12439],[13.73952,48.83688],[13.45371,48.56222],[13.40555,48.37812],[13.03648,48.25986],[12.71376,48.10856],[12.93108,47.9376],[13.00455,47.84506],[12.90671,47.73249],[13.05228,47.59329],[12.15792,47.7087],[12.20393,47.61667],[12.17783,47.59815],[11.61753,47.60093],[11.26666,47.39124],[10.9247,47.46811],[10.91578,47.55623],[10.59031,47.5567],[10.29848,47.39937],[9.78144,47.61274],[9.74024,47.52842],[9.00278,47.69137],[8.68933,47.72371],[8.63809,47.70261],[8.63079,47.69359],[8.62127,47.69177],[8.62414,47.68221],[8.61243,47.68115],[8.35382,47.61367],[8.27485,47.619],[8.23709,47.61023],[8.22808,47.60583],[8.20284,47.61555],[8.10834,47.58251],[8.08568,47.5583],[8.06714,47.56444],[8.04981,47.55645],[8.02749,47.55112],[7.98097,47.55494],[7.91917,47.54787],[7.88862,47.58888],[7.81257,47.57122],[7.79455,47.55558],[7.71404,47.54063],[7.66043,47.54485],[7.65219,47.54702],[7.63439,47.56173],[7.61499,47.55669],[7.5834,47.57048],[7.58559,47.5845],[7.59366,47.60048],[7.58761,47.608],[7.51491,47.6652],[7.5434,47.81539],[7.57671,48.02454],[7.56812,48.06012],[7.80639,48.52438],[7.79987,48.58029],[7.80665,48.60106],[8.11014,48.84977],[8.19422,48.97504]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Data CC-BY 4.0 Deutsche Bahn AG","url":"https://data.deutschebahn.com/dataset/data-streckennetz"},"available_projections":["EPSG:3857","EPSG:3068","EPSG:25833","EPSG:31468","EPSG:32633","EPSG:4258","EPSG:4326"],"category":"map","country_code":"DE","end_date":"2013-11","id":"db-inspire-2013-11","name":"Deutsche Bahn VzG lines January 2017","overlay":true,"start_date":"2013-11","type":"wms","url":"https://wms.michreichert.de/vzg-strecken-2017?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=vzg_strecken,station_codes,level_crossings&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.19422,48.97504],[7.97355,49.02623],[7.94677,49.06313],[7.44328,49.18928],[7.05679,49.11163],[6.94302,49.21345],[6.81633,49.16389],[6.68209,49.24061],[6.3501,49.46202],[6.35353,49.57302],[6.42632,49.67177],[6.50254,49.71885],[6.45241,50.61258],[6.03871,50.71215],[6.00369,50.753],[6.05742,50.8559],[6.0787,50.90247],[6.0727,51.06792],[6.17123,51.33853],[6.22548,51.36554],[6.15715,51.5509],[6.12763,51.91069],[6.79985,51.86661],[7.02851,52.31255],[6.72947,52.64179],[7.07486,52.75269],[7.20532,53.18442],[7.04464,53.33106],[6.5173,53.65785],[8.23529,54.99001],[11.92257,54.52963],[14.1679,54.59631],[14.46591,53.24712],[14.14318,52.83946],[14.64375,52.58613],[14.57646,52.32756],[14.74537,52.06577],[14.66847,51.7353],[14.7234,51.53927],[15.03926,51.28745],[14.98845,51.09207],[14.88922,50.93856],[14.81593,50.87729],[14.63671,50.89116],[14.59311,50.91887],[14.57217,51.01076],[14.26283,51.06473],[14.28086,50.98024],[14.22816,50.85796],[13.69532,50.72883],[13.03442,50.50085],[12.49077,50.34582],[12.32632,50.29277],[12.35379,50.21462],[12.32701,50.16363],[12.1677,50.34889],[12.07707,50.2524],[12.18195,50.21136],[12.26014,50.09069],[12.53892,49.4164],[12.88808,49.3385],[13.21287,49.12439],[13.73952,48.83688],[13.45371,48.56222],[13.40555,48.37812],[13.03648,48.25986],[12.71376,48.10856],[12.93108,47.9376],[13.00455,47.84506],[12.90671,47.73249],[13.05228,47.59329],[12.15792,47.7087],[12.20393,47.61667],[12.17783,47.59815],[11.61753,47.60093],[11.26666,47.39124],[10.9247,47.46811],[10.91578,47.55623],[10.59031,47.5567],[10.29848,47.39937],[9.78144,47.61274],[9.74024,47.52842],[9.00278,47.69137],[8.68933,47.72371],[8.63809,47.70261],[8.63079,47.69359],[8.62127,47.69177],[8.62414,47.68221],[8.61243,47.68115],[8.35382,47.61367],[8.27485,47.619],[8.23709,47.61023],[8.22808,47.60583],[8.20284,47.61555],[8.10834,47.58251],[8.08568,47.5583],[8.06714,47.56444],[8.04981,47.55645],[8.02749,47.55112],[7.98097,47.55494],[7.91917,47.54787],[7.88862,47.58888],[7.81257,47.57122],[7.79455,47.55558],[7.71404,47.54063],[7.66043,47.54485],[7.65219,47.54702],[7.63439,47.56173],[7.61499,47.55669],[7.5834,47.57048],[7.58559,47.5845],[7.59366,47.60048],[7.58761,47.608],[7.51491,47.6652],[7.5434,47.81539],[7.57671,48.02454],[7.56812,48.06012],[7.80639,48.52438],[7.79987,48.58029],[7.80665,48.60106],[8.11014,48.84977],[8.19422,48.97504]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Data CC-BY 4.0 Deutsche Bahn AG","url":"https://data.deutschebahn.com/dataset/data-streckennetz"},"available_projections":["EPSG:3857","EPSG:3068","EPSG:25833","EPSG:31468","EPSG:32633","EPSG:4258","EPSG:4326"],"category":"map","country_code":"DE","end_date":"2015-11","id":"db-inspire-2015-11","name":"Deutsche Bahn VzG lines Nov 2015","overlay":true,"start_date":"2015-11","type":"wms","url":"https://wms.michreichert.de/vzg-strecken-2015?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=vzg_strecken,station_codes,level_crossings&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.97664,49.53765],[10.99101,49.53392],[10.99389,49.53835],[11.02784,49.53254],[11.0346,49.53462],[11.03407,49.53759],[11.04318,49.54321],[11.03557,49.55303],[11.0384,49.55842],[11.03508,49.56929],[11.03791,49.58659],[11.04797,49.5902],[11.04922,49.5937],[11.05749,49.59521],[11.05623,49.59905],[11.05127,49.6003],[11.05351,49.60904],[11.04309,49.61381],[11.04076,49.61823],[11.0285,49.61735],[11.01929,49.61896],[11.0152,49.61372],[11.00581,49.61448],[11.00639,49.61931],[11.00083,49.6221],[10.9856,49.61651],[10.97837,49.61753],[10.9737,49.62495],[10.96539,49.62557],[10.96063,49.62856],[10.96382,49.63176],[10.95474,49.6379],[10.94837,49.637],[10.94185,49.64377],[10.9273,49.64837],[10.92063,49.63963],[10.91136,49.63773],[10.92429,49.60505],[10.92205,49.58004],[10.91221,49.57008],[10.91441,49.5618],[10.92353,49.55842],[10.92712,49.55976],[10.93345,49.55892],[10.93071,49.54467],[10.93067,49.53225],[10.9406,49.53325],[10.95488,49.53021],[10.97199,49.53126],[10.97664,49.53765]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Stadt Erlangen | © GEOCART GmbH"},"category":"historicphoto","country_code":"DE","end_date":"2016-03-18","id":"Erlangen-2016","license_url":"https://erlangen.maps.arcgis.com/home/item.html?id=abab0a0c8a4c483290878068fe667a3a","max_zoom":21,"name":"Erlangen Luftbild (2016 5,0 cm)","start_date":"2016-03-18","type":"tms","url":"https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2016/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[10.85157,49.55172],[10.93037,49.55272],[10.9326,49.55818],[10.91627,49.55882],[10.91144,49.56652],[10.92281,49.60584],[10.9108,49.63751],[10.92775,49.64838],[10.94444,49.64321],[10.96487,49.63317],[10.96384,49.62711],[10.9745,49.62483],[10.9786,49.61794],[10.98478,49.61694],[10.998,49.62228],[11.00813,49.62194],[11.0071,49.61449],[11.01448,49.61394],[11.02081,49.62292],[11.05757,49.63993],[11.08136,49.62614],[11.08312,49.62034],[11.10419,49.61524],[11.11767,49.61449],[11.11997,49.60377],[11.13132,49.60348],[11.1272,49.58815],[11.10271,49.58378],[11.08898,49.59124],[11.07988,49.60837],[11.05808,49.60971],[11.06049,49.59803],[11.06512,49.59614],[11.0689,49.58879],[11.06031,49.58556],[11.04469,49.58913],[11.03851,49.58556],[11.03577,49.57276],[11.03937,49.55785],[11.04272,49.5432],[11.03465,49.5324],[10.97531,49.53467],[10.97158,49.53084],[10.94279,49.52986],[10.94273,49.50582],[10.92163,49.50566],[10.91245,49.51829],[10.88818,49.52834],[10.87518,49.51725],[10.84872,49.52291],[10.84652,49.52797],[10.84637,49.53223],[10.85157,49.55172]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Stadt Erlangen | © Hansa Luftbild AG"},"best":true,"category":"photo","country_code":"DE","end_date":"2018-04-09","id":"Erlangen-2018","license_url":"https://osm.rrze.fau.de/description-and-license-luftbild-erlangen-2018.html","max_zoom":21,"name":"Erlangen Luftbild (2018 5,0 cm)","permission_osm":"explicit","privacy_policy_url":"https://osm.rrze.fau.de/datenschutz/","start_date":"2018-04-09","type":"tms","url":"https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2018/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[8.46964,50.01111],[8.46964,50.228],[8.83185,50.228],[8.83185,50.01111],[8.46964,50.01111]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Stadtvermessungsam Frankfurt am Main","url":"http://offenedaten.frankfurt.de/dataset/wms-luftbild-2016"},"available_projections":["EPSG:25832","EPSG:31467","EPSG:4326","EPSG:3857"],"country_code":"DE","description":"aerial imagery of Frankfurt am Main, photographed on 2016-05-06","end_date":"2016-05-06","id":"Frankfurt-am-Main-2016","license_url":"https://wiki.openstreetmap.org/wiki/Frankfurt_am_Main/amtliche_Daten_f%C3%BCr_OSM","name":"Frankfurt am Main Luftbild 2016","permission_osm":"explicit","privacy_policy_url":"https://geoportal.frankfurt.de/impressum/datenschutz.html","start_date":"2016-05-06","type":"wms","url":"https://geoportal.frankfurt.de/opendata/luftbild-2016.exe?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=luftbild_10m,luftbild_1m,luftbild_20cm,luftbild_2m,luftbild_50cm,luftbild_5m&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.46964,50.01111],[8.46964,50.228],[8.83185,50.228],[8.83185,50.01111],[8.46964,50.01111]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Stadtvermessungsam Frankfurt am Main","url":"https://offenedaten.frankfurt.de/dataset/wms-luftbild-2017"},"available_projections":["EPSG:25832","EPSG:31467","EPSG:4326","EPSG:3857"],"country_code":"DE","description":"aerial imagery of Frankfurt am Main, photographed on 11.06.2017 and 06.07.2017","end_date":"2016-05-06","id":"Frankfurt-am-Main-2017","license_url":"https://wiki.openstreetmap.org/wiki/Frankfurt_am_Main/amtliche_Daten_f%C3%BCr_OSM","name":"Frankfurt am Main Luftbild 2017","permission_osm":"explicit","privacy_policy_url":"https://geoportal.frankfurt.de/impressum/datenschutz.html","start_date":"2016-05-06","type":"wms","url":"https://geoportal.frankfurt.de/opendata/luftbild-2017.exe?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=wms_opendata_luftbilder_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.4826,53.9356],[8.48274,53.90924],[8.5275,53.90941],[8.52792,53.93577],[8.4826,53.9356]],[[9.77232,53.54352],[9.77434,53.55433],[9.76314,53.55521],[9.73047,53.55787],[9.73465,53.56536],[9.75793,53.61828],[9.77129,53.63131],[9.7707,53.61607],[9.79634,53.6103],[9.78993,53.60386],[9.81817,53.58591],[9.83773,53.59198],[9.84498,53.59498],[9.85416,53.59805],[9.86814,53.6093],[9.86931,53.61323],[9.88505,53.62199],[9.88697,53.6252],[9.89356,53.63026],[9.89637,53.63122],[9.89688,53.63492],[9.90678,53.65231],[9.93115,53.65262],[9.94552,53.65276],[9.95024,53.65085],[9.95155,53.65065],[9.97795,53.64887],[9.98492,53.6483],[9.98739,53.65072],[9.9996,53.68153],[10.02282,53.68157],[10.04338,53.68198],[10.05148,53.67759],[10.06925,53.67955],[10.0604,53.68833],[10.071,53.69585],[10.0707,53.70996],[10.08198,53.72044],[10.11908,53.71324],[10.16939,53.73896],[10.19369,53.731],[10.1779,53.70992],[10.15694,53.70451],[10.15829,53.68944],[10.14342,53.68057],[10.14176,53.67744],[10.14473,53.67613],[10.14643,53.67588],[10.14955,53.67545],[10.17153,53.66869],[10.19885,53.64675],[10.18973,53.63838],[10.22202,53.63349],[10.18887,53.61316],[10.19236,53.59474],[10.20117,53.58392],[10.15169,53.57619],[10.15067,53.56973],[10.148,53.5639],[10.15308,53.56242],[10.15942,53.56091],[10.15189,53.5417],[10.15465,53.53657],[10.16874,53.5374],[10.16327,53.52185],[10.16611,53.52013],[10.16919,53.51965],[10.18951,53.51148],[10.21043,53.51996],[10.21828,53.49923],[10.2367,53.49629],[10.25008,53.47898],[10.26592,53.47079],[10.29043,53.45512],[10.30962,53.44309],[10.31223,53.45229],[10.32514,53.44979],[10.30799,53.43332],[10.25598,53.41623],[10.25089,53.41024],[10.24578,53.40261],[10.24155,53.39797],[10.16555,53.39933],[10.14506,53.41614],[10.10949,53.42649],[10.1068,53.42658],[10.07581,53.45436],[10.05155,53.46394],[10.03517,53.4469],[10.01449,53.44203],[10.02294,53.43228],[9.99754,53.42546],[9.98243,53.41478],[9.97873,53.4142],[9.9581,53.42708],[9.92953,53.42007],[9.92552,53.41924],[9.90667,53.41596],[9.92305,53.43631],[9.91704,53.44664],[9.90436,53.45707],[9.89493,53.45583],[9.86885,53.44462],[9.86211,53.42942],[9.84872,53.44111],[9.80663,53.46648],[9.80021,53.47372],[9.8028,53.49383],[9.78203,53.49236],[9.76885,53.5053],[9.77107,53.52185],[9.78105,53.51838],[9.77352,53.52796],[9.77232,53.54352]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung","url":"https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung"},"available_projections":["EPSG:31467","EPSG:25832","EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3857","EPSG:4258","EPSG:4647","EPSG:31463","EPSG:4326"],"category":"photo","country_code":"DE","id":"hamburg-20cm","name":"Hamburg (20 cm)","type":"wms","url":"https://geodienste.hamburg.de/HH_WMS_DOP20?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.4826,53.9356],[8.48274,53.90924],[8.5275,53.90941],[8.52792,53.93577],[8.4826,53.9356]],[[9.77232,53.54352],[9.77434,53.55433],[9.76314,53.55521],[9.73047,53.55787],[9.73465,53.56536],[9.75793,53.61828],[9.77129,53.63131],[9.7707,53.61607],[9.79634,53.6103],[9.78993,53.60386],[9.81817,53.58591],[9.83773,53.59198],[9.84498,53.59498],[9.85416,53.59805],[9.86814,53.6093],[9.86931,53.61323],[9.88505,53.62199],[9.88697,53.6252],[9.89356,53.63026],[9.89637,53.63122],[9.89688,53.63492],[9.90678,53.65231],[9.93115,53.65262],[9.94552,53.65276],[9.95024,53.65085],[9.95155,53.65065],[9.97795,53.64887],[9.98492,53.6483],[9.98739,53.65072],[9.9996,53.68153],[10.02282,53.68157],[10.04338,53.68198],[10.05148,53.67759],[10.06925,53.67955],[10.0604,53.68833],[10.071,53.69585],[10.0707,53.70996],[10.08198,53.72044],[10.11908,53.71324],[10.16939,53.73896],[10.19369,53.731],[10.1779,53.70992],[10.15694,53.70451],[10.15829,53.68944],[10.14342,53.68057],[10.14176,53.67744],[10.14473,53.67613],[10.14643,53.67588],[10.14955,53.67545],[10.17153,53.66869],[10.19885,53.64675],[10.18973,53.63838],[10.22202,53.63349],[10.18887,53.61316],[10.19236,53.59474],[10.20117,53.58392],[10.15169,53.57619],[10.15067,53.56973],[10.148,53.5639],[10.15308,53.56242],[10.15942,53.56091],[10.15189,53.5417],[10.15465,53.53657],[10.16874,53.5374],[10.16327,53.52185],[10.16611,53.52013],[10.16919,53.51965],[10.18951,53.51148],[10.21043,53.51996],[10.21828,53.49923],[10.2367,53.49629],[10.25008,53.47898],[10.26592,53.47079],[10.29043,53.45512],[10.30962,53.44309],[10.31223,53.45229],[10.32514,53.44979],[10.30799,53.43332],[10.25598,53.41623],[10.25089,53.41024],[10.24578,53.40261],[10.24155,53.39797],[10.16555,53.39933],[10.14506,53.41614],[10.10949,53.42649],[10.1068,53.42658],[10.07581,53.45436],[10.05155,53.46394],[10.03517,53.4469],[10.01449,53.44203],[10.02294,53.43228],[9.99754,53.42546],[9.98243,53.41478],[9.97873,53.4142],[9.9581,53.42708],[9.92953,53.42007],[9.92552,53.41924],[9.90667,53.41596],[9.92305,53.43631],[9.91704,53.44664],[9.90436,53.45707],[9.89493,53.45583],[9.86885,53.44462],[9.86211,53.42942],[9.84872,53.44111],[9.80663,53.46648],[9.80021,53.47372],[9.8028,53.49383],[9.78203,53.49236],[9.76885,53.5053],[9.77107,53.52185],[9.78105,53.51838],[9.77352,53.52796],[9.77232,53.54352]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung","url":"https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung"},"available_projections":["EPSG:31467","EPSG:25832","EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3857","EPSG:4258","EPSG:4647","EPSG:4326"],"country_code":"DE","id":"Hamburg-DK5","name":"Hamburg (DK5)","type":"wms","url":"https://geodienste.hamburg.de/HH_WMS_DK5?FORMAT=image/png&TRANSPARENT=false&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.10355,49.865],[8.38356,49.865],[8.38356,50.0466],[8.10355,50.0466],[8.10355,49.865]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Vermessung und Geoinformation Mainz","url":"https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos"},"available_projections":["EPSG:4326","EPSG:25832","EPSG:4258","EPSG:31467"],"category":"photo","country_code":"DE","icon":"https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png","id":"mainzallaerialimageries","license_url":"https://wiki.openstreetmap.org/wiki/Mainz/amtliche_Daten_f%C3%BCr_OSM","min_zoom":17,"name":"Mainz all aerial imageries","type":"wms_endpoint","url":"https://gint.mainz.de/gint1-cgi/mapserv?map=/data/mapbender-int/umn-www/client/a62/luftbild.map"},"type":"Feature"},{"geometry":{"coordinates":[[[8.10355,49.865],[8.38356,49.865],[8.38356,50.0466],[8.10355,50.0466],[8.10355,49.865]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Vermessung und Geoinformation Mainz","url":"https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25832","EPSG:4258","EPSG:31467"],"category":"photo","country_code":"DE","icon":"https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png","id":"mainzlatestaerialimagery","license_url":"https://wiki.openstreetmap.org/wiki/Mainz/amtliche_Daten_f%C3%BCr_OSM","min_zoom":12,"name":"Mainz latest aerial imagery","type":"wms","url":"https://geodaten.mainz.de/map/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho_2018&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[9.06954,49.57679],[9.10577,49.57952],[9.16079,49.58263],[9.24212,49.58402],[9.27192,49.63515],[9.30454,49.65561],[9.36753,49.65893],[9.38253,49.64341],[9.41191,49.66033],[9.39602,49.67143],[9.41828,49.69706],[9.40378,49.71957],[9.37769,49.70357],[9.35828,49.70334],[9.29438,49.73958],[9.31467,49.76859],[9.42435,49.79099],[9.50417,49.78962],[9.51808,49.78214],[9.65623,49.79286],[9.65317,49.73944],[9.63435,49.70076],[9.67054,49.69515],[9.67721,49.71846],[9.71079,49.72918],[9.8014,49.73429],[9.83728,49.70237],[9.87656,49.61362],[9.83362,49.55607],[9.84954,49.54793],[9.87463,49.5836],[9.91419,49.58955],[9.93066,49.56097],[9.92482,49.48951],[10.01787,49.48673],[10.03352,49.52978],[10.06372,49.55129],[10.09052,49.54218],[10.12792,49.51192],[10.11027,49.49272],[10.16753,49.38589],[10.12627,49.3809],[10.14385,49.32772],[10.16061,49.27043],[10.13569,49.26189],[10.14311,49.20387],[10.25161,49.15031],[10.26279,49.12959],[10.26869,49.05202],[10.36527,49.02557],[10.45894,48.93581],[10.46208,48.83947],[10.42886,48.74973],[10.46648,48.73627],[10.49761,48.68581],[10.45007,48.66277],[10.3553,48.65068],[10.32297,48.68241],[10.26028,48.67842],[10.32542,48.60763],[10.31448,48.52323],[10.17973,48.45977],[10.12892,48.45301],[10.10938,48.47445],[10.06355,48.45381],[10.03918,48.45125],[10.04492,48.43158],[10.0152,48.40323],[9.98709,48.38565],[9.97328,48.37944],[9.97549,48.36558],[9.99071,48.3734],[10.00265,48.3632],[9.99992,48.35572],[10.06698,48.28172],[10.08111,48.2253],[10.11306,48.12632],[10.13966,48.11307],[10.14695,48.07455],[10.13763,48.01938],[10.11725,47.9755],[10.11359,47.93422],[10.10709,47.86711],[10.14174,47.80956],[10.0732,47.78686],[10.11825,47.76126],[10.14213,47.70165],[10.13262,47.67678],[10.07445,47.63472],[10.06303,47.66923],[10.00359,47.67526],[9.95808,47.64376],[9.84481,47.67533],[9.83488,47.66042],[9.74926,47.60206],[9.70817,47.60007],[9.65788,47.60599],[9.64742,47.58931],[9.61389,47.57809],[9.56602,47.53274],[9.51199,47.53246],[9.25717,47.65752],[9.18684,47.65697],[9.17591,47.65379],[9.17028,47.65474],[9.15555,47.666],[9.1494,47.66713],[9.13947,47.66367],[9.02005,47.68616],[8.94127,47.65569],[8.89825,47.64821],[8.88263,47.65327],[8.87474,47.6545],[8.87235,47.66971],[8.84949,47.68089],[8.84993,47.70233],[8.81816,47.71242],[8.80108,47.72811],[8.77231,47.71606],[8.81295,47.6959],[8.79373,47.67216],[8.7533,47.68997],[8.72575,47.6917],[8.71002,47.68829],[8.68937,47.69318],[8.67046,47.68235],[8.65783,47.68883],[8.66161,47.71454],[8.70596,47.71584],[8.70932,47.73275],[8.73033,47.75527],[8.72003,47.76273],[8.68871,47.75314],[8.67898,47.78306],[8.64981,47.79435],[8.65592,47.76948],[8.63132,47.75749],[8.61918,47.76216],[8.61351,47.78451],[8.61686,47.79705],[8.568,47.79977],[8.57611,47.79015],[8.57847,47.78102],[8.56315,47.77654],[8.48889,47.76458],[8.45742,47.74126],[8.4623,47.72909],[8.44929,47.71663],[8.41471,47.69991],[8.4273,47.68562],[8.41061,47.6743],[8.46839,47.6568],[8.52474,47.64677],[8.5269,47.66373],[8.56441,47.67261],[8.57853,47.66373],[8.60454,47.6751],[8.63333,47.65212],[8.62386,47.63922],[8.60395,47.63193],[8.61281,47.61327],[8.57951,47.59306],[8.5602,47.59867],[8.56765,47.61442],[8.53394,47.62984],[8.51208,47.61641],[8.46581,47.60137],[8.46631,47.58666],[8.48985,47.59139],[8.5,47.58062],[8.43414,47.5629],[8.39882,47.57559],[8.38525,47.56408],[8.32701,47.56893],[8.29483,47.59077],[8.2948,47.60497],[8.26293,47.60823],[8.22435,47.60446],[8.18644,47.60508],[8.16904,47.59394],[8.13615,47.58246],[8.10503,47.56795],[8.09873,47.55933],[8.08261,47.55624],[8.07095,47.56299],[8.0274,47.54931],[7.94632,47.54209],[7.90966,47.54825],[7.90676,47.5603],[7.88681,47.58765],[7.83987,47.58122],[7.79648,47.55517],[7.69208,47.53137],[7.66583,47.53403],[7.63159,47.56044],[7.63879,47.56619],[7.68607,47.57205],[7.65278,47.59418],[7.62247,47.57767],[7.60473,47.57822],[7.58771,47.59015],[7.52156,47.65161],[7.50399,47.70235],[7.52096,47.77685],[7.55712,47.84839],[7.54946,47.8792],[7.57461,47.93028],[7.61318,47.96804],[7.6119,47.9871],[7.56124,48.03836],[7.57491,48.1258],[7.59534,48.15977],[7.63305,48.19717],[7.66275,48.22473],[7.68466,48.30305],[7.76346,48.49158],[7.80046,48.5126],[7.79958,48.5878],[7.83409,48.64439],[7.91211,48.68899],[7.96723,48.75716],[8.02069,48.78879],[8.04302,48.7956],[8.08647,48.81306],[8.13644,48.89782],[8.19706,48.96021],[8.28161,48.9949],[8.29967,49.02597],[8.31243,49.05996],[8.38654,49.23497],[8.46083,49.28407],[8.48783,49.29326],[8.47577,49.3079],[8.44839,49.31693],[8.45152,49.33135],[8.46288,49.3869],[8.49407,49.40186],[8.49762,49.41583],[8.50721,49.43414],[8.49834,49.44187],[8.47977,49.44391],[8.46414,49.44151],[8.44696,49.44516],[8.43947,49.45214],[8.44407,49.46085],[8.45992,49.46498],[8.46312,49.47135],[8.4554,49.48107],[8.44184,49.49297],[8.41194,49.55852],[8.42193,49.5843],[8.44117,49.59081],[8.45482,49.59157],[8.47738,49.5874],[8.56161,49.52237],[8.61486,49.54175],[8.59165,49.59179],[8.58706,49.61156],[8.65189,49.6209],[8.69494,49.62762],[8.70105,49.59869],[8.68726,49.57096],[8.72597,49.53085],[8.78493,49.51775],[8.81467,49.53187],[8.88863,49.51091],[8.90168,49.50363],[8.90315,49.486],[8.87995,49.46561],[8.83117,49.42147],[8.80845,49.40981],[8.82075,49.39647],[8.83009,49.41316],[8.85107,49.39663],[8.90247,49.44632],[8.93863,49.48179],[8.95154,49.50562],[8.98498,49.51153],[9.03553,49.50079],[9.05731,49.532],[9.10023,49.52728],[9.11009,49.51213],[9.12424,49.51722],[9.11286,49.53337],[9.08284,49.54211],[9.06694,49.56433],[9.06954,49.57679]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Datengrundlage: LGL, www.lgl-bw.de","url":"https://www.lgl-bw.de/"},"available_projections":["EPSG:4326","EPSG:25832","EPSG:3857","EPSG:31466","EPSG:31467","EPSG:31468","EPSG:25833"],"country_code":"DE","id":"Maps4BW-LGL_BW","license_url":"https://wiki.openstreetmap.org/wiki/Maps4BW#Genehmigung_zur_Nutzung","name":"Maps4BW (LGL-BW, www.lgl-bw.de)","type":"wms","url":"https://owsproxy.lgl-bw.de/owsproxy/ows/WMS_Maps4BW?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=webatlasde&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[6.51691,51.81714],[6.52258,51.81469],[6.52281,51.81041],[6.52834,51.81053],[6.53991,51.80134],[6.5511,51.799],[6.56818,51.78992],[6.57476,51.79606],[6.58457,51.79369],[6.59102,51.8024],[6.60911,51.80019],[6.61081,51.79423],[6.63264,51.79981],[6.65946,51.7892],[6.66837,51.77738],[6.7138,51.78084],[6.70876,51.77131],[6.72131,51.76899],[6.7475,51.77035],[6.74862,51.77551],[6.75824,51.77656],[6.7698,51.76649],[6.77219,51.74596],[6.78862,51.74884],[6.79861,51.74217],[6.81927,51.74341],[6.81956,51.73741],[6.82683,51.72983],[6.8403,51.73694],[6.84995,51.73712],[6.85551,51.73636],[6.8586,51.72956],[6.9103,51.74592],[6.90861,51.75275],[6.91511,51.76144],[6.9157,51.7786],[6.93527,51.7738],[6.95606,51.77245],[6.97559,51.79936],[6.98794,51.80129],[6.99485,51.80141],[6.99497,51.79884],[7.02118,51.80014],[7.0244,51.7899],[7.03141,51.78745],[7.0316,51.78317],[7.03847,51.78414],[7.05392,51.77839],[7.06079,51.77936],[7.0609,51.77679],[7.07333,51.777],[7.07867,51.78137],[7.11433,51.78795],[7.13435,51.80542],[7.1616,51.81528],[7.16419,51.8196],[7.19177,51.82174],[7.2141,51.81694],[7.22121,51.81191],[7.23658,51.80785],[7.23668,51.80528],[7.24916,51.80461],[7.2535,51.79953],[7.26179,51.79966],[7.26485,51.79198],[7.26245,51.78252],[7.27229,51.77838],[7.26002,51.77391],[7.26012,51.77134],[7.2688,51.76118],[7.27577,51.75957],[7.27889,51.75019],[7.31079,51.74636],[7.3151,51.74214],[7.31519,51.73957],[7.31102,51.74036],[7.3125,51.73781],[7.32081,51.73707],[7.31169,51.72237],[7.29963,51.71277],[7.2985,51.70589],[7.31069,51.71207],[7.30825,51.70346],[7.32762,51.70202],[7.33057,51.69692],[7.34427,51.69969],[7.34599,51.69028],[7.33919,51.68761],[7.35589,51.68356],[7.35877,51.68017],[7.3781,51.67959],[7.39086,51.66947],[7.40617,51.6654],[7.41031,51.66545],[7.4101,51.67145],[7.43089,51.6683],[7.43892,51.67527],[7.44854,51.67625],[7.44933,51.69341],[7.44094,51.69673],[7.43792,51.7044],[7.42406,51.70593],[7.42245,51.71277],[7.43451,51.72321],[7.44825,51.72511],[7.46718,51.7365],[7.47273,51.73572],[7.4771,51.72892],[7.4826,51.72985],[7.47877,51.72037],[7.48435,51.71872],[7.48449,51.71444],[7.49119,51.72053],[7.49947,51.72063],[7.50214,51.72324],[7.51738,51.72172],[7.51788,51.70629],[7.53035,51.70473],[7.52922,51.69701],[7.53349,51.69277],[7.54458,51.6912],[7.5378,51.68768],[7.54477,51.6852],[7.5528,51.69301],[7.56651,51.69575],[7.56642,51.69832],[7.58706,51.70029],[7.59379,51.70551],[7.6048,51.7065],[7.60743,51.71082],[7.6143,51.71176],[7.61419,51.71518],[7.62663,51.71447],[7.62814,51.7102],[7.64321,51.71381],[7.6531,51.70621],[7.65428,51.71308],[7.668,51.71581],[7.66915,51.72353],[7.68832,51.72889],[7.69283,51.71608],[7.7012,51.71275],[7.71352,51.71631],[7.71481,51.71976],[7.71899,51.71809],[7.71749,51.72236],[7.72163,51.7224],[7.72555,51.73016],[7.73659,51.73028],[7.73638,51.73799],[7.75154,51.73901],[7.7699,51.72378],[7.77119,51.72722],[7.78908,51.72912],[7.79037,51.73256],[7.80282,51.73183],[7.80137,51.73439],[7.80825,51.73531],[7.81228,51.73964],[7.82058,51.73887],[7.82457,51.74491],[7.83287,51.74413],[7.83314,51.73385],[7.83739,51.72961],[7.85815,51.72724],[7.85822,51.72467],[7.86374,51.72472],[7.87187,51.7308],[7.87745,51.72828],[7.88038,51.72145],[7.88875,51.7181],[7.88912,51.70267],[7.90148,51.70536],[7.90568,51.70283],[7.91249,51.70632],[7.92768,51.7056],[7.92912,51.70305],[7.94014,51.704],[7.93746,51.70055],[7.94296,51.70146],[7.96108,51.69305],[7.97631,51.69061],[7.97779,51.68633],[7.9875,51.68385],[7.98761,51.67871],[7.99732,51.67622],[7.9974,51.67279],[7.98365,51.67096],[7.96286,51.67592],[7.95466,51.67242],[7.95366,51.65612],[7.94689,51.65092],[7.94984,51.64237],[7.94443,51.63804],[7.93477,51.6388],[7.93224,51.62935],[7.92406,51.62585],[7.92414,51.62242],[7.91195,51.61374],[7.91632,51.60349],[7.91378,51.59489],[7.87529,51.59282],[7.86837,51.59446],[7.85742,51.59179],[7.85889,51.58837],[7.82749,51.57863],[7.84327,51.55307],[7.83262,51.53925],[7.83277,51.53325],[7.84115,51.52819],[7.8345,51.51955],[7.83755,51.50758],[7.83212,51.50496],[7.83912,51.49988],[7.83923,51.4956],[7.84474,51.49479],[7.8506,51.48028],[7.83418,51.4784],[7.82198,51.47228],[7.80819,51.47471],[7.79876,51.46776],[7.78906,51.47109],[7.76169,51.46823],[7.74785,51.47237],[7.7425,51.46717],[7.73567,51.46623],[7.72864,51.47216],[7.69838,51.4744],[7.67525,51.46728],[7.65606,51.46621],[7.65347,51.46103],[7.63843,51.45914],[7.63589,51.45226],[7.62083,51.45122],[7.61407,51.44772],[7.61977,51.44092],[7.62525,51.44099],[7.62127,51.43666],[7.62825,51.43245],[7.62561,51.42899],[7.63125,51.42391],[7.61633,51.41859],[7.62183,51.4178],[7.62196,51.41352],[7.63313,51.40679],[7.61322,51.38512],[7.60485,51.39017],[7.60609,51.39447],[7.59647,51.39521],[7.58704,51.38995],[7.59,51.38313],[7.58465,51.37878],[7.58644,51.36509],[7.59234,51.35144],[7.59934,51.34638],[7.59257,51.34373],[7.59407,51.33946],[7.58186,51.33588],[7.58334,51.33247],[7.57655,51.33067],[7.57816,51.32298],[7.58373,51.31962],[7.57837,51.31612],[7.58134,51.30844],[7.58547,51.30763],[7.58305,51.29732],[7.56826,51.28942],[7.56582,51.27996],[7.55089,51.27635],[7.54977,51.26862],[7.52923,51.27008],[7.52797,51.26663],[7.51302,51.26387],[7.51049,51.25784],[7.50371,51.25604],[7.50385,51.25175],[7.49563,51.2525],[7.49438,51.24906],[7.49708,51.24995],[7.50271,51.24488],[7.50143,51.24229],[7.48262,51.23262],[7.469,51.23158],[7.46505,51.22724],[7.45129,51.23049],[7.44191,51.22522],[7.44478,51.22098],[7.43534,51.21742],[7.43816,51.21489],[7.43413,51.21312],[7.42995,51.21563],[7.42962,51.22506],[7.42408,51.22756],[7.41182,51.22653],[7.41342,51.2197],[7.39824,51.22463],[7.39521,51.23317],[7.40319,51.23928],[7.3934,51.246],[7.38793,51.24593],[7.38672,51.24162],[7.37853,51.24151],[7.37289,51.24657],[7.35526,51.2429],[7.35405,51.23859],[7.34849,51.24109],[7.339,51.23924],[7.33872,51.24695],[7.32904,51.25024],[7.3238,51.24417],[7.31284,51.24487],[7.31027,51.24054],[7.30481,51.24046],[7.29643,51.24549],[7.29764,51.24979],[7.28262,51.24957],[7.27541,51.25975],[7.2715,51.25455],[7.26734,51.25621],[7.26578,51.26133],[7.27623,51.27434],[7.26764,51.2845],[7.25531,51.28518],[7.26537,51.30847],[7.26521,51.31276],[7.25974,51.31268],[7.26511,51.31533],[7.26365,51.31788],[7.23393,51.308],[7.22973,51.31051],[7.2271,51.3079],[7.22296,51.3087],[7.22309,51.30527],[7.20682,51.30159],[7.20026,51.29463],[7.18792,51.2953],[7.18232,51.29864],[7.16869,51.29757],[7.18065,51.30633],[7.16674,51.31211],[7.16924,51.31815],[7.16503,51.32066],[7.1662,51.32582],[7.15645,51.32996],[7.15351,51.33505],[7.14807,51.33411],[7.14927,51.33842],[7.14513,51.33921],[7.15292,51.34962],[7.14882,51.34956],[7.14731,51.35296],[7.15665,51.35911],[7.15911,51.36601],[7.15189,51.37532],[7.14634,51.37695],[7.13957,51.37513],[7.13802,51.37939],[7.13262,51.37759],[7.127,51.38093],[7.12163,51.37827],[7.12153,51.38084],[7.11742,51.38078],[7.11626,51.37561],[7.11215,51.37555],[7.11205,51.37812],[7.1039,51.37627],[7.09853,51.37361],[7.10004,51.37021],[7.0919,51.36836],[7.08765,51.37172],[7.08088,51.3699],[7.07796,51.37414],[7.0552,51.36176],[7.04973,51.36167],[7.04404,51.36671],[7.03604,51.36144],[7.01944,51.36544],[7.01,51.36185],[7.00745,51.35752],[6.98689,51.35803],[6.98301,51.35282],[6.97743,51.35529],[6.97621,51.35184],[6.96545,51.34737],[6.95033,51.34882],[6.94748,51.35134],[6.9257,51.34839],[6.92422,51.35093],[6.92825,51.35272],[6.92137,51.35346],[6.92391,51.35779],[6.90565,51.36775],[6.90022,51.3668],[6.8904,51.37176],[6.87848,51.36297],[6.86745,51.36449],[6.85115,51.36162],[6.84552,51.36495],[6.84991,51.35903],[6.83385,51.35101],[6.82295,51.34995],[6.81731,51.35328],[6.81615,51.34897],[6.80939,51.34713],[6.80649,51.3505],[6.7941,51.35198],[6.79314,51.34339],[6.77673,51.34308],[6.7475,51.35281],[6.73831,51.34492],[6.72749,51.34214],[6.71287,51.33328],[6.69193,51.34144],[6.66428,51.3469],[6.65435,51.35356],[6.65789,51.36477],[6.67409,51.36938],[6.67794,51.3746],[6.67511,51.37626],[6.6684,51.37356],[6.67309,51.38908],[6.66081,51.38798],[6.65693,51.38362],[6.64602,51.38254],[6.64443,51.3868],[6.63626,51.38577],[6.63586,51.39348],[6.611,51.39726],[6.59479,51.39265],[6.57148,51.39302],[6.56618,51.38948],[6.55797,51.38931],[6.55496,51.39439],[6.54679,51.39337],[6.54505,51.40019],[6.53816,51.4009],[6.52939,51.41101],[6.52596,51.42379],[6.5149,51.42527],[6.51453,51.43213],[6.51987,51.43481],[6.52092,51.44084],[6.51119,51.4432],[6.50821,51.44743],[6.50273,51.44731],[6.50198,51.46101],[6.50709,51.46798],[6.49868,51.47123],[6.49698,51.4772],[6.49012,51.47705],[6.48714,51.48127],[6.4818,51.47859],[6.47608,51.48275],[6.47404,51.49471],[6.46699,51.49799],[6.46245,51.50561],[6.45407,51.508],[6.45497,51.51659],[6.44796,51.51901],[6.45326,51.52255],[6.44876,51.52931],[6.45562,51.52946],[6.47816,51.51966],[6.47499,51.52731],[6.48673,51.53871],[6.46262,51.55191],[6.49612,51.56806],[6.46176,51.56732],[6.42276,51.5759],[6.41912,51.56725],[6.40847,51.56101],[6.38918,51.56144],[6.37657,51.56545],[6.36951,51.56872],[6.36916,51.57471],[6.37726,51.57747],[6.37284,51.58251],[6.37372,51.59111],[6.35235,51.60349],[6.33482,51.59709],[6.32362,51.60026],[6.32067,51.60363],[6.33275,51.60905],[6.33392,51.6125],[6.30035,51.62117],[6.30143,51.62633],[6.29113,51.63725],[6.29225,51.64156],[6.29903,51.64343],[6.32563,51.63632],[6.32819,51.63981],[6.35403,51.64554],[6.35313,51.66095],[6.36553,51.66123],[6.36262,51.66374],[6.37069,51.66735],[6.38091,51.6813],[6.38062,51.68643],[6.37195,51.6931],[6.35808,51.6945],[6.35482,51.703],[6.3682,51.71016],[6.37642,51.7112],[6.38041,51.71387],[6.37731,51.7198],[6.38829,51.7209],[6.38789,51.72775],[6.40932,51.73937],[6.41055,51.74197],[6.40346,51.74524],[6.40597,51.74959],[6.40178,51.75035],[6.40287,51.75552],[6.41405,51.75319],[6.42134,51.7465],[6.42188,51.73708],[6.40877,51.72478],[6.40921,51.71708],[6.4164,51.71209],[6.44839,51.70765],[6.46246,51.70281],[6.47677,51.71855],[6.48908,51.72053],[6.48418,51.73414],[6.48942,51.7394],[6.48908,51.74539],[6.48171,51.75381],[6.53363,51.76434],[6.52478,51.77444],[6.50784,51.78094],[6.4898,51.80714],[6.48961,51.81056],[6.51162,51.81274],[6.51691,51.81714]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Datengrundlage: Regionalverband Ruhr","url":"https://www.metropoleruhr.de/regionalverband-ruhr.html"},"available_projections":["EPSG:4326","EPSG:25832","EPSG:25833","EPSG:3857","EPSG:4258","EPSG:31466","EPSG:31467","EPSG:31468","EPSG:31469"],"category":"photo","country_code":"DE","id":"Metropole_Ruhr_RVR-DOP10","name":"Metropole Ruhr: Luftbilder (10 cm)","type":"wms","url":"https://geodaten.metropoleruhr.de/dop/dop?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DOP&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.48878,48.053],[11.55589,48.05323],[11.55583,48.06224],[11.56915,48.06229],[11.56908,48.07128],[11.64986,48.07155],[11.64993,48.06256],[11.70326,48.06274],[11.70313,48.08074],[11.71673,48.08079],[11.71667,48.08968],[11.7299,48.08972],[11.72963,48.12566],[11.74313,48.1257],[11.74292,48.15276],[11.72943,48.15271],[11.72936,48.16152],[11.71612,48.16147],[11.71592,48.18859],[11.7027,48.18855],[11.70263,48.19752],[11.67558,48.19743],[11.67537,48.22446],[11.66176,48.22441],[11.66169,48.23355],[11.64863,48.2335],[11.64857,48.24246],[11.54064,48.2421],[11.54058,48.25093],[11.52735,48.25088],[11.52728,48.26001],[11.47335,48.25983],[11.47356,48.23291],[11.46014,48.23287],[11.46021,48.22373],[11.43336,48.22364],[11.43343,48.21439],[11.3798,48.21421],[11.37987,48.20518],[11.36607,48.20514],[11.36621,48.18741],[11.35259,48.18737],[11.35266,48.17817],[11.33946,48.17813],[11.33973,48.14216],[11.36684,48.14225],[11.36697,48.12443],[11.38083,48.12448],[11.3809,48.11558],[11.44769,48.1158],[11.44804,48.07087],[11.46186,48.07091],[11.46193,48.06193],[11.48872,48.06202],[11.48878,48.053]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Datenquelle: dl-de/by-2-0: Landeshauptstadt München – Kommunalreferat – GeodatenService – www.geodatenservice-muenchen.de","url":"https://www.muenchen.de/rathaus/Stadtverwaltung/Kommunalreferat/geodatenservice.html"},"available_projections":["EPSG:3857","EPSG:31468"],"category":"historicphoto","country_code":"DE","end_date":"2015","icon":"https://www.muenchen.de/media/css/images/favicon_114x114.png","id":"MunichLatestAerialImagery","license_url":"https://lists.openstreetmap.de/pipermail/bayern/2017-March/001345.html","min_zoom":11,"name":"Munich latest aerial imagery 60cm","start_date":"2015","type":"wms","url":"https://ogc.muenchen.de/wms/opendata_luftbild?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=bgl0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=cd01c334-7e32-482f-bd43-af286707178a"},"available_projections":["EPSG:4326","EPSG:25833","EPSG:3857","EPSG:31468"],"best":true,"category":"photo","country_code":"DE","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png","id":"GEOSN-DOP-RGB","license_url":"https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data","name":"Saxony latest aerial imagery","type":"wms","url":"https://geodienste.sachsen.de/wms_geosn_dop-rgb/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dop_020&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=475a9197-620f-4dcb-b8aa-7f71b626443f"},"available_projections":["EPSG:4326","EPSG:25833","EPSG:3857","EPSG:31468"],"country_code":"DE","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png","id":"GEOSN-WebAtlas","license_url":"https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data","name":"Saxony WebAtlasSN","type":"wms","url":"https://geodienste.sachsen.de/wms_geosn_webatlas-sn/guest?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vegetation,Siedlung,Gewaesser,Verkehr,Administrative_Einheiten,Beschriftung&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[14.74579,51.58172],[14.7431,51.57898],[14.72602,51.56452],[14.74243,51.5407],[14.74795,51.53143],[14.74915,51.5313],[14.85274,51.50766],[14.91869,51.49319],[14.95094,51.48427],[14.96053,51.47519],[14.98033,51.43681],[14.98885,51.39591],[14.98939,51.37327],[14.9925,51.34461],[15.00064,51.33931],[15.00214,51.33212],[15.04596,51.29975],[15.05078,51.23583],[15.02117,51.20425],[15.01598,51.17244],[14.99701,51.10608],[14.97836,51.06176],[14.90178,50.93087],[14.84115,50.88907],[14.8356,50.88562],[14.83398,50.87891],[14.8137,50.82151],[14.78332,50.81622],[14.71107,50.81844],[14.7076,50.83119],[14.68303,50.83499],[14.60047,50.85431],[14.59936,50.85471],[14.63789,50.91833],[14.6421,50.92208],[14.57823,50.90779],[14.55977,50.90399],[14.5521,50.93715],[14.57589,50.95659],[14.58175,50.97275],[14.58596,50.97749],[14.58393,50.97879],[14.58498,50.98168],[14.55514,51.00025],[14.54361,50.99937],[14.52797,51.00026],[14.52345,51.00191],[14.5254,51.0121],[14.49272,51.0131],[14.46218,51.02423],[14.45095,51.0208],[14.41029,51.01006],[14.34728,51.02991],[14.31407,51.04243],[14.27493,50.99271],[14.29657,50.99276],[14.32594,50.98959],[14.32994,50.98415],[14.33452,50.97208],[14.32227,50.96816],[14.3314,50.95376],[14.40874,50.93953],[14.41492,50.93769],[14.39726,50.88617],[14.24942,50.87153],[14.23982,50.85493],[14.18893,50.83773],[14.08357,50.8055],[14.05581,50.79981],[13.97948,50.79781],[13.95918,50.77999],[13.95684,50.77951],[13.90768,50.77487],[13.91193,50.74351],[13.84519,50.71483],[13.82394,50.71432],[13.75672,50.72195],[13.68628,50.71126],[13.66279,50.72012],[13.62166,50.70791],[13.56285,50.70578],[13.55523,50.70187],[13.55071,50.70156],[13.55089,50.69964],[13.5466,50.69744],[13.55152,50.69289],[13.55403,50.66593],[13.55387,50.66474],[13.53104,50.65342],[13.5337,50.63757],[13.53063,50.63353],[13.51868,50.62639],[13.50249,50.62322],[13.48289,50.60501],[13.46554,50.59464],[13.40331,50.61242],[13.39414,50.63167],[13.37352,50.61695],[13.35195,50.60633],[13.33414,50.5985],[13.336,50.57887],[13.29556,50.57054],[13.28221,50.56818],[13.28128,50.56973],[13.2758,50.58134],[13.27446,50.58109],[13.27341,50.58283],[13.25251,50.58203],[13.25027,50.57659],[13.2474,50.57606],[13.23286,50.53889],[13.19893,50.49486],[13.18832,50.49478],[13.11708,50.49812],[13.08787,50.49407],[13.04347,50.49376],[13.04247,50.48779],[13.04098,50.48758],[13.03075,50.44381],[12.98826,50.41597],[12.96878,50.40711],[12.94442,50.39928],[12.87835,50.42749],[12.83353,50.44527],[12.82147,50.43339],[12.81163,50.42646],[12.80311,50.42681],[12.78987,50.43735],[12.7881,50.43899],[12.78788,50.43893],[12.78656,50.43998],[12.78081,50.43705],[12.74678,50.42799],[12.7177,50.40624],[12.71242,50.39525],[12.69854,50.39409],[12.67133,50.40722],[12.5587,50.39114],[12.51684,50.38957],[12.51439,50.38383],[12.4994,50.37166],[12.49848,50.34654],[12.49806,50.34556],[12.46687,50.34338],[12.45052,50.33642],[12.44639,50.3222],[12.40879,50.31439],[12.41315,50.29536],[12.40428,50.28818],[12.39947,50.28526],[12.3988,50.28437],[12.38392,50.28256],[12.36268,50.25619],[12.36448,50.23848],[12.34218,50.23388],[12.34339,50.21733],[12.3432,50.18955],[12.33281,50.1675],[12.28694,50.17165],[12.26865,50.19606],[12.27119,50.22284],[12.23236,50.24537],[12.23705,50.26372],[12.19353,50.27036],[12.17399,50.31796],[12.15266,50.31426],[12.10021,50.31351],[12.07804,50.32785],[12.04409,50.32051],[11.99071,50.34409],[11.97265,50.34479],[11.96362,50.35492],[11.97374,50.38478],[11.94829,50.39054],[11.91599,50.42107],[11.92091,50.43275],[11.89518,50.43467],[11.88026,50.44627],[11.90107,50.45969],[11.93966,50.4738],[11.92625,50.51542],[11.883,50.51559],[11.86685,50.54517],[11.88848,50.56187],[11.92297,50.56387],[11.92707,50.59411],[11.95663,50.6134],[11.97935,50.63181],[12.01959,50.64526],[12.04094,50.62998],[12.02671,50.61783],[12.05354,50.60341],[12.04669,50.58238],[12.03547,50.57421],[12.04368,50.56309],[12.0794,50.56961],[12.07968,50.58595],[12.11362,50.59133],[12.12402,50.58021],[12.14674,50.59411],[12.15222,50.61774],[12.14346,50.63267],[12.15961,50.64031],[12.1993,50.64031],[12.2045,50.6509],[12.22859,50.65142],[12.23625,50.645],[12.26527,50.64795],[12.28744,50.66149],[12.31783,50.67658],[12.31591,50.68647],[12.27239,50.69271],[12.23105,50.74912],[12.23489,50.77509],[12.25733,50.79949],[12.24666,50.81575],[12.25186,50.8282],[12.31646,50.84376],[12.38339,50.86536],[12.44525,50.86882],[12.48768,50.90301],[12.54037,50.91734],[12.63262,50.91906],[12.6307,50.95236],[12.61893,50.98623],[12.588,50.98347],[12.52258,51.00208],[12.50273,51.0607],[12.36053,51.07308],[12.35683,51.09363],[12.287,51.08745],[12.22345,51.10402],[12.19814,51.14369],[12.20054,51.17775],[12.1768,51.17941],[12.17704,51.20015],[12.19481,51.21526],[12.19149,51.25154],[12.16717,51.26081],[12.16562,51.28516],[12.13566,51.31993],[12.18231,51.33899],[12.17347,51.41243],[12.18165,51.42524],[12.1582,51.43388],[12.15169,51.46561],[12.17732,51.47514],[12.17861,51.48577],[12.2066,51.49042],[12.21007,51.49656],[12.19024,51.50243],[12.19397,51.52778],[12.21358,51.54336],[12.23773,51.55343],[12.23439,51.5607],[12.24787,51.57147],[12.30704,51.56962],[12.35352,51.59285],[12.42657,51.58896],[12.42722,51.60568],[12.45182,51.61287],[12.56073,51.61412],[12.59047,51.62977],[12.63535,51.63243],[12.64997,51.62523],[12.67039,51.63571],[12.69232,51.66379],[12.75282,51.66238],[12.78131,51.65019],[12.79366,51.66582],[12.8403,51.6838],[12.86702,51.6838],[12.91113,51.66707],[12.9134,51.65269],[12.97743,51.65566],[12.97315,51.66958],[13.03567,51.66879],[13.03995,51.64315],[13.06428,51.65378],[13.1094,51.61576],[13.13663,51.62327],[13.17784,51.60292],[13.21112,51.55906],[13.23646,51.52292],[13.22889,51.44616],[13.23759,51.40497],[13.28876,51.40529],[13.28675,51.41551],[13.33313,51.44569],[13.37952,51.44333],[13.41809,51.46077],[13.43611,51.45409],[13.49334,51.42706],[13.54375,51.40883],[13.55409,51.39058],[13.61182,51.39373],[13.62201,51.37784],[13.67102,51.37784],[13.68681,51.3834],[13.74675,51.37202],[13.75445,51.36773],[13.76336,51.37733],[13.81155,51.37683],[13.848,51.38997],[13.93953,51.39199],[13.96909,51.40311],[13.99339,51.40261],[13.99258,51.38214],[14.00473,51.37936],[14.00513,51.39199],[14.01404,51.40412],[14.04847,51.42307],[14.05029,51.44314],[14.06851,51.44995],[14.04341,51.48174],[14.10942,51.50696],[14.11124,51.52611],[14.15012,51.54929],[14.22302,51.54475],[14.28822,51.53493],[14.34046,51.52183],[14.39271,51.54249],[14.45143,51.54576],[14.45105,51.55649],[14.50044,51.55775],[14.54378,51.559],[14.54428,51.56809],[14.56545,51.5756],[14.58813,51.57592],[14.60879,51.56621],[14.60829,51.55367],[14.62038,51.55336],[14.6234,51.55806],[14.66826,51.55837],[14.67934,51.58469],[14.67373,51.60647],[14.70801,51.60582],[14.74579,51.58172]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=5e0f6071-008e-4d57-810e-48a8362acf04"},"available_projections":["EPSG:4326","EPSG:25833","EPSG:3857","EPSG:31468"],"category":"elevation","country_code":"DE","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png","id":"GEOSN-DGM","license_url":"https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data","name":"Saxony digital terrain model","type":"wms_endpoint","url":"https://geodienste.sachsen.de/wms_geosn_hoehe/guest"},"type":"Feature"},{"geometry":{"coordinates":[[[13.86571,50.71509],[13.86683,50.73012],[13.90116,50.73012],[13.90184,50.74446],[13.91043,50.74446],[13.91043,50.77378],[13.95266,50.77486],[13.95197,50.78897],[13.99969,50.78941],[13.999,50.79831],[14.16715,50.79762],[14.1747,50.8462],[14.32851,50.84534],[14.33503,50.87643],[14.41674,50.876],[14.41674,50.95025],[14.33263,50.95133],[14.3364,50.99802],[14.58188,50.99608],[14.57742,50.94895],[14.54068,50.95003],[14.54446,50.89831],[14.60557,50.89116],[14.60454,50.83439],[14.6605,50.83352],[14.65673,50.79578],[14.83422,50.79469],[14.84727,50.89138],[14.9204,50.88943],[14.9331,50.99478],[14.99902,50.99673],[15.00142,51.09709],[15.04159,51.09709],[15.04228,51.35317],[14.99696,51.35317],[15.00314,51.49959],[14.91593,51.50301],[14.91662,51.55043],[14.74908,51.55129],[14.75114,51.60121],[14.41056,51.59993],[14.41125,51.55129],[14.07891,51.54915],[14.07479,51.49831],[13.99446,51.50002],[13.99446,51.39817],[13.53921,51.39989],[13.53852,51.42516],[13.50041,51.42505],[13.50179,51.44945],[13.41596,51.45094],[13.41699,51.50013],[13.3315,51.50055],[13.33047,51.44966],[13.24945,51.44987],[13.25116,51.60036],[13.16773,51.60057],[13.16739,51.65023],[13.08328,51.65066],[13.08362,51.69941],[12.66202,51.70027],[12.66065,51.64832],[12.4162,51.65045],[12.41345,51.60057],[12.16146,51.60015],[12.16146,51.50109],[12.07631,51.50023],[12.07974,51.39625],[12.16008,51.39753],[12.16214,51.34995],[12.07906,51.35253],[12.07906,51.24562],[12.16214,51.24691],[12.16352,51.0958],[12.24317,51.09709],[12.2454,51.04813],[12.49688,51.04883],[12.49894,50.89966],[12.33346,50.89923],[12.32797,50.84984],[12.20712,50.8494],[12.20506,50.69829],[12.24694,50.69744],[12.24694,50.65023],[11.91529,50.64849],[11.91598,50.59839],[11.83221,50.59817],[11.83255,50.39922],[11.91495,50.39922],[11.91461,50.34886],[11.99486,50.34659],[11.99838,50.29897],[12.16506,50.29912],[12.16549,50.24904],[12.23673,50.24871],[12.24823,50.24212],[12.24772,50.14904],[12.33149,50.14893],[12.33852,50.19335],[12.33286,50.23927],[12.3538,50.23619],[12.35998,50.24926],[12.41457,50.24948],[12.41594,50.29906],[12.49851,50.29874],[12.49834,50.34948],[12.58142,50.34915],[12.58125,50.39896],[12.69489,50.39962],[12.70622,50.39426],[12.71257,50.39875],[13.0813,50.39907],[13.0813,50.4992],[13.24816,50.49898],[13.24884,50.54809],[13.33124,50.54918],[13.33056,50.59911],[13.50908,50.59759],[13.50462,50.62656],[13.5393,50.62635],[13.53827,50.65481],[13.54633,50.65547],[13.54599,50.66983],[13.5544,50.67027],[13.55457,50.68908],[13.54736,50.68887],[13.54582,50.69969],[13.63886,50.69947],[13.63955,50.71425],[13.86571,50.71509]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=3f38c3f3-03db-4a2a-b6da-2704b9a1d5f0"},"available_projections":["EPSG:4326","EPSG:25833","EPSG:3857","EPSG:31468"],"category":"historicphoto","country_code":"DE","end_date":"2005","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png","id":"GEOSN-DOP-2005","license_url":"https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data","name":"Saxony historical aerial imagery 2005","start_date":"2005","type":"wms","url":"https://geodienste.sachsen.de/wms_geosn_dop-2005/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=dop_2005&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[13.86571,50.71509],[13.86683,50.73012],[13.90116,50.73012],[13.90184,50.74446],[13.91043,50.74446],[13.91043,50.77378],[13.95266,50.77486],[13.95197,50.78897],[13.99969,50.78941],[13.999,50.79831],[14.16715,50.79762],[14.1747,50.8462],[14.32851,50.84534],[14.33503,50.87643],[14.41674,50.876],[14.41674,50.95025],[14.33263,50.95133],[14.3364,50.99802],[14.58188,50.99608],[14.57742,50.94895],[14.54068,50.95003],[14.54446,50.89831],[14.60557,50.89116],[14.60454,50.83439],[14.6605,50.83352],[14.65673,50.79578],[14.83422,50.79469],[14.84727,50.89138],[14.9204,50.88943],[14.9331,50.99478],[14.99902,50.99673],[15.00142,51.09709],[15.04159,51.09709],[15.04228,51.35317],[14.99696,51.35317],[15.00314,51.49959],[14.91593,51.50301],[14.91662,51.55043],[14.74908,51.55129],[14.75114,51.60121],[14.41056,51.59993],[14.41125,51.55129],[14.07891,51.54915],[14.07479,51.49831],[13.99446,51.50002],[13.99446,51.39817],[13.53921,51.39989],[13.53852,51.42516],[13.50041,51.42505],[13.50179,51.44945],[13.41596,51.45094],[13.41699,51.50013],[13.3315,51.50055],[13.33047,51.44966],[13.24945,51.44987],[13.25116,51.60036],[13.16773,51.60057],[13.16739,51.65023],[13.08328,51.65066],[13.08362,51.69941],[12.66202,51.70027],[12.66065,51.64832],[12.4162,51.65045],[12.41345,51.60057],[12.16146,51.60015],[12.16146,51.50109],[12.07631,51.50023],[12.07974,51.39625],[12.16008,51.39753],[12.16214,51.34995],[12.07906,51.35253],[12.07906,51.24562],[12.16214,51.24691],[12.16352,51.0958],[12.24317,51.09709],[12.2454,51.04813],[12.49688,51.04883],[12.49894,50.89966],[12.33346,50.89923],[12.32797,50.84984],[12.20712,50.8494],[12.20506,50.69829],[12.24694,50.69744],[12.24694,50.65023],[11.91529,50.64849],[11.91598,50.59839],[11.83221,50.59817],[11.83255,50.39922],[11.91495,50.39922],[11.91461,50.34886],[11.99486,50.34659],[11.99838,50.29897],[12.16506,50.29912],[12.16549,50.24904],[12.23673,50.24871],[12.24823,50.24212],[12.24772,50.14904],[12.33149,50.14893],[12.33852,50.19335],[12.33286,50.23927],[12.3538,50.23619],[12.35998,50.24926],[12.41457,50.24948],[12.41594,50.29906],[12.49851,50.29874],[12.49834,50.34948],[12.58142,50.34915],[12.58125,50.39896],[12.69489,50.39962],[12.70622,50.39426],[12.71257,50.39875],[13.0813,50.39907],[13.0813,50.4992],[13.24816,50.49898],[13.24884,50.54809],[13.33124,50.54918],[13.33056,50.59911],[13.50908,50.59759],[13.50462,50.62656],[13.5393,50.62635],[13.53827,50.65481],[13.54633,50.65547],[13.54599,50.66983],[13.5544,50.67027],[13.55457,50.68908],[13.54736,50.68887],[13.54582,50.69969],[13.63886,50.69947],[13.63955,50.71425],[13.86571,50.71509]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=8c276e3c-88af-462f-8128-6900bc7dd4f8"},"available_projections":["EPSG:4326","EPSG:25833","EPSG:3857","EPSG:31468"],"category":"historicphoto","country_code":"DE","end_date":"2012","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png","id":"GEOSN-DOP-2012_2014","license_url":"https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data","name":"Saxony historical aerial imagery 2012-2014","start_date":"2012","type":"wms","url":"https://geodienste.sachsen.de/wms_geosn_dop_2012_2014/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=dop_2012_2014_rgb&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=ba87bbed-4cb5-4539-a9f5-f863de752f52"},"available_projections":["EPSG:4326","EPSG:25833","EPSG:3857","EPSG:31468"],"country_code":"DE","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png","id":"GEOSN-DOP-CIR","license_url":"https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data","name":"Saxony latest aerial imagery infrared","type":"wms","url":"https://geodienste.sachsen.de/wms_geosn_dop-cir/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dop_020_cir&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=d6d24c6d-94ea-447d-8a0c-40afdedeb5c6"},"available_projections":["EPSG:4326","EPSG:25833","EPSG:3857","EPSG:31468"],"category":"map","country_code":"DE","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png","id":"GEOSN-DTK","license_url":"https://wiki.openstreetmap.org/wiki/GeoSN_Open_Data","name":"Saxony topographic map","type":"wms","url":"https://geodienste.sachsen.de/wms_geosn_dtk-pg-color/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dtk_pg_color&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[9.0262,48.88138],[9.09436,48.88137],[9.0944,48.89936],[9.10812,48.89934],[9.10813,48.92635],[9.19002,48.92621],[9.19009,48.93518],[9.2583,48.93509],[9.25825,48.92608],[9.31283,48.92595],[9.31278,48.91696],[9.35372,48.91683],[9.35337,48.87188],[9.36702,48.87183],[9.36683,48.84483],[9.38045,48.84481],[9.38021,48.80884],[9.36656,48.8089],[9.36639,48.78192],[9.42079,48.78173],[9.42012,48.70079],[9.32503,48.7011],[9.32473,48.65614],[9.27043,48.65626],[9.27034,48.63831],[9.24321,48.63835],[9.24313,48.62038],[9.18887,48.62048],[9.18889,48.62947],[9.1482,48.62953],[9.14826,48.6565],[9.1347,48.65652],[9.13473,48.66552],[9.08044,48.66555],[9.08042,48.65657],[9.02612,48.65662],[9.02612,48.64761],[8.97184,48.64761],[8.9717,48.66558],[8.91751,48.66557],[8.91751,48.68355],[8.90391,48.68353],[8.90388,48.70153],[8.91747,48.70154],[8.91744,48.71054],[8.93104,48.71053],[8.93101,48.73751],[8.99899,48.73753],[8.99899,48.74652],[9.02617,48.74653],[9.02621,48.81845],[8.99897,48.81847],[8.99898,48.82745],[8.95812,48.82745],[8.95806,48.86342],[8.97171,48.86342],[8.97171,48.87242],[9.02622,48.87241],[9.0262,48.88138]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:25832","EPSG:3857"],"best":true,"country_code":"DE","end_date":"2017-04-21","icon":"https://www.stuttgart.de/favicon.ico","id":"Stuttgart-latest","license_url":"https://lists.openstreetmap.de/pipermail/stuttgart/2018-September/000882.html","name":"Stuttgart Luftbild Stadtmessungsamt 2017","permission_osm":"explicit","privacy_policy_url":"https://www.stuttgart.de/datenschutzerklaerung","start_date":"2017-04-12","type":"wms","url":"https://gis5.stuttgart.de/arcgis/services/1_Base/WMS_Luftbilder_aktuell/MapServer/WmsServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[7.63568,53.28027],[7.63568,53.66811],[8.49433,55.50246],[9.20775,55.48106],[9.20775,53.28027],[7.63568,53.28027]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"DE","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (false color IR)","end_date":"2015-08-21","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81960222015233LGN00ir","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Northern German west coast tidalflats (infrared)","start_date":"2015-08-21","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00ir&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[7.63568,53.28027],[7.63568,53.6677],[8.49433,55.50246],[9.20775,55.48106],[9.20775,53.28027],[7.63568,53.28027]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"DE","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)","end_date":"2015-08-21","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81960222015233LGN00vis","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Northern German west coast tidalflats","start_date":"2015-08-21","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00vis&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.1562,52.8755],[5.1615,53.0325],[6.4155,55.7379],[9.8813,55.7459],[9.8813,53.2428],[9.6846,52.8877],[5.1562,52.8755]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"category":"historicphoto","country_code":"DE","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)","end_date":"2016-09-25","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-northsea_s2_2016","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: North Sea Coast 2016","start_date":"2016-09-25","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2016&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.1713,53.0918],[6.477,55.8973],[9.8813,55.8973],[9.8813,53.2761],[9.7789,53.0918],[5.1713,53.0918]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"category":"historicphoto","country_code":"DE","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)","end_date":"2017-06-02","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-northsea_s2_2017","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: North Sea Coast 2017","start_date":"2017-06-02","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2017&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.3179,53.0918],[5.322,53.4418],[6.7023,56.3572],[9.8813,56.3578],[9.8813,53.2819],[9.7758,53.0921],[5.3179,53.0918]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"category":"photo","country_code":"DE","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)","end_date":"2018-05-08","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-northsea_s2_2018","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: North Sea Coast spring 2018","start_date":"2018-05-08","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2018&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geodatastyrelsen og Danske Kommuner","url":"https://download.kortforsyningen.dk/content/vilkaar-og-betingelser"},"best":true,"country_code":"DK","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png","id":"Geodatastyrelsen_Denmark","max_zoom":21,"name":"SDFE aerial imagery","type":"tms","url":"https://osmtools.septima.dk/mapproxy/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geodatastyrelsen og Danske Kommuner"},"available_projections":["EPSG:4326","EPSG:4258","EPSG:25832","EPSG:25833","EPSG:32632","EPSG:32633","EPSG:4093","EPSG:4094","EPSG:4095","EPSG:4096","EPSG:3395","EPSG:3857"],"country_code":"DK","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png","id":"Geodatastyrelsen_Cadastral_Parcels_INSPIRE_View","max_zoom":20,"name":"SDFE Cadastral Parcels INSPIRE View","type":"wms","url":"https://kortforsyningen.kms.dk/cp_inspire?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=CP.CadastralParcel&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geodatastyrelsen og Danske Kommuner"},"available_projections":["EPSG:4326","EPSG:4258","EPSG:25832","EPSG:25833","EPSG:32632","EPSG:32633","EPSG:4093","EPSG:4094","EPSG:4095","EPSG:4096","EPSG:3395","EPSG:3857"],"country_code":"DK","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png","id":"Geodatastyrelsen_DTK_Kort25","max_zoom":19,"name":"SDFE DTK Kort25","type":"wms","url":"https://kortforsyningen.kms.dk/topo25?FORMAT=image/png&VERSION=1.1.1&login=OpenStreetMapDK2015&password=Gall4Peters&SERVICE=WMS&REQUEST=GetMap&Layers=topo25_klassisk&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geodatastyrelsen og Danske Kommuner"},"available_projections":["EPSG:4326","EPSG:4258","EPSG:25832","EPSG:25833","EPSG:32632","EPSG:32633","EPSG:4093","EPSG:4094","EPSG:4095","EPSG:4096","EPSG:3395","EPSG:3857"],"country_code":"DK","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png","id":"Geodatastyrelsen_Skaermkort","max_zoom":19,"name":"SDFE Skærmkort","type":"wms","url":"https://kortforsyningen.kms.dk/topo_skaermkort?FORMAT=image/png&VERSION=1.1.1&login=OpenStreetMapDK2015&password=Gall4Peters&SERVICE=WMS&REQUEST=GetMap&Layers=dtk_skaermkort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geodatastyrelsen og Danske Kommuner"},"available_projections":["EPSG:4326","EPSG:4258","EPSG:25832","EPSG:25833","EPSG:32632","EPSG:32633","EPSG:4093","EPSG:4094","EPSG:4095","EPSG:4096","EPSG:3395","EPSG:3857"],"country_code":"DK","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png","id":"SDFE_Overflade_Skyggekort_40cm","max_zoom":20,"name":"SDFE Surface Shadow Map (40 cm)","type":"wms","url":"https://kortforsyningen.kms.dk/dhm?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=dhm_overflade_skyggekort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Geodatastyrelsen og Danske Kommuner"},"available_projections":["EPSG:4326","EPSG:4258","EPSG:25832","EPSG:25833","EPSG:32632","EPSG:32633","EPSG:4093","EPSG:4094","EPSG:4095","EPSG:4096","EPSG:3395","EPSG:3857"],"country_code":"DK","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png","id":"SDFE_Terraen_Skyggekort_40cm","max_zoom":20,"name":"SDFE Terrain Shadow Map (40 cm)","type":"wms","url":"https://kortforsyningen.kms.dk/dhm?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=dhm_terraen_skyggekort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Maa-Ameti põhikaart"},"available_projections":["EPSG:4326"],"country_code":"EE","id":"maaamet.ee-pohi_vr2","license_url":"http://svimik.com/Maa-amet_vastus_OSM.pdf","name":"Estonia Basemap (Maaamet)","type":"wms","url":"https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=pohi_vr2&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Maa-Ameti metsanduslik ortofoto"},"available_projections":["EPSG:4326"],"country_code":"EE","id":"maaamet.ee-cir_ngr","license_url":"http://svimik.com/Maa-amet_vastus_OSM.pdf","name":"Estonia Forestry (Maaamet)","type":"wms","url":"https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=cir_ngr&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Maa-Ameti katastrikaart ortofoto alusel"},"available_projections":["EPSG:4326"],"country_code":"EE","id":"Maaamet-Estonia_Cadastre","license_url":"http://svimik.com/Maa-amet_vastus_OSM.pdf","name":"Estonia Cadastre (Maaamet)","type":"wms","url":"https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=of10000,TOPOYKSUS_6569,TOPOYKSUS_6573&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Maa-Ameti reljeefikaart"},"available_projections":["EPSG:4326"],"country_code":"EE","id":"maaamet.ee-reljeef","license_url":"http://svimik.com/Maa-amet_vastus_OSM.pdf","name":"Estonia Hillshading (Maaamet)","type":"wms","url":"https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=reljeef&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Maa-Ameti ortofoto"},"available_projections":["EPSG:3301"],"best":true,"country_code":"EE","id":"Maaamet-Estonia_Ortho","license_url":"http://svimik.com/Maa-amet_vastus_OSM.pdf","max_zoom":21,"min_zoom":15,"name":"Estonia Ortho (Maaamet)","type":"wms","url":"https://kaart.maaamet.ee/wms/alus?VERSION=1.1.1&REQUEST=GetMap&LAYERS=of10000&SRS={proj}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Maa-Ameti ortofoto"},"country_code":"EE","id":"maaamet.ee-orto","license_url":"http://svimik.com/Maa-amet_vastus_OSM.pdf","max_zoom":18,"min_zoom":6,"name":"Estonia Ortho (Maaamet)","type":"tms","url":"https://tiles.maaamet.ee/tm/tms/1.0.0/foto@GMC/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-17.88463,28.44606],[-17.89395,28.52255],[-18.02125,28.74819],[-18.02241,28.80384],[-17.9424,28.87261],[-17.89118,28.87371],[-17.89033,28.85151],[-17.76759,28.85378],[-17.76698,28.83122],[-17.74127,28.832],[-17.73949,28.76422],[-17.71398,28.76497],[-17.71293,28.73037],[-17.75744,28.69318],[-17.75708,28.67413],[-17.74579,28.67435],[-17.74573,28.61656],[-17.75197,28.58337],[-17.76225,28.5592],[-17.78331,28.54167],[-17.78316,28.49366],[-17.80861,28.4925],[-17.80601,28.4469],[-17.88463,28.44606]],[[-18.1661,27.78516],[-18.16349,27.69492],[-18.08898,27.69634],[-18.08734,27.67387],[-18.03641,27.67537],[-18.03501,27.63026],[-17.959,27.6324],[-17.86033,27.7926],[-17.86303,27.83688],[-17.8884,27.83649],[-17.88913,27.85905],[-17.99065,27.85675],[-18.03868,27.76558],[-18.11464,27.76379],[-18.11546,27.78636],[-18.1661,27.78516]],[[-17.36038,28.06398],[-17.36297,28.17572],[-17.33756,28.17637],[-17.33846,28.2213],[-17.18579,28.22388],[-17.08208,28.13518],[-17.08084,28.068],[-17.13154,28.06681],[-17.15633,28.02146],[-17.23211,28.02037],[-17.23199,27.99804],[-17.25768,27.99784],[-17.25785,28.01997],[-17.30867,28.01923],[-17.36038,28.06398]],[[-16.92782,28.32758],[-16.92866,28.37219],[-16.87767,28.37293],[-16.87807,28.39542],[-16.52143,28.42261],[-16.44571,28.49113],[-16.44625,28.53597],[-16.42059,28.53627],[-16.42092,28.55884],[-16.34433,28.55976],[-16.3446,28.58221],[-16.19125,28.58372],[-16.19162,28.60684],[-16.12793,28.60782],[-16.1278,28.59218],[-16.09951,28.5925],[-16.09934,28.51638],[-16.16481,28.51612],[-16.16475,28.49386],[-16.23858,28.44847],[-16.26535,28.44761],[-16.26586,28.403],[-16.31675,28.40176],[-16.31631,28.38019],[-16.34208,28.37951],[-16.34083,28.2893],[-16.41584,28.19761],[-16.4151,28.13113],[-16.51533,28.01648],[-16.61684,28.01532],[-16.61681,27.99305],[-16.71842,27.99192],[-16.7191,28.03714],[-16.7447,28.03679],[-16.74534,28.08181],[-16.7707,28.08161],[-16.8224,28.1259],[-16.82317,28.17087],[-16.8487,28.17075],[-16.85028,28.26079],[-16.87565,28.26055],[-16.87608,28.28322],[-16.90151,28.28277],[-16.90239,28.32793],[-16.92782,28.32758]],[[-15.85374,27.90089],[-15.8542,27.99018],[-15.82895,27.99066],[-15.82911,28.03558],[-15.7783,28.03632],[-15.75328,28.08143],[-15.72788,28.08157],[-15.72826,28.17186],[-15.49897,28.1728],[-15.49874,28.15041],[-15.44978,28.15075],[-15.45016,28.19614],[-15.39728,28.19614],[-15.39644,28.03836],[-15.37103,28.03802],[-15.37065,28.01532],[-15.34578,28.01532],[-15.34548,27.92544],[-15.3708,27.92524],[-15.37057,27.83521],[-15.39598,27.83474],[-15.421,27.78797],[-15.47181,27.78939],[-15.47188,27.76665],[-15.52277,27.76678],[-15.54771,27.72161],[-15.62361,27.72134],[-15.62415,27.74199],[-15.70075,27.74335],[-15.80167,27.81105],[-15.85374,27.90089]],[[-14.52156,28.04678],[-14.52244,28.11841],[-14.41575,28.11561],[-14.21688,28.22788],[-14.21537,28.33903],[-14.16417,28.45283],[-14.11151,28.4748],[-14.03358,28.72267],[-13.95652,28.74494],[-13.95617,28.76659],[-13.82902,28.76643],[-13.82896,28.78798],[-13.80007,28.78793],[-13.8013,28.71899],[-13.82757,28.71935],[-13.82786,28.6518],[-13.80258,28.6519],[-13.80339,28.53842],[-13.82885,28.53847],[-13.83151,28.39702],[-13.91582,28.22414],[-13.98564,28.22357],[-14.03696,28.17958],[-14.13871,28.17999],[-14.13866,28.15791],[-14.21537,28.15781],[-14.21472,28.11189],[-14.29132,28.04524],[-14.33197,28.03687],[-14.44578,28.04698],[-14.44666,28.0658],[-14.49628,28.06826],[-14.49593,28.04585],[-14.52156,28.04678]],[[-13.80066,28.84566],[-13.80093,28.82311],[-13.77569,28.82305],[-13.69729,28.88982],[-13.69729,28.91277],[-13.60725,28.9118],[-13.43886,29.00024],[-13.43746,29.13513],[-13.4117,29.13499],[-13.41056,29.22298],[-13.45928,29.25559],[-13.45974,29.2942],[-13.50913,29.29456],[-13.51006,29.31635],[-13.56354,29.31729],[-13.56406,29.27138],[-13.53892,29.2712],[-13.53897,29.25004],[-13.56613,29.25013],[-13.5666,29.203],[-13.51565,29.20223],[-13.51565,29.18206],[-13.5398,29.18278],[-13.54089,29.13753],[-13.65782,29.13685],[-13.71322,29.09351],[-13.76634,29.09345],[-13.85025,29.01659],[-13.85182,28.98343],[-13.85244,28.91486],[-13.90131,28.89245],[-13.9024,28.84698],[-13.80066,28.84566]],[[1.64799,38.99907],[1.73217,38.99936],[1.73147,39.04417],[1.64895,39.04319],[1.64816,39.12764],[1.39486,39.12657],[1.39544,39.08642],[1.22811,39.08526],[1.22911,39.0029],[1.14487,39.0018],[1.14528,38.832],[1.31136,38.83316],[1.31219,38.79065],[1.39469,38.79162],[1.39519,38.75296],[1.31128,38.75193],[1.31259,38.62388],[1.6489,38.62511],[1.64807,38.71115],[1.58456,38.71012],[1.58116,38.70054],[1.54915,38.70028],[1.51972,38.70921],[1.50355,38.72532],[1.48133,38.91551],[1.55189,38.92544],[1.56673,38.95666],[1.64874,38.95833],[1.64799,38.99907]],[[2.54507,39.41667],[2.43933,39.41611],[2.43871,39.48469],[2.43902,39.49934],[2.31223,39.49934],[2.31192,39.54179],[2.22907,39.541],[2.22835,39.62606],[2.34601,39.62709],[2.92704,39.96016],[3.14566,39.96005],[3.14608,40.00198],[3.23139,40.00198],[3.23129,39.83292],[3.14823,39.83316],[3.14844,39.79357],[3.48148,39.79318],[3.48035,39.5959],[3.31506,39.47846],[3.31462,39.37855],[3.08302,39.24994],[2.97986,39.25015],[2.97904,39.3335],[2.72874,39.33342],[2.72885,39.45814],[2.64569,39.45774],[2.64538,39.49966],[2.54528,39.49942],[2.54507,39.41667]],[[3.81204,40.04344],[3.72908,40.0438],[3.72862,39.95842],[3.81266,39.9576],[3.81228,39.91644],[3.9609,39.91598],[4.19381,39.79131],[4.31503,39.79058],[4.31599,39.83293],[4.39874,39.83204],[4.39737,39.91858],[4.3158,39.91933],[4.31619,40.0434],[4.2319,40.04436],[4.23248,40.08478],[4.14915,40.08611],[4.14906,40.12552],[4.0628,40.12722],[4.06242,40.08499],[3.81287,40.08529],[3.81204,40.04344]],[[-8.89106,41.82289],[-9.1092,42.57511],[-9.03655,42.73066],[-9.08834,42.72696],[-9.14661,42.77503],[-9.21855,42.90163],[-9.2761,42.86051],[-9.30991,42.93113],[-9.27898,42.9822],[-9.30991,43.06004],[-9.25236,43.10417],[-9.2315,43.17032],[-9.14733,43.21018],[-9.06748,43.19916],[-9.03367,43.24267],[-8.99842,43.24477],[-8.99986,43.29558],[-8.93727,43.30553],[-8.92936,43.32699],[-8.8639,43.32908],[-8.87613,43.37407],[-8.82217,43.37354],[-8.78548,43.31914],[-8.70635,43.305],[-8.60996,43.3296],[-8.55097,43.32332],[-8.52435,43.3364],[-8.52507,43.36465],[-8.45745,43.39184],[-8.36105,43.41118],[-8.36033,43.46342],[-8.33444,43.57974],[-8.27761,43.57088],[-8.06467,43.72392],[-7.99921,43.7234],[-7.9172,43.78264],[-7.85605,43.79146],[-7.83591,43.73743],[-7.66284,43.80982],[-7.31889,43.67827],[-7.19975,43.58308],[-6.24882,43.6075],[-6.12293,43.57901],[-5.85204,43.6799],[-5.60363,43.57087],[-5.28553,43.56191],[-5.17875,43.49916],[-4.90899,43.48367],[-4.61562,43.4192],[-4.18399,43.42492],[-3.80295,43.51954],[-3.74,43.48693],[-3.56128,43.54236],[-3.1083,43.38163],[-2.93857,43.46246],[-2.74524,43.47551],[-2.30462,43.31706],[-1.9854,43.3563],[-1.85528,43.39725],[-1.7698,43.39644],[-1.77005,43.37605],[-1.71005,43.37569],[-1.71135,43.33125],[-1.72259,43.31318],[-1.68904,43.31291],[-1.68811,43.33413],[-1.64467,43.33372],[-1.64498,43.31332],[-1.60299,43.31295],[-1.60344,43.29266],[-1.56359,43.29212],[-1.56305,43.31338],[-1.47799,43.31284],[-1.36677,43.27614],[-1.35688,43.23815],[-1.37037,43.1713],[-1.44231,43.08336],[-1.41983,43.06036],[-1.37307,43.05117],[-1.36407,43.11159],[-1.30203,43.13522],[-1.23549,43.13325],[-1.27955,43.07744],[-1.19232,43.06496],[-1.00619,43.00778],[-0.94234,42.9749],[-0.7562,42.98213],[-0.71484,42.96108],[-0.69685,42.90314],[-0.55118,42.82207],[-0.50442,42.84845],[-0.42889,42.82009],[-0.31648,42.86558],[-0.14563,42.81086],[-0.03143,42.71249],[0.18618,42.7541],[0.30218,42.71777],[0.36422,42.74287],[0.44875,42.71447],[0.62769,42.7224],[0.64118,42.85767],[0.71492,42.88272],[0.9676,42.81811],[1.10878,42.79898],[1.17532,42.73429],[1.36326,42.74155],[1.41137,42.70939],[1.48061,42.71034],[1.4813,42.50107],[1.64436,42.50203],[1.64328,42.54245],[1.73041,42.54342],[1.73164,42.50118],[2.06386,42.50164],[2.06456,42.45902],[2.39693,42.45994],[2.39768,42.41784],[2.48048,42.41797],[2.48098,42.37594],[2.64479,42.37626],[2.64448,42.45924],[2.81133,42.45961],[2.81126,42.50104],[3.06388,42.50085],[3.06388,42.45915],[3.23078,42.45934],[3.23049,42.37644],[3.31415,42.37604],[3.31412,42.33399],[3.39785,42.33404],[3.39739,42.29009],[3.31389,42.29084],[3.31397,42.20702],[3.14759,42.2073],[3.14759,42.12606],[3.23055,42.126],[3.24668,41.95294],[3.19452,41.85589],[3.06054,41.76474],[2.78358,41.63718],[2.26293,41.42716],[2.16492,41.29893],[1.86008,41.22322],[1.3763,41.11627],[1.17937,41.04646],[1.08585,41.04849],[0.75854,40.81956],[0.9114,40.73376],[0.87813,40.67514],[0.66502,40.53587],[0.55801,40.55022],[0.43392,40.37576],[0.26756,40.19192],[0.16415,40.06472],[0.07513,40.01447],[0.01039,39.89522],[-0.09392,39.81169],[-0.18474,39.63117],[-0.29085,39.50363],[-0.28636,39.33343],[-0.18564,39.17746],[-0.21352,39.15585],[-0.11101,38.97222],[0.00949,38.88268],[0.12189,38.87218],[0.23429,38.79864],[0.25587,38.72642],[0.09581,38.61338],[-0.0022,38.60706],[-0.05705,38.52691],[-0.27197,38.47624],[-0.37987,38.39312],[-0.38347,38.33813],[-0.45091,38.33108],[-0.50487,38.28309],[-0.48238,38.19481],[-0.42933,38.16583],[-0.45451,38.14886],[-0.584,38.17219],[-0.61367,38.11986],[-0.63705,37.96122],[-0.68111,37.94562],[-0.73237,37.88107],[-0.72158,37.78306],[-0.68831,37.734],[-0.66415,37.62315],[-0.71939,37.58784],[-0.91963,37.53758],[-1.11071,37.51641],[-1.33832,37.52867],[-1.44089,37.39037],[-1.6767,37.27652],[-1.85408,36.91229],[-2.06835,36.69291],[-2.21588,36.66192],[-2.37219,36.78018],[-2.68129,36.65911],[-2.92015,36.66756],[-3.09402,36.71263],[-3.46108,36.65488],[-3.72804,36.69291],[-4.37435,36.66333],[-4.65712,36.44042],[-4.9188,36.45313],[-5.16995,36.35135],[-5.28411,36.19702],[-5.26809,36.12418],[-5.35248,36.12247],[-5.35161,36.04014],[-5.43658,36.03889],[-5.43532,36.00344],[-5.68886,36.00365],[-5.68996,36.04053],[-5.85506,36.03856],[-5.85668,36.12421],[-5.93848,36.12215],[-5.94003,36.16556],[-5.99834,36.1645],[-6.03573,36.1781],[-6.07752,36.22241],[-6.15061,36.28646],[-6.23154,36.37701],[-6.33585,36.53106],[-6.32146,36.58163],[-6.40419,36.6235],[-6.47433,36.74897],[-6.41588,36.79939],[-6.49052,36.91738],[-6.62989,37.0194],[-6.87448,37.10838],[-7.04264,37.18507],[-7.26474,37.18435],[-7.37535,37.15354],[-7.40832,37.16822],[-7.42029,37.21183],[-7.42492,37.23505],[-7.43805,37.2452],[-7.44597,37.33261],[-7.4481,37.39094],[-7.46963,37.40758],[-7.4647,37.45305],[-7.50197,37.51641],[-7.51916,37.52292],[-7.52196,37.57237],[-7.45013,37.66958],[-7.4249,37.75992],[-7.31666,37.83997],[-7.26833,37.98895],[-7.15368,38.01552],[-7.11771,38.05536],[-7.0143,38.02438],[-6.99632,38.10756],[-6.96147,38.20125],[-7.08062,38.15708],[-7.34027,38.44024],[-7.26383,38.73807],[-7.04352,38.87297],[-7.06151,38.90796],[-6.96934,39.01983],[-7.00081,39.08879],[-7.15368,39.09577],[-7.15255,39.16029],[-7.24472,39.19689],[-7.25596,39.28133],[-7.33689,39.35351],[-7.3279,39.45599],[-7.51449,39.58865],[-7.55271,39.67954],[-7.05027,39.67522],[-6.99519,39.81954],[-6.92213,39.87909],[-6.88616,40.02299],[-7.04128,40.13479],[-7.01767,40.26615],[-6.8086,40.34501],[-6.86818,40.44516],[-6.85356,40.60664],[-6.83783,40.87576],[-6.9536,41.03704],[-6.80186,41.03959],[-6.76814,41.13871],[-6.64112,41.26556],[-6.56244,41.26303],[-6.21737,41.5791],[-6.31628,41.64465],[-6.51523,41.64129],[-6.58717,41.68832],[-6.54783,41.85597],[-6.62988,41.91121],[-7.13345,41.94048],[-7.16829,41.87188],[-7.42569,41.78477],[-7.95398,41.84593],[-8.13045,41.78058],[-8.25185,41.90786],[-8.12933,42.03488],[-8.24848,42.1008],[-8.36762,42.05575],[-8.60704,42.03405],[-8.89106,41.82289]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4230","EPSG:4326","EPSG:4258","EPSG:32627","EPSG:32628","EPSG:23029","EPSG:23030","EPSG:23031","EPSG:32629","EPSG:32630","EPSG:32631","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:3857"],"country_code":"ES","id":"Catastro-Spain","name":"Catastro Spain","type":"wms","url":"https://ovc.catastro.meh.es/Cartografia/WMS/ServidorWMS.aspx?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Catastro&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-17.92917,28.89106],[-18.03334,28.79981],[-18.03743,28.73178],[-17.87811,28.43224],[-17.83113,28.41787],[-17.72696,28.56328],[-17.73105,28.67982],[-17.68407,28.73715],[-17.75352,28.86781],[-17.85768,28.86065],[-17.92917,28.89106]],[[-18.07818,27.77211],[-18.13707,27.78751],[-18.17054,27.76441],[-18.1779,27.70695],[-18.15782,27.68799],[-18.0581,27.6791],[-18.00656,27.62574],[-17.96105,27.62218],[-17.93896,27.70814],[-17.90751,27.7194],[-17.86199,27.80468],[-17.8727,27.84079],[-17.92558,27.86801],[-18.00522,27.83605],[-18.01392,27.8035],[-18.07818,27.77211]],[[-17.26878,28.23996],[-17.33403,28.21933],[-17.36331,28.1537],[-17.36666,28.08803],[-17.33069,28.04742],[-17.27296,28.00681],[-17.20017,28.00533],[-17.14412,28.02896],[-17.07803,28.0836],[-17.08723,28.1537],[-17.1826,28.2149],[-17.26878,28.23996]],[[-16.9358,28.37623],[-16.945,28.33574],[-16.71995,27.98317],[-16.62541,27.98317],[-16.52753,28.01641],[-16.39953,28.14632],[-16.33594,28.30922],[-16.33009,28.36445],[-16.10253,28.52408],[-16.09834,28.5814],[-16.14268,28.62547],[-16.33929,28.59609],[-16.43801,28.53143],[-16.53924,28.44025],[-16.83959,28.41229],[-16.9358,28.37623]],[[-15.68833,28.20585],[-15.47395,28.16437],[-15.42427,28.21046],[-15.36283,28.17244],[-15.38375,28.05598],[-15.33146,27.98444],[-15.3576,27.8042],[-15.5916,27.69777],[-15.7001,27.73365],[-15.79944,27.80305],[-15.87134,27.92439],[-15.84781,28.03637],[-15.74716,28.08943],[-15.73147,28.18396],[-15.68833,28.20585]],[[-14.50882,28.13448],[-14.41078,28.13448],[-14.24868,28.24278],[-14.23822,28.34637],[-14.03953,28.73911],[-13.89442,28.78265],[-13.78592,28.77692],[-13.82122,28.38433],[-13.91534,28.19095],[-14.18593,28.13563],[-14.30881,28.00529],[-14.54019,28.05144],[-14.50882,28.13448]],[[-13.5525,29.37727],[-13.50868,29.36824],[-13.47955,29.38728],[-13.47543,29.40963],[-13.5003,29.42807],[-13.5505,29.40712],[-13.5525,29.37727]],[[-13.3976,29.16102],[-13.42814,29.12157],[-13.44174,28.99084],[-13.53899,28.91947],[-13.70841,28.88468],[-13.77116,28.80865],[-13.90083,28.83522],[-13.90711,28.88926],[-13.85796,28.93686],[-13.85691,29.03657],[-13.67599,29.14988],[-13.56723,29.15719],[-13.55428,29.35073],[-13.39988,29.21806],[-13.3976,29.16102]],[[-13.33792,29.28667],[-13.35035,29.27436],[-13.3386,29.26533],[-13.32617,29.27765],[-13.33792,29.28667]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"GRAFCAN OrtoExpress Urbana","url":"https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOURBANAWMS_20160101"},"available_projections":["EPSG:4326","EPSG:32628","EPSG:32627"],"best":true,"country_code":"ES","description":"High resolution imagery covering the Canary Islands, 12.5 or 10 cm/pixel in urban areas, and 20 cm/pixel elsewhere. Older in some urban areas than the lower-resolution \"GRAFCAN OrtoExpress\".","id":"GRAFCAN-Canary_Islands","name":"GRAFCAN OrtoExpress Urbana - Canary Islands","type":"wms","url":"https://idecan1.grafcan.es/ServicioWMS/OrtoUrb?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OU&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-17.92917,28.89106],[-18.03334,28.79981],[-18.03743,28.73178],[-17.87811,28.43224],[-17.83113,28.41787],[-17.72696,28.56328],[-17.73105,28.67982],[-17.68407,28.73715],[-17.75352,28.86781],[-17.85768,28.86065],[-17.92917,28.89106]],[[-18.07818,27.77211],[-18.13707,27.78751],[-18.17054,27.76441],[-18.1779,27.70695],[-18.15782,27.68799],[-18.0581,27.6791],[-18.00656,27.62574],[-17.96105,27.62218],[-17.93896,27.70814],[-17.90751,27.7194],[-17.86199,27.80468],[-17.8727,27.84079],[-17.92558,27.86801],[-18.00522,27.83605],[-18.01392,27.8035],[-18.07818,27.77211]],[[-17.26878,28.23996],[-17.33403,28.21933],[-17.36331,28.1537],[-17.36666,28.08803],[-17.33069,28.04742],[-17.27296,28.00681],[-17.20017,28.00533],[-17.14412,28.02896],[-17.07803,28.0836],[-17.08723,28.1537],[-17.1826,28.2149],[-17.26878,28.23996]],[[-16.9358,28.37623],[-16.945,28.33574],[-16.71995,27.98317],[-16.62541,27.98317],[-16.52753,28.01641],[-16.39953,28.14632],[-16.33594,28.30922],[-16.33009,28.36445],[-16.10253,28.52408],[-16.09834,28.5814],[-16.14268,28.62547],[-16.33929,28.59609],[-16.43801,28.53143],[-16.53924,28.44025],[-16.83959,28.41229],[-16.9358,28.37623]],[[-15.68833,28.20585],[-15.47395,28.16437],[-15.42427,28.21046],[-15.36283,28.17244],[-15.38375,28.05598],[-15.33146,27.98444],[-15.3576,27.8042],[-15.5916,27.69777],[-15.7001,27.73365],[-15.79944,27.80305],[-15.87134,27.92439],[-15.84781,28.03637],[-15.74716,28.08943],[-15.73147,28.18396],[-15.68833,28.20585]],[[-14.50882,28.13448],[-14.41078,28.13448],[-14.24868,28.24278],[-14.23822,28.34637],[-14.03953,28.73911],[-13.89442,28.78265],[-13.78592,28.77692],[-13.82122,28.38433],[-13.91534,28.19095],[-14.18593,28.13563],[-14.30881,28.00529],[-14.54019,28.05144],[-14.50882,28.13448]],[[-13.5525,29.37727],[-13.50868,29.36824],[-13.47955,29.38728],[-13.47543,29.40963],[-13.5003,29.42807],[-13.5505,29.40712],[-13.5525,29.37727]],[[-13.3976,29.16102],[-13.42814,29.12157],[-13.44174,28.99084],[-13.53899,28.91947],[-13.70841,28.88468],[-13.77116,28.80865],[-13.90083,28.83522],[-13.90711,28.88926],[-13.85796,28.93686],[-13.85691,29.03657],[-13.67599,29.14988],[-13.56723,29.15719],[-13.55428,29.35073],[-13.39988,29.21806],[-13.3976,29.16102]],[[-13.33792,29.28667],[-13.35035,29.27436],[-13.3386,29.26533],[-13.32617,29.27765],[-13.33792,29.28667]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"GRAFCAN OrtoExpress","url":"https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOWMS_20160101"},"available_projections":["EPSG:4326","EPSG:32628","EPSG:32627"],"country_code":"ES","description":"High resolution imagery covering the Canary Islands, 20 cm/pixel. More recent in some urban areas than the higher-resolution \"GRAFCAN OrtoExpress Urbana\".","id":"GRAFCAN_Express-Canary_Islands","name":"GRAFCAN OrtoExpress - Canary Islands","type":"wms","url":"https://idecan1.grafcan.es/ServicioWMS/OrtoExpress?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=ortoexpress&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-1.9358,41.43834],[-1.89601,41.43869],[-1.89536,41.39687],[-1.9767,41.39616],[-1.97639,41.37623],[-2.06201,41.37548],[-2.06262,41.41471],[-2.10458,41.41434],[-2.10363,41.35367],[-2.14448,41.35331],[-2.1419,41.18683],[-2.06204,41.18753],[-2.06171,41.16624],[-2.02046,41.16661],[-2.01887,41.06334],[-2.10083,41.06262],[-2.10114,41.08296],[-2.22733,41.08185],[-2.22704,41.0635],[-2.26912,41.06313],[-2.2688,41.04257],[-2.35325,41.04182],[-2.35356,41.06148],[-2.39487,41.06112],[-2.39457,41.04206],[-2.43722,41.04168],[-2.43756,41.06315],[-2.47928,41.06278],[-2.47991,41.10369],[-2.52078,41.10333],[-2.5211,41.12429],[-2.60415,41.12357],[-2.60481,41.16628],[-2.6471,41.16591],[-2.64808,41.22931],[-2.72874,41.2286],[-2.72907,41.24974],[-2.89552,41.24828],[-2.89649,41.31063],[-2.9363,41.31028],[-2.93571,41.27231],[-3.14692,41.27046],[-3.14723,41.29045],[-3.22828,41.28974],[-3.22767,41.25008],[-3.39581,41.2486],[-3.39518,41.20808],[-3.43492,41.20773],[-3.43429,41.16696],[-3.47877,41.16657],[-3.47844,41.14556],[-3.60336,41.14446],[-3.6027,41.10169],[-3.64539,41.10131],[-3.64508,41.08159],[-3.68735,41.08122],[-3.68673,41.04104],[-3.72866,41.04067],[-3.72803,40.9998],[-3.76896,40.99944],[-3.76864,40.97886],[-3.85473,40.97811],[-3.8544,40.95653],[-3.89857,40.95615],[-3.89764,40.89575],[-3.93906,40.89539],[-3.93716,40.77204],[-4.06198,40.77093],[-4.06133,40.72926],[-4.10372,40.72888],[-4.10311,40.68918],[-4.14628,40.6888],[-4.14498,40.60421],[-4.19025,40.60381],[-4.18994,40.58362],[-4.22946,40.58327],[-4.22979,40.60487],[-4.27054,40.60451],[-4.26958,40.54211],[-4.31384,40.54171],[-4.31163,40.39758],[-4.39376,40.39685],[-4.39345,40.37677],[-4.43723,40.37638],[-4.43623,40.31123],[-4.52192,40.31046],[-4.52037,40.20897],[-4.56131,40.2086],[-4.56099,40.18763],[-4.68895,40.18649],[-4.68933,40.21101],[-4.73192,40.21063],[-4.73252,40.24966],[-4.76838,40.24934],[-4.76809,40.23035],[-4.81104,40.22996],[-4.81147,40.20726],[-4.8542,40.18414],[-4.85264,40.12563],[-4.93699,40.12488],[-4.93638,40.08529],[-5.35538,40.08155],[-5.35606,40.12562],[-5.44027,40.12487],[-5.44091,40.16673],[-5.60382,40.16527],[-5.60448,40.20881],[-5.68646,40.20808],[-5.68712,40.25131],[-6.02166,40.24834],[-6.02295,40.33257],[-6.10433,40.33184],[-6.1056,40.41451],[-6.18951,40.41376],[-6.19018,40.45745],[-6.26971,40.45675],[-6.26909,40.41653],[-6.35192,40.41579],[-6.35128,40.37422],[-6.43325,40.37349],[-6.43264,40.33361],[-6.52245,40.33281],[-6.52116,40.24849],[-6.59942,40.24779],[-6.59886,40.21128],[-6.85568,40.20899],[-6.85634,40.25257],[-6.93622,40.25186],[-6.93751,40.33657],[-6.85111,40.33734],[-6.86001,40.91672],[-6.93544,40.91605],[-6.93741,41.0435],[-6.85482,41.04423],[-6.85548,41.08706],[-6.77015,41.08781],[-6.77245,41.23623],[-6.68379,41.23701],[-6.60436,41.2377],[-6.60524,41.29474],[-6.5193,41.29549],[-6.51991,41.33479],[-6.43673,41.33552],[-6.43801,41.41814],[-6.35318,41.41888],[-6.35447,41.50141],[-6.26889,41.50216],[-6.2708,41.6245],[-6.35661,41.62375],[-6.35724,41.66401],[-6.43548,41.66333],[-6.4349,41.62651],[-6.52279,41.62575],[-6.52343,41.66635],[-6.6034,41.66565],[-6.60733,41.9166],[-7.02209,41.913],[-7.02406,42.03872],[-7.1054,42.03801],[-7.10613,42.08421],[-7.0208,42.08495],[-7.02276,42.2094],[-6.93699,42.21014],[-6.93763,42.25087],[-6.8548,42.25159],[-6.85545,42.29329],[-6.77342,42.294],[-6.77403,42.33244],[-6.85325,42.33176],[-6.85523,42.4569],[-7.10341,42.45477],[-7.10811,42.75115],[-7.02199,42.75189],[-7.02241,42.77825],[-6.93976,42.77896],[-6.94199,42.91962],[-6.77302,42.92106],[-6.77363,42.95958],[-6.52329,42.96172],[-6.52391,43.00095],[-6.43893,43.00167],[-6.44024,43.08361],[-5.93782,43.08789],[-5.93708,43.04189],[-5.85421,43.0426],[-5.85357,43.00258],[-5.77236,43.00327],[-5.77363,43.08308],[-5.6027,43.08453],[-5.60202,43.04222],[-5.52161,43.04291],[-5.52226,43.08409],[-5.4376,43.08481],[-5.43827,43.12651],[-5.10444,43.12935],[-5.10573,43.2099],[-5.02386,43.2106],[-5.02451,43.25117],[-4.90017,43.25222],[-4.89941,43.20501],[-4.81126,43.20576],[-4.80966,43.10538],[-4.76975,43.10571],[-4.76937,43.08168],[-4.72945,43.08202],[-4.72881,43.04219],[-4.56322,43.0436],[-4.56353,43.06296],[-4.39599,43.06438],[-4.39566,43.04336],[-4.3537,43.04371],[-4.35266,42.97836],[-4.23013,42.9794],[-4.22913,42.91625],[-4.18774,42.9166],[-4.18706,42.87407],[-4.10552,42.87476],[-4.10486,42.83348],[-3.97801,42.83457],[-3.97733,42.79214],[-3.9375,42.79248],[-3.93781,42.81183],[-3.85397,42.81254],[-3.85427,42.83193],[-3.89573,42.83158],[-3.89607,42.85343],[-3.93821,42.85307],[-3.93889,42.89577],[-3.9806,42.89542],[-3.98093,42.91627],[-4.0222,42.91591],[-4.0229,42.96014],[-3.97851,42.96052],[-3.97946,43.01999],[-3.93883,43.02034],[-3.93918,43.04239],[-3.89704,43.04275],[-3.89738,43.06414],[-3.85424,43.06451],[-3.8549,43.10583],[-3.77086,43.10654],[-3.77116,43.12515],[-3.72819,43.12551],[-3.72853,43.14656],[-3.68713,43.14691],[-3.68778,43.18786],[-3.60365,43.18858],[-3.60331,43.16747],[-3.52278,43.16815],[-3.52243,43.14619],[-3.39669,43.14726],[-3.39699,43.16601],[-3.35444,43.16637],[-3.35479,43.18837],[-3.31268,43.18873],[-3.31299,43.20828],[-3.22993,43.20899],[-3.22959,43.18768],[-3.10343,43.18875],[-3.10274,43.14562],[-3.14546,43.14526],[-3.14516,43.1271],[-3.10617,43.12743],[-3.10445,43.01915],[-3.02075,43.01987],[-3.0201,42.97903],[-2.9811,42.97936],[-2.97977,42.8958],[-3.10476,42.89473],[-3.10276,42.76928],[-3.02199,42.76997],[-3.02168,42.74983],[-2.98024,42.75019],[-2.97988,42.7275],[-2.89613,42.72822],[-2.89679,42.76967],[-2.8534,42.77004],[-2.85405,42.81087],[-2.68577,42.81231],[-2.68544,42.79159],[-2.64523,42.79194],[-2.64489,42.77024],[-2.52005,42.7713],[-2.51936,42.72827],[-2.5607,42.72791],[-2.56038,42.7076],[-2.51944,42.70795],[-2.5181,42.62357],[-2.60404,42.62283],[-2.60439,42.64497],[-2.77154,42.64353],[-2.77188,42.66544],[-2.81176,42.6651],[-2.8121,42.68624],[-2.85469,42.68588],[-2.85337,42.60302],[-2.89413,42.60267],[-2.89379,42.58159],[-3.0619,42.58015],[-3.06031,42.47952],[-3.02191,42.47985],[-3.0199,42.3525],[-3.06255,42.35213],[-3.06029,42.20906],[-3.1012,42.20871],[-3.10086,42.18682],[-3.06175,42.18716],[-3.0611,42.14559],[-3.02029,42.14594],[-3.01963,42.10375],[-2.89602,42.10482],[-2.89501,42.04071],[-2.81222,42.04143],[-2.81353,42.1246],[-2.76871,42.12499],[-2.76905,42.14674],[-2.72695,42.14711],[-2.7266,42.12485],[-2.68706,42.12519],[-2.68605,42.06109],[-2.72804,42.06073],[-2.72739,42.0193],[-2.60343,42.02037],[-2.60376,42.04135],[-2.561,42.04173],[-2.56198,42.10411],[-2.52266,42.10445],[-2.52299,42.12577],[-2.47933,42.12615],[-2.47963,42.145],[-2.35517,42.14608],[-2.3555,42.16747],[-2.31184,42.16785],[-2.3115,42.14605],[-2.2699,42.14641],[-2.26924,42.1048],[-2.2295,42.10515],[-2.22981,42.12514],[-2.14467,42.12587],[-2.14432,42.10386],[-2.10385,42.10421],[-2.10156,41.95811],[-1.97689,41.95919],[-1.97655,41.93765],[-1.93473,41.93801],[-1.93504,41.95776],[-1.89453,41.95811],[-1.89483,41.97715],[-1.854,41.97751],[-1.85304,41.91638],[-1.81381,41.91672],[-1.81151,41.76984],[-1.7706,41.77019],[-1.76866,41.64582],[-1.85335,41.64508],[-1.85305,41.62567],[-1.89471,41.6253],[-1.89403,41.58215],[-1.97716,41.58142],[-1.97683,41.56021],[-1.9377,41.56055],[-1.9358,41.43834]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"ITACyL"},"available_projections":["EPSG:25830","EPSG:4230","EPSG:4258","EPSG:4326","EPSG:23028","EPSG:23029","EPSG:23030","EPSG:23031","EPSG:23032","EPSG:25828","EPSG:25829","EPSG:25831","EPSG:25832","EPSG:32627","EPSG:32628","EPSG:32629","EPSG:32630","EPSG:32631","EPSG:32632"],"country_code":"ES","id":"ITACyL-Castile-and-Leon","name":"ITACyL - Castile and León","type":"wms","url":"http://orto.wms.itacyl.es/WMS?REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=Ortofoto_CyL&SRS={proj}&FORMAT=image/jpeg&STYLES=Default&TRANSPARENT=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-17.88463,28.44606],[-17.89395,28.52255],[-18.02125,28.74819],[-18.02241,28.80384],[-17.9424,28.87261],[-17.89118,28.87371],[-17.89033,28.85151],[-17.76759,28.85378],[-17.76698,28.83122],[-17.74127,28.832],[-17.73949,28.76422],[-17.71398,28.76497],[-17.71293,28.73037],[-17.75744,28.69318],[-17.75708,28.67413],[-17.74579,28.67435],[-17.74573,28.61656],[-17.75197,28.58337],[-17.76225,28.5592],[-17.78331,28.54167],[-17.78316,28.49366],[-17.80861,28.4925],[-17.80601,28.4469],[-17.88463,28.44606]],[[-18.1661,27.78516],[-18.16349,27.69492],[-18.08898,27.69634],[-18.08734,27.67387],[-18.03641,27.67537],[-18.03501,27.63026],[-17.959,27.6324],[-17.86033,27.7926],[-17.86303,27.83688],[-17.8884,27.83649],[-17.88913,27.85905],[-17.99065,27.85675],[-18.03868,27.76558],[-18.11464,27.76379],[-18.11546,27.78636],[-18.1661,27.78516]],[[-17.36038,28.06398],[-17.36297,28.17572],[-17.33756,28.17637],[-17.33846,28.2213],[-17.18579,28.22388],[-17.08208,28.13518],[-17.08084,28.068],[-17.13154,28.06681],[-17.15633,28.02146],[-17.23211,28.02037],[-17.23199,27.99804],[-17.25768,27.99784],[-17.25785,28.01997],[-17.30867,28.01923],[-17.36038,28.06398]],[[-16.92782,28.32758],[-16.92866,28.37219],[-16.87767,28.37293],[-16.87807,28.39542],[-16.52143,28.42261],[-16.44571,28.49113],[-16.44625,28.53597],[-16.42059,28.53627],[-16.42092,28.55884],[-16.34433,28.55976],[-16.3446,28.58221],[-16.19125,28.58372],[-16.19162,28.60684],[-16.12793,28.60782],[-16.1278,28.59218],[-16.09951,28.5925],[-16.09934,28.51638],[-16.16481,28.51612],[-16.16475,28.49386],[-16.23858,28.44847],[-16.26535,28.44761],[-16.26586,28.403],[-16.31675,28.40176],[-16.31631,28.38019],[-16.34208,28.37951],[-16.34083,28.2893],[-16.41584,28.19761],[-16.4151,28.13113],[-16.51533,28.01648],[-16.61684,28.01532],[-16.61681,27.99305],[-16.71842,27.99192],[-16.7191,28.03714],[-16.7447,28.03679],[-16.74534,28.08181],[-16.7707,28.08161],[-16.8224,28.1259],[-16.82317,28.17087],[-16.8487,28.17075],[-16.85028,28.26079],[-16.87565,28.26055],[-16.87608,28.28322],[-16.90151,28.28277],[-16.90239,28.32793],[-16.92782,28.32758]],[[-15.85374,27.90089],[-15.8542,27.99018],[-15.82895,27.99066],[-15.82911,28.03558],[-15.7783,28.03632],[-15.75328,28.08143],[-15.72788,28.08157],[-15.72826,28.17186],[-15.49897,28.1728],[-15.49874,28.15041],[-15.44978,28.15075],[-15.45016,28.19614],[-15.39728,28.19614],[-15.39644,28.03836],[-15.37103,28.03802],[-15.37065,28.01532],[-15.34578,28.01532],[-15.34548,27.92544],[-15.3708,27.92524],[-15.37057,27.83521],[-15.39598,27.83474],[-15.421,27.78797],[-15.47181,27.78939],[-15.47188,27.76665],[-15.52277,27.76678],[-15.54771,27.72161],[-15.62361,27.72134],[-15.62415,27.74199],[-15.70075,27.74335],[-15.80167,27.81105],[-15.85374,27.90089]],[[-14.52156,28.04678],[-14.52244,28.11841],[-14.41575,28.11561],[-14.21688,28.22788],[-14.21537,28.33903],[-14.16417,28.45283],[-14.11151,28.4748],[-14.03358,28.72267],[-13.95652,28.74494],[-13.95617,28.76659],[-13.82902,28.76643],[-13.82896,28.78798],[-13.80007,28.78793],[-13.8013,28.71899],[-13.82757,28.71935],[-13.82786,28.6518],[-13.80258,28.6519],[-13.80339,28.53842],[-13.82885,28.53847],[-13.83151,28.39702],[-13.91582,28.22414],[-13.98564,28.22357],[-14.03696,28.17958],[-14.13871,28.17999],[-14.13866,28.15791],[-14.21537,28.15781],[-14.21472,28.11189],[-14.29132,28.04524],[-14.33197,28.03687],[-14.44578,28.04698],[-14.44666,28.0658],[-14.49628,28.06826],[-14.49593,28.04585],[-14.52156,28.04678]],[[-13.80066,28.84566],[-13.80093,28.82311],[-13.77569,28.82305],[-13.69729,28.88982],[-13.69729,28.91277],[-13.60725,28.9118],[-13.43886,29.00024],[-13.43746,29.13513],[-13.4117,29.13499],[-13.41056,29.22298],[-13.45928,29.25559],[-13.45974,29.2942],[-13.50913,29.29456],[-13.51006,29.31635],[-13.56354,29.31729],[-13.56406,29.27138],[-13.53892,29.2712],[-13.53897,29.25004],[-13.56613,29.25013],[-13.5666,29.203],[-13.51565,29.20223],[-13.51565,29.18206],[-13.5398,29.18278],[-13.54089,29.13753],[-13.65782,29.13685],[-13.71322,29.09351],[-13.76634,29.09345],[-13.85025,29.01659],[-13.85182,28.98343],[-13.85244,28.91486],[-13.90131,28.89245],[-13.9024,28.84698],[-13.80066,28.84566]],[[1.64799,38.99907],[1.73217,38.99936],[1.73147,39.04417],[1.64895,39.04319],[1.64816,39.12764],[1.39486,39.12657],[1.39544,39.08642],[1.22811,39.08526],[1.22911,39.0029],[1.14487,39.0018],[1.14528,38.832],[1.31136,38.83316],[1.31219,38.79065],[1.39469,38.79162],[1.39519,38.75296],[1.31128,38.75193],[1.31259,38.62388],[1.6489,38.62511],[1.64807,38.71115],[1.58456,38.71012],[1.58116,38.70054],[1.54915,38.70028],[1.51972,38.70921],[1.50355,38.72532],[1.48133,38.91551],[1.55189,38.92544],[1.56673,38.95666],[1.64874,38.95833],[1.64799,38.99907]],[[2.54507,39.41667],[2.43933,39.41611],[2.43871,39.48469],[2.43902,39.49934],[2.31223,39.49934],[2.31192,39.54179],[2.22907,39.541],[2.22835,39.62606],[2.34601,39.62709],[2.92704,39.96016],[3.14566,39.96005],[3.14608,40.00198],[3.23139,40.00198],[3.23129,39.83292],[3.14823,39.83316],[3.14844,39.79357],[3.48148,39.79318],[3.48035,39.5959],[3.31506,39.47846],[3.31462,39.37855],[3.08302,39.24994],[2.97986,39.25015],[2.97904,39.3335],[2.72874,39.33342],[2.72885,39.45814],[2.64569,39.45774],[2.64538,39.49966],[2.54528,39.49942],[2.54507,39.41667]],[[3.81204,40.04344],[3.72908,40.0438],[3.72862,39.95842],[3.81266,39.9576],[3.81228,39.91644],[3.9609,39.91598],[4.19381,39.79131],[4.31503,39.79058],[4.31599,39.83293],[4.39874,39.83204],[4.39737,39.91858],[4.3158,39.91933],[4.31619,40.0434],[4.2319,40.04436],[4.23248,40.08478],[4.14915,40.08611],[4.14906,40.12552],[4.0628,40.12722],[4.06242,40.08499],[3.81287,40.08529],[3.81204,40.04344]],[[-8.89106,41.82289],[-9.1092,42.57511],[-9.03655,42.73066],[-9.08834,42.72696],[-9.14661,42.77503],[-9.21855,42.90163],[-9.2761,42.86051],[-9.30991,42.93113],[-9.27898,42.9822],[-9.30991,43.06004],[-9.25236,43.10417],[-9.2315,43.17032],[-9.14733,43.21018],[-9.06748,43.19916],[-9.03367,43.24267],[-8.99842,43.24477],[-8.99986,43.29558],[-8.93727,43.30553],[-8.92936,43.32699],[-8.8639,43.32908],[-8.87613,43.37407],[-8.82217,43.37354],[-8.78548,43.31914],[-8.70635,43.305],[-8.60996,43.3296],[-8.55097,43.32332],[-8.52435,43.3364],[-8.52507,43.36465],[-8.45745,43.39184],[-8.36105,43.41118],[-8.36033,43.46342],[-8.33444,43.57974],[-8.27761,43.57088],[-8.06467,43.72392],[-7.99921,43.7234],[-7.9172,43.78264],[-7.85605,43.79146],[-7.83591,43.73743],[-7.66284,43.80982],[-7.31889,43.67827],[-7.19975,43.58308],[-6.24882,43.6075],[-6.12293,43.57901],[-5.85204,43.6799],[-5.60363,43.57087],[-5.28553,43.56191],[-5.17875,43.49916],[-4.90899,43.48367],[-4.61562,43.4192],[-4.18399,43.42492],[-3.80295,43.51954],[-3.74,43.48693],[-3.56128,43.54236],[-3.1083,43.38163],[-2.93857,43.46246],[-2.74524,43.47551],[-2.30462,43.31706],[-1.9854,43.3563],[-1.85528,43.39725],[-1.7698,43.39644],[-1.77005,43.37605],[-1.71005,43.37569],[-1.71135,43.33125],[-1.72259,43.31318],[-1.68904,43.31291],[-1.68811,43.33413],[-1.64467,43.33372],[-1.64498,43.31332],[-1.60299,43.31295],[-1.60344,43.29266],[-1.56359,43.29212],[-1.56305,43.31338],[-1.47799,43.31284],[-1.36677,43.27614],[-1.35688,43.23815],[-1.37037,43.1713],[-1.44231,43.08336],[-1.41983,43.06036],[-1.37307,43.05117],[-1.36407,43.11159],[-1.30203,43.13522],[-1.23549,43.13325],[-1.27955,43.07744],[-1.19232,43.06496],[-1.00619,43.00778],[-0.94234,42.9749],[-0.7562,42.98213],[-0.71484,42.96108],[-0.69685,42.90314],[-0.55118,42.82207],[-0.50442,42.84845],[-0.42889,42.82009],[-0.31648,42.86558],[-0.14563,42.81086],[-0.03143,42.71249],[0.18618,42.7541],[0.30218,42.71777],[0.36422,42.74287],[0.44875,42.71447],[0.62769,42.7224],[0.64118,42.85767],[0.71492,42.88272],[0.9676,42.81811],[1.10878,42.79898],[1.17532,42.73429],[1.36326,42.74155],[1.41137,42.70939],[1.48061,42.71034],[1.4813,42.50107],[1.64436,42.50203],[1.64328,42.54245],[1.73041,42.54342],[1.73164,42.50118],[2.06386,42.50164],[2.06456,42.45902],[2.39693,42.45994],[2.39768,42.41784],[2.48048,42.41797],[2.48098,42.37594],[2.64479,42.37626],[2.64448,42.45924],[2.81133,42.45961],[2.81126,42.50104],[3.06388,42.50085],[3.06388,42.45915],[3.23078,42.45934],[3.23049,42.37644],[3.31415,42.37604],[3.31412,42.33399],[3.39785,42.33404],[3.39739,42.29009],[3.31389,42.29084],[3.31397,42.20702],[3.14759,42.2073],[3.14759,42.12606],[3.23055,42.126],[3.24668,41.95294],[3.19452,41.85589],[3.06054,41.76474],[2.78358,41.63718],[2.26293,41.42716],[2.16492,41.29893],[1.86008,41.22322],[1.3763,41.11627],[1.17937,41.04646],[1.08585,41.04849],[0.75854,40.81956],[0.9114,40.73376],[0.87813,40.67514],[0.66502,40.53587],[0.55801,40.55022],[0.43392,40.37576],[0.26756,40.19192],[0.16415,40.06472],[0.07513,40.01447],[0.01039,39.89522],[-0.09392,39.81169],[-0.18474,39.63117],[-0.29085,39.50363],[-0.28636,39.33343],[-0.18564,39.17746],[-0.21352,39.15585],[-0.11101,38.97222],[0.00949,38.88268],[0.12189,38.87218],[0.23429,38.79864],[0.25587,38.72642],[0.09581,38.61338],[-0.0022,38.60706],[-0.05705,38.52691],[-0.27197,38.47624],[-0.37987,38.39312],[-0.38347,38.33813],[-0.45091,38.33108],[-0.50487,38.28309],[-0.48238,38.19481],[-0.42933,38.16583],[-0.45451,38.14886],[-0.584,38.17219],[-0.61367,38.11986],[-0.63705,37.96122],[-0.68111,37.94562],[-0.73237,37.88107],[-0.72158,37.78306],[-0.68831,37.734],[-0.66415,37.62315],[-0.71939,37.58784],[-0.91963,37.53758],[-1.11071,37.51641],[-1.33832,37.52867],[-1.44089,37.39037],[-1.6767,37.27652],[-1.85408,36.91229],[-2.06835,36.69291],[-2.21588,36.66192],[-2.37219,36.78018],[-2.68129,36.65911],[-2.92015,36.66756],[-3.09402,36.71263],[-3.46108,36.65488],[-3.72804,36.69291],[-4.37435,36.66333],[-4.65712,36.44042],[-4.9188,36.45313],[-5.16995,36.35135],[-5.28411,36.19702],[-5.26809,36.12418],[-5.35248,36.12247],[-5.35161,36.04014],[-5.43658,36.03889],[-5.43532,36.00344],[-5.68886,36.00365],[-5.68996,36.04053],[-5.85506,36.03856],[-5.85668,36.12421],[-5.93848,36.12215],[-5.94003,36.16556],[-5.99834,36.1645],[-6.03573,36.1781],[-6.07752,36.22241],[-6.15061,36.28646],[-6.23154,36.37701],[-6.33585,36.53106],[-6.32146,36.58163],[-6.40419,36.6235],[-6.47433,36.74897],[-6.41588,36.79939],[-6.49052,36.91738],[-6.62989,37.0194],[-6.87448,37.10838],[-7.04264,37.18507],[-7.26474,37.18435],[-7.37535,37.15354],[-7.40832,37.16822],[-7.42029,37.21183],[-7.42492,37.23505],[-7.43805,37.2452],[-7.44597,37.33261],[-7.4481,37.39094],[-7.46963,37.40758],[-7.4647,37.45305],[-7.50197,37.51641],[-7.51916,37.52292],[-7.52196,37.57237],[-7.45013,37.66958],[-7.4249,37.75992],[-7.31666,37.83997],[-7.26833,37.98895],[-7.15368,38.01552],[-7.11771,38.05536],[-7.0143,38.02438],[-6.99632,38.10756],[-6.96147,38.20125],[-7.08062,38.15708],[-7.34027,38.44024],[-7.26383,38.73807],[-7.04352,38.87297],[-7.06151,38.90796],[-6.96934,39.01983],[-7.00081,39.08879],[-7.15368,39.09577],[-7.15255,39.16029],[-7.24472,39.19689],[-7.25596,39.28133],[-7.33689,39.35351],[-7.3279,39.45599],[-7.51449,39.58865],[-7.55271,39.67954],[-7.05027,39.67522],[-6.99519,39.81954],[-6.92213,39.87909],[-6.88616,40.02299],[-7.04128,40.13479],[-7.01767,40.26615],[-6.8086,40.34501],[-6.86818,40.44516],[-6.85356,40.60664],[-6.83783,40.87576],[-6.9536,41.03704],[-6.80186,41.03959],[-6.76814,41.13871],[-6.64112,41.26556],[-6.56244,41.26303],[-6.21737,41.5791],[-6.31628,41.64465],[-6.51523,41.64129],[-6.58717,41.68832],[-6.54783,41.85597],[-6.62988,41.91121],[-7.13345,41.94048],[-7.16829,41.87188],[-7.42569,41.78477],[-7.95398,41.84593],[-8.13045,41.78058],[-8.25185,41.90786],[-8.12933,42.03488],[-8.24848,42.1008],[-8.36762,42.05575],[-8.60704,42.03405],[-8.89106,41.82289]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"PNOA"},"best":true,"category":"photo","country_code":"ES","id":"PNOA-Spain-TMS","license_url":"https://wiki.openstreetmap.org/w/index.php?title=ES:Fuentes_de_datos_potenciales_de_Espa%C3%B1a/Servidores_WMS","max_zoom":20,"name":"PNOA Spain","privacy_policy_url":"https://www.idee.es/aviso-legal","type":"tms","url":"https://www.ign.es/wmts/pnoa-ma?request=GetTile&service=WMTS&VERSION=1.0.0&Layer=OI.OrthoimageCoverage&Style=default&Format=image/png&TileMatrixSet=GoogleMapsCompatible&TileMatrix={zoom}&TileRow={y}&TileCol={x}"},"type":"Feature"},{"geometry":{"coordinates":[[[-17.88463,28.44606],[-17.89395,28.52255],[-18.02125,28.74819],[-18.02241,28.80384],[-17.9424,28.87261],[-17.89118,28.87371],[-17.89033,28.85151],[-17.76759,28.85378],[-17.76698,28.83122],[-17.74127,28.832],[-17.73949,28.76422],[-17.71398,28.76497],[-17.71293,28.73037],[-17.75744,28.69318],[-17.75708,28.67413],[-17.74579,28.67435],[-17.74573,28.61656],[-17.75197,28.58337],[-17.76225,28.5592],[-17.78331,28.54167],[-17.78316,28.49366],[-17.80861,28.4925],[-17.80601,28.4469],[-17.88463,28.44606]],[[-18.1661,27.78516],[-18.16349,27.69492],[-18.08898,27.69634],[-18.08734,27.67387],[-18.03641,27.67537],[-18.03501,27.63026],[-17.959,27.6324],[-17.86033,27.7926],[-17.86303,27.83688],[-17.8884,27.83649],[-17.88913,27.85905],[-17.99065,27.85675],[-18.03868,27.76558],[-18.11464,27.76379],[-18.11546,27.78636],[-18.1661,27.78516]],[[-17.36038,28.06398],[-17.36297,28.17572],[-17.33756,28.17637],[-17.33846,28.2213],[-17.18579,28.22388],[-17.08208,28.13518],[-17.08084,28.068],[-17.13154,28.06681],[-17.15633,28.02146],[-17.23211,28.02037],[-17.23199,27.99804],[-17.25768,27.99784],[-17.25785,28.01997],[-17.30867,28.01923],[-17.36038,28.06398]],[[-16.92782,28.32758],[-16.92866,28.37219],[-16.87767,28.37293],[-16.87807,28.39542],[-16.52143,28.42261],[-16.44571,28.49113],[-16.44625,28.53597],[-16.42059,28.53627],[-16.42092,28.55884],[-16.34433,28.55976],[-16.3446,28.58221],[-16.19125,28.58372],[-16.19162,28.60684],[-16.12793,28.60782],[-16.1278,28.59218],[-16.09951,28.5925],[-16.09934,28.51638],[-16.16481,28.51612],[-16.16475,28.49386],[-16.23858,28.44847],[-16.26535,28.44761],[-16.26586,28.403],[-16.31675,28.40176],[-16.31631,28.38019],[-16.34208,28.37951],[-16.34083,28.2893],[-16.41584,28.19761],[-16.4151,28.13113],[-16.51533,28.01648],[-16.61684,28.01532],[-16.61681,27.99305],[-16.71842,27.99192],[-16.7191,28.03714],[-16.7447,28.03679],[-16.74534,28.08181],[-16.7707,28.08161],[-16.8224,28.1259],[-16.82317,28.17087],[-16.8487,28.17075],[-16.85028,28.26079],[-16.87565,28.26055],[-16.87608,28.28322],[-16.90151,28.28277],[-16.90239,28.32793],[-16.92782,28.32758]],[[-15.85374,27.90089],[-15.8542,27.99018],[-15.82895,27.99066],[-15.82911,28.03558],[-15.7783,28.03632],[-15.75328,28.08143],[-15.72788,28.08157],[-15.72826,28.17186],[-15.49897,28.1728],[-15.49874,28.15041],[-15.44978,28.15075],[-15.45016,28.19614],[-15.39728,28.19614],[-15.39644,28.03836],[-15.37103,28.03802],[-15.37065,28.01532],[-15.34578,28.01532],[-15.34548,27.92544],[-15.3708,27.92524],[-15.37057,27.83521],[-15.39598,27.83474],[-15.421,27.78797],[-15.47181,27.78939],[-15.47188,27.76665],[-15.52277,27.76678],[-15.54771,27.72161],[-15.62361,27.72134],[-15.62415,27.74199],[-15.70075,27.74335],[-15.80167,27.81105],[-15.85374,27.90089]],[[-14.52156,28.04678],[-14.52244,28.11841],[-14.41575,28.11561],[-14.21688,28.22788],[-14.21537,28.33903],[-14.16417,28.45283],[-14.11151,28.4748],[-14.03358,28.72267],[-13.95652,28.74494],[-13.95617,28.76659],[-13.82902,28.76643],[-13.82896,28.78798],[-13.80007,28.78793],[-13.8013,28.71899],[-13.82757,28.71935],[-13.82786,28.6518],[-13.80258,28.6519],[-13.80339,28.53842],[-13.82885,28.53847],[-13.83151,28.39702],[-13.91582,28.22414],[-13.98564,28.22357],[-14.03696,28.17958],[-14.13871,28.17999],[-14.13866,28.15791],[-14.21537,28.15781],[-14.21472,28.11189],[-14.29132,28.04524],[-14.33197,28.03687],[-14.44578,28.04698],[-14.44666,28.0658],[-14.49628,28.06826],[-14.49593,28.04585],[-14.52156,28.04678]],[[-13.80066,28.84566],[-13.80093,28.82311],[-13.77569,28.82305],[-13.69729,28.88982],[-13.69729,28.91277],[-13.60725,28.9118],[-13.43886,29.00024],[-13.43746,29.13513],[-13.4117,29.13499],[-13.41056,29.22298],[-13.45928,29.25559],[-13.45974,29.2942],[-13.50913,29.29456],[-13.51006,29.31635],[-13.56354,29.31729],[-13.56406,29.27138],[-13.53892,29.2712],[-13.53897,29.25004],[-13.56613,29.25013],[-13.5666,29.203],[-13.51565,29.20223],[-13.51565,29.18206],[-13.5398,29.18278],[-13.54089,29.13753],[-13.65782,29.13685],[-13.71322,29.09351],[-13.76634,29.09345],[-13.85025,29.01659],[-13.85182,28.98343],[-13.85244,28.91486],[-13.90131,28.89245],[-13.9024,28.84698],[-13.80066,28.84566]],[[1.64799,38.99907],[1.73217,38.99936],[1.73147,39.04417],[1.64895,39.04319],[1.64816,39.12764],[1.39486,39.12657],[1.39544,39.08642],[1.22811,39.08526],[1.22911,39.0029],[1.14487,39.0018],[1.14528,38.832],[1.31136,38.83316],[1.31219,38.79065],[1.39469,38.79162],[1.39519,38.75296],[1.31128,38.75193],[1.31259,38.62388],[1.6489,38.62511],[1.64807,38.71115],[1.58456,38.71012],[1.58116,38.70054],[1.54915,38.70028],[1.51972,38.70921],[1.50355,38.72532],[1.48133,38.91551],[1.55189,38.92544],[1.56673,38.95666],[1.64874,38.95833],[1.64799,38.99907]],[[2.54507,39.41667],[2.43933,39.41611],[2.43871,39.48469],[2.43902,39.49934],[2.31223,39.49934],[2.31192,39.54179],[2.22907,39.541],[2.22835,39.62606],[2.34601,39.62709],[2.92704,39.96016],[3.14566,39.96005],[3.14608,40.00198],[3.23139,40.00198],[3.23129,39.83292],[3.14823,39.83316],[3.14844,39.79357],[3.48148,39.79318],[3.48035,39.5959],[3.31506,39.47846],[3.31462,39.37855],[3.08302,39.24994],[2.97986,39.25015],[2.97904,39.3335],[2.72874,39.33342],[2.72885,39.45814],[2.64569,39.45774],[2.64538,39.49966],[2.54528,39.49942],[2.54507,39.41667]],[[3.81204,40.04344],[3.72908,40.0438],[3.72862,39.95842],[3.81266,39.9576],[3.81228,39.91644],[3.9609,39.91598],[4.19381,39.79131],[4.31503,39.79058],[4.31599,39.83293],[4.39874,39.83204],[4.39737,39.91858],[4.3158,39.91933],[4.31619,40.0434],[4.2319,40.04436],[4.23248,40.08478],[4.14915,40.08611],[4.14906,40.12552],[4.0628,40.12722],[4.06242,40.08499],[3.81287,40.08529],[3.81204,40.04344]],[[-8.89106,41.82289],[-9.1092,42.57511],[-9.03655,42.73066],[-9.08834,42.72696],[-9.14661,42.77503],[-9.21855,42.90163],[-9.2761,42.86051],[-9.30991,42.93113],[-9.27898,42.9822],[-9.30991,43.06004],[-9.25236,43.10417],[-9.2315,43.17032],[-9.14733,43.21018],[-9.06748,43.19916],[-9.03367,43.24267],[-8.99842,43.24477],[-8.99986,43.29558],[-8.93727,43.30553],[-8.92936,43.32699],[-8.8639,43.32908],[-8.87613,43.37407],[-8.82217,43.37354],[-8.78548,43.31914],[-8.70635,43.305],[-8.60996,43.3296],[-8.55097,43.32332],[-8.52435,43.3364],[-8.52507,43.36465],[-8.45745,43.39184],[-8.36105,43.41118],[-8.36033,43.46342],[-8.33444,43.57974],[-8.27761,43.57088],[-8.06467,43.72392],[-7.99921,43.7234],[-7.9172,43.78264],[-7.85605,43.79146],[-7.83591,43.73743],[-7.66284,43.80982],[-7.31889,43.67827],[-7.19975,43.58308],[-6.24882,43.6075],[-6.12293,43.57901],[-5.85204,43.6799],[-5.60363,43.57087],[-5.28553,43.56191],[-5.17875,43.49916],[-4.90899,43.48367],[-4.61562,43.4192],[-4.18399,43.42492],[-3.80295,43.51954],[-3.74,43.48693],[-3.56128,43.54236],[-3.1083,43.38163],[-2.93857,43.46246],[-2.74524,43.47551],[-2.30462,43.31706],[-1.9854,43.3563],[-1.85528,43.39725],[-1.7698,43.39644],[-1.77005,43.37605],[-1.71005,43.37569],[-1.71135,43.33125],[-1.72259,43.31318],[-1.68904,43.31291],[-1.68811,43.33413],[-1.64467,43.33372],[-1.64498,43.31332],[-1.60299,43.31295],[-1.60344,43.29266],[-1.56359,43.29212],[-1.56305,43.31338],[-1.47799,43.31284],[-1.36677,43.27614],[-1.35688,43.23815],[-1.37037,43.1713],[-1.44231,43.08336],[-1.41983,43.06036],[-1.37307,43.05117],[-1.36407,43.11159],[-1.30203,43.13522],[-1.23549,43.13325],[-1.27955,43.07744],[-1.19232,43.06496],[-1.00619,43.00778],[-0.94234,42.9749],[-0.7562,42.98213],[-0.71484,42.96108],[-0.69685,42.90314],[-0.55118,42.82207],[-0.50442,42.84845],[-0.42889,42.82009],[-0.31648,42.86558],[-0.14563,42.81086],[-0.03143,42.71249],[0.18618,42.7541],[0.30218,42.71777],[0.36422,42.74287],[0.44875,42.71447],[0.62769,42.7224],[0.64118,42.85767],[0.71492,42.88272],[0.9676,42.81811],[1.10878,42.79898],[1.17532,42.73429],[1.36326,42.74155],[1.41137,42.70939],[1.48061,42.71034],[1.4813,42.50107],[1.64436,42.50203],[1.64328,42.54245],[1.73041,42.54342],[1.73164,42.50118],[2.06386,42.50164],[2.06456,42.45902],[2.39693,42.45994],[2.39768,42.41784],[2.48048,42.41797],[2.48098,42.37594],[2.64479,42.37626],[2.64448,42.45924],[2.81133,42.45961],[2.81126,42.50104],[3.06388,42.50085],[3.06388,42.45915],[3.23078,42.45934],[3.23049,42.37644],[3.31415,42.37604],[3.31412,42.33399],[3.39785,42.33404],[3.39739,42.29009],[3.31389,42.29084],[3.31397,42.20702],[3.14759,42.2073],[3.14759,42.12606],[3.23055,42.126],[3.24668,41.95294],[3.19452,41.85589],[3.06054,41.76474],[2.78358,41.63718],[2.26293,41.42716],[2.16492,41.29893],[1.86008,41.22322],[1.3763,41.11627],[1.17937,41.04646],[1.08585,41.04849],[0.75854,40.81956],[0.9114,40.73376],[0.87813,40.67514],[0.66502,40.53587],[0.55801,40.55022],[0.43392,40.37576],[0.26756,40.19192],[0.16415,40.06472],[0.07513,40.01447],[0.01039,39.89522],[-0.09392,39.81169],[-0.18474,39.63117],[-0.29085,39.50363],[-0.28636,39.33343],[-0.18564,39.17746],[-0.21352,39.15585],[-0.11101,38.97222],[0.00949,38.88268],[0.12189,38.87218],[0.23429,38.79864],[0.25587,38.72642],[0.09581,38.61338],[-0.0022,38.60706],[-0.05705,38.52691],[-0.27197,38.47624],[-0.37987,38.39312],[-0.38347,38.33813],[-0.45091,38.33108],[-0.50487,38.28309],[-0.48238,38.19481],[-0.42933,38.16583],[-0.45451,38.14886],[-0.584,38.17219],[-0.61367,38.11986],[-0.63705,37.96122],[-0.68111,37.94562],[-0.73237,37.88107],[-0.72158,37.78306],[-0.68831,37.734],[-0.66415,37.62315],[-0.71939,37.58784],[-0.91963,37.53758],[-1.11071,37.51641],[-1.33832,37.52867],[-1.44089,37.39037],[-1.6767,37.27652],[-1.85408,36.91229],[-2.06835,36.69291],[-2.21588,36.66192],[-2.37219,36.78018],[-2.68129,36.65911],[-2.92015,36.66756],[-3.09402,36.71263],[-3.46108,36.65488],[-3.72804,36.69291],[-4.37435,36.66333],[-4.65712,36.44042],[-4.9188,36.45313],[-5.16995,36.35135],[-5.28411,36.19702],[-5.26809,36.12418],[-5.35248,36.12247],[-5.35161,36.04014],[-5.43658,36.03889],[-5.43532,36.00344],[-5.68886,36.00365],[-5.68996,36.04053],[-5.85506,36.03856],[-5.85668,36.12421],[-5.93848,36.12215],[-5.94003,36.16556],[-5.99834,36.1645],[-6.03573,36.1781],[-6.07752,36.22241],[-6.15061,36.28646],[-6.23154,36.37701],[-6.33585,36.53106],[-6.32146,36.58163],[-6.40419,36.6235],[-6.47433,36.74897],[-6.41588,36.79939],[-6.49052,36.91738],[-6.62989,37.0194],[-6.87448,37.10838],[-7.04264,37.18507],[-7.26474,37.18435],[-7.37535,37.15354],[-7.40832,37.16822],[-7.42029,37.21183],[-7.42492,37.23505],[-7.43805,37.2452],[-7.44597,37.33261],[-7.4481,37.39094],[-7.46963,37.40758],[-7.4647,37.45305],[-7.50197,37.51641],[-7.51916,37.52292],[-7.52196,37.57237],[-7.45013,37.66958],[-7.4249,37.75992],[-7.31666,37.83997],[-7.26833,37.98895],[-7.15368,38.01552],[-7.11771,38.05536],[-7.0143,38.02438],[-6.99632,38.10756],[-6.96147,38.20125],[-7.08062,38.15708],[-7.34027,38.44024],[-7.26383,38.73807],[-7.04352,38.87297],[-7.06151,38.90796],[-6.96934,39.01983],[-7.00081,39.08879],[-7.15368,39.09577],[-7.15255,39.16029],[-7.24472,39.19689],[-7.25596,39.28133],[-7.33689,39.35351],[-7.3279,39.45599],[-7.51449,39.58865],[-7.55271,39.67954],[-7.05027,39.67522],[-6.99519,39.81954],[-6.92213,39.87909],[-6.88616,40.02299],[-7.04128,40.13479],[-7.01767,40.26615],[-6.8086,40.34501],[-6.86818,40.44516],[-6.85356,40.60664],[-6.83783,40.87576],[-6.9536,41.03704],[-6.80186,41.03959],[-6.76814,41.13871],[-6.64112,41.26556],[-6.56244,41.26303],[-6.21737,41.5791],[-6.31628,41.64465],[-6.51523,41.64129],[-6.58717,41.68832],[-6.54783,41.85597],[-6.62988,41.91121],[-7.13345,41.94048],[-7.16829,41.87188],[-7.42569,41.78477],[-7.95398,41.84593],[-8.13045,41.78058],[-8.25185,41.90786],[-8.12933,42.03488],[-8.24848,42.1008],[-8.36762,42.05575],[-8.60704,42.03405],[-8.89106,41.82289]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"PNOA"},"available_projections":["CRS:84","EPSG:23029","EPSG:23030","EPSG:23031","EPSG:25828","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:32628","EPSG:32629","EPSG:32630","EPSG:32631","EPSG:3857","EPSG:4230","EPSG:4258","EPSG:4326"],"best":true,"category":"photo","country_code":"ES","id":"PNOA-Spain","license_url":"https://wiki.openstreetmap.org/w/index.php?title=ES:Fuentes_de_datos_potenciales_de_Espa%C3%B1a/Servidores_WMS","name":"PNOA Spain","privacy_policy_url":"https://www.idee.es/aviso-legal","type":"wms","url":"https://www.idee.es/wms/PNOA/PNOA?service=WMS&styles=default&LAYERS=PNOA&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Liikennevirasto","url":"https://vayla.fi/web/en/open-data/digiroad/"},"available_projections":["CRS:84","EPSG:2391","EPSG:2392","EPSG:2393","EPSG:2394","EPSG:3034","EPSG:3035","EPSG:3046","EPSG:3047","EPSG:3048","EPSG:3067","EPSG:3126","EPSG:3127","EPSG:3128","EPSG:3129","EPSG:3130","EPSG:3131","EPSG:3132","EPSG:3133","EPSG:3134","EPSG:3135","EPSG:3136","EPSG:3137","EPSG:3138","EPSG:3386","EPSG:3387","EPSG:3395","EPSG:3857","EPSG:3873","EPSG:3874","EPSG:3875","EPSG:3876","EPSG:3877","EPSG:3878","EPSG:3879","EPSG:3880","EPSG:3881","EPSG:3882","EPSG:3883","EPSG:3884","EPSG:3885","EPSG:4123","EPSG:4258","EPSG:4326","EPSG:4937","EPSG:5048"],"category":"other","country_code":"FI","description":"Digiroad national road network from the Finnish Transport Agency, functional road classes.","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/V%C3%A4yl%C3%A4virasto_logo.svg/200px-V%C3%A4yl%C3%A4virasto_logo.svg.png","id":"fta-digiroad-functional","license_url":"https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/fi/Digiroad_permission_23032017.pdf","max_zoom":20,"min_zoom":3,"name":"FTIA Road Networkk","overlay":true,"privacy_policy_url":"https://vayla.fi/web/en/contact-information/data-protection","type":"wms","url":"https://julkinen.vayla.fi/inspirepalvelu/wms?LAYERS=digiroad:dr_tielinkki_toim_lk&STYLES=digiroad:DR_Tielinkki_toiminnallinen_luokka_2018&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Väylävirasto","url":"https://vayla.fi/web/en/open-data/digiroad/"},"category":"other","country_code":"FI","description":"Digiroad national road network from the Finnish Transport Agency with several options for map layers.","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/V%C3%A4yl%C3%A4virasto_logo.svg/200px-V%C3%A4yl%C3%A4virasto_logo.svg.png","id":"fta-digiroad-option","license_url":"https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/fi/Digiroad_permission_23032017.pdf","max_zoom":20,"min_zoom":3,"name":"FTA Road Network options","overlay":true,"privacy_policy_url":"https://vayla.fi/web/en/contact-information/data-protection","type":"wms_endpoint","url":"https://julkinen.vayla.fi/inspirepalvelu/wms?service=wms&request=getCapabilities"},"type":"Feature"},{"geometry":{"coordinates":[[[24.26948,59.8593],[24.26674,60.22549],[24.55307,60.36703],[24.50363,60.49038],[24.76387,60.60079],[25.00625,60.54175],[24.90051,60.38197],[24.9884,60.35073],[25.06943,60.44096],[25.17517,60.45248],[25.18066,60.34122],[25.27954,60.2943],[25.19577,60.08813],[24.26948,59.8593]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Espoon, Helsingin ja Vantaan kaupungit, Kirkkonummen ja Nurmijärven kunnat sekä HSL ja HSY","url":"https://hri.fi/data/en_GB/dataset/paakaupunkiseudun-ortokuva-2017"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3879"],"best":true,"country_code":"FI","description":"Ortophotos from the municipalities of Espoo, Helsinki, Vantaa, Kirkkonummi and Nurmijärvi + HSL and HSY","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/fi/hri_logo.png","id":"hri-orto","license_url":"https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/fi/HRI_permission_07082018.pdf","max_zoom":19,"name":"Helsinki region orthophoto","type":"wms","url":"https://kartta.hsy.fi/geoserver/ows?SERVICE=WMS&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=taustakartat_ja_aluejaot:Ortoilmakuva_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Maanmittauslaitos","url":"https://www.maanmittauslaitos.fi/en"},"best":true,"country_code":"FI","description":"Ortophotos from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png","id":"mml-orto","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=356296#p356296","max_zoom":19,"min_zoom":2,"name":"MML Orthophoto","type":"tms","url":"https://tiles.kartat.kapsi.fi/ortokuva/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Maanmittauslaitos","url":"https://www.maanmittauslaitos.fi/en"},"country_code":"FI","description":"Background map from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png","id":"mml-tausta","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=356296#p356296","max_zoom":19,"min_zoom":2,"name":"MML Background Map","type":"tms","url":"https://tiles.kartat.kapsi.fi/taustakartta/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Maanmittauslaitos","url":"https://www.maanmittauslaitos.fi/en"},"country_code":"FI","description":"Topographic map from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png","id":"mml-topo","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=356296#p356296","max_zoom":19,"min_zoom":2,"name":"MML Topographic Map","type":"tms","url":"https://tiles.kartat.kapsi.fi/peruskartta/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[22.20773,60.48192],[22.18898,60.46167],[22.15111,60.4647],[22.11991,60.46316],[22.11448,60.44459],[22.12533,60.43892],[22.14443,60.43815],[22.20536,60.44335],[22.20443,60.43465],[22.14808,60.41251],[22.14125,60.40444],[22.17104,60.38313],[22.2254,60.38328],[22.28446,60.39091],[22.27423,60.40519],[22.30929,60.41024],[22.36908,60.43517],[22.37033,60.44067],[22.33819,60.47484],[22.34456,60.48065],[22.36,60.47545],[22.37127,60.48301],[22.20773,60.48192]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Turun kaupunki","url":"https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto"},"available_projections":["EPSG:3857","EPSG:4326"],"best":true,"country_code":"FI","description":"Ortophotos from the city of Turku","end_date":"2018-07-14","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Turku.vaakuna.svg/200px-Turku.vaakuna.svg.png","id":"turku-orto-2018-true","license_url":"https://dev.turku.fi/openstreetmap-lupa.pdf","max_zoom":20,"min_zoom":4,"name":"City of Turku ortophoto - 2018 True ortho","privacy_policy_url":"https://www.turku.fi/turku-tieto/tietosuoja/kayttotiedot-ja-evasteet","start_date":"2018-07-14","type":"wms","url":"https://opaskartta.turku.fi/TeklaOGCWeb/WMS.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ilmakuva 2018 True ortho&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[21.48608,60.90844],[21.49956,60.48377],[21.08957,60.5096],[21.0486,60.22035],[21.00189,60.21285],[21.00908,60.09411],[21.09531,60.03889],[21.10682,59.94328],[21.26923,59.88167],[21.18227,59.70233],[22.11364,59.70921],[22.05903,59.8557],[22.46075,60.18535],[23.15785,60.18892],[23.14815,60.91835],[22.31595,60.91512],[21.48608,60.90844]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Turun kaupunki","url":"https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto"},"available_projections":["EPSG:3857","EPSG:4326"],"best":true,"country_code":"FI","description":"Ortophotos from the city of Turku","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Turku.vaakuna.svg/200px-Turku.vaakuna.svg.png","id":"turku-orto","license_url":"https://dev.turku.fi/openstreetmap-lupa.pdf","max_zoom":20,"min_zoom":4,"name":"City of Turku ortophoto","privacy_policy_url":"https://www.turku.fi/turku-tieto/tietosuoja/kayttotiedot-ja-evasteet","type":"wms","url":"https://opaskartta.turku.fi/TeklaOGCWeb/WMS.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ilmakuva&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[2.94012,44.63388],[2.99719,44.63393],[2.99717,44.64734],[3.01597,44.64735],[3.01593,44.67412],[3.03495,44.67413],[3.0349,44.70152],[3.05363,44.70154],[3.05357,44.7419],[3.07233,44.74191],[3.07222,44.80917],[3.09216,44.80919],[3.09214,44.82213],[3.13014,44.82216],[3.13005,44.87707],[3.14856,44.87709],[3.14858,44.8637],[3.16823,44.86371],[3.16825,44.85003],[3.2064,44.85006],[3.20638,44.86284],[3.24395,44.86287],[3.24393,44.87679],[3.26315,44.87681],[3.26308,44.91752],[3.32004,44.91757],[3.32002,44.93033],[3.33908,44.93035],[3.33906,44.9442],[3.377,44.94423],[3.37702,44.93029],[3.39603,44.9303],[3.39612,44.87627],[3.41483,44.87629],[3.41489,44.83553],[3.43334,44.83554],[3.43338,44.80828],[3.45255,44.80829],[3.45258,44.79463],[3.50893,44.79468],[3.5089,44.80815],[3.60426,44.80823],[3.60422,44.83482],[3.62361,44.83484],[3.62357,44.86166],[3.64248,44.86167],[3.64255,44.8211],[3.66101,44.82112],[3.66103,44.80777],[3.6993,44.8078],[3.69928,44.82099],[3.73611,44.82102],[3.73618,44.77971],[3.77511,44.77974],[3.77515,44.75223],[3.81184,44.75226],[3.81186,44.7392],[3.83118,44.73922],[3.83121,44.72468],[3.88782,44.72472],[3.8878,44.73818],[3.92563,44.73821],[3.9256,44.75167],[3.94541,44.75168],[3.94537,44.77847],[3.96437,44.77848],[3.96435,44.79193],[4.00332,44.79196],[4.0033,44.80526],[4.02169,44.80527],[4.02167,44.81857],[4.05965,44.8186],[4.05961,44.84492],[4.07981,44.84494],[4.07979,44.85735],[4.17388,44.85743],[4.17386,44.87055],[4.19326,44.87056],[4.19323,44.88427],[4.21404,44.88429],[4.214,44.91002],[4.23241,44.91004],[4.23237,44.93731],[4.27155,44.93734],[4.27153,44.9503],[4.32887,44.95034],[4.32878,45.00367],[4.34893,45.00368],[4.3489,45.01707],[4.40608,45.01711],[4.40599,45.071],[4.38847,45.07099],[4.38845,45.0846],[4.40794,45.08461],[4.40792,45.09663],[4.48436,45.09669],[4.48429,45.13705],[4.46636,45.13703],[4.46634,45.1502],[4.48645,45.15022],[4.4864,45.17724],[4.50655,45.17726],[4.50644,45.24501],[4.48813,45.24499],[4.48811,45.25921],[4.46986,45.25919],[4.46984,45.27298],[4.45088,45.27297],[4.45086,45.28642],[4.39368,45.28637],[4.39363,45.31352],[4.37509,45.3135],[4.37507,45.32741],[4.39507,45.32742],[4.39503,45.35458],[4.37679,45.35457],[4.37676,45.36855],[4.35766,45.36853],[4.35763,45.38234],[4.28146,45.38227],[4.28143,45.39688],[4.24446,45.39685],[4.24443,45.41079],[4.14812,45.41071],[4.14814,45.39807],[4.12919,45.39805],[4.12921,45.38409],[4.09021,45.38406],[4.09024,45.37121],[4.01355,45.37115],[4.01353,45.3861],[3.91709,45.38602],[3.91707,45.39974],[3.93757,45.39975],[3.93755,45.41311],[3.97528,45.41315],[3.97526,45.42621],[3.99537,45.42622],[3.9957,45.52096],[3.97778,45.52094],[3.97769,45.57439],[3.95818,45.57437],[3.95815,45.58837],[3.9396,45.58835],[3.93958,45.60262],[3.92023,45.60261],[3.9202,45.61646],[3.88189,45.61643],[3.88185,45.64328],[3.84413,45.64325],[3.84411,45.65709],[3.82617,45.65707],[3.82612,45.68389],[3.80722,45.68387],[3.80713,45.73758],[3.78821,45.73756],[3.78819,45.7518],[3.76885,45.75178],[3.7688,45.77897],[3.75072,45.77895],[3.75058,45.86066],[3.76967,45.86067],[3.76958,45.91433],[3.75166,45.91432],[3.75164,45.92809],[3.7329,45.92807],[3.73285,45.95472],[3.81018,45.95478],[3.81016,45.96823],[3.8496,45.96826],[3.84951,46.02162],[3.83188,46.0216],[3.83179,46.07591],[3.8505,46.07592],[3.85046,46.10295],[3.83247,46.10294],[3.83234,46.18456],[3.81422,46.18455],[3.81415,46.22442],[3.83369,46.22444],[3.83366,46.2381],[3.85289,46.23812],[3.85287,46.25147],[3.89314,46.25151],[3.89312,46.26447],[3.91306,46.26448],[3.91303,46.27793],[3.95189,46.27796],[3.95187,46.29082],[3.97152,46.29084],[3.9715,46.30369],[4.0105,46.30373],[4.01048,46.31776],[4.02983,46.31778],[4.02978,46.34428],[4.0116,46.34427],[4.01146,46.42534],[4.03153,46.42536],[4.03146,46.4658],[4.01324,46.46578],[4.01322,46.47938],[3.99437,46.47936],[3.99435,46.49361],[3.9746,46.4936],[3.97457,46.50753],[3.87754,46.50745],[3.8775,46.53478],[3.85836,46.53476],[3.85833,46.54832],[3.81869,46.54828],[3.81871,46.53553],[3.79924,46.53552],[3.79922,46.54907],[3.76104,46.54904],[3.76092,46.61681],[3.74233,46.61679],[3.74228,46.64396],[3.72286,46.64395],[3.72281,46.67104],[3.70387,46.67102],[3.70385,46.68467],[3.68411,46.68466],[3.68406,46.712],[3.66484,46.71198],[3.66479,46.73904],[3.64576,46.73902],[3.64572,46.76634],[3.62575,46.76632],[3.62573,46.77971],[3.56723,46.77966],[3.56725,46.76631],[3.54715,46.76629],[3.54719,46.73928],[3.52716,46.73927],[3.52723,46.6989],[3.48774,46.69887],[3.48776,46.68594],[3.46796,46.68593],[3.46794,46.69941],[3.46792,46.71279],[3.44865,46.71278],[3.44863,46.72679],[3.35043,46.72671],[3.35048,46.6999],[3.33039,46.69988],[3.33034,46.7272],[3.23272,46.72712],[3.23274,46.71351],[3.2129,46.7135],[3.21293,46.70013],[3.17354,46.7001],[3.1735,46.72751],[3.15412,46.72749],[3.1541,46.74073],[3.11478,46.7407],[3.11475,46.75428],[3.07534,46.75424],[3.0753,46.78135],[3.05597,46.78134],[3.05592,46.80831],[2.99704,46.80826],[2.99702,46.82196],[2.93794,46.82191],[2.93797,46.80826],[2.89866,46.80823],[2.89869,46.79424],[2.87899,46.79422],[2.87901,46.78104],[2.85942,46.78103],[2.85944,46.76771],[2.84004,46.76769],[2.84007,46.75447],[2.7414,46.75439],[2.74138,46.76682],[2.70234,46.76679],[2.70236,46.75389],[2.68266,46.75387],[2.68268,46.74048],[2.66349,46.74046],[2.66351,46.7259],[2.64342,46.72588],[2.64344,46.71309],[2.62414,46.71308],[2.62417,46.69981],[2.60397,46.69979],[2.60399,46.68584],[2.56512,46.68581],[2.56515,46.67261],[2.54593,46.6726],[2.546,46.63215],[2.56592,46.63217],[2.56595,46.61811],[2.54564,46.61809],[2.54569,46.59072],[2.56642,46.59074],[2.56644,46.57754],[2.5855,46.57756],[2.58552,46.56472],[2.56613,46.5647],[2.56616,46.55062],[2.46828,46.55055],[2.4683,46.53582],[2.33212,46.53571],[2.33217,46.50886],[2.31265,46.50884],[2.31267,46.49534],[2.29288,46.49533],[2.2929,46.48182],[2.27487,46.4818],[2.27492,46.45442],[2.25539,46.4544],[2.25553,46.37349],[2.27595,46.37351],[2.27604,46.32087],[2.31456,46.32091],[2.31458,46.30704],[2.35371,46.30707],[2.35373,46.29297],[2.39384,46.293],[2.39389,46.26729],[2.45157,46.26733],[2.4516,46.25349],[2.47094,46.25351],[2.47098,46.22656],[2.49151,46.22657],[2.49155,46.19933],[2.51088,46.19934],[2.51093,46.17278],[2.53117,46.1728],[2.53138,46.05135],[2.55163,46.05137],[2.55166,46.03777],[2.57056,46.03778],[2.57068,45.96994],[2.55144,45.96993],[2.55146,45.95662],[2.53226,45.9566],[2.53228,45.94301],[2.51307,45.94299],[2.51313,45.90203],[2.47494,45.902],[2.47496,45.88882],[2.43619,45.88879],[2.43622,45.87533],[2.41721,45.87531],[2.41725,45.84794],[2.37847,45.84791],[2.3785,45.83397],[2.35952,45.83396],[2.35956,45.80708],[2.37873,45.8071],[2.37875,45.79358],[2.3987,45.79359],[2.39872,45.78035],[2.41825,45.78036],[2.41832,45.74],[2.45722,45.74003],[2.45724,45.7267],[2.47589,45.72671],[2.47591,45.71324],[2.49533,45.71325],[2.49542,45.65913],[2.45769,45.6591],[2.45776,45.61834],[2.43912,45.61833],[2.43919,45.57766],[2.4585,45.57768],[2.45855,45.55053],[2.47809,45.55055],[2.47811,45.53725],[2.49755,45.53726],[2.49759,45.51068],[2.47855,45.51066],[2.47864,45.45613],[2.45978,45.45612],[2.45987,45.40176],[2.42249,45.40173],[2.42247,45.41528],[2.40232,45.41527],[2.40229,45.42882],[2.3256,45.42876],[2.32567,45.38796],[2.34562,45.38798],[2.34566,45.36111],[2.32626,45.36109],[2.32628,45.34721],[2.30738,45.3472],[2.3074,45.3336],[2.28811,45.33358],[2.28813,45.32082],[2.26963,45.3208],[2.26966,45.30621],[2.25066,45.3062],[2.25068,45.29251],[2.23169,45.2925],[2.23171,45.27924],[2.213,45.27922],[2.21305,45.25204],[2.19374,45.25202],[2.19376,45.23811],[2.17561,45.2381],[2.17574,45.15768],[2.15735,45.15767],[2.15744,45.10295],[2.12024,45.10292],[2.12026,45.08955],[2.10067,45.08953],[2.10069,45.07544],[2.08246,45.07543],[2.08255,45.0216],[2.10255,45.02161],[2.1026,44.99445],[2.04574,44.99441],[2.04585,44.92753],[2.06578,44.92755],[2.06589,44.85969],[2.0857,44.8597],[2.08572,44.84581],[2.10556,44.84583],[2.1056,44.81933],[2.12474,44.81934],[2.12477,44.80551],[2.14351,44.80553],[2.14355,44.7786],[2.12561,44.77858],[2.1257,44.72427],[2.10665,44.72426],[2.10671,44.68423],[2.12634,44.68424],[2.12636,44.67074],[2.14598,44.67075],[2.14607,44.61644],[2.18396,44.61648],[2.18398,44.60378],[2.24042,44.60383],[2.24037,44.63095],[2.25948,44.63097],[2.25946,44.64493],[2.31668,44.64498],[2.3167,44.63088],[2.33615,44.6309],[2.33617,44.61758],[2.37242,44.61761],[2.3724,44.63158],[2.41105,44.63161],[2.41107,44.61907],[2.44922,44.61911],[2.4492,44.63232],[2.50486,44.63237],[2.50481,44.65976],[2.52461,44.65977],[2.52457,44.68717],[2.54225,44.68719],[2.54223,44.70122],[2.58071,44.70125],[2.5806,44.76834],[2.61769,44.76837],[2.61762,44.80884],[2.63676,44.80885],[2.63669,44.84929],[2.67331,44.84933],[2.67329,44.86252],[2.69338,44.86253],[2.69333,44.88943],[2.73052,44.88946],[2.73048,44.91645],[2.74992,44.91646],[2.75005,44.83647],[2.80733,44.83652],[2.80731,44.8491],[2.82638,44.84912],[2.8264,44.83628],[2.8457,44.8363],[2.84577,44.79571],[2.86422,44.79573],[2.86426,44.76865],[2.88399,44.76866],[2.88403,44.74197],[2.90203,44.74198],[2.90214,44.67432],[2.92198,44.67434],[2.92202,44.6473],[2.9401,44.64731],[2.94012,44.63388]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophotographie CRAIG/Sintegra/IGN 2013","url":"http://ids.craig.fr/geocat/srv/fre/catalog.search?node=srv#/metadata/8cabc987-829c-4c9f-943b-6a0e255cd73"},"country_code":"FR","end_date":"2013","id":"CRAIG-Auvergne-2013","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG","max_zoom":21,"name":"Auvergne 2013 25cm CRAIG","start_date":"2013","type":"tms","url":"https://tiles.craig.fr/osm/wmts/1.0.0/ortho_2013/webmercator/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[2.49389,46.66829],[2.71362,46.84141],[3.64746,46.80758],[4.04846,46.48327],[4.03747,46.24825],[4.46044,46.25965],[4.4934,46.14559],[4.38354,46.09229],[4.45495,45.69084],[4.76257,45.57176],[4.81201,45.34443],[4.22424,44.84419],[3.86169,44.696],[3.37829,44.80523],[3.33435,44.89091],[3.18054,44.82471],[3.03222,44.60612],[2.92785,44.60221],[2.71911,44.85198],[2.51037,44.60221],[2.12585,44.58265],[2.005,44.97257],[2.30712,45.46784],[2.43347,45.44087],[2.41149,45.72919],[2.34558,45.82402],[2.54882,45.97979],[2.46093,46.22166],[2.21374,46.33935],[2.27828,46.53903],[2.54882,46.56642],[2.49389,46.66829]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016","url":"http://ids.craig.fr/geocat/srv/fre/catalog.search?node=srv#/metadata/e37c057b-5884-429b-8bec-5db0baef0ee"},"country_code":"FR","end_date":"2016","id":"CRAIG-Auvergne-2016","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG","max_zoom":21,"name":"Auvergne 2016 25cm CRAIG","start_date":"2016","type":"tms","url":"https://tiles.craig.fr/ortho/wmts/1.0.0/ortho_2016/webmercator/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[2.49389,46.66829],[2.71362,46.84141],[3.64746,46.80758],[4.04846,46.48327],[4.03747,46.24825],[4.46044,46.25965],[4.4934,46.14559],[4.38354,46.09229],[4.45495,45.69084],[4.76257,45.57176],[4.81201,45.34443],[4.22424,44.84419],[3.86169,44.696],[3.37829,44.80523],[3.33435,44.89091],[3.18054,44.82471],[3.03222,44.60612],[2.92785,44.60221],[2.71911,44.85198],[2.51037,44.60221],[2.12585,44.58265],[2.005,44.97257],[2.30712,45.46784],[2.43347,45.44087],[2.41149,45.72919],[2.34558,45.82402],[2.54882,45.97979],[2.46093,46.22166],[2.21374,46.33935],[2.27828,46.53903],[2.54882,46.56642],[2.49389,46.66829]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016","url":"http://ids.craig.fr/geocat/srv/fre/catalog.search?node=srv#/metadata/e37c057b-5884-429b-8bec-5db0baef0ee"},"available_projections":["EPSG:2154","EPSG:4326","EPSG:4258","EPSG:3857"],"country_code":"FR","end_date":"2016","id":"CRAIG-Auvergne-2016_mirror1","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG","name":"Auvergne 2016 25cm CRAIG","start_date":"2016","type":"wms","url":"https://tiles.craig.fr/ortho/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho_2016&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL","url":"https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat"},"country_code":"FR","description":"French address registry or Base Adresses Nationale Ouverte","id":"BANO","license_url":"https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat","max_zoom":20,"min_zoom":12,"name":"BANO","overlay":true,"type":"tms","url":"https://{switch:a,b,c}.layers.openstreetmap.fr/bano/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Tiles © cquest@Openstreetmap France, data © Onema - IGN, LO/OL","url":"http://www.sandre.eaufrance.fr/actualite/la-bd-carthage-en-licence-ouverte-open-licence"},"country_code":"FR","description":"Réseau hydrographique: cours et plans d'eau et POI","id":"route500hydro","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/BDCarthage","max_zoom":20,"min_zoom":6,"name":"BD Carthage","overlay":true,"type":"tms","url":"https://{switch:a,b,c}.tile.openstreetmap.fr/route500hydro/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]],[[-61.27501,14.90218],[-60.72368,14.90101],[-60.72489,14.36686],[-61.27622,14.36803],[-61.27501,14.90218]],[[-61.92802,16.58618],[-61.92686,15.7394],[-60.88128,15.74072],[-60.88243,16.5875],[-61.92802,16.58618]],[[-53.89344,6.004],[-52.46522,5.4465],[-51.52039,4.51072],[-51.53687,4.11633],[-52.2345,3.10213],[-52.641,2.25162],[-52.92664,2.07597],[-53.72864,2.21869],[-54.20106,2.03205],[-54.8053,2.27358],[-54.31092,2.80589],[-54.31641,3.20085],[-54.12415,3.46408],[-54.12964,3.59567],[-54.42078,4.00127],[-54.58008,4.95962],[-53.89344,6.004]],[[55.08816,-20.77935],[55.95959,-20.77281],[55.96576,-21.49],[55.09434,-21.49651],[55.08816,-20.77935]],[[44.92054,-12.57363],[45.34826,-12.57029],[45.35274,-13.1163],[44.92502,-13.11963],[44.92054,-12.57363]],[[-178.57728,-14.70582],[-178.42568,-14.00334],[-176.34156,-12.83858],[-175.71534,-12.9189],[-175.91858,-13.58726],[-177.84638,-14.64983],[-178.57728,-14.70582]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"BDOrtho IGN","url":"https://openstreetmap.fr/bdortho"},"best":true,"country_code":"FR","icon":"http://www.ign.fr/institut/sites/all/themes/ign_institut/logo.png","id":"fr.ign.bdortho","license_url":"https://openstreetmap.fr/bdortho","max_zoom":21,"min_zoom":2,"name":"BDOrtho IGN","type":"tms","url":"https://proxy-ign.openstreetmap.fr/94GjiyqD/bdortho/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[-1.29933,44.81102],[-1.27344,44.46225],[-1.25171,44.46324],[-1.18142,44.47875],[-1.10143,44.4992],[-1.08201,44.52492],[-1.02698,44.50151],[-1.00525,44.50646],[-0.93358,44.62966],[-0.8804,44.65105],[-0.87439,44.67505],[-0.88179,44.70267],[-0.83046,44.72698],[-0.82954,44.73979],[-0.87532,44.76344],[-0.89705,44.80873],[-0.87532,44.85333],[-0.88364,44.85628],[-0.92803,44.84644],[-0.95346,44.83693],[-1.00294,44.83562],[-1.03715,44.85431],[-1.04594,44.85365],[-1.05658,44.82972],[-1.08293,44.83398],[-1.1509,44.82906],[-1.17125,44.81824],[-1.29933,44.81102]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"SIBA Vues aeriennes 2018"},"available_projections":["EPSG:2154"],"country_code":"FR","end_date":"2018","id":"SIBA_2018","license_url":"https://madada.fr/request/9/response/39/attach/2/SIBA%20Licence%20Ouverte.pdf","max_zoom":20,"name":"Bassin d Arcachon 2018","privacy_policy_url":"https://madada.fr/demande/les_orthophotoplans_de_la_campag","start_date":"2018","type":"wms","url":"https://siba.geosphere.fr/cgi-bin/mapserv.exe?map=C:/ms4w/geosphere/client1/Carte12_IA.map&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Couche51&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-1.51199,43.53909],[-1.50478,43.44095],[-1.4986,43.43996],[-1.48865,43.44046],[-1.47835,43.44719],[-1.46771,43.45716],[-1.46118,43.4579],[-1.45466,43.46463],[-1.44231,43.46693],[-1.41895,43.48755],[-1.40797,43.49004],[-1.4035,43.49752],[-1.40419,43.50449],[-1.42513,43.52466],[-1.44539,43.5264],[-1.44917,43.53835],[-1.45569,43.54233],[-1.47388,43.54954],[-1.4835,43.54929],[-1.50444,43.53909],[-1.51199,43.53909]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Ville de Bayonne, Communauté d'Agglomtération Pays Basque - 2016"},"country_code":"FR","end_date":"2016","id":"Bayonne_2016","license_url":"https://www.etalab.gouv.fr/licence-ouverte-open-licence","max_zoom":20,"name":"Bayonne 2016","privacy_policy_url":"https://www.data.gouv.fr/fr/datasets/orthophotographie-bayonne-2016-1/","start_date":"2016","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/bayonne_2016/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-0.59923,45.04193],[-0.54231,45.02757],[-0.50979,45.00601],[-0.47727,45.00206],[-0.47066,44.97367],[-0.45542,44.95102],[-0.46456,44.91792],[-0.4732,44.91936],[-0.48794,44.90928],[-0.4981,44.89057],[-0.48946,44.87797],[-0.4666,44.87076],[-0.47625,44.84735],[-0.49505,44.83978],[-0.49099,44.83186],[-0.46965,44.82537],[-0.49709,44.80446],[-0.52453,44.80013],[-0.5103,44.76767],[-0.53469,44.76515],[-0.56213,44.75107],[-0.5601,44.74169],[-0.5728,44.74133],[-0.59465,44.7601],[-0.63429,44.73989],[-0.65004,44.77705],[-0.67901,44.77489],[-0.68816,44.77922],[-0.71509,44.76839],[-0.75168,44.7471],[-0.76336,44.75577],[-0.73846,44.77561],[-0.74202,44.78571],[-0.72779,44.81239],[-0.73999,44.82861],[-0.76438,44.82933],[-0.803,44.82176],[-0.8401,44.82753],[-0.83908,44.84014],[-0.87567,44.85023],[-0.88532,44.85852],[-0.88685,44.88769],[-0.86601,44.88697],[-0.84569,44.89669],[-0.83349,44.92764],[-0.81825,44.92764],[-0.80198,44.92224],[-0.79843,44.9485],[-0.78725,44.94814],[-0.75574,44.97007],[-0.72169,44.95785],[-0.69578,44.93087],[-0.68866,44.93447],[-0.67139,44.93267],[-0.66935,44.94095],[-0.62514,44.95066],[-0.63226,44.95893],[-0.63124,44.9672],[-0.60024,44.96756],[-0.55146,44.97834],[-0.54079,44.97726],[-0.55451,44.99739],[-0.59364,45.01751],[-0.60787,45.03403],[-0.59923,45.04193]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Bordeaux Métropole - 2016"},"country_code":"FR","end_date":"2016","id":"Bordeaux_2016","license_url":"https://wiki.openstreetmap.org/wiki/Bordeaux","max_zoom":20,"min_zoom":14,"name":"Bordeaux 2016","start_date":"2016","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2016/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-0.59923,45.04193],[-0.54231,45.02757],[-0.50979,45.00601],[-0.47727,45.00206],[-0.47066,44.97367],[-0.45542,44.95102],[-0.46456,44.91792],[-0.4732,44.91936],[-0.48794,44.90928],[-0.4981,44.89057],[-0.48946,44.87797],[-0.4666,44.87076],[-0.47625,44.84735],[-0.49505,44.83978],[-0.49099,44.83186],[-0.46965,44.82537],[-0.49709,44.80446],[-0.52453,44.80013],[-0.5103,44.76767],[-0.53469,44.76515],[-0.56213,44.75107],[-0.5601,44.74169],[-0.5728,44.74133],[-0.59465,44.7601],[-0.63429,44.73989],[-0.65004,44.77705],[-0.67901,44.77489],[-0.68816,44.77922],[-0.71509,44.76839],[-0.75168,44.7471],[-0.76336,44.75577],[-0.73846,44.77561],[-0.74202,44.78571],[-0.72779,44.81239],[-0.73999,44.82861],[-0.76438,44.82933],[-0.803,44.82176],[-0.8401,44.82753],[-0.83908,44.84014],[-0.87567,44.85023],[-0.88532,44.85852],[-0.88685,44.88769],[-0.86601,44.88697],[-0.84569,44.89669],[-0.83349,44.92764],[-0.81825,44.92764],[-0.80198,44.92224],[-0.79843,44.9485],[-0.78725,44.94814],[-0.75574,44.97007],[-0.72169,44.95785],[-0.69578,44.93087],[-0.68866,44.93447],[-0.67139,44.93267],[-0.66935,44.94095],[-0.62514,44.95066],[-0.63226,44.95893],[-0.63124,44.9672],[-0.60024,44.96756],[-0.55146,44.97834],[-0.54079,44.97726],[-0.55451,44.99739],[-0.59364,45.01751],[-0.60787,45.03403],[-0.59923,45.04193]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Communauté urbaine de Bordeaux - 2012"},"country_code":"FR","end_date":"2012","id":"Bordeaux_2012","license_url":"https://openstreetmap.fr/outils","max_zoom":20,"name":"Bordeaux - 2012","start_date":"2012","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2012/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2020","url":"https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation"},"country_code":"FR","description":"French land registry","icon":"https://svn.openstreetmap.org/applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png","id":"Cadastre","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation#Mention_de_la_source_et_du_mill.C3.A9sime","max_zoom":22,"min_zoom":12,"name":"Cadastre","type":"tms","url":"https://tms.cadastre.openstreetmap.fr/*/tout/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-1.07962,46.10959],[-0.94115,46.01474],[-0.56306,45.15178],[-0.7266,45.08425],[-0.87904,45.34094],[-0.99794,45.33779],[-0.95558,44.69982],[-1.15862,44.19865],[-1.21512,44.20558],[-1.24654,44.1162],[-1.27903,44.03937],[-1.28825,44.02304],[-1.32117,43.94094],[-1.32151,43.92296],[-1.3092,43.92337],[-1.3085,43.91439],[-1.28366,43.91514],[-1.28302,43.90624],[-1.2761,43.90655],[-1.28211,43.89254],[-1.30102,43.85159],[-1.30384,43.8424],[-1.30923,43.83498],[-1.33474,43.76946],[-1.34407,43.74875],[-1.3456,43.74214],[-1.34673,43.73688],[-1.43284,43.53152],[-1.42806,43.46812],[-1.60627,43.40591],[-1.6061,43.36012],[-1.77441,43.30357],[-1.82995,43.38484],[-1.58551,43.46856],[-1.35706,44.03374],[-1.40217,44.06461],[-1.33584,44.22832],[-1.21836,44.23033],[-1.16795,44.41097],[-1.30744,44.41847],[-1.16979,45.59107],[-1.48685,46.06042],[-1.36364,46.09146],[-1.60176,46.17019],[-1.64442,46.22375],[-1.58595,46.30426],[-1.51008,46.33888],[-1.75643,46.42214],[-2.1872,46.81857],[-2.16423,46.85534],[-2.23654,46.9337],[-2.39769,46.96718],[-2.282,47.07631],[-2.12563,47.01875],[-2.09013,47.06562],[-2.18487,47.10698],[-2.2647,47.10763],[-2.24489,47.18562],[-2.56779,47.24467],[-2.66727,47.46686],[-2.74787,47.47122],[-2.75771,47.43461],[-2.89321,47.4629],[-2.90369,47.50905],[-3.03383,47.53833],[-3.07113,47.51185],[-3.01653,47.49873],[-3.12502,47.42693],[-3.18803,47.48441],[-3.22791,47.61132],[-3.2967,47.63161],[-3.2876,47.67154],[-3.34074,47.66893],[-3.38912,47.59473],[-3.55087,47.63827],[-3.53384,47.72488],[-3.76577,47.76476],[-3.77595,47.7371],[-3.91168,47.75915],[-3.8959,47.79911],[-3.97236,47.81526],[-3.99722,47.7975],[-3.97956,47.76268],[-3.8945,47.72193],[-3.9162,47.67831],[-4.10163,47.70921],[-4.08989,47.78944],[-4.03798,47.79909],[-4.04125,47.83109],[-4.08765,47.84221],[-4.14781,47.82525],[-4.14314,47.78847],[-4.35162,47.7415],[-4.47962,47.9776],[-4.98565,47.99896],[-4.96938,48.08972],[-4.63576,48.07798],[-4.60147,48.11469],[-4.385,48.10962],[-4.38955,48.14543],[-4.30925,48.15009],[-4.31268,48.17694],[-4.46369,48.18468],[-4.49748,48.1453],[-4.5921,48.14758],[-4.57537,48.22488],[-4.67101,48.2331],[-4.65434,48.31049],[-4.84243,48.3005],[-5.19867,48.44926],[-5.10346,48.51722],[-4.81465,48.39413],[-4.83515,48.54319],[-4.63387,48.66373],[-3.96692,48.77978],[-3.94939,48.74715],[-3.6502,48.75356],[-3.65853,48.82527],[-3.53931,48.85834],[-3.54444,48.90297],[-3.40954,48.91866],[-3.40755,48.87366],[-3.02769,48.9275],[-2.67861,48.58841],[-2.28475,48.71909],[-2.17543,48.65016],[-2.0137,48.73221],[-1.80953,48.73178],[-1.80392,48.66126],[-1.61161,48.68582],[-1.71645,49.24781],[-1.8026,49.32721],[-1.85748,49.3253],[-1.9262,49.65573],[-2.03908,49.67872],[-2.00445,49.76087],[-1.61759,49.68498],[-1.28373,49.76067],[-1.1492,49.63504],[-1.17134,49.55412],[-1.27353,49.55245],[-1.1328,49.3934],[-0.93059,49.40804],[-0.74827,49.35976],[-0.38935,49.34167],[-0.24704,49.29995],[-0.12454,49.29353],[0.02731,49.37619],[0.01801,49.54656],[0.12211,49.69292],[0.51713,49.86466],[1.05727,49.94904],[1.43908,50.11819],[1.53177,50.46437],[1.52549,50.85867],[1.64118,50.95919],[2.4521,51.12144],[2.59286,51.12124],[2.60683,51.05779],[1.7976,50.89906],[1.66458,50.82379],[1.70786,50.1282],[1.05936,49.85],[0.61607,49.79062],[0.24731,49.65027],[0.1709,49.53174],[0.57065,49.49622],[0.41115,49.3396],[0.19504,49.35736],[0.01718,49.25479],[-0.24453,49.26312],[-0.38408,49.30495],[-0.74091,49.32438],[-0.9954,49.37133],[-1.05453,49.25175],[-1.27704,49.29022],[-1.25966,49.43463],[-1.39141,49.53985],[-1.27535,49.62056],[-1.29775,49.65946],[-1.4905,49.57139],[-1.77517,49.63398],[-1.74601,49.48155],[-1.51294,49.24691],[-1.48261,48.72607],[-1.30574,48.72531],[-1.28323,48.59731],[-2.76114,48.43471],[-3.00174,48.67646],[-3.21062,48.72097],[-3.95404,48.56051],[-4.15643,48.60792],[-4.44475,48.55852],[-4.63683,48.48299],[-4.6319,48.44727],[-4.25022,48.43088],[-4.06141,48.21805],[-4.1757,48.05165],[-4.31904,48.0141],[-4.26781,47.89977],[-3.88484,47.98172],[-3.76375,47.86403],[-2.32727,47.52634],[-2.36911,47.3339],[-1.74067,47.33507],[-1.77062,47.20451],[-2.03678,47.21942],[-2.0968,47.15548],[-1.88786,47.01239],[-2.08797,46.83007],[-2.01214,46.83436],[-1.84079,46.69651],[-1.87318,46.65484],[-1.68859,46.50392],[-1.62117,46.51513],[-1.42428,46.41675],[-1.01761,46.35917],[-1.07962,46.10959]],[[-2.41232,46.69242],[-2.37197,46.67611],[-2.26749,46.68033],[-2.27007,46.70705],[-2.29827,46.73286],[-2.41655,46.73711],[-2.41232,46.69242]],[[-3.06018,47.40542],[-2.82587,47.29635],[-2.78787,47.33417],[-3.02436,47.44563],[-3.06018,47.40542]],[[-3.26482,47.4295],[-3.3343,47.35928],[-3.29614,47.34133],[-3.31489,47.30057],[-3.19941,47.24492],[-3.16567,47.27751],[-3.08686,47.23612],[-3.00637,47.30855],[-3.26482,47.4295]],[[-1.93966,48.86346],[-1.93993,48.91179],[-1.701,48.91105],[-1.69726,48.86173],[-1.93966,48.86346]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Ortho littorale 2000","url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"FR","end_date":"2000","id":"Geolittoral-Orthophotos2000","license_url":"http://www.geolittoral.developpement-durable.gouv.fr/mentions-legales-a37.html","name":"Géolittoral - Orthophotos 2000","start_date":"2000","type":"wms","url":"http://geolittoral.din.developpement-durable.gouv.fr/wxs?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortholittorale&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-0.98385,46.18807],[-0.89497,46.15628],[-0.93455,46.10163],[-0.84388,46.06949],[-0.88241,46.01637],[-0.53787,45.89558],[-0.63498,45.76444],[-0.86666,45.8479],[-0.76264,45.6245],[-0.69695,45.62659],[-0.69397,45.60184],[-0.68755,45.60174],[-0.688,45.50986],[-0.63799,45.50892],[-0.63978,45.44747],[-0.61574,45.44695],[-0.61619,45.38586],[-0.58544,45.38596],[-0.58529,45.32334],[-0.55379,45.32344],[-0.55275,45.19661],[-0.49094,45.19577],[-0.49184,45.13315],[-0.45661,45.13325],[-0.45512,45.07161],[-0.41611,45.07089],[-0.41621,45.02696],[-0.2907,44.98278],[-0.22,45.06771],[-0.12252,45.02563],[-0.18925,44.94591],[-0.09266,44.91019],[-0.14521,44.8392],[-0.15491,44.84238],[-0.19387,44.78678],[-0.43541,44.87317],[-0.39048,44.68413],[-0.58798,44.66014],[-0.66628,44.99129],[-0.77838,44.99263],[-0.77764,45.05389],[-0.81584,45.05321],[-0.81838,45.11962],[-0.88393,45.12051],[-0.88171,45.18081],[-0.93438,45.18185],[-0.9328,45.24484],[-1.00163,45.24439],[-1.00247,45.30827],[-1.0524,45.31013],[-1.04828,45.36911],[-1.06412,45.36911],[-1.05039,45.18252],[-1.10761,44.80787],[-1.01514,44.80113],[-1.01946,44.76914],[-0.93365,44.76149],[-0.9404,44.7018],[-0.96035,44.56434],[-1.01408,44.56765],[-1.09916,44.1456],[-1.22689,44.14022],[-1.21853,44.03249],[-1.30762,44.029],[-1.39572,43.74301],[-1.31296,43.72951],[-1.37439,43.53109],[-1.34589,43.50606],[-1.59964,43.35423],[-1.76549,43.25548],[-1.79281,43.28038],[-1.80281,43.40425],[-1.72832,43.45033],[-1.58531,43.489],[-1.33584,44.22832],[-1.30744,44.41847],[-1.22511,45.44416],[-1.48685,46.06042],[-1.60176,46.17019],[-1.64442,46.22375],[-1.75643,46.42214],[-2.03483,46.61895],[-2.3466,46.62382],[-2.46561,46.71196],[-2.3233,46.83812],[-2.45286,46.93856],[-2.31733,47.16214],[-2.92848,47.28413],[-2.96742,47.22147],[-3.35602,47.32474],[-3.18803,47.48441],[-3.22791,47.61132],[-3.38912,47.59473],[-3.9162,47.67831],[-4.10163,47.70921],[-4.14314,47.78847],[-4.37619,47.71067],[-4.47962,47.9776],[-4.98565,47.99896],[-4.96938,48.08972],[-4.60147,48.11469],[-4.5921,48.14758],[-4.67101,48.2331],[-4.84243,48.3005],[-5.19867,48.44926],[-5.10346,48.51722],[-4.83515,48.54319],[-4.63117,48.66129],[-3.96692,48.77978],[-3.94939,48.74715],[-3.67013,48.89508],[-3.54444,48.90297],[-3.40954,48.91866],[-3.33344,48.90458],[-3.02769,48.9275],[-2.80207,48.79793],[-2.69353,48.76722],[-2.45786,48.70896],[-2.28475,48.71909],[-2.17543,48.65016],[-2.0137,48.73221],[-1.80953,48.73178],[-1.7243,48.75828],[-1.70557,48.84512],[-1.90304,48.86288],[-1.91027,48.92348],[-1.68714,48.93249],[-1.74277,49.24473],[-1.85748,49.3253],[-1.9262,49.65573],[-2.03908,49.67872],[-2.00445,49.76087],[-1.61759,49.68498],[-1.28373,49.76067],[-1.1492,49.63504],[-1.18545,49.54836],[-0.96463,49.42509],[-0.74429,49.36802],[-0.39014,49.3622],[-0.24976,49.3158],[-0.13342,49.31293],[0.02731,49.37619],[0.01801,49.54656],[0.12211,49.69292],[0.51713,49.86466],[1.05727,49.94904],[1.43908,50.11819],[1.53177,50.46437],[1.52549,50.85867],[1.64118,50.95919],[2.59712,51.17355],[2.66071,51.0196],[2.07124,50.92022],[2.05937,50.94709],[1.7976,50.89906],[1.68089,50.8717],[1.65569,50.59729],[1.75357,50.5932],[1.72295,50.24702],[1.82156,50.24262],[1.80149,50.05116],[1.54565,50.06311],[1.54155,50.01267],[1.42462,50.01747],[1.42667,50.05276],[1.03838,49.84609],[0.9827,49.88916],[0.57961,49.82133],[0.42063,49.76297],[0.4281,49.75445],[0.20831,49.67269],[0.14765,49.57767],[0.13461,49.5809],[0.11117,49.54365],[0.56598,49.52045],[0.5632,49.49989],[0.63001,49.49666],[0.61478,49.37441],[0.54825,49.37851],[0.54254,49.33461],[0.45741,49.33938],[0.45843,49.34492],[0.32597,49.35456],[0.32846,49.38128],[0.28011,49.38433],[0.27689,49.36334],[0.21095,49.36658],[0.20817,49.35084],[0.14326,49.35532],[0.13769,49.3115],[0.07204,49.31532],[0.0675,49.28713],[0.00274,49.29076],[0.00508,49.25711],[-0.02027,49.26036],[-0.03492,49.1973],[-0.19448,49.21463],[-0.38966,49.12726],[-0.45369,49.18792],[-0.3561,49.23214],[-0.82088,49.28331],[-0.99778,49.30149],[-1.16728,49.24545],[-1.19515,49.28183],[-1.26768,49.24099],[-1.34114,49.2975],[-1.24768,49.35025],[-1.44583,49.60689],[-1.81105,49.61757],[-1.77479,49.44333],[-1.72775,49.46509],[-1.5339,49.29098],[-1.47909,49.29233],[-1.47608,49.24027],[-1.43557,49.20326],[-1.47225,49.1822],[-1.45091,48.75725],[-1.31155,48.76408],[-1.30533,48.70216],[-1.2584,48.70421],[-1.25229,48.64353],[-1.23519,48.64435],[-1.2269,48.56824],[-1.85218,48.53086],[-1.84908,48.4975],[-1.92326,48.49187],[-1.92813,48.44096],[-2.04272,48.43601],[-2.03889,48.48191],[-2.2895,48.46102],[-2.3021,48.52433],[-2.40863,48.51618],[-2.42035,48.56954],[-2.43084,48.57852],[-2.49083,48.54924],[-2.47353,48.53326],[-2.54978,48.49647],[-2.54005,48.48747],[-2.70681,48.40746],[-3.02979,48.69115],[-4.01034,48.53179],[-4.05342,48.64412],[-4.38281,48.57349],[-4.35482,48.5118],[-4.38853,48.50473],[-4.13495,48.44868],[-4.16411,48.38936],[-4.01832,48.35685],[-4.04733,48.29918],[-3.98814,48.2867],[-4.0214,48.21606],[-4.03634,48.21958],[-4.06623,48.16028],[-4.16675,48.18247],[-4.18331,48.14934],[-4.17232,48.1065],[-4.20111,48.10285],[-4.18643,48.04389],[-4.18806,48.04061],[-4.35686,48.02305],[-4.25657,47.93997],[-4.23363,47.93497],[-4.21371,47.97598],[-4.21854,47.97726],[-4.1806,48.05569],[-3.6172,47.93124],[-2.17991,47.58642],[-2.25449,47.44501],[-2.30182,47.4568],[-2.32043,47.42092],[-2.30372,47.41755],[-2.34753,47.33499],[-2.36219,47.33837],[-2.38079,47.3039],[-2.35852,47.29854],[-2.29962,47.29784],[-2.29742,47.3618],[-2.13199,47.35852],[-2.13478,47.39107],[-2.01565,47.39623],[-2.01404,47.38095],[-1.92862,47.38254],[-1.92891,47.37956],[-1.8322,47.38184],[-1.82986,47.34165],[-1.73608,47.34304],[-1.73418,47.305],[-1.64084,47.30639],[-1.64011,47.29427],[-1.58355,47.29566],[-1.58531,47.33708],[-1.4612,47.33966],[-1.46003,47.32924],[-1.37211,47.33221],[-1.36054,47.11239],[-1.48567,47.11149],[-1.48582,47.11877],[-1.66897,47.11688],[-1.66971,47.12864],[-1.72553,47.12764],[-1.72612,47.13761],[-1.93975,47.13263],[-1.94019,47.1422],[-1.9925,47.14309],[-1.81066,47.00588],[-1.94723,46.92078],[-1.92891,46.90677],[-1.99529,46.86461],[-1.73652,46.66839],[-1.77535,46.64386],[-1.82678,46.64174],[-1.82473,46.62071],[-1.18192,46.39987],[-0.91261,46.3048],[-0.95481,46.2489],[-0.94235,46.24424],[-0.98385,46.18807]],[[3.14769,42.40072],[3.14949,42.40015],[3.15305,42.40052],[3.15804,42.40243],[3.1877,42.42805],[3.14227,42.5248],[3.06837,42.54635],[3.04884,42.6942],[3.0799,43.03073],[3.22641,43.18727],[3.40916,43.26032],[3.52104,43.25877],[3.66429,43.37628],[3.73841,43.39054],[4.00979,43.53607],[4.17692,43.45636],[4.54355,43.43349],[4.54943,43.35401],[4.83506,43.30891],[4.97506,43.38309],[5.03219,43.31928],[5.25919,43.31928],[5.31082,43.20504],[5.35682,43.18645],[5.36882,43.16785],[5.40232,43.16211],[5.41382,43.17123],[5.40919,43.19921],[5.54232,43.18827],[5.60582,43.14797],[5.6197,43.1529],[5.63832,43.17159],[5.67157,43.1674],[5.69095,43.13411],[5.77607,43.10637],[5.7762,43.09432],[5.75407,43.08328],[5.75707,43.0725],[5.77032,43.06465],[5.85933,43.03469],[5.8877,43.06273],[5.9567,43.06109],[5.96383,43.09277],[6.00033,43.09186],[6.01745,43.06849],[6.10233,43.07415],[6.10483,43.0526],[6.0666,43.04318],[6.06722,43.03785],[6.1427,43.00923],[6.15676,42.98715],[6.19635,42.97331],[6.22221,42.9801],[6.26891,42.99651],[6.25515,43.03627],[6.2019,43.02713],[6.18378,43.09188],[6.30153,43.09909],[6.32478,43.07974],[6.37778,43.08011],[6.38866,43.13395],[6.51341,43.14608],[6.57704,43.17881],[6.62291,43.14563],[6.69779,43.19969],[6.68016,43.23357],[6.72116,43.26007],[6.72241,43.27472],[6.67054,43.29192],[6.68741,43.33113],[6.72416,43.34267],[6.75291,43.409],[6.79104,43.39674],[6.90629,43.41672],[6.96767,43.50273],[6.96617,43.52812],[7.00617,43.53845],[7.03554,43.4982],[7.06892,43.5001],[7.09079,43.51642],[7.06267,43.53672],[7.08254,43.5456],[7.1238,43.53074],[7.1558,43.5437],[7.1433,43.62284],[7.16867,43.64636],[7.2138,43.63469],[7.25417,43.68497],[7.3403,43.66744],[7.36442,43.6894],[7.35305,43.7082],[7.4163,43.71091],[7.45405,43.74506],[7.4943,43.74524],[7.57943,43.78424],[7.60552,43.78603],[7.60368,43.78898],[7.59588,43.79528],[7.59628,43.79549],[7.53853,43.84195],[7.45996,43.79988],[7.44781,43.80934],[7.32353,43.74806],[7.30822,43.76357],[6.64878,43.3885],[6.66865,43.37178],[6.51003,43.27803],[6.56584,43.22509],[6.12681,43.10527],[5.48229,43.24939],[5.47267,43.2309],[5.41567,43.24657],[5.45267,43.3451],[4.80191,43.48158],[4.76416,43.39244],[4.65716,43.42368],[4.67228,43.45608],[4.43203,43.52419],[4.41453,43.49255],[4.16102,43.56433],[4.14452,43.57067],[4.14165,43.57393],[4.18677,43.59946],[4.10565,43.68196],[3.79689,43.52165],[3.77851,43.51313],[3.76464,43.50597],[3.76201,43.50334],[3.74226,43.49328],[3.71601,43.52075],[3.26213,43.28143],[3.24638,43.29735],[3.18388,43.28052],[3.10675,43.24083],[3.15475,43.19419],[2.90625,43.19383],[2.90675,42.76189],[2.94613,42.76208],[2.9465,42.61516],[2.99238,42.61497],[2.99238,42.5125],[3.041,42.51259],[3.04121,42.50093],[3.09086,42.50082],[3.14769,42.40072]],[[6.35945,43.02321],[6.42477,43.02444],[6.45244,43.03504],[6.46985,43.05461],[6.51121,43.05765],[6.52156,43.04318],[6.48364,43.02444],[6.47179,43.00725],[6.41178,42.9918],[6.39852,42.98048],[6.35178,42.99905],[6.35945,43.02321]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Ortho littorale 2000","url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"FR","id":"Geolittoral-Sentiers","license_url":"http://www.geolittoral.developpement-durable.gouv.fr/mentions-legales-a37.html","name":"Géolittoral - Sentiers","type":"wms","url":"http://geolittoral.din.developpement-durable.gouv.fr/wxs?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n_sentier_littoral_l&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-0.98385,46.18807],[-0.89497,46.15628],[-0.93455,46.10163],[-0.84388,46.06949],[-0.88241,46.01637],[-0.53787,45.89558],[-0.63498,45.76444],[-0.86666,45.8479],[-0.76264,45.6245],[-0.69695,45.62659],[-0.69397,45.60184],[-0.68755,45.60174],[-0.688,45.50986],[-0.63799,45.50892],[-0.63978,45.44747],[-0.61574,45.44695],[-0.61619,45.38586],[-0.58544,45.38596],[-0.58529,45.32334],[-0.55379,45.32344],[-0.55275,45.19661],[-0.49094,45.19577],[-0.49184,45.13315],[-0.45661,45.13325],[-0.45512,45.07161],[-0.41611,45.07089],[-0.41621,45.02696],[-0.2907,44.98278],[-0.22,45.06771],[-0.12252,45.02563],[-0.18925,44.94591],[-0.09266,44.91019],[-0.14521,44.8392],[-0.15491,44.84238],[-0.19387,44.78678],[-0.43541,44.87317],[-0.39048,44.68413],[-0.58798,44.66014],[-0.66628,44.99129],[-0.77838,44.99263],[-0.77764,45.05389],[-0.81584,45.05321],[-0.81838,45.11962],[-0.88393,45.12051],[-0.88171,45.18081],[-0.93438,45.18185],[-0.9328,45.24484],[-1.00163,45.24439],[-1.00247,45.30827],[-1.0524,45.31013],[-1.04828,45.36911],[-1.06412,45.36911],[-1.05039,45.18252],[-1.10761,44.80787],[-1.01514,44.80113],[-1.01946,44.76914],[-0.93365,44.76149],[-0.9404,44.7018],[-0.96035,44.56434],[-1.01408,44.56765],[-1.09916,44.1456],[-1.22689,44.14022],[-1.21853,44.03249],[-1.30762,44.029],[-1.39572,43.74301],[-1.31296,43.72951],[-1.37439,43.53109],[-1.34589,43.50606],[-1.59964,43.35423],[-1.76549,43.25548],[-1.79281,43.28038],[-1.80281,43.40425],[-1.72832,43.45033],[-1.58531,43.489],[-1.33584,44.22832],[-1.30744,44.41847],[-1.22511,45.44416],[-1.48685,46.06042],[-1.60176,46.17019],[-1.64442,46.22375],[-1.75643,46.42214],[-2.03483,46.61895],[-2.3466,46.62382],[-2.46561,46.71196],[-2.3233,46.83812],[-2.45286,46.93856],[-2.31733,47.16214],[-2.92848,47.28413],[-2.96742,47.22147],[-3.35602,47.32474],[-3.18803,47.48441],[-3.22791,47.61132],[-3.38912,47.59473],[-3.9162,47.67831],[-4.10163,47.70921],[-4.14314,47.78847],[-4.37619,47.71067],[-4.47962,47.9776],[-4.98565,47.99896],[-4.96938,48.08972],[-4.60147,48.11469],[-4.5921,48.14758],[-4.67101,48.2331],[-4.84243,48.3005],[-5.19867,48.44926],[-5.10346,48.51722],[-4.83515,48.54319],[-4.63117,48.66129],[-3.96692,48.77978],[-3.94939,48.74715],[-3.67013,48.89508],[-3.54444,48.90297],[-3.40954,48.91866],[-3.33344,48.90458],[-3.02769,48.9275],[-2.80207,48.79793],[-2.69353,48.76722],[-2.45786,48.70896],[-2.28475,48.71909],[-2.17543,48.65016],[-2.0137,48.73221],[-1.80953,48.73178],[-1.7243,48.75828],[-1.70557,48.84512],[-1.90304,48.86288],[-1.91027,48.92348],[-1.68714,48.93249],[-1.74277,49.24473],[-1.85748,49.3253],[-1.9262,49.65573],[-2.03908,49.67872],[-2.00445,49.76087],[-1.61759,49.68498],[-1.28373,49.76067],[-1.1492,49.63504],[-1.18545,49.54836],[-0.96463,49.42509],[-0.74429,49.36802],[-0.39014,49.3622],[-0.24976,49.3158],[-0.13342,49.31293],[0.02731,49.37619],[0.01801,49.54656],[0.12211,49.69292],[0.51713,49.86466],[1.05727,49.94904],[1.43908,50.11819],[1.53177,50.46437],[1.52549,50.85867],[1.64118,50.95919],[2.59712,51.17355],[2.66071,51.0196],[2.07124,50.92022],[2.05937,50.94709],[1.7976,50.89906],[1.68089,50.8717],[1.65569,50.59729],[1.75357,50.5932],[1.72295,50.24702],[1.82156,50.24262],[1.80149,50.05116],[1.54565,50.06311],[1.54155,50.01267],[1.42462,50.01747],[1.42667,50.05276],[1.03838,49.84609],[0.9827,49.88916],[0.57961,49.82133],[0.42063,49.76297],[0.4281,49.75445],[0.20831,49.67269],[0.14765,49.57767],[0.13461,49.5809],[0.11117,49.54365],[0.56598,49.52045],[0.5632,49.49989],[0.63001,49.49666],[0.61478,49.37441],[0.54825,49.37851],[0.54254,49.33461],[0.45741,49.33938],[0.45843,49.34492],[0.32597,49.35456],[0.32846,49.38128],[0.28011,49.38433],[0.27689,49.36334],[0.21095,49.36658],[0.20817,49.35084],[0.14326,49.35532],[0.13769,49.3115],[0.07204,49.31532],[0.0675,49.28713],[0.00274,49.29076],[0.00508,49.25711],[-0.02027,49.26036],[-0.03492,49.1973],[-0.19448,49.21463],[-0.38966,49.12726],[-0.45369,49.18792],[-0.3561,49.23214],[-0.82088,49.28331],[-0.99778,49.30149],[-1.16728,49.24545],[-1.19515,49.28183],[-1.26768,49.24099],[-1.34114,49.2975],[-1.24768,49.35025],[-1.44583,49.60689],[-1.81105,49.61757],[-1.77479,49.44333],[-1.72775,49.46509],[-1.5339,49.29098],[-1.47909,49.29233],[-1.47608,49.24027],[-1.43557,49.20326],[-1.47225,49.1822],[-1.45091,48.75725],[-1.31155,48.76408],[-1.30533,48.70216],[-1.2584,48.70421],[-1.25229,48.64353],[-1.23519,48.64435],[-1.2269,48.56824],[-1.85218,48.53086],[-1.84908,48.4975],[-1.92326,48.49187],[-1.92813,48.44096],[-2.04272,48.43601],[-2.03889,48.48191],[-2.2895,48.46102],[-2.3021,48.52433],[-2.40863,48.51618],[-2.42035,48.56954],[-2.43084,48.57852],[-2.49083,48.54924],[-2.47353,48.53326],[-2.54978,48.49647],[-2.54005,48.48747],[-2.70681,48.40746],[-3.02979,48.69115],[-4.01034,48.53179],[-4.05342,48.64412],[-4.38281,48.57349],[-4.35482,48.5118],[-4.38853,48.50473],[-4.13495,48.44868],[-4.16411,48.38936],[-4.01832,48.35685],[-4.04733,48.29918],[-3.98814,48.2867],[-4.0214,48.21606],[-4.03634,48.21958],[-4.06623,48.16028],[-4.16675,48.18247],[-4.18331,48.14934],[-4.17232,48.1065],[-4.20111,48.10285],[-4.18643,48.04389],[-4.18806,48.04061],[-4.35686,48.02305],[-4.25657,47.93997],[-4.23363,47.93497],[-4.21371,47.97598],[-4.21854,47.97726],[-4.1806,48.05569],[-3.6172,47.93124],[-2.17991,47.58642],[-2.25449,47.44501],[-2.30182,47.4568],[-2.32043,47.42092],[-2.30372,47.41755],[-2.34753,47.33499],[-2.36219,47.33837],[-2.38079,47.3039],[-2.35852,47.29854],[-2.29962,47.29784],[-2.29742,47.3618],[-2.13199,47.35852],[-2.13478,47.39107],[-2.01565,47.39623],[-2.01404,47.38095],[-1.92862,47.38254],[-1.92891,47.37956],[-1.8322,47.38184],[-1.82986,47.34165],[-1.73608,47.34304],[-1.73418,47.305],[-1.64084,47.30639],[-1.64011,47.29427],[-1.58355,47.29566],[-1.58531,47.33708],[-1.4612,47.33966],[-1.46003,47.32924],[-1.37211,47.33221],[-1.36054,47.11239],[-1.48567,47.11149],[-1.48582,47.11877],[-1.66897,47.11688],[-1.66971,47.12864],[-1.72553,47.12764],[-1.72612,47.13761],[-1.93975,47.13263],[-1.94019,47.1422],[-1.9925,47.14309],[-1.81066,47.00588],[-1.94723,46.92078],[-1.92891,46.90677],[-1.99529,46.86461],[-1.73652,46.66839],[-1.77535,46.64386],[-1.82678,46.64174],[-1.82473,46.62071],[-1.18192,46.39987],[-0.91261,46.3048],[-0.95481,46.2489],[-0.94235,46.24424],[-0.98385,46.18807]],[[3.14769,42.40072],[3.14949,42.40015],[3.15305,42.40052],[3.15804,42.40243],[3.1877,42.42805],[3.14227,42.5248],[3.06837,42.54635],[3.04884,42.6942],[3.0799,43.03073],[3.22641,43.18727],[3.40916,43.26032],[3.52104,43.25877],[3.66429,43.37628],[3.73841,43.39054],[4.00979,43.53607],[4.17692,43.45636],[4.54355,43.43349],[4.54943,43.35401],[4.83506,43.30891],[4.97506,43.38309],[5.03219,43.31928],[5.25919,43.31928],[5.31082,43.20504],[5.35682,43.18645],[5.36882,43.16785],[5.40232,43.16211],[5.41382,43.17123],[5.40919,43.19921],[5.54232,43.18827],[5.60582,43.14797],[5.6197,43.1529],[5.63832,43.17159],[5.67157,43.1674],[5.69095,43.13411],[5.77607,43.10637],[5.7762,43.09432],[5.75407,43.08328],[5.75707,43.0725],[5.77032,43.06465],[5.85933,43.03469],[5.8877,43.06273],[5.9567,43.06109],[5.96383,43.09277],[6.00033,43.09186],[6.01745,43.06849],[6.10233,43.07415],[6.10483,43.0526],[6.0666,43.04318],[6.06722,43.03785],[6.1427,43.00923],[6.15676,42.98715],[6.19635,42.97331],[6.22221,42.9801],[6.26891,42.99651],[6.25515,43.03627],[6.2019,43.02713],[6.18378,43.09188],[6.30153,43.09909],[6.32478,43.07974],[6.37778,43.08011],[6.38866,43.13395],[6.51341,43.14608],[6.57704,43.17881],[6.62291,43.14563],[6.69779,43.19969],[6.68016,43.23357],[6.72116,43.26007],[6.72241,43.27472],[6.67054,43.29192],[6.68741,43.33113],[6.72416,43.34267],[6.75291,43.409],[6.79104,43.39674],[6.90629,43.41672],[6.96767,43.50273],[6.96617,43.52812],[7.00617,43.53845],[7.03554,43.4982],[7.06892,43.5001],[7.09079,43.51642],[7.06267,43.53672],[7.08254,43.5456],[7.1238,43.53074],[7.1558,43.5437],[7.1433,43.62284],[7.16867,43.64636],[7.2138,43.63469],[7.25417,43.68497],[7.3403,43.66744],[7.36442,43.6894],[7.35305,43.7082],[7.4163,43.71091],[7.45405,43.74506],[7.4943,43.74524],[7.57943,43.78424],[7.60552,43.78603],[7.60368,43.78898],[7.59588,43.79528],[7.59628,43.79549],[7.53853,43.84195],[7.45996,43.79988],[7.44781,43.80934],[7.32353,43.74806],[7.30822,43.76357],[6.64878,43.3885],[6.66865,43.37178],[6.51003,43.27803],[6.56584,43.22509],[6.12681,43.10527],[5.48229,43.24939],[5.47267,43.2309],[5.41567,43.24657],[5.45267,43.3451],[4.80191,43.48158],[4.76416,43.39244],[4.65716,43.42368],[4.67228,43.45608],[4.43203,43.52419],[4.41453,43.49255],[4.16102,43.56433],[4.14452,43.57067],[4.14165,43.57393],[4.18677,43.59946],[4.10565,43.68196],[3.79689,43.52165],[3.77851,43.51313],[3.76464,43.50597],[3.76201,43.50334],[3.74226,43.49328],[3.71601,43.52075],[3.26213,43.28143],[3.24638,43.29735],[3.18388,43.28052],[3.10675,43.24083],[3.15475,43.19419],[2.90625,43.19383],[2.90675,42.76189],[2.94613,42.76208],[2.9465,42.61516],[2.99238,42.61497],[2.99238,42.5125],[3.041,42.51259],[3.04121,42.50093],[3.09086,42.50082],[3.14769,42.40072]],[[6.35945,43.02321],[6.42477,43.02444],[6.45244,43.03504],[6.46985,43.05461],[6.51121,43.05765],[6.52156,43.04318],[6.48364,43.02444],[6.47179,43.00725],[6.41178,42.9918],[6.39852,42.98048],[6.35178,42.99905],[6.35945,43.02321]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Ortho Littorale V2 - MEDDE","url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"FR","end_date":"2014","id":"GeolittoralV2-Orthophotos","license_url":"http://www.geolittoral.developpement-durable.gouv.fr/mentions-legales-a37.html","name":"Géolittoral V2 - Orthophotos 2011-2014","start_date":"2011","type":"wms","url":"http://geolittoral.din.developpement-durable.gouv.fr/wxs?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortholittorale_v2_rvb&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[6.06066,48.60554],[6.29717,48.59923],[6.30611,48.74077],[6.06896,48.7471],[6.06066,48.60554]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"GrandNancy Orthophotographie 2012","url":"https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie"},"country_code":"FR","end_date":"2012","id":"GrandNancy_Orthophotographie_2012","license_url":"https://openstreetmap.fr/outils","max_zoom":22,"name":"GrandNancy - Orthophoto - 2012","start_date":"2012","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/nancy_2012/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-1.48638,46.87691],[-1.54437,46.84873],[-1.73468,46.87246],[-1.89276,46.94234],[-1.95475,46.98084],[-2.07067,47.08521],[-2.2678,47.12656],[-2.22627,47.17124],[-2.19217,47.16914],[-2.19341,47.25546],[-2.29694,47.22769],[-2.41658,47.25336],[-2.54862,47.28575],[-2.63913,47.41678],[-2.50573,47.50812],[-2.31063,47.53021],[-2.24836,47.52384],[-2.23223,47.51499],[-2.12109,47.54674],[-2.11783,47.60126],[-2.1001,47.61123],[-2.09981,47.62005],[-2.11141,47.62873],[-2.10055,47.65141],[-2.08121,47.66578],[-1.98016,47.70751],[-1.83077,47.72419],[-1.67455,47.72544],[-1.63735,47.77463],[-1.49601,47.81752],[-1.49911,47.84166],[-1.38133,47.84415],[-1.346,47.81086],[-1.23007,47.78587],[-1.21643,47.75838],[-1.22635,47.73628],[-1.21086,47.7317],[-1.18668,47.73462],[-1.15196,47.69332],[-1.13151,47.63654],[-1.09121,47.6332],[-0.99265,47.6027],[-0.98459,47.58598],[-1.0317,47.55001],[-1.13585,47.55628],[-1.13275,47.5161],[-1.0317,47.51778],[-0.94863,47.50103],[-0.93686,47.47715],[-0.93376,47.43859],[-0.9009,47.39874],[-0.92694,47.37482],[-0.97157,47.35845],[-1.28339,47.32736],[-1.23379,47.26093],[-1.20032,47.26935],[-1.16498,47.24957],[-1.14143,47.1763],[-1.1563,47.15818],[-1.20652,47.12402],[-1.20838,47.10968],[-1.15568,47.10504],[-1.14081,47.08056],[-1.09431,47.0717],[-1.09989,47.03199],[-1.14453,47.01636],[-1.21582,47.02904],[-1.26727,47.06325],[-1.28524,47.02185],[-1.34972,47.02397],[-1.33918,46.969],[-1.3491,46.94446],[-1.45014,46.91186],[-1.47504,46.9176],[-1.48775,46.93063],[-1.49235,46.98433],[-1.48644,46.99943],[-1.49213,47.02722],[-1.52764,47.00541],[-1.52961,46.97252],[-1.50507,46.94439],[-1.50222,46.92973],[-1.51142,46.91371],[-1.48622,46.89724],[-1.48638,46.87691]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Loire-Atlantique ouverture des données publiques","url":"http://data2.loire-atlantique.fr/licences/"},"available_projections":["EPSG:4326","EPSG:2154","EPSG:3857"],"country_code":"FR","end_date":"2016","id":"Loire_Atlantique-Orthophotos-2016","license_url":"https://wiki.openstreetmap.org/wiki/FR:Sources_de_donn%C3%A9es_potentielles/France","max_zoom":20,"name":"Loire-Atlantique - Orthophotos 2016 - 10 cm","start_date":"2016","type":"wms","url":"https://wms-vuduciel2.makina-corpus.net/geoserver/wms?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=cg44:ortho44-2016&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[4.67728,45.9607],[4.66438,45.54676],[4.88308,45.54291],[4.8848,45.59698],[5.16666,45.59194],[5.17284,45.74596],[5.10796,45.74692],[5.11311,45.8814],[4.90677,45.88499],[4.90849,45.9213],[4.84394,45.92202],[4.84531,45.95831],[4.67728,45.9607]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Métropole de Lyon","url":"https://data.beta.grandlyon.com/fr/jeux-de-donnees/orthophotographie-2018-metropole-lyon-format-ecw/info"},"available_projections":["EPSG:4326","EPSG:4171","EPSG:27562","EPSG:2154","EPSG:3857","EPSG:3946","EPSG:27572"],"best":true,"category":"photo","country_code":"FR","description":"Orthophotographie 2018 de la Métropole de Lyon","end_date":"2018-04-20","id":"orthophoto_lyon_2018","license_url":"https://download.data.grandlyon.com/files/grandlyon/LicenceOuverte.pdf","max_zoom":22,"min_zoom":10,"name":"Lyon Orthophoto 2018 (8cm)","privacy_policy_url":"https://data.beta.grandlyon.com/en/mentions-legales","start_date":"2018-04-17","type":"wms","url":"https://download.data.grandlyon.com/wms/grandlyon?LAYERS=Ortho2018_Dalle_unique_8cm_CC46&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[4.69049,45.54652],[4.83131,45.54652],[4.83131,45.57131],[4.88344,45.57131],[4.88344,45.59745],[5.16622,45.59745],[5.16622,45.74533],[5.10793,45.74533],[5.10793,45.88145],[4.90698,45.88145],[4.90698,45.92107],[4.84377,45.92107],[4.84377,45.94011],[4.71543,45.94011],[4.71543,45.87018],[4.67458,45.87018],[4.67458,45.7178],[4.69567,45.7178],[4.69049,45.54652]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Grand Lyon Smart Data DSIT","url":"https://data.grandlyon.com/jeux-de-donnees/orthophotographie-2012-metropole-lyon/info"},"available_projections":["EPSG:27572","EPSG:27562","EPSG:2154","EPSG:3857","EPSG:4326","EPSG:3946","EPSG:4171"],"category":"historicphoto","country_code":"FR","description":"Orthophotographie 2012 du Grand Lyon","end_date":"2012-03","id":"orthophoto_lyon_2012","license_url":"https://download.data.grandlyon.com/files/grandlyon/LicenceOuverte.pdf","name":"Lyon Orthophoto 2012-03 10cm","privacy_policy_url":"https://data.beta.grandlyon.com/en/mentions-legales","start_date":"2012-03","type":"wms","url":"https://download.data.grandlyon.com/wms/grandlyon?LAYERS=Ortho2012_vue_ensemble_20cm_CC46&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[4.66489,45.54688],[4.88253,45.54348],[4.88435,45.59745],[5.16623,45.59242],[5.17217,45.74532],[5.10793,45.74653],[5.11305,45.88145],[4.90698,45.88508],[4.90822,45.92106],[4.84377,45.92212],[4.84497,45.9581],[4.67729,45.96069],[4.66489,45.54688]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Métropole de Lyon DINSI","url":"https://data.beta.grandlyon.com/fr/jeux-de-donnees/orthophotographie-2015-metropole-lyon-format-ecw/info"},"category":"historicphoto","country_code":"FR","end_date":"2015-05","id":"orthophoto_lyon","license_url":"https://download.data.grandlyon.com/files/grandlyon/LicenceOuverte.pdf","max_zoom":22,"min_zoom":2,"name":"Lyon Orthophoto 2015 (8cm)","privacy_policy_url":"https://data.beta.grandlyon.com/en/mentions-legales","start_date":"2015-05","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/lyon/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[7.53731,47.78041],[7.57439,47.84128],[7.57301,47.85602],[7.55035,47.86201],[7.53525,47.84588],[7.5016,47.85141],[7.45972,47.84174],[7.4556,47.83252],[7.4453,47.83114],[7.43088,47.84128],[7.41549,47.83831],[7.39174,47.84727],[7.38007,47.83851],[7.33475,47.83989],[7.34024,47.89563],[7.31758,47.91082],[7.28737,47.89977],[7.28462,47.88412],[7.24686,47.88228],[7.23724,47.87629],[7.23312,47.86431],[7.2139,47.86524],[7.183,47.85786],[7.17613,47.84819],[7.21115,47.82284],[7.18986,47.81085],[7.19948,47.78179],[7.16789,47.77025],[7.183,47.73517],[7.17682,47.72362],[7.19467,47.69451],[7.21802,47.68527],[7.24548,47.68527],[7.25166,47.69497],[7.2448,47.70376],[7.2551,47.71392],[7.27844,47.713],[7.27982,47.70237],[7.26814,47.69405],[7.26883,47.68434],[7.28531,47.67094],[7.30247,47.66308],[7.32376,47.65984],[7.33337,47.66724],[7.3732,47.65383],[7.39242,47.65475],[7.40822,47.6603],[7.39723,47.67648],[7.42744,47.68666],[7.47551,47.69821],[7.5222,47.69636],[7.55104,47.71531],[7.56134,47.73517],[7.53731,47.78041]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Mulhouse Alsace Agglomération 2018","url":"https://data.mulhouse-alsace.fr/explore/dataset/m2a_orthophotographie-2018/information/"},"country_code":"FR","end_date":"2018","id":"Mulhouse_2018","license_url":"https://data.mulhouse-alsace.fr/explore/dataset/m2a_orthophotographie-2018/information/","max_zoom":22,"name":"Mulhouse - 2018","start_date":"2018","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/mulhouse_2018/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Tiles © cquest@Openstreetmap France, data © IGN, LO/OL","url":"https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE"},"country_code":"FR","description":"Routes du réseau classé (autoroutes, nationales, départementales)","id":"route500","license_url":"https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE","max_zoom":20,"min_zoom":12,"name":"Route 500","overlay":true,"type":"tms","url":"https://{switch:a,b,c}.tile.openstreetmap.fr/route500/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[1.192,43.63288],[1.20154,43.63297],[1.20111,43.65549],[1.2228,43.6557],[1.22262,43.66534],[1.22753,43.66538],[1.22754,43.66564],[1.23376,43.66569],[1.23376,43.66502],[1.23512,43.66503],[1.23509,43.66707],[1.24436,43.66716],[1.24416,43.67439],[1.2494,43.67443],[1.2494,43.67466],[1.25557,43.67472],[1.25557,43.67445],[1.25695,43.67447],[1.25688,43.67853],[1.28749,43.67883],[1.28708,43.70132],[1.30882,43.70146],[1.30865,43.71277],[1.33033,43.71295],[1.33002,43.73052],[1.33671,43.73058],[1.33673,43.73122],[1.37343,43.73105],[1.37358,43.72458],[1.46045,43.72529],[1.46078,43.7028],[1.48249,43.70295],[1.48298,43.66921],[1.50468,43.66936],[1.50484,43.65812],[1.52655,43.65827],[1.52669,43.64703],[1.54837,43.64716],[1.54854,43.63594],[1.57022,43.63608],[1.57051,43.61358],[1.54882,43.61343],[1.5491,43.59095],[1.57077,43.59107],[1.57094,43.57983],[1.57937,43.57989],[1.57948,43.57377],[1.58091,43.57378],[1.58109,43.55738],[1.57123,43.55731],[1.57165,43.52355],[1.39848,43.52226],[1.39865,43.51101],[1.3121,43.51025],[1.3119,43.52152],[1.29026,43.52131],[1.28986,43.54382],[1.31152,43.54401],[1.31133,43.55526],[1.30369,43.55519],[1.30361,43.55951],[1.29554,43.55943],[1.29554,43.55955],[1.28956,43.55945],[1.28929,43.57754],[1.26757,43.57736],[1.2674,43.58861],[1.25355,43.5885],[1.25338,43.59563],[1.2518,43.59563],[1.2518,43.59494],[1.23504,43.59478],[1.23504,43.5946],[1.22396,43.5946],[1.22394,43.59947],[1.21397,43.5993],[1.21388,43.60464],[1.20206,43.60448],[1.20195,43.61048],[1.19243,43.61037],[1.192,43.63288]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophotoplan 2007 - Toulouse Métropole, 20/09/2012, sous license ODbL","url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2007/information/"},"category":"historicphoto","country_code":"FR","end_date":"2007","id":"Toulouse-Orthophotoplan-2007","license_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2007/information/","max_zoom":22,"min_zoom":7,"name":"Toulouse - Orthophotoplan 2007","start_date":"2007","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophotoplan 2011 - Toulouse Métropole, 20/09/2012, sous license ODbL","url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2011/information/"},"category":"historicphoto","country_code":"FR","end_date":"2011","id":"Toulouse-Orthophotoplan-2011","license_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2011/information/","max_zoom":22,"min_zoom":7,"name":"Toulouse - Orthophotoplan 2011","start_date":"2011","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophotoplan 2013 - Toulouse Métropole, 31/12/2013, sous license ODbL","url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2013/information/"},"category":"historicphoto","country_code":"FR","end_date":"2013","id":"Toulouse-Orthophotoplan-2013","license_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2013/information/","max_zoom":22,"min_zoom":7,"name":"Toulouse - Orthophotoplan 2013","start_date":"2013","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2013/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophotoplan 2015 - Toulouse Métropole, 14/12/2015, sous license ODbL","url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2015/information/"},"category":"historicphoto","country_code":"FR","end_date":"2015","id":"Toulouse-Orthophotoplan-2015","license_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2015/information/","max_zoom":22,"min_zoom":7,"name":"Toulouse - Orthophotoplan 2015","start_date":"2015","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2015/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophotoplan 2017 - Toulouse Métropole, 04/07/2018, sous license ODbL","url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2017/information/"},"best":true,"category":"photo","country_code":"FR","end_date":"2017","id":"Toulouse-Orthophotoplan-2017","license_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2017/information/","max_zoom":22,"min_zoom":7,"name":"Toulouse - Orthophotoplan 2017","start_date":"2017","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2017/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[0.77512,47.32983],[0.77427,47.35617],[0.77053,47.35611],[0.77024,47.36512],[0.77398,47.36517],[0.7728,47.40148],[0.7904,47.40147],[0.78988,47.4103],[0.79117,47.41047],[0.79108,47.41942],[0.79392,47.41942],[0.79319,47.43733],[0.79834,47.43742],[0.79808,47.45544],[0.80044,47.45541],[0.80138,47.46426],[0.80074,47.46899],[0.79396,47.47331],[0.78405,47.47323],[0.78387,47.47871],[0.77606,47.47859],[0.77585,47.48204],[0.77066,47.48219],[0.77044,47.4859],[0.76096,47.49092],[0.75718,47.49092],[0.73753,47.50336],[0.7259,47.50588],[0.71113,47.50576],[0.70418,47.50408],[0.69109,47.50038],[0.69045,47.49718],[0.67757,47.49683],[0.67757,47.49353],[0.66427,47.49301],[0.6635,47.48953],[0.65088,47.48958],[0.65133,47.48032],[0.64734,47.4803],[0.64747,47.47852],[0.64474,47.47846],[0.64479,47.47575],[0.64238,47.47578],[0.64225,47.47302],[0.63835,47.47294],[0.63792,47.47131],[0.60513,47.47079],[0.60513,47.46632],[0.59852,47.46603],[0.59878,47.46156],[0.592,47.46156],[0.59226,47.45976],[0.58084,47.45971],[0.58007,47.46145],[0.57234,47.46139],[0.57222,47.46512],[0.55874,47.46489],[0.5466,47.46052],[0.53269,47.45355],[0.52677,47.45315],[0.52677,47.45152],[0.52231,47.45123],[0.52256,47.44804],[0.51977,47.44776],[0.52007,47.44247],[0.4975,47.4416],[0.49716,47.44049],[0.49355,47.44015],[0.49355,47.43573],[0.47943,47.43575],[0.46171,47.42819],[0.45643,47.42088],[0.45489,47.41229],[0.45506,47.40218],[0.46149,47.40193],[0.46167,47.39641],[0.46879,47.39602],[0.47016,47.35173],[0.45677,47.3515],[0.45729,47.34254],[0.43085,47.34196],[0.43196,47.30602],[0.47154,47.3067],[0.47257,47.28004],[0.48527,47.28004],[0.48578,47.27084],[0.49935,47.27107],[0.49917,47.26245],[0.55273,47.26304],[0.55222,47.27201],[0.56561,47.27224],[0.56526,47.28156],[0.59118,47.28156],[0.59067,47.29099],[0.66912,47.29169],[0.6832,47.29564],[0.6832,47.30077],[0.69658,47.30123],[0.69641,47.3024],[0.71006,47.30245],[0.72293,47.30589],[0.72285,47.31043],[0.74165,47.31084],[0.75426,47.31392],[0.7625,47.31815],[0.76207,47.32013],[0.76619,47.32009],[0.76956,47.32207],[0.77233,47.32508],[0.77336,47.3267],[0.77512,47.32983]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophoto Tour(s)plus 2013","url":"https://wiki.openstreetmap.org/wiki/Tours/Orthophoto"},"country_code":"FR","end_date":"2013","id":"Tours-Orthophoto-2013","license_url":"https://wiki.openstreetmap.org/wiki/Tours/Orthophoto","max_zoom":22,"name":"Tours - Orthophotos 2013","start_date":"2013","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/tours_2013/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[0.54575,47.46526],[0.54585,47.46082],[0.53922,47.4607],[0.53935,47.45624],[0.5328,47.4561],[0.5329,47.45157],[0.52619,47.4514],[0.52659,47.44249],[0.50009,47.44207],[0.50024,47.43758],[0.4936,47.43743],[0.4937,47.43293],[0.46061,47.43246],[0.46072,47.42798],[0.4541,47.42781],[0.45493,47.40539],[0.46154,47.40545],[0.46191,47.39649],[0.46843,47.3966],[0.46913,47.37864],[0.47571,47.37876],[0.47621,47.3652],[0.48283,47.36535],[0.48296,47.36083],[0.47635,47.36074],[0.47665,47.35173],[0.47005,47.35162],[0.4702,47.34713],[0.46375,47.34701],[0.45714,47.34241],[0.45729,47.33791],[0.45067,47.33781],[0.45084,47.33331],[0.44422,47.3332],[0.44438,47.32871],[0.43114,47.3285],[0.43163,47.315],[0.43824,47.31511],[0.43838,47.31062],[0.47145,47.31114],[0.47131,47.31566],[0.47789,47.31575],[0.47807,47.31128],[0.48468,47.31136],[0.48486,47.30687],[0.49144,47.30698],[0.49174,47.29797],[0.48516,47.29787],[0.48543,47.28887],[0.47885,47.28877],[0.47916,47.27978],[0.48578,47.2799],[0.48591,47.27539],[0.49254,47.2755],[0.49267,47.27101],[0.4993,47.27111],[0.49943,47.26661],[0.51927,47.26692],[0.51942,47.26242],[0.52602,47.26252],[0.52587,47.26702],[0.5457,47.26734],[0.54555,47.27183],[0.55877,47.27204],[0.55863,47.27652],[0.56523,47.27663],[0.56508,47.28112],[0.57168,47.28123],[0.57152,47.28572],[0.57814,47.28583],[0.57799,47.29033],[0.5846,47.29043],[0.58431,47.29942],[0.5975,47.29961],[0.59766,47.29514],[0.65716,47.296],[0.6573,47.29151],[0.6705,47.29172],[0.67035,47.29621],[0.68362,47.29637],[0.68343,47.30089],[0.69006,47.30096],[0.68992,47.30547],[0.7362,47.30612],[0.73608,47.31061],[0.7559,47.31089],[0.75577,47.31539],[0.76238,47.31547],[0.76223,47.31999],[0.77549,47.32015],[0.77497,47.33882],[0.77458,47.35163],[0.76804,47.35159],[0.76759,47.36053],[0.77424,47.36062],[0.77335,47.39213],[0.76674,47.39202],[0.76644,47.40108],[0.77306,47.40111],[0.77289,47.41013],[0.76618,47.41002],[0.76603,47.4145],[0.75276,47.4143],[0.75298,47.40981],[0.74624,47.4097],[0.74594,47.42322],[0.73923,47.42315],[0.73887,47.43661],[0.73233,47.43652],[0.73219,47.44106],[0.7255,47.44098],[0.72542,47.44535],[0.73188,47.44548],[0.73185,47.45011],[0.73845,47.45023],[0.73831,47.45463],[0.74494,47.45474],[0.74432,47.4772],[0.73107,47.47697],[0.7309,47.48154],[0.71762,47.48126],[0.71779,47.47684],[0.69777,47.4765],[0.69805,47.47198],[0.69145,47.47189],[0.69173,47.46302],[0.6851,47.46293],[0.68494,47.46735],[0.67826,47.46733],[0.67798,47.47622],[0.67141,47.47616],[0.67104,47.4882],[0.65773,47.48797],[0.65782,47.48504],[0.65119,47.48483],[0.65147,47.47586],[0.64482,47.47572],[0.64493,47.47126],[0.6118,47.47075],[0.61188,47.46631],[0.60528,47.46612],[0.60542,47.46166],[0.59888,47.46155],[0.59902,47.45709],[0.57249,47.45669],[0.57218,47.46565],[0.54575,47.46526]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Orthophoto Tour(s) Plus 2008","url":"https://wiki.openstreetmap.org/wiki/Tours/Orthophoto"},"country_code":"FR","end_date":"2011","id":"Tours-Orthophoto-2008_2010","license_url":"https://wiki.openstreetmap.org/wiki/Tours/Orthophoto","max_zoom":20,"name":"Tours - Orthophotos 2008-2010","start_date":"2008","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[5.43565,44.99918],[5.43193,44.9229],[5.43624,44.92284],[5.43472,44.89001],[5.43303,44.88995],[5.43065,44.85026],[5.43387,44.85014],[5.43285,44.82638],[5.43548,44.82626],[5.43497,44.8139],[5.44106,44.81372],[5.43717,44.74098],[5.4546,44.74044],[5.45282,44.70425],[5.5211,44.70245],[5.5233,44.73858],[5.58904,44.73684],[5.59298,44.81263],[5.5879,44.81299],[5.58977,44.84947],[5.58823,44.84938],[5.58972,44.87351],[5.53863,44.87503],[5.53947,44.88686],[5.52834,44.88733],[5.53002,44.92012],[5.53319,44.92012],[5.53761,44.99624],[5.43565,44.99918]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Parc Naturel Régional du Vercors"},"country_code":"FR","end_date":"1999","id":"Vercors-Orthophotos-1999","license_url":"https://www.data.gouv.fr/fr/datasets/photos-aeriennes-orthorectifiees-de-la-reserve-naturelle-des-hauts-plateaux-du-vercors/","max_zoom":19,"name":"Vercors (Réserve naturelle des Hauts-Plateaux du Vercors) - Orthophoto - 1999 - 1 m","start_date":"1999","type":"tms","url":"https://wms.openstreetmap.fr/tms/1.0.0/PNRVercors-RHP-1999/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.04697,54.83947],[-3.05864,55.24157],[-4.04466,55.23296],[-4.07076,55.63654],[-4.61904,55.6253],[-4.64926,56.02834],[-4.48961,56.03217],[-4.52394,56.4367],[-3.86751,56.44581],[-3.84176,56.04944],[-3.44591,56.04982],[-3.43492,55.64429],[-2.79497,55.65049],[-2.80802,56.05749],[-3.20661,56.05327],[-3.21417,56.45682],[-3.73808,56.45075],[-3.74185,56.86175],[-5.07669,56.83171],[-5.03652,56.42949],[-5.16012,56.42493],[-5.12991,56.01798],[-5.92607,55.99456],[-5.85518,55.23335],[-5.2281,55.25136],[-5.21024,55.02765],[-4.65956,55.04181],[-4.64548,54.81633],[-3.04697,54.83947]],[[-1.74835,57.76428],[-1.74065,57.36],[-2.58022,57.35537],[-2.57437,57.04526],[-2.08408,57.04799],[-2.07651,56.64276],[-2.7345,56.63906],[-2.73781,56.81718],[-3.23885,56.81437],[-3.24896,57.35168],[-3.75629,57.34889],[-3.76219,57.65868],[-4.76587,57.64473],[-4.81008,58.26984],[-5.2511,58.26547],[-5.27376,58.66767],[-3.55818,58.69887],[-3.56607,58.9316],[-3.37656,58.93444],[-3.38584,59.20171],[-3.18713,59.20215],[-3.18747,59.24176],[-3.06757,59.24203],[-3.07855,59.42135],[-2.37131,59.42763],[-2.36856,59.0222],[-2.67893,59.02078],[-2.67343,58.83935],[-2.86569,58.83651],[-2.8602,58.53531],[-3.03461,58.53316],[-3.0195,58.13159],[-3.6156,58.11982],[-3.61276,57.97754],[-3.71092,57.97562],[-3.69932,57.75364],[-1.74835,57.76428]],[[-7.07492,56.76319],[-7.73471,56.73566],[-7.7911,57.13994],[-7.70662,57.14343],[-7.76299,57.54311],[-7.60218,57.54968],[-7.62134,57.68452],[-7.72499,57.6803],[-7.73017,57.71673],[-7.60264,57.72191],[-7.59964,57.70083],[-7.48634,57.70544],[-7.49528,57.76813],[-7.37493,57.77301],[-7.39337,57.90201],[-7.23591,57.90838],[-7.24323,57.95948],[-7.13916,57.96369],[-7.14508,58.00495],[-7.23742,58.00122],[-7.23297,57.97018],[-7.31133,57.96702],[-7.31538,57.99525],[-7.24904,57.99792],[-7.28082,58.21856],[-7.07355,58.22687],[-7.0827,58.29018],[-6.80743,58.30119],[-6.82768,58.44074],[-6.50305,58.45366],[-6.51532,58.53792],[-6.16474,58.55184],[-6.10631,58.14894],[-6.33469,58.13976],[-6.27759,57.74145],[-6.96138,57.71366],[-6.93332,57.51615],[-7.10017,57.50933],[-7.05218,57.169],[-7.13111,57.16575],[-7.07492,56.76319]],[[0.41076,50.82087],[0.98102,50.80612],[0.99437,51.01173],[1.45062,50.99998],[1.47712,51.40552],[0.89619,51.42035],[0.88243,51.21039],[0.505,51.22007],[0.52273,51.49042],[-0.63397,51.51063],[-0.63671,51.44563],[-1.09951,51.45248],[-1.11485,51.04814],[-0.52987,51.0394],[-0.52751,51.10203],[0.42806,51.08778],[0.41076,50.82087]],[[-5.39457,51.9619],[-4.79581,51.98051],[-4.78873,51.89403],[-4.20265,51.91228],[-4.22941,52.23828],[-3.6552,52.25602],[-3.62228,51.85483],[-4.21342,51.8364],[-4.18551,51.49342],[-4.77661,51.47485],[-4.78476,51.57525],[-5.08799,51.56574],[-5.09422,51.64242],[-5.3678,51.63385],[-5.39457,51.9619]],[[-1.2389,54.03537],[-0.62779,54.02811],[-0.62004,54.25257],[-0.57268,54.25201],[-0.55865,54.65542],[-1.17998,54.66269],[-1.18782,54.43788],[-1.23221,54.4384],[-1.2389,54.03537]],[[-2.67227,50.97677],[-2.09961,50.98023],[-2.10572,51.37949],[-1.58877,51.38259],[-1.59499,51.78589],[-2.17563,51.78891],[-2.17154,51.38392],[-2.67846,51.38088],[-2.67227,50.97677]],[[-2.60155,53.27155],[-3.22973,53.2685],[-3.23522,53.67231],[-2.60704,53.67533],[-2.60155,53.27155]],[[-0.03942,51.7728],[-0.61563,51.77577],[-0.60465,52.58414],[-0.02843,52.58122],[-0.03942,51.7728]],[[-2.91529,54.03523],[-3.53229,54.02866],[-3.54484,54.43397],[-2.92785,54.44047],[-2.91529,54.03523]],[[-6.30583,57.19689],[-6.3539,57.60015],[-5.69111,57.62295],[-5.64305,57.21995],[-6.30583,57.19689]],[[1.17115,52.57236],[1.19865,52.97594],[1.79788,52.96106],[1.77037,52.55734],[1.17115,52.57236]],[[-2.40225,55.56317],[-2.40088,55.9657],[-1.76084,55.96501],[-1.76222,55.56248],[-2.40225,55.56317]],[[-6.32574,56.38537],[-7.0196,56.35747],[-7.07316,56.76384],[-6.3793,56.79145],[-6.32574,56.38537]],[[-2.42258,54.4431],[-2.42574,54.84188],[-1.79931,54.84354],[-1.79614,54.44477],[-2.42258,54.4431]],[[-3.02701,51.37935],[-3.60589,51.37017],[-3.62237,51.77304],[-3.04349,51.78215],[-3.02701,51.37935]],[[-3.05379,52.18979],[-3.06615,52.59374],[-2.48364,52.60034],[-2.47128,52.19646],[-3.05379,52.18979]],[[-5.67673,51.70425],[-5.67886,51.73101],[-5.4636,51.7376],[-5.46146,51.71084],[-5.67673,51.70425]],[[-5.84427,59.10882],[-5.8469,59.13578],[-5.79558,59.1371],[-5.79294,59.11014],[-5.84427,59.10882]],[[-8.64844,57.77861],[-8.66597,57.87717],[-8.46649,57.88721],[-8.44897,57.78867],[-8.64844,57.77861]],[[-4.52711,59.01532],[-4.52859,59.03319],[-4.47623,59.03434],[-4.47475,59.01646],[-4.52711,59.01532]],[[-7.68062,58.25838],[-7.68655,58.2938],[-7.53445,58.30084],[-7.52852,58.26542],[-7.68062,58.25838]],[[-6.19102,59.08009],[-6.19546,59.11586],[-6.12542,59.11815],[-6.12099,59.08238],[-6.19102,59.08009]],[[-4.42669,59.07112],[-4.42805,59.0887],[-4.37621,59.08976],[-4.37485,59.07218],[-4.42669,59.07112]]],"type":"Polygon"},"properties":{"country_code":"GB","end_date":"1960","id":"OS7","max_zoom":14,"min_zoom":6,"name":"7th Series (OS7)","type":"tms","url":"https://ooc.openstreetmap.org/os7/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[-1.31567,50.77809],[-1.49139,50.73027],[-1.57113,50.69041],[-1.68095,50.71748],[-1.69338,50.73484],[-1.69528,50.74065],[-1.68689,50.74999],[-1.71068,50.74812],[-1.7195,50.75261],[-1.746,50.74452],[-1.74845,50.75675],[-1.74287,50.76397],[-1.75101,50.77577],[-1.78525,50.76177],[-1.79911,50.77236],[-1.82256,50.77225],[-1.82678,50.78077],[-1.8225,50.79933],[-1.80732,50.80074],[-1.81566,50.80752],[-1.80889,50.81358],[-1.80579,50.83249],[-1.79816,50.83535],[-1.80649,50.84414],[-1.80988,50.86189],[-1.81378,50.85591],[-1.83052,50.85261],[-1.85271,50.85651],[-1.85655,50.86684],[-1.8492,50.87802],[-1.85082,50.89178],[-1.84077,50.90051],[-1.82693,50.89939],[-1.82006,50.90492],[-1.82151,50.91691],[-1.81689,50.92412],[-1.84114,50.92886],[-1.87446,50.91441],[-1.91129,50.9439],[-1.92339,50.95917],[-1.95751,50.97575],[-1.9591,50.99152],[-1.94907,50.98649],[-1.92879,51.00055],[-1.88709,51.0026],[-1.87393,51.0097],[-1.8717,50.99083],[-1.85433,51.00786],[-1.83567,51.01238],[-1.81502,50.9899],[-1.80031,50.99457],[-1.75184,50.98133],[-1.71927,50.98047],[-1.69142,50.95943],[-1.66829,50.95041],[-1.6526,50.95029],[-1.63536,50.96269],[-1.62397,50.95903],[-1.6089,50.97686],[-1.62172,50.98099],[-1.63115,50.99984],[-1.60984,51.01225],[-1.60173,51.01042],[-1.60787,51.01582],[-1.6057,51.02271],[-1.63542,51.03176],[-1.63858,51.04126],[-1.63107,51.07819],[-1.64025,51.09201],[-1.6306,51.10359],[-1.63408,51.11099],[-1.63067,51.11652],[-1.64109,51.12237],[-1.66525,51.12546],[-1.65724,51.15539],[-1.67474,51.177],[-1.67213,51.18708],[-1.69679,51.20233],[-1.69247,51.21617],[-1.65288,51.22301],[-1.63564,51.22019],[-1.62395,51.24136],[-1.61402,51.24467],[-1.60741,51.25513],[-1.57717,51.25863],[-1.54443,51.24826],[-1.5384,51.25085],[-1.53436,51.25919],[-1.54345,51.25957],[-1.54007,51.27602],[-1.54596,51.28095],[-1.53591,51.28978],[-1.52595,51.28975],[-1.53093,51.29948],[-1.53008,51.3111],[-1.53628,51.31596],[-1.52986,51.34057],[-1.51552,51.34219],[-1.49498,51.33228],[-1.43599,51.33861],[-1.44759,51.3464],[-1.4463,51.35699],[-1.43056,51.35941],[-1.41608,51.37517],[-1.34899,51.37045],[-1.31472,51.37627],[-1.27555,51.3707],[-1.25116,51.37511],[-1.24118,51.36938],[-1.22209,51.37271],[-1.17602,51.36102],[-1.14321,51.36028],[-1.11875,51.36156],[-1.12096,51.36859],[-1.11678,51.3767],[-1.08363,51.38712],[-1.04754,51.36122],[-0.9904,51.36619],[-0.97264,51.36297],[-0.92376,51.36937],[-0.87681,51.3555],[-0.86549,51.35947],[-0.82728,51.35574],[-0.81122,51.34418],[-0.78322,51.34084],[-0.76325,51.32721],[-0.76005,51.32013],[-0.74183,51.31112],[-0.72842,51.28238],[-0.72631,51.25653],[-0.73713,51.23126],[-0.74898,51.2277],[-0.77712,51.23901],[-0.80193,51.23628],[-0.80611,51.24056],[-0.82491,51.23137],[-0.82701,51.22315],[-0.84493,51.20998],[-0.82268,51.18268],[-0.83042,51.15022],[-0.81952,51.15047],[-0.80504,51.15847],[-0.79382,51.15491],[-0.78879,51.14141],[-0.77846,51.13664],[-0.77813,51.13063],[-0.76654,51.11946],[-0.74365,51.11491],[-0.74715,51.10131],[-0.75411,51.10116],[-0.75122,51.09547],[-0.75506,51.08987],[-0.75076,51.0852],[-0.7785,51.07715],[-0.78645,51.06467],[-0.79954,51.06078],[-0.82645,51.05881],[-0.83646,51.0664],[-0.84519,51.06052],[-0.8499,51.0436],[-0.89485,51.01978],[-0.89065,51.00194],[-0.90461,50.99327],[-0.91461,50.97806],[-0.91278,50.9708],[-0.93246,50.94278],[-0.92119,50.9232],[-0.93793,50.91615],[-0.95132,50.89178],[-0.92368,50.86513],[-0.92976,50.85365],[-0.92903,50.84245],[-0.94342,50.82191],[-0.9299,50.78445],[-0.93275,50.77435],[-0.95347,50.73682],[-1.31567,50.77809]]],"type":"Polygon"},"properties":{"country_code":"GB","end_date":"2014","id":"Hampshire-Aerial-FCIR","license_url":"https://github.com/osmlab/editor-layer-index/commit/aad3f972a7bf68347cbc6507baa1ec87c54137b5#commitcomment-26962498","max_zoom":20,"min_zoom":8,"name":"Hampshire Aerial FCIR","start_date":"2013","type":"tms","url":"https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_fcir/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-1.31567,50.77809],[-1.49139,50.73027],[-1.57113,50.69041],[-1.68095,50.71748],[-1.69338,50.73484],[-1.69528,50.74065],[-1.68689,50.74999],[-1.71068,50.74812],[-1.7195,50.75261],[-1.746,50.74452],[-1.74845,50.75675],[-1.74287,50.76397],[-1.75101,50.77577],[-1.78525,50.76177],[-1.79911,50.77236],[-1.82256,50.77225],[-1.82678,50.78077],[-1.8225,50.79933],[-1.80732,50.80074],[-1.81566,50.80752],[-1.80889,50.81358],[-1.80579,50.83249],[-1.79816,50.83535],[-1.80649,50.84414],[-1.80988,50.86189],[-1.81378,50.85591],[-1.83052,50.85261],[-1.85271,50.85651],[-1.85655,50.86684],[-1.8492,50.87802],[-1.85082,50.89178],[-1.84077,50.90051],[-1.82693,50.89939],[-1.82006,50.90492],[-1.82151,50.91691],[-1.81689,50.92412],[-1.84114,50.92886],[-1.87446,50.91441],[-1.91129,50.9439],[-1.92339,50.95917],[-1.95751,50.97575],[-1.9591,50.99152],[-1.94907,50.98649],[-1.92879,51.00055],[-1.88709,51.0026],[-1.87393,51.0097],[-1.8717,50.99083],[-1.85433,51.00786],[-1.83567,51.01238],[-1.81502,50.9899],[-1.80031,50.99457],[-1.75184,50.98133],[-1.71927,50.98047],[-1.69142,50.95943],[-1.66829,50.95041],[-1.6526,50.95029],[-1.63536,50.96269],[-1.62397,50.95903],[-1.6089,50.97686],[-1.62172,50.98099],[-1.63115,50.99984],[-1.60984,51.01225],[-1.60173,51.01042],[-1.60787,51.01582],[-1.6057,51.02271],[-1.63542,51.03176],[-1.63858,51.04126],[-1.63107,51.07819],[-1.64025,51.09201],[-1.6306,51.10359],[-1.63408,51.11099],[-1.63067,51.11652],[-1.64109,51.12237],[-1.66525,51.12546],[-1.65724,51.15539],[-1.67474,51.177],[-1.67213,51.18708],[-1.69679,51.20233],[-1.69247,51.21617],[-1.65288,51.22301],[-1.63564,51.22019],[-1.62395,51.24136],[-1.61402,51.24467],[-1.60741,51.25513],[-1.57717,51.25863],[-1.54443,51.24826],[-1.5384,51.25085],[-1.53436,51.25919],[-1.54345,51.25957],[-1.54007,51.27602],[-1.54596,51.28095],[-1.53591,51.28978],[-1.52595,51.28975],[-1.53093,51.29948],[-1.53008,51.3111],[-1.53628,51.31596],[-1.52986,51.34057],[-1.51552,51.34219],[-1.49498,51.33228],[-1.43599,51.33861],[-1.44759,51.3464],[-1.4463,51.35699],[-1.43056,51.35941],[-1.41608,51.37517],[-1.34899,51.37045],[-1.31472,51.37627],[-1.27555,51.3707],[-1.25116,51.37511],[-1.24118,51.36938],[-1.22209,51.37271],[-1.17602,51.36102],[-1.14321,51.36028],[-1.11875,51.36156],[-1.12096,51.36859],[-1.11678,51.3767],[-1.08363,51.38712],[-1.04754,51.36122],[-0.9904,51.36619],[-0.97264,51.36297],[-0.92376,51.36937],[-0.87681,51.3555],[-0.86549,51.35947],[-0.82728,51.35574],[-0.81122,51.34418],[-0.78322,51.34084],[-0.76325,51.32721],[-0.76005,51.32013],[-0.74183,51.31112],[-0.72842,51.28238],[-0.72631,51.25653],[-0.73713,51.23126],[-0.74898,51.2277],[-0.77712,51.23901],[-0.80193,51.23628],[-0.80611,51.24056],[-0.82491,51.23137],[-0.82701,51.22315],[-0.84493,51.20998],[-0.82268,51.18268],[-0.83042,51.15022],[-0.81952,51.15047],[-0.80504,51.15847],[-0.79382,51.15491],[-0.78879,51.14141],[-0.77846,51.13664],[-0.77813,51.13063],[-0.76654,51.11946],[-0.74365,51.11491],[-0.74715,51.10131],[-0.75411,51.10116],[-0.75122,51.09547],[-0.75506,51.08987],[-0.75076,51.0852],[-0.7785,51.07715],[-0.78645,51.06467],[-0.79954,51.06078],[-0.82645,51.05881],[-0.83646,51.0664],[-0.84519,51.06052],[-0.8499,51.0436],[-0.89485,51.01978],[-0.89065,51.00194],[-0.90461,50.99327],[-0.91461,50.97806],[-0.91278,50.9708],[-0.93246,50.94278],[-0.92119,50.9232],[-0.93793,50.91615],[-0.95132,50.89178],[-0.92368,50.86513],[-0.92976,50.85365],[-0.92903,50.84245],[-0.94342,50.82191],[-0.9299,50.78445],[-0.93275,50.77435],[-0.95347,50.73682],[-1.31567,50.77809]]],"type":"Polygon"},"properties":{"country_code":"GB","end_date":"2013","id":"Hampshire-Aerial-RGB","license_url":"https://github.com/osmlab/editor-layer-index/commit/aad3f972a7bf68347cbc6507baa1ec87c54137b5#commitcomment-26962498","max_zoom":20,"min_zoom":8,"name":"Hampshire Aerial RGB","start_date":"2013","type":"tms","url":"https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_rgb/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.45854,49.90441],[-6.3872,49.98411],[-6.22968,49.98962],[-6.21713,49.86801],[-6.45512,49.85918],[-6.45854,49.90441]],[[-1.44951,60.86341],[-0.71671,60.85451],[-0.73497,60.43598],[-0.69388,60.41682],[-0.72584,60.39427],[-0.73954,60.04847],[-0.92674,60.04619],[-0.93815,59.82662],[-1.45865,59.8312],[-1.44552,60.0536],[-1.46321,60.0536],[-1.46435,60.063],[-1.57165,60.06385],[-1.56936,60.179],[-1.64356,60.1807],[-1.64356,60.18922],[-1.82162,60.1895],[-1.82048,60.36155],[-1.8416,60.36973],[-1.82162,60.38328],[-1.81799,60.59343],[-1.45317,60.59343],[-1.44951,60.86341]],[[-4.90892,54.42421],[-4.2826,54.44299],[-4.25354,54.02977],[-4.87664,54.02218],[-4.90892,54.42421]],[[-5.86674,59.14446],[-5.776,59.14709],[-5.772,59.10141],[-5.86218,59.09906],[-5.86674,59.14446]],[[-1.70659,59.57036],[-1.55792,59.56935],[-1.55649,59.49657],[-1.70545,59.49758],[-1.70659,59.57036]],[[-7.68658,58.2941],[-7.53306,58.3007],[-7.52564,58.26469],[-7.67973,58.25779],[-7.68658,58.2941]],[[-4.53383,59.03599],[-4.48132,59.03716],[-4.47961,59.01866],[-4.53326,59.01807],[-4.53383,59.03599]],[[-8.67107,57.87699],[-8.46732,57.88973],[-8.44678,57.7907],[-8.65109,57.77792],[-8.67107,57.87699]],[[-5.23955,50.35306],[-5.79201,50.33849],[-5.76005,49.9317],[-4.65514,49.95815],[-4.67797,50.28601],[-4.24422,50.28017],[-4.24878,50.20425],[-3.38129,50.20425],[-3.42238,50.51882],[-3.11648,50.52463],[-3.12105,50.65796],[-2.67364,50.66195],[-2.59535,50.63943],[-2.5905,50.57284],[-2.47912,50.57335],[-2.47589,50.50667],[-2.39679,50.50564],[-2.40164,50.57233],[-1.04003,50.57182],[-1.03357,50.70593],[-0.5493,50.70388],[-0.54607,50.78866],[-0.09247,50.7856],[-0.08763,50.71819],[0.47897,50.71206],[0.48704,50.81825],[0.97615,50.80499],[0.99229,51.01263],[1.44912,51.00044],[1.47818,51.40904],[1.02296,51.42716],[1.03588,51.76409],[1.61054,51.7501],[1.64606,52.156],[1.72677,52.15402],[1.74937,52.44818],[1.78707,52.48116],[1.7591,52.52251],[1.79335,52.96027],[0.37981,52.99585],[0.38952,53.25112],[0.34786,53.25112],[0.32389,53.28219],[0.34615,53.65385],[0.12849,53.65755],[0.11658,53.66747],[0.13506,54.06557],[-0.06098,54.06591],[-0.04142,54.47094],[-0.56627,54.47718],[-0.55921,54.65651],[-1.16656,54.66235],[-1.16374,54.84261],[-1.33162,54.84391],[-1.32571,55.24708],[-1.52945,55.24871],[-1.52418,55.65401],[-1.76388,55.65401],[-1.77337,55.97191],[-2.16079,55.9683],[-2.15433,56.06214],[-2.45781,56.05853],[-2.41906,56.64172],[-2.09622,56.64172],[-2.0833,57.00213],[-1.92834,57.01268],[-1.9181,57.35909],[-1.75022,57.36257],[-1.76959,57.76086],[-3.69376,57.75742],[-3.70667,57.98064],[-3.5969,57.97721],[-3.60336,58.12073],[-3.02223,58.13096],[-3.02869,58.54108],[-2.8479,58.53097],[-2.86081,58.84305],[-2.67962,58.8415],[-2.68419,58.88517],[-2.63397,58.90522],[-2.67962,58.93351],[-2.68876,59.02292],[-2.36687,59.02292],[-2.37029,59.26529],[-2.3429,59.2822],[-2.37144,59.29969],[-2.37372,59.37071],[-2.3429,59.38582],[-2.37258,59.40035],[-2.37144,59.42591],[-3.07342,59.42301],[-3.07114,59.34336],[-3.1031,59.33114],[-3.07456,59.31367],[-3.07228,59.2326],[-3.38503,59.14842],[-3.37476,58.93528],[-3.56538,58.93233],[-3.55483,58.69759],[-5.28086,58.66677],[-5.25342,58.35141],[-5.50685,58.34379],[-5.47618,58.03236],[-5.8975,58.02124],[-5.8523,57.61718],[-6.13963,57.61372],[-6.15416,57.74232],[-6.29137,57.73801],[-6.33657,58.13988],[-6.11219,58.14669],[-6.14738,58.51063],[-6.29348,58.54162],[-6.84137,58.29773],[-7.00574,58.29293],[-7.10162,58.20644],[-7.25731,58.17931],[-7.25311,58.10049],[-7.40707,58.09056],[-7.39135,57.79114],[-7.79099,57.77332],[-7.76242,57.54442],[-7.6985,57.14532],[-7.79438,57.13045],[-7.71676,56.73686],[-7.01221,56.76544],[-6.97992,56.54539],[-7.06386,56.54539],[-7.04449,56.35626],[-6.50068,56.38129],[-6.44914,55.97936],[-6.56329,55.96915],[-6.53937,55.70301],[-6.55955,55.69073],[-6.53453,55.67617],[-6.52162,55.57044],[-5.89126,55.59234],[-5.85601,55.23207],[-5.22936,55.2516],[-5.18371,54.62541],[-3.6656,54.65184],[-3.64962,54.432],[-3.54004,54.43067],[-3.53091,54.02902],[-3.06977,54.03036],[-3.06757,53.82214],[-3.08049,53.77399],[-3.06192,53.74775],[-3.06112,53.6737],[-3.21447,53.67084],[-3.20577,53.42262],[-3.27996,53.35522],[-3.28967,53.36084],[-3.33275,53.36493],[-3.37613,53.35403],[-4.0889,53.34331],[-4.09455,53.4612],[-4.69741,53.44486],[-4.68828,53.33186],[-4.72024,53.28958],[-4.68371,53.24862],[-4.67687,53.15426],[-4.84808,53.14468],[-4.81783,52.74403],[-4.25458,52.75589],[-4.22888,52.25488],[-4.26076,52.25364],[-4.27246,52.24326],[-4.81363,52.23009],[-4.80792,52.11389],[-5.38891,52.09917],[-5.37179,51.91297],[-5.42087,51.91015],[-5.41402,51.84532],[-5.36836,51.84744],[-5.34668,51.55953],[-4.77368,51.57585],[-4.76569,51.48851],[-4.19154,51.49704],[-4.18698,51.43447],[-3.61512,51.44443],[-3.61055,51.37465],[-3.14941,51.37893],[-3.14941,51.29193],[-4.30387,51.27459],[-4.28612,51.05087],[-4.85433,51.03666],[-4.83722,50.72128],[-5.26183,50.70827],[-5.23955,50.35306]],[[-2.15027,60.17132],[-2.00302,60.16961],[-2.00131,60.0997],[-2.14855,60.10112],[-2.15027,60.17132]],[[-6.2086,59.11635],[-6.12299,59.11664],[-6.12185,59.0715],[-6.20974,59.0715],[-6.2086,59.11635]],[[-4.41596,59.0889],[-4.4212,59.07708],[-4.39719,59.07791],[-4.39134,59.08973],[-4.41596,59.0889]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1908","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-Bartholomew-hfinch-hist","max_zoom":15,"name":"NLS - Bartholomew Half Inch, 1897-1907","start_date":"1897","type":"tms","url":"https://geo.nls.uk/mapdata2/bartholomew/great_britain/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.82929,50.02297],[-5.82929,50.25482],[-5.37336,50.25482],[-5.37336,50.35306],[-5.1756,50.35306],[-5.1756,50.59254],[-4.99707,50.59254],[-4.99707,50.69356],[-4.79657,50.69356],[-4.79657,50.78221],[-4.69495,50.78221],[-4.69495,50.96074],[-4.60431,50.96074],[-4.60431,51.06921],[-4.37922,51.06921],[-4.37922,51.25218],[-3.90393,51.25218],[-3.90393,51.2917],[-3.71717,51.2917],[-3.71717,51.2453],[-3.14862,51.2453],[-3.14862,51.36207],[-3.74463,51.36207],[-3.74463,51.43404],[-3.82978,51.43404],[-3.82978,51.52982],[-4.08521,51.52982],[-4.08521,51.49393],[-4.37922,51.49393],[-4.37922,51.54272],[-5.14442,51.54272],[-5.14442,51.6296],[-5.73871,51.6296],[-5.73871,51.77404],[-5.50954,51.77404],[-5.50954,51.98026],[-5.1988,51.98026],[-5.1988,52.09734],[-4.88806,52.09734],[-4.88806,52.18316],[-4.49575,52.18316],[-4.49575,52.29257],[-4.30154,52.29257],[-4.30154,52.36853],[-4.18112,52.36853],[-4.18112,52.79337],[-4.44137,52.79337],[-4.44137,52.73696],[-4.85698,52.73696],[-4.85698,52.93173],[-4.7288,52.93173],[-4.7288,53.50386],[-4.15782,53.50386],[-4.15782,53.41135],[-3.31105,53.41135],[-3.31105,53.50386],[-3.23337,53.50386],[-3.23337,54.01592],[-3.39262,54.01592],[-3.39262,54.1981],[-3.55964,54.1981],[-3.55964,54.43373],[-3.7189,54.43373],[-3.7189,54.7219],[-4.30154,54.7219],[-4.30154,54.61407],[-5.04731,54.61407],[-5.04731,54.75329],[-5.22987,54.75329],[-5.22987,55.21908],[-5.65326,55.21908],[-5.65326,55.25009],[-5.89796,55.25009],[-5.89796,55.48225],[-6.59332,55.48225],[-6.59332,56.30134],[-7.17277,56.30134],[-7.17277,56.56018],[-6.81717,56.56018],[-6.81717,56.69917],[-6.53153,56.69917],[-6.53153,56.9067],[-6.81168,56.9067],[-6.81168,57.37166],[-6.8721,57.37166],[-6.8721,57.55189],[-7.09732,57.55189],[-7.09732,57.24111],[-7.17423,57.24111],[-7.17423,56.9067],[-7.37198,56.9067],[-7.37198,56.80759],[-7.5203,56.80759],[-7.5203,56.71425],[-7.83068,56.71425],[-7.83068,56.89946],[-7.64941,56.89946],[-7.64941,57.47396],[-7.83068,57.47396],[-7.83068,57.79156],[-7.47362,57.79156],[-7.47362,58.08606],[-7.18798,58.08606],[-7.18798,58.3672],[-6.80346,58.3672],[-6.80346,58.41558],[-6.63866,58.41558],[-6.63866,58.46733],[-6.51781,58.46733],[-6.51781,58.56256],[-6.05362,58.56256],[-6.05362,58.15688],[-6.14701,58.15688],[-6.14701,58.11059],[-6.27998,58.11059],[-6.27998,57.71227],[-6.15913,57.71227],[-6.15913,57.66676],[-5.93391,57.66676],[-5.93391,57.88925],[-5.80643,57.88925],[-5.80643,57.96218],[-5.61417,57.96218],[-5.61417,58.09112],[-5.49082,58.09112],[-5.49082,58.37333],[-5.31991,58.37333],[-5.31991,58.75015],[-3.572,58.75015],[-3.572,59.20918],[-3.19445,59.20918],[-3.19445,59.47592],[-2.24358,59.47592],[-2.24358,59.13887],[-2.4611,59.13887],[-2.4611,58.81859],[-2.74077,58.81859],[-2.74077,58.58047],[-2.91167,58.58047],[-2.91167,58.11575],[-3.48654,58.11575],[-3.48654,57.74039],[-1.71532,57.74039],[-1.71532,57.22256],[-1.97945,57.22256],[-1.97945,56.87607],[-2.1659,56.87607],[-2.1659,56.63332],[-2.36011,56.63332],[-2.36011,56.04775],[-1.97945,56.04775],[-1.97945,55.86509],[-1.4745,55.86509],[-1.4745,55.24999],[-1.3222,55.24999],[-1.3222,54.82217],[-1.055,54.82217],[-1.055,54.67466],[-0.66188,54.67466],[-0.66188,54.55275],[-0.32476,54.55275],[-0.32476,54.28652],[0.00928,54.28652],[0.00928,53.79385],[0.2082,53.79385],[0.2082,53.52177],[0.41635,53.52177],[0.41635,53.02989],[1.42734,53.02989],[1.42734,52.92021],[1.83339,52.92021],[1.83339,52.04249],[1.52355,52.04249],[1.52355,51.82613],[1.2697,51.82613],[1.2697,51.69675],[1.11665,51.69675],[1.11665,51.44035],[1.52355,51.44035],[1.52355,51.33318],[1.45076,51.33318],[1.45076,51.02076],[1.06999,51.02076],[1.06999,50.90084],[0.77881,50.90084],[0.77881,50.72984],[-0.7256,50.72984],[-0.7256,50.70384],[-1.00744,50.70384],[-1.00744,50.57363],[-2.36253,50.57363],[-2.36253,50.48464],[-2.49878,50.48464],[-2.49878,50.57363],[-3.40964,50.57363],[-3.40964,50.20578],[-3.69224,50.20578],[-3.69224,50.13477],[-5.00547,50.13477],[-5.00547,49.94745],[-5.28395,49.94745],[-5.28395,50.02297],[-5.82929,50.02297]],[[-6.45807,49.86736],[-6.45807,49.94999],[-6.39788,49.94999],[-6.39788,50.00538],[-6.17996,50.00538],[-6.17996,49.91686],[-6.25402,49.91686],[-6.25402,49.86736],[-6.45807,49.86736]],[[-5.83432,49.93216],[-5.83432,49.97546],[-5.76833,49.97546],[-5.76833,49.93216],[-5.83432,49.93216]],[[-1.94838,60.68857],[-1.94838,60.30588],[-1.75431,60.30588],[-1.75431,60.12844],[-1.57549,60.12844],[-1.57549,59.79792],[-1.0317,59.79792],[-1.0317,60.03545],[-0.66269,60.03545],[-0.66269,60.91039],[-1.10344,60.91039],[-1.10344,60.804],[-1.35063,60.804],[-1.35063,60.68857],[-1.94838,60.68857]],[[-2.20338,60.19686],[-2.20338,60.09294],[-1.9864,60.09294],[-1.9864,60.19686],[-2.20338,60.19686]],[[-1.75431,59.56983],[-1.75431,59.46394],[-1.53733,59.46394],[-1.53733,59.56983],[-1.75431,59.56983]],[[-4.5586,59.13705],[-4.5586,58.95691],[-4.2867,58.95691],[-4.2867,59.13705],[-4.5586,59.13705]],[[-6.27877,59.20257],[-6.27877,59.02278],[-5.66506,59.02278],[-5.66506,59.20257],[-6.27877,59.20257]],[[-8.71635,57.94406],[-8.71635,57.73059],[-8.35929,57.73059],[-8.35929,57.94406],[-8.71635,57.94406]],[[-7.6077,50.4021],[-7.6077,50.26887],[-7.39072,50.26887],[-7.39072,50.4021],[-7.6077,50.4021]],[[-7.73043,58.35799],[-7.73043,58.24831],[-7.51345,58.24831],[-7.51345,58.35799],[-7.73043,58.35799]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1960","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-NatGrid-110k-1940-60","max_zoom":16,"min_zoom":5,"name":"NLS - OS 1:10,560 National Grid Maps, 1940s-1960s","type":"tms","url":"https://geo.nls.uk/mapdata3/os/britain10knatgrid/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.21122,54.80186],[-5.06428,54.80265],[-5.05604,54.63052],[-4.31583,54.62972],[-4.31171,54.74483],[-3.85303,54.74641],[-3.85303,54.80344],[-3.55228,54.80344],[-3.55228,54.83746],[-3.46851,54.84063],[-3.46576,54.89832],[-3.38474,54.89911],[-3.38886,54.95592],[-3.09208,54.95395],[-3.03924,54.99233],[-3.02127,55.04939],[-2.95912,55.04633],[-2.92028,55.06663],[-2.78571,55.06865],[-2.78522,55.09144],[-2.73376,55.09228],[-2.73762,55.1512],[-2.76484,55.15107],[-2.70131,55.17225],[-2.66355,55.21928],[-2.64604,55.21889],[-2.62904,55.22339],[-2.63179,55.22878],[-2.62355,55.24463],[-2.61977,55.24547],[-2.6099,55.24542],[-2.60999,55.24865],[-2.64081,55.259],[-2.62479,55.26156],[-2.60452,55.28231],[-2.56932,55.29613],[-2.54795,55.31216],[-2.50911,55.32349],[-2.47804,55.34945],[-2.44211,55.35331],[-2.40521,55.34393],[-2.37268,55.34475],[-2.32218,55.36877],[-2.32412,55.39993],[-2.25761,55.42502],[-2.19855,55.42735],[-2.14843,55.47175],[-2.19443,55.4842],[-2.20405,55.52931],[-2.29606,55.63797],[-2.21778,55.63797],[-2.10593,55.74525],[-1.97169,55.74622],[-1.96975,55.9191],[-2.12017,55.92071],[-2.12429,55.97761],[-2.34402,55.97838],[-2.34402,56.03903],[-2.50469,56.04134],[-2.50057,56.10036],[-2.88235,56.09576],[-2.88235,56.17229],[-2.41268,56.16923],[-2.41817,56.2334],[-2.58572,56.23035],[-2.57198,56.34164],[-2.72579,56.3462],[-2.73128,56.43438],[-2.69283,56.43438],[-2.69283,56.48598],[-2.53078,56.49356],[-2.53078,56.57081],[-2.53029,56.60479],[-2.37324,56.60445],[-2.36844,56.73988],[-2.3293,56.73988],[-2.3293,56.78881],[-2.31453,56.78918],[-2.31488,56.7967],[-2.17137,56.7967],[-2.1704,56.97106],[-2.01017,56.96947],[-2.01017,57.08468],[-2.08177,57.08535],[-2.04881,57.126],[-2.04091,57.12637],[-2.03834,57.24111],[-1.87812,57.24216],[-1.87715,57.29782],[-1.98688,57.29834],[-1.90822,57.35601],[-1.8752,57.35601],[-1.87618,57.37695],[-1.81209,57.41201],[-1.71207,57.41201],[-1.70346,57.64414],[-1.8666,57.64518],[-1.86466,57.70334],[-3.12043,57.70647],[-3.1218,57.75047],[-3.44453,57.75266],[-3.44727,57.71381],[-3.51456,57.70941],[-3.51182,57.694],[-3.7645,57.69179],[-3.76725,57.6345],[-3.84238,57.62883],[-3.84383,57.59658],[-3.94143,57.59164],[-3.94046,57.65378],[-3.88947,57.653],[-3.88268,57.76764],[-3.72245,57.76609],[-3.71954,57.88192],[-3.91469,57.88534],[-3.91606,57.95462],[-3.74577,57.9539],[-3.74715,58.06884],[-3.58373,58.06957],[-3.58373,58.11167],[-3.45601,58.11385],[-3.45446,58.2285],[-3.43799,58.22832],[-3.42432,58.24277],[-3.41231,58.24386],[-3.37351,58.26951],[-3.30639,58.2862],[-3.12292,58.28594],[-3.1236,58.34437],[-2.95743,58.34473],[-2.95125,58.6422],[-2.88122,58.64292],[-2.8851,58.81128],[-2.71808,58.8143],[-2.71614,58.87157],[-2.55688,58.8776],[-2.55445,58.99235],[-2.55676,59.04838],[-2.39189,59.0486],[-2.3918,59.1107],[-2.47337,59.1107],[-2.55916,59.1783],[-2.56304,59.22106],[-2.39213,59.22405],[-2.39114,59.27401],[-2.36395,59.2745],[-2.36589,59.28542],[-2.39114,59.28492],[-2.39114,59.33795],[-2.22218,59.3382],[-2.22339,59.39596],[-2.37585,59.39658],[-2.38993,59.40264],[-2.40085,59.39621],[-2.56379,59.39526],[-2.56379,59.33858],[-2.73202,59.33753],[-2.73339,59.39526],[-3.07265,59.39312],[-3.07034,59.33548],[-3.07532,59.33556],[-3.07498,59.32926],[-3.06983,59.32891],[-3.0698,59.21962],[-3.23634,59.21663],[-3.23368,59.16065],[-3.40328,59.15889],[-3.39409,58.92793],[-3.56645,58.92593],[-3.56111,58.86799],[-3.39251,58.86993],[-3.38947,58.86987],[-3.38911,58.86849],[-3.39129,58.86862],[-3.38842,58.75431],[-3.22382,58.75557],[-3.21897,58.69129],[-3.46341,58.69058],[-3.45517,58.63415],[-3.78751,58.63415],[-3.78613,58.57692],[-3.90286,58.57334],[-3.90286,58.64773],[-4.06903,58.64916],[-4.06903,58.59124],[-4.73645,58.59338],[-4.73645,58.65059],[-5.07154,58.65202],[-5.06548,58.53259],[-5.2332,58.53161],[-5.22835,58.47199],[-5.24243,58.47199],[-5.2366,58.40897],[-5.22835,58.40948],[-5.22107,58.30059],[-5.56579,58.29599],[-5.55803,58.23726],[-5.41467,58.24013],[-5.41419,58.22678],[-5.38857,58.22722],[-5.38271,58.11986],[-5.51043,58.11914],[-5.5114,58.00621],[-5.67454,58.00416],[-5.67163,57.94494],[-5.67163,57.88872],[-5.83477,57.88562],[-5.82771,57.5989],[-6.03843,57.59864],[-6.03891,57.64596],[-6.19817,57.6457],[-6.20761,57.76001],[-6.53707,57.7544],[-6.53124,57.64024],[-6.70021,57.63608],[-6.68078,57.52363],[-6.85169,57.51529],[-6.83615,57.33858],[-6.67302,57.34382],[-6.67496,57.28509],[-6.50988,57.28509],[-6.49822,57.17576],[-6.35062,57.18208],[-6.3312,57.1252],[-6.17972,57.12309],[-6.17195,57.06823],[-6.45938,57.05978],[-6.45647,57.10938],[-6.66719,57.10622],[-6.67302,57.00271],[-6.50211,57.00482],[-6.48361,56.89175],[-6.32661,56.88941],[-6.31566,56.77993],[-6.21467,56.77567],[-6.21467,56.7235],[-6.68661,56.72243],[-6.6769,56.61144],[-6.84198,56.60717],[-6.84004,56.54833],[-7.15466,56.54619],[-7.14884,56.48726],[-6.99152,56.49048],[-6.98764,56.43253],[-6.68273,56.43146],[-6.6769,56.54726],[-6.5293,56.55047],[-6.52347,56.4379],[-6.36616,56.43683],[-6.36422,56.37665],[-6.52736,56.37127],[-6.51717,56.24284],[-6.48696,56.24742],[-6.48696,56.18939],[-6.30019,56.19856],[-6.30294,56.2581],[-5.90194,56.25658],[-5.89645,56.09605],[-6.02828,56.08839],[-6.03927,56.15575],[-6.38534,56.15422],[-6.36062,55.96099],[-6.2123,55.96406],[-6.20475,55.92023],[-6.51855,55.91292],[-6.50619,55.75018],[-6.67648,55.7409],[-6.66,55.62632],[-6.35513,55.62322],[-6.35787,55.5689],[-6.03927,55.57201],[-6.03103,55.62477],[-5.73989,55.63097],[-5.73715,55.45693],[-5.89645,55.46004],[-5.89645,55.27899],[-5.43502,55.28212],[-5.44051,55.4507],[-5.28671,55.45693],[-5.30868,55.40706],[-4.9736,55.40082],[-4.98458,55.20382],[-5.14938,55.20382],[-5.14114,55.03734],[-5.21529,55.03419],[-5.21122,54.80186]],[[-2.16466,60.16221],[-1.99303,60.16098],[-1.99469,60.10352],[-2.16631,60.10474],[-2.16466,60.16221]],[[-1.53607,59.85708],[-1.36536,59.85598],[-1.36685,59.79756],[-1.19063,59.79642],[-1.1862,59.96954],[-1.00787,59.96839],[-1.00412,60.11415],[-0.83608,60.11307],[-0.83457,60.17168],[-1.00743,60.17278],[-1.00522,60.25839],[-0.82997,60.25728],[-0.82698,60.37266],[-0.65075,60.37154],[-0.64772,60.48823],[-0.99849,60.49044],[-0.99703,60.54655],[-0.64253,60.54432],[-0.63949,60.66068],[-0.81481,60.66178],[-0.8133,60.71961],[-0.63833,60.71851],[-0.63547,60.82754],[-0.79757,60.82855],[-0.99414,60.82978],[-0.9955,60.77827],[-1.16703,60.77934],[-1.17004,60.66462],[-1.52226,60.66683],[-1.52379,60.60844],[-1.69757,60.60954],[-1.70213,60.43452],[-1.52606,60.43341],[-1.52752,60.37707],[-1.87511,60.37927],[-1.87814,60.26246],[-1.70196,60.26134],[-1.70491,60.14705],[-1.52866,60.14593],[-1.53607,59.85708]],[[-0.98477,60.89438],[-0.98603,60.83611],[-0.80784,60.83519],[-0.80657,60.89346],[-0.98477,60.89438]],[[-7.76969,56.87882],[-7.76145,56.76083],[-7.6009,56.76419],[-7.59725,56.81933],[-7.44799,56.82039],[-7.44893,56.87941],[-7.28414,56.87941],[-7.28139,57.04712],[-7.13033,57.0516],[-7.13307,57.5118],[-6.96828,57.51475],[-6.97652,57.68547],[-6.80623,57.69134],[-6.80898,57.8042],[-6.64968,57.80713],[-6.64418,57.86123],[-6.32009,57.86269],[-6.32009,58.15516],[-6.16078,58.15226],[-6.15529,58.20874],[-5.985,58.21019],[-5.9905,58.26802],[-6.1498,58.26657],[-6.14156,58.55575],[-6.31734,58.55575],[-6.3091,58.49839],[-6.48763,58.49552],[-6.48763,58.44238],[-6.66066,58.4395],[-6.64693,58.38195],[-6.81172,58.38051],[-6.81172,58.32864],[-6.97927,58.32864],[-6.97103,58.26946],[-7.14131,58.26802],[-7.14038,58.03587],[-7.30206,58.0351],[-7.30303,57.97748],[-7.13795,57.97774],[-7.14135,57.92028],[-7.1399,57.86402],[-7.30206,57.86247],[-7.29848,57.74423],[-7.45092,57.7457],[-7.45504,57.68995],[-7.61861,57.6906],[-7.61983,57.7457],[-7.79012,57.74423],[-7.78738,57.68555],[-7.62223,57.68538],[-7.61738,57.57126],[-7.78829,57.571],[-7.78926,57.51211],[-7.7038,57.51159],[-7.69992,57.45469],[-7.53678,57.45521],[-7.53484,57.51263],[-7.45812,57.51315],[-7.45521,57.28242],[-7.61155,57.28452],[-7.61446,57.22727],[-7.45133,57.22569],[-7.45133,57.11039],[-7.61641,57.10881],[-7.60378,56.87924],[-7.76969,56.87882]],[[-1.71066,59.56263],[-1.54175,59.56222],[-1.54231,59.50372],[-1.71122,59.50414],[-1.71066,59.56263]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1960","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-NatGrid-11250-1940-60","max_zoom":20,"name":"NLS - OS 1:1,250 National Grid Maps, 1940s-1960s","type":"tms","url":"https://geo.nls.uk/mapdata3/os/scotland_1250_country/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.21122,54.80186],[-5.06428,54.80265],[-5.05604,54.63052],[-4.31583,54.62972],[-4.31171,54.74483],[-3.85303,54.74641],[-3.85303,54.80344],[-3.63785,54.44848],[-3.5321,54.43012],[-3.55228,54.83746],[-3.46851,54.84063],[-3.46576,54.89832],[-3.38474,54.89911],[-3.38886,54.95592],[-3.09208,54.95395],[-3.03924,54.99233],[-3.02127,55.04939],[-2.95912,55.04633],[-2.92028,55.06663],[-2.78571,55.06865],[-2.78522,55.09144],[-2.73376,55.09228],[-2.73762,55.1512],[-2.76484,55.15107],[-2.70131,55.17225],[-2.66355,55.21928],[-2.64604,55.21889],[-2.62904,55.22339],[-2.63179,55.22878],[-2.62355,55.24463],[-2.61977,55.24547],[-2.6099,55.24542],[-2.60999,55.24865],[-2.64081,55.259],[-2.62479,55.26156],[-2.60452,55.28231],[-2.56932,55.29613],[-2.54795,55.31216],[-2.50911,55.32349],[-2.47804,55.34945],[-2.44211,55.35331],[-2.40521,55.34393],[-2.37268,55.34475],[-2.32218,55.36877],[-2.32412,55.39993],[-2.25761,55.42502],[-2.19855,55.42735],[-2.14843,55.47175],[-2.19443,55.4842],[-2.20405,55.52931],[-2.29606,55.63797],[-2.21778,55.63797],[-2.17186,55.54145],[-1.9899,55.52552],[-1.96975,55.9191],[-2.12017,55.92071],[-2.12429,55.97761],[-2.34402,55.97838],[-2.34402,56.03903],[-2.50469,56.04134],[-2.50057,56.10036],[-2.88235,56.09576],[-2.88235,56.17229],[-2.41268,56.16923],[-2.41817,56.2334],[-2.58572,56.23035],[-2.57198,56.34164],[-2.72579,56.3462],[-2.73128,56.43438],[-2.69283,56.43438],[-2.69283,56.48598],[-2.53078,56.49356],[-2.53078,56.57081],[-2.53029,56.60479],[-2.37324,56.60445],[-2.36844,56.73988],[-2.3293,56.73988],[-2.3293,56.78881],[-2.31453,56.78918],[-2.31488,56.7967],[-2.17137,56.7967],[-2.1704,56.97106],[-2.01017,56.96947],[-2.01017,57.08468],[-2.08177,57.08535],[-2.04881,57.126],[-2.04091,57.12637],[-2.03834,57.24111],[-1.87812,57.24216],[-1.87715,57.29782],[-1.98688,57.29834],[-1.90822,57.35601],[-1.8752,57.35601],[-1.87618,57.37695],[-1.81209,57.41201],[-1.71207,57.41201],[-1.70346,57.64414],[-1.8666,57.64518],[-1.86466,57.70334],[-3.12043,57.70647],[-3.1218,57.75047],[-3.44453,57.75266],[-3.44727,57.71381],[-3.51456,57.70941],[-3.51182,57.694],[-3.7645,57.69179],[-3.76725,57.6345],[-3.84238,57.62883],[-3.84383,57.59658],[-3.94143,57.59164],[-3.94046,57.65378],[-3.88947,57.653],[-3.88268,57.76764],[-3.72245,57.76609],[-3.71954,57.88192],[-3.91469,57.88534],[-3.91606,57.95462],[-3.74577,57.9539],[-3.74715,58.06884],[-3.58373,58.06957],[-3.58373,58.11167],[-3.45601,58.11385],[-3.45446,58.2285],[-3.43799,58.22832],[-3.42432,58.24277],[-3.41231,58.24386],[-3.37351,58.26951],[-3.30639,58.2862],[-3.12292,58.28594],[-3.1236,58.34437],[-2.95743,58.34473],[-2.95125,58.6422],[-2.88122,58.64292],[-2.8851,58.81128],[-2.71808,58.8143],[-2.71614,58.87157],[-2.55688,58.8776],[-2.55445,58.99235],[-2.55676,59.04838],[-2.39189,59.0486],[-2.3918,59.1107],[-2.47337,59.1107],[-2.55916,59.1783],[-2.56304,59.22106],[-2.39213,59.22405],[-2.39114,59.27401],[-2.36395,59.2745],[-2.36589,59.28542],[-2.39114,59.28492],[-2.39114,59.33795],[-2.22218,59.3382],[-2.22339,59.39596],[-2.37585,59.39658],[-2.38993,59.40264],[-2.40085,59.39621],[-2.56379,59.39526],[-2.56379,59.33858],[-2.73202,59.33753],[-2.73339,59.39526],[-3.07265,59.39312],[-3.07034,59.33548],[-3.07532,59.33556],[-3.07498,59.32926],[-3.06983,59.32891],[-3.0698,59.21962],[-3.23634,59.21663],[-3.23368,59.16065],[-3.40328,59.15889],[-3.39409,58.92793],[-3.56645,58.92593],[-3.56111,58.86799],[-3.39251,58.86993],[-3.38947,58.86987],[-3.38911,58.86849],[-3.39129,58.86862],[-3.38842,58.75431],[-3.22382,58.75557],[-3.21897,58.69129],[-3.46341,58.69058],[-3.45517,58.63415],[-3.78751,58.63415],[-3.78613,58.57692],[-3.90286,58.57334],[-3.90286,58.64773],[-4.06903,58.64916],[-4.06903,58.59124],[-4.73645,58.59338],[-4.73645,58.65059],[-5.07154,58.65202],[-5.06548,58.53259],[-5.2332,58.53161],[-5.22835,58.47199],[-5.24243,58.47199],[-5.2366,58.40897],[-5.22835,58.40948],[-5.22107,58.30059],[-5.56579,58.29599],[-5.55803,58.23726],[-5.41467,58.24013],[-5.41419,58.22678],[-5.38857,58.22722],[-5.38271,58.11986],[-5.51043,58.11914],[-5.5114,58.00621],[-5.67454,58.00416],[-5.67163,57.94494],[-5.67163,57.88872],[-5.83477,57.88562],[-5.82771,57.5989],[-6.03843,57.59864],[-6.03891,57.64596],[-6.19817,57.6457],[-6.20761,57.76001],[-6.53707,57.7544],[-6.53124,57.64024],[-6.70021,57.63608],[-6.68078,57.52363],[-6.85169,57.51529],[-6.83615,57.33858],[-6.67302,57.34382],[-6.67496,57.28509],[-6.50988,57.28509],[-6.49822,57.17576],[-6.35062,57.18208],[-6.3312,57.1252],[-6.17972,57.12309],[-6.17195,57.06823],[-6.45938,57.05978],[-6.45647,57.10938],[-6.66719,57.10622],[-6.67302,57.00271],[-6.50211,57.00482],[-6.48361,56.89175],[-6.32661,56.88941],[-6.31566,56.77993],[-6.21467,56.77567],[-6.21467,56.7235],[-6.68661,56.72243],[-6.6769,56.61144],[-6.84198,56.60717],[-6.84004,56.54833],[-7.15466,56.54619],[-7.14884,56.48726],[-6.99152,56.49048],[-6.98764,56.43253],[-6.68273,56.43146],[-6.6769,56.54726],[-6.5293,56.55047],[-6.52347,56.4379],[-6.36616,56.43683],[-6.36422,56.37665],[-6.52736,56.37127],[-6.51717,56.24284],[-6.48696,56.24742],[-6.48696,56.18939],[-6.30019,56.19856],[-6.30294,56.2581],[-5.90194,56.25658],[-5.89645,56.09605],[-6.02828,56.08839],[-6.03927,56.15575],[-6.38534,56.15422],[-6.36062,55.96099],[-6.2123,55.96406],[-6.20475,55.92023],[-6.51855,55.91292],[-6.50619,55.75018],[-6.67648,55.7409],[-6.66,55.62632],[-6.35513,55.62322],[-6.35787,55.5689],[-6.03927,55.57201],[-6.03103,55.62477],[-5.73989,55.63097],[-5.73715,55.45693],[-5.89645,55.46004],[-5.89645,55.27899],[-5.43502,55.28212],[-5.44051,55.4507],[-5.28671,55.45693],[-5.30868,55.40706],[-4.9736,55.40082],[-4.98458,55.20382],[-5.14938,55.20382],[-5.14114,55.03734],[-5.21529,55.03419],[-5.21122,54.80186]],[[-2.08706,59.96621],[-1.91544,59.96497],[-1.9171,59.90717],[-2.08872,59.9084],[-2.08706,59.96621]],[[-1.45847,59.65927],[-1.45107,59.94983],[-1.62732,59.95096],[-1.62437,60.06594],[-1.80055,60.06706],[-1.79752,60.18457],[-1.44993,60.18235],[-1.44847,60.23903],[-1.62454,60.24015],[-1.61998,60.41621],[-1.4462,60.41511],[-1.44467,60.47385],[-1.09244,60.47162],[-1.08944,60.58703],[-0.91791,60.58595],[-0.91655,60.63777],[-0.71998,60.63654],[-0.55788,60.63552],[-0.56074,60.52584],[-0.73571,60.52694],[-0.73722,60.46877],[-0.5619,60.46766],[-0.56494,60.3506],[-0.91944,60.35285],[-0.9209,60.2964],[-0.57013,60.29418],[-0.57316,60.17679],[-0.74939,60.17791],[-0.75237,60.06185],[-0.92763,60.06297],[-0.92984,59.97684],[-0.75698,59.97573],[-0.75849,59.91678],[-0.92653,59.91786],[-0.93027,59.77124],[-1.10861,59.77239],[-1.11304,59.59825],[-1.28926,59.59939],[-1.28777,59.65816],[-1.45847,59.65927]],[[-0.90718,60.70276],[-0.72898,60.70183],[-0.73025,60.64322],[-0.90844,60.64414],[-0.90718,60.70276]],[[-7.6921,56.6636],[-7.52619,56.66401],[-7.53882,56.8949],[-7.37374,56.89649],[-7.37374,57.01246],[-7.53687,57.01405],[-7.53396,57.07163],[-7.37762,57.06952],[-7.38053,57.30159],[-7.45725,57.30106],[-7.45919,57.24331],[-7.62233,57.24279],[-7.62621,57.30001],[-7.71167,57.30054],[-7.71069,57.35977],[-7.53979,57.36003],[-7.54464,57.47482],[-7.70978,57.47498],[-7.71253,57.534],[-7.54224,57.53548],[-7.54102,57.48007],[-7.37745,57.47941],[-7.37333,57.53548],[-7.22089,57.534],[-7.22447,57.65293],[-7.06231,57.65449],[-7.06376,57.71108],[-7.06036,57.76887],[-7.22544,57.76861],[-7.22447,57.82657],[-7.06279,57.82735],[-7.06372,58.06084],[-6.89344,58.06229],[-6.90168,58.12182],[-6.73413,58.12182],[-6.73413,58.174],[-6.56934,58.17544],[-6.58307,58.23333],[-6.41004,58.23622],[-6.41004,58.28968],[-6.23151,58.29257],[-6.23975,58.35026],[-6.06397,58.35026],[-6.07221,58.05939],[-5.91291,58.06084],[-5.90741,58.00267],[-6.0777,58.00122],[-6.08319,57.94441],[-6.2425,57.94733],[-6.2425,57.65315],[-6.56659,57.65168],[-6.57209,57.59727],[-6.73139,57.59432],[-6.72864,57.48081],[-6.89893,57.4749],[-6.89069,57.3032],[-7.05548,57.30023],[-7.05274,56.83737],[-7.2038,56.83286],[-7.20655,56.66419],[-7.37134,56.66419],[-7.3704,56.60483],[-7.51966,56.60376],[-7.52331,56.54831],[-7.68386,56.54492],[-7.6921,56.6636]],[[-1.63307,59.36307],[-1.46416,59.36265],[-1.46472,59.30381],[-1.63363,59.30423],[-1.63307,59.36307]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1960","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-NatGrid-12500-1940-60-doubles","max_zoom":18,"name":"NLS - OS 1:2,500 National Grid Maps, 1940s-1960s - double sheets","type":"tms","url":"https://geo.nls.uk/maps/os/scotland_2500_doubles/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.21122,54.80186],[-5.06428,54.80265],[-5.05604,54.63052],[-4.31583,54.62972],[-4.31171,54.74483],[-3.85303,54.74641],[-3.85303,54.80344],[-3.55228,54.80344],[-3.55228,54.83746],[-3.46851,54.84063],[-3.46576,54.89832],[-3.38474,54.89911],[-3.38886,54.95592],[-3.09208,54.95395],[-3.03924,54.99233],[-3.02127,55.04939],[-2.95912,55.04633],[-2.92028,55.06663],[-2.78571,55.06865],[-2.78522,55.09144],[-2.73376,55.09228],[-2.73762,55.1512],[-2.76484,55.15107],[-2.70131,55.17225],[-2.66355,55.21928],[-2.64604,55.21889],[-2.62904,55.22339],[-2.63179,55.22878],[-2.62355,55.24463],[-2.61977,55.24547],[-2.6099,55.24542],[-2.60999,55.24865],[-2.64081,55.259],[-2.62479,55.26156],[-2.60452,55.28231],[-2.56932,55.29613],[-2.54795,55.31216],[-2.50911,55.32349],[-2.47804,55.34945],[-2.44211,55.35331],[-2.40521,55.34393],[-2.37268,55.34475],[-2.32218,55.36877],[-2.32412,55.39993],[-2.25761,55.42502],[-2.19855,55.42735],[-2.14843,55.47175],[-2.19443,55.4842],[-2.20405,55.52931],[-2.29606,55.63797],[-2.21778,55.63797],[-2.10593,55.74525],[-1.97169,55.74622],[-1.96975,55.9191],[-2.12017,55.92071],[-2.12429,55.97761],[-2.34402,55.97838],[-2.34402,56.03903],[-2.50469,56.04134],[-2.50057,56.10036],[-2.88235,56.09576],[-2.88235,56.17229],[-2.41268,56.16923],[-2.41817,56.2334],[-2.58572,56.23035],[-2.57198,56.34164],[-2.72579,56.3462],[-2.73128,56.43438],[-2.69283,56.43438],[-2.69283,56.48598],[-2.53078,56.49356],[-2.53078,56.57081],[-2.53029,56.60479],[-2.37324,56.60445],[-2.36844,56.73988],[-2.3293,56.73988],[-2.3293,56.78881],[-2.31453,56.78918],[-2.31488,56.7967],[-2.17137,56.7967],[-2.1704,56.97106],[-2.01017,56.96947],[-2.01017,57.08468],[-2.08177,57.08535],[-2.04881,57.126],[-2.04091,57.12637],[-2.03834,57.24111],[-1.87812,57.24216],[-1.87715,57.29782],[-1.98688,57.29834],[-1.90822,57.35601],[-1.8752,57.35601],[-1.87618,57.37695],[-1.81209,57.41201],[-1.71207,57.41201],[-1.70346,57.64414],[-1.8666,57.64518],[-1.86466,57.70334],[-3.12043,57.70647],[-3.1218,57.75047],[-3.44453,57.75266],[-3.44727,57.71381],[-3.51456,57.70941],[-3.51182,57.694],[-3.7645,57.69179],[-3.76725,57.6345],[-3.84238,57.62883],[-3.84383,57.59658],[-3.94143,57.59164],[-3.94046,57.65378],[-3.88947,57.653],[-3.88268,57.76764],[-3.72245,57.76609],[-3.71954,57.88192],[-3.91469,57.88534],[-3.91606,57.95462],[-3.74577,57.9539],[-3.74715,58.06884],[-3.58373,58.06957],[-3.58373,58.11167],[-3.45601,58.11385],[-3.45446,58.2285],[-3.43799,58.22832],[-3.42432,58.24277],[-3.41231,58.24386],[-3.37351,58.26951],[-3.30639,58.2862],[-3.12292,58.28594],[-3.1236,58.34437],[-2.95743,58.34473],[-2.95125,58.6422],[-2.88122,58.64292],[-2.8851,58.81128],[-2.71808,58.8143],[-2.71614,58.87157],[-2.55688,58.8776],[-2.55445,58.99235],[-2.55676,59.04838],[-2.39189,59.0486],[-2.3918,59.1107],[-2.47337,59.1107],[-2.55916,59.1783],[-2.56304,59.22106],[-2.39213,59.22405],[-2.39114,59.27401],[-2.36395,59.2745],[-2.36589,59.28542],[-2.39114,59.28492],[-2.39114,59.33795],[-2.22218,59.3382],[-2.22339,59.39596],[-2.37585,59.39658],[-2.38993,59.40264],[-2.40085,59.39621],[-2.56379,59.39526],[-2.56379,59.33858],[-2.73202,59.33753],[-2.73339,59.39526],[-3.07265,59.39312],[-3.07034,59.33548],[-3.07532,59.33556],[-3.07498,59.32926],[-3.06983,59.32891],[-3.0698,59.21962],[-3.23634,59.21663],[-3.23368,59.16065],[-3.40328,59.15889],[-3.39409,58.92793],[-3.56645,58.92593],[-3.56111,58.86799],[-3.39251,58.86993],[-3.38947,58.86987],[-3.38911,58.86849],[-3.39129,58.86862],[-3.38842,58.75431],[-3.22382,58.75557],[-3.21897,58.69129],[-3.46341,58.69058],[-3.45517,58.63415],[-3.78751,58.63415],[-3.78613,58.57692],[-3.90286,58.57334],[-3.90286,58.64773],[-4.06903,58.64916],[-4.06903,58.59124],[-4.73645,58.59338],[-4.73645,58.65059],[-5.07154,58.65202],[-5.06548,58.53259],[-5.2332,58.53161],[-5.22835,58.47199],[-5.24243,58.47199],[-5.2366,58.40897],[-5.22835,58.40948],[-5.22107,58.30059],[-5.56579,58.29599],[-5.55803,58.23726],[-5.41467,58.24013],[-5.41419,58.22678],[-5.38857,58.22722],[-5.38271,58.11986],[-5.51043,58.11914],[-5.5114,58.00621],[-5.67454,58.00416],[-5.67163,57.94494],[-5.67163,57.88872],[-5.83477,57.88562],[-5.82771,57.5989],[-6.03843,57.59864],[-6.03891,57.64596],[-6.19817,57.6457],[-6.20761,57.76001],[-6.53707,57.7544],[-6.53124,57.64024],[-6.70021,57.63608],[-6.68078,57.52363],[-6.85169,57.51529],[-6.83615,57.33858],[-6.67302,57.34382],[-6.67496,57.28509],[-6.50988,57.28509],[-6.49822,57.17576],[-6.35062,57.18208],[-6.3312,57.1252],[-6.17972,57.12309],[-6.17195,57.06823],[-6.45938,57.05978],[-6.45647,57.10938],[-6.66719,57.10622],[-6.67302,57.00271],[-6.50211,57.00482],[-6.48361,56.89175],[-6.32661,56.88941],[-6.31566,56.77993],[-6.21467,56.77567],[-6.21467,56.7235],[-6.68661,56.72243],[-6.6769,56.61144],[-6.84198,56.60717],[-6.84004,56.54833],[-7.15466,56.54619],[-7.14884,56.48726],[-6.99152,56.49048],[-6.98764,56.43253],[-6.68273,56.43146],[-6.6769,56.54726],[-6.5293,56.55047],[-6.52347,56.4379],[-6.36616,56.43683],[-6.36422,56.37665],[-6.52736,56.37127],[-6.51717,56.24284],[-6.48696,56.24742],[-6.48696,56.18939],[-6.30019,56.19856],[-6.30294,56.2581],[-5.90194,56.25658],[-5.89645,56.09605],[-6.02828,56.08839],[-6.03927,56.15575],[-6.38534,56.15422],[-6.36062,55.96099],[-6.2123,55.96406],[-6.20475,55.92023],[-6.51855,55.91292],[-6.50619,55.75018],[-6.67648,55.7409],[-6.66,55.62632],[-6.35513,55.62322],[-6.35787,55.5689],[-6.03927,55.57201],[-6.03103,55.62477],[-5.73989,55.63097],[-5.73715,55.45693],[-5.89645,55.46004],[-5.89645,55.27899],[-5.43502,55.28212],[-5.44051,55.4507],[-5.28671,55.45693],[-5.30868,55.40706],[-4.9736,55.40082],[-4.98458,55.20382],[-5.14938,55.20382],[-5.14114,55.03734],[-5.21529,55.03419],[-5.21122,54.80186]],[[-2.16466,60.16221],[-1.99303,60.16098],[-1.99469,60.10352],[-2.16631,60.10474],[-2.16466,60.16221]],[[-1.53607,59.85708],[-1.36536,59.85598],[-1.36685,59.79756],[-1.19063,59.79642],[-1.1862,59.96954],[-1.00787,59.96839],[-1.00412,60.11415],[-0.83608,60.11307],[-0.83457,60.17168],[-1.00743,60.17278],[-1.00522,60.25839],[-0.82997,60.25728],[-0.82698,60.37266],[-0.65075,60.37154],[-0.64772,60.48823],[-0.99849,60.49044],[-0.99703,60.54655],[-0.64253,60.54432],[-0.63949,60.66068],[-0.81481,60.66178],[-0.8133,60.71961],[-0.63833,60.71851],[-0.63547,60.82754],[-0.79757,60.82855],[-0.99414,60.82978],[-0.9955,60.77827],[-1.16703,60.77934],[-1.17004,60.66462],[-1.52226,60.66683],[-1.52379,60.60844],[-1.69757,60.60954],[-1.70213,60.43452],[-1.52606,60.43341],[-1.52752,60.37707],[-1.87511,60.37927],[-1.87814,60.26246],[-1.70196,60.26134],[-1.70491,60.14705],[-1.52866,60.14593],[-1.53607,59.85708]],[[-0.98477,60.89438],[-0.98603,60.83611],[-0.80784,60.83519],[-0.80657,60.89346],[-0.98477,60.89438]],[[-7.76969,56.87882],[-7.76145,56.76083],[-7.6009,56.76419],[-7.59725,56.81933],[-7.44799,56.82039],[-7.44893,56.87941],[-7.28414,56.87941],[-7.28139,57.04712],[-7.13033,57.0516],[-7.13307,57.5118],[-6.96828,57.51475],[-6.97652,57.68547],[-6.80623,57.69134],[-6.80898,57.8042],[-6.64968,57.80713],[-6.64418,57.86123],[-6.32009,57.86269],[-6.32009,58.15516],[-6.16078,58.15226],[-6.15529,58.20874],[-5.985,58.21019],[-5.9905,58.26802],[-6.1498,58.26657],[-6.14156,58.55575],[-6.31734,58.55575],[-6.3091,58.49839],[-6.48763,58.49552],[-6.48763,58.44238],[-6.66066,58.4395],[-6.64693,58.38195],[-6.81172,58.38051],[-6.81172,58.32864],[-6.97927,58.32864],[-6.97103,58.26946],[-7.14131,58.26802],[-7.14038,58.03587],[-7.30206,58.0351],[-7.30303,57.97748],[-7.13795,57.97774],[-7.14135,57.92028],[-7.1399,57.86402],[-7.30206,57.86247],[-7.29848,57.74423],[-7.45092,57.7457],[-7.45504,57.68995],[-7.61861,57.6906],[-7.61983,57.7457],[-7.79012,57.74423],[-7.78738,57.68555],[-7.62223,57.68538],[-7.61738,57.57126],[-7.78829,57.571],[-7.78926,57.51211],[-7.7038,57.51159],[-7.69992,57.45469],[-7.53678,57.45521],[-7.53484,57.51263],[-7.45812,57.51315],[-7.45521,57.28242],[-7.61155,57.28452],[-7.61446,57.22727],[-7.45133,57.22569],[-7.45133,57.11039],[-7.61641,57.10881],[-7.60378,56.87924],[-7.76969,56.87882]],[[-1.71066,59.56263],[-1.54175,59.56222],[-1.54231,59.50372],[-1.71122,59.50414],[-1.71066,59.56263]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1960","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-NatGrid-12500-1940-60-singles","max_zoom":18,"name":"NLS - OS 1:2,500 National Grid Maps, 1940s-1960s - single sheets","type":"tms","url":"https://geo.nls.uk/maps/os/scotland_2500_singles/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.29541,54.6357],[-5.00839,54.59991],[-4.29153,54.61741],[-4.30252,54.70796],[-3.76556,54.72145],[-3.75732,54.62934],[-3.52661,54.63331],[-3.52112,54.54897],[-3.04184,54.55693],[-3.04733,54.65159],[-3.28491,54.64762],[-3.29727,54.82917],[-3.5321,54.82443],[-3.52661,54.90504],[-2.82898,54.9153],[-2.83173,55.09487],[-2.59689,55.0988],[-2.60101,55.18514],[-2.36893,55.19063],[-2.36893,55.2799],[-2.13272,55.28615],[-2.14508,55.64117],[-1.67404,55.64815],[-1.43921,55.74257],[-1.81824,55.90612],[-2.21924,56.13331],[-2.23022,56.51405],[-1.8457,56.82493],[-1.62048,57.18688],[-1.49414,57.58067],[-1.55457,57.78038],[-2.05444,57.87105],[-2.95532,57.84183],[-3.30139,57.96442],[-2.66418,58.37868],[-2.26318,58.91883],[-1.92261,59.31077],[-0.90088,59.78405],[-0.70862,60.10046],[-0.47241,60.34054],[-0.41199,60.68663],[-0.32959,60.89839],[-0.8075,60.95444],[-1.62048,60.86899],[-2.62573,60.24526],[-3.7793,59.33599],[-4.43848,58.88478],[-5.66345,58.79098],[-7.19055,58.5023],[-7.81128,57.91777],[-8.27271,56.93299],[-7.66846,56.50496],[-7.03125,55.57213],[-6.14136,55.38535],[-5.75684,55.11608],[-5.29541,54.6357]],[[-4.93011,54.12865],[-4.88617,54.02713],[-4.66644,54.02713],[-4.43024,54.09323],[-4.24896,54.2989],[-4.27368,54.45727],[-4.61151,54.50035],[-4.93011,54.12865]],[[-1.84158,51.15566],[-1.8409,51.06513],[-1.62598,51.06621],[-1.62701,51.15782],[-1.84158,51.15566]],[[0.31036,51.41762],[0.30418,51.2372],[0.51876,51.23441],[0.51464,51.14425],[0.94551,51.13779],[0.95032,51.22774],[1.37913,51.21871],[1.38393,51.30808],[1.45123,51.30615],[1.46015,51.39771],[0.95684,51.40906],[0.86792,51.44695],[0.70244,51.49955],[0.62794,51.50725],[0.52906,51.50511],[0.52597,51.41527],[0.31036,51.41762]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1943","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-WarOffice-125k-1940-43","max_zoom":16,"min_zoom":5,"name":"NLS - OS/War Office - GSGS 3906 1:25,000, 1940-43","type":"tms","url":"https://geo.nls.uk/mapdata3/gsgs3906/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.45854,49.90441],[-6.3872,49.98411],[-6.22968,49.98962],[-6.21713,49.86801],[-6.45512,49.85918],[-6.45854,49.90441]],[[-1.44951,60.86341],[-0.71671,60.85451],[-0.73497,60.43598],[-0.69388,60.41682],[-0.72584,60.39427],[-0.73954,60.04847],[-0.92674,60.04619],[-0.93815,59.82662],[-1.45865,59.8312],[-1.44552,60.0536],[-1.46321,60.0536],[-1.46435,60.063],[-1.57165,60.06385],[-1.56936,60.179],[-1.64356,60.1807],[-1.64356,60.18922],[-1.82162,60.1895],[-1.82048,60.36155],[-1.8416,60.36973],[-1.82162,60.38328],[-1.81799,60.59343],[-1.45317,60.59343],[-1.44951,60.86341]],[[-4.90892,54.42421],[-4.2826,54.44299],[-4.25354,54.02977],[-4.87664,54.02218],[-4.90892,54.42421]],[[-5.86674,59.14446],[-5.776,59.14709],[-5.772,59.10141],[-5.86218,59.09906],[-5.86674,59.14446]],[[-1.70659,59.57036],[-1.55792,59.56935],[-1.55649,59.49657],[-1.70545,59.49758],[-1.70659,59.57036]],[[-7.68658,58.2941],[-7.53306,58.3007],[-7.52564,58.26469],[-7.67973,58.25779],[-7.68658,58.2941]],[[-4.53383,59.03599],[-4.48132,59.03716],[-4.47961,59.01866],[-4.53326,59.01807],[-4.53383,59.03599]],[[-8.67107,57.87699],[-8.46732,57.88973],[-8.44678,57.7907],[-8.65109,57.77792],[-8.67107,57.87699]],[[-5.23955,50.35306],[-5.79201,50.33849],[-5.76005,49.9317],[-4.65514,49.95815],[-4.67797,50.28601],[-4.24422,50.28017],[-4.24878,50.20425],[-3.38129,50.20425],[-3.42238,50.51882],[-3.11648,50.52463],[-3.12105,50.65796],[-2.67364,50.66195],[-2.59535,50.63943],[-2.5905,50.57284],[-2.47912,50.57335],[-2.47589,50.50667],[-2.39679,50.50564],[-2.40164,50.57233],[-1.04003,50.57182],[-1.03357,50.70593],[-0.5493,50.70388],[-0.54607,50.78866],[-0.09247,50.7856],[-0.08763,50.71819],[0.47897,50.71206],[0.48704,50.81825],[0.97615,50.80499],[0.99229,51.01263],[1.44912,51.00044],[1.47818,51.40904],[1.02296,51.42716],[1.03588,51.76409],[1.61054,51.7501],[1.64606,52.156],[1.72677,52.15402],[1.74937,52.44818],[1.78707,52.48116],[1.7591,52.52251],[1.79335,52.96027],[0.37981,52.99585],[0.38952,53.25112],[0.34786,53.25112],[0.32389,53.28219],[0.34615,53.65385],[0.12849,53.65755],[0.11658,53.66747],[0.13506,54.06557],[-0.06098,54.06591],[-0.04142,54.47094],[-0.56627,54.47718],[-0.55921,54.65651],[-1.16656,54.66235],[-1.16374,54.84261],[-1.33162,54.84391],[-1.32571,55.24708],[-1.52945,55.24871],[-1.52418,55.65401],[-1.76388,55.65401],[-1.77337,55.97191],[-2.16079,55.9683],[-2.15433,56.06214],[-2.45781,56.05853],[-2.41906,56.64172],[-2.09622,56.64172],[-2.0833,57.00213],[-1.92834,57.01268],[-1.9181,57.35909],[-1.75022,57.36257],[-1.76959,57.76086],[-3.69376,57.75742],[-3.70667,57.98064],[-3.5969,57.97721],[-3.60336,58.12073],[-3.02223,58.13096],[-3.02869,58.54108],[-2.8479,58.53097],[-2.86081,58.84305],[-2.67962,58.8415],[-2.68419,58.88517],[-2.63397,58.90522],[-2.67962,58.93351],[-2.68876,59.02292],[-2.36687,59.02292],[-2.37029,59.26529],[-2.3429,59.2822],[-2.37144,59.29969],[-2.37372,59.37071],[-2.3429,59.38582],[-2.37258,59.40035],[-2.37144,59.42591],[-3.07342,59.42301],[-3.07114,59.34336],[-3.1031,59.33114],[-3.07456,59.31367],[-3.07228,59.2326],[-3.38503,59.14842],[-3.37476,58.93528],[-3.56538,58.93233],[-3.55483,58.69759],[-5.28086,58.66677],[-5.25342,58.35141],[-5.50685,58.34379],[-5.47618,58.03236],[-5.8975,58.02124],[-5.8523,57.61718],[-6.13963,57.61372],[-6.15416,57.74232],[-6.29137,57.73801],[-6.33657,58.13988],[-6.11219,58.14669],[-6.14738,58.51063],[-6.29348,58.54162],[-6.84137,58.29773],[-7.00574,58.29293],[-7.10162,58.20644],[-7.25731,58.17931],[-7.25311,58.10049],[-7.40707,58.09056],[-7.39135,57.79114],[-7.79099,57.77332],[-7.76242,57.54442],[-7.6985,57.14532],[-7.79438,57.13045],[-7.71676,56.73686],[-7.01221,56.76544],[-6.97992,56.54539],[-7.06386,56.54539],[-7.04449,56.35626],[-6.50068,56.38129],[-6.44914,55.97936],[-6.56329,55.96915],[-6.53937,55.70301],[-6.55955,55.69073],[-6.53453,55.67617],[-6.52162,55.57044],[-5.89126,55.59234],[-5.85601,55.23207],[-5.22936,55.2516],[-5.18371,54.62541],[-3.6656,54.65184],[-3.64962,54.432],[-3.54004,54.43067],[-3.53091,54.02902],[-3.06977,54.03036],[-3.06757,53.82214],[-3.08049,53.77399],[-3.06192,53.74775],[-3.06112,53.6737],[-3.21447,53.67084],[-3.20577,53.42262],[-3.27996,53.35522],[-3.28967,53.36084],[-3.33275,53.36493],[-3.37613,53.35403],[-4.0889,53.34331],[-4.09455,53.4612],[-4.69741,53.44486],[-4.68828,53.33186],[-4.72024,53.28958],[-4.68371,53.24862],[-4.67687,53.15426],[-4.84808,53.14468],[-4.81783,52.74403],[-4.25458,52.75589],[-4.22888,52.25488],[-4.26076,52.25364],[-4.27246,52.24326],[-4.81363,52.23009],[-4.80792,52.11389],[-5.38891,52.09917],[-5.37179,51.91297],[-5.42087,51.91015],[-5.41402,51.84532],[-5.36836,51.84744],[-5.34668,51.55953],[-4.77368,51.57585],[-4.76569,51.48851],[-4.19154,51.49704],[-4.18698,51.43447],[-3.61512,51.44443],[-3.61055,51.37465],[-3.14941,51.37893],[-3.14941,51.29193],[-4.30387,51.27459],[-4.28612,51.05087],[-4.85433,51.03666],[-4.83722,50.72128],[-5.26183,50.70827],[-5.23955,50.35306]],[[-2.15027,60.17132],[-2.00302,60.16961],[-2.00131,60.0997],[-2.14855,60.10112],[-2.15027,60.17132]],[[-6.2086,59.11635],[-6.12299,59.11664],[-6.12185,59.0715],[-6.20974,59.0715],[-6.2086,59.11635]],[[-4.41596,59.0889],[-4.4212,59.07708],[-4.39719,59.07791],[-4.39134,59.08973],[-4.41596,59.0889]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1962","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-7th_Series","max_zoom":16,"min_zoom":5,"name":"NLS - OS 1-inch 7th Series 1955-61","start_date":"1955","type":"tms","url":"https://geo.nls.uk/mapdata2/os/seventh/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.71572,54.67966],[-4.68507,54.68003],[-4.68358,54.66232],[-4.71488,54.66158],[-4.71572,54.67966]],[[-3.70857,58.33712],[-3.54059,58.33807],[-3.53151,58.1608],[-3.36081,58.16224],[-3.36535,58.25217],[-3.16105,58.25361],[-3.16105,58.32615],[-3.02757,58.3271],[-3.03665,58.6139],[-3.00215,58.61437],[-3.00305,58.70363],[-3.41801,58.70033],[-3.4171,58.62903],[-3.72401,58.62667],[-3.7231,58.60681],[-4.23613,58.59924],[-4.2334,58.50923],[-3.88836,58.51445],[-3.88291,58.42613],[-3.71584,58.42708],[-3.70857,58.33712]],[[-6.46676,49.99436],[-6.18891,50.00487],[-6.17892,49.89678],[-6.31694,49.89152],[-6.3124,49.8201],[-6.45042,49.816],[-6.46676,49.99436]],[[-5.64533,50.20298],[-5.78013,50.20141],[-5.76379,50.01973],[-5.34792,50.02906],[-5.33884,49.94149],[-5.02467,49.94733],[-5.03557,50.03839],[-5.00106,50.04539],[-4.99743,50.13045],[-4.85578,50.13394],[-4.86123,50.20606],[-4.65461,50.21402],[-4.65589,50.30186],[-4.51849,50.30268],[-4.51464,50.32564],[-4.24883,50.32646],[-4.24883,50.31006],[-4.10886,50.31416],[-4.10629,50.24113],[-3.96481,50.2432],[-3.96408,50.22542],[-3.85223,50.22736],[-3.85038,50.15526],[-3.69218,50.15725],[-3.54146,50.16022],[-3.54658,50.32268],[-3.4068,50.3241],[-3.41658,50.58927],[-3.27467,50.59627],[-3.27492,50.61063],[-2.99717,50.61397],[-2.9896,50.68854],[-2.71203,50.69056],[-2.71091,50.6196],[-2.56955,50.61575],[-2.5651,50.51341],[-2.40145,50.51338],[-2.39406,50.61603],[-2.28941,50.61474],[-2.28762,50.60085],[-2.14779,50.60485],[-2.1451,50.53254],[-1.93351,50.53475],[-1.93621,50.61704],[-1.8573,50.62281],[-1.85549,50.70914],[-1.60669,50.70914],[-1.60851,50.62396],[-1.44507,50.62281],[-1.44325,50.5317],[-1.15451,50.5294],[-1.14724,50.61705],[-1.01104,50.62051],[-1.01104,50.70569],[-0.70413,50.70454],[-0.7005,50.77694],[-0.58609,50.77235],[-0.58791,50.79072],[-0.01496,50.77981],[-0.01859,50.76258],[0.09673,50.76201],[0.09219,50.69131],[0.30466,50.68901],[0.31011,50.77579],[0.55118,50.77263],[0.553,50.84321],[0.69556,50.84034],[0.69646,50.85926],[0.98521,50.85238],[0.99066,50.94172],[1.01608,50.94115],[1.02153,51.03032],[1.28122,51.02404],[1.28485,51.0948],[1.42778,51.0948],[1.43868,51.28829],[1.47137,51.28715],[1.48045,51.39945],[1.15902,51.40738],[1.15902,51.38699],[1.01918,51.39039],[1.02281,51.47982],[0.87935,51.48435],[0.88298,51.55667],[1.02645,51.55441],[1.03734,51.74933],[1.26071,51.74821],[1.26616,51.82796],[1.33517,51.83358],[1.34788,51.9199],[1.48408,51.9199],[1.49861,52.00383],[1.64389,52.00271],[1.66568,52.27022],[1.73106,52.27022],[1.75285,52.44656],[1.82549,52.44767],[1.83457,52.62441],[1.76903,52.62914],[1.77417,52.7179],[1.69969,52.72179],[1.70611,52.81037],[1.55972,52.81658],[1.56486,52.90341],[1.41847,52.91038],[1.42232,52.92819],[1.34399,52.92896],[1.34913,53.00012],[0.45158,53.02259],[0.44976,52.93511],[0.37894,52.93511],[0.37167,52.84636],[0.22276,52.84966],[0.23366,52.93292],[0.3063,52.93511],[0.30811,53.02259],[0.38075,53.02368],[0.39937,53.29337],[0.32489,53.29875],[0.32746,53.38538],[0.25041,53.38691],[0.25812,53.47489],[0.18621,53.47795],[0.19134,53.65488],[0.15025,53.65944],[0.15282,53.7666],[0.0013,53.77343],[0.00258,53.84243],[-0.02824,53.84168],[-0.02266,53.93115],[-0.1407,53.93222],[-0.14161,54.02193],[-0.17066,54.02353],[-0.16794,54.09495],[-0.01267,54.09122],[-0.00995,54.18112],[-0.16158,54.18378],[-0.16067,54.2029],[-0.24058,54.20343],[-0.23785,54.29362],[-0.38949,54.29415],[-0.38575,54.38373],[-0.46164,54.38564],[-0.45711,54.49391],[-0.61057,54.49654],[-0.60966,54.56767],[-0.76674,54.56978],[-0.76402,54.58872],[-0.91929,54.59083],[-0.91481,54.66083],[-1.14852,54.66343],[-1.14724,54.75283],[-1.22685,54.7532],[-1.22654,54.84299],[-1.29918,54.84351],[-1.29918,54.93334],[-1.34549,54.93543],[-1.34367,55.02349],[-1.37727,55.02557],[-1.37545,55.13109],[-1.49974,55.13157],[-1.49693,55.29283],[-1.52967,55.29429],[-1.52582,55.65238],[-1.76595,55.65455],[-1.7621,55.74356],[-1.96884,55.74356],[-1.9698,55.83345],[-2.00191,55.83363],[-2.00158,55.92355],[-2.16049,55.92406],[-2.16139,55.94135],[-2.32029,55.94085],[-2.3212,56.01451],[-2.56273,56.01248],[-2.56455,56.10222],[-2.96589,56.09918],[-2.96679,56.17103],[-2.48283,56.17558],[-2.48828,56.28561],[-2.56455,56.28359],[-2.56818,56.37421],[-2.72617,56.3732],[-2.73162,56.44253],[-2.61903,56.44253],[-2.6154,56.53177],[-2.45377,56.53477],[-2.45347,56.64202],[-2.40625,56.64402],[-2.39536,56.7298],[-2.29366,56.73378],[-2.29729,56.80742],[-2.16291,56.8114],[-2.15927,56.99584],[-1.9922,57.00178],[-2.00673,57.27375],[-1.91956,57.27571],[-1.93046,57.34829],[-1.8106,57.34437],[-1.7997,57.44027],[-1.66169,57.42854],[-1.66895,57.53983],[-1.74522,57.53983],[-1.75249,57.63133],[-1.82876,57.63327],[-1.82876,57.71873],[-3.17685,57.71712],[-3.17942,57.73426],[-3.51341,57.72921],[-3.51295,57.71127],[-3.76356,57.70763],[-3.75985,57.63571],[-3.84204,57.63434],[-3.84589,57.61784],[-3.97944,57.61577],[-3.97944,57.68654],[-3.81507,57.68998],[-3.81764,57.79689],[-3.68538,57.79894],[-3.68923,57.88916],[-3.93835,57.88779],[-3.9422,57.97506],[-3.69436,57.97846],[-3.69693,58.06959],[-4.03722,58.06415],[-4.03465,57.97302],[-4.20031,57.97029],[-4.18328,57.70129],[-4.51875,57.69511],[-4.51229,57.60507],[-4.67891,57.60166],[-4.66602,57.42183],[-3.66777,57.43947],[-3.67128,57.52954],[-3.3385,57.53319],[-3.33305,57.44389],[-2.83365,57.44853],[-2.82364,56.99927],[-2.33054,57.00067],[-2.3299,56.91139],[-2.65799,56.90929],[-2.65596,56.81984],[-2.82167,56.81885],[-2.8185,56.72954],[-3.14492,56.72655],[-3.14356,56.63627],[-3.46791,56.63503],[-3.47426,56.72381],[-3.80115,56.71883],[-3.78571,56.4493],[-3.94643,56.44579],[-3.94289,56.26598],[-4.42315,56.25885],[-4.41416,56.08155],[-4.89442,56.0708],[-4.87911,55.8897],[-5.19942,55.88214],[-5.18529,55.70238],[-5.02734,55.70672],[-5.02221,55.6879],[-4.89765,55.6908],[-4.88802,55.60028],[-4.73392,55.60463],[-4.7275,55.53421],[-4.77373,55.53348],[-4.7686,55.44472],[-4.84949,55.44181],[-4.84051,55.35065],[-4.87004,55.35138],[-4.8649,55.26295],[-4.99203,55.25929],[-4.99075,55.16918],[-5.06009,55.16551],[-5.05752,55.07519],[-5.21418,55.07225],[-5.19918,54.80203],[-5.04663,54.80622],[-5.05026,54.7245],[-4.97036,54.7203],[-4.97762,54.62159],[-4.79602,54.63421],[-4.79602,54.73079],[-4.89772,54.7266],[-4.90861,54.81459],[-4.80692,54.81669],[-4.81055,54.79156],[-4.69433,54.79785],[-4.67617,54.7245],[-4.57447,54.7245],[-4.55994,54.64261],[-4.30933,54.63841],[-4.33333,54.82299],[-4.2627,54.82743],[-4.255,54.73486],[-3.83381,54.74005],[-3.83637,54.81411],[-3.71181,54.81337],[-3.71438,54.83187],[-3.53461,54.83556],[-3.5271,54.90662],[-3.48088,54.90847],[-3.47767,54.74573],[-3.58746,54.74462],[-3.5836,54.65462],[-3.71073,54.65313],[-3.69918,54.45504],[-3.57462,54.45728],[-3.5759,54.3863],[-3.53994,54.38556],[-3.53866,54.29722],[-3.46033,54.29573],[-3.45905,54.20795],[-3.38071,54.2102],[-3.382,54.11698],[-3.30288,54.11607],[-3.30015,54.02762],[-3.1013,54.02922],[-3.0936,53.60622],[-3.2066,53.60164],[-3.20917,53.49178],[-3.24512,53.48872],[-3.23485,53.40459],[-3.52763,53.4],[-3.5344,53.32848],[-3.64881,53.32523],[-3.65273,53.30577],[-3.72719,53.30469],[-3.7315,53.39453],[-3.91083,53.39128],[-3.9072,53.30238],[-3.95215,53.30157],[-3.95667,53.39122],[-4.1082,53.38892],[-4.1082,53.4073],[-4.26229,53.40653],[-4.26358,53.47537],[-4.63854,53.46773],[-4.63468,53.38126],[-4.70916,53.37743],[-4.70017,53.1955],[-4.54993,53.19627],[-4.54351,53.10925],[-4.39199,53.11002],[-4.38557,53.0236],[-4.61157,53.02051],[-4.60387,52.92849],[-4.75668,52.92617],[-4.74769,52.83706],[-4.82088,52.83318],[-4.82088,52.74465],[-4.37016,52.75397],[-4.37658,52.84016],[-4.23147,52.84559],[-4.22377,52.75864],[-4.10563,52.75708],[-4.10152,52.67149],[-4.14874,52.67039],[-4.13058,52.40086],[-4.19958,52.39864],[-4.20503,52.31102],[-4.34668,52.30325],[-4.3485,52.23657],[-4.49015,52.23323],[-4.48833,52.20987],[-4.65722,52.20987],[-4.65903,52.13859],[-4.77889,52.13525],[-4.78071,52.1163],[-4.92599,52.11407],[-4.91872,52.03929],[-5.23653,52.03147],[-5.23471,51.94423],[-5.3473,51.94088],[-5.3473,51.9196],[-5.49258,51.91624],[-5.48532,51.82654],[-5.19839,51.83215],[-5.18931,51.76252],[-5.33582,51.75895],[-5.32812,51.66865],[-5.18366,51.67303],[-5.18366,51.65391],[-5.06745,51.6579],[-5.06038,51.56779],[-4.59746,51.58096],[-4.60388,51.67263],[-4.34577,51.67263],[-4.3355,51.4963],[-3.95283,51.51068],[-3.94256,51.59053],[-3.88092,51.59532],[-3.87065,51.50749],[-3.76792,51.4979],[-3.75508,51.42429],[-3.58558,51.41468],[-3.57787,51.33292],[-3.07964,51.33292],[-3.07707,51.2494],[-3.72169,51.23815],[-3.72169,51.25583],[-3.87065,51.25583],[-3.86808,51.23654],[-4.29441,51.22528],[-4.28927,51.04964],[-4.56921,51.04318],[-4.56241,50.94974],[-4.59056,50.95203],[-4.58965,50.86271],[-4.6296,50.85927],[-4.62264,50.76915],[-4.69528,50.768],[-4.69347,50.69674],[-4.83421,50.69386],[-4.82967,50.60462],[-4.96768,50.60001],[-4.96859,50.58214],[-5.10842,50.57868],[-5.10298,50.48923],[-5.13112,50.48807],[-5.12749,50.41638],[-5.26642,50.41175],[-5.26097,50.30342],[-5.51249,50.29762],[-5.50613,50.22564],[-5.64687,50.221],[-5.64533,50.20298]],[[-5.13366,55.26302],[-5.1022,55.26394],[-5.09995,55.24582],[-5.13222,55.24463],[-5.13366,55.26302]],[[-5.64319,55.50957],[-5.4861,55.51266],[-5.47157,55.33488],[-5.62775,55.33023],[-5.64319,55.50957]],[[-4.72135,51.21802],[-4.58042,51.22124],[-4.57464,51.13067],[-4.7175,51.12805],[-4.72135,51.21802]],[[-5.16088,55.41536],[-5.00454,55.41901],[-5.01848,55.61535],[-5.17556,55.61381],[-5.16088,55.41536]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1962","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-1st_Series","max_zoom":16,"min_zoom":5,"name":"NLS - OS 1:25k 1st Series 1937-61","start_date":"1937","type":"tms","url":"https://geo.nls.uk/mapdata2/os/25000/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.21122,54.80186],[-5.06428,54.80265],[-5.05604,54.63052],[-4.31583,54.62972],[-4.31171,54.74483],[-3.85303,54.74641],[-3.85303,54.80344],[-3.55228,54.80344],[-3.55228,54.83746],[-3.46851,54.84063],[-3.46576,54.89832],[-3.38474,54.89911],[-3.38886,54.95592],[-3.09208,54.95395],[-3.03924,54.99233],[-3.02127,55.04939],[-2.95912,55.04633],[-2.92028,55.06663],[-2.78571,55.06865],[-2.78522,55.09144],[-2.73376,55.09228],[-2.73762,55.1512],[-2.76484,55.15107],[-2.70131,55.17225],[-2.66355,55.21928],[-2.64604,55.21889],[-2.62904,55.22339],[-2.63179,55.22878],[-2.62355,55.24463],[-2.61977,55.24547],[-2.6099,55.24542],[-2.60999,55.24865],[-2.64081,55.259],[-2.62479,55.26156],[-2.60452,55.28231],[-2.56932,55.29613],[-2.54795,55.31216],[-2.50911,55.32349],[-2.47804,55.34945],[-2.44211,55.35331],[-2.40521,55.34393],[-2.37268,55.34475],[-2.32218,55.36877],[-2.32412,55.39993],[-2.25761,55.42502],[-2.19855,55.42735],[-2.14843,55.47175],[-2.19443,55.4842],[-2.20405,55.52931],[-2.29606,55.63797],[-2.21778,55.63797],[-2.10593,55.74525],[-1.97169,55.74622],[-1.96975,55.9191],[-2.12017,55.92071],[-2.12429,55.97761],[-2.34402,55.97838],[-2.34402,56.03903],[-2.50469,56.04134],[-2.50057,56.10036],[-2.88235,56.09576],[-2.88235,56.17229],[-2.41268,56.16923],[-2.41817,56.2334],[-2.58572,56.23035],[-2.57198,56.34164],[-2.72579,56.3462],[-2.73128,56.43438],[-2.69283,56.43438],[-2.69283,56.48598],[-2.53078,56.49356],[-2.53078,56.57081],[-2.53029,56.60479],[-2.37324,56.60445],[-2.36844,56.73988],[-2.3293,56.73988],[-2.3293,56.78881],[-2.31453,56.78918],[-2.31488,56.7967],[-2.17137,56.7967],[-2.1704,56.97106],[-2.01017,56.96947],[-2.01017,57.08468],[-2.08177,57.08535],[-2.04881,57.126],[-2.04091,57.12637],[-2.03834,57.24111],[-1.87812,57.24216],[-1.87715,57.29782],[-1.98688,57.29834],[-1.90822,57.35601],[-1.8752,57.35601],[-1.87618,57.37695],[-1.81209,57.41201],[-1.71207,57.41201],[-1.70346,57.64414],[-1.8666,57.64518],[-1.86466,57.70334],[-3.12043,57.70647],[-3.1218,57.75047],[-3.44453,57.75266],[-3.44727,57.71381],[-3.51456,57.70941],[-3.51182,57.694],[-3.7645,57.69179],[-3.76725,57.6345],[-3.84238,57.62883],[-3.84383,57.59658],[-3.94143,57.59164],[-3.94046,57.65378],[-3.88947,57.653],[-3.88268,57.76764],[-3.72245,57.76609],[-3.71954,57.88192],[-3.91469,57.88534],[-3.91606,57.95462],[-3.74577,57.9539],[-3.74715,58.06884],[-3.58373,58.06957],[-3.58373,58.11167],[-3.45601,58.11385],[-3.45446,58.2285],[-3.43799,58.22832],[-3.42432,58.24277],[-3.41231,58.24386],[-3.37351,58.26951],[-3.30639,58.2862],[-3.12292,58.28594],[-3.1236,58.34437],[-2.95743,58.34473],[-2.95125,58.6422],[-2.88122,58.64292],[-2.8851,58.81128],[-2.71808,58.8143],[-2.71614,58.87157],[-2.55688,58.8776],[-2.55445,58.99235],[-2.55676,59.04838],[-2.39189,59.0486],[-2.3918,59.1107],[-2.47337,59.1107],[-2.55916,59.1783],[-2.56304,59.22106],[-2.39213,59.22405],[-2.39114,59.27401],[-2.36395,59.2745],[-2.36589,59.28542],[-2.39114,59.28492],[-2.39114,59.33795],[-2.22218,59.3382],[-2.22339,59.39596],[-2.37585,59.39658],[-2.38993,59.40264],[-2.40085,59.39621],[-2.56379,59.39526],[-2.56379,59.33858],[-2.73202,59.33753],[-2.73339,59.39526],[-3.07265,59.39312],[-3.07034,59.33548],[-3.07532,59.33556],[-3.07498,59.32926],[-3.06983,59.32891],[-3.0698,59.21962],[-3.23634,59.21663],[-3.23368,59.16065],[-3.40328,59.15889],[-3.39409,58.92793],[-3.56645,58.92593],[-3.56111,58.86799],[-3.39251,58.86993],[-3.38947,58.86987],[-3.38911,58.86849],[-3.39129,58.86862],[-3.38842,58.75431],[-3.22382,58.75557],[-3.21897,58.69129],[-3.46341,58.69058],[-3.45517,58.63415],[-3.78751,58.63415],[-3.78613,58.57692],[-3.90286,58.57334],[-3.90286,58.64773],[-4.06903,58.64916],[-4.06903,58.59124],[-4.73645,58.59338],[-4.73645,58.65059],[-5.07154,58.65202],[-5.06548,58.53259],[-5.2332,58.53161],[-5.22835,58.47199],[-5.24243,58.47199],[-5.2366,58.40897],[-5.22835,58.40948],[-5.22107,58.30059],[-5.56579,58.29599],[-5.55803,58.23726],[-5.41467,58.24013],[-5.41419,58.22678],[-5.38857,58.22722],[-5.38271,58.11986],[-5.51043,58.11914],[-5.5114,58.00621],[-5.67454,58.00416],[-5.67163,57.94494],[-5.67163,57.88872],[-5.83477,57.88562],[-5.82771,57.5989],[-6.03843,57.59864],[-6.03891,57.64596],[-6.19817,57.6457],[-6.20761,57.76001],[-6.53707,57.7544],[-6.53124,57.64024],[-6.70021,57.63608],[-6.68078,57.52363],[-6.85169,57.51529],[-6.83615,57.33858],[-6.67302,57.34382],[-6.67496,57.28509],[-6.50988,57.28509],[-6.49822,57.17576],[-6.35062,57.18208],[-6.3312,57.1252],[-6.17972,57.12309],[-6.17195,57.06823],[-6.45938,57.05978],[-6.45647,57.10938],[-6.66719,57.10622],[-6.67302,57.00271],[-6.50211,57.00482],[-6.48361,56.89175],[-6.32661,56.88941],[-6.31566,56.77993],[-6.21467,56.77567],[-6.21467,56.7235],[-6.68661,56.72243],[-6.6769,56.61144],[-6.84198,56.60717],[-6.84004,56.54833],[-7.15466,56.54619],[-7.14884,56.48726],[-6.99152,56.49048],[-6.98764,56.43253],[-6.68273,56.43146],[-6.6769,56.54726],[-6.5293,56.55047],[-6.52347,56.4379],[-6.36616,56.43683],[-6.36422,56.37665],[-6.52736,56.37127],[-6.51717,56.24284],[-6.48696,56.24742],[-6.48696,56.18939],[-6.30019,56.19856],[-6.30294,56.2581],[-5.90194,56.25658],[-5.89645,56.09605],[-6.02828,56.08839],[-6.03927,56.15575],[-6.38534,56.15422],[-6.36062,55.96099],[-6.2123,55.96406],[-6.20475,55.92023],[-6.51855,55.91292],[-6.50619,55.75018],[-6.67648,55.7409],[-6.66,55.62632],[-6.35513,55.62322],[-6.35787,55.5689],[-6.03927,55.57201],[-6.03103,55.62477],[-5.73989,55.63097],[-5.73715,55.45693],[-5.89645,55.46004],[-5.89645,55.27899],[-5.43502,55.28212],[-5.44051,55.4507],[-5.28671,55.45693],[-5.30868,55.40706],[-4.9736,55.40082],[-4.98458,55.20382],[-5.14938,55.20382],[-5.14114,55.03734],[-5.21529,55.03419],[-5.21122,54.80186]],[[-2.16466,60.16221],[-1.99303,60.16098],[-1.99469,60.10352],[-2.16631,60.10474],[-2.16466,60.16221]],[[-1.53607,59.85708],[-1.36536,59.85598],[-1.36685,59.79756],[-1.19063,59.79642],[-1.1862,59.96954],[-1.00787,59.96839],[-1.00412,60.11415],[-0.83608,60.11307],[-0.83457,60.17168],[-1.00743,60.17278],[-1.00522,60.25839],[-0.82997,60.25728],[-0.82698,60.37266],[-0.65075,60.37154],[-0.64772,60.48823],[-0.99849,60.49044],[-0.99703,60.54655],[-0.64253,60.54432],[-0.63949,60.66068],[-0.81481,60.66178],[-0.8133,60.71961],[-0.63833,60.71851],[-0.63547,60.82754],[-0.79757,60.82855],[-0.99414,60.82978],[-0.9955,60.77827],[-1.16703,60.77934],[-1.17004,60.66462],[-1.52226,60.66683],[-1.52379,60.60844],[-1.69757,60.60954],[-1.70213,60.43452],[-1.52606,60.43341],[-1.52752,60.37707],[-1.87511,60.37927],[-1.87814,60.26246],[-1.70196,60.26134],[-1.70491,60.14705],[-1.52866,60.14593],[-1.53607,59.85708]],[[-0.98477,60.89438],[-0.98603,60.83611],[-0.80784,60.83519],[-0.80657,60.89346],[-0.98477,60.89438]],[[-7.76969,56.87882],[-7.76145,56.76083],[-7.6009,56.76419],[-7.59725,56.81933],[-7.44799,56.82039],[-7.44893,56.87941],[-7.28414,56.87941],[-7.28139,57.04712],[-7.13033,57.0516],[-7.13307,57.5118],[-6.96828,57.51475],[-6.97652,57.68547],[-6.80623,57.69134],[-6.80898,57.8042],[-6.64968,57.80713],[-6.64418,57.86123],[-6.32009,57.86269],[-6.32009,58.15516],[-6.16078,58.15226],[-6.15529,58.20874],[-5.985,58.21019],[-5.9905,58.26802],[-6.1498,58.26657],[-6.14156,58.55575],[-6.31734,58.55575],[-6.3091,58.49839],[-6.48763,58.49552],[-6.48763,58.44238],[-6.66066,58.4395],[-6.64693,58.38195],[-6.81172,58.38051],[-6.81172,58.32864],[-6.97927,58.32864],[-6.97103,58.26946],[-7.14131,58.26802],[-7.14038,58.03587],[-7.30206,58.0351],[-7.30303,57.97748],[-7.13795,57.97774],[-7.14135,57.92028],[-7.1399,57.86402],[-7.30206,57.86247],[-7.29848,57.74423],[-7.45092,57.7457],[-7.45504,57.68995],[-7.61861,57.6906],[-7.61983,57.7457],[-7.79012,57.74423],[-7.78738,57.68555],[-7.62223,57.68538],[-7.61738,57.57126],[-7.78829,57.571],[-7.78926,57.51211],[-7.7038,57.51159],[-7.69992,57.45469],[-7.53678,57.45521],[-7.53484,57.51263],[-7.45812,57.51315],[-7.45521,57.28242],[-7.61155,57.28452],[-7.61446,57.22727],[-7.45133,57.22569],[-7.45133,57.11039],[-7.61641,57.10881],[-7.60378,56.87924],[-7.76969,56.87882]],[[-1.71066,59.56263],[-1.54175,59.56222],[-1.54231,59.50372],[-1.71122,59.50414],[-1.71066,59.56263]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1906","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-25inch-hist","max_zoom":18,"name":"NLS - OS 25-inch (Scotland), 1892-1905","start_date":"1892","type":"tms","url":"https://geo.nls.uk/mapdata2/os/25_inch/scotland_1/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.21122,54.80186],[-5.06428,54.80265],[-5.05604,54.63052],[-4.31583,54.62972],[-4.31171,54.74483],[-3.85303,54.74641],[-3.85303,54.80344],[-3.55228,54.80344],[-3.55228,54.83746],[-3.46851,54.84063],[-3.46576,54.89832],[-3.38474,54.89911],[-3.38886,54.95592],[-3.09208,54.95395],[-3.03924,54.99233],[-3.02127,55.04939],[-2.95912,55.04633],[-2.92028,55.06663],[-2.78571,55.06865],[-2.78522,55.09144],[-2.73376,55.09228],[-2.73762,55.1512],[-2.76484,55.15107],[-2.70131,55.17225],[-2.66355,55.21928],[-2.64604,55.21889],[-2.62904,55.22339],[-2.63179,55.22878],[-2.62355,55.24463],[-2.61977,55.24547],[-2.6099,55.24542],[-2.60999,55.24865],[-2.64081,55.259],[-2.62479,55.26156],[-2.60452,55.28231],[-2.56932,55.29613],[-2.54795,55.31216],[-2.50911,55.32349],[-2.47804,55.34945],[-2.44211,55.35331],[-2.40521,55.34393],[-2.37268,55.34475],[-2.32218,55.36877],[-2.32412,55.39993],[-2.25761,55.42502],[-2.19855,55.42735],[-2.14843,55.47175],[-2.19443,55.4842],[-2.20405,55.52931],[-2.29606,55.63797],[-2.21778,55.63797],[-2.10593,55.74525],[-1.97169,55.74622],[-1.96975,55.9191],[-2.12017,55.92071],[-2.12429,55.97761],[-2.34402,55.97838],[-2.34402,56.03903],[-2.50469,56.04134],[-2.50057,56.10036],[-2.88235,56.09576],[-2.88235,56.17229],[-2.41268,56.16923],[-2.41817,56.2334],[-2.58572,56.23035],[-2.57198,56.34164],[-2.72579,56.3462],[-2.73128,56.43438],[-2.69283,56.43438],[-2.69283,56.48598],[-2.53078,56.49356],[-2.53078,56.57081],[-2.53029,56.60479],[-2.37324,56.60445],[-2.36844,56.73988],[-2.3293,56.73988],[-2.3293,56.78881],[-2.31453,56.78918],[-2.31488,56.7967],[-2.17137,56.7967],[-2.1704,56.97106],[-2.01017,56.96947],[-2.01017,57.08468],[-2.08177,57.08535],[-2.04881,57.126],[-2.04091,57.12637],[-2.03834,57.24111],[-1.87812,57.24216],[-1.87715,57.29782],[-1.98688,57.29834],[-1.90822,57.35601],[-1.8752,57.35601],[-1.87618,57.37695],[-1.81209,57.41201],[-1.71207,57.41201],[-1.70346,57.64414],[-1.8666,57.64518],[-1.86466,57.70334],[-3.12043,57.70647],[-3.1218,57.75047],[-3.44453,57.75266],[-3.44727,57.71381],[-3.51456,57.70941],[-3.51182,57.694],[-3.7645,57.69179],[-3.76725,57.6345],[-3.84238,57.62883],[-3.84383,57.59658],[-3.94143,57.59164],[-3.94046,57.65378],[-3.88947,57.653],[-3.88268,57.76764],[-3.72245,57.76609],[-3.71954,57.88192],[-3.91469,57.88534],[-3.91606,57.95462],[-3.74577,57.9539],[-3.74715,58.06884],[-3.58373,58.06957],[-3.58373,58.11167],[-3.45601,58.11385],[-3.45446,58.2285],[-3.43799,58.22832],[-3.42432,58.24277],[-3.41231,58.24386],[-3.37351,58.26951],[-3.30639,58.2862],[-3.12292,58.28594],[-3.1236,58.34437],[-2.95743,58.34473],[-2.95125,58.6422],[-2.88122,58.64292],[-2.8851,58.81128],[-2.71808,58.8143],[-2.71614,58.87157],[-2.55688,58.8776],[-2.55445,58.99235],[-2.55676,59.04838],[-2.39189,59.0486],[-2.3918,59.1107],[-2.47337,59.1107],[-2.55916,59.1783],[-2.56304,59.22106],[-2.39213,59.22405],[-2.39114,59.27401],[-2.36395,59.2745],[-2.36589,59.28542],[-2.39114,59.28492],[-2.39114,59.33795],[-2.22218,59.3382],[-2.22339,59.39596],[-2.37585,59.39658],[-2.38993,59.40264],[-2.40085,59.39621],[-2.56379,59.39526],[-2.56379,59.33858],[-2.73202,59.33753],[-2.73339,59.39526],[-3.07265,59.39312],[-3.07034,59.33548],[-3.07532,59.33556],[-3.07498,59.32926],[-3.06983,59.32891],[-3.0698,59.21962],[-3.23634,59.21663],[-3.23368,59.16065],[-3.40328,59.15889],[-3.39409,58.92793],[-3.56645,58.92593],[-3.56111,58.86799],[-3.39251,58.86993],[-3.38947,58.86987],[-3.38911,58.86849],[-3.39129,58.86862],[-3.38842,58.75431],[-3.22382,58.75557],[-3.21897,58.69129],[-3.46341,58.69058],[-3.45517,58.63415],[-3.78751,58.63415],[-3.78613,58.57692],[-3.90286,58.57334],[-3.90286,58.64773],[-4.06903,58.64916],[-4.06903,58.59124],[-4.73645,58.59338],[-4.73645,58.65059],[-5.07154,58.65202],[-5.06548,58.53259],[-5.2332,58.53161],[-5.22835,58.47199],[-5.24243,58.47199],[-5.2366,58.40897],[-5.22835,58.40948],[-5.22107,58.30059],[-5.56579,58.29599],[-5.55803,58.23726],[-5.41467,58.24013],[-5.41419,58.22678],[-5.38857,58.22722],[-5.38271,58.11986],[-5.51043,58.11914],[-5.5114,58.00621],[-5.67454,58.00416],[-5.67163,57.94494],[-5.67163,57.88872],[-5.83477,57.88562],[-5.82771,57.5989],[-6.03843,57.59864],[-6.03891,57.64596],[-6.19817,57.6457],[-6.20761,57.76001],[-6.53707,57.7544],[-6.53124,57.64024],[-6.70021,57.63608],[-6.68078,57.52363],[-6.85169,57.51529],[-6.83615,57.33858],[-6.67302,57.34382],[-6.67496,57.28509],[-6.50988,57.28509],[-6.49822,57.17576],[-6.35062,57.18208],[-6.3312,57.1252],[-6.17972,57.12309],[-6.17195,57.06823],[-6.45938,57.05978],[-6.45647,57.10938],[-6.66719,57.10622],[-6.67302,57.00271],[-6.50211,57.00482],[-6.48361,56.89175],[-6.32661,56.88941],[-6.31566,56.77993],[-6.21467,56.77567],[-6.21467,56.7235],[-6.68661,56.72243],[-6.6769,56.61144],[-6.84198,56.60717],[-6.84004,56.54833],[-7.15466,56.54619],[-7.14884,56.48726],[-6.99152,56.49048],[-6.98764,56.43253],[-6.68273,56.43146],[-6.6769,56.54726],[-6.5293,56.55047],[-6.52347,56.4379],[-6.36616,56.43683],[-6.36422,56.37665],[-6.52736,56.37127],[-6.51717,56.24284],[-6.48696,56.24742],[-6.48696,56.18939],[-6.30019,56.19856],[-6.30294,56.2581],[-5.90194,56.25658],[-5.89645,56.09605],[-6.02828,56.08839],[-6.03927,56.15575],[-6.38534,56.15422],[-6.36062,55.96099],[-6.2123,55.96406],[-6.20475,55.92023],[-6.51855,55.91292],[-6.50619,55.75018],[-6.67648,55.7409],[-6.66,55.62632],[-6.35513,55.62322],[-6.35787,55.5689],[-6.03927,55.57201],[-6.03103,55.62477],[-5.73989,55.63097],[-5.73715,55.45693],[-5.89645,55.46004],[-5.89645,55.27899],[-5.43502,55.28212],[-5.44051,55.4507],[-5.28671,55.45693],[-5.30868,55.40706],[-4.9736,55.40082],[-4.98458,55.20382],[-5.14938,55.20382],[-5.14114,55.03734],[-5.21529,55.03419],[-5.21122,54.80186]],[[-2.16466,60.16221],[-1.99303,60.16098],[-1.99469,60.10352],[-2.16631,60.10474],[-2.16466,60.16221]],[[-1.53607,59.85708],[-1.36536,59.85598],[-1.36685,59.79756],[-1.19063,59.79642],[-1.1862,59.96954],[-1.00787,59.96839],[-1.00412,60.11415],[-0.83608,60.11307],[-0.83457,60.17168],[-1.00743,60.17278],[-1.00522,60.25839],[-0.82997,60.25728],[-0.82698,60.37266],[-0.65075,60.37154],[-0.64772,60.48823],[-0.99849,60.49044],[-0.99703,60.54655],[-0.64253,60.54432],[-0.63949,60.66068],[-0.81481,60.66178],[-0.8133,60.71961],[-0.63833,60.71851],[-0.63547,60.82754],[-0.79757,60.82855],[-0.99414,60.82978],[-0.9955,60.77827],[-1.16703,60.77934],[-1.17004,60.66462],[-1.52226,60.66683],[-1.52379,60.60844],[-1.69757,60.60954],[-1.70213,60.43452],[-1.52606,60.43341],[-1.52752,60.37707],[-1.87511,60.37927],[-1.87814,60.26246],[-1.70196,60.26134],[-1.70491,60.14705],[-1.52866,60.14593],[-1.53607,59.85708]],[[-0.98477,60.89438],[-0.98603,60.83611],[-0.80784,60.83519],[-0.80657,60.89346],[-0.98477,60.89438]],[[-7.76969,56.87882],[-7.76145,56.76083],[-7.6009,56.76419],[-7.59725,56.81933],[-7.44799,56.82039],[-7.44893,56.87941],[-7.28414,56.87941],[-7.28139,57.04712],[-7.13033,57.0516],[-7.13307,57.5118],[-6.96828,57.51475],[-6.97652,57.68547],[-6.80623,57.69134],[-6.80898,57.8042],[-6.64968,57.80713],[-6.64418,57.86123],[-6.32009,57.86269],[-6.32009,58.15516],[-6.16078,58.15226],[-6.15529,58.20874],[-5.985,58.21019],[-5.9905,58.26802],[-6.1498,58.26657],[-6.14156,58.55575],[-6.31734,58.55575],[-6.3091,58.49839],[-6.48763,58.49552],[-6.48763,58.44238],[-6.66066,58.4395],[-6.64693,58.38195],[-6.81172,58.38051],[-6.81172,58.32864],[-6.97927,58.32864],[-6.97103,58.26946],[-7.14131,58.26802],[-7.14038,58.03587],[-7.30206,58.0351],[-7.30303,57.97748],[-7.13795,57.97774],[-7.14135,57.92028],[-7.1399,57.86402],[-7.30206,57.86247],[-7.29848,57.74423],[-7.45092,57.7457],[-7.45504,57.68995],[-7.61861,57.6906],[-7.61983,57.7457],[-7.79012,57.74423],[-7.78738,57.68555],[-7.62223,57.68538],[-7.61738,57.57126],[-7.78829,57.571],[-7.78926,57.51211],[-7.7038,57.51159],[-7.69992,57.45469],[-7.53678,57.45521],[-7.53484,57.51263],[-7.45812,57.51315],[-7.45521,57.28242],[-7.61155,57.28452],[-7.61446,57.22727],[-7.45133,57.22569],[-7.45133,57.11039],[-7.61641,57.10881],[-7.60378,56.87924],[-7.76969,56.87882]],[[-1.71066,59.56263],[-1.54175,59.56222],[-1.54231,59.50372],[-1.71122,59.50414],[-1.71066,59.56263]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"GB","end_date":"1883","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS-OS-6inch-Scotland-hist","max_zoom":16,"min_zoom":5,"name":"NLS - OS 6-inch Scotland 1842-82","start_date":"1842","type":"tms","url":"https://geo.nls.uk/mapdata3/os/6inchfirst/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.14039,57.11219],[-2.14065,57.17894],[-2.04502,57.17901],[-2.04494,57.11226],[-2.14039,57.11219]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Aberdeen 1866-1867","url":"https://maps.nls.uk/townplans/aberdeen.html"},"country_code":"GB","description":"Detailed town plan of Aberdeen 1866-1867, courtesy of National Library of Scotland.","end_date":"1868","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_aberdeen1866_1867","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Aberdeen 1866-1867 (NLS)","start_date":"1866","type":"tms","url":"https://geo.nls.uk/maps/towns/aberdeen/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.99292,55.86408],[-3.99339,55.87329],[-3.96911,55.87368],[-3.96864,55.86447],[-3.99292,55.86408]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Airdrie 1858","url":"https://maps.nls.uk/townplans/airdrie.html"},"country_code":"GB","description":"Detailed town plan of Airdrie 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_airdrie1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Airdrie 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/airdrie/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.58974,55.97537],[-4.59104,55.99493],[-4.55985,55.99558],[-4.55856,55.97602],[-4.58974,55.97537]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Alexandria 1859","url":"https://maps.nls.uk/townplans/alexandria.html"},"country_code":"GB","description":"Detailed town plan of Alexandria 1859, courtesy of National Library of Scotland.","end_date":"1860","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_alexandria1859","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Alexandria 1859 (NLS)","start_date":"1859","type":"tms","url":"https://geo.nls.uk/maps/towns/alexandria/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.81166,56.09864],[-3.81274,56.1217],[-3.78046,56.12217],[-3.7794,56.09911],[-3.81166,56.09864]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Alloa 1861-1862","url":"https://maps.nls.uk/townplans/alloa.html"},"country_code":"GB","description":"Detailed town plan of Alloa 1861-1862, courtesy of National Library of Scotland.","end_date":"1863","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_alloa1861_1862","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Alloa 1861-1862 (NLS)","start_date":"1861","type":"tms","url":"https://geo.nls.uk/maps/towns/alloa/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.27921,54.98252],[-3.2796,54.99466],[-3.24866,54.99498],[-3.24829,54.98284],[-3.27921,54.98252]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Annan 1859","url":"https://maps.nls.uk/townplans/annan.html"},"country_code":"GB","description":"Detailed town plan of Annan 1859, courtesy of National Library of Scotland.","end_date":"1860","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_annan1859","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Annan 1859 (NLS)","start_date":"1859","type":"tms","url":"https://geo.nls.uk/maps/towns/annan/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.60716,56.53995],[-2.60765,56.57022],[-2.56499,56.57043],[-2.56454,56.54015],[-2.60716,56.53995]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Arbroath 1858","url":"https://maps.nls.uk/townplans/arbroath.html"},"country_code":"GB","description":"Detailed town plan of Arbroath 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_arbroath1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Arbroath 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/arbroath/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.66768,55.43749],[-4.6708,55.48364],[-4.6061,55.48503],[-4.60305,55.43888],[-4.66768,55.43749]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Ayr 1855","url":"https://maps.nls.uk/townplans/ayr.html"},"country_code":"GB","description":"Detailed town plan of Ayr 1855, courtesy of National Library of Scotland.","end_date":"1856","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_ayr1855","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Ayr 1855 (NLS)","start_date":"1855","type":"tms","url":"https://geo.nls.uk/maps/towns/ayr/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.02117,55.75578],[-2.02119,55.77904],[-1.98977,55.77904],[-1.98978,55.75578],[-2.02117,55.75578]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Berwick-upon-Tweed 1852","url":"https://maps.nls.uk/townplans/berwick.html"},"country_code":"GB","description":"Detailed town plan of Berwick-upon-Tweed 1852, courtesy of National Library of Scotland.","end_date":"1853","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_berwick1852","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Berwick-upon-Tweed 1852 (NLS)","start_date":"1852","type":"tms","url":"https://geo.nls.uk/maps/towns/berwick/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.6748,56.71457],[-2.67521,56.7374],[-2.6432,56.73757],[-2.64281,56.71474],[-2.6748,56.71457]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Brechin 1862","url":"https://maps.nls.uk/townplans/brechin.html"},"country_code":"GB","description":"Detailed town plan of Brechin 1862, courtesy of National Library of Scotland.","end_date":"1863","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_brechin1862","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Brechin 1862 (NLS)","start_date":"1862","type":"tms","url":"https://geo.nls.uk/maps/towns/brechin/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.2488,56.0424],[-3.24952,56.06473],[-3.21831,56.06504],[-3.2176,56.04271],[-3.2488,56.0424]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Burntisland 1894","url":"https://maps.nls.uk/townplans/burntisland.html"},"country_code":"GB","description":"Detailed town plan of Burntisland 1894, courtesy of National Library of Scotland.","end_date":"1895","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_burntisland1894","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Burntisland 1894 (NLS)","start_date":"1894","type":"tms","url":"https://geo.nls.uk/maps/towns/burntisland/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.62345,55.40256],[-5.62631,55.43375],[-5.58277,55.43504],[-5.57994,55.40384],[-5.62345,55.40256]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Campbelton 1865","url":"https://maps.nls.uk/townplans/campbelton.html"},"country_code":"GB","description":"Detailed town plan of Campbelton 1865, courtesy of National Library of Scotland.","end_date":"1866","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_campbeltown1865","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Campbelton 1865 (NLS)","start_date":"1865","type":"tms","url":"https://geo.nls.uk/maps/towns/campbeltown/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.05036,55.84649],[-4.05157,55.86947],[-4.01954,55.87],[-4.01835,55.84702],[-4.05036,55.84649]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Coatbridge 1858","url":"https://maps.nls.uk/townplans/coatbridge.html"},"country_code":"GB","description":"Detailed town plan of Coatbridge 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_coatbridge1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Coatbridge 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/coatbridge/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.04766,56.28653],[-3.04891,56.33219],[-2.98499,56.33272],[-2.98381,56.28706],[-3.04766,56.28653]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Cupar 1854","url":"https://maps.nls.uk/townplans/cupar_1.html"},"country_code":"GB","description":"Detailed town plan of Cupar 1854, courtesy of National Library of Scotland.","end_date":"1855","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"OS-Town_Plans-Cupar-1854","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Cupar 1854 (NLS)","start_date":"1854","type":"tms","url":"https://geo.nls.uk/maps/towns/cupar1854/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.03277,56.30244],[-3.03338,56.3252],[-3.00147,56.32546],[-3.00087,56.3027],[-3.03277,56.30244]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Cupar 1893-1894","url":"https://maps.nls.uk/townplans/cupar_2.html"},"country_code":"GB","description":"Detailed town plan of Cupar 1893-1894, courtesy of National Library of Scotland.","end_date":"1895","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_cupar1893_1894","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Cupar 1893-1894 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/cupar1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.07862,55.889],[-3.07904,55.9039],[-3.05836,55.90408],[-3.05795,55.88918],[-3.07862,55.889]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dalkeith 1852","url":"https://maps.nls.uk/townplans/dalkeith_1.html"},"country_code":"GB","description":"Detailed town plan of Dalkeith 1852, courtesy of National Library of Scotland.","end_date":"1853","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dalkeith1852","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dalkeith 1852 (NLS)","start_date":"1852","type":"tms","url":"https://geo.nls.uk/maps/towns/dalkeith1852/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.086,55.87936],[-3.08659,55.90026],[-3.04365,55.90063],[-3.04309,55.87973],[-3.086,55.87936]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dalkeith 1893","url":"https://maps.nls.uk/townplans/dalkeith_2.html"},"country_code":"GB","description":"Detailed town plan of Dalkeith 1893, courtesy of National Library of Scotland.","end_date":"1894","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dalkeith1893","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dalkeith 1893 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/dalkeith1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.5856,55.92743],[-4.58714,55.95056],[-4.55463,55.95124],[-4.55311,55.9281],[-4.5856,55.92743]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dumbarton 1859","url":"https://maps.nls.uk/townplans/dumbarton.html"},"country_code":"GB","description":"Detailed town plan of Dumbarton 1859, courtesy of National Library of Scotland.","end_date":"1860","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dumbarton1859","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dumbarton 1859 (NLS)","start_date":"1859","type":"tms","url":"https://geo.nls.uk/maps/towns/dumbarton/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.63928,55.03716],[-3.64116,55.08319],[-3.57823,55.08402],[-3.57642,55.03799],[-3.63928,55.03716]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dumfries 1850","url":"https://maps.nls.uk/townplans/dumfries_1.html"},"country_code":"GB","description":"Detailed town plan of Dumfries 1850, courtesy of National Library of Scotland.","end_date":"1851","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dumfries1850","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dumfries 1850 (NLS)","start_date":"1850","type":"tms","url":"https://geo.nls.uk/maps/towns/dumfries1850/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.63179,55.0415],[-3.63331,55.07873],[-3.58259,55.0794],[-3.58112,55.04217],[-3.63179,55.0415]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dumfries 1893","url":"https://maps.nls.uk/townplans/dumfries_2.html"},"country_code":"GB","description":"Detailed town plan of Dumfries 1893, courtesy of National Library of Scotland.","end_date":"1894","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dumfries1893","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dumfries 1893 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/dumfries1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.02584,56.44879],[-3.02657,56.47567],[-2.9471,56.4763],[-2.94643,56.44942],[-3.02584,56.44879]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dundee 1857-1858","url":"https://maps.nls.uk/townplans/dundee_1.html"},"country_code":"GB","description":"Detailed town plan of Dundee 1857-1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dundee1857_1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dundee 1857-1858 (NLS)","start_date":"1857","type":"tms","url":"https://geo.nls.uk/maps/towns/dundee1857/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.034,56.4485],[-3.03497,56.48435],[-2.92353,56.48523],[-2.92266,56.44937],[-3.034,56.4485]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dundee 1870-1872","url":"https://maps.nls.uk/townplans/dundee_2.html"},"country_code":"GB","description":"Detailed town plan of Dundee 1870-1872, courtesy of National Library of Scotland.","end_date":"1873","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dundee1870_1872","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dundee 1870-1872 (NLS)","start_date":"1870","type":"tms","url":"https://geo.nls.uk/maps/towns/dundee1870/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.49045,56.0606],[-3.49116,56.07899],[-3.44374,56.07955],[-3.44305,56.06116],[-3.49045,56.0606]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dunfermline 1854","url":"https://maps.nls.uk/townplans/dunfermline_1.html"},"country_code":"GB","description":"Detailed town plan of Dunfermline 1854, courtesy of National Library of Scotland.","end_date":"1855","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dunfermline1854","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dunfermline 1854 (NLS)","start_date":"1854","type":"tms","url":"https://geo.nls.uk/maps/towns/dunfermline1854/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.48284,56.05198],[-3.48399,56.08199],[-3.4421,56.08249],[-3.44098,56.05248],[-3.48284,56.05198]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Dunfermline 1894","url":"https://maps.nls.uk/townplans/dunfermline_2.html"},"country_code":"GB","description":"Detailed town plan of Dunfermline 1894, courtesy of National Library of Scotland.","end_date":"1895","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_dunfermline1894","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Dunfermline 1894 (NLS)","start_date":"1894","type":"tms","url":"https://geo.nls.uk/maps/towns/dunfermline1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.2361,55.92137],[-3.23836,55.99217],[-3.14197,55.9931],[-3.13989,55.92229],[-3.2361,55.92137]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Edinburgh 1849-1851","url":"https://maps.nls.uk/townplans/edinburgh1056_1.html"},"country_code":"GB","description":"Detailed town plan of Edinburgh 1849-1851, courtesy of National Library of Scotland.","end_date":"1852","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_edinburgh1849_1851","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Edinburgh 1849-1851 (NLS)","start_date":"1849","type":"tms","url":"https://geo.nls.uk/maps/towns/edinburgh1849/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.2474,55.92117],[-3.2499,55.99851],[-3.13061,55.99966],[-3.12836,55.92231],[-3.2474,55.92117]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Edinburgh 1876-1877","url":"https://maps.nls.uk/townplans/edinburgh1056_2.html"},"country_code":"GB","description":"Detailed town plan of Edinburgh 1876-1877, courtesy of National Library of Scotland.","end_date":"1878","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_edinburgh1876_1877","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Edinburgh 1876-1877 (NLS)","start_date":"1876","type":"tms","url":"https://geo.nls.uk/maps/towns/edinburgh1876/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.26111,55.89555],[-3.2645,55.99979],[-3.11971,56.00119],[-3.1167,55.89695],[-3.26111,55.89555]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Edinburgh 1893-1894","url":"https://maps.nls.uk/townplans/edinburgh500.html"},"country_code":"GB","description":"Detailed town plan of Edinburgh 1893-1894, courtesy of National Library of Scotland.","end_date":"1895","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_edinburgh1893_1894","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Edinburgh 1893-1894 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/edinburgh1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.23605,55.89151],[-3.30465,55.89572],[-3.31495,55.92718],[-3.32216,55.95026],[-3.32045,55.96313],[-3.2983,55.98571],[-3.23944,55.99576],[-3.17402,55.99819],[-3.10844,55.986],[-3.07308,55.95391],[-2.99669,55.96237],[-2.9682,55.93391],[-2.96476,55.8677],[-2.98571,55.80389],[-3.04836,55.81498],[-3.29453,55.81556],[-3.19342,55.89091],[-3.23605,55.89151]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Edinburgh 1940s-1960s","url":"https://maps.nls.uk/os/national-grid/index.html"},"country_code":"GB","description":"Detailed town plan of Edinburgh 1940s-1960s, courtesy of National Library of Scotland.","end_date":"1960","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_edinburgh1940_1960","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Edinburgh 1940s-1960s (NLS)","start_date":"1940","type":"tms","url":"https://geo.nls.uk/mapdata3/os/edinburgh_1250_out/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.33665,57.62879],[-3.33777,57.65907],[-3.29381,57.65953],[-3.29273,57.62925],[-3.33665,57.62879]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Elgin 1868","url":"https://maps.nls.uk/townplans/elgin.html"},"country_code":"GB","description":"Detailed town plan of Elgin 1868, courtesy of National Library of Scotland.","end_date":"1869","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_elgin1868","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Elgin 1868 (NLS)","start_date":"1868","type":"tms","url":"https://geo.nls.uk/maps/towns/elgin/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.79587,55.99343],[-3.79698,56.0172],[-3.76648,56.01764],[-3.7654,55.99387],[-3.79587,55.99343]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Falkirk 1858-1859","url":"https://maps.nls.uk/townplans/falkirk.html"},"country_code":"GB","description":"Detailed town plan of Falkirk 1858-1859, courtesy of National Library of Scotland.","end_date":"1860","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_falkirk1858_1859","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Falkirk 1858-1859 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/falkirk/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.90326,56.62895],[-2.90379,56.65095],[-2.87228,56.65117],[-2.87178,56.62917],[-2.90326,56.62895]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Forfar 1860-1861","url":"https://maps.nls.uk/townplans/forfar.html"},"country_code":"GB","description":"Detailed town plan of Forfar 1860-1861, courtesy of National Library of Scotland.","end_date":"1862","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_forfar1860_1861","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Forfar 1860-1861 (NLS)","start_date":"1860","type":"tms","url":"https://geo.nls.uk/maps/towns/forfar/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.63517,57.58888],[-3.63648,57.618],[-3.57751,57.61875],[-3.57625,57.58963],[-3.63517,57.58888]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Forres 1868","url":"https://maps.nls.uk/townplans/forres.html"},"country_code":"GB","description":"Detailed town plan of Forres 1868, courtesy of National Library of Scotland.","end_date":"1869","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_forres1868","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Forres 1868 (NLS)","start_date":"1868","type":"tms","url":"https://geo.nls.uk/maps/towns/forres/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.82919,55.59586],[-2.82981,55.62554],[-2.78895,55.62581],[-2.78836,55.59613],[-2.82919,55.59586]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Galashiels 1858","url":"https://maps.nls.uk/townplans/galashiels.html"},"country_code":"GB","description":"Detailed town plan of Galashiels 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_galashiels1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Galashiels 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/galashiels/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.87424,55.2268],[-4.87588,55.24946],[-4.84447,55.2502],[-4.84286,55.22753],[-4.87424,55.2268]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Girvan 1857","url":"https://maps.nls.uk/townplans/girvan.html"},"country_code":"GB","description":"Detailed town plan of Girvan 1857, courtesy of National Library of Scotland.","end_date":"1858","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_girvan1857","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Girvan 1857 (NLS)","start_date":"1857","type":"tms","url":"https://geo.nls.uk/maps/towns/girvan/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.31575,55.82072],[-4.31968,55.88668],[-4.17713,55.88928],[-4.17344,55.82332],[-4.31575,55.82072]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Glasgow 1857-1858","url":"https://maps.nls.uk/townplans/glasgow_1.html"},"country_code":"GB","description":"Detailed town plan of Glasgow 1857-1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_glasgow1857_1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Glasgow 1857-1858 (NLS)","start_date":"1857","type":"tms","url":"https://geo.nls.uk/maps/towns/glasgow1857/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.34654,55.81456],[-4.35158,55.89806],[-4.17789,55.90126],[-4.17322,55.81775],[-4.34654,55.81456]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Glasgow 1892-1894","url":"https://maps.nls.uk/townplans/glasgow_2.html"},"country_code":"GB","description":"Detailed town plan of Glasgow 1892-1894, courtesy of National Library of Scotland.","end_date":"1895","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_glasgow1892_1894","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Glasgow 1892-1894 (NLS)","start_date":"1892","type":"tms","url":"https://geo.nls.uk/maps/towns/glasgow1894/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.78109,55.92618],[-4.78383,55.96437],[-4.73023,55.96557],[-4.72754,55.92738],[-4.78109,55.92618]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Greenock 1857","url":"https://maps.nls.uk/townplans/greenock.html"},"country_code":"GB","description":"Detailed town plan of Greenock 1857, courtesy of National Library of Scotland.","end_date":"1858","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_greenock1857","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Greenock 1857 (NLS)","start_date":"1857","type":"tms","url":"https://geo.nls.uk/maps/towns/greenock/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.78856,55.94519],[-2.78888,55.96124],[-2.76674,55.96138],[-2.76643,55.94533],[-2.78856,55.94519]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Haddington 1853","url":"https://maps.nls.uk/townplans/haddington_1.html"},"country_code":"GB","description":"Detailed town plan of Haddington 1853, courtesy of National Library of Scotland.","end_date":"1854","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_haddington1853","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Haddington 1853 (NLS)","start_date":"1853","type":"tms","url":"https://geo.nls.uk/maps/towns/haddington1853/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.80152,55.93429],[-2.80215,55.96447],[-2.76038,55.96474],[-2.75979,55.93455],[-2.80152,55.93429]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Haddington 1893","url":"https://maps.nls.uk/townplans/haddington_2.html"},"country_code":"GB","description":"Detailed town plan of Haddington 1893, courtesy of National Library of Scotland.","end_date":"1894","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_haddington1893","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Haddington 1893 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/haddington1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.06722,55.74877],[-4.06924,55.78699],[-4.01679,55.78786],[-4.01482,55.74964],[-4.06722,55.74877]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Hamilton 1858","url":"https://maps.nls.uk/townplans/hamilton.html"},"country_code":"GB","description":"Detailed town plan of Hamilton 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_hamilton1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Hamilton 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/hamilton/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.8013,55.41025],[-2.80176,55.43305],[-2.77088,55.43324],[-2.77044,55.41045],[-2.8013,55.41025]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Hawick 1857-1858","url":"https://maps.nls.uk/townplans/hawick.html"},"country_code":"GB","description":"Detailed town plan of Hawick 1857-1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_hawick1857_1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Hawick 1857-1858 (NLS)","start_date":"1857","type":"tms","url":"https://geo.nls.uk/maps/towns/hawick/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.25482,57.45916],[-4.25752,57.50302],[-4.19714,57.50409],[-4.1945,57.46023],[-4.25482,57.45916]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Inverness 1867-1868","url":"https://maps.nls.uk/townplans/inverness.html"},"country_code":"GB","description":"Detailed town plan of Inverness 1867-1868, courtesy of National Library of Scotland.","end_date":"1869","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_inverness1867_1868","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Inverness 1867-1868 (NLS)","start_date":"1867","type":"tms","url":"https://geo.nls.uk/maps/towns/inverness/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.6754,55.6065],[-4.67643,55.62159],[-4.65538,55.62205],[-4.65436,55.60696],[-4.6754,55.6065]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Irvine 1859","url":"https://maps.nls.uk/townplans/irvine.html"},"country_code":"GB","description":"Detailed town plan of Irvine 1859, courtesy of National Library of Scotland.","end_date":"1860","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_irvine1859","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Irvine 1859 (NLS)","start_date":"1859","type":"tms","url":"https://geo.nls.uk/maps/towns/irvine/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.56333,55.47105],[-2.56356,55.48716],[-2.54168,55.48725],[-2.54146,55.47115],[-2.56333,55.47105]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Jedburgh 1858","url":"https://maps.nls.uk/townplans/jedburgh.html"},"country_code":"GB","description":"Detailed town plan of Jedburgh 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_jedburgh1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Jedburgh 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/jedburgh/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.44925,55.58391],[-2.4495,55.60596],[-2.41902,55.60607],[-2.41879,55.58402],[-2.44925,55.58391]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Kelso 1857","url":"https://maps.nls.uk/townplans/kelso.html"},"country_code":"GB","description":"Detailed town plan of Kelso 1857, courtesy of National Library of Scotland.","end_date":"1858","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_kelso1857","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Kelso 1857 (NLS)","start_date":"1857","type":"tms","url":"https://geo.nls.uk/maps/towns/kelso/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.51747,55.58951],[-4.51943,55.62017],[-4.47676,55.62104],[-4.47482,55.59038],[-4.51747,55.58951]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Kilmarnock 1857-1859","url":"https://maps.nls.uk/townplans/kilmarnock.html"},"country_code":"GB","description":"Detailed town plan of Kilmarnock 1857-1859, courtesy of National Library of Scotland.","end_date":"1860","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_kilmarnock1857_1859","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Kilmarnock 1857-1859 (NLS)","start_date":"1857","type":"tms","url":"https://geo.nls.uk/maps/towns/kilmarnock/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.17455,56.09519],[-3.17555,56.1279],[-3.12991,56.12833],[-3.12896,56.09561],[-3.17455,56.09519]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Kirkcaldy 1855","url":"https://maps.nls.uk/townplans/kirkcaldy_1.html"},"country_code":"GB","description":"Detailed town plan of Kirkcaldy 1855, courtesy of National Library of Scotland.","end_date":"1856","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_kirkcaldy1855","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Kirkcaldy 1855 (NLS)","start_date":"1855","type":"tms","url":"https://geo.nls.uk/maps/towns/kirkcaldy1855/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.1746,56.09513],[-3.1756,56.12794],[-3.1299,56.12837],[-3.12893,56.09556],[-3.1746,56.09513]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Kirkcaldy 1894","url":"https://maps.nls.uk/townplans/kirkcaldy_2.html"},"country_code":"GB","description":"Detailed town plan of Kirkcaldy 1894, courtesy of National Library of Scotland.","end_date":"1895","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_kirkcaldy1894","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Kirkcaldy 1894 (NLS)","start_date":"1894","type":"tms","url":"https://geo.nls.uk/maps/towns/kirkcaldy1894/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.06154,54.82586],[-4.06231,54.84086],[-4.04202,54.8412],[-4.04126,54.82621],[-4.06154,54.82586]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Kirkcudbright 1850","url":"https://maps.nls.uk/townplans/kirkcudbright_1.html"},"country_code":"GB","description":"Detailed town plan of Kirkcudbright 1850, courtesy of National Library of Scotland.","end_date":"1851","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_kirkcudbright1850","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Kirkcudbright 1850 (NLS)","start_date":"1850","type":"tms","url":"https://geo.nls.uk/maps/towns/kirkcudbright1850/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.06002,54.8272],[-4.06079,54.84234],[-4.04025,54.84269],[-4.03949,54.82755],[-4.06002,54.8272]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Kirkcudbright 1893","url":"https://maps.nls.uk/townplans/kirkcudbright_2.html"},"country_code":"GB","description":"Detailed town plan of Kirkcudbright 1893, courtesy of National Library of Scotland.","end_date":"1894","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_kirkcudbright1893","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Kirkcudbright 1893 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/kirkcudbright1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.16664,55.93124],[-4.16748,55.94631],[-4.14637,55.94668],[-4.14554,55.93161],[-4.16664,55.93124]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Kirkintilloch 1859","url":"https://maps.nls.uk/townplans/kirkintilloch.html"},"country_code":"GB","description":"Detailed town plan of Kirkintilloch 1859, courtesy of National Library of Scotland.","end_date":"1860","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_kirkintilloch1859","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Kirkintilloch 1859 (NLS)","start_date":"1859","type":"tms","url":"https://geo.nls.uk/maps/towns/kirkintilloch/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.01256,56.65896],[-3.01303,56.67645],[-2.98816,56.67665],[-2.9877,56.65916],[-3.01256,56.65896]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Kirriemuir 1861","url":"https://maps.nls.uk/townplans/kirriemuir.html"},"country_code":"GB","description":"Detailed town plan of Kirriemuir 1861, courtesy of National Library of Scotland.","end_date":"1862","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_kirriemuir1861","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Kirriemuir 1861 (NLS)","start_date":"1861","type":"tms","url":"https://geo.nls.uk/maps/towns/kirriemuir/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.78643,55.66309],[-3.78711,55.67801],[-3.76633,55.67831],[-3.76566,55.66339],[-3.78643,55.66309]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Lanark 1858","url":"https://maps.nls.uk/townplans/lanark.html"},"country_code":"GB","description":"Detailed town plan of Lanark 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_lanark1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Lanark 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/lanark/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.61908,55.9555],[-3.62033,55.98539],[-3.57838,55.98593],[-3.57717,55.95604],[-3.61908,55.9555]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Linlithgow 1856","url":"https://maps.nls.uk/townplans/linlithgow.html"},"country_code":"GB","description":"Detailed town plan of Linlithgow 1856, courtesy of National Library of Scotland.","end_date":"1857","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_linlithgow1856","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Linlithgow 1856 (NLS)","start_date":"1856","type":"tms","url":"https://geo.nls.uk/maps/towns/linlithgow/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.69086,55.3434],[-4.69189,55.3585],[-4.6709,55.35896],[-4.66988,55.34386],[-4.69086,55.3434]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Mayole 1856-1857","url":"https://maps.nls.uk/townplans/maybole.html"},"country_code":"GB","description":"Detailed town plan of Mayole 1856-1857, courtesy of National Library of Scotland.","end_date":"1858","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_maybole1856_1857","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Mayole 1856-1857 (NLS)","start_date":"1856","type":"tms","url":"https://geo.nls.uk/maps/towns/maybole/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.48593,56.69645],[-2.48623,56.71919],[-2.45405,56.71931],[-2.45378,56.69657],[-2.48593,56.69645]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Montrose 1861-1862","url":"https://maps.nls.uk/townplans/montrose.html"},"country_code":"GB","description":"Detailed town plan of Montrose 1861-1862, courtesy of National Library of Scotland.","end_date":"1863","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_montrose1861_1862","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Montrose 1861-1862 (NLS)","start_date":"1861","type":"tms","url":"https://geo.nls.uk/maps/towns/montrose/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.07889,55.93372],[-3.07954,55.9573],[-3.03241,55.9577],[-3.03178,55.93412],[-3.07889,55.93372]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Musselburgh 1853","url":"https://maps.nls.uk/townplans/musselburgh_1.html"},"country_code":"GB","description":"Detailed town plan of Musselburgh 1853, courtesy of National Library of Scotland.","end_date":"1854","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_musselburgh1853","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Musselburgh 1853 (NLS)","start_date":"1853","type":"tms","url":"https://geo.nls.uk/maps/towns/musselburgh1853/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.07018,55.92694],[-3.07079,55.94918],[-3.03988,55.94944],[-3.03929,55.92721],[-3.07018,55.92694]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Musselburgh 1893","url":"https://maps.nls.uk/townplans/musselburgh_2.html"},"country_code":"GB","description":"Detailed town plan of Musselburgh 1893, courtesy of National Library of Scotland.","end_date":"1894","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_musselburgh1893","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Musselburgh 1893 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/musselburgh1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.88434,57.57899],[-3.8851,57.59368],[-3.85931,57.59406],[-3.85856,57.57937],[-3.88434,57.57899]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Nairn 1867-1868","url":"https://maps.nls.uk/townplans/nairn.html"},"country_code":"GB","description":"Detailed town plan of Nairn 1867-1868, courtesy of National Library of Scotland.","end_date":"1869","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_nairn1867_1868","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Nairn 1867-1868 (NLS)","start_date":"1867","type":"tms","url":"https://geo.nls.uk/maps/towns/nairn/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.49548,56.3908],[-5.49837,56.42219],[-5.45384,56.42344],[-5.45099,56.39205],[-5.49548,56.3908]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Oban 1867-1868","url":"https://maps.nls.uk/townplans/oban.html"},"country_code":"GB","description":"Detailed town plan of Oban 1867-1868, courtesy of National Library of Scotland.","end_date":"1869","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_oban1867_1868","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Oban 1867-1868 (NLS)","start_date":"1867","type":"tms","url":"https://geo.nls.uk/maps/towns/oban/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.45145,55.85448],[-4.40368,55.85421],[-4.40371,55.83065],[-4.45145,55.83093],[-4.45145,55.85448]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Paisley 1858","url":"https://maps.nls.uk/townplans/paisley.html"},"country_code":"GB","description":"Detailed town plan of Paisley 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_paisley1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Paisley 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/paisley/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.20921,55.63636],[-3.2099,55.65874],[-3.17896,55.65904],[-3.17829,55.63666],[-3.20921,55.63636]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Peebles 1856","url":"https://maps.nls.uk/townplans/peebles.html"},"country_code":"GB","description":"Detailed town plan of Peebles 1856, courtesy of National Library of Scotland.","end_date":"1857","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_peebles1856","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Peebles 1856 (NLS)","start_date":"1856","type":"tms","url":"https://geo.nls.uk/maps/towns/peebles/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.45302,56.37794],[-3.45417,56.4079],[-3.41188,56.40839],[-3.41077,56.37843],[-3.45302,56.37794]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Perth 1860","url":"https://maps.nls.uk/townplans/perth.html"},"country_code":"GB","description":"Detailed town plan of Perth 1860, courtesy of National Library of Scotland.","end_date":"1861","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_perth1860","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Perth 1860 (NLS)","start_date":"1860","type":"tms","url":"https://geo.nls.uk/maps/towns/perth/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-1.80514,57.48047],[-1.80494,57.51755],[-1.75135,57.51746],[-1.75161,57.48038],[-1.80514,57.48047]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Peterhead 1868","url":"https://maps.nls.uk/townplans/peterhead"},"country_code":"GB","description":"Detailed town plan of Peterhead 1868, courtesy of National Library of Scotland.","end_date":"1869","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_peterhead1868","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Peterhead 1868 (NLS)","start_date":"1868","type":"tms","url":"https://geo.nls.uk/maps/towns/peterhead/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.70063,55.91996],[-4.70222,55.94277],[-4.67085,55.94345],[-4.66928,55.92064],[-4.70063,55.91996]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Port Glasgow 1856-1857","url":"https://maps.nls.uk/townplans/port-glasgow.html"},"country_code":"GB","description":"Detailed town plan of Port Glasgow 1856-1857, courtesy of National Library of Scotland.","end_date":"1858","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_portglasgow1856_1857","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Port Glasgow 1856-1857 (NLS)","start_date":"1856","type":"tms","url":"https://geo.nls.uk/maps/towns/portglasgow/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.12438,55.93847],[-3.12502,55.96069],[-3.09395,55.96097],[-3.09332,55.93875],[-3.12438,55.93847]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Portobello 1893-1894","url":"https://maps.nls.uk/townplans/portobello.html"},"country_code":"GB","description":"Detailed town plan of Portobello 1893-1894, courtesy of National Library of Scotland.","end_date":"1895","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_portobello1893_1894","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Portobello 1893-1894 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/portobello/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.0645,55.82864],[-5.0657,55.84386],[-5.04413,55.8444],[-5.04294,55.82918],[-5.0645,55.82864]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Rothesay 1862-1863","url":"https://maps.nls.uk/townplans/rothesay.html"},"country_code":"GB","description":"Detailed town plan of Rothesay 1862-1863, courtesy of National Library of Scotland.","end_date":"1864","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_rothesay1862_1863","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Rothesay 1862-1863 (NLS)","start_date":"1862","type":"tms","url":"https://geo.nls.uk/maps/towns/rothesay/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.85999,55.535],[-2.86063,55.5646],[-2.82003,55.56488],[-2.81942,55.53527],[-2.85999,55.535]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Selkirk 1865","url":"https://maps.nls.uk/townplans/selkirk.html"},"country_code":"GB","description":"Detailed town plan of Selkirk 1865, courtesy of National Library of Scotland.","end_date":"1866","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_selkirk1865","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Selkirk 1865 (NLS)","start_date":"1865","type":"tms","url":"https://geo.nls.uk/maps/towns/selkirk/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.81343,56.32097],[-2.81406,56.35062],[-2.77244,56.35089],[-2.77184,56.32124],[-2.81343,56.32097]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - St Andrews 1854","url":"https://maps.nls.uk/townplans/st-andrews_1.html"},"country_code":"GB","description":"Detailed town plan of St Andrews 1854, courtesy of National Library of Scotland.","end_date":"1855","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_standrews1854","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, St Andrews 1854 (NLS)","start_date":"1854","type":"tms","url":"https://geo.nls.uk/maps/towns/standrews1854/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.81546,56.31862],[-2.8161,56.34877],[-2.77388,56.34904],[-2.77327,56.31889],[-2.81546,56.31862]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - St Andrews 1893","url":"https://maps.nls.uk/townplans/st-andrews_2.html"},"country_code":"GB","description":"Detailed town plan of St Andrews 1893, courtesy of National Library of Scotland.","end_date":"1894","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_standrews1893","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, St Andrews 1893 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/standrews1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.95768,56.10754],[-3.95883,56.13007],[-3.92711,56.13057],[-3.92598,56.10804],[-3.95768,56.10754]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Stirling 1858","url":"https://maps.nls.uk/townplans/stirling.html"},"country_code":"GB","description":"Detailed town plan of Stirling 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_stirling1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Stirling 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/stirling/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-2.22017,56.95651],[-2.22025,56.97129],[-2.19924,56.97133],[-2.19917,56.95655],[-2.22017,56.95651]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Stonehaven 1864","url":"https://maps.nls.uk/townplans/stonehaven.html"},"country_code":"GB","description":"Detailed town plan of Stonehaven 1864, courtesy of National Library of Scotland.","end_date":"1865","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_stonehaven1864","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Stonehaven 1864 (NLS)","start_date":"1864","type":"tms","url":"https://geo.nls.uk/maps/towns/stonehaven/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.0486,54.8823],[-5.0509,54.91268],[-5.00954,54.91371],[-5.00727,54.88333],[-5.0486,54.8823]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Stranraer 1847","url":"https://maps.nls.uk/townplans/stranraer_1.html"},"country_code":"GB","description":"Detailed town plan of Stranraer 1847, courtesy of National Library of Scotland.","end_date":"1848","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_stranraer1847","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Stranraer 1847 (NLS)","start_date":"1847","type":"tms","url":"https://geo.nls.uk/maps/towns/stranraer1847/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.04877,54.88229],[-5.05107,54.9127],[-5.00947,54.91374],[-5.0072,54.88332],[-5.04877,54.88229]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Stranraer 1863-1877","url":"https://maps.nls.uk/townplans/stranraer_1a.html"},"country_code":"GB","description":"Detailed town plan of Stranraer 1863-1877, courtesy of National Library of Scotland.","end_date":"1878","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_stranraer1867_1877","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Stranraer 1863-1877 (NLS)","start_date":"1863","type":"tms","url":"https://geo.nls.uk/maps/towns/stranraer1867/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.04418,54.89774],[-5.04511,54.91],[-5.01405,54.91077],[-5.01313,54.89851],[-5.04418,54.89774]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Stranraer 1893","url":"https://maps.nls.uk/townplans/stranraer_2.html"},"country_code":"GB","description":"Detailed town plan of Stranraer 1893, courtesy of National Library of Scotland.","end_date":"1894","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_stranraer1893","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Stranraer 1893 (NLS)","start_date":"1893","type":"tms","url":"https://geo.nls.uk/maps/towns/stranraer1893/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.06915,55.67242],[-4.06954,55.6799],[-4.05917,55.68007],[-4.05878,55.6726],[-4.06915,55.67242]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Strathaven 1858","url":"https://maps.nls.uk/townplans/strathaven.html"},"country_code":"GB","description":"Detailed town plan of Strathaven 1858, courtesy of National Library of Scotland.","end_date":"1859","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_strathaven1858","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Strathaven 1858 (NLS)","start_date":"1858","type":"tms","url":"https://geo.nls.uk/maps/towns/strathaven/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.1147,58.41345],[-3.11589,58.45101],[-3.0595,58.45149],[-3.05837,58.41393],[-3.1147,58.41345]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Wick 1872","url":"https://maps.nls.uk/townplans/wick.html"},"country_code":"GB","description":"Detailed town plan of Wick 1872, courtesy of National Library of Scotland.","end_date":"1873","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_wick1872","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Wick 1872 (NLS)","start_date":"1872","type":"tms","url":"https://geo.nls.uk/maps/towns/wick/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.45236,54.85723],[-4.45327,54.87233],[-4.43254,54.87274],[-4.43164,54.85765],[-4.45236,54.85723]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Wigtown 1848","url":"https://maps.nls.uk/townplans/wigtown_1.html"},"country_code":"GB","description":"Detailed town plan of Wigtown 1848, courtesy of National Library of Scotland.","end_date":"1849","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_wigtown1848","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Wigtown 1848 (NLS)","start_date":"1848","type":"tms","url":"https://geo.nls.uk/maps/towns/wigtown1848/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.45233,54.85721],[-4.45325,54.87237],[-4.43258,54.87278],[-4.43167,54.85763],[-4.45233,54.85721]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland - Wigtown 1894","url":"https://maps.nls.uk/townplans/wigtown_2.html"},"country_code":"GB","description":"Detailed town plan of Wigtown 1894, courtesy of National Library of Scotland.","end_date":"1895","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"NLS_wigtown1894","max_zoom":20,"min_zoom":13,"name":"OS Town Plans, Wigtown 1894 (NLS)","start_date":"1894","type":"tms","url":"https://geo.nls.uk/maps/towns/wigtown1894/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.45854,49.90441],[-6.3872,49.98411],[-6.22968,49.98962],[-6.21713,49.86801],[-6.45512,49.85918],[-6.45854,49.90441]],[[-1.44951,60.86341],[-0.71671,60.85451],[-0.73497,60.43598],[-0.69388,60.41682],[-0.72584,60.39427],[-0.73954,60.04847],[-0.92674,60.04619],[-0.93815,59.82662],[-1.45865,59.8312],[-1.44552,60.0536],[-1.46321,60.0536],[-1.46435,60.063],[-1.57165,60.06385],[-1.56936,60.179],[-1.64356,60.1807],[-1.64356,60.18922],[-1.82162,60.1895],[-1.82048,60.36155],[-1.8416,60.36973],[-1.82162,60.38328],[-1.81799,60.59343],[-1.45317,60.59343],[-1.44951,60.86341]],[[-4.90892,54.42421],[-4.2826,54.44299],[-4.25354,54.02977],[-4.87664,54.02218],[-4.90892,54.42421]],[[-5.86674,59.14446],[-5.776,59.14709],[-5.772,59.10141],[-5.86218,59.09906],[-5.86674,59.14446]],[[-1.70659,59.57036],[-1.55792,59.56935],[-1.55649,59.49657],[-1.70545,59.49758],[-1.70659,59.57036]],[[-7.68658,58.2941],[-7.53306,58.3007],[-7.52564,58.26469],[-7.67973,58.25779],[-7.68658,58.2941]],[[-4.53383,59.03599],[-4.48132,59.03716],[-4.47961,59.01866],[-4.53326,59.01807],[-4.53383,59.03599]],[[-8.67107,57.87699],[-8.46732,57.88973],[-8.44678,57.7907],[-8.65109,57.77792],[-8.67107,57.87699]],[[-5.23955,50.35306],[-5.79201,50.33849],[-5.76005,49.9317],[-4.65514,49.95815],[-4.67797,50.28601],[-4.24422,50.28017],[-4.24878,50.20425],[-3.38129,50.20425],[-3.42238,50.51882],[-3.11648,50.52463],[-3.12105,50.65796],[-2.67364,50.66195],[-2.59535,50.63943],[-2.5905,50.57284],[-2.47912,50.57335],[-2.47589,50.50667],[-2.39679,50.50564],[-2.40164,50.57233],[-1.04003,50.57182],[-1.03357,50.70593],[-0.5493,50.70388],[-0.54607,50.78866],[-0.09247,50.7856],[-0.08763,50.71819],[0.47897,50.71206],[0.48704,50.81825],[0.97615,50.80499],[0.99229,51.01263],[1.44912,51.00044],[1.47818,51.40904],[1.02296,51.42716],[1.03588,51.76409],[1.61054,51.7501],[1.64606,52.156],[1.72677,52.15402],[1.74937,52.44818],[1.78707,52.48116],[1.7591,52.52251],[1.79335,52.96027],[0.37981,52.99585],[0.38952,53.25112],[0.34786,53.25112],[0.32389,53.28219],[0.34615,53.65385],[0.12849,53.65755],[0.11658,53.66747],[0.13506,54.06557],[-0.06098,54.06591],[-0.04142,54.47094],[-0.56627,54.47718],[-0.55921,54.65651],[-1.16656,54.66235],[-1.16374,54.84261],[-1.33162,54.84391],[-1.32571,55.24708],[-1.52945,55.24871],[-1.52418,55.65401],[-1.76388,55.65401],[-1.77337,55.97191],[-2.16079,55.9683],[-2.15433,56.06214],[-2.45781,56.05853],[-2.41906,56.64172],[-2.09622,56.64172],[-2.0833,57.00213],[-1.92834,57.01268],[-1.9181,57.35909],[-1.75022,57.36257],[-1.76959,57.76086],[-3.69376,57.75742],[-3.70667,57.98064],[-3.5969,57.97721],[-3.60336,58.12073],[-3.02223,58.13096],[-3.02869,58.54108],[-2.8479,58.53097],[-2.86081,58.84305],[-2.67962,58.8415],[-2.68419,58.88517],[-2.63397,58.90522],[-2.67962,58.93351],[-2.68876,59.02292],[-2.36687,59.02292],[-2.37029,59.26529],[-2.3429,59.2822],[-2.37144,59.29969],[-2.37372,59.37071],[-2.3429,59.38582],[-2.37258,59.40035],[-2.37144,59.42591],[-3.07342,59.42301],[-3.07114,59.34336],[-3.1031,59.33114],[-3.07456,59.31367],[-3.07228,59.2326],[-3.38503,59.14842],[-3.37476,58.93528],[-3.56538,58.93233],[-3.55483,58.69759],[-5.28086,58.66677],[-5.25342,58.35141],[-5.50685,58.34379],[-5.47618,58.03236],[-5.8975,58.02124],[-5.8523,57.61718],[-6.13963,57.61372],[-6.15416,57.74232],[-6.29137,57.73801],[-6.33657,58.13988],[-6.11219,58.14669],[-6.14738,58.51063],[-6.29348,58.54162],[-6.84137,58.29773],[-7.00574,58.29293],[-7.10162,58.20644],[-7.25731,58.17931],[-7.25311,58.10049],[-7.40707,58.09056],[-7.39135,57.79114],[-7.79099,57.77332],[-7.76242,57.54442],[-7.6985,57.14532],[-7.79438,57.13045],[-7.71676,56.73686],[-7.01221,56.76544],[-6.97992,56.54539],[-7.06386,56.54539],[-7.04449,56.35626],[-6.50068,56.38129],[-6.44914,55.97936],[-6.56329,55.96915],[-6.53937,55.70301],[-6.55955,55.69073],[-6.53453,55.67617],[-6.52162,55.57044],[-5.89126,55.59234],[-5.85601,55.23207],[-5.22936,55.2516],[-5.18371,54.62541],[-3.6656,54.65184],[-3.64962,54.432],[-3.54004,54.43067],[-3.53091,54.02902],[-3.06977,54.03036],[-3.06757,53.82214],[-3.08049,53.77399],[-3.06192,53.74775],[-3.06112,53.6737],[-3.21447,53.67084],[-3.20577,53.42262],[-3.27996,53.35522],[-3.28967,53.36084],[-3.33275,53.36493],[-3.37613,53.35403],[-4.0889,53.34331],[-4.09455,53.4612],[-4.69741,53.44486],[-4.68828,53.33186],[-4.72024,53.28958],[-4.68371,53.24862],[-4.67687,53.15426],[-4.84808,53.14468],[-4.81783,52.74403],[-4.25458,52.75589],[-4.22888,52.25488],[-4.26076,52.25364],[-4.27246,52.24326],[-4.81363,52.23009],[-4.80792,52.11389],[-5.38891,52.09917],[-5.37179,51.91297],[-5.42087,51.91015],[-5.41402,51.84532],[-5.36836,51.84744],[-5.34668,51.55953],[-4.77368,51.57585],[-4.76569,51.48851],[-4.19154,51.49704],[-4.18698,51.43447],[-3.61512,51.44443],[-3.61055,51.37465],[-3.14941,51.37893],[-3.14941,51.29193],[-4.30387,51.27459],[-4.28612,51.05087],[-4.85433,51.03666],[-4.83722,50.72128],[-5.26183,50.70827],[-5.23955,50.35306]],[[-2.15027,60.17132],[-2.00302,60.16961],[-2.00131,60.0997],[-2.14855,60.10112],[-2.15027,60.17132]],[[-6.2086,59.11635],[-6.12299,59.11664],[-6.12185,59.0715],[-6.20974,59.0715],[-6.2086,59.11635]],[[-4.41596,59.0889],[-4.4212,59.07708],[-4.39719,59.07791],[-4.39134,59.08973],[-4.41596,59.0889]]],"type":"Polygon"},"properties":{"country_code":"GB","end_date":"1962","id":"OS-historic-25k-OSM_Limited","max_zoom":17,"min_zoom":6,"name":"OS 1:25k historic (OSM)","start_date":"1937","type":"tms","url":"https://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[-3.68466,55.23744],[-3.65106,54.42892],[-3.54463,54.43072],[-3.52815,54.02593],[-3.07016,54.03137],[-3.06123,53.6717],[-3.21298,53.67048],[-3.20371,53.35568],[-4.10424,53.34297],[-4.11042,53.46005],[-4.71124,53.44799],[-4.69339,53.15171],[-4.84307,53.1476],[-4.81595,52.74378],[-4.25342,52.75541],[-4.22733,52.24378],[-4.81303,52.23117],[-4.80754,52.11452],[-5.38913,52.09892],[-5.3493,51.56085],[-4.77252,51.57622],[-4.76772,51.48652],[-4.19299,51.49806],[-4.18956,51.43518],[-3.61278,51.44502],[-3.61072,51.37307],[-3.15067,51.37864],[-3.14723,51.28984],[-4.29462,51.2718],[-4.28363,51.04744],[-4.85423,51.03406],[-4.83707,50.76556],[-5.2621,50.75427],[-5.23395,50.34984],[-5.79562,50.33319],[-5.76228,49.92913],[-4.64717,49.96094],[-4.66914,50.2753],[-4.25166,50.2832],[-4.24617,50.19361],[-3.40159,50.20679],[-3.41395,50.52041],[-3.13105,50.52391],[-3.1338,50.66078],[-2.66963,50.66252],[-2.66688,50.5719],[-1.04228,50.56929],[-1.04502,50.70429],[-0.54652,50.69994],[-0.54103,50.79031],[-0.08784,50.78424],[-0.08887,50.72211],[0.47693,50.70907],[0.48242,50.81939],[0.98024,50.8068],[0.99328,51.01333],[1.44784,51.00036],[1.47805,51.40478],[1.018,51.41634],[1.04272,51.76742],[1.6195,51.75084],[1.65246,52.15456],[1.72662,52.15245],[1.79529,52.9594],[0.60396,52.99123],[0.60327,52.97222],[0.38148,52.97883],[0.39625,53.24796],[0.31934,53.24961],[0.34269,53.65319],[0.11609,53.65726],[0.13738,54.06181],[-0.06243,54.06584],[-0.04183,54.46924],[-0.56781,54.47722],[-0.56163,54.65715],[-1.18098,54.66271],[-1.17755,54.84183],[-1.33342,54.84381],[-1.32655,55.24743],[-1.53117,55.24821],[-1.52636,55.6528],[-1.76394,55.6528],[-1.76257,55.96765],[-2.40321,55.96727],[-2.39772,55.56243],[-2.16151,55.56282],[-2.15808,55.2486],[-2.92158,55.24571],[-3.68466,55.23744]]],"type":"Polygon"},"properties":{"country_code":"GB","end_date":"1955","id":"OS-New_Popular_Edition-historic","max_zoom":15,"min_zoom":6,"name":"OS New Popular Edition historic","type":"tms","url":"https://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-0.88639,61.11666],[-9.24009,57.92465],[-6.61235,55.46835],[-6.1039,55.40191],[-5.61358,55.06607],[-5.40088,54.90562],[-5.29371,54.77201],[-5.11832,54.5911],[-4.92368,54.38599],[-4.94067,53.59884],[-5.44172,52.27725],[-6.03376,51.6012],[-7.54473,49.33762],[-2.59721,50.2588],[0.65674,50.64047],[1.32419,50.83256],[1.87586,51.19234],[2.05883,52.88863],[-1.61452,56.47933],[-1.21085,57.64972],[-1.69525,59.08903],[0.21543,60.43058],[-0.88639,61.11666]]],"type":"Polygon"},"properties":{"country_code":"GB","id":"OS-OpenData_Locator","max_zoom":22,"name":"OS OpenData Locator","overlay":true,"type":"tms","url":"https://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-5.82929,50.02297],[-5.82929,50.25482],[-5.37336,50.25482],[-5.37336,50.35306],[-5.1756,50.35306],[-5.1756,50.59254],[-4.99707,50.59254],[-4.99707,50.69356],[-4.79657,50.69356],[-4.79657,50.78221],[-4.69495,50.78221],[-4.69495,50.96074],[-4.60431,50.96074],[-4.60431,51.06921],[-4.37922,51.06921],[-4.37922,51.25218],[-3.90393,51.25218],[-3.90393,51.2917],[-3.71717,51.2917],[-3.71717,51.2453],[-3.14862,51.2453],[-3.14862,51.36207],[-3.74463,51.36207],[-3.74463,51.43404],[-3.82978,51.43404],[-3.82978,51.52982],[-4.08521,51.52982],[-4.08521,51.49393],[-4.37922,51.49393],[-4.37922,51.54272],[-5.14442,51.54272],[-5.14442,51.6296],[-5.73871,51.6296],[-5.73871,51.77404],[-5.50954,51.77404],[-5.50954,51.98026],[-5.1988,51.98026],[-5.1988,52.09734],[-4.88806,52.09734],[-4.88806,52.18316],[-4.49575,52.18316],[-4.49575,52.29257],[-4.30154,52.29257],[-4.30154,52.36853],[-4.18112,52.36853],[-4.18112,52.79337],[-4.44137,52.79337],[-4.44137,52.73696],[-4.85698,52.73696],[-4.85698,52.93173],[-4.7288,52.93173],[-4.7288,53.50386],[-4.15782,53.50386],[-4.15782,53.41135],[-3.31105,53.41135],[-3.31105,53.50386],[-3.23337,53.50386],[-3.23337,54.01592],[-3.39262,54.01592],[-3.39262,54.1981],[-3.55964,54.1981],[-3.55964,54.43373],[-3.7189,54.43373],[-3.7189,54.7219],[-4.30154,54.7219],[-4.30154,54.61407],[-5.04731,54.61407],[-5.04731,54.75329],[-5.22987,54.75329],[-5.22987,55.21908],[-5.65326,55.21908],[-5.65326,55.25009],[-5.89796,55.25009],[-5.89796,55.48225],[-6.59332,55.48225],[-6.59332,56.30134],[-7.17277,56.30134],[-7.17277,56.56018],[-6.81717,56.56018],[-6.81717,56.69917],[-6.53153,56.69917],[-6.53153,56.9067],[-6.81168,56.9067],[-6.81168,57.37166],[-6.8721,57.37166],[-6.8721,57.55189],[-7.09732,57.55189],[-7.09732,57.24111],[-7.17423,57.24111],[-7.17423,56.9067],[-7.37198,56.9067],[-7.37198,56.80759],[-7.5203,56.80759],[-7.5203,56.71425],[-7.83068,56.71425],[-7.83068,56.89946],[-7.64941,56.89946],[-7.64941,57.47396],[-7.83068,57.47396],[-7.83068,57.79156],[-7.47362,57.79156],[-7.47362,58.08606],[-7.18798,58.08606],[-7.18798,58.3672],[-6.80346,58.3672],[-6.80346,58.41558],[-6.63866,58.41558],[-6.63866,58.46733],[-6.51781,58.46733],[-6.51781,58.56256],[-6.05362,58.56256],[-6.05362,58.15688],[-6.14701,58.15688],[-6.14701,58.11059],[-6.27998,58.11059],[-6.27998,57.71227],[-6.15913,57.71227],[-6.15913,57.66676],[-5.93391,57.66676],[-5.93391,57.88925],[-5.80643,57.88925],[-5.80643,57.96218],[-5.61417,57.96218],[-5.61417,58.09112],[-5.49082,58.09112],[-5.49082,58.37333],[-5.31991,58.37333],[-5.31991,58.75015],[-3.572,58.75015],[-3.572,59.20918],[-3.19445,59.20918],[-3.19445,59.47592],[-2.24358,59.47592],[-2.24358,59.13887],[-2.4611,59.13887],[-2.4611,58.81859],[-2.74077,58.81859],[-2.74077,58.58047],[-2.91167,58.58047],[-2.91167,58.11575],[-3.48654,58.11575],[-3.48654,57.74039],[-1.71532,57.74039],[-1.71532,57.22256],[-1.97945,57.22256],[-1.97945,56.87607],[-2.1659,56.87607],[-2.1659,56.63332],[-2.36011,56.63332],[-2.36011,56.04775],[-1.97945,56.04775],[-1.97945,55.86509],[-1.4745,55.86509],[-1.4745,55.24999],[-1.3222,55.24999],[-1.3222,54.82217],[-1.055,54.82217],[-1.055,54.67466],[-0.66188,54.67466],[-0.66188,54.55275],[-0.32476,54.55275],[-0.32476,54.28652],[0.00928,54.28652],[0.00928,53.79385],[0.2082,53.79385],[0.2082,53.52177],[0.41635,53.52177],[0.41635,53.02989],[1.42734,53.02989],[1.42734,52.92021],[1.83339,52.92021],[1.83339,52.04249],[1.52355,52.04249],[1.52355,51.82613],[1.2697,51.82613],[1.2697,51.69675],[1.11665,51.69675],[1.11665,51.44035],[1.52355,51.44035],[1.52355,51.33318],[1.45076,51.33318],[1.45076,51.02076],[1.06999,51.02076],[1.06999,50.90084],[0.77881,50.90084],[0.77881,50.72984],[-0.7256,50.72984],[-0.7256,50.70384],[-1.00744,50.70384],[-1.00744,50.57363],[-2.36253,50.57363],[-2.36253,50.48464],[-2.49878,50.48464],[-2.49878,50.57363],[-3.40964,50.57363],[-3.40964,50.20578],[-3.69224,50.20578],[-3.69224,50.13477],[-5.00547,50.13477],[-5.00547,49.94745],[-5.28395,49.94745],[-5.28395,50.02297],[-5.82929,50.02297]],[[-6.45807,49.86736],[-6.45807,49.94999],[-6.39788,49.94999],[-6.39788,50.00538],[-6.17996,50.00538],[-6.17996,49.91686],[-6.25402,49.91686],[-6.25402,49.86736],[-6.45807,49.86736]],[[-5.83432,49.93216],[-5.83432,49.97546],[-5.76833,49.97546],[-5.76833,49.93216],[-5.83432,49.93216]],[[-1.94838,60.68857],[-1.94838,60.30588],[-1.75431,60.30588],[-1.75431,60.12844],[-1.57549,60.12844],[-1.57549,59.79792],[-1.0317,59.79792],[-1.0317,60.03545],[-0.66269,60.03545],[-0.66269,60.91039],[-1.10344,60.91039],[-1.10344,60.804],[-1.35063,60.804],[-1.35063,60.68857],[-1.94838,60.68857]],[[-2.20338,60.19686],[-2.20338,60.09294],[-1.9864,60.09294],[-1.9864,60.19686],[-2.20338,60.19686]],[[-1.75431,59.56983],[-1.75431,59.46394],[-1.53733,59.46394],[-1.53733,59.56983],[-1.75431,59.56983]],[[-4.5586,59.13705],[-4.5586,58.95691],[-4.2867,58.95691],[-4.2867,59.13705],[-4.5586,59.13705]],[[-6.27877,59.20257],[-6.27877,59.02278],[-5.66506,59.02278],[-5.66506,59.20257],[-6.27877,59.20257]],[[-8.71635,57.94406],[-8.71635,57.73059],[-8.35929,57.73059],[-8.35929,57.94406],[-8.71635,57.94406]],[[-7.6077,50.4021],[-7.6077,50.26887],[-7.39072,50.26887],[-7.39072,50.4021],[-7.6077,50.4021]],[[-7.73043,58.35799],[-7.73043,58.24831],[-7.51345,58.24831],[-7.51345,58.35799],[-7.73043,58.35799]]],"type":"Polygon"},"properties":{"country_code":"GB","id":"OS-OpenData_StreetView","max_zoom":18,"min_zoom":1,"name":"OS OpenData StreetView","type":"tms","url":"https://{switch:a,b,c}.os.openstreetmap.org/sv/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.37546,57.1045],[-6.12998,57.11183],[-6.12586,56.94143],[-6.26045,56.93892],[-6.26045,56.83765],[-6.24259,56.65806],[-6.3552,56.65655],[-6.37649,56.79029],[-7.02812,56.76396],[-6.99636,56.54246],[-7.04391,56.53937],[-7.03206,56.44201],[-6.98331,56.44353],[-6.97593,56.36063],[-6.45271,56.37964],[-6.44035,56.2013],[-6.19315,56.21199],[-6.18354,56.12483],[-6.36379,56.11641],[-6.36173,55.98258],[-6.48944,55.97912],[-6.47777,55.84134],[-6.55467,55.8371],[-6.53545,55.66049],[-6.45442,55.66087],[-6.44412,55.57285],[-6.19985,55.57266],[-5.96845,55.58857],[-5.98562,55.7686],[-5.90665,55.77169],[-5.88949,55.59284],[-5.80983,55.594],[-5.79335,55.41395],[-5.827,55.41395],[-5.80915,55.24247],[-5.61826,55.24873],[-5.62101,55.26713],[-5.46239,55.27026],[-5.48642,55.514],[-5.43836,55.51516],[-5.42943,55.42681],[-5.24129,55.43071],[-5.19464,54.80351],[-5.07105,54.80668],[-5.05221,54.62471],[-4.3223,54.65173],[-4.33123,54.7319],[-4.06786,54.73697],[-4.06786,54.76471],[-3.55699,54.77342],[-3.55837,54.83754],[-2.42098,54.84671],[-2.42647,55.25265],[-2.03097,55.25265],[-2.01449,55.56606],[-1.76455,55.56606],[-1.76455,55.9724],[-2.35026,55.96548],[-2.5796,56.06527],[-2.58234,56.37071],[-2.65032,56.36919],[-2.65581,56.50585],[-2.48965,56.50509],[-2.42785,56.55356],[-2.42373,56.73026],[-2.1628,56.73177],[-2.17104,56.99301],[-2.00075,56.99301],[-1.98479,57.3159],[-1.83476,57.31553],[-1.83441,57.36074],[-1.75167,57.36111],[-1.74893,57.63046],[-1.83613,57.63009],[-1.83544,57.70171],[-2.00436,57.70207],[-2.00367,57.71968],[-3.22281,57.71418],[-3.22629,57.76157],[-3.51331,57.77622],[-3.50914,57.71051],[-3.84766,57.70611],[-3.85182,57.76853],[-3.79925,57.76989],[-3.80474,57.88578],[-3.85556,57.88651],[-3.85937,57.97558],[-3.79513,57.97656],[-3.79483,58.03052],[-3.69733,58.03161],[-3.69458,58.06722],[-3.52391,58.07437],[-3.52978,58.16007],[-3.35774,58.16286],[-3.3483,58.28742],[-3.07638,58.29121],[-3.03004,58.43744],[-3.01768,58.65814],[-2.85837,58.66028],[-2.86524,58.7943],[-2.75812,58.79715],[-2.76636,58.87461],[-2.6208,58.88668],[-2.62766,58.97527],[-2.54114,58.97668],[-2.54217,59.0841],[-2.52363,59.08375],[-2.52913,59.1574],[-2.43849,59.15705],[-2.4378,59.246],[-2.36914,59.24705],[-2.3688,59.40748],[-2.52947,59.40748],[-2.52741,59.33436],[-2.70319,59.33576],[-2.70525,59.40608],[-3.12891,59.40433],[-3.12411,59.15951],[-3.40288,59.1574],[-3.39464,58.9689],[-3.4276,58.96961],[-3.42572,58.88526],[-3.45215,58.87071],[-3.51017,58.86911],[-3.50708,58.78826],[-3.38555,58.79004],[-3.3828,58.6999],[-3.4494,58.69847],[-3.45078,58.65385],[-3.50159,58.65421],[-3.5009,58.62705],[-3.72612,58.62383],[-3.72475,58.60595],[-4.6476,58.5895],[-4.65996,58.67171],[-5.10697,58.66135],[-5.09804,58.58091],[-5.23743,58.57769],[-5.22455,58.26305],[-5.4127,58.25818],[-5.39965,58.12245],[-5.53286,58.11991],[-5.52393,57.99494],[-5.55346,57.99422],[-5.54728,57.93995],[-5.85696,57.93157],[-5.83181,57.73361],[-5.86374,57.73224],[-5.85773,57.66096],[-6.19624,57.64975],[-6.20242,57.72353],[-6.41666,57.7162],[-6.42421,57.75945],[-6.4764,57.75725],[-6.46884,57.71326],[-6.53339,57.71216],[-6.52721,57.6391],[-6.692,57.63395],[-6.68102,57.54341],[-6.78195,57.53826],[-6.75311,57.31608],[-6.50592,57.32498],[-6.49768,57.28084],[-6.4812,57.27824],[-6.47159,57.19203],[-6.38644,57.19352],[-6.37546,57.1045]],[[-7.65043,56.77461],[-7.40667,56.79304],[-7.41972,56.88281],[-7.38676,56.90268],[-7.25836,56.91056],[-7.24806,57.07141],[-7.11485,57.077],[-7.16772,57.43466],[-7.0352,57.44094],[-7.05236,57.69026],[-6.86834,57.6976],[-6.87315,57.71631],[-6.70286,57.72217],[-6.71591,57.81117],[-6.53188,57.81958],[-6.53875,57.88133],[-6.22015,57.89265],[-6.24143,58.09935],[-6.12676,58.10152],[-6.17758,58.53105],[-6.46734,58.52029],[-6.4591,58.45102],[-6.63145,58.44455],[-6.6239,58.39169],[-6.79212,58.38485],[-6.78869,58.34956],[-6.90885,58.34415],[-6.89718,58.25503],[-7.20136,58.24166],[-7.14094,57.83201],[-7.37509,57.82104],[-7.36822,57.69503],[-7.6573,57.68292],[-7.67652,57.80715],[-7.79257,57.80202],[-7.77327,57.67734],[-7.70756,57.68024],[-7.69376,57.59088],[-7.75947,57.58797],[-7.74587,57.49965],[-7.51241,57.5085],[-7.47911,57.29468],[-7.52855,57.2932],[-7.51276,57.05871],[-7.61163,57.05386],[-7.59859,56.87493],[-7.66725,56.87268],[-7.65043,56.77461]],[[-1.46238,59.82831],[-1.21519,59.83107],[-1.21519,59.96194],[-1.10533,59.96056],[-1.0986,60.09498],[-0.97632,60.09346],[-0.96352,60.3476],[-0.74028,60.34484],[-0.7147,60.84722],[-1.08215,60.85901],[-1.08455,60.76944],[-1.21296,60.77011],[-1.21579,60.68079],[-1.23364,60.68113],[-1.23467,60.5909],[-1.27132,60.59191],[-1.27338,60.64581],[-1.45466,60.64648],[-1.45397,60.59224],[-1.6373,60.59292],[-1.63954,60.3507],[-1.73172,60.35095],[-1.73172,60.18067],[-1.64177,60.17931],[-1.64177,60.1448],[-1.46393,60.14344],[-1.46238,59.82831]],[[-6.21496,56.97437],[-6.22525,57.06445],[-6.29117,57.06184],[-6.29237,57.08062],[-6.62162,57.06943],[-6.61338,57.00629],[-6.46163,57.01302],[-6.4582,56.96776],[-6.21496,56.97437]],[[-2.12774,60.10855],[-2.12803,60.16207],[-2.00203,60.16224],[-2.00174,60.10872],[-2.12774,60.10855]],[[-6.68977,56.95804],[-6.69228,56.9759],[-6.65984,56.97726],[-6.65733,56.9594],[-6.68977,56.95804]],[[-7.66365,58.25846],[-7.66844,58.28502],[-7.54896,58.29098],[-7.54417,58.26442],[-7.66365,58.25846]],[[-8.65104,57.78885],[-8.66674,57.875],[-8.48272,57.88449],[-8.46702,57.79836],[-8.65104,57.78885]]],"type":"Polygon"},"properties":{"country_code":"GB","end_date":"1955","id":"OS-Scottish_Popular-historic","max_zoom":15,"min_zoom":6,"name":"OS Scottish Popular historic","type":"tms","url":"https://ooc.openstreetmap.org/npescotland/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[-0.75248,51.08219],[-0.75952,51.08563],[-0.80143,51.14579],[-0.83989,51.14407],[-0.83577,51.18024],[-0.85295,51.20113],[-0.85227,51.20962],[-0.84952,51.2179],[-0.82669,51.24037],[-0.8121,51.24692],[-0.77365,51.24596],[-0.75442,51.23811],[-0.75408,51.23392],[-0.74464,51.23338],[-0.74307,51.28472],[-0.7515,51.30695],[-0.76644,51.3121],[-0.78206,51.32702],[-0.78154,51.33881],[-0.73743,51.37205],[-0.71923,51.37697],[-0.67958,51.3848],[-0.68078,51.39015],[-0.65314,51.39176],[-0.63014,51.39058],[-0.62911,51.39701],[-0.62344,51.39776],[-0.61314,51.42956],[-0.60025,51.44591],[-0.58671,51.44454],[-0.57624,51.4532],[-0.56268,51.45235],[-0.54774,51.447],[-0.53727,51.44486],[-0.5371,51.45267],[-0.54396,51.45459],[-0.54053,51.46989],[-0.53092,51.47609],[-0.50912,51.47448],[-0.5086,51.46957],[-0.49006,51.46828],[-0.45264,51.46069],[-0.44869,51.44293],[-0.44148,51.44186],[-0.44183,51.43694],[-0.41127,51.43801],[-0.40149,51.42795],[-0.38071,51.42624],[-0.38054,51.41617],[-0.34913,51.41382],[-0.3275,51.40375],[-0.30398,51.39904],[-0.30192,51.37547],[-0.30948,51.36969],[-0.31119,51.35297],[-0.29557,51.35415],[-0.29231,51.36733],[-0.2851,51.36808],[-0.27875,51.37719],[-0.26553,51.38372],[-0.24115,51.3848],[-0.21231,51.36283],[-0.21077,51.34986],[-0.19086,51.35029],[-0.15429,51.33388],[-0.14966,51.30577],[-0.10743,51.29665],[-0.08872,51.30996],[-0.08786,51.32208],[-0.0652,51.32154],[-0.06417,51.32648],[-0.05198,51.32637],[-0.05284,51.33463],[-0.03308,51.34309],[0.00192,51.33763],[0.01188,51.3282],[0.01393,51.29944],[0.02029,51.29944],[0.02406,51.30727],[0.03316,51.30867],[0.04552,51.30545],[0.05239,51.28774],[0.06166,51.25778],[0.06406,51.24155],[0.04621,51.21263],[0.04071,51.21091],[0.04483,51.19898],[0.04947,51.19973],[0.05582,51.19446],[0.06114,51.17907],[0.06234,51.15421],[0.05771,51.14171],[0.02046,51.13654],[-0.0446,51.13364],[-0.1567,51.13525],[-0.15721,51.129],[-0.22879,51.11834],[-0.24733,51.11834],[-0.25008,51.12114],[-0.29935,51.1137],[-0.32218,51.11198],[-0.32235,51.10584],[-0.3596,51.10196],[-0.35891,51.11133],[-0.38638,51.11176],[-0.3869,51.10625],[-0.4281,51.09472],[-0.48568,51.09516],[-0.48713,51.08723],[-0.52974,51.08654],[-0.53023,51.07899],[-0.61046,51.07655],[-0.60997,51.08067],[-0.6578,51.07922],[-0.65828,51.07434],[-0.68365,51.07075],[-0.6998,51.07083],[-0.72966,51.07449],[-0.75248,51.08219]]],"type":"Polygon"},"properties":{"country_code":"GB","end_date":"2009","id":"Surrey-Air_Survey","max_zoom":21,"min_zoom":8,"name":"Surrey Air Survey","start_date":"2007","type":"tms","url":"https://{switch:a,b,c}.surrey.aerial.openstreetmap.org.uk/layer/gb_surrey_aerial/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[16.2996,46.38154],[16.2369,46.4981],[16.36449,46.55763],[16.52243,46.48295],[16.66846,46.46184],[16.70966,46.40541],[16.87361,46.35365],[16.89119,46.28228],[16.97844,46.22821],[17.16198,46.17292],[17.18392,46.11177],[17.22194,46.11398],[17.29813,46.03422],[17.26272,46.01265],[17.37936,45.99119],[17.41445,45.93808],[17.57404,45.93991],[17.67025,45.83833],[17.83202,45.81131],[17.86526,45.77067],[17.90763,45.79537],[18.08054,45.76834],[18.18763,45.79041],[18.34028,45.75291],[18.36506,45.77628],[18.44336,45.74187],[18.48413,45.79491],[18.55212,45.79695],[18.61719,45.84118],[18.65729,45.91935],[18.79064,45.88142],[18.82036,45.91772],[18.90217,45.92088],[18.87259,45.89554],[18.90522,45.86687],[18.86071,45.85998],[18.85158,45.81307],[18.90807,45.82487],[18.92214,45.78927],[18.85405,45.77335],[18.91634,45.74661],[18.96932,45.76765],[18.98301,45.74223],[18.9716,45.69436],[18.92081,45.7012],[18.97826,45.65389],[18.90122,45.57133],[18.94963,45.53863],[19.02191,45.55954],[19.10712,45.51124],[19.08297,45.48304],[19.00346,45.49158],[19.03342,45.40972],[18.97303,45.38127],[19.08915,45.34237],[19.17636,45.27054],[19.26699,45.28238],[19.26243,45.24597],[19.42202,45.23666],[19.44988,45.19546],[19.43162,45.16858],[19.35639,45.16308],[19.31769,45.20625],[19.28602,45.20377],[19.28915,45.16938],[19.1756,45.20035],[19.19709,45.17897],[19.14222,45.12726],[19.08905,45.14323],[19.10612,45.01045],[19.05765,44.97822],[19.14008,44.98338],[19.16024,44.95324],[19.07103,44.89893],[19.00562,44.91331],[19.02647,44.85137],[18.96225,44.84597],[18.85055,44.849],[18.7633,44.8992],[18.74471,44.93786],[18.79579,44.93987],[18.78901,44.99224],[18.72679,44.99017],[18.66466,45.05817],[18.58771,45.08384],[18.53161,45.03995],[18.41924,45.10518],[18.32169,45.09696],[18.25755,45.13614],[18.19994,45.07562],[18.12115,45.07621],[18.06597,45.13909],[18.03733,45.12196],[18.0097,45.14872],[17.85061,45.04019],[17.66363,45.13094],[17.6005,45.10181],[17.5495,45.12663],[17.48821,45.10589],[17.44509,45.15769],[17.41754,45.13253],[17.3426,45.13809],[17.27318,45.18585],[17.25141,45.1444],[17.16542,45.14694],[17.03437,45.21983],[16.93264,45.22703],[16.9282,45.27307],[16.82178,45.1824],[16.59808,45.22881],[16.49998,45.21198],[16.46679,45.14146],[16.39821,45.11157],[16.3583,45.00232],[16.28569,44.9923],[16.08617,45.10185],[16.01122,45.21415],[15.84351,45.22157],[15.79069,45.19066],[15.79588,45.11433],[15.75122,45.06121],[15.78847,44.97482],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[16.0592,44.627],[16.02335,44.56378],[16.12673,44.51464],[16.17742,44.40236],[16.13524,44.38112],[16.22406,44.3489],[16.1923,44.29936],[16.21765,44.21695],[16.37192,44.08445],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.55289,43.9553],[16.71315,43.85609],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.28532,43.46933],[17.25664,43.40208],[17.341,43.25936],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71408,42.97496],[17.54079,42.92978],[17.64304,42.88436],[17.68764,42.92563],[17.84605,42.90453],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.37062,42.61669],[18.43954,42.56497],[18.43987,42.48498],[18.55128,42.40206],[18.5331,42.38603],[18.06182,42.6374],[17.06039,42.69152],[16.35138,42.37123],[16.23677,42.38453],[16.39023,42.73995],[15.43075,43.08152],[15.63066,43.43802],[14.62071,44.3094],[14.29287,44.49332],[14.00808,44.80011],[13.88603,44.75271],[13.89153,44.8023],[13.70853,44.9134],[13.72398,44.94888],[13.7959,44.92877],[13.76116,44.98088],[13.60777,45.03763],[13.56139,45.19789],[13.58211,45.24115],[13.48227,45.48675],[13.5136,45.5099],[13.67463,45.44773],[13.76432,45.47054],[13.88238,45.429],[13.98027,45.45832],[13.95822,45.5071],[14.00195,45.52298],[14.07602,45.48728],[14.20335,45.47325],[14.24884,45.50803],[14.32381,45.47413],[14.48749,45.54141],[14.4953,45.60824],[14.56821,45.67686],[14.69391,45.58134],[14.69169,45.53064],[14.79864,45.50514],[14.82058,45.46316],[14.90782,45.4814],[14.93136,45.53217],[15.08738,45.48583],[15.16778,45.42529],[15.26912,45.46833],[15.3438,45.45993],[15.37766,45.48781],[15.29879,45.53386],[15.27225,45.6053],[15.39836,45.64787],[15.36734,45.68233],[15.34575,45.66692],[15.35424,45.7101],[15.32451,45.67005],[15.23367,45.72238],[15.47062,45.79902],[15.46272,45.82041],[15.5364,45.85015],[15.64191,45.82462],[15.69817,45.85137],[15.67547,45.90472],[15.72545,46.04492],[15.6009,46.1108],[15.63844,46.21388],[15.76893,46.21269],[15.79102,46.2621],[16.01284,46.3133],[16.07131,46.3449],[16.05625,46.39644],[16.2996,46.38154]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"category":"historicphoto","country_code":"HR","end_date":"2011","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-dof-2011","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: Croatia 2011 Aerial imagery","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"2011","type":"wms","url":"https://geoportal.dgu.hr/services/dof/ows?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DOF5_2011&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.66846,46.46184],[16.70966,46.40541],[16.83743,46.37895],[16.91732,46.26434],[17.16198,46.17292],[17.18392,46.11177],[17.22194,46.11398],[17.29813,46.03422],[17.26272,46.01265],[17.37936,45.99119],[17.39024,45.93723],[17.57404,45.93991],[17.67025,45.83833],[17.83202,45.81131],[17.86526,45.77067],[17.90763,45.79537],[18.08054,45.76834],[18.18763,45.79041],[18.34028,45.75291],[18.36506,45.77628],[18.44336,45.74187],[18.48413,45.79491],[18.55212,45.79695],[18.61719,45.84118],[18.65729,45.91935],[18.79064,45.88142],[18.81521,45.91536],[18.87237,45.91897],[18.85574,45.7726],[18.92405,45.74455],[18.90242,45.57188],[18.9269,45.5301],[19.00355,45.53163],[18.97987,45.34745],[19.06927,45.34532],[19.15525,45.27971],[19.16362,45.16268],[19.07065,45.14698],[19.10952,45.05083],[19.05765,44.97822],[19.14008,44.98338],[19.16024,44.95324],[19.07103,44.89893],[18.99675,44.90679],[19.02647,44.85137],[18.83925,44.8547],[18.74655,44.9263],[18.79579,44.93987],[18.78901,44.99224],[18.72679,44.99017],[18.71155,45.03475],[18.58771,45.08384],[18.53161,45.03995],[18.41924,45.10518],[18.32169,45.09696],[18.25755,45.13614],[18.19994,45.07562],[18.12115,45.07621],[18.06597,45.13909],[18.03733,45.12196],[18.0097,45.14872],[17.85061,45.04019],[17.66363,45.13094],[17.6005,45.10181],[17.5495,45.12663],[17.48821,45.10589],[17.44509,45.15769],[17.41754,45.13253],[17.3426,45.13809],[17.27318,45.18585],[17.25141,45.1444],[17.16542,45.14694],[17.03437,45.21983],[16.93264,45.22703],[16.9282,45.27307],[16.82178,45.1824],[16.52186,45.22151],[16.46768,45.13997],[16.3992,45.11095],[16.35817,45.00121],[16.28569,44.9923],[16.08617,45.10185],[16.01122,45.21415],[15.84351,45.22157],[15.77021,45.16383],[15.79588,45.11433],[15.75122,45.06121],[15.78847,44.97482],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[16.03586,44.65529],[16.06263,44.60805],[16.02335,44.56378],[16.12673,44.51464],[16.17742,44.40236],[16.13524,44.38112],[16.22406,44.3489],[16.1923,44.29936],[16.21765,44.21695],[16.32072,44.11655],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.60009,43.91158],[16.72161,43.84086],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.28139,43.47296],[17.25664,43.40208],[17.34462,43.25537],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71384,42.9707],[17.52028,42.92815],[17.64361,42.88081],[17.68764,42.92563],[17.84605,42.90453],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.36845,42.61827],[18.43954,42.56497],[18.43987,42.48498],[18.55131,42.40193],[18.53311,42.38604],[18.06174,42.63737],[17.06039,42.69152],[16.35138,42.37123],[16.23677,42.38453],[16.39023,42.73995],[15.43075,43.08152],[15.63066,43.43802],[14.62071,44.3094],[14.29287,44.49332],[13.99641,44.82337],[14.00808,44.80011],[13.88603,44.75271],[13.89153,44.8023],[13.70853,44.9134],[13.70336,44.94822],[13.76862,44.94342],[13.76116,44.98088],[13.60777,45.03763],[13.56139,45.19789],[13.58211,45.24115],[13.48227,45.48675],[13.50899,45.50995],[13.62167,45.43361],[13.8722,45.40671],[14.58984,45.47778],[15.19316,45.40185],[15.3636,45.44264],[15.40276,45.47625],[15.43753,45.70368],[15.53001,45.68943],[15.52357,45.74392],[15.72324,45.8379],[15.76007,46.11836],[15.82492,46.11357],[15.80066,46.18612],[15.903,46.22],[15.88479,46.24679],[16.17091,46.34181],[16.18926,46.3143],[16.30466,46.35117],[16.23649,46.48339],[16.26168,46.5177],[16.3701,46.55838],[16.66846,46.46184]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"category":"historicphoto","country_code":"HR","end_date":"2016","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-dof-2014-2016","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: Croatia 2014-2016 Aerial imagery","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"2014","type":"wms","url":"https://geoportal.dgu.hr/services/inspire/orthophoto_2014-2016/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.OrthoImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.30898,45.22981],[16.59808,45.22881],[16.81516,45.18187],[16.93331,45.27307],[16.93264,45.22703],[17.03437,45.21983],[17.16542,45.14694],[17.25141,45.1444],[17.27318,45.18585],[17.3426,45.13809],[17.41754,45.13253],[17.44509,45.15769],[17.48821,45.10589],[17.5495,45.12663],[17.6005,45.10181],[17.66363,45.13094],[17.85061,45.04019],[18.0097,45.14872],[18.03733,45.12196],[18.06597,45.13909],[18.12115,45.07621],[18.19994,45.07562],[18.25755,45.13614],[18.32169,45.09696],[18.41924,45.10518],[18.53161,45.03995],[18.58771,45.08384],[18.66466,45.05817],[18.72679,44.99017],[18.78901,44.99224],[18.79579,44.93987],[18.74471,44.93786],[18.7633,44.8992],[18.85055,44.849],[18.92499,44.8468],[19.02647,44.85137],[18.99675,44.90679],[19.09204,44.9164],[19.09514,44.97513],[19.06357,44.97797],[19.09656,44.99355],[19.09354,45.1395],[19.13491,45.12692],[19.21077,45.1852],[19.24803,45.17269],[19.29316,45.20196],[19.40162,45.19073],[19.40389,45.23548],[19.18113,45.27092],[19.09426,45.33823],[18.97736,45.37577],[19.01538,45.40732],[18.99591,45.48099],[19.05766,45.48369],[19.07831,45.51814],[18.94705,45.53685],[18.90242,45.57188],[18.95593,45.62403],[18.96012,45.68346],[18.92202,45.7023],[18.95919,45.69186],[18.96016,45.73185],[18.85574,45.7726],[18.8835,45.92227],[18.81521,45.91536],[18.79801,45.88151],[18.65729,45.91935],[18.61719,45.84118],[18.55212,45.79695],[18.48413,45.79491],[18.44336,45.74187],[18.36506,45.77628],[18.34028,45.75291],[18.18763,45.79041],[18.08054,45.76834],[17.90763,45.79537],[17.86526,45.77067],[17.83202,45.81131],[17.67025,45.83833],[17.57404,45.93991],[17.39024,45.93723],[17.37936,45.99119],[17.26272,46.01265],[17.29813,46.03422],[17.22194,46.11398],[17.18392,46.11177],[17.16198,46.17292],[16.89119,46.28228],[16.83743,46.37895],[16.74466,46.38981],[16.66846,46.46184],[16.52243,46.48295],[16.35161,46.55198],[16.2364,46.48318],[16.30489,46.3793],[16.30898,45.22981]],[[15.45776,43.0729],[15.45639,43.10499],[16.30096,43.2312],[15.8828,43.53461],[15.86851,43.58153],[15.91202,43.57501],[15.91328,43.60843],[16.12836,43.60933],[16.12499,44.14937],[16.3091,44.14984],[16.37192,44.08445],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.55289,43.9553],[16.71315,43.85609],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.22801,43.49976],[17.28532,43.46933],[17.25664,43.40208],[17.341,43.25936],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71408,42.97496],[17.52028,42.92815],[17.64361,42.88081],[17.68764,42.92563],[17.7879,42.89439],[17.80648,42.91838],[17.84605,42.90453],[17.90334,42.8331],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.36845,42.61827],[18.43954,42.56497],[18.43987,42.48498],[18.50708,42.4355],[18.48158,42.4112],[18.0617,42.63737],[17.06039,42.69152],[16.34491,42.37123],[16.22612,42.3834],[16.39023,42.73995],[15.45776,43.0729]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"best":true,"category":"photo","country_code":"HR","end_date":"2017","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-dof-2017-s-e","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: Croatia 2017 South+East Aerial imagery","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"2017","type":"wms","url":"https://geoportal.dgu.hr/services/inspire/orthophoto_2017/ows?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.OrthoImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.29963,46.3815],[16.30862,45.22967],[16.49996,45.22994],[16.48159,45.15965],[16.39821,45.11157],[16.3583,45.00232],[16.28569,44.9923],[16.17582,45.03205],[16.16192,45.07231],[16.08175,45.10321],[16.00794,45.213],[15.84108,45.21869],[15.77476,45.17354],[15.79516,45.11278],[15.75122,45.06121],[15.79001,44.99352],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[15.9767,44.6772],[16.0397,44.654],[16.0651,44.60538],[16.0294,44.56185],[16.12724,44.51585],[16.14819,44.42716],[16.17977,44.4019],[16.13754,44.38031],[16.22406,44.3489],[16.19797,44.272],[16.30577,44.15084],[16.12495,44.1494],[16.12815,43.60943],[15.52195,43.61231],[14.78331,44.11942],[14.28198,44.49521],[13.88603,44.75271],[13.80363,44.85648],[13.73428,44.88604],[13.70905,44.94646],[13.76862,44.94342],[13.76673,44.96128],[13.64605,45.03605],[13.60777,45.03763],[13.55372,45.31784],[13.52898,45.32753],[13.48331,45.48595],[13.51439,45.51032],[13.67463,45.44773],[13.76432,45.47054],[13.88238,45.429],[13.91371,45.45664],[13.98027,45.45832],[13.95822,45.5071],[14.00195,45.52298],[14.07602,45.48728],[14.20335,45.47325],[14.24884,45.50803],[14.32381,45.47413],[14.48749,45.54141],[14.4953,45.60824],[14.54144,45.62448],[14.56821,45.67686],[14.61164,45.66673],[14.60522,45.62774],[14.69391,45.58134],[14.69169,45.53064],[14.79864,45.50514],[14.82058,45.46316],[14.90782,45.4814],[14.93136,45.53217],[14.98516,45.50063],[15.08738,45.48583],[15.16778,45.42529],[15.22158,45.42864],[15.26912,45.46833],[15.3438,45.45993],[15.37766,45.48781],[15.29879,45.53386],[15.27225,45.6053],[15.34292,45.64903],[15.39836,45.64787],[15.36734,45.68233],[15.34575,45.66692],[15.35424,45.7101],[15.32451,45.67005],[15.23367,45.72238],[15.39851,45.79415],[15.47062,45.79902],[15.46272,45.82041],[15.52513,45.82641],[15.5364,45.85015],[15.55871,45.83936],[15.57316,45.85585],[15.64191,45.82462],[15.69817,45.85137],[15.67547,45.90472],[15.7023,45.92368],[15.69584,45.99749],[15.72545,46.04492],[15.6009,46.1108],[15.59179,46.14731],[15.63844,46.21388],[15.67652,46.22955],[15.76893,46.21269],[15.79102,46.2621],[16.01284,46.3133],[16.07131,46.3449],[16.05625,46.39644],[16.1501,46.40762],[16.19405,46.38224],[16.29963,46.3815]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"best":true,"category":"photo","country_code":"HR","end_date":"2018","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-dof-2018-w","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: Croatia 2018 West Aerial imagery","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"2018","type":"wms","url":"https://geoportal.dgu.hr/services/inspire/orthophoto_2018/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.OrthoImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[15.34155,45.63868],[15.34189,45.6658],[15.28409,45.66592],[15.28413,45.69284],[15.22636,45.69305],[15.22662,45.74698],[15.28451,45.74695],[15.2846,45.7739],[15.34236,45.77372],[15.34254,45.80068],[15.45841,45.80029],[15.45879,45.85439],[15.66157,45.85331],[15.66243,45.93435],[15.69152,45.93405],[15.6929,46.04211],[15.6638,46.04223],[15.66414,46.06921],[15.60599,46.06951],[15.60621,46.09654],[15.57707,46.09666],[15.57806,46.17763],[15.63625,46.17733],[15.63702,46.23139],[15.7828,46.23041],[15.78358,46.28441],[15.87117,46.28382],[15.8716,46.3108],[15.95914,46.31006],[15.95979,46.33703],[16.01811,46.33653],[16.01862,46.36357],[16.04789,46.36331],[16.04884,46.41724],[16.19531,46.41579],[16.19471,46.38889],[16.25311,46.38812],[16.25492,46.47124],[16.22578,46.47156],[16.22694,46.5235],[16.3147,46.52252],[16.31551,46.54945],[16.49498,46.54726],[16.49507,46.52025],[16.5285,46.52066],[16.52923,46.49372],[16.61721,46.49476],[16.61798,46.46787],[16.67639,46.46855],[16.67703,46.44152],[16.7063,46.44188],[16.70699,46.41487],[16.76552,46.41549],[16.76617,46.38853],[16.85389,46.38939],[16.85449,46.36248],[16.88367,46.36271],[16.88474,46.30879],[16.91401,46.30911],[16.91452,46.2821],[16.94362,46.28228],[16.94422,46.25534],[16.9734,46.25567],[16.97392,46.2286],[17.06134,46.22946],[17.0619,46.20241],[17.14931,46.20303],[17.14974,46.17606],[17.20798,46.17647],[17.20888,46.12257],[17.23786,46.1227],[17.23824,46.0957],[17.26734,46.09594],[17.2678,46.06891],[17.29669,46.06918],[17.29746,46.01514],[17.38458,46.01562],[17.38501,45.98861],[17.41389,45.98879],[17.41432,45.96183],[17.58847,45.96255],[17.58864,45.93557],[17.61761,45.93566],[17.61786,45.9087],[17.64683,45.90879],[17.647,45.88182],[17.67597,45.88185],[17.67619,45.85487],[17.76296,45.85505],[17.76318,45.82808],[17.85004,45.82823],[17.85012,45.80125],[18.05273,45.80131],[18.05268,45.77432],[18.11053,45.77426],[18.11058,45.80131],[18.25533,45.80104],[18.2552,45.77405],[18.39974,45.7736],[18.39961,45.74662],[18.42871,45.74656],[18.42879,45.77354],[18.45772,45.77333],[18.45793,45.80038],[18.54488,45.80014],[18.54509,45.82698],[18.57415,45.82689],[18.57436,45.85388],[18.60329,45.8537],[18.60354,45.88072],[18.63264,45.8806],[18.63316,45.93459],[18.72019,45.93399],[18.71984,45.90706],[18.80688,45.90643],[18.80726,45.93339],[18.83627,45.93318],[18.8355,45.87925],[18.86438,45.87904],[18.8631,45.79808],[18.89206,45.79793],[18.89172,45.77085],[18.97845,45.7701],[18.97609,45.60815],[18.94674,45.60836],[18.94635,45.58143],[19.06167,45.58044],[19.06145,45.55343],[19.08986,45.55325],[19.08952,45.52622],[19.1181,45.52595],[19.11716,45.47187],[19.00223,45.47295],[19.00167,45.44598],[19.05918,45.44556],[19.05823,45.39143],[19.00055,45.39197],[19.00014,45.36502],[19.08625,45.36421],[19.08573,45.33727],[19.11448,45.3371],[19.11397,45.31],[19.14267,45.30979],[19.14207,45.28274],[19.28549,45.28127],[19.28489,45.25415],[19.4568,45.25211],[19.45472,45.17123],[19.16856,45.17445],[19.16817,45.14748],[19.13939,45.14775],[19.13879,45.12072],[19.08165,45.12126],[19.08114,45.09439],[19.10975,45.09406],[19.10873,45.04013],[19.08016,45.04028],[19.07909,44.98637],[19.13611,44.98592],[19.13517,44.93186],[19.10656,44.9321],[19.10609,44.90514],[18.99209,44.90614],[18.99124,44.85213],[18.79191,44.85367],[18.79234,44.8808],[18.73541,44.88107],[18.73651,44.96209],[18.76496,44.96185],[18.76538,44.98887],[18.70828,44.98926],[18.70866,45.0163],[18.68009,45.01642],[18.6803,45.04344],[18.42323,45.04465],[18.42374,45.09866],[18.2236,45.09923],[18.22349,45.07223],[18.08061,45.07241],[18.08057,45.09944],[18.02342,45.09938],[18.02346,45.12646],[17.99489,45.12649],[17.99502,45.0995],[17.9377,45.09947],[17.93774,45.04546],[17.88064,45.04546],[17.88077,45.01844],[17.82362,45.01831],[17.82354,45.04528],[17.76635,45.04519],[17.76626,45.0722],[17.70911,45.07196],[17.70894,45.09908],[17.42317,45.09794],[17.42287,45.12498],[17.30845,45.12429],[17.3082,45.1513],[17.27945,45.15115],[17.27988,45.1242],[17.16546,45.12342],[17.16503,45.15034],[17.10789,45.14992],[17.10755,45.17694],[17.05014,45.17634],[17.04972,45.20347],[16.93521,45.20239],[16.93428,45.25649],[16.90553,45.25619],[16.9066,45.20233],[16.84932,45.20161],[16.84996,45.17466],[16.67818,45.1727],[16.6775,45.19975],[16.49516,45.19753],[16.49495,45.17051],[16.48371,45.17063],[16.48239,45.11675],[16.42516,45.11744],[16.42384,45.06345],[16.39526,45.06375],[16.39462,45.03685],[16.36605,45.03715],[16.36473,44.98321],[16.25065,44.98453],[16.2512,45.01145],[16.16557,45.01229],[16.16668,45.06634],[16.10953,45.06691],[16.11017,45.0925],[16.10689,45.094],[16.08143,45.09424],[16.08202,45.12129],[16.05341,45.12147],[16.05405,45.14847],[16.02539,45.1488],[16.02581,45.17571],[15.99724,45.17598],[15.99775,45.20305],[15.79723,45.20455],[15.79531,45.06961],[15.76665,45.06979],[15.7664,45.04278],[15.79489,45.04263],[15.79382,44.96167],[15.76529,44.9618],[15.76423,44.88077],[15.79271,44.88062],[15.79199,44.82667],[15.76355,44.82685],[15.7632,44.79982],[15.79156,44.79967],[15.79088,44.74562],[15.87618,44.74498],[15.87656,44.77185],[15.9049,44.77176],[15.90449,44.74477],[15.93273,44.74465],[15.93243,44.71754],[15.98923,44.71706],[15.98885,44.69012],[16.01713,44.68985],[16.01679,44.66278],[16.0451,44.6626],[16.04459,44.6356],[16.07287,44.6353],[16.07197,44.5814],[16.01525,44.58182],[16.01483,44.55486],[16.12797,44.55379],[16.12712,44.49979],[16.15522,44.49954],[16.15429,44.44558],[16.1826,44.44527],[16.1815,44.39122],[16.20964,44.39101],[16.20905,44.36395],[16.23741,44.36368],[16.23673,44.33664],[16.20858,44.33691],[16.207,44.25603],[16.2349,44.25572],[16.23396,44.20168],[16.29013,44.20104],[16.2897,44.17414],[16.31772,44.17379],[16.31663,44.11979],[16.37272,44.11914],[16.37225,44.09218],[16.45636,44.09113],[16.4552,44.0371],[16.5352,44.0371],[16.53597,44.0101],[16.56391,44.01041],[16.56528,43.95653],[16.62128,43.95714],[16.6218,43.93011],[16.62798,43.93014],[16.62875,43.90327],[16.67858,43.90383],[16.67918,43.87683],[16.7351,43.87739],[16.73686,43.79647],[16.76479,43.79672],[16.76535,43.76982],[16.82123,43.77041],[16.82174,43.74335],[16.84959,43.74366],[16.85019,43.71671],[16.90603,43.71718],[16.90646,43.69013],[16.93431,43.69047],[16.93508,43.66353],[16.96272,43.66368],[16.96323,43.63673],[16.99104,43.63698],[16.99169,43.60998],[17.01932,43.61026],[17.01993,43.58328],[17.04773,43.58347],[17.04829,43.55648],[17.10378,43.55688],[17.10421,43.52991],[17.15987,43.53038],[17.1603,43.50337],[17.27149,43.50415],[17.27192,43.47709],[17.29969,43.47728],[17.30055,43.39625],[17.27283,43.39607],[17.27325,43.36912],[17.30093,43.36928],[17.30149,43.31522],[17.3293,43.31544],[17.32995,43.28845],[17.35728,43.28855],[17.35758,43.26158],[17.44067,43.26202],[17.44148,43.18102],[17.4968,43.18121],[17.49706,43.15426],[17.58006,43.15454],[17.58023,43.12755],[17.60782,43.12758],[17.60808,43.1007],[17.66331,43.10079],[17.66361,43.04688],[17.69116,43.04688],[17.69142,43.01974],[17.71897,43.01993],[17.71927,42.93889],[17.77442,42.93902],[17.77459,42.91203],[17.80223,42.91215],[17.80197,42.93911],[17.82952,42.93918],[17.82969,42.91221],[17.88476,42.91221],[17.88488,42.85819],[17.91248,42.85826],[17.91248,42.8312],[17.93999,42.83116],[17.9399,42.80422],[17.995,42.80428],[17.995,42.77726],[18.05002,42.77716],[18.05002,42.75023],[18.105,42.75023],[18.105,42.72318],[18.13229,42.72309],[18.13233,42.69616],[18.1598,42.69619],[18.15976,42.66906],[18.21456,42.66899],[18.21443,42.64201],[18.24203,42.64191],[18.2419,42.61495],[18.26928,42.61489],[18.26941,42.64185],[18.37913,42.64156],[18.37897,42.61457],[18.40648,42.61444],[18.40635,42.58753],[18.46111,42.58718],[18.46025,42.47925],[18.48763,42.47909],[18.48746,42.45215],[18.54218,42.45187],[18.54149,42.37078],[18.51411,42.37097],[18.51424,42.39792],[16.48009,42.74046],[15.71251,42.99134],[13.71386,44.87631],[13.59592,45.03763],[13.56502,45.11763],[13.56067,45.30623],[13.53207,45.30586],[13.52983,45.38682],[13.50211,45.38736],[13.49885,45.46741],[13.47018,45.46705],[13.46956,45.49407],[13.49675,45.49442],[13.49658,45.49889],[13.49816,45.49892],[13.49761,45.52141],[13.55507,45.52207],[13.5558,45.49522],[13.61331,45.49597],[13.61403,45.46895],[13.84428,45.47145],[13.84488,45.44442],[13.90234,45.44505],[13.90182,45.47205],[13.98808,45.47289],[13.98757,45.49985],[14.10275,45.50081],[14.10305,45.47379],[14.33334,45.47533],[14.33308,45.50232],[14.39059,45.50268],[14.39042,45.52959],[14.44797,45.52995],[14.44771,45.55697],[14.47642,45.55712],[14.47625,45.58419],[14.50504,45.58422],[14.50487,45.61128],[14.53375,45.61137],[14.53354,45.63832],[14.56229,45.63844],[14.56186,45.69242],[14.59074,45.69257],[14.59109,45.66553],[14.61984,45.66568],[14.62014,45.63868],[14.64885,45.63871],[14.6492,45.61173],[14.70683,45.61194],[14.70713,45.5579],[14.7358,45.55793],[14.73601,45.531],[14.79378,45.53112],[14.79382,45.50415],[14.82236,45.50421],[14.82262,45.47717],[14.88004,45.47735],[14.88008,45.5043],[15.11036,45.50421],[15.11028,45.47735],[15.1392,45.4772],[15.13899,45.45029],[15.22533,45.45011],[15.22593,45.47704],[15.34056,45.47674],[15.34073,45.50379],[15.28314,45.50394],[15.28391,45.63895],[15.34155,45.63868]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"category":"map","country_code":"HR","end_date":"2009","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-hok","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: HOK","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"1954","type":"wms","url":"https://geoportal.dgu.hr/services/hok/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=HOK5&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[15.98923,43.00063],[15.49553,43.00063],[15.49553,43.07165],[15.45605,43.07202],[15.45708,43.10336],[15.49519,43.10362],[15.49484,43.50075],[14.99496,43.50125],[14.99496,43.99874],[14.4947,44.00171],[14.49431,44.4891],[14.48633,44.4891],[14.48642,44.50024],[14.30995,44.50036],[14.30695,44.49736],[14.2969,44.50024],[13.4955,44.50024],[13.49595,46.00078],[15.49278,46.0003],[15.49347,46.50028],[15.98789,46.50027],[15.99609,46.99805],[16.49563,46.99922],[16.49666,46.50123],[17.50122,46.50091],[17.49453,45.99982],[19.49477,46.00078],[19.4949,44.50042],[18.49547,44.50091],[18.49445,44.99977],[16.49631,44.99928],[16.49528,44.50043],[16.99465,44.49969],[16.9955,43.99973],[17.49504,44.00029],[17.49504,43.50125],[17.99285,43.501],[17.99492,43.00264],[18.49411,43.00264],[18.49342,42.50197],[18.99467,42.50248],[18.99605,41.99675],[17.99149,41.9965],[17.9908,42.49742],[15.99472,42.49944],[15.98923,43.00063]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"category":"map","country_code":"HR","end_date":"1984","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-topo-100","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: Topo 100","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"1980","type":"wms","url":"https://geoportal.dgu.hr/services/tk/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tk:TK100&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.2474,42.50052],[15.49553,42.49995],[15.49553,43.07165],[15.45605,43.07202],[15.45708,43.10336],[15.49519,43.10362],[15.49484,43.50075],[14.49509,43.50175],[14.49431,44.4891],[14.48633,44.4891],[14.48642,44.50024],[14.30995,44.50036],[14.30695,44.49736],[14.2969,44.50024],[13.4955,44.50024],[13.4967,46.2226],[13.44589,46.22617],[13.44418,46.21334],[13.42289,46.20526],[13.4095,46.21381],[13.42289,46.23234],[13.37654,46.29666],[13.41431,46.30473],[13.42392,46.32109],[13.44864,46.33294],[13.43319,46.35807],[13.49636,46.37062],[13.49121,46.50028],[13.69995,46.50028],[13.71643,46.52202],[13.94028,46.51919],[13.96499,46.50217],[15.49347,46.50028],[15.49621,47.50143],[16.49803,47.5019],[16.49563,46.56453],[16.5152,46.56358],[16.53099,46.5017],[19.49472,46.50028],[19.4949,44.50042],[17.49367,44.5014],[17.49504,43.50125],[18.4948,43.50075],[18.49342,42.50197],[19.49455,42.50045],[19.49593,41.50086],[17.49435,41.50061],[17.49641,42.50147],[16.37581,42.50062],[16.37306,42.33317],[16.24466,42.3352],[16.2474,42.50052]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"category":"map","country_code":"HR","end_date":"1986","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-topo-200","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: Topo 200","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"1982","type":"wms","url":"https://geoportal.dgu.hr/services/tk/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tk:TK200&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.49987,42.70991],[17.04993,42.70902],[17.04963,42.7443],[17.17218,42.74374],[17.17218,42.77966],[17.04993,42.78022],[17.05023,42.79823],[17.00138,42.79873],[17.00138,42.82574],[16.96479,42.82585],[16.96456,42.79895],[16.49941,42.79968],[16.49987,42.7711],[16.4826,42.7711],[16.4826,42.74363],[16.50002,42.74363],[16.49987,42.70991]],[[13.42719,45.54859],[13.61807,45.55389],[13.62292,45.46386],[13.76198,45.4671],[13.76191,45.46936],[13.77081,45.46955],[13.77088,45.46742],[14.58109,45.48389],[14.58723,45.30405],[14.77841,45.30701],[14.78114,45.21712],[14.97186,45.21981],[14.97694,45.03983],[14.78659,45.03716],[14.78924,44.94727],[14.5992,44.94406],[14.6051,44.76444],[14.2263,44.75745],[14.21941,44.93719],[14.05163,44.93381],[14.05277,44.91124],[14.03103,44.91065],[14.03717,44.75352],[13.8478,44.74922],[13.845,44.81933],[13.82273,44.8189],[13.82175,44.83856],[13.65443,44.83453],[13.64534,45.01441],[13.45529,45.00943],[13.42719,45.54859]],[[15.44375,43.10094],[15.48034,43.10133],[15.48064,43.08341],[15.44383,43.08352],[15.44375,43.10094]],[[15.72242,46.21722],[15.91671,46.21827],[15.91962,45.94844],[15.7261,45.94721],[15.72242,46.21722]],[[15.57866,43.0662],[15.58047,42.97671],[15.76423,42.97704],[15.76438,42.99522],[15.81316,42.99588],[15.81347,43.01328],[15.7715,43.0135],[15.77181,43.04041],[15.76363,43.04041],[15.76393,43.06764],[15.57866,43.0662]],[[16.3049,46.48965],[16.49957,46.48986],[16.49972,46.39978],[16.30505,46.39967],[16.3049,46.48965]],[[15.53442,45.85567],[16.30679,45.85976],[16.30619,46.03979],[16.50032,46.04037],[16.49998,46.12978],[16.69404,46.12965],[16.6944,46.21962],[16.88874,46.21911],[16.88837,46.12915],[17.27626,46.12721],[17.27514,46.03719],[17.0814,46.0383],[17.08045,45.94841],[17.27391,45.94717],[17.27268,45.85726],[17.46569,45.8558],[17.46429,45.76578],[17.84972,45.762],[17.84113,45.40218],[18.03272,45.39968],[18.03778,45.57956],[18.22977,45.57683],[18.22707,45.48686],[18.41895,45.48394],[18.42194,45.57372],[18.806,45.56667],[18.7986,45.38682],[19.18132,45.37853],[19.17731,45.28839],[18.98605,45.29292],[18.97825,45.11311],[18.78775,45.11707],[18.78419,45.02731],[18.59384,45.03073],[18.60395,45.30056],[18.22152,45.30697],[18.22428,45.39693],[18.03286,45.39964],[18.02795,45.21976],[18.21887,45.2172],[18.21341,45.03721],[17.4521,45.04599],[17.45339,45.12428],[17.44581,45.12431],[17.44577,45.13107],[17.45339,45.13107],[17.45346,45.13599],[17.42309,45.13617],[17.42309,45.13131],[17.35944,45.13181],[17.35954,45.13676],[16.49994,45.13997],[16.50032,44.96003],[16.11978,44.95936],[16.11914,45.04937],[15.92881,45.04857],[15.92784,45.13855],[15.54639,45.13604],[15.54942,44.95604],[15.7395,44.95747],[15.74304,44.68753],[15.93235,44.68862],[15.93144,44.7785],[16.12088,44.77934],[16.1258,44.50938],[16.31126,44.50983],[16.3125,44.14984],[16.49991,44.14998],[16.50002,44.06],[16.68726,44.05983],[16.68669,43.87982],[16.87325,43.87936],[16.87221,43.70925],[16.87842,43.70922],[16.87837,43.69932],[17.05822,43.6986],[17.05747,43.6086],[17.24319,43.6075],[17.24217,43.51755],[17.42761,43.51622],[17.4236,43.24615],[17.60821,43.24448],[17.60668,43.15452],[17.791,43.15255],[17.78723,42.97258],[17.9711,42.97037],[17.96681,42.79042],[18.15005,42.78789],[18.14778,42.69789],[18.3307,42.6951],[18.32853,42.62021],[18.37964,42.61937],[18.37926,42.60432],[18.51071,42.60206],[18.50551,42.43715],[18.55404,42.43625],[18.55355,42.42127],[18.68705,42.41881],[18.68394,42.32883],[18.50215,42.33212],[18.50454,42.40708],[18.48025,42.40746],[18.48072,42.42256],[18.32286,42.42516],[18.32527,42.5084],[18.31006,42.50865],[18.31025,42.51538],[18.14308,42.51789],[18.14539,42.60794],[17.59706,42.61447],[17.59861,42.70448],[17.23248,42.7074],[17.23346,42.79734],[17.33863,42.79667],[17.33875,42.80837],[17.40722,42.80784],[17.40714,42.7962],[17.41691,42.79617],[17.41813,42.88612],[16.50006,42.88987],[16.49994,43.06991],[16.31585,43.06971],[16.31611,42.97987],[16.13228,42.9792],[16.13273,42.88914],[15.94913,42.88859],[15.94746,43.07965],[16.13152,43.08075],[16.13114,43.15921],[16.31573,43.15987],[16.31543,43.16694],[16.30505,43.167],[16.30498,43.17777],[16.31558,43.17788],[16.31497,43.33975],[16.13008,43.33926],[16.12955,43.41313],[16.11724,43.41305],[16.11717,43.42569],[16.10607,43.42567],[16.106,43.42923],[15.9442,43.42857],[15.94344,43.5087],[15.91625,43.50859],[15.91618,43.51839],[15.75789,43.51755],[15.75673,43.60747],[15.3852,43.6044],[15.38335,43.69456],[15.19751,43.69259],[15.19372,43.8618],[15.17509,43.86158],[15.17463,43.87207],[15.00701,43.87026],[15.00481,43.96046],[15.37823,43.9646],[15.37687,44.05438],[15.18963,44.05242],[15.18357,44.32247],[14.99572,44.32011],[14.98633,44.67999],[15.17548,44.68236],[15.16299,45.22216],[15.35396,45.22424],[15.35218,45.31423],[15.5434,45.31596],[15.53442,45.85567]],[[16.23264,42.36768],[16.35459,42.36858],[16.35413,42.4036],[16.23218,42.40349],[16.23264,42.36768]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"category":"map","country_code":"HR","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-topo-25-new","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: Topo 25 new","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"2011","type":"wms","url":"https://geoportal.dgu.hr/services/tk/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tk:TK25_NOVI&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.245,46.6248],[16.49546,46.62492],[16.49503,46.50016],[16.87019,46.49981],[16.86968,46.375],[16.99482,46.375],[16.99448,46.25003],[17.24459,46.25015],[17.24476,46.12501],[17.3699,46.12489],[17.37007,46.00018],[17.74498,45.99994],[17.74481,45.87483],[18.61994,45.87507],[18.61959,46.00018],[18.99485,45.99982],[18.99485,45.62499],[19.1199,45.62496],[19.11982,45.37476],[19.36984,45.37494],[19.3701,45.25012],[19.49507,45.25],[19.49524,45.12502],[19.12016,45.12466],[19.11982,44.99989],[19.24444,45.00013],[19.24496,44.87509],[19.11982,44.87485],[19.11982,44.75015],[18.74474,44.74978],[18.74508,44.9903],[18.72568,44.9903],[18.72568,44.99977],[17.37007,44.99965],[17.37024,45.12514],[16.49528,45.1249],[16.49546,45.00001],[16.31693,45.00013],[16.31676,44.99491],[16.28483,44.99491],[16.28534,44.99977],[15.99524,45.00013],[15.99506,45.12514],[15.87009,45.12502],[15.87044,44.75015],[16.1202,44.75015],[16.11986,44.51671],[16.1257,44.51646],[16.12553,44.50006],[16.245,44.49993],[16.24517,44.25012],[16.37014,44.25012],[16.3698,44.12506],[16.62043,44.1253],[16.62077,44.00035],[16.74488,43.99998],[16.7454,43.87587],[16.87054,43.87538],[16.87019,43.75039],[16.99482,43.75002],[16.99533,43.62551],[17.24493,43.62489],[17.24527,43.50013],[17.36973,43.50001],[17.37024,43.24995],[17.61967,43.25008],[17.62018,43.12517],[17.74498,43.12529],[17.74498,43.00038],[17.87012,43.00025],[17.86995,42.87546],[18.11989,42.87559],[18.12006,42.75016],[18.24503,42.75016],[18.2452,42.62512],[18.49462,42.62537],[18.49514,42.50058],[18.61994,42.50033],[18.62011,42.37491],[18.37017,42.37529],[18.37017,42.48919],[18.34528,42.48931],[18.34528,42.50045],[18.12023,42.50007],[18.12006,42.61817],[18.11079,42.6183],[18.11062,42.62512],[17.49487,42.62487],[17.49453,42.73831],[17.43324,42.73806],[17.43324,42.74991],[17.2451,42.75016],[17.2451,42.87521],[16.99516,42.87508],[16.99516,42.83368],[17.17043,42.83343],[17.17026,42.75016],[16.95345,42.75016],[16.95345,42.66716],[16.77887,42.66716],[16.77835,42.75016],[16.72832,42.7502],[16.72829,42.74769],[16.70636,42.74775],[16.70628,42.75026],[16.62008,42.75029],[16.62008,42.97947],[16.60605,42.9795],[16.60601,42.99109],[16.62013,42.99137],[16.61991,43.12523],[16.36989,43.12504],[16.36989,43.00006],[16.12003,43.00038],[16.12038,42.95831],[16.01266,42.95824],[16.0124,42.9502],[15.99515,42.95008],[15.99524,43.08356],[16.1202,43.08356],[16.1202,43.12529],[16.24552,43.12492],[16.24466,43.37486],[15.99524,43.37511],[15.99524,43.48902],[15.99309,43.48911],[15.99313,43.49558],[15.99524,43.49558],[15.99524,43.49848],[15.9827,43.49854],[15.98266,43.49042],[15.95648,43.49032],[15.95657,43.50007],[15.87018,43.50007],[15.87018,43.62508],[15.74555,43.62483],[15.74547,43.61949],[15.62011,43.61936],[15.62024,43.62085],[15.49544,43.62085],[15.49527,43.62508],[15.3703,43.62502],[15.37028,43.74428],[15.35541,43.74433],[15.35537,43.74996],[15.12019,43.74996],[15.12011,43.87507],[14.99539,43.87507],[14.99522,44.00004],[14.87051,44.00004],[14.87025,44.12487],[14.7452,44.12493],[14.74545,44.24557],[14.7331,44.24557],[14.73292,44.24999],[14.49543,44.24993],[14.49552,44.4913],[14.48419,44.49987],[14.31004,44.49987],[14.31004,44.49706],[14.29871,44.49709],[14.29871,44.49999],[14.24549,44.50006],[14.24515,44.61552],[14.22884,44.61577],[14.22884,44.62493],[14.12035,44.62444],[14.12052,44.7499],[14.24532,44.75003],[14.24515,44.87497],[14.00448,44.87497],[14.00499,44.7995],[13.99555,44.79938],[13.99538,44.75015],[13.74544,44.74978],[13.74561,44.87497],[13.62064,44.87509],[13.62039,45.04157],[13.60382,45.04139],[13.60391,45.12478],[13.4955,45.12478],[13.49567,45.46519],[13.48675,45.46519],[13.4864,45.49648],[13.49533,45.49648],[13.49516,45.50683],[13.53807,45.50719],[13.53807,45.49997],[13.87041,45.49985],[13.87058,45.62472],[14.11983,45.62472],[14.12052,45.49997],[14.20618,45.50033],[14.20618,45.5096],[14.27708,45.50996],[14.27725,45.50021],[14.36995,45.50009],[14.37012,45.62484],[14.49526,45.62472],[14.4956,45.7498],[14.62023,45.74992],[14.6204,45.62496],[14.99514,45.62484],[14.99548,45.50009],[15.24508,45.49997],[15.24525,45.71649],[15.23701,45.71661],[15.23701,45.72524],[15.24542,45.72524],[15.24559,45.87483],[15.61998,45.87507],[15.61981,45.9997],[15.49519,45.99947],[15.49484,46.25003],[15.74512,46.24979],[15.7453,46.37489],[15.99472,46.37512],[15.99472,46.49993],[16.24517,46.49981],[16.245,46.6248]],[[15.68264,42.95868],[15.80795,42.95818],[15.80761,43.08318],[15.68264,43.08368],[15.68264,42.95868]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sadrži podatke Državne geodetske uprave","url":"https://dgu.gov.hr/"},"available_projections":["EPSG:3765","EPSG:4326"],"category":"map","country_code":"HR","end_date":"2011","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png","id":"dgu-topo-25","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","name":"dgu.hr: Topo 25","permission_osm":"explicit","privacy_policy_url":"https://geoportal.dgu.hr/#/menu/uvjeti-koristenja","start_date":"1996","type":"wms","url":"https://geoportal.dgu.hr/services/tk/ows?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tk:TK25&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.21712,44.08054],[16.22916,44.08041],[16.22938,44.06055],[16.2303,44.05757],[16.23715,44.04213],[16.23715,44.03615],[16.23041,44.03599],[16.22494,44.03627],[16.2243,44.03599],[16.22404,44.03504],[16.21608,44.02178],[16.21286,44.01661],[16.20391,44.01672],[16.19269,44.02601],[16.18003,44.03662],[16.18011,44.03772],[16.21129,44.06685],[16.21712,44.08054]]],"type":"Polygon"},"properties":{"category":"historicphoto","country_code":"HR","end_date":"2007","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png","id":"osm-hr-knin-2007","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","max_zoom":20,"min_zoom":0,"name":"osm-hr: Knin 2007 Aerial imagery","permission_osm":"explicit","privacy_policy_url":"https://tms.osm-hr.org/privacy.htm","start_date":"2007","type":"tms","url":"https://tms.osm-hr.org/knin-2007/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[19.59394,45.00171],[19.70329,45.00547],[19.70441,43.01839],[19.77633,43.02304],[19.77427,42.11507],[19.66935,42.11019],[19.66656,42.98104],[19.59377,42.97665],[19.59394,45.00171]],[[21.49434,44.00064],[21.60243,44.00519],[21.60273,41.98521],[21.49527,41.97908],[21.49434,44.00064]],[[15.48386,45.51525],[15.59338,45.5102],[15.59355,44.51169],[15.66994,44.5156],[15.672,45.25531],[15.77499,45.25411],[15.77568,44.47642],[15.75886,44.47618],[15.75611,44.24569],[15.82169,44.2452],[15.82203,44.51156],[15.92279,44.51046],[15.92245,44.2618],[15.98837,44.26094],[15.98614,44.51022],[16.09531,44.5156],[16.09016,43.4736],[15.9918,43.4746],[15.98991,43.99825],[15.92365,43.99924],[15.92674,43.48132],[15.64453,43.46987],[15.65277,43.97898],[15.48385,43.97602],[15.48042,44.2393],[15.56145,44.24274],[15.55904,44.4725],[15.48489,44.47201],[15.48386,45.51525]],[[18.79237,44.00158],[18.90404,44.00813],[18.8994,42.19012],[18.79864,42.18821],[18.79237,44.00158]],[[19.39593,42.03272],[19.50138,42.03734],[19.50056,44.59982],[19.39748,44.59838],[19.39593,42.03272]],[[21.35021,45.06504],[21.46076,45.04982],[21.21554,44.33975],[21.11795,44.35651],[21.35021,45.06504]],[[16.90521,45.22606],[17.02057,45.22606],[17.01713,46.01461],[16.92238,46.02128],[16.92032,46.16889],[17.01096,46.16937],[17.01507,46.7963],[16.92169,46.79677],[16.92169,47.01397],[16.53511,47.01818],[16.53717,46.48397],[16.45889,46.48705],[16.46061,47.01561],[15.98305,47.01608],[15.98339,46.95542],[15.90031,46.95143],[15.90752,45.84399],[16.00965,45.84339],[16.00914,45.97334],[16.37031,45.97549],[16.36825,46.23258],[16.44379,46.23305],[16.44722,45.96452],[16.64978,45.95736],[16.64978,45.97358],[16.90315,45.97072],[16.90521,45.22606]],[[15.29674,45.59698],[15.40112,45.59795],[15.39974,45.00632],[15.2988,45.00632],[15.29674,45.59698]],[[15.97412,45.78345],[16.13153,45.78446],[16.13814,45.69833],[15.97936,45.69959],[15.97412,45.78345]],[[20.4847,44.95994],[20.67661,44.96091],[20.67541,44.65815],[20.48658,44.65937],[20.4847,44.95994]],[[18.98403,47.01631],[19.27586,47.01631],[19.27654,45.97788],[19.16977,45.97549],[19.17114,46.48965],[19.09098,46.48906],[19.09115,46.23329],[18.98678,46.23246],[18.98403,47.01631]],[[13.59695,45.63229],[14.01031,45.61884],[14.01581,44.96893],[13.70441,44.96796],[13.70407,44.87461],[13.59283,44.87242],[13.59695,45.63229]],[[16.30663,45.51074],[16.51623,45.51429],[16.51211,44.73015],[16.4043,44.73417],[16.4043,45.24903],[16.30955,45.25],[16.30663,45.51074]],[[20.33295,44.96067],[20.44933,44.9597],[20.4483,44.65449],[20.33535,44.65937],[20.33295,44.96067]],[[19.35362,47.01502],[19.46005,47.01549],[19.46056,45.96845],[19.35379,45.96666],[19.35362,47.01502]],[[16.15505,44.50899],[16.26595,44.51585],[16.26217,44.24077],[16.32465,44.24151],[16.32397,44.5112],[16.4352,44.51658],[16.42997,43.47553],[16.24535,43.47385],[16.24466,43.72707],[16.16055,43.72794],[16.15505,44.50899]],[[19.92714,43.97651],[20.03632,43.98244],[20.03717,46.00686],[20.0116,46.00573],[20.02052,47.02474],[19.533,47.01397],[19.53953,45.97382],[19.73556,45.97096],[19.73848,46.73951],[19.81007,46.7361],[19.81676,45.97442],[19.92336,45.97334],[19.92714,43.97651]],[[21.98055,42.96107],[21.98038,44.79377],[22.08801,44.79329],[22.08681,44.5868],[22.1517,44.58594],[22.14809,45.01542],[22.25933,45.01967],[22.25281,44.12407],[22.31872,44.12358],[22.31666,44.75697],[22.39357,44.75844],[22.39494,45.0022],[22.59484,45.01606],[22.5927,43.60377],[22.49382,43.60526],[22.49382,43.76961],[22.4231,43.7701],[22.42378,43.53312],[22.49794,43.53212],[22.50069,43.31818],[22.58789,43.31619],[22.5872,43.27521],[22.60368,43.27371],[22.603,42.97602],[22.5872,42.97451],[22.58446,42.88502],[22.48764,42.88603],[22.48695,42.97099],[22.22465,42.94587],[22.22603,42.97501],[21.98055,42.96107]],[[15.90666,45.64165],[16.00965,45.64201],[16.01352,44.96404],[15.90314,44.95927],[15.90666,45.64165]]],"type":"Polygon"},"properties":{"category":"historicphoto","country_code":"HR","end_date":"2007","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png","id":"osm-hr-orbview","license_url":"https://lists.openstreetmap.org/pipermail/talk/2012-January/061546.html","max_zoom":17,"min_zoom":0,"name":"osm-hr: Orbview","permission_osm":"implicit","privacy_policy_url":"https://tms.osm-hr.org/privacy.htm","start_date":"2003","type":"tms","url":"https://tms.osm-hr.org/orbview/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[14.70005,45.75004],[15.00046,45.75004],[15.00046,45.50081],[14.70005,45.50033],[14.70005,45.75004]],[[20.99995,42.00004],[20.99899,41.49932],[21.90262,41.49932],[21.8985,41.7498],[22.19993,41.75004],[22.19959,41.50061],[22.80006,41.50086],[22.79938,41.99982],[22.50069,42.00084],[22.49931,42.24987],[22.19994,42.24987],[22.19788,42.00186],[21.59912,42.00084],[21.59981,42.24987],[21.30043,42.24987],[21.29974,42.00033],[20.99995,42.00004]],[[13.49962,46.50217],[13.49945,45.50009],[14.09958,45.50105],[14.09958,45.75028],[13.79883,45.75028],[13.8002,45.99982],[14.39964,46.0003],[14.40102,46.2492],[14.09958,46.24967],[14.10026,46.49981],[13.49962,46.50217]],[[15.89996,46.75115],[16.19968,46.75048],[16.19917,46.5004],[15.89979,46.5004],[15.89996,46.75115]],[[15.59964,45.25006],[16.80084,45.25],[16.80016,45.49985],[16.50009,45.50009],[16.49975,45.75004],[16.79981,45.75004],[16.80018,45.50012],[17.0997,45.50009],[17.10005,45.24988],[18.89854,45.25193],[18.89992,45.75052],[18.6002,45.75052],[18.60054,45.99982],[19.49936,45.99887],[19.49867,46.24944],[20.39921,46.24896],[20.39886,46.00006],[20.69893,45.99959],[20.69824,45.50009],[20.99899,45.50009],[21.00037,45.25024],[21.29837,45.25169],[21.297,45.00171],[21.60187,45.00171],[21.59912,44.74673],[21.89438,44.74673],[21.89987,44.50238],[22.1965,44.49944],[22.20062,44.75064],[22.49863,44.74868],[22.49863,43.50075],[22.798,43.49876],[22.79938,43.25021],[23.09875,43.2492],[23.1015,43.00164],[22.49588,42.99963],[22.49863,42.50045],[21.89712,42.50045],[21.90262,42.74903],[21.59775,42.74802],[21.59775,42.50147],[21.30112,42.50147],[21.29837,42.74903],[20.99762,42.75105],[20.99899,43.00063],[20.69961,43.00063],[20.69961,42.75105],[19.80148,42.75206],[19.80423,42.50248],[19.49936,42.49944],[19.50073,42.00237],[18.88962,42.00033],[18.88824,42.24987],[18.29773,42.24784],[18.2991,42.49944],[17.70035,42.50147],[17.69897,42.74903],[17.3996,42.75004],[17.40234,43.00164],[17.10022,43.00063],[17.10022,43.50075],[16.79947,43.50275],[16.80084,43.74927],[16.50284,43.74828],[16.49872,43.50374],[16.20209,43.50075],[16.19797,43.74927],[16.49803,43.75082],[16.49872,44.00121],[15.90134,43.99973],[15.89928,44.49993],[15.60059,44.49944],[15.59964,45.25006]],[[14.40033,45.25024],[14.69902,45.25024],[14.70002,44.99997],[14.4017,45.00074],[14.40033,45.25024]],[[21.59997,41.25002],[21.89996,41.25052],[21.90056,41.00218],[21.60118,41.00115],[21.59997,41.25002]],[[14.69996,46.49996],[14.99984,46.50017],[14.99951,46.25039],[14.69962,46.25005],[14.69996,46.49996]],[[13.7996,45.25018],[14.09992,45.25048],[14.10027,44.74966],[13.80089,44.75063],[13.7996,45.25018]],[[20.39886,41.75185],[20.40024,41.00218],[21.29974,41.00011],[21.29837,41.25045],[20.7003,41.25097],[20.69824,41.74929],[20.39886,41.75185]]],"type":"Polygon"},"properties":{"category":"map","country_code":"HR","end_date":"2002","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png","id":"osm-hr-ustopo50","license_url":"https://legacy.lib.utexas.edu/maps/faq.html#3.html","max_zoom":15,"min_zoom":0,"name":"osm-hr: US Topo 50","permission_osm":"implicit","privacy_policy_url":"https://tms.osm-hr.org/privacy.htm","start_date":"1992","type":"tms","url":"https://tms.osm-hr.org/ustopo/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[16.15334,45.96857],[16.17462,45.94041],[16.17599,45.91796],[16.18595,45.90793],[16.18423,45.89789],[16.19728,45.8924],[16.22578,45.86085],[16.22097,45.85248],[16.22938,45.84638],[16.22921,45.84148],[16.24088,45.83645],[16.21719,45.83885],[16.20655,45.82784],[16.19865,45.77638],[16.1602,45.79554],[16.12827,45.80224],[16.13033,45.79434],[16.12278,45.78716],[16.10081,45.7862],[16.07677,45.77303],[16.0572,45.75746],[16.03901,45.76082],[16.03695,45.7577],[16.03935,45.75411],[16.02699,45.75507],[16.01772,45.74453],[16.01772,45.71936],[15.98785,45.71601],[15.96554,45.69131],[15.96725,45.67236],[15.95077,45.65125],[15.95077,45.63589],[15.94768,45.62989],[15.94288,45.63109],[15.93395,45.62172],[15.92606,45.61932],[15.92125,45.6138],[15.90031,45.62244],[15.90717,45.63229],[15.89619,45.63565],[15.87421,45.65557],[15.83885,45.66517],[15.81722,45.67044],[15.8131,45.67716],[15.77568,45.68915],[15.77396,45.7081],[15.78941,45.73398],[15.79285,45.73159],[15.80898,45.7383],[15.81001,45.73063],[15.82237,45.72344],[15.83473,45.72871],[15.85155,45.71673],[15.87078,45.73159],[15.84434,45.73159],[15.84469,45.76465],[15.83834,45.76764],[15.81276,45.76764],[15.80555,45.77543],[15.80538,45.80403],[15.8325,45.80391],[15.82993,45.80762],[15.83319,45.81062],[15.82289,45.82581],[15.82186,45.83837],[15.82975,45.84136],[15.84074,45.83992],[15.8452,45.84112],[15.84434,45.84459],[15.84984,45.84805],[15.85052,45.85236],[15.85979,45.85511],[15.86031,45.85308],[15.86477,45.85272],[15.87301,45.85451],[15.87378,45.85755],[15.87328,45.86081],[15.87816,45.8621],[15.87782,45.86563],[15.88263,45.8618],[15.88649,45.86306],[15.88529,45.86545],[15.89026,45.87603],[15.89709,45.88143],[15.9082,45.88642],[15.92125,45.88953],[15.9288,45.88762],[15.93876,45.89359],[15.92194,45.89431],[15.91988,45.89789],[15.92983,45.90339],[15.94768,45.90434],[15.95352,45.90554],[15.95524,45.91223],[15.97412,45.91271],[15.99918,45.92369],[16.00811,45.9299],[16.02802,45.93324],[16.03043,45.93611],[16.04313,45.93969],[16.05206,45.93563],[16.05171,45.94447],[16.06476,45.94661],[16.06579,45.95115],[16.0778,45.95569],[16.09325,45.95903],[16.09497,45.95449],[16.10767,45.95688],[16.11317,45.96165],[16.11282,45.96762],[16.12038,45.96905],[16.13205,45.96475],[16.1372,45.96523],[16.13823,45.96786],[16.15334,45.96857]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada","url":"https://geoportal.zagreb.hr/"},"category":"historicphoto","country_code":"HR","end_date":"2012","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png","id":"osm-hr-zagreb-2012","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","max_zoom":20,"min_zoom":0,"name":"osm-hr: Zagreb 2012 Aerial imagery","permission_osm":"explicit","privacy_policy_url":"https://tms.osm-hr.org/privacy.htm","start_date":"2012","type":"tms","url":"https://tms.osm-hr.org/zagreb-2012/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.87649,45.87423],[15.87739,45.87821],[15.88087,45.88248],[15.88503,45.8849],[15.88773,45.88741],[15.89112,45.88953],[15.89357,45.89019],[15.89773,45.89311],[15.90151,45.8944],[15.90687,45.89527],[15.91116,45.89652],[15.91455,45.89691],[15.91953,45.89837],[15.92378,45.89891],[15.92786,45.89849],[15.93035,45.90133],[15.9343,45.90408],[15.93854,45.90599],[15.94155,45.90817],[15.94567,45.9096],[15.9509,45.91008],[15.95326,45.91166],[15.95605,45.91378],[15.96138,45.9159],[15.96507,45.92053],[15.96923,45.92298],[15.97734,45.92536],[15.98232,45.92814],[15.9873,45.9305],[15.99047,45.93104],[15.99463,45.93405],[16.00287,45.93802],[16.00687,45.93924],[16.01219,45.93945],[16.01648,45.93996],[16.01789,45.94056],[16.0191,45.94262],[16.02219,45.9447],[16.02579,45.94605],[16.03141,45.94721],[16.03618,45.94834],[16.04103,45.94849],[16.04352,45.95094],[16.04759,45.95267],[16.05025,45.95339],[16.05326,45.95401],[16.05609,45.95673],[16.06008,45.95876],[16.06536,45.9598],[16.06819,45.96252],[16.07167,45.96407],[16.07549,45.96493],[16.07931,45.96508],[16.08141,45.96538],[16.08411,45.96669],[16.08707,45.96744],[16.09076,45.96762],[16.0936,45.96729],[16.09566,45.96657],[16.09755,45.96562],[16.09922,45.96463],[16.10034,45.96475],[16.10089,45.96565],[16.10098,45.96693],[16.10132,45.97027],[16.1027,45.97281],[16.10527,45.97504],[16.10827,45.97648],[16.11205,45.9774],[16.11407,45.97755],[16.11669,45.97803],[16.11948,45.97815],[16.12334,45.97758],[16.12707,45.97633],[16.12939,45.97603],[16.13179,45.9754],[16.13402,45.97618],[16.13703,45.97683],[16.13892,45.97698],[16.14145,45.97743],[16.14428,45.9774],[16.14557,45.97722],[16.1481,45.97767],[16.15145,45.97761],[16.15415,45.97797],[16.15724,45.97797],[16.1599,45.97734],[16.16235,45.97663],[16.16458,45.97525],[16.16651,45.97334],[16.16793,45.9712],[16.16844,45.9689],[16.16896,45.96726],[16.16913,45.96529],[16.17123,45.96443],[16.17376,45.96264],[16.17621,45.96076],[16.1778,45.95888],[16.17866,45.95664],[16.17866,45.95524],[16.17956,45.95321],[16.17964,45.95082],[16.17986,45.94945],[16.18278,45.94736],[16.18462,45.94521],[16.18582,45.94276],[16.18595,45.94065],[16.18578,45.93874],[16.18509,45.93727],[16.18582,45.93506],[16.18617,45.93256],[16.18578,45.93059],[16.18608,45.92721],[16.18728,45.92548],[16.18771,45.9228],[16.19067,45.92077],[16.1923,45.91856],[16.19308,45.91644],[16.19329,45.91515],[16.19535,45.91309],[16.19698,45.91059],[16.19741,45.90784],[16.19737,45.90605],[16.19647,45.90378],[16.19651,45.90279],[16.19951,45.9027],[16.20359,45.90163],[16.20625,45.90022],[16.20827,45.89822],[16.2117,45.89365],[16.21505,45.88854],[16.21664,45.88553],[16.21977,45.88338],[16.22204,45.8806],[16.22591,45.87531],[16.2338,45.86969],[16.2359,45.86862],[16.23874,45.86626],[16.24032,45.86327],[16.24071,45.85983],[16.2405,45.85855],[16.24002,45.85598],[16.23904,45.85409],[16.23779,45.85281],[16.23972,45.85122],[16.24093,45.84949],[16.2417,45.84737],[16.24487,45.84641],[16.24779,45.84474],[16.25041,45.84231],[16.25191,45.8401],[16.25247,45.83795],[16.25204,45.83517],[16.26826,45.83511],[16.26831,45.8236],[16.22974,45.82356],[16.2299,45.78591],[16.21109,45.78616],[16.21101,45.78447],[16.21243,45.7827],[16.21333,45.78039],[16.21333,45.77797],[16.2123,45.77558],[16.2099,45.77309],[16.20788,45.77129],[16.20543,45.76977],[16.20217,45.76878],[16.19934,45.76827],[16.19552,45.76851],[16.19174,45.7695],[16.17531,45.77818],[16.16934,45.78081],[16.1578,45.78497],[16.1508,45.78692],[16.14394,45.78701],[16.14368,45.77965],[16.11181,45.69503],[16.07629,45.69513],[16.07624,45.69708],[16.02624,45.69689],[16.01491,45.70991],[16.01129,45.70996],[16.00871,45.71028],[16.00373,45.71008],[15.99841,45.70879],[15.99472,45.70513],[15.99386,45.70237],[15.99172,45.69914],[15.9888,45.69698],[15.98657,45.69581],[15.98369,45.69365],[15.97949,45.69185],[15.97923,45.68954],[15.97803,45.68739],[15.98022,45.68427],[15.98077,45.68091],[15.98043,45.67911],[15.9797,45.67755],[15.97944,45.6756],[15.97858,45.67314],[15.97906,45.6711],[15.97871,45.66844],[15.97704,45.66604],[15.97459,45.66379],[15.97305,45.66196],[15.97052,45.65968],[15.97034,45.65614],[15.96846,45.6526],[15.96627,45.65023],[15.96215,45.64795],[15.96223,45.64567],[15.96288,45.64225],[15.96271,45.64],[15.96335,45.63724],[15.96279,45.63478],[15.95987,45.63049],[15.95944,45.6273],[15.95768,45.62454],[15.95429,45.62211],[15.95163,45.62118],[15.94803,45.62061],[15.94494,45.61761],[15.94082,45.61515],[15.93799,45.61389],[15.93408,45.61305],[15.93099,45.60935],[15.92764,45.60704],[15.92322,45.60542],[15.91816,45.605],[15.91352,45.60596],[15.91181,45.60671],[15.90885,45.6074],[15.90387,45.6083],[15.90074,45.60989],[15.89812,45.6114],[15.89464,45.61263],[15.89194,45.61431],[15.8885,45.61665],[15.8864,45.61911],[15.88554,45.62199],[15.88584,45.6246],[15.88747,45.62697],[15.88816,45.62808],[15.88464,45.63013],[15.88224,45.63256],[15.88134,45.63436],[15.88095,45.63577],[15.87778,45.63718],[15.87554,45.63859],[15.87215,45.64033],[15.86984,45.64267],[15.86821,45.64525],[15.86666,45.64738],[15.86318,45.64744],[15.85962,45.64807],[15.85696,45.64912],[15.85413,45.6502],[15.85138,45.65014],[15.84731,45.65104],[15.84426,45.65242],[15.84224,45.65395],[15.83967,45.65515],[15.83417,45.6562],[15.83027,45.65755],[15.82709,45.65923],[15.8246,45.66118],[15.82044,45.66112],[15.81563,45.66136],[15.81048,45.66271],[15.80641,45.66514],[15.80435,45.66796],[15.80306,45.67008],[15.79851,45.67149],[15.79529,45.67338],[15.7928,45.6735],[15.78817,45.6747],[15.78349,45.67632],[15.77521,45.67992],[15.76791,45.6837],[15.76525,45.68649],[15.76431,45.68909],[15.76427,45.69158],[15.76379,45.69539],[15.76405,45.69944],[15.76281,45.70246],[15.76079,45.70606],[15.7607,45.70957],[15.76221,45.71289],[15.76598,45.71652],[15.76856,45.72287],[15.77143,45.72748],[15.77345,45.73264],[15.77748,45.73713],[15.77989,45.73985],[15.78371,45.74183],[15.78787,45.74282],[15.79169,45.74255],[15.79551,45.74387],[15.79808,45.74474],[15.8013,45.74617],[15.80615,45.74716],[15.80438,45.87573],[15.83911,45.87594],[15.84298,45.8754],[15.84322,45.85968],[15.84542,45.86074],[15.84866,45.86191],[15.85106,45.86268],[15.85246,45.86304],[15.85518,45.86382],[15.85733,45.86421],[15.8599,45.86422],[15.8617,45.86397],[15.8637,45.86682],[15.86499,45.86781],[15.86726,45.87077],[15.87035,45.87286],[15.87301,45.8737],[15.87649,45.87423]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada","url":"https://geoportal.zagreb.hr/"},"best":true,"category":"photo","country_code":"HR","end_date":"2018","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png","id":"osm-hr-zagreb-2018","license_url":"https://narodne-novine.nn.hr/clanci/sluzbeni/2013_02_25_403.html","max_zoom":20,"min_zoom":0,"name":"osm-hr: Zagreb 2018 Aerial imagery","permission_osm":"explicit","privacy_policy_url":"https://tms.osm-hr.org/privacy.htm","start_date":"2018","type":"tms","url":"https://tms.osm-hr.org/zagreb-2018/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"https://terinfo.ujbuda.hu"},"available_projections":["EPSG:4326","EPSG:23700"],"country_code":"HU","description":"5 cm resolution bald image","end_date":"2015","id":"Budapest_XI_2015","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofotók#Budapest_XI._ker.C3.BClet","name":"Budapest district XI orthophoto 2015","start_date":"2015","type":"wms","url":"https://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto2015_20160304&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"https://terinfo.ujbuda.hu"},"available_projections":["EPSG:4326","EPSG:23700"],"country_code":"HU","description":"5 cm resolution bald image","end_date":"2017-03","id":"Budapest_XI_2017","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofotók#Budapest_XI._ker.C3.BClet","name":"Budapest district XI orthophoto 2017","privacy_policy_url":"https://kozigazgatas.ujbuda.hu/adatvedelem","start_date":"2017-03","type":"wms","url":"https://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"http://terinfo.ujbuda.hu"},"available_projections":["EPSG:4326","EPSG:23700"],"best":true,"country_code":"HU","description":"5 cm resolution bald image","end_date":"2019","id":"Budapest_XI_2019","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofotók#Budapest_XI._ker.C3.BClet","name":"Budapest district XI orthophoto 2019","privacy_policy_url":"https://kozigazgatas.ujbuda.hu/adatvedelem","start_date":"2019","type":"wms","url":"https://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2019&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.07732,47.69597],[19.07799,47.69598],[19.09462,47.69446],[19.08056,47.59587],[19.07434,47.58909],[19.07952,47.58883],[19.07717,47.57241],[19.05779,47.57209],[19.07732,47.69597]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Fotótérkép.hu","url":"http://fototerkep.hu"},"country_code":"HU","description":"Riverbank of Danube at Budapest, Szentendre and Szigetmonostor","end_date":"2013","id":"Duna_2013","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#.C3.81rv.C3.ADzi_ortofot.C3.B3_a_Dun.C3.A1r.C3.B3l","max_zoom":20,"min_zoom":10,"name":"Danube flood orthophoto 2013","start_date":"2013","type":"tms","url":"http://e.tile.openstreetmap.hu/dunai-arviz-2013/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[18.17918,46.98502],[18.17773,47.01816],[18.08176,47.05643],[18.10281,47.06311],[18.08152,47.09344],[18.06436,47.09049],[18.03537,47.07983],[18.03344,47.08262],[17.9582,47.05567],[17.99436,47.00449],[17.86441,46.95517],[17.80274,47.0103],[17.67184,46.97207],[17.23875,46.77079],[17.22244,46.6796],[17.47175,46.70306],[18.16735,46.94133],[18.17918,46.98502]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"EUFAR Balaton ortofotó 2010","url":"http://www.bli.okologia.mta.hu/"},"best":true,"country_code":"HU","default":false,"description":"1940 geo-tagged photography from Balaton Limnological Institute.","end_date":"2010-08-31","i18n":true,"id":"eufar-balaton","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#Balaton","max_zoom":19,"min_zoom":12,"name":"EUFAR Balaton orthophotos","overlay":false,"permission_osm":"explicit","start_date":"2010-08-01","type":"tms","url":"http://e.tile.openstreetmap.hu/balaton/0/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[15.0,45.0],[24.0,45.0],[24.0,49.0],[15.0,49.0],[15.0,45.0]]],"type":"Polygon"},"properties":{"attribution":{"text":"SRTM"},"country_code":"HU","id":"hu-hillshade","max_zoom":18,"name":"Hillshade Hungary","overlay":true,"type":"tms","url":"https://{switch:a,b,c}.map.turistautak.hu/tiles/shading/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[16.11391,46.8691],[16.17897,46.90662],[16.20004,46.94151],[16.22175,46.93554],[16.24628,46.94639],[16.25532,46.96421],[16.27647,46.96261],[16.29058,47.01398],[16.30162,46.99923],[16.34146,46.99652],[16.35052,47.01063],[16.3734,46.99859],[16.41277,47.00475],[16.43327,46.99274],[16.44781,47.00389],[16.48,46.99412],[16.5122,47.00117],[16.46356,47.03227],[16.44786,47.02275],[16.43912,47.02966],[16.44567,47.03887],[16.52032,47.0561],[16.47321,47.07362],[16.46372,47.09392],[16.5008,47.11006],[16.50004,47.12329],[16.52953,47.12874],[16.51716,47.14969],[16.45495,47.14259],[16.46487,47.16833],[16.45556,47.18756],[16.43056,47.1847],[16.4195,47.19491],[16.41892,47.21071],[16.43713,47.2097],[16.44263,47.23371],[16.43131,47.25276],[16.46715,47.25317],[16.48923,47.27989],[16.46463,47.33385],[16.4337,47.35281],[16.45851,47.36705],[16.44546,47.40702],[16.48317,47.40936],[16.49638,47.38927],[16.51709,47.41002],[16.57491,47.40542],[16.58073,47.41917],[16.66185,47.4556],[16.67064,47.47422],[16.65234,47.50034],[16.68956,47.51016],[16.71478,47.5402],[16.66354,47.56773],[16.6732,47.60495],[16.65953,47.6061],[16.65276,47.62285],[16.63142,47.62832],[16.57391,47.61967],[16.51474,47.6462],[16.49675,47.63931],[16.42546,47.66217],[16.44374,47.67421],[16.44805,47.69647],[16.4747,47.68116],[16.48722,47.69798],[16.55217,47.72255],[16.53638,47.73678],[16.54798,47.75154],[16.60952,47.76037],[16.63441,47.75908],[16.65729,47.74149],[16.72094,47.73536],[16.75341,47.68282],[16.83016,47.68106],[16.83943,47.70451],[16.86689,47.72115],[16.87668,47.68765],[17.09374,47.70777],[17.07066,47.72854],[17.0516,47.79385],[17.07495,47.8085],[17.04714,47.82856],[17.05195,47.83777],[17.01055,47.85818],[17.01639,47.86733],[17.08575,47.87462],[17.11317,47.92716],[17.09171,47.93429],[17.11838,47.96011],[17.09466,47.97088],[17.20103,48.01999],[17.24177,48.02247],[17.25795,47.99865],[17.33465,47.99312],[17.40299,47.94785],[17.45392,47.88526],[17.52674,47.86551],[17.56758,47.81513],[17.6084,47.82189],[17.70858,47.75668],[17.77987,47.73949],[17.8661,47.74575],[17.90013,47.73926],[17.94687,47.74467],[17.97087,47.75784],[18.00441,47.74634],[18.03806,47.75768],[18.29588,47.73146],[18.45407,47.76512],[18.49316,47.75276],[18.55908,47.766],[18.64609,47.75909],[18.72607,47.78904],[18.74118,47.81382],[18.792,47.82309],[18.84854,47.81672],[18.85588,47.82608],[18.82801,47.83429],[18.81357,47.85555],[18.76353,47.8716],[18.75686,47.89684],[18.77675,47.95509],[18.75525,47.97635],[18.81574,47.99344],[18.82,48.03968],[18.83327,48.04824],[18.87494,48.04707],[18.88667,48.05868],[18.90898,48.05114],[18.9439,48.05886],[18.98161,48.0536],[19.01486,48.07818],[19.05852,48.05735],[19.08436,48.07278],[19.1074,48.0656],[19.13529,48.07415],[19.24137,48.05365],[19.25578,48.07156],[19.30311,48.08871],[19.3866,48.09191],[19.40002,48.0823],[19.45405,48.10144],[19.46735,48.08393],[19.49442,48.10991],[19.49238,48.13966],[19.51282,48.15466],[19.50452,48.17344],[19.52897,48.19036],[19.52604,48.20313],[19.5775,48.21601],[19.63083,48.25007],[19.64452,48.23917],[19.66986,48.23921],[19.69122,48.20389],[19.72113,48.20147],[19.74618,48.21651],[19.78716,48.19253],[19.79873,48.19482],[19.80528,48.18373],[19.78242,48.16504],[19.79481,48.15353],[19.82133,48.16908],[19.84528,48.16274],[19.85517,48.17843],[19.86013,48.16941],[19.89875,48.16631],[19.91454,48.14686],[19.8983,48.1249],[19.93738,48.13112],[19.97439,48.166],[19.98871,48.16217],[20.02904,48.17768],[20.04945,48.1672],[20.07299,48.17961],[20.07004,48.1917],[20.13409,48.22518],[20.13319,48.25398],[20.20616,48.25098],[20.20383,48.26191],[20.22847,48.26278],[20.23495,48.27993],[20.28686,48.26164],[20.32571,48.27279],[20.33746,48.30167],[20.36566,48.31661],[20.38408,48.35118],[20.40983,48.36586],[20.40253,48.38256],[20.42053,48.40386],[20.41623,48.41854],[20.50793,48.48936],[20.50651,48.53442],[20.53747,48.52788],[20.54649,48.54429],[20.58659,48.53576],[20.65387,48.56141],[20.83636,48.58284],[20.8378,48.57421],[20.85044,48.58163],[20.84533,48.5665],[20.86815,48.55182],[20.92232,48.55945],[20.93463,48.53834],[20.95588,48.53396],[20.9562,48.52167],[20.98158,48.51777],[21.01511,48.53231],[21.06632,48.52589],[21.11745,48.49105],[21.16087,48.5215],[21.17963,48.51823],[21.22106,48.5375],[21.30549,48.52225],[21.31338,48.55084],[21.32688,48.55413],[21.31938,48.5612],[21.41545,48.55895],[21.42266,48.57882],[21.44061,48.5851],[21.51409,48.55107],[21.54202,48.5084],[21.61393,48.50942],[21.62019,48.46983],[21.66355,48.41796],[21.66456,48.39216],[21.70174,48.3807],[21.71187,48.35762],[21.81741,48.33279],[21.8352,48.33464],[21.83721,48.36325],[21.8843,48.35605],[21.88484,48.36754],[21.89788,48.36256],[21.8998,48.37022],[21.92819,48.3616],[21.92681,48.3709],[21.9492,48.37873],[21.99446,48.37732],[22.02133,48.39275],[22.0546,48.37753],[22.07649,48.38724],[22.08674,48.37156],[22.13591,48.38052],[22.13106,48.39123],[22.15277,48.39624],[22.15619,48.40931],[22.21257,48.42565],[22.23714,48.41004],[22.26549,48.40987],[22.23988,48.38701],[22.26757,48.36116],[22.31781,48.35454],[22.31329,48.32507],[22.33729,48.30791],[22.33843,48.27921],[22.38475,48.23396],[22.40064,48.2492],[22.43284,48.25252],[22.45639,48.24231],[22.4899,48.25342],[22.49722,48.23955],[22.51615,48.23797],[22.53111,48.20943],[22.57114,48.19614],[22.56164,48.18161],[22.59824,48.14476],[22.59028,48.10734],[22.67545,48.092],[22.73472,48.11985],[22.75762,48.12006],[22.77039,48.10902],[22.77232,48.12187],[22.80277,48.12211],[22.80253,48.10708],[22.82543,48.11751],[22.83644,48.08025],[22.86113,48.07503],[22.8678,48.05243],[22.88204,48.05481],[22.86597,48.01132],[22.83556,47.9906],[22.84076,47.98136],[22.87257,47.97527],[22.86973,47.96596],[22.89157,47.96724],[22.89744,47.95406],[22.84733,47.90776],[22.79281,47.89086],[22.75869,47.89414],[22.77775,47.84225],[22.71363,47.83609],[22.68019,47.78775],[22.61112,47.77175],[22.549,47.77222],[22.48121,47.81089],[22.45131,47.80339],[22.43133,47.73981],[22.35662,47.74862],[22.31777,47.76609],[22.31762,47.74337],[22.28514,47.72928],[22.26432,47.73107],[22.259,47.69791],[22.23068,47.6932],[22.17965,47.59161],[22.12892,47.5979],[22.09428,47.55836],[22.07826,47.56213],[22.05345,47.54748],[22.07122,47.53807],[22.06179,47.5288],[22.04513,47.53989],[22.03672,47.53267],[22.00719,47.48362],[22.03279,47.45084],[22.02388,47.39086],[22.01198,47.3758],[21.96274,47.38105],[21.93825,47.37253],[21.87779,47.28578],[21.88728,47.27305],[21.85349,47.23976],[21.85807,47.18736],[21.81248,47.16675],[21.79241,47.10598],[21.72683,47.09839],[21.6976,47.05792],[21.65042,47.04083],[21.68887,47.002],[21.66787,46.97123],[21.68149,46.96521],[21.6382,46.93305],[21.59845,46.92747],[21.61429,46.88673],[21.60167,46.86682],[21.52033,46.83737],[21.51861,46.80007],[21.48318,46.76502],[21.52634,46.73932],[21.52937,46.72097],[21.49233,46.68597],[21.47284,46.69591],[21.4299,46.69394],[21.43096,46.67814],[21.45467,46.66086],[21.41624,46.64262],[21.4098,46.62181],[21.3657,46.63795],[21.33005,46.63182],[21.31397,46.61767],[21.30124,46.59087],[21.32079,46.58286],[21.2743,46.54074],[21.26003,46.50216],[21.27442,46.47673],[21.29645,46.4763],[21.31743,46.45073],[21.28952,46.41548],[21.29633,46.40696],[21.22501,46.41369],[21.20642,46.40338],[21.19926,46.3479],[21.17623,46.33577],[21.1805,46.30445],[21.11554,46.30185],[21.10305,46.26246],[21.07088,46.2539],[21.06608,46.24294],[21.03662,46.24804],[21.02467,46.26653],[20.96082,46.2623],[20.94658,46.2793],[20.92507,46.27662],[20.92181,46.26181],[20.87327,46.28776],[20.77565,46.27596],[20.74905,46.25085],[20.76186,46.20456],[20.7274,46.20775],[20.73411,46.19394],[20.71405,46.16605],[20.68436,46.14478],[20.65492,46.14977],[20.63945,46.12676],[20.54505,46.17909],[20.50148,46.19033],[20.49494,46.17099],[20.45923,46.14288],[20.39751,46.15747],[20.36853,46.15286],[20.35571,46.16963],[20.29681,46.15215],[20.2549,46.11585],[20.24848,46.1301],[20.23301,46.12417],[20.18174,46.16011],[20.1365,46.14495],[20.10097,46.17728],[20.06362,46.14373],[20.03461,46.14589],[20.01581,46.17684],[19.93541,46.17642],[19.85335,46.15],[19.81797,46.12817],[19.75854,46.14798],[19.69821,46.18793],[19.68277,46.18004],[19.66151,46.19044],[19.63174,46.1693],[19.56765,46.17911],[19.5604,46.16658],[19.50266,46.14245],[19.52712,46.12103],[19.4645,46.09538],[19.46658,46.08204],[19.416,46.04605],[19.3804,46.03587],[19.36409,46.0523],[19.2819,46.0148],[19.29653,45.98812],[19.28565,45.9969],[19.14799,45.99634],[19.13384,46.0371],[19.10487,46.04017],[19.06604,46.0002],[19.07968,45.96364],[19.00598,45.95907],[19.00927,45.92366],[18.90613,45.93538],[18.87946,45.91668],[18.86471,45.92085],[18.86856,45.91134],[18.82768,45.90517],[18.822,45.91459],[18.80751,45.90361],[18.80925,45.87962],[18.79562,45.87845],[18.70489,45.91819],[18.67002,45.91084],[18.65966,45.91689],[18.66513,45.89928],[18.64128,45.88904],[18.65502,45.87424],[18.62777,45.87338],[18.61484,45.85314],[18.62367,45.83985],[18.57324,45.81376],[18.57498,45.80043],[18.55972,45.8038],[18.52235,45.78269],[18.49067,45.79472],[18.48219,45.7655],[18.45628,45.76952],[18.44508,45.76052],[18.44685,45.73713],[18.40763,45.73971],[18.39189,45.7617],[18.36423,45.77294],[18.33942,45.74716],[18.29682,45.76122],[18.24405,45.76123],[18.23073,45.77903],[18.19087,45.78788],[18.16819,45.77627],[18.12465,45.78963],[18.10681,45.77083],[18.08189,45.76452],[17.99588,45.79573],[17.93021,45.78633],[17.90668,45.79257],[17.86531,45.76701],[17.82627,45.81],[17.80898,45.8041],[17.78091,45.81749],[17.76034,45.81192],[17.74086,45.8296],[17.66329,45.83818],[17.62762,45.89794],[17.57007,45.93582],[17.43783,45.95038],[17.4259,45.92727],[17.41081,45.93997],[17.39215,45.93021],[17.38287,45.94757],[17.34762,45.94234],[17.34388,45.96053],[17.35377,45.9525],[17.39054,45.95819],[17.38742,45.96618],[17.35835,45.96427],[17.37549,45.96869],[17.37519,45.98811],[17.36357,45.99154],[17.35672,45.97358],[17.33396,45.99608],[17.33198,45.97289],[17.313,45.96653],[17.32365,45.98878],[17.29877,45.98387],[17.3042,46.00211],[17.25797,46.01103],[17.29632,46.02852],[17.25415,46.03001],[17.27096,46.05671],[17.23248,46.0592],[17.25251,46.06647],[17.23131,46.07903],[17.20199,46.07655],[17.23313,46.09896],[17.2104,46.10017],[17.21297,46.11386],[17.17593,46.10846],[17.17434,46.12876],[17.18652,46.13323],[17.1811,46.15055],[17.15623,46.15858],[17.15929,46.16968],[17.1261,46.16845],[17.12274,46.17898],[17.07525,46.18895],[17.06616,46.2023],[16.97354,46.2252],[16.97395,46.24311],[16.95041,46.24153],[16.88624,46.28146],[16.87137,46.32528],[16.88021,46.3357],[16.86154,46.34524],[16.86562,46.35565],[16.8522,46.35172],[16.84986,46.36262],[16.83529,46.36382],[16.83765,46.3748],[16.82617,46.3671],[16.79334,46.38739],[16.75921,46.37766],[16.72987,46.40149],[16.71821,46.38987],[16.67729,46.44945],[16.66318,46.4487],[16.66637,46.4583],[16.61879,46.46199],[16.60447,46.47608],[16.5236,46.50538],[16.53258,46.5314],[16.51767,46.53635],[16.50841,46.56527],[16.483,46.56604],[16.4834,46.5786],[16.44557,46.61095],[16.42486,46.61316],[16.38594,46.64425],[16.39154,46.66373],[16.41985,46.65848],[16.42863,46.69397],[16.36892,46.70401],[16.37983,46.71539],[16.37109,46.72229],[16.35706,46.71424],[16.3186,46.75414],[16.33054,46.77521],[16.31216,46.778],[16.31277,46.79731],[16.34064,46.80519],[16.35084,46.83006],[16.34033,46.84688],[16.3015,46.85951],[16.29139,46.87283],[16.23323,46.87667],[16.15609,46.85371],[16.12657,46.85691],[16.11391,46.8691]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Földmérési és Távérzékelési Intézet","url":"https://www.fomi.hu"},"country_code":"HU","end_date":"2000","id":"FOMI_2000","license_url":"http://e.tile.openstreetmap.hu/ortofoto2000/license.txt","max_zoom":17,"name":"FÖMI orthophoto 2000","start_date":"2000","type":"tms","url":"http://e.tile.openstreetmap.hu/ortofoto2000/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.11391,46.8691],[16.17897,46.90662],[16.20004,46.94151],[16.22175,46.93554],[16.24628,46.94639],[16.25532,46.96421],[16.27647,46.96261],[16.29058,47.01398],[16.30162,46.99923],[16.34146,46.99652],[16.35052,47.01063],[16.3734,46.99859],[16.41277,47.00475],[16.43327,46.99274],[16.44781,47.00389],[16.48,46.99412],[16.5122,47.00117],[16.46356,47.03227],[16.44786,47.02275],[16.43912,47.02966],[16.44567,47.03887],[16.52032,47.0561],[16.47321,47.07362],[16.46372,47.09392],[16.5008,47.11006],[16.50004,47.12329],[16.52953,47.12874],[16.51716,47.14969],[16.45495,47.14259],[16.46487,47.16833],[16.45556,47.18756],[16.43056,47.1847],[16.4195,47.19491],[16.41892,47.21071],[16.43713,47.2097],[16.44263,47.23371],[16.43131,47.25276],[16.46715,47.25317],[16.48923,47.27989],[16.46463,47.33385],[16.4337,47.35281],[16.45851,47.36705],[16.44546,47.40702],[16.48317,47.40936],[16.49638,47.38927],[16.51709,47.41002],[16.57491,47.40542],[16.58073,47.41917],[16.66185,47.4556],[16.67064,47.47422],[16.65234,47.50034],[16.68956,47.51016],[16.71478,47.5402],[16.66354,47.56773],[16.6732,47.60495],[16.65953,47.6061],[16.65276,47.62285],[16.63142,47.62832],[16.57391,47.61967],[16.51474,47.6462],[16.49675,47.63931],[16.42546,47.66217],[16.44374,47.67421],[16.44805,47.69647],[16.4747,47.68116],[16.48722,47.69798],[16.55217,47.72255],[16.53638,47.73678],[16.54798,47.75154],[16.60952,47.76037],[16.63441,47.75908],[16.65729,47.74149],[16.72094,47.73536],[16.75341,47.68282],[16.83016,47.68106],[16.83943,47.70451],[16.86689,47.72115],[16.87668,47.68765],[17.09374,47.70777],[17.07066,47.72854],[17.0516,47.79385],[17.07495,47.8085],[17.04714,47.82856],[17.05195,47.83777],[17.01055,47.85818],[17.01639,47.86733],[17.08575,47.87462],[17.11317,47.92716],[17.09171,47.93429],[17.11838,47.96011],[17.09466,47.97088],[17.20103,48.01999],[17.24177,48.02247],[17.25795,47.99865],[17.33465,47.99312],[17.40299,47.94785],[17.45392,47.88526],[17.52674,47.86551],[17.56758,47.81513],[17.6084,47.82189],[17.70858,47.75668],[17.77987,47.73949],[17.8661,47.74575],[17.90013,47.73926],[17.94687,47.74467],[17.97087,47.75784],[18.00441,47.74634],[18.03806,47.75768],[18.29588,47.73146],[18.45407,47.76512],[18.49316,47.75276],[18.55908,47.766],[18.64609,47.75909],[18.72607,47.78904],[18.74118,47.81382],[18.792,47.82309],[18.84854,47.81672],[18.85588,47.82608],[18.82801,47.83429],[18.81357,47.85555],[18.76353,47.8716],[18.75686,47.89684],[18.77675,47.95509],[18.75525,47.97635],[18.81574,47.99344],[18.82,48.03968],[18.83327,48.04824],[18.87494,48.04707],[18.88667,48.05868],[18.90898,48.05114],[18.9439,48.05886],[18.98161,48.0536],[19.01486,48.07818],[19.05852,48.05735],[19.08436,48.07278],[19.1074,48.0656],[19.13529,48.07415],[19.24137,48.05365],[19.25578,48.07156],[19.30311,48.08871],[19.3866,48.09191],[19.40002,48.0823],[19.45405,48.10144],[19.46735,48.08393],[19.49442,48.10991],[19.49238,48.13966],[19.51282,48.15466],[19.50452,48.17344],[19.52897,48.19036],[19.52604,48.20313],[19.5775,48.21601],[19.63083,48.25007],[19.64452,48.23917],[19.66986,48.23921],[19.69122,48.20389],[19.72113,48.20147],[19.74618,48.21651],[19.78716,48.19253],[19.79873,48.19482],[19.80528,48.18373],[19.78242,48.16504],[19.79481,48.15353],[19.82133,48.16908],[19.84528,48.16274],[19.85517,48.17843],[19.86013,48.16941],[19.89875,48.16631],[19.91454,48.14686],[19.8983,48.1249],[19.93738,48.13112],[19.97439,48.166],[19.98871,48.16217],[20.02904,48.17768],[20.04945,48.1672],[20.07299,48.17961],[20.07004,48.1917],[20.13409,48.22518],[20.13319,48.25398],[20.20616,48.25098],[20.20383,48.26191],[20.22847,48.26278],[20.23495,48.27993],[20.28686,48.26164],[20.32571,48.27279],[20.33746,48.30167],[20.36566,48.31661],[20.38408,48.35118],[20.40983,48.36586],[20.40253,48.38256],[20.42053,48.40386],[20.41623,48.41854],[20.50793,48.48936],[20.50651,48.53442],[20.53747,48.52788],[20.54649,48.54429],[20.58659,48.53576],[20.65387,48.56141],[20.83636,48.58284],[20.8378,48.57421],[20.85044,48.58163],[20.84533,48.5665],[20.86815,48.55182],[20.92232,48.55945],[20.93463,48.53834],[20.95588,48.53396],[20.9562,48.52167],[20.98158,48.51777],[21.01511,48.53231],[21.06632,48.52589],[21.11745,48.49105],[21.16087,48.5215],[21.17963,48.51823],[21.22106,48.5375],[21.30549,48.52225],[21.31338,48.55084],[21.32688,48.55413],[21.31938,48.5612],[21.41545,48.55895],[21.42266,48.57882],[21.44061,48.5851],[21.51409,48.55107],[21.54202,48.5084],[21.61393,48.50942],[21.62019,48.46983],[21.66355,48.41796],[21.66456,48.39216],[21.70174,48.3807],[21.71187,48.35762],[21.81741,48.33279],[21.8352,48.33464],[21.83721,48.36325],[21.8843,48.35605],[21.88484,48.36754],[21.89788,48.36256],[21.8998,48.37022],[21.92819,48.3616],[21.92681,48.3709],[21.9492,48.37873],[21.99446,48.37732],[22.02133,48.39275],[22.0546,48.37753],[22.07649,48.38724],[22.08674,48.37156],[22.13591,48.38052],[22.13106,48.39123],[22.15277,48.39624],[22.15619,48.40931],[22.21257,48.42565],[22.23714,48.41004],[22.26549,48.40987],[22.23988,48.38701],[22.26757,48.36116],[22.31781,48.35454],[22.31329,48.32507],[22.33729,48.30791],[22.33843,48.27921],[22.38475,48.23396],[22.40064,48.2492],[22.43284,48.25252],[22.45639,48.24231],[22.4899,48.25342],[22.49722,48.23955],[22.51615,48.23797],[22.53111,48.20943],[22.57114,48.19614],[22.56164,48.18161],[22.59824,48.14476],[22.59028,48.10734],[22.67545,48.092],[22.73472,48.11985],[22.75762,48.12006],[22.77039,48.10902],[22.77232,48.12187],[22.80277,48.12211],[22.80253,48.10708],[22.82543,48.11751],[22.83644,48.08025],[22.86113,48.07503],[22.8678,48.05243],[22.88204,48.05481],[22.86597,48.01132],[22.83556,47.9906],[22.84076,47.98136],[22.87257,47.97527],[22.86973,47.96596],[22.89157,47.96724],[22.89744,47.95406],[22.84733,47.90776],[22.79281,47.89086],[22.75869,47.89414],[22.77775,47.84225],[22.71363,47.83609],[22.68019,47.78775],[22.61112,47.77175],[22.549,47.77222],[22.48121,47.81089],[22.45131,47.80339],[22.43133,47.73981],[22.35662,47.74862],[22.31777,47.76609],[22.31762,47.74337],[22.28514,47.72928],[22.26432,47.73107],[22.259,47.69791],[22.23068,47.6932],[22.17965,47.59161],[22.12892,47.5979],[22.09428,47.55836],[22.07826,47.56213],[22.05345,47.54748],[22.07122,47.53807],[22.06179,47.5288],[22.04513,47.53989],[22.03672,47.53267],[22.00719,47.48362],[22.03279,47.45084],[22.02388,47.39086],[22.01198,47.3758],[21.96274,47.38105],[21.93825,47.37253],[21.87779,47.28578],[21.88728,47.27305],[21.85349,47.23976],[21.85807,47.18736],[21.81248,47.16675],[21.79241,47.10598],[21.72683,47.09839],[21.6976,47.05792],[21.65042,47.04083],[21.68887,47.002],[21.66787,46.97123],[21.68149,46.96521],[21.6382,46.93305],[21.59845,46.92747],[21.61429,46.88673],[21.60167,46.86682],[21.52033,46.83737],[21.51861,46.80007],[21.48318,46.76502],[21.52634,46.73932],[21.52937,46.72097],[21.49233,46.68597],[21.47284,46.69591],[21.4299,46.69394],[21.43096,46.67814],[21.45467,46.66086],[21.41624,46.64262],[21.4098,46.62181],[21.3657,46.63795],[21.33005,46.63182],[21.31397,46.61767],[21.30124,46.59087],[21.32079,46.58286],[21.2743,46.54074],[21.26003,46.50216],[21.27442,46.47673],[21.29645,46.4763],[21.31743,46.45073],[21.28952,46.41548],[21.29633,46.40696],[21.22501,46.41369],[21.20642,46.40338],[21.19926,46.3479],[21.17623,46.33577],[21.1805,46.30445],[21.11554,46.30185],[21.10305,46.26246],[21.07088,46.2539],[21.06608,46.24294],[21.03662,46.24804],[21.02467,46.26653],[20.96082,46.2623],[20.94658,46.2793],[20.92507,46.27662],[20.92181,46.26181],[20.87327,46.28776],[20.77565,46.27596],[20.74905,46.25085],[20.76186,46.20456],[20.7274,46.20775],[20.73411,46.19394],[20.71405,46.16605],[20.68436,46.14478],[20.65492,46.14977],[20.63945,46.12676],[20.54505,46.17909],[20.50148,46.19033],[20.49494,46.17099],[20.45923,46.14288],[20.39751,46.15747],[20.36853,46.15286],[20.35571,46.16963],[20.29681,46.15215],[20.2549,46.11585],[20.24848,46.1301],[20.23301,46.12417],[20.18174,46.16011],[20.1365,46.14495],[20.10097,46.17728],[20.06362,46.14373],[20.03461,46.14589],[20.01581,46.17684],[19.93541,46.17642],[19.85335,46.15],[19.81797,46.12817],[19.75854,46.14798],[19.69821,46.18793],[19.68277,46.18004],[19.66151,46.19044],[19.63174,46.1693],[19.56765,46.17911],[19.5604,46.16658],[19.50266,46.14245],[19.52712,46.12103],[19.4645,46.09538],[19.46658,46.08204],[19.416,46.04605],[19.3804,46.03587],[19.36409,46.0523],[19.2819,46.0148],[19.29653,45.98812],[19.28565,45.9969],[19.14799,45.99634],[19.13384,46.0371],[19.10487,46.04017],[19.06604,46.0002],[19.07968,45.96364],[19.00598,45.95907],[19.00927,45.92366],[18.90613,45.93538],[18.87946,45.91668],[18.86471,45.92085],[18.86856,45.91134],[18.82768,45.90517],[18.822,45.91459],[18.80751,45.90361],[18.80925,45.87962],[18.79562,45.87845],[18.70489,45.91819],[18.67002,45.91084],[18.65966,45.91689],[18.66513,45.89928],[18.64128,45.88904],[18.65502,45.87424],[18.62777,45.87338],[18.61484,45.85314],[18.62367,45.83985],[18.57324,45.81376],[18.57498,45.80043],[18.55972,45.8038],[18.52235,45.78269],[18.49067,45.79472],[18.48219,45.7655],[18.45628,45.76952],[18.44508,45.76052],[18.44685,45.73713],[18.40763,45.73971],[18.39189,45.7617],[18.36423,45.77294],[18.33942,45.74716],[18.29682,45.76122],[18.24405,45.76123],[18.23073,45.77903],[18.19087,45.78788],[18.16819,45.77627],[18.12465,45.78963],[18.10681,45.77083],[18.08189,45.76452],[17.99588,45.79573],[17.93021,45.78633],[17.90668,45.79257],[17.86531,45.76701],[17.82627,45.81],[17.80898,45.8041],[17.78091,45.81749],[17.76034,45.81192],[17.74086,45.8296],[17.66329,45.83818],[17.62762,45.89794],[17.57007,45.93582],[17.43783,45.95038],[17.4259,45.92727],[17.41081,45.93997],[17.39215,45.93021],[17.38287,45.94757],[17.34762,45.94234],[17.34388,45.96053],[17.35377,45.9525],[17.39054,45.95819],[17.38742,45.96618],[17.35835,45.96427],[17.37549,45.96869],[17.37519,45.98811],[17.36357,45.99154],[17.35672,45.97358],[17.33396,45.99608],[17.33198,45.97289],[17.313,45.96653],[17.32365,45.98878],[17.29877,45.98387],[17.3042,46.00211],[17.25797,46.01103],[17.29632,46.02852],[17.25415,46.03001],[17.27096,46.05671],[17.23248,46.0592],[17.25251,46.06647],[17.23131,46.07903],[17.20199,46.07655],[17.23313,46.09896],[17.2104,46.10017],[17.21297,46.11386],[17.17593,46.10846],[17.17434,46.12876],[17.18652,46.13323],[17.1811,46.15055],[17.15623,46.15858],[17.15929,46.16968],[17.1261,46.16845],[17.12274,46.17898],[17.07525,46.18895],[17.06616,46.2023],[16.97354,46.2252],[16.97395,46.24311],[16.95041,46.24153],[16.88624,46.28146],[16.87137,46.32528],[16.88021,46.3357],[16.86154,46.34524],[16.86562,46.35565],[16.8522,46.35172],[16.84986,46.36262],[16.83529,46.36382],[16.83765,46.3748],[16.82617,46.3671],[16.79334,46.38739],[16.75921,46.37766],[16.72987,46.40149],[16.71821,46.38987],[16.67729,46.44945],[16.66318,46.4487],[16.66637,46.4583],[16.61879,46.46199],[16.60447,46.47608],[16.5236,46.50538],[16.53258,46.5314],[16.51767,46.53635],[16.50841,46.56527],[16.483,46.56604],[16.4834,46.5786],[16.44557,46.61095],[16.42486,46.61316],[16.38594,46.64425],[16.39154,46.66373],[16.41985,46.65848],[16.42863,46.69397],[16.36892,46.70401],[16.37983,46.71539],[16.37109,46.72229],[16.35706,46.71424],[16.3186,46.75414],[16.33054,46.77521],[16.31216,46.778],[16.31277,46.79731],[16.34064,46.80519],[16.35084,46.83006],[16.34033,46.84688],[16.3015,46.85951],[16.29139,46.87283],[16.23323,46.87667],[16.15609,46.85371],[16.12657,46.85691],[16.11391,46.8691]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Földmérési és Távérzékelési Intézet","url":"https://www.fomi.hu"},"country_code":"HU","end_date":"2005","id":"FOMI_2005","license_url":"http://e.tile.openstreetmap.hu/ortofoto2005/license.txt","max_zoom":17,"name":"FÖMI orthophoto 2005","start_date":"2005","type":"tms","url":"http://e.tile.openstreetmap.hu/ortofoto2005/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.11391,46.8691],[16.17897,46.90662],[16.20004,46.94151],[16.22175,46.93554],[16.24628,46.94639],[16.25532,46.96421],[16.27647,46.96261],[16.29058,47.01398],[16.30162,46.99923],[16.34146,46.99652],[16.35052,47.01063],[16.3734,46.99859],[16.41277,47.00475],[16.43327,46.99274],[16.44781,47.00389],[16.48,46.99412],[16.5122,47.00117],[16.46356,47.03227],[16.44786,47.02275],[16.43912,47.02966],[16.44567,47.03887],[16.52032,47.0561],[16.47321,47.07362],[16.46372,47.09392],[16.5008,47.11006],[16.50004,47.12329],[16.52953,47.12874],[16.51716,47.14969],[16.45495,47.14259],[16.46487,47.16833],[16.45556,47.18756],[16.43056,47.1847],[16.4195,47.19491],[16.41892,47.21071],[16.43713,47.2097],[16.44263,47.23371],[16.43131,47.25276],[16.46715,47.25317],[16.48923,47.27989],[16.46463,47.33385],[16.4337,47.35281],[16.45851,47.36705],[16.44546,47.40702],[16.48317,47.40936],[16.49638,47.38927],[16.51709,47.41002],[16.57491,47.40542],[16.58073,47.41917],[16.66185,47.4556],[16.67064,47.47422],[16.65234,47.50034],[16.68956,47.51016],[16.71478,47.5402],[16.66354,47.56773],[16.6732,47.60495],[16.65953,47.6061],[16.65276,47.62285],[16.63142,47.62832],[16.57391,47.61967],[16.51474,47.6462],[16.49675,47.63931],[16.42546,47.66217],[16.44374,47.67421],[16.44805,47.69647],[16.4747,47.68116],[16.48722,47.69798],[16.55217,47.72255],[16.53638,47.73678],[16.54798,47.75154],[16.60952,47.76037],[16.63441,47.75908],[16.65729,47.74149],[16.72094,47.73536],[16.75341,47.68282],[16.83016,47.68106],[16.83943,47.70451],[16.86689,47.72115],[16.87668,47.68765],[17.09374,47.70777],[17.07066,47.72854],[17.0516,47.79385],[17.07495,47.8085],[17.04714,47.82856],[17.05195,47.83777],[17.01055,47.85818],[17.01639,47.86733],[17.08575,47.87462],[17.11317,47.92716],[17.09171,47.93429],[17.11838,47.96011],[17.09466,47.97088],[17.20103,48.01999],[17.24177,48.02247],[17.25795,47.99865],[17.33465,47.99312],[17.40299,47.94785],[17.45392,47.88526],[17.52674,47.86551],[17.56758,47.81513],[17.6084,47.82189],[17.70858,47.75668],[17.77987,47.73949],[17.8661,47.74575],[17.90013,47.73926],[17.94687,47.74467],[17.97087,47.75784],[18.00441,47.74634],[18.03806,47.75768],[18.29588,47.73146],[18.45407,47.76512],[18.49316,47.75276],[18.55908,47.766],[18.64609,47.75909],[18.72607,47.78904],[18.74118,47.81382],[18.792,47.82309],[18.84854,47.81672],[18.85588,47.82608],[18.82801,47.83429],[18.81357,47.85555],[18.76353,47.8716],[18.75686,47.89684],[18.77675,47.95509],[18.75525,47.97635],[18.81574,47.99344],[18.82,48.03968],[18.83327,48.04824],[18.87494,48.04707],[18.88667,48.05868],[18.90898,48.05114],[18.9439,48.05886],[18.98161,48.0536],[19.01486,48.07818],[19.05852,48.05735],[19.08436,48.07278],[19.1074,48.0656],[19.13529,48.07415],[19.24137,48.05365],[19.25578,48.07156],[19.30311,48.08871],[19.3866,48.09191],[19.40002,48.0823],[19.45405,48.10144],[19.46735,48.08393],[19.49442,48.10991],[19.49238,48.13966],[19.51282,48.15466],[19.50452,48.17344],[19.52897,48.19036],[19.52604,48.20313],[19.5775,48.21601],[19.63083,48.25007],[19.64452,48.23917],[19.66986,48.23921],[19.69122,48.20389],[19.72113,48.20147],[19.74618,48.21651],[19.78716,48.19253],[19.79873,48.19482],[19.80528,48.18373],[19.78242,48.16504],[19.79481,48.15353],[19.82133,48.16908],[19.84528,48.16274],[19.85517,48.17843],[19.86013,48.16941],[19.89875,48.16631],[19.91454,48.14686],[19.8983,48.1249],[19.93738,48.13112],[19.97439,48.166],[19.98871,48.16217],[20.02904,48.17768],[20.04945,48.1672],[20.07299,48.17961],[20.07004,48.1917],[20.13409,48.22518],[20.13319,48.25398],[20.20616,48.25098],[20.20383,48.26191],[20.22847,48.26278],[20.23495,48.27993],[20.28686,48.26164],[20.32571,48.27279],[20.33746,48.30167],[20.36566,48.31661],[20.38408,48.35118],[20.40983,48.36586],[20.40253,48.38256],[20.42053,48.40386],[20.41623,48.41854],[20.50793,48.48936],[20.50651,48.53442],[20.53747,48.52788],[20.54649,48.54429],[20.58659,48.53576],[20.65387,48.56141],[20.83636,48.58284],[20.8378,48.57421],[20.85044,48.58163],[20.84533,48.5665],[20.86815,48.55182],[20.92232,48.55945],[20.93463,48.53834],[20.95588,48.53396],[20.9562,48.52167],[20.98158,48.51777],[21.01511,48.53231],[21.06632,48.52589],[21.11745,48.49105],[21.16087,48.5215],[21.17963,48.51823],[21.22106,48.5375],[21.30549,48.52225],[21.31338,48.55084],[21.32688,48.55413],[21.31938,48.5612],[21.41545,48.55895],[21.42266,48.57882],[21.44061,48.5851],[21.51409,48.55107],[21.54202,48.5084],[21.61393,48.50942],[21.62019,48.46983],[21.66355,48.41796],[21.66456,48.39216],[21.70174,48.3807],[21.71187,48.35762],[21.81741,48.33279],[21.8352,48.33464],[21.83721,48.36325],[21.8843,48.35605],[21.88484,48.36754],[21.89788,48.36256],[21.8998,48.37022],[21.92819,48.3616],[21.92681,48.3709],[21.9492,48.37873],[21.99446,48.37732],[22.02133,48.39275],[22.0546,48.37753],[22.07649,48.38724],[22.08674,48.37156],[22.13591,48.38052],[22.13106,48.39123],[22.15277,48.39624],[22.15619,48.40931],[22.21257,48.42565],[22.23714,48.41004],[22.26549,48.40987],[22.23988,48.38701],[22.26757,48.36116],[22.31781,48.35454],[22.31329,48.32507],[22.33729,48.30791],[22.33843,48.27921],[22.38475,48.23396],[22.40064,48.2492],[22.43284,48.25252],[22.45639,48.24231],[22.4899,48.25342],[22.49722,48.23955],[22.51615,48.23797],[22.53111,48.20943],[22.57114,48.19614],[22.56164,48.18161],[22.59824,48.14476],[22.59028,48.10734],[22.67545,48.092],[22.73472,48.11985],[22.75762,48.12006],[22.77039,48.10902],[22.77232,48.12187],[22.80277,48.12211],[22.80253,48.10708],[22.82543,48.11751],[22.83644,48.08025],[22.86113,48.07503],[22.8678,48.05243],[22.88204,48.05481],[22.86597,48.01132],[22.83556,47.9906],[22.84076,47.98136],[22.87257,47.97527],[22.86973,47.96596],[22.89157,47.96724],[22.89744,47.95406],[22.84733,47.90776],[22.79281,47.89086],[22.75869,47.89414],[22.77775,47.84225],[22.71363,47.83609],[22.68019,47.78775],[22.61112,47.77175],[22.549,47.77222],[22.48121,47.81089],[22.45131,47.80339],[22.43133,47.73981],[22.35662,47.74862],[22.31777,47.76609],[22.31762,47.74337],[22.28514,47.72928],[22.26432,47.73107],[22.259,47.69791],[22.23068,47.6932],[22.17965,47.59161],[22.12892,47.5979],[22.09428,47.55836],[22.07826,47.56213],[22.05345,47.54748],[22.07122,47.53807],[22.06179,47.5288],[22.04513,47.53989],[22.03672,47.53267],[22.00719,47.48362],[22.03279,47.45084],[22.02388,47.39086],[22.01198,47.3758],[21.96274,47.38105],[21.93825,47.37253],[21.87779,47.28578],[21.88728,47.27305],[21.85349,47.23976],[21.85807,47.18736],[21.81248,47.16675],[21.79241,47.10598],[21.72683,47.09839],[21.6976,47.05792],[21.65042,47.04083],[21.68887,47.002],[21.66787,46.97123],[21.68149,46.96521],[21.6382,46.93305],[21.59845,46.92747],[21.61429,46.88673],[21.60167,46.86682],[21.52033,46.83737],[21.51861,46.80007],[21.48318,46.76502],[21.52634,46.73932],[21.52937,46.72097],[21.49233,46.68597],[21.47284,46.69591],[21.4299,46.69394],[21.43096,46.67814],[21.45467,46.66086],[21.41624,46.64262],[21.4098,46.62181],[21.3657,46.63795],[21.33005,46.63182],[21.31397,46.61767],[21.30124,46.59087],[21.32079,46.58286],[21.2743,46.54074],[21.26003,46.50216],[21.27442,46.47673],[21.29645,46.4763],[21.31743,46.45073],[21.28952,46.41548],[21.29633,46.40696],[21.22501,46.41369],[21.20642,46.40338],[21.19926,46.3479],[21.17623,46.33577],[21.1805,46.30445],[21.11554,46.30185],[21.10305,46.26246],[21.07088,46.2539],[21.06608,46.24294],[21.03662,46.24804],[21.02467,46.26653],[20.96082,46.2623],[20.94658,46.2793],[20.92507,46.27662],[20.92181,46.26181],[20.87327,46.28776],[20.77565,46.27596],[20.74905,46.25085],[20.76186,46.20456],[20.7274,46.20775],[20.73411,46.19394],[20.71405,46.16605],[20.68436,46.14478],[20.65492,46.14977],[20.63945,46.12676],[20.54505,46.17909],[20.50148,46.19033],[20.49494,46.17099],[20.45923,46.14288],[20.39751,46.15747],[20.36853,46.15286],[20.35571,46.16963],[20.29681,46.15215],[20.2549,46.11585],[20.24848,46.1301],[20.23301,46.12417],[20.18174,46.16011],[20.1365,46.14495],[20.10097,46.17728],[20.06362,46.14373],[20.03461,46.14589],[20.01581,46.17684],[19.93541,46.17642],[19.85335,46.15],[19.81797,46.12817],[19.75854,46.14798],[19.69821,46.18793],[19.68277,46.18004],[19.66151,46.19044],[19.63174,46.1693],[19.56765,46.17911],[19.5604,46.16658],[19.50266,46.14245],[19.52712,46.12103],[19.4645,46.09538],[19.46658,46.08204],[19.416,46.04605],[19.3804,46.03587],[19.36409,46.0523],[19.2819,46.0148],[19.29653,45.98812],[19.28565,45.9969],[19.14799,45.99634],[19.13384,46.0371],[19.10487,46.04017],[19.06604,46.0002],[19.07968,45.96364],[19.00598,45.95907],[19.00927,45.92366],[18.90613,45.93538],[18.87946,45.91668],[18.86471,45.92085],[18.86856,45.91134],[18.82768,45.90517],[18.822,45.91459],[18.80751,45.90361],[18.80925,45.87962],[18.79562,45.87845],[18.70489,45.91819],[18.67002,45.91084],[18.65966,45.91689],[18.66513,45.89928],[18.64128,45.88904],[18.65502,45.87424],[18.62777,45.87338],[18.61484,45.85314],[18.62367,45.83985],[18.57324,45.81376],[18.57498,45.80043],[18.55972,45.8038],[18.52235,45.78269],[18.49067,45.79472],[18.48219,45.7655],[18.45628,45.76952],[18.44508,45.76052],[18.44685,45.73713],[18.40763,45.73971],[18.39189,45.7617],[18.36423,45.77294],[18.33942,45.74716],[18.29682,45.76122],[18.24405,45.76123],[18.23073,45.77903],[18.19087,45.78788],[18.16819,45.77627],[18.12465,45.78963],[18.10681,45.77083],[18.08189,45.76452],[17.99588,45.79573],[17.93021,45.78633],[17.90668,45.79257],[17.86531,45.76701],[17.82627,45.81],[17.80898,45.8041],[17.78091,45.81749],[17.76034,45.81192],[17.74086,45.8296],[17.66329,45.83818],[17.62762,45.89794],[17.57007,45.93582],[17.43783,45.95038],[17.4259,45.92727],[17.41081,45.93997],[17.39215,45.93021],[17.38287,45.94757],[17.34762,45.94234],[17.34388,45.96053],[17.35377,45.9525],[17.39054,45.95819],[17.38742,45.96618],[17.35835,45.96427],[17.37549,45.96869],[17.37519,45.98811],[17.36357,45.99154],[17.35672,45.97358],[17.33396,45.99608],[17.33198,45.97289],[17.313,45.96653],[17.32365,45.98878],[17.29877,45.98387],[17.3042,46.00211],[17.25797,46.01103],[17.29632,46.02852],[17.25415,46.03001],[17.27096,46.05671],[17.23248,46.0592],[17.25251,46.06647],[17.23131,46.07903],[17.20199,46.07655],[17.23313,46.09896],[17.2104,46.10017],[17.21297,46.11386],[17.17593,46.10846],[17.17434,46.12876],[17.18652,46.13323],[17.1811,46.15055],[17.15623,46.15858],[17.15929,46.16968],[17.1261,46.16845],[17.12274,46.17898],[17.07525,46.18895],[17.06616,46.2023],[16.97354,46.2252],[16.97395,46.24311],[16.95041,46.24153],[16.88624,46.28146],[16.87137,46.32528],[16.88021,46.3357],[16.86154,46.34524],[16.86562,46.35565],[16.8522,46.35172],[16.84986,46.36262],[16.83529,46.36382],[16.83765,46.3748],[16.82617,46.3671],[16.79334,46.38739],[16.75921,46.37766],[16.72987,46.40149],[16.71821,46.38987],[16.67729,46.44945],[16.66318,46.4487],[16.66637,46.4583],[16.61879,46.46199],[16.60447,46.47608],[16.5236,46.50538],[16.53258,46.5314],[16.51767,46.53635],[16.50841,46.56527],[16.483,46.56604],[16.4834,46.5786],[16.44557,46.61095],[16.42486,46.61316],[16.38594,46.64425],[16.39154,46.66373],[16.41985,46.65848],[16.42863,46.69397],[16.36892,46.70401],[16.37983,46.71539],[16.37109,46.72229],[16.35706,46.71424],[16.3186,46.75414],[16.33054,46.77521],[16.31216,46.778],[16.31277,46.79731],[16.34064,46.80519],[16.35084,46.83006],[16.34033,46.84688],[16.3015,46.85951],[16.29139,46.87283],[16.23323,46.87667],[16.15609,46.85371],[16.12657,46.85691],[16.11391,46.8691]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Földmérési és Távérzékelési Intézet","url":"https://www.fomi.hu"},"country_code":"HU","end_date":"2010","id":"FOMI_2007_2010","license_url":"http://e.tile.openstreetmap.hu/ortofoto-2007-2010/license.txt","max_zoom":18,"name":"FÖMI orthophoto 2007-2010","start_date":"2007","type":"tms","url":"http://e.tile.openstreetmap.hu/ortofoto-2007-2010/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.11391,46.8691],[16.17897,46.90662],[16.20004,46.94151],[16.22175,46.93554],[16.24628,46.94639],[16.25532,46.96421],[16.27647,46.96261],[16.29058,47.01398],[16.30162,46.99923],[16.34146,46.99652],[16.35052,47.01063],[16.3734,46.99859],[16.41277,47.00475],[16.43327,46.99274],[16.44781,47.00389],[16.48,46.99412],[16.5122,47.00117],[16.46356,47.03227],[16.44786,47.02275],[16.43912,47.02966],[16.44567,47.03887],[16.52032,47.0561],[16.47321,47.07362],[16.46372,47.09392],[16.5008,47.11006],[16.50004,47.12329],[16.52953,47.12874],[16.51716,47.14969],[16.45495,47.14259],[16.46487,47.16833],[16.45556,47.18756],[16.43056,47.1847],[16.4195,47.19491],[16.41892,47.21071],[16.43713,47.2097],[16.44263,47.23371],[16.43131,47.25276],[16.46715,47.25317],[16.48923,47.27989],[16.46463,47.33385],[16.4337,47.35281],[16.45851,47.36705],[16.44546,47.40702],[16.48317,47.40936],[16.49638,47.38927],[16.51709,47.41002],[16.57491,47.40542],[16.58073,47.41917],[16.66185,47.4556],[16.67064,47.47422],[16.65234,47.50034],[16.68956,47.51016],[16.71478,47.5402],[16.66354,47.56773],[16.6732,47.60495],[16.65953,47.6061],[16.65276,47.62285],[16.63142,47.62832],[16.57391,47.61967],[16.51474,47.6462],[16.49675,47.63931],[16.42546,47.66217],[16.44374,47.67421],[16.44805,47.69647],[16.4747,47.68116],[16.48722,47.69798],[16.55217,47.72255],[16.53638,47.73678],[16.54798,47.75154],[16.60952,47.76037],[16.63441,47.75908],[16.65729,47.74149],[16.72094,47.73536],[16.75341,47.68282],[16.83016,47.68106],[16.83943,47.70451],[16.86689,47.72115],[16.87668,47.68765],[17.09374,47.70777],[17.07066,47.72854],[17.0516,47.79385],[17.07495,47.8085],[17.04714,47.82856],[17.05195,47.83777],[17.01055,47.85818],[17.01639,47.86733],[17.08575,47.87462],[17.11317,47.92716],[17.09171,47.93429],[17.11838,47.96011],[17.09466,47.97088],[17.20103,48.01999],[17.24177,48.02247],[17.25795,47.99865],[17.33465,47.99312],[17.40299,47.94785],[17.45392,47.88526],[17.52674,47.86551],[17.56758,47.81513],[17.6084,47.82189],[17.70858,47.75668],[17.77987,47.73949],[17.8661,47.74575],[17.90013,47.73926],[17.94687,47.74467],[17.97087,47.75784],[18.00441,47.74634],[18.03806,47.75768],[18.29588,47.73146],[18.45407,47.76512],[18.49316,47.75276],[18.55908,47.766],[18.64609,47.75909],[18.72607,47.78904],[18.74118,47.81382],[18.792,47.82309],[18.84854,47.81672],[18.85588,47.82608],[18.82801,47.83429],[18.81357,47.85555],[18.76353,47.8716],[18.75686,47.89684],[18.77675,47.95509],[18.75525,47.97635],[18.81574,47.99344],[18.82,48.03968],[18.83327,48.04824],[18.87494,48.04707],[18.88667,48.05868],[18.90898,48.05114],[18.9439,48.05886],[18.98161,48.0536],[19.01486,48.07818],[19.05852,48.05735],[19.08436,48.07278],[19.1074,48.0656],[19.13529,48.07415],[19.24137,48.05365],[19.25578,48.07156],[19.30311,48.08871],[19.3866,48.09191],[19.40002,48.0823],[19.45405,48.10144],[19.46735,48.08393],[19.49442,48.10991],[19.49238,48.13966],[19.51282,48.15466],[19.50452,48.17344],[19.52897,48.19036],[19.52604,48.20313],[19.5775,48.21601],[19.63083,48.25007],[19.64452,48.23917],[19.66986,48.23921],[19.69122,48.20389],[19.72113,48.20147],[19.74618,48.21651],[19.78716,48.19253],[19.79873,48.19482],[19.80528,48.18373],[19.78242,48.16504],[19.79481,48.15353],[19.82133,48.16908],[19.84528,48.16274],[19.85517,48.17843],[19.86013,48.16941],[19.89875,48.16631],[19.91454,48.14686],[19.8983,48.1249],[19.93738,48.13112],[19.97439,48.166],[19.98871,48.16217],[20.02904,48.17768],[20.04945,48.1672],[20.07299,48.17961],[20.07004,48.1917],[20.13409,48.22518],[20.13319,48.25398],[20.20616,48.25098],[20.20383,48.26191],[20.22847,48.26278],[20.23495,48.27993],[20.28686,48.26164],[20.32571,48.27279],[20.33746,48.30167],[20.36566,48.31661],[20.38408,48.35118],[20.40983,48.36586],[20.40253,48.38256],[20.42053,48.40386],[20.41623,48.41854],[20.50793,48.48936],[20.50651,48.53442],[20.53747,48.52788],[20.54649,48.54429],[20.58659,48.53576],[20.65387,48.56141],[20.83636,48.58284],[20.8378,48.57421],[20.85044,48.58163],[20.84533,48.5665],[20.86815,48.55182],[20.92232,48.55945],[20.93463,48.53834],[20.95588,48.53396],[20.9562,48.52167],[20.98158,48.51777],[21.01511,48.53231],[21.06632,48.52589],[21.11745,48.49105],[21.16087,48.5215],[21.17963,48.51823],[21.22106,48.5375],[21.30549,48.52225],[21.31338,48.55084],[21.32688,48.55413],[21.31938,48.5612],[21.41545,48.55895],[21.42266,48.57882],[21.44061,48.5851],[21.51409,48.55107],[21.54202,48.5084],[21.61393,48.50942],[21.62019,48.46983],[21.66355,48.41796],[21.66456,48.39216],[21.70174,48.3807],[21.71187,48.35762],[21.81741,48.33279],[21.8352,48.33464],[21.83721,48.36325],[21.8843,48.35605],[21.88484,48.36754],[21.89788,48.36256],[21.8998,48.37022],[21.92819,48.3616],[21.92681,48.3709],[21.9492,48.37873],[21.99446,48.37732],[22.02133,48.39275],[22.0546,48.37753],[22.07649,48.38724],[22.08674,48.37156],[22.13591,48.38052],[22.13106,48.39123],[22.15277,48.39624],[22.15619,48.40931],[22.21257,48.42565],[22.23714,48.41004],[22.26549,48.40987],[22.23988,48.38701],[22.26757,48.36116],[22.31781,48.35454],[22.31329,48.32507],[22.33729,48.30791],[22.33843,48.27921],[22.38475,48.23396],[22.40064,48.2492],[22.43284,48.25252],[22.45639,48.24231],[22.4899,48.25342],[22.49722,48.23955],[22.51615,48.23797],[22.53111,48.20943],[22.57114,48.19614],[22.56164,48.18161],[22.59824,48.14476],[22.59028,48.10734],[22.67545,48.092],[22.73472,48.11985],[22.75762,48.12006],[22.77039,48.10902],[22.77232,48.12187],[22.80277,48.12211],[22.80253,48.10708],[22.82543,48.11751],[22.83644,48.08025],[22.86113,48.07503],[22.8678,48.05243],[22.88204,48.05481],[22.86597,48.01132],[22.83556,47.9906],[22.84076,47.98136],[22.87257,47.97527],[22.86973,47.96596],[22.89157,47.96724],[22.89744,47.95406],[22.84733,47.90776],[22.79281,47.89086],[22.75869,47.89414],[22.77775,47.84225],[22.71363,47.83609],[22.68019,47.78775],[22.61112,47.77175],[22.549,47.77222],[22.48121,47.81089],[22.45131,47.80339],[22.43133,47.73981],[22.35662,47.74862],[22.31777,47.76609],[22.31762,47.74337],[22.28514,47.72928],[22.26432,47.73107],[22.259,47.69791],[22.23068,47.6932],[22.17965,47.59161],[22.12892,47.5979],[22.09428,47.55836],[22.07826,47.56213],[22.05345,47.54748],[22.07122,47.53807],[22.06179,47.5288],[22.04513,47.53989],[22.03672,47.53267],[22.00719,47.48362],[22.03279,47.45084],[22.02388,47.39086],[22.01198,47.3758],[21.96274,47.38105],[21.93825,47.37253],[21.87779,47.28578],[21.88728,47.27305],[21.85349,47.23976],[21.85807,47.18736],[21.81248,47.16675],[21.79241,47.10598],[21.72683,47.09839],[21.6976,47.05792],[21.65042,47.04083],[21.68887,47.002],[21.66787,46.97123],[21.68149,46.96521],[21.6382,46.93305],[21.59845,46.92747],[21.61429,46.88673],[21.60167,46.86682],[21.52033,46.83737],[21.51861,46.80007],[21.48318,46.76502],[21.52634,46.73932],[21.52937,46.72097],[21.49233,46.68597],[21.47284,46.69591],[21.4299,46.69394],[21.43096,46.67814],[21.45467,46.66086],[21.41624,46.64262],[21.4098,46.62181],[21.3657,46.63795],[21.33005,46.63182],[21.31397,46.61767],[21.30124,46.59087],[21.32079,46.58286],[21.2743,46.54074],[21.26003,46.50216],[21.27442,46.47673],[21.29645,46.4763],[21.31743,46.45073],[21.28952,46.41548],[21.29633,46.40696],[21.22501,46.41369],[21.20642,46.40338],[21.19926,46.3479],[21.17623,46.33577],[21.1805,46.30445],[21.11554,46.30185],[21.10305,46.26246],[21.07088,46.2539],[21.06608,46.24294],[21.03662,46.24804],[21.02467,46.26653],[20.96082,46.2623],[20.94658,46.2793],[20.92507,46.27662],[20.92181,46.26181],[20.87327,46.28776],[20.77565,46.27596],[20.74905,46.25085],[20.76186,46.20456],[20.7274,46.20775],[20.73411,46.19394],[20.71405,46.16605],[20.68436,46.14478],[20.65492,46.14977],[20.63945,46.12676],[20.54505,46.17909],[20.50148,46.19033],[20.49494,46.17099],[20.45923,46.14288],[20.39751,46.15747],[20.36853,46.15286],[20.35571,46.16963],[20.29681,46.15215],[20.2549,46.11585],[20.24848,46.1301],[20.23301,46.12417],[20.18174,46.16011],[20.1365,46.14495],[20.10097,46.17728],[20.06362,46.14373],[20.03461,46.14589],[20.01581,46.17684],[19.93541,46.17642],[19.85335,46.15],[19.81797,46.12817],[19.75854,46.14798],[19.69821,46.18793],[19.68277,46.18004],[19.66151,46.19044],[19.63174,46.1693],[19.56765,46.17911],[19.5604,46.16658],[19.50266,46.14245],[19.52712,46.12103],[19.4645,46.09538],[19.46658,46.08204],[19.416,46.04605],[19.3804,46.03587],[19.36409,46.0523],[19.2819,46.0148],[19.29653,45.98812],[19.28565,45.9969],[19.14799,45.99634],[19.13384,46.0371],[19.10487,46.04017],[19.06604,46.0002],[19.07968,45.96364],[19.00598,45.95907],[19.00927,45.92366],[18.90613,45.93538],[18.87946,45.91668],[18.86471,45.92085],[18.86856,45.91134],[18.82768,45.90517],[18.822,45.91459],[18.80751,45.90361],[18.80925,45.87962],[18.79562,45.87845],[18.70489,45.91819],[18.67002,45.91084],[18.65966,45.91689],[18.66513,45.89928],[18.64128,45.88904],[18.65502,45.87424],[18.62777,45.87338],[18.61484,45.85314],[18.62367,45.83985],[18.57324,45.81376],[18.57498,45.80043],[18.55972,45.8038],[18.52235,45.78269],[18.49067,45.79472],[18.48219,45.7655],[18.45628,45.76952],[18.44508,45.76052],[18.44685,45.73713],[18.40763,45.73971],[18.39189,45.7617],[18.36423,45.77294],[18.33942,45.74716],[18.29682,45.76122],[18.24405,45.76123],[18.23073,45.77903],[18.19087,45.78788],[18.16819,45.77627],[18.12465,45.78963],[18.10681,45.77083],[18.08189,45.76452],[17.99588,45.79573],[17.93021,45.78633],[17.90668,45.79257],[17.86531,45.76701],[17.82627,45.81],[17.80898,45.8041],[17.78091,45.81749],[17.76034,45.81192],[17.74086,45.8296],[17.66329,45.83818],[17.62762,45.89794],[17.57007,45.93582],[17.43783,45.95038],[17.4259,45.92727],[17.41081,45.93997],[17.39215,45.93021],[17.38287,45.94757],[17.34762,45.94234],[17.34388,45.96053],[17.35377,45.9525],[17.39054,45.95819],[17.38742,45.96618],[17.35835,45.96427],[17.37549,45.96869],[17.37519,45.98811],[17.36357,45.99154],[17.35672,45.97358],[17.33396,45.99608],[17.33198,45.97289],[17.313,45.96653],[17.32365,45.98878],[17.29877,45.98387],[17.3042,46.00211],[17.25797,46.01103],[17.29632,46.02852],[17.25415,46.03001],[17.27096,46.05671],[17.23248,46.0592],[17.25251,46.06647],[17.23131,46.07903],[17.20199,46.07655],[17.23313,46.09896],[17.2104,46.10017],[17.21297,46.11386],[17.17593,46.10846],[17.17434,46.12876],[17.18652,46.13323],[17.1811,46.15055],[17.15623,46.15858],[17.15929,46.16968],[17.1261,46.16845],[17.12274,46.17898],[17.07525,46.18895],[17.06616,46.2023],[16.97354,46.2252],[16.97395,46.24311],[16.95041,46.24153],[16.88624,46.28146],[16.87137,46.32528],[16.88021,46.3357],[16.86154,46.34524],[16.86562,46.35565],[16.8522,46.35172],[16.84986,46.36262],[16.83529,46.36382],[16.83765,46.3748],[16.82617,46.3671],[16.79334,46.38739],[16.75921,46.37766],[16.72987,46.40149],[16.71821,46.38987],[16.67729,46.44945],[16.66318,46.4487],[16.66637,46.4583],[16.61879,46.46199],[16.60447,46.47608],[16.5236,46.50538],[16.53258,46.5314],[16.51767,46.53635],[16.50841,46.56527],[16.483,46.56604],[16.4834,46.5786],[16.44557,46.61095],[16.42486,46.61316],[16.38594,46.64425],[16.39154,46.66373],[16.41985,46.65848],[16.42863,46.69397],[16.36892,46.70401],[16.37983,46.71539],[16.37109,46.72229],[16.35706,46.71424],[16.3186,46.75414],[16.33054,46.77521],[16.31216,46.778],[16.31277,46.79731],[16.34064,46.80519],[16.35084,46.83006],[16.34033,46.84688],[16.3015,46.85951],[16.29139,46.87283],[16.23323,46.87667],[16.15609,46.85371],[16.12657,46.85691],[16.11391,46.8691]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors","url":"https://www.openstreetmap.org"},"country_code":"HU","id":"OpenStreetMap-turistautak","license_url":"http://www.openstreetmap.hu","max_zoom":18,"name":"OpenStreetMap (turistautak)","type":"tms","url":"http://{switch:h,i,j}.tile.openstreetmap.hu/turistautak/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[18.79273,47.37079],[18.79194,47.37048],[18.79139,47.37063],[18.79011,47.37176],[18.78916,47.37345],[18.78722,47.37566],[18.78603,47.37765],[18.78498,47.37905],[18.7837,47.38032],[18.78267,47.38195],[18.7814,47.38368],[18.77934,47.38713],[18.77666,47.3894],[18.76472,47.3967],[18.7617,47.39966],[18.75631,47.40328],[18.75837,47.40653],[18.7588,47.40776],[18.762,47.41217],[18.76304,47.41315],[18.76593,47.41471],[18.77041,47.41766],[18.77247,47.41809],[18.77248,47.4203],[18.8086,47.44041],[18.81742,47.43539],[18.82092,47.43572],[18.82804,47.43755],[18.83021,47.43526],[18.83585,47.43754],[18.84049,47.43346],[18.84765,47.43572],[18.851,47.43281],[18.869,47.43961],[18.87361,47.43597],[18.87499,47.43342],[18.87386,47.43248],[18.87604,47.42797],[18.8605,47.423],[18.86621,47.41798],[18.87243,47.41086],[18.8663,47.40773],[18.86964,47.40471],[18.86777,47.40207],[18.86509,47.40052],[18.87081,47.39838],[18.86772,47.39699],[18.86992,47.39655],[18.87649,47.39478],[18.87749,47.39495],[18.87867,47.39462],[18.88358,47.38996],[18.88291,47.38967],[18.88539,47.3853],[18.87748,47.38339],[18.88181,47.37605],[18.87914,47.37393],[18.88638,47.36923],[18.88206,47.36773],[18.87973,47.36641],[18.8747,47.36252],[18.87282,47.36137],[18.87028,47.36063],[18.86688,47.35853],[18.86234,47.35637],[18.85567,47.35199],[18.84874,47.34728],[18.83192,47.33841],[18.82497,47.34258],[18.8162,47.34925],[18.81079,47.35357],[18.80823,47.356],[18.80645,47.35854],[18.80708,47.35902],[18.80635,47.36021],[18.80465,47.36175],[18.80381,47.36335],[18.80055,47.36545],[18.79988,47.36617],[18.79416,47.36975],[18.79273,47.37079]],[[18.91871,47.40938],[18.91826,47.40998],[18.92067,47.41156],[18.9251,47.41372],[18.93473,47.41917],[18.94063,47.42241],[18.94982,47.41938],[18.95155,47.4175],[18.9569,47.41923],[18.9577,47.41878],[18.95755,47.41435],[18.96211,47.40507],[18.96266,47.40118],[18.96316,47.39903],[18.95446,47.39673],[18.95276,47.39526],[18.95202,47.39362],[18.95119,47.39356],[18.94692,47.39799],[18.94411,47.39845],[18.94161,47.39869],[18.93735,47.39633],[18.93617,47.39683],[18.93122,47.4],[18.9312,47.40023],[18.92924,47.40205],[18.92561,47.40605],[18.92466,47.40635],[18.92293,47.40926],[18.91871,47.40938]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Fototerkep.hu","url":"http://fototerkep.hu"},"best":true,"country_code":"HU","description":"5 cm resolution bald image of 4 settlement","end_date":"2017-03","id":"Soskut_Pusztazamor_Tarnok_Diosd_orto_2017","max_zoom":20,"min_zoom":11,"name":"Sóskút, Pusztazámor, Tárnok, Diósd ortophoto 2017","start_date":"2017-03","type":"tms","url":"http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/Soskut-Tarnok-Pusztazamor-Diosd/mercator/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[20.14599,46.22811],[20.13323,46.22904],[20.12584,46.22987],[20.12233,46.23099],[20.12085,46.23175],[20.11897,46.23351],[20.11312,46.24136],[20.11203,46.2433],[20.11157,46.245],[20.11119,46.24709],[20.11129,46.24877],[20.11159,46.25097],[20.11222,46.2528],[20.11299,46.25427],[20.11354,46.25535],[20.11477,46.2568],[20.13523,46.27685],[20.13664,46.27751],[20.13789,46.27803],[20.13939,46.27835],[20.14088,46.27846],[20.16115,46.27816],[20.16211,46.27816],[20.16359,46.2777],[20.16618,46.27615],[20.16878,46.27386],[20.16961,46.27144],[20.16959,46.27045],[20.17009,46.27044],[20.17399,46.26433],[20.17662,46.25829],[20.1948,46.25492],[20.18587,46.24481],[20.18466,46.24531],[20.17804,46.23831],[20.17818,46.23771],[20.17953,46.2371],[20.17257,46.23002],[20.16983,46.23504],[20.16877,46.23629],[20.16703,46.23785],[20.16594,46.23873],[20.16544,46.239],[20.16548,46.239],[20.16352,46.24014],[20.16021,46.2412],[20.15927,46.24153],[20.15927,46.24158],[20.15835,46.24185],[20.15495,46.24229],[20.15108,46.23515],[20.14938,46.23246],[20.14599,46.22811]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"SZTE TFGT - University of Szeged","url":"http://www.geo.u-szeged.hu"},"best":true,"country_code":"HU","description":"Inner part of Szeged","end_date":"2011","id":"Szeged_2011","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#Szeged","max_zoom":22,"min_zoom":10,"name":"Szeged orthophoto 2011","start_date":"2011","type":"tms","url":"http://e.tile.openstreetmap.hu/szeged-2011-10cm/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Törökbálint","url":"http://www.torokbalint.hu"},"available_projections":["EPSG:4326","EPSG:23700","EPSG:3857"],"country_code":"HU","description":"5 cm resolution bald image","end_date":"2013-09","id":"Torokbalint-orthophoto-2013","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#T.C3.B6r.C3.B6kb.C3.A1lint","name":"Törökbálint orthophoto 2013","start_date":"2013-09","type":"wms","url":"https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ORTO_2013_5CM_2013SZEPT_TAKARASSAL_512_512&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true"},"type":"Feature"},{"geometry":{"coordinates":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Törökbálint","url":"http://www.torokbalint.hu/"},"available_projections":["EPSG:4326","EPSG:23700","EPSG:3857"],"country_code":"HU","description":"5 cm resolution bald image","end_date":"2015","id":"Torokbalint-orthophoto-2015","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#T.C3.B6r.C3.B6kb.C3.A1lint","name":"Törökbálint orthophoto 2015","privacy_policy_url":"https://www.torokbalint.hu/app/cms/TorokbalintApp/index?id=52","start_date":"2015","type":"wms","url":"https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=TBORTO_2015_20160218&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true"},"type":"Feature"},{"geometry":{"coordinates":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Törökbálint","url":"http://www.torokbalint.hu/"},"available_projections":["EPSG:4326","EPSG:23700","EPSG:3857"],"best":true,"country_code":"HU","description":"5 cm resolution bald image","end_date":"2018","id":"Torokbalint-orthophoto-2018","license_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Hungary/Ortofot%C3%B3k#T.C3.B6r.C3.B6kb.C3.A1lint","name":"Törökbálint orthophoto 2018","privacy_policy_url":"https://www.torokbalint.hu/app/cms/TorokbalintApp/index?id=52","start_date":"2018","type":"wms","url":"https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=TBORTO_2018&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true"},"type":"Feature"},{"geometry":{"coordinates":[[[18.8577,47.44553],[18.86169,47.44883],[18.86491,47.44704],[18.8609,47.44373],[18.8577,47.44553]],[[18.80614,47.59304],[18.81376,47.5974],[18.82295,47.59011],[18.81533,47.58574],[18.80614,47.59304]],[[17.66691,46.92167],[17.66369,46.93033],[17.67207,46.93178],[17.67529,46.92312],[17.66691,46.92167]],[[17.6725,46.93546],[17.67529,46.92708],[17.68409,46.92845],[17.68129,46.93683],[17.6725,46.93546]],[[17.82155,46.96075],[17.82507,46.9547],[17.83347,46.95701],[17.82995,46.96304],[17.82155,46.96075]],[[18.62796,47.19818],[18.63943,47.20324],[18.64953,47.1926],[18.63806,47.18753],[18.62796,47.19818]],[[17.51223,46.8789],[17.51406,46.88166],[17.5214,46.87939],[17.51957,46.87662],[17.51223,46.8789]],[[17.67724,46.91844],[17.68718,46.92344],[17.70594,46.90603],[17.69249,46.89926],[17.68144,46.90951],[17.68275,46.90595],[17.68198,46.90582],[17.68667,46.89926],[17.67947,46.89686],[17.67405,46.90445],[17.67131,46.90398],[17.66666,46.91662],[17.67724,46.91844]],[[18.80776,47.55615],[18.81638,47.55969],[18.81351,47.56305],[18.80473,47.55949],[18.80776,47.55615]],[[18.98706,47.46989],[18.97962,47.47042],[18.98056,47.47648],[18.988,47.47595],[18.98706,47.46989]],[[18.98356,47.41149],[19.00839,47.42511],[19.01568,47.41932],[18.9907,47.40518],[18.98356,47.41149]],[[19.02652,47.87563],[19.03163,47.87613],[19.03305,47.86957],[19.02793,47.86907],[19.02652,47.87563]],[[18.00803,46.86674],[18.01095,46.86028],[18.01323,46.86064],[18.01626,46.8536],[18.01682,46.85371],[18.01852,46.84948],[18.02021,46.84631],[18.02961,46.84829],[18.02742,46.85392],[18.03388,46.85534],[18.03056,46.86395],[18.03367,46.86456],[18.03058,46.87154],[18.00803,46.86674]],[[17.99509,46.87632],[17.98585,46.87595],[17.98535,46.88397],[17.98599,46.88412],[17.98531,46.88537],[17.95829,46.87876],[17.96077,46.87351],[17.92868,46.86631],[17.92467,46.87372],[17.93136,46.87535],[17.92995,46.87822],[17.9553,46.88415],[17.9946,46.89341],[17.99786,46.88671],[17.98771,46.88443],[17.98774,46.88411],[17.99415,46.88442],[17.99509,46.87632]],[[18.86533,47.42808],[18.87291,47.42455],[18.87701,47.42871],[18.86799,47.43238],[18.86774,47.43208],[18.86517,47.43317],[18.86477,47.4327],[18.86441,47.43285],[18.86288,47.43108],[18.86328,47.43092],[18.86288,47.43046],[18.86516,47.42947],[18.86448,47.42875],[18.86553,47.42829],[18.86533,47.42808]],[[19.16232,47.59776],[19.16893,47.59033],[19.17815,47.59512],[19.17291,47.60068],[19.16232,47.59776]],[[18.13162,47.02619],[18.14103,47.02111],[18.13923,47.01957],[18.15704,47.01044],[18.16271,47.00242],[18.16463,46.99571],[18.16639,46.9959],[18.16702,46.99363],[18.17101,46.99454],[18.1722,46.99571],[18.16977,47.00416],[18.17656,47.00709],[18.1761,47.00771],[18.17639,47.00781],[18.17057,47.01414],[18.1748,47.01815],[18.17782,47.01428],[18.18518,47.01746],[18.17933,47.0239],[18.17589,47.02268],[18.17277,47.02434],[18.17219,47.02377],[18.17159,47.02407],[18.16938,47.0221],[18.16216,47.02596],[18.16485,47.02832],[18.16245,47.02947],[18.16323,47.03025],[18.1521,47.03554],[18.15156,47.03498],[18.1503,47.03563],[18.14513,47.03112],[18.14337,47.0322],[18.1454,47.03419],[18.14441,47.03467],[18.14522,47.03539],[18.14168,47.03697],[18.13111,47.02745],[18.13226,47.0269],[18.13162,47.02619]],[[17.79852,46.81745],[17.79178,46.81585],[17.79601,46.80664],[17.7948,46.80598],[17.79693,46.80056],[17.80109,46.79993],[17.80736,46.80225],[17.79852,46.81745]],[[17.7788,46.81461],[17.78446,46.80714],[17.79083,46.80925],[17.7853,46.81683],[17.7788,46.81461]]],"type":"Polygon"},"properties":{"attribution":{"text":"openstreetmap.hu"},"country_code":"HU","id":"osm-hu-ortho","max_zoom":21,"name":"openstreetmap.hu orthophotos","type":"tms","url":"http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/openstreetmap.hu.orthophotos/mercator/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-8.83128,55.39633],[-7.32213,55.39861],[-7.28913,55.43332],[-7.2368,55.45308],[-7.18881,55.4498],[-7.15281,55.39684],[-6.90561,55.3949],[-6.90472,55.38421],[-5.84853,55.3923],[-5.83786,55.24868],[-5.36148,55.2507],[-5.38992,53.84665],[-5.87341,53.84874],[-5.8983,52.82563],[-6.01917,52.82563],[-6.02628,51.77124],[-8.11314,51.77124],[-8.12736,51.32688],[-10.60528,51.30911],[-10.62719,52.03283],[-10.64698,52.03225],[-10.64698,52.04404],[-10.62719,52.04481],[-10.62907,52.07456],[-10.66992,52.07437],[-10.67024,52.08769],[-10.63127,52.08982],[-10.63931,52.41472],[-10.31377,52.41855],[-10.31664,53.33413],[-10.36997,53.33307],[-10.38597,54.35345],[-8.81638,54.35863],[-8.81734,54.65957],[-8.84134,54.66163],[-8.84223,54.69297],[-8.83156,54.71454],[-8.81512,54.71454],[-8.83128,55.39633]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"IE","end_date":"1940","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"bartholomew_qi1940","max_zoom":13,"min_zoom":5,"name":"Ireland Bartholomew Quarter-Inch 1940","start_date":"1940","type":"tms","url":"https://geo.nls.uk/maps/ireland/bartholomew/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-9.31139,51.43828],[-7.36131,51.99302],[-7.33934,52.13149],[-6.9658,52.06231],[-6.23796,52.1534],[-6.21049,52.52928],[-5.98253,52.80079],[-5.96056,53.67037],[-6.20775,53.67851],[-6.22423,53.95255],[-5.86442,54.12513],[-5.85893,54.20392],[-5.53483,54.23122],[-5.39476,54.44739],[-5.50188,54.70052],[-6.21873,55.38194],[-6.86418,55.2162],[-7.25145,55.46455],[-7.53435,55.30853],[-8.25395,55.26787],[-8.61101,54.97259],[-8.49016,54.89369],[-8.83897,54.68306],[-8.42699,54.52397],[-8.75108,54.31302],[-9.29765,54.38985],[-10.05296,54.37866],[-10.30015,54.05747],[-10.02275,53.79386],[-10.30565,53.55142],[-9.99803,53.24354],[-9.09166,53.19256],[-9.81676,53.1102],[-9.48167,52.96984],[-9.70415,52.68107],[-10.00627,52.63608],[-9.78929,52.52426],[-9.99803,52.32663],[-10.64348,52.1753],[-10.39629,51.9761],[-10.16832,51.64668],[-10.28642,51.57334],[-9.88542,51.57163],[-9.79204,51.44684],[-9.31139,51.43828]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Glucksman Map Library, Trinity College Dublin","url":"https://wiki.openstreetmap.org/wiki/Ireland/Background_Imagery#Trinity_College_Dublin"},"country_code":"IE","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ie/IrelandBritishWarOffice-GSGS3906.png","id":"GSGS3906","max_zoom":18,"name":"Ireland British War Office 1:25k GSGS 3906","type":"tms","url":"https://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-10.08474,51.41479],[-10.09065,51.50641],[-10.45642,51.5004],[-10.50059,52.3043],[-10.08375,52.31274],[-10.0841,52.34047],[-10.0558,52.34089],[-10.07685,52.76282],[-9.77802,52.76846],[-9.78182,52.85773],[-9.63379,52.8596],[-9.64496,53.12945],[-10.09197,53.12272],[-10.10514,53.39129],[-10.40526,53.38663],[-10.45308,54.1935],[-10.29985,54.1975],[-10.31498,54.46696],[-8.92761,54.48539],[-8.93395,54.75466],[-8.77731,54.7555],[-8.78267,55.02522],[-8.9403,55.02382],[-8.94518,55.29342],[-7.52804,55.29703],[-7.5256,55.3875],[-7.0542,55.38417],[-7.05566,55.29397],[-6.32415,55.28591],[-6.32171,55.32536],[-6.10358,55.3223],[-6.10456,55.28286],[-5.79858,55.2773],[-5.81176,55.00871],[-5.65658,55.00564],[-5.67219,54.7355],[-5.36183,54.72959],[-5.39648,54.19179],[-5.85568,54.20178],[-5.92205,52.85245],[-6.07088,52.8551],[-6.10309,52.13733],[-6.83313,52.14632],[-6.83557,52.05789],[-7.56415,52.06179],[-7.5661,51.79216],[-8.1473,51.79276],[-8.14633,51.70333],[-8.29126,51.70273],[-8.2898,51.52273],[-9.11744,51.51696],[-9.11793,51.46257],[-9.36925,51.46166],[-9.36729,51.42546],[-10.08474,51.41479]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"National Library of Scotland Historic Maps","url":"https://geo.nls.uk/maps"},"country_code":"IE","end_date":"1943","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/gb/NLS-OSTownPlan-Hamilton1858.png","id":"GSGS4136","max_zoom":15,"min_zoom":5,"name":"Ireland British War Office One-Inch 1941-43 GSGS 4136","start_date":"1941","type":"tms","url":"https://geo.nls.uk/maps/ireland/gsgs4136/{zoom}/{x}/{-y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-9.83169,51.4427],[-9.69848,51.44399],[-9.69574,51.45511],[-9.55772,51.45554],[-9.55703,51.44484],[-9.30503,51.4457],[-9.30503,51.45426],[-8.55728,51.4626],[-8.55384,51.51455],[-8.09516,51.74981],[-7.81776,51.74726],[-7.82188,51.89157],[-7.63786,51.90683],[-7.43049,52.04471],[-7.24235,52.07173],[-6.27555,52.07173],[-6.2783,52.19565],[-6.15058,52.19902],[-6.12552,52.73674],[-6.10698,52.73882],[-6.09737,52.79989],[-6.0239,52.84844],[-5.97309,52.92715],[-5.95832,52.96832],[-5.94322,53.22149],[-6.04759,53.22395],[-6.04209,53.33152],[-5.98442,53.33234],[-5.98991,53.63551],[-6.1063,53.63409],[-6.10218,53.72681],[-6.08501,53.72763],[-6.07643,53.964],[-5.34172,54.34839],[-5.40901,54.39718],[-5.20164,54.50098],[-5.57106,54.74428],[-5.66787,54.69351],[-5.69843,54.71454],[-5.63011,54.73952],[-5.615,55.05776],[-5.86769,55.06169],[-5.86906,55.10021],[-5.94596,55.101],[-5.94322,55.32586],[-6.68479,55.33679],[-6.69441,55.29459],[-6.90246,55.30007],[-6.90246,55.24061],[-7.20527,55.45923],[-7.28218,55.42924],[-7.32887,55.46001],[-7.54997,55.36334],[-7.76695,55.51759],[-8.92051,54.99321],[-8.72001,54.84483],[-8.86283,54.78073],[-8.80653,54.73556],[-8.8903,54.70145],[-8.69255,54.55279],[-8.61564,54.58861],[-8.47145,54.48344],[-8.731,54.47785],[-8.72413,54.32357],[-9.05715,54.31876],[-9.05441,54.33398],[-9.69917,54.33758],[-9.70397,54.37879],[-9.9031,54.37559],[-9.9031,54.32397],[-10.45722,54.31035],[-10.42701,53.58378],[-10.31234,53.58296],[-10.31715,53.50136],[-10.30548,53.3762],[-10.23887,53.30322],[-9.97657,53.12353],[-9.72732,53.03361],[-9.60578,53.01296],[-9.45266,53.01089],[-9.53437,52.91618],[-9.56596,52.78681],[-9.95666,52.57785],[-9.95872,52.54487],[-9.74105,52.55364],[-9.89761,52.50435],[-10.00816,52.44328],[-10.186,52.31712],[-10.2835,52.29067],[-10.45036,52.28899],[-10.44555,52.21416],[-10.49018,52.19018],[-10.50323,52.15438],[-10.65635,52.14933],[-10.65635,52.1409],[-10.73463,52.13921],[-10.72502,52.01049],[-10.55748,52.01218],[-10.46409,52.03922],[-10.45928,52.08524],[-10.43869,52.07173],[-10.4277,51.92885],[-10.4998,51.88522],[-10.45791,51.82542],[-10.41328,51.82414],[-10.41328,51.80674],[-10.44281,51.81693],[-10.55404,51.78423],[-10.5767,51.75449],[-10.46066,51.77446],[-10.41465,51.77319],[-10.41465,51.70515],[-10.09948,51.71281],[-10.00953,51.74003],[-10.42701,51.55427],[-10.42221,51.50472],[-9.86946,51.58799],[-9.86534,51.45597],[-9.831,51.45597],[-9.83169,51.4427]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"James Hardiman Library, NUIG","url":"https://library.nuigalway.ie/collections/archives/depositedcollections/digitisedarchives/"},"country_code":"IE","description":"Memorial Atlas of Ireland (1901) L.J. Richards","end_date":"1901","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ie/IrelandCivilParishesandBaronies-MemorialAtlas.png","id":"antrimnuig","max_zoom":20,"min_zoom":5,"name":"Ireland Civil Parishes and Baronies - Memorial Atlas","start_date":"1901","type":"tms","url":"https://mapwarper.net/layers/tile/295/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.32987,52.38838],[-6.16508,52.58073],[-5.9893,52.9811],[-6.05796,53.31713],[-5.9838,53.50704],[-6.24473,53.86326],[-6.35459,53.91182],[-6.31614,53.98133],[-6.13487,53.97002],[-5.61851,54.23574],[-5.3878,54.44708],[-5.53886,54.67641],[-6.07444,55.21277],[-6.21452,55.33168],[-6.78306,55.17828],[-6.9506,55.25505],[-7.17582,55.35355],[-7.22526,55.45024],[-7.50816,55.28791],[-7.63999,55.28009],[-8.02451,55.2206],[-8.25797,55.27853],[-8.28269,55.172],[-8.58482,55.01168],[-8.38432,54.86021],[-8.69743,54.78901],[-8.85124,54.67641],[-8.46946,54.57942],[-8.17008,54.62397],[-8.33763,54.4854],[-8.68644,54.36556],[-8.62876,54.27625],[-9.04075,54.3051],[-9.13688,54.23614],[-9.2852,54.33834],[-9.90043,54.32233],[-10.15037,54.2245],[-10.27397,53.94578],[-9.98832,53.85678],[-10.3289,53.60982],[-10.22727,53.39418],[-9.78233,53.21857],[-8.96934,53.26952],[-9.04624,53.1762],[-9.2852,53.15644],[-9.40879,52.99433],[-9.57084,52.75562],[-9.97321,52.54316],[-9.70405,52.57071],[-9.69444,52.4855],[-9.97733,52.41854],[-9.87296,52.33387],[-9.92378,52.2381],[-10.06523,52.34478],[-10.15586,52.30113],[-10.65849,52.07212],[-9.90318,52.12274],[-10.45799,51.88772],[-10.39344,51.82411],[-10.56098,51.76635],[-10.32478,51.79014],[-10.25749,51.70937],[-9.80705,51.81816],[-10.28289,51.57045],[-9.89631,51.60032],[-9.51454,51.70256],[-9.83177,51.55082],[-9.83039,51.43368],[-9.43351,51.50468],[-9.53788,51.41741],[-8.63151,51.59179],[-7.70316,51.95209],[-7.46421,52.12105],[-6.33537,52.17667],[-6.32987,52.38838]],[[-9.89082,53.14368],[-9.51042,53.03605],[-9.45274,53.08557],[-9.82902,53.18279],[-9.89082,53.14368]]],"type":"Polygon"},"properties":{"country_code":"IE","icon":"https://www.townlands.ie/static/logo_small.png","id":"osmie_tie_not_counties","max_zoom":19,"min_zoom":2,"name":"OSMIE T.ie Land not in Counties","type":"tms","url":"https://www.townlands.ie/tiles/not_counties/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-13.04701,64.21109],[-15.16496,64.22408],[-15.16805,64.81573],[-13.04357,64.8036],[-13.04701,64.21109]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"IS","description":"Missing islets and inaccurate coast (true color)","end_date":"2013-08-27","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC82160152013239LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Eastern Iceland","start_date":"2013-08-27","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC82160152013239LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.22962,44.53077],[11.23184,44.52461],[11.24123,44.52167],[11.23251,44.50893],[11.23572,44.50323],[11.25009,44.50116],[11.24765,44.49644],[11.25708,44.49765],[11.25653,44.49294],[11.29461,44.48981],[11.29676,44.4857],[11.28807,44.47586],[11.29226,44.4609],[11.28447,44.45459],[11.28228,44.42572],[11.29347,44.4276],[11.29254,44.43377],[11.31339,44.42103],[11.32504,44.42274],[11.33695,44.42772],[11.33765,44.43167],[11.3315,44.43273],[11.33453,44.43867],[11.34466,44.43594],[11.34498,44.44093],[11.36235,44.45099],[11.37312,44.44935],[11.37498,44.45897],[11.39499,44.46368],[11.4011,44.46122],[11.39464,44.46803],[11.41577,44.48376],[11.42559,44.4845],[11.42717,44.48921],[11.41727,44.4906],[11.43363,44.51312],[11.42692,44.51532],[11.43034,44.5196],[11.42466,44.51959],[11.41987,44.52934],[11.4143,44.52564],[11.40739,44.52851],[11.41487,44.53999],[11.38871,44.54145],[11.39082,44.54553],[11.36474,44.55253],[11.36414,44.55609],[11.3573,44.5519],[11.34375,44.55333],[11.33589,44.54299],[11.33145,44.54734],[11.31349,44.54722],[11.30929,44.5295],[11.29104,44.53581],[11.28179,44.54851],[11.26911,44.53248],[11.25118,44.55578],[11.24499,44.55569],[11.22962,44.53077]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Comune di Bologna cc-by 4.0 ODbL compliant","url":"http://dati.comune.bologna.it/node/3449"},"best":true,"country_code":"IT","end_date":"2017","id":"Bologna-Orthophoto-2017","license_url":"http://dati.comune.bologna.it/node/3449","max_zoom":19,"name":"Bologna ortofoto 2017","start_date":"2017","type":"tms","url":"https://sitmappe.comune.bologna.it/tms/tileserver/Ortofoto2017/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[8.4816,45.28938],[8.63085,45.01372],[8.78009,44.98189],[8.86775,45.02712],[9.07148,44.80063],[9.14966,44.79055],[9.19467,44.67106],[9.31549,44.65758],[9.36997,44.698],[9.37945,44.82752],[9.33207,44.91483],[9.41025,45.03716],[9.78692,45.04386],[9.78692,45.00032],[9.93853,45.002],[9.93379,45.08903],[10.00013,45.09071],[10.00013,44.99697],[10.20149,45.002],[10.20149,44.95004],[10.40523,44.9534],[10.40523,44.90476],[10.49288,44.90308],[10.49288,44.8628],[10.6516,44.85776],[10.64686,44.90308],[11.35282,44.89469],[11.35519,44.93663],[11.45706,44.93328],[11.44758,44.97351],[11.3623,45.00032],[11.35282,45.09238],[11.25806,45.09572],[11.25806,45.13752],[11.16094,45.14253],[11.16094,45.18262],[11.05196,45.19097],[11.05196,45.23436],[10.9572,45.23269],[10.9572,45.28605],[10.8577,45.28438],[10.85534,45.32271],[10.74636,45.32937],[10.75347,45.47408],[10.64686,45.48073],[10.60301,45.51074],[10.57636,45.47379],[10.53549,45.50036],[10.59116,45.53148],[10.61666,45.61304],[10.87429,45.84001],[10.82217,45.85982],[10.67529,45.85817],[10.57342,45.8103],[10.58624,46.00773],[10.5016,46.01596],[10.59325,46.11529],[10.60896,46.35583],[10.65634,46.38688],[10.64686,46.46037],[10.4147,46.57285],[10.32705,46.56797],[10.25124,46.65422],[10.07357,46.62494],[10.02382,46.53212],[10.02855,46.43588],[10.07357,46.39832],[10.12095,46.39669],[10.0783,46.32802],[10.14464,46.26582],[10.10436,46.24781],[9.97407,46.40812],[9.71111,46.3689],[9.68742,46.32312],[9.61872,46.30675],[9.55712,46.32475],[9.50264,46.39015],[9.47895,46.5256],[9.25626,46.51582],[9.22546,46.44078],[9.27284,46.34438],[9.17098,46.19044],[9.04305,46.12808],[9.062,46.09195],[8.97435,46.04593],[8.98856,46.00152],[8.93882,45.97354],[9.04068,45.8961],[9.01936,45.84827],[8.84879,46.0081],[8.89854,46.07059],[8.8251,46.11823],[8.70902,46.11659],[8.67823,46.07552],[8.7185,46.01468],[8.55504,45.90434],[8.59768,45.83836],[8.53372,45.79378],[8.6877,45.49235],[8.78009,45.41591],[8.68533,45.37931],[8.71139,45.34103],[8.69481,45.32104],[8.62848,45.37765],[8.5124,45.35768],[8.4816,45.28938]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Regione Lombardia - Infrastruttura per l'informazione territoriale","url":"https://www.dati.gov.it/content/italian-open-data-license-v20"},"available_projections":["CRS:84","EPSG:32632","EPSG:4326"],"category":"map","country_code":"IT","id":"Lombardia-Italy-CTR","license_url":"http://www.geoportale.regione.lombardia.it/en/metadati?p_p_id=PublishedMetadata_WAR_geoportalemetadataportlet&p_p_lifecycle=0&p_p_state=maximized&p_p_mode=view&_PublishedMetadata_WAR_geoportalemetadataportlet_view=editPublishedMetadata&_PublishedMetadata_WAR_geoportalemetadataportlet_uuid={4314F5A6-7099-4DFB-BCE2-F71001E1C615}&_PublishedMetadata_WAR_geoportalemetadataportlet_editType=view&_PublishedMetadata_WAR_geoportalemetadataportlet_fromAsset=true&rid=local","name":"Lombardia - Italy (C.T.R. 10000 - 1980-94)","privacy_policy_url":"http://www.geoportale.regione.lombardia.it/en/privacy","type":"wms","url":"https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?LAYERS=C.T.R. 10000 - 1980-94&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[8.4816,45.28938],[8.63085,45.01372],[8.78009,44.98189],[8.86775,45.02712],[9.07148,44.80063],[9.14966,44.79055],[9.19467,44.67106],[9.31549,44.65758],[9.36997,44.698],[9.37945,44.82752],[9.33207,44.91483],[9.41025,45.03716],[9.78692,45.04386],[9.78692,45.00032],[9.93853,45.002],[9.93379,45.08903],[10.00013,45.09071],[10.00013,44.99697],[10.20149,45.002],[10.20149,44.95004],[10.40523,44.9534],[10.40523,44.90476],[10.49288,44.90308],[10.49288,44.8628],[10.6516,44.85776],[10.64686,44.90308],[11.35282,44.89469],[11.35519,44.93663],[11.45706,44.93328],[11.44758,44.97351],[11.3623,45.00032],[11.35282,45.09238],[11.25806,45.09572],[11.25806,45.13752],[11.16094,45.14253],[11.16094,45.18262],[11.05196,45.19097],[11.05196,45.23436],[10.9572,45.23269],[10.9572,45.28605],[10.8577,45.28438],[10.85534,45.32271],[10.74636,45.32937],[10.75347,45.47408],[10.64686,45.48073],[10.60301,45.51074],[10.57636,45.47379],[10.53549,45.50036],[10.59116,45.53148],[10.61666,45.61304],[10.87429,45.84001],[10.82217,45.85982],[10.67529,45.85817],[10.57342,45.8103],[10.58624,46.00773],[10.5016,46.01596],[10.59325,46.11529],[10.60896,46.35583],[10.65634,46.38688],[10.64686,46.46037],[10.4147,46.57285],[10.32705,46.56797],[10.25124,46.65422],[10.07357,46.62494],[10.02382,46.53212],[10.02855,46.43588],[10.07357,46.39832],[10.12095,46.39669],[10.0783,46.32802],[10.14464,46.26582],[10.10436,46.24781],[9.97407,46.40812],[9.71111,46.3689],[9.68742,46.32312],[9.61872,46.30675],[9.55712,46.32475],[9.50264,46.39015],[9.47895,46.5256],[9.25626,46.51582],[9.22546,46.44078],[9.27284,46.34438],[9.17098,46.19044],[9.04305,46.12808],[9.062,46.09195],[8.97435,46.04593],[8.98856,46.00152],[8.93882,45.97354],[9.04068,45.8961],[9.01936,45.84827],[8.84879,46.0081],[8.89854,46.07059],[8.8251,46.11823],[8.70902,46.11659],[8.67823,46.07552],[8.7185,46.01468],[8.55504,45.90434],[8.59768,45.83836],[8.53372,45.79378],[8.6877,45.49235],[8.78009,45.41591],[8.68533,45.37931],[8.71139,45.34103],[8.69481,45.32104],[8.62848,45.37765],[8.5124,45.35768],[8.4816,45.28938]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"CTR DBT 10000 Regione Lombardia","url":"https://www.dati.gov.it/content/italian-open-data-license-v20"},"available_projections":["EPSG:3857","EPSG:32632","EPSG:4326"],"country_code":"IT","id":"Lombardia-Italy-CTR-DBT","name":"Lombardia - Italy (CTR DBT)","type":"wms","url":"https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sfondo%20C.T.R.%2010000&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[7.54795,43.73118],[8.10697,43.86701],[8.73593,44.38944],[10.18338,43.85116],[9.55016,43.13605],[10.27725,42.27515],[11.69748,42.08118],[12.90059,40.84897],[14.97466,40.20869],[16.04773,38.8953],[13.1086,38.74113],[11.77717,37.93605],[14.40624,36.74299],[15.13467,36.59364],[15.42867,37.027],[15.21993,37.43376],[15.4836,37.92936],[16.01644,37.8036],[17.21669,38.87425],[17.21669,39.40468],[16.55477,39.78775],[17.05464,40.45144],[18.32906,39.70539],[18.68773,40.0587],[18.04964,40.67064],[16.00545,41.52122],[16.38448,41.85964],[15.51837,42.1537],[14.57997,42.2461],[13.56099,43.65128],[12.57889,44.0867],[12.28795,44.62204],[12.56398,44.97092],[12.34151,45.17458],[12.41696,45.40557],[13.09252,45.62826],[13.69549,45.70806],[13.78445,45.5825],[13.9191,45.6322],[13.8235,45.7176],[13.59784,45.8072],[13.64307,45.98326],[13.52963,45.96588],[13.47474,46.00546],[13.66472,46.17392],[13.47587,46.22725],[13.42218,46.20758],[13.37671,46.29668],[13.59777,46.44137],[13.68684,46.43881],[13.7148,46.5222],[12.9151,46.60953],[12.38708,46.71529],[12.27591,46.88651],[12.17486,46.90895],[12.11675,47.01241],[12.21781,47.03996],[12.19254,47.09331],[11.74789,46.98484],[11.33355,46.99862],[11.10618,46.92966],[11.00764,46.76896],[10.72974,46.78972],[10.75753,46.82258],[10.66405,46.87614],[10.47197,46.85698],[10.38659,46.67847],[10.49375,46.62049],[10.46136,46.53164],[10.25309,46.57432],[10.23674,46.63484],[10.10307,46.61003],[10.03715,46.44479],[10.165,46.41051],[10.10506,46.3372],[10.17862,46.25626],[10.07055,46.21668],[9.95249,46.38045],[9.73086,46.35071],[9.71273,46.29266],[9.57015,46.2958],[9.46117,46.37481],[9.45936,46.50873],[9.40487,46.46621],[9.36128,46.5081],[9.28136,46.49685],[9.24503,46.23616],[8.95601,45.96503],[9.09065,45.89906],[9.0298,45.82127],[8.90992,45.8333],[8.9408,45.86682],[8.88904,45.95465],[8.78551,45.99063],[8.85617,46.0748],[8.62242,46.12112],[8.45032,46.26869],[8.42464,46.46367],[8.08814,46.26692],[8.15493,46.1834],[8.11383,46.11577],[8.02906,46.10331],[7.98881,45.99867],[7.9049,45.99945],[7.85949,45.91485],[7.56343,45.97421],[7.10685,45.85653],[7.04151,45.92435],[6.95315,45.85163],[6.80785,45.83265],[6.80785,45.71864],[6.98948,45.63869],[7.00037,45.509],[7.18019,45.40071],[7.10572,45.32924],[7.13115,45.25386],[6.85144,45.13226],[6.7697,45.16044],[6.62803,45.11175],[6.66981,45.02324],[6.74791,45.01939],[6.75518,44.89915],[7.02217,44.82519],[7.07484,44.68073],[6.95133,44.66264],[6.85507,44.53072],[6.94504,44.43112],[6.88784,44.42043],[6.89171,44.36637],[7.00764,44.23736],[7.36364,44.11882],[7.68694,44.17487],[7.72508,44.07578],[7.49355,43.86551],[7.54795,43.73118]],[[8.17134,39.14848],[8.62453,38.75119],[9.09831,39.03764],[9.03102,39.13144],[9.26585,39.18575],[9.64076,39.0227],[9.89894,40.67991],[9.50068,41.39257],[8.30317,40.91071],[8.41304,41.16139],[8.21254,41.13864],[8.07521,40.59862],[8.36154,40.35],[8.27914,39.98585],[8.38283,39.6536],[8.17134,39.14848]],[[12.51489,35.53423],[12.64054,35.5306],[12.63861,35.48641],[12.51296,35.49005],[12.51489,35.53423]],[[11.91218,36.85688],[12.08179,36.85523],[12.07958,36.70974],[11.90998,36.71139],[11.91218,36.85688]],[[12.84019,35.88131],[12.89186,35.88145],[12.89198,35.85003],[12.84031,35.84989],[12.84019,35.88131]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale","url":"http://www.sitr.regione.sicilia.it"},"available_projections":["EPSG:2056","EPSG:21781","EPSG:3003","EPSG:3004","EPSG:3035","EPSG:32632","EPSG:32633","EPSG:3857","EPSG:4258","EPSG:4265","EPSG:4326","EPSG:4806","EPSG:900913"],"category":"historicphoto","country_code":"IT","end_date":"2006","id":"PCN-Italy-2006","license_url":"https://wiki.openstreetmap.org/wiki/Italy/PCN","name":"PCN 2006 - Italy","privacy_policy_url":"http://www.pcn.minambiente.it/mattm/en/legal-notice/","start_date":"2006","type":"wms","url":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_06.map&LAYERS=OI.ORTOIMMAGINI.2006.33,OI.ORTOIMMAGINI.2006.32&STYLES=,&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[12.33149,41.64637],[12.41178,41.64791],[12.41499,41.54635],[12.49574,41.54789],[12.4985,41.49619],[12.57948,41.49843],[12.58062,41.42932],[12.60632,41.4288],[12.60746,41.39663],[12.8293,41.39818],[12.83159,41.34688],[12.9128,41.34843],[12.9151,41.29726],[12.99585,41.2983],[12.99791,41.19636],[13.1679,41.19808],[13.16721,41.24692],[13.41337,41.24829],[13.4152,41.19705],[13.8341,41.19808],[13.83341,41.2476],[13.91737,41.24847],[13.91668,41.39749],[14.0011,41.39784],[13.99996,41.49774],[14.08415,41.49826],[14.08346,41.65014],[14.00087,41.6498],[13.99973,41.75051],[13.83433,41.74965],[13.83364,41.80047],[13.75151,41.79978],[13.7499,41.84987],[13.41841,41.8497],[13.41681,41.95027],[13.33445,41.94959],[13.3333,42.00041],[13.25141,41.99973],[13.25003,42.05051],[13.08509,42.04966],[13.08394,42.097],[13.33399,42.09819],[13.33376,42.1472],[13.41772,42.14822],[13.41635,42.25052],[13.33399,42.24984],[13.33353,42.30094],[13.25141,42.29992],[13.25003,42.54699],[13.41795,42.54817],[13.41589,42.75065],[13.33468,42.74947],[13.33307,42.90056],[13.16836,42.89938],[13.16721,42.95079],[12.96419,42.95012],[12.96258,43.0003],[12.91877,42.9998],[12.91601,43.25078],[12.83526,43.24994],[12.83228,43.50107],[12.66321,43.4994],[12.66482,43.45112],[12.58567,43.44996],[12.58246,43.5508],[12.50171,43.5498],[12.49987,43.65131],[12.16242,43.64915],[12.16494,43.60132],[12.07891,43.5995],[12.0819,43.45196],[11.99541,43.44913],[11.99862,43.34661],[12.07891,43.34795],[12.08075,43.30189],[11.9961,43.29955],[11.99862,43.20214],[11.91237,43.19929],[11.91466,43.15212],[11.83207,43.14944],[11.8323,43.09653],[11.91099,43.09837],[11.91466,42.90191],[11.82909,42.89922],[11.83139,42.85231],[11.74582,42.84945],[11.74811,42.65236],[11.6731,42.64966],[11.67493,42.6105],[11.49485,42.59936],[11.49852,42.49593],[11.57812,42.49796],[11.58156,42.45244],[11.41226,42.44872],[11.41524,42.34656],[11.49599,42.34792],[11.49921,42.29636],[11.57835,42.29822],[11.58225,42.24628],[11.66185,42.24832],[11.66621,42.09649],[11.74536,42.09819],[11.74903,41.99666],[11.91443,41.99922],[11.91535,41.98626],[11.99403,41.98745],[11.99862,41.89685],[12.07868,41.89907],[12.08144,41.84594],[12.16311,41.84799],[12.16563,41.6964],[12.3292,41.69863],[12.33149,41.64637]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale","url":"http://www.sitr.regione.sicilia.it"},"available_projections":["EPSG:2056","EPSG:21781","EPSG:3003","EPSG:3004","EPSG:3035","EPSG:32632","EPSG:32633","EPSG:3857","EPSG:4258","EPSG:4265","EPSG:4326","EPSG:4806","EPSG:900913"],"category":"historicphoto","country_code":"IT","end_date":"2008","id":"PCN-Lazio_Umbria-2008","license_url":"https://wiki.openstreetmap.org/wiki/Italy/PCN","name":"PCN 2008 - IT Lazio+Umbria","privacy_policy_url":"http://www.pcn.minambiente.it/mattm/en/legal-notice/","start_date":"2008","type":"wms","url":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_08.map&LAYERS=OI.ORTOIMMAGINI.2008.33&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[7.54795,43.73118],[8.10697,43.86701],[8.73593,44.38944],[10.18338,43.85116],[9.55016,43.13605],[10.27725,42.27515],[11.69748,42.08118],[12.90059,40.84897],[14.97466,40.20869],[16.04773,38.8953],[13.1086,38.74113],[11.77717,37.93605],[14.40624,36.74299],[15.13467,36.59364],[15.42867,37.027],[15.21993,37.43376],[15.4836,37.92936],[16.01644,37.8036],[17.21669,38.87425],[17.21669,39.40468],[16.55477,39.78775],[17.05464,40.45144],[18.32906,39.70539],[18.68773,40.0587],[18.04964,40.67064],[16.00545,41.52122],[16.38448,41.85964],[15.51837,42.1537],[14.57997,42.2461],[13.56099,43.65128],[12.57889,44.0867],[12.28795,44.62204],[12.56398,44.97092],[12.34151,45.17458],[12.41696,45.40557],[13.09252,45.62826],[13.69549,45.70806],[13.78445,45.5825],[13.9191,45.6322],[13.8235,45.7176],[13.59784,45.8072],[13.64307,45.98326],[13.52963,45.96588],[13.47474,46.00546],[13.66472,46.17392],[13.47587,46.22725],[13.42218,46.20758],[13.37671,46.29668],[13.59777,46.44137],[13.68684,46.43881],[13.7148,46.5222],[12.9151,46.60953],[12.38708,46.71529],[12.27591,46.88651],[12.17486,46.90895],[12.11675,47.01241],[12.21781,47.03996],[12.19254,47.09331],[11.74789,46.98484],[11.33355,46.99862],[11.10618,46.92966],[11.00764,46.76896],[10.72974,46.78972],[10.75753,46.82258],[10.66405,46.87614],[10.47197,46.85698],[10.38659,46.67847],[10.49375,46.62049],[10.46136,46.53164],[10.25309,46.57432],[10.23674,46.63484],[10.10307,46.61003],[10.03715,46.44479],[10.165,46.41051],[10.10506,46.3372],[10.17862,46.25626],[10.07055,46.21668],[9.95249,46.38045],[9.73086,46.35071],[9.71273,46.29266],[9.57015,46.2958],[9.46117,46.37481],[9.45936,46.50873],[9.40487,46.46621],[9.36128,46.5081],[9.28136,46.49685],[9.24503,46.23616],[8.95601,45.96503],[9.09065,45.89906],[9.0298,45.82127],[8.90992,45.8333],[8.9408,45.86682],[8.88904,45.95465],[8.78551,45.99063],[8.85617,46.0748],[8.62242,46.12112],[8.45032,46.26869],[8.42464,46.46367],[8.08814,46.26692],[8.15493,46.1834],[8.11383,46.11577],[8.02906,46.10331],[7.98881,45.99867],[7.9049,45.99945],[7.85949,45.91485],[7.56343,45.97421],[7.10685,45.85653],[7.04151,45.92435],[6.95315,45.85163],[6.80785,45.83265],[6.80785,45.71864],[6.98948,45.63869],[7.00037,45.509],[7.18019,45.40071],[7.10572,45.32924],[7.13115,45.25386],[6.85144,45.13226],[6.7697,45.16044],[6.62803,45.11175],[6.66981,45.02324],[6.74791,45.01939],[6.75518,44.89915],[7.02217,44.82519],[7.07484,44.68073],[6.95133,44.66264],[6.85507,44.53072],[6.94504,44.43112],[6.88784,44.42043],[6.89171,44.36637],[7.00764,44.23736],[7.36364,44.11882],[7.68694,44.17487],[7.72508,44.07578],[7.49355,43.86551],[7.54795,43.73118]],[[8.17134,39.14848],[8.62453,38.75119],[9.09831,39.03764],[9.03102,39.13144],[9.26585,39.18575],[9.64076,39.0227],[9.89894,40.67991],[9.50068,41.39257],[8.30317,40.91071],[8.41304,41.16139],[8.21254,41.13864],[8.07521,40.59862],[8.36154,40.35],[8.27914,39.98585],[8.38283,39.6536],[8.17134,39.14848]],[[12.51489,35.53423],[12.64054,35.5306],[12.63861,35.48641],[12.51296,35.49005],[12.51489,35.53423]],[[11.91218,36.85688],[12.08179,36.85523],[12.07958,36.70974],[11.90998,36.71139],[11.91218,36.85688]],[[12.84019,35.88131],[12.89186,35.88145],[12.89198,35.85003],[12.84031,35.84989],[12.84019,35.88131]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale","url":"http://www.sitr.regione.sicilia.it"},"available_projections":["EPSG:2056","EPSG:21781","EPSG:3003","EPSG:3004","EPSG:3035","EPSG:32632","EPSG:32633","EPSG:3857","EPSG:4258","EPSG:4265","EPSG:4326","EPSG:4806","EPSG:900913"],"category":"photo","country_code":"IT","end_date":"2012","id":"PCN-Italy-2012","license_url":"https://wiki.openstreetmap.org/wiki/Italy/PCN","name":"PCN 2012 - Italy","privacy_policy_url":"http://www.pcn.minambiente.it/mattm/en/legal-notice/","start_date":"2012","type":"wms","url":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_12.map&LAYERS=OI.ORTOIMMAGINI.2012.32,OI.ORTOIMMAGINI.2012.33&STYLES=,&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[15.71165,38.25894],[15.23718,38.81938],[14.27124,38.55246],[13.15063,38.75408],[11.96411,37.97451],[12.52441,37.54022],[11.87897,36.79609],[12.49695,35.47409],[12.68921,35.46962],[14.57336,36.66401],[15.29709,36.62875],[15.39854,37.42171],[15.71165,38.25894]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:3857","EPSG:32633"],"country_code":"IT","id":"Sicily-ATA2007","name":"Sicily - Italy","type":"wms","url":"http://map.sitr.regione.sicilia.it/ArcGIS/services/WGS84_F33/Ortofoto_ATA20072008_f33/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&STYLES=default&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0","url":"https://geoservices.buergernetz.bz.it/geokatalog"},"available_projections":["EPSG:3857"],"category":"historicphoto","country_code":"IT","description":"Orthophoto of South Tyrol from 2011 with up to 20cm resolution (larger valleys)","end_date":"2011","id":"South-Tyrol-Orthofoto2011-20cm","license_url":"https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&REQUEST=GetCapabilities","name":"South Tyrol Orthofoto 2011 (highres)","start_date":"2011","type":"wms","url":"https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=P_BZ_OF_2011_EPSG3857,P_BZ_OF_2011_20cm_EPSG3857&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0","url":"https://geoservices.buergernetz.bz.it/geokatalog"},"best":true,"category":"photo","country_code":"IT","end_date":"2015-11","id":"South-Tyrol-Orthofoto-2014-2015","license_url":"https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&REQUEST=GetCapabilities","max_zoom":18,"name":"South Tyrol Orthofoto 2014/2015","start_date":"2014-07","type":"tms","url":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_2015_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[11.71495,46.51227],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.61936,46.43957],[11.62508,46.43957],[11.62508,46.44797],[11.63349,46.44587],[11.63769,46.45846],[11.64399,46.45846],[11.6608,46.44587],[11.66711,46.44587],[11.66711,46.47525],[11.69442,46.47735],[11.69652,46.48575],[11.70913,46.49624],[11.70913,46.50254],[11.71333,46.50254],[11.71495,46.51227]],[[11.61435,46.41535],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20644,46.4156],[11.20485,46.3997],[11.17754,46.3997],[11.17543,46.3871],[11.16703,46.38081],[11.16703,46.36821],[11.16283,46.36821],[11.16283,46.29895],[11.12501,46.29895],[11.12291,46.25488],[11.13131,46.25278],[11.12711,46.24858],[11.16283,46.24858],[11.16283,46.215],[11.24898,46.2129],[11.25108,46.2234],[11.2889,46.2234],[11.2889,46.24019],[11.3015,46.25278],[11.30991,46.25278],[11.31201,46.24858],[11.33722,46.25068],[11.34143,46.26747],[11.34563,46.26747],[11.34773,46.25698],[11.35613,46.24858],[11.41707,46.25278],[11.41917,46.32414],[11.49271,46.32204],[11.48851,46.33044],[11.49901,46.32834],[11.50111,46.34723],[11.52423,46.34723],[11.53894,46.34513],[11.53894,46.32834],[11.55995,46.32414],[11.58306,46.34932],[11.58306,46.37241],[11.60407,46.37241],[11.60617,46.38291],[11.61458,46.38291],[11.62508,46.3934],[11.62508,46.41229],[11.61435,46.41535]],[[11.20663,46.41745],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.96285,46.47718],[10.96952,46.45217],[10.98423,46.45217],[10.98843,46.44587],[10.99894,46.44587],[11.01154,46.42068],[11.04096,46.42068],[11.08088,46.43537],[11.08298,46.47525],[11.15232,46.47525],[11.18804,46.48365],[11.19014,46.47525],[11.20695,46.47315],[11.20485,46.44587],[11.19855,46.44167],[11.19435,46.42698],[11.19014,46.42698],[11.19014,46.42068],[11.20695,46.42068],[11.20663,46.41745]],[[10.47433,46.55501],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.46952,46.62628],[10.47785,46.61797],[10.47785,46.59069],[10.47365,46.59069],[10.47155,46.5676],[10.46314,46.55501],[10.47433,46.55501]],[[10.46925,46.62643],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43626,46.79843],[10.43373,46.81106],[10.42532,46.80686],[10.42532,46.79847],[10.42112,46.79847],[10.41692,46.78587],[10.41692,46.75229],[10.3938,46.7376],[10.3896,46.72081],[10.3854,46.72081],[10.3791,46.69353],[10.3791,46.66834],[10.3833,46.66414],[10.3812,46.64735],[10.3896,46.64525],[10.3938,46.63056],[10.42532,46.62846],[10.44843,46.63476],[10.46925,46.62643]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0","url":"https://geoservices.buergernetz.bz.it/geokatalog/"},"category":"historicphoto","country_code":"IT","end_date":"2014","id":"South-Tyrol-Orthofoto2014","max_zoom":18,"name":"South Tyrol Orthofoto 2014","start_date":"2014","type":"tms","url":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[11.37851,46.30096],[11.38516,46.30241],[11.39571,46.30998],[11.39893,46.30771],[11.40047,46.30835],[11.39922,46.30922],[11.39641,46.31043],[11.39752,46.3114],[11.39759,46.31529],[11.40432,46.32512],[11.41239,46.3245],[11.41531,46.32568],[11.41956,46.32559],[11.45325,46.33531],[11.4632,46.35096],[11.48003,46.35439],[11.47676,46.36434],[11.52706,46.3557],[11.54972,46.34515],[11.55762,46.34977],[11.5638,46.38164],[11.59641,46.3872],[11.61907,46.4252],[11.62525,46.47109],[11.64705,46.48445],[11.63315,46.49875],[11.63847,46.5017],[11.66456,46.49804],[11.70632,46.51086],[11.70362,46.62244],[11.39677,46.62433],[11.38982,46.61077],[11.38124,46.61248],[11.3742,46.6172],[11.3736,46.62351],[11.33308,46.62445],[11.3324,46.66169],[11.28639,46.65415],[11.27008,46.72256],[11.18099,46.71845],[11.1779,46.73045],[11.15988,46.72433],[11.1331,46.72321],[11.11404,46.71539],[11.03371,46.70832],[10.99869,46.69655],[10.92607,46.69632],[10.89226,46.68431],[10.81879,46.67159],[10.76729,46.6697],[10.74531,46.66452],[10.54001,46.64237],[10.5098,46.63247],[10.46448,46.63341],[10.49143,46.61407],[10.47546,46.56476],[10.47787,46.55756],[10.47049,46.54257],[10.45916,46.5408],[10.45057,46.52863],[10.45504,46.50879],[10.48199,46.49296],[10.48851,46.49567],[10.55065,46.49071],[10.57966,46.47369],[10.60181,46.4692],[10.62138,46.44779],[10.63992,46.44555],[10.67116,46.45252],[10.67888,46.4485],[10.6933,46.45737],[10.71562,46.46104],[10.74188,46.48386],[10.76385,46.48539],[10.77913,46.4705],[10.7975,46.4446],[10.86205,46.43656],[10.88333,46.45099],[10.91183,46.44401],[10.93191,46.45335],[10.93809,46.4666],[10.95491,46.47014],[10.96075,46.4744],[10.96556,46.48232],[10.98753,46.48362],[11.00573,46.47735],[11.01002,46.47121],[11.02993,46.46116],[11.03525,46.453],[11.03903,46.45276],[11.04177,46.44708],[11.04675,46.44661],[11.05482,46.45016],[11.06409,46.4459],[11.0677,46.44294],[11.07336,46.44129],[11.07731,46.44354],[11.07868,46.44862],[11.06787,46.46577],[11.0622,46.48835],[11.0586,46.48917],[11.05001,46.50643],[11.03525,46.51399],[11.04366,46.51741],[11.05619,46.51635],[11.0828,46.53171],[11.08829,46.50312],[11.10512,46.49615],[11.11044,46.49709],[11.13035,46.4822],[11.15919,46.48917],[11.1858,46.50855],[11.20794,46.49473],[11.21241,46.48208],[11.21962,46.46021],[11.20717,46.41668],[11.21524,46.4065],[11.20073,46.37204],[11.20597,46.36695],[11.19472,46.3647],[11.19275,46.36043],[11.20348,46.34515],[11.18923,46.3234],[11.17816,46.30319],[11.16477,46.29731],[11.16271,46.29044],[11.14391,46.28812],[11.13928,46.28415],[11.15001,46.27991],[11.15838,46.26834],[11.16653,46.2619],[11.17477,46.25914],[11.18301,46.25864],[11.18599,46.25755],[11.19397,46.25715],[11.19719,46.2581],[11.19996,46.25626],[11.1958,46.25092],[11.19508,46.249],[11.19183,46.24901],[11.19168,46.25283],[11.18932,46.25395],[11.18704,46.25405],[11.1826,46.25209],[11.18116,46.24865],[11.19484,46.24838],[11.20756,46.24807],[11.20683,46.21877],[11.2073,46.21773],[11.20923,46.21948],[11.24657,46.23109],[11.25433,46.23872],[11.25966,46.24089],[11.26365,46.24199],[11.27442,46.25184],[11.27652,46.25181],[11.28266,46.2565],[11.28631,46.26107],[11.29429,46.26086],[11.30313,46.25929],[11.31042,46.26599],[11.30888,46.2676],[11.31145,46.26872],[11.31485,46.27341],[11.31334,46.27943],[11.31025,46.2816],[11.31073,46.28367],[11.31575,46.28596],[11.32317,46.29224],[11.32291,46.29319],[11.33167,46.29479],[11.33201,46.29708],[11.3333,46.2982],[11.33566,46.29776],[11.33815,46.29951],[11.34017,46.29838],[11.3375,46.29432],[11.33858,46.29195],[11.33583,46.29067],[11.34158,46.28207],[11.34562,46.28023],[11.3475,46.28026],[11.356,46.2765],[11.35733,46.27409],[11.35729,46.27252],[11.35664,46.2697],[11.35823,46.26582],[11.36527,46.26469],[11.36986,46.26255],[11.373,46.26398],[11.37763,46.26226],[11.38857,46.26166],[11.39308,46.26499],[11.39789,46.26472],[11.39565,46.27282],[11.38917,46.27863],[11.38643,46.27988],[11.38505,46.2813],[11.38441,46.28705],[11.38093,46.29127],[11.37887,46.29221],[11.37102,46.29324],[11.35862,46.29613],[11.35896,46.29889],[11.36025,46.3009],[11.36458,46.30191],[11.36797,46.30072],[11.36815,46.3017],[11.37851,46.30096]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","url":"https://geoservices.buergernetz.bz.it/geokatalog"},"best":true,"category":"photo","country_code":"IT","end_date":"2017-10","id":"South-Tyrol-Orthofoto-2017","license_url":"https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&REQUEST=GetCapabilities","max_zoom":20,"name":"South Tyrol Orthofoto 2017","start_date":"2017-07","type":"tms","url":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=p_bz-orthoimagery:P_BZ_OF_2017_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano","url":"https://geoservices.buergernetz.bz.it/geokatalog"},"category":"map","country_code":"IT","description":"Topographical basemap of South Tyrol","id":"South-Tyrol-Topomap","license_url":"https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&REQUEST=GetCapabilities","max_zoom":20,"name":"South Tyrol Topomap","type":"tms","url":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_BASEMAP_TOPO&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[26.21384,55.85075],[26.38583,55.70453],[26.63036,55.68067],[26.62053,55.56892],[26.52422,55.50992],[26.55415,55.38883],[26.43993,55.34794],[26.79197,55.3212],[26.82913,55.27635],[26.74346,55.25399],[26.67648,55.15883],[26.46112,55.12856],[26.35774,55.15054],[26.22963,55.10732],[26.27138,55.07759],[26.20851,54.99741],[26.06191,54.94161],[25.85782,54.9276],[25.74298,54.81506],[25.76261,54.5769],[25.53194,54.34182],[25.67716,54.32381],[25.78573,54.23362],[25.78588,54.15506],[25.55508,54.14619],[25.51095,54.17503],[25.58967,54.22858],[25.51362,54.30785],[25.26893,54.27447],[25.0706,54.13363],[24.95737,54.17206],[24.81338,54.14486],[24.77902,54.09991],[24.87128,54.0349],[24.81957,53.99772],[24.68459,53.96211],[24.69787,54.01714],[24.62591,54.0105],[24.43426,53.90144],[24.35206,53.89679],[24.20161,53.97001],[23.96833,53.9267],[23.91302,53.96968],[23.77812,53.89892],[23.70977,53.93945],[23.53704,53.94307],[23.48224,53.98938],[23.52734,54.04735],[23.48586,54.15323],[23.38679,54.22484],[23.04212,54.31597],[23.01021,54.3828],[22.85469,54.4104],[22.792,54.36332],[22.70234,54.4529],[22.68386,54.58597],[22.74897,54.63198],[22.74297,54.72682],[22.88668,54.8135],[22.8204,54.91198],[22.6424,54.97134],[22.58924,55.07024],[22.0806,55.02448],[22.03241,55.0841],[21.91307,55.08168],[21.64919,55.18081],[21.50151,55.18682],[21.38437,55.2937],[21.27098,55.24501],[21.09836,55.25639],[20.94217,55.28245],[21.08635,55.56183],[21.03995,55.83636],[21.06403,56.06995],[21.20478,56.08117],[21.2308,56.16233],[21.5021,56.2955],[21.72359,56.31382],[21.83566,56.37162],[21.96954,56.37665],[22.0153,56.42428],[22.43727,56.4064],[22.68,56.35159],[22.91917,56.37902],[22.94668,56.41465],[23.09325,56.30464],[23.17034,56.36677],[23.30645,56.38305],[23.55717,56.33382],[23.7648,56.37332],[23.76669,56.32381],[24.019,56.32976],[24.12146,56.2489],[24.28574,56.30064],[24.45415,56.25816],[24.57947,56.28824],[24.62841,56.37533],[24.90238,56.48053],[25.12774,56.20591],[25.57714,56.18241],[25.67312,56.14937],[26.21384,55.85075]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"NŽT ORT10LT","url":"https://www.geoportal.lt"},"best":true,"country_code":"LT","end_date":"2016","id":"ORT10LT","max_zoom":18,"min_zoom":4,"name":"Lithuania - NŽT ORT10LT","start_date":"2010","type":"tms","url":"https://ort10lt.openmap.lt/g16/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Administration du Cadastre et de la Topographie","url":"https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts"},"country_code":"LU","end_date":"2010-07-20","icon":"https://www.geoportail.lu/static/img/lion.png","id":"lu.geoportail.opendata.basemap","license_url":"https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts","max_zoom":20,"min_zoom":5,"name":"Basemap geoportail.lu","start_date":"2013-07-19","type":"tms","url":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/basemap/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Administration du Cadastre et de la Topographie","url":"https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts"},"country_code":"LU","icon":"https://www.geoportail.lu/static/img/lion.png","id":"lu.geoportail.opendata.cadastre","license_url":"https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts","max_zoom":20,"min_zoom":5,"name":"Cadastre geoportail.lu","type":"tms","url":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/cadastre/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[6.05001,49.82175],[6.04979,49.91166],[6.18901,49.91172],[6.18897,49.82181],[6.05001,49.82175]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Administration du Cadastre et de la Topographie","url":"https://act.public.lu/fr/cartographie/lidar"},"country_code":"LU","end_date":"2017-04-09","icon":"https://www.geoportail.lu/static/img/lion.png","id":"lu.geoportail.opendata.ortho_10cm_proto_lidar","license_url":"https://data.public.lu/en/datasets/lidar-projet-pilote-dun-releve-3d-du-territoire-luxembourgeois","max_zoom":21,"min_zoom":6,"name":"geoportail.lu LIDAR prototype Nordstad 2017","start_date":"2017-04-09","type":"tms","url":"https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_10cm_proto_lidar/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Administration du Cadastre et de la Topographie","url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts"},"country_code":"LU","icon":"https://www.geoportail.lu/static/img/lion.png","id":"lu.geoportail.opendata.wms_endpoint","license_url":"https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts","name":"geoportail.lu all layers","type":"wms_endpoint","url":"https://wmts1.geoportail.lu/opendata/service?REQUEST=GetCapabilities"},"type":"Feature"},{"geometry":{"coordinates":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Administration du Cadastre et de la Topographie","url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts"},"country_code":"LU","end_date":"2017-06-22","icon":"https://www.geoportail.lu/static/img/lion.png","id":"lu.geoportail.opendata.ortho2017","license_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","max_zoom":20,"min_zoom":5,"name":"Ortho 2017 geoportail.lu","start_date":"2017-06-14","type":"tms","url":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2017/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Administration du Cadastre et de la Topographie","url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts"},"country_code":"LU","end_date":"2018-08-05","icon":"https://www.geoportail.lu/static/img/lion.png","id":"lu.geoportail.opendata.ortho2018","license_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","max_zoom":20,"min_zoom":5,"name":"Ortho 2018 geoportail.lu","start_date":"2018-07-02","type":"tms","url":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2018/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Administration du Cadastre et de la Topographie","url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts"},"best":true,"country_code":"LU","end_date":"2019-08-22","icon":"https://www.geoportail.lu/static/img/lion.png","id":"lu.geoportail.opendata.ortholatest","license_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","max_zoom":20,"min_zoom":5,"name":"Latest available ortho geoportail.lu","start_date":"2019-07-04","type":"tms","url":"https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_latest/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Administration du Cadastre et de la Topographie","url":"https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts"},"country_code":"LU","end_date":"2010-07-20","icon":"https://www.geoportail.lu/static/img/lion.png","id":"lu.geoportail.opendata.topo","license_url":"https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts","max_zoom":20,"min_zoom":5,"name":"Topographical Map geoportail.lu","start_date":"2013-07-19","type":"tms","url":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/topo/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[27.66415,55.75354],[27.68475,55.93319],[28.26703,56.1908],[28.23682,56.49827],[27.82757,56.94886],[27.90997,57.37037],[27.58313,57.56387],[26.93219,57.63598],[26.5202,57.58596],[26.0368,57.87192],[25.1991,58.10487],[24.31744,57.90258],[24.31744,57.19669],[23.93567,56.9788],[23.55115,56.98479],[23.23804,57.10283],[23.14465,57.37333],[22.60632,57.60215],[22.60083,57.76953],[21.66699,57.56681],[21.40057,57.29625],[21.38409,57.0177],[21.04626,56.80026],[20.99133,56.36615],[21.0545,56.0392],[21.28796,56.05608],[21.29895,56.1908],[22.11743,56.41936],[24.44379,56.24425],[24.81183,56.3996],[25.15515,56.1694],[25.58087,56.12962],[26.53668,55.66146],[26.91296,55.66766],[27.0805,55.80991],[27.66415,55.75354]]],"type":"Polygon"},"properties":{"attribution":{"text":"Latvijas Ģeotelpiskās informācijas aģentūras brīvais WMS serviss 1994 - 1999.gada Latvijas ortofotokarte"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:3059"],"country_code":"LV","id":"ORTOFOTO_V1","name":"Orthophoto 1st cycle (1994-1999) - Latvia","type":"wms","url":"https://services.lgia.gov.lv/arcfree/services/Ortofoto_v1/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[26.63086,57.56889],[25.16968,58.04882],[22.54395,57.76866],[21.54419,57.53352],[21.01685,56.81892],[21.01685,56.03523],[22.03857,56.38958],[24.71924,56.33481],[26.75171,55.66519],[28.19092,56.13943],[27.78442,57.40946],[26.63086,57.56889]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:3857","EPSG:4326","EPSG:3059","EPSG:4269","EPSG:25884"],"country_code":"LV","id":"USSR-Latvia","name":"USSR - Latvia","type":"wms","url":"http://www.gisnet.lv/cgi-bin/topo?FORMAT=image/jpeg&VERSION=1.1.1&service=WMS&REQUEST=GetMap&LAYERS=DTO,DTC,DIVDPTC,PD,VS,DS,PS,M&SRS={proj}&WIDTH={width}&height={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[3.14377,51.35984],[3.1575,51.24113],[3.33878,51.11544],[3.91281,51.05851],[4.65714,51.28067],[4.89334,51.26348],[5.17899,51.12579],[5.38498,51.13096],[5.54428,51.05678],[5.42069,50.85956],[5.46738,50.70326],[5.65689,50.61926],[6.14853,50.62143],[6.30234,50.85782],[6.29959,50.95438],[6.26389,51.01835],[6.37238,51.09259],[6.40122,51.20114],[6.37375,51.25102],[6.44516,51.31587],[6.42044,51.5496],[6.34354,51.67922],[6.79672,51.76429],[7.04666,51.91024],[7.07138,52.04559],[7.27188,52.17041],[7.30759,52.38551],[7.20596,52.53195],[7.28287,52.61458],[7.29935,52.77853],[7.44217,52.97827],[7.43393,53.28314],[7.04392,53.55159],[6.78299,53.63635],[6.23917,53.54016],[5.6871,53.51241],[5.17349,53.43885],[4.81644,53.23384],[4.65164,53.06583],[4.54178,52.48598],[4.32205,52.19568],[4.08104,52.01369],[4.02199,52.01623],[3.93684,51.96379],[3.95195,51.88079],[3.84483,51.84942],[3.62373,51.70752],[3.65532,51.66069],[3.63335,51.62746],[3.54683,51.62234],[3.39577,51.56091],[3.38203,51.51735],[3.49876,51.43267],[3.32985,51.38556],[3.14377,51.35984]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Kadaster / Beeldmateriaal.nl, CC BY 4.0","url":"https://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/search?facet.q=license%2FCC-BY&isChild=%27false%27&resultType=details&any_OR_title_OR_keyword=luchtfoto&fast=index&_content_type=json&from=1&to=20&sortBy=relevance"},"best":true,"country_code":"NL","description":"Nationwide data set 25cm resolution color aerial imagery of the most recent year.","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/nl/PDOK-Luchtfoto-Beeldmateriaal-25cm-latest.png","id":"Actueel_ortho25_WMS","license_url":"https://forum.openstreetmap.org/viewtopic.php?pid=630995#p630995","max_zoom":19,"name":"PDOK aerial imagery Beeldmateriaal.nl 25cm latest","type":"tms","url":"https://geodata.nationaalgeoregister.nl/luchtfoto/rgb/wmts?FORMAT=image/jpeg&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Actueel_ortho25&STYLE=&FORMAT=image/jpeg&tileMatrixSet=OGC:1.0:GoogleMapsCompatible&tileMatrix={zoom}&tileRow={y}&tileCol={x}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Fiskeridirektoratet","url":"https://www.fiskeridir.no/Kart"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Aquaculture/marine farms (licensed sites, may not yet have any installations)","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg/175px-Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg.png","id":"fiskeridir-akvakultur","license_url":"https://lists.nuug.no/pipermail/kart/2018-January/006347.html","max_zoom":22,"min_zoom":3,"name":"Fiskeridirektoratet Aquaculture overlay","overlay":true,"type":"wms","url":"https://ogc.fiskeridir.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_262&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Kartverket","url":"https://wiki.openstreetmap.org/wiki/No:Kartverket_import"},"country_code":"NO","description":"Topographic map N50, equivalent to Norway 1:50.000 paper map series.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-topo4","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":15,"min_zoom":3,"name":"Kartverket N50 topo","type":"tms","url":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={zoom}&x={x}&y={y}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Kartverket","url":"https://kartverket.no/geodataarbeid/temadata/nasjonal-database-for-tur--og-friluftsruter/"},"available_projections":["EPSG:3857","EPSG:4326"],"country_code":"NO","description":"Hiking trails from the Norwegian database `Tur- og Friluftsruter´, including DNT routes.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-friluft","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":24,"min_zoom":6,"name":"Kartverket Hiking Trails","overlay":true,"type":"wms","url":"https://wms.geonorge.no/skwms1/wms.friluftsruter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Fotrute&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Kartverket","url":"https://www.kartverket.no/data/kartdata/vegdata/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3029","EPSG:3030","EPSG:3031","EPSG:3032","EPSG:3033","EPSG:3034","EPSG:3035","EPSG:3036","EPSG:3046","EPSG:3047","EPSG:3575","EPSG:23029","EPSG:23030","EPSG:23031","EPSG:23032","EPSG:23033","EPSG:23034","EPSG:23035","EPSG:23036","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:27393","EPSG:32629","EPSG:32630","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Norwegian road network from the National Road database (NVDB). Colours represent national, county, municipal, private and forest roads + footways/cycleways.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-vegnett","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":24,"min_zoom":3,"name":"Kartverket Road Network","overlay":true,"type":"wms","url":"https://openwms.statkart.no/skwms1/wms.vegnett?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=all&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://www.kartverket.no/geodataarbeid/Universell-utforming/"},"available_projections":["EPSG:3034","EPSG:4258","EPSG:4326","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:27394","EPSG:27395","EPSG:27396","EPSG:27397","EPSG:27398","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Accessibility for the visually impaired, wheelchairs and electrical wheelchairs.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-tilgjengelighet","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":20,"min_zoom":7,"name":"Kartverket Accessibility overlay","overlay":true,"type":"wms_endpoint","url":"https://openwms.statkart.no/skwms1/wms.tilgjengelighet2?request=GetCapabilities&service=WMS"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://www.kartverket.no/kunnskap/Norges-grenser/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3034","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:27391","EPSG:27392","EPSG:27393","EPSG:27394","EPSG:27395","EPSG:27396","EPSG:27397","EPSG:27398","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Official administrative boundaries at the national, county and municipality levels","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-abas","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":22,"min_zoom":1,"name":"Kartverket Administrative Boundaries overlay","overlay":true,"privacy_policy_url":"https://www.kartverket.no/en/About-The-Norwegian-Mapping-Authority/privacy-policy/","type":"wms","url":"https://wms.geonorge.no/skwms1/wms.adm_enheter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=fylker_gjel,kommuner_gjel&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://kartverket.no/kart/Nasjonalt-register-over-luftfartshindre/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3029","EPSG:3030","EPSG:3031","EPSG:3032","EPSG:3033","EPSG:3034","EPSG:3035","EPSG:3036","EPSG:3046","EPSG:3047","EPSG:3575","EPSG:4258","EPSG:23029","EPSG:23030","EPSG:23031","EPSG:23032","EPSG:23033","EPSG:23034","EPSG:23035","EPSG:23036","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Vertical obstructions to aircrafts, above 15m in rural areas and 30m in urban areas (e.g. masts, towers, high buildings, power lines)","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-luftfartshindre","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":20,"min_zoom":7,"name":"Kartverket Aviation Obstructions overlay","overlay":true,"type":"wms","url":"https://openwms.statkart.no/skwms1/wms.nrl?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nrl3_wms&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://seeiendom.kartverket.no"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3034","EPSG:5105","EPSG:5106","EPSG:5107","EPSG:5108","EPSG:5109","EPSG:5110","EPSG:5111","EPSG:5112","EPSG:5113","EPSG:5114","EPSG:5115","EPSG:5116","EPSG:5117","EPSG:5118","EPSG:5119","EPSG:5120","EPSG:5121","EPSG:5122","EPSG:5123","EPSG:5124","EPSG:5125","EPSG:5126","EPSG:5127","EPSG:5128","EPSG:5129","EPSG:5130","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:27391","EPSG:27392","EPSG:27393","EPSG:27394","EPSG:27395","EPSG:27396","EPSG:27397","EPSG:27398","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Real estate boundaries from the official land register (`matrikkelen´). Monthly update.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-matrikkel","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":20,"min_zoom":14,"name":"Kartverket Cadastral overlay","overlay":true,"type":"wms","url":"https://wms.geonorge.no/skwms1/wms.matrikkel?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=matrikkel_WMS&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://www.kartverket.no/Prosjekter/Nasjonal-detaljert-hoydemodell/"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:3006","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3029","EPSG:3030","EPSG:3031","EPSG:3032","EPSG:3033","EPSG:3034","EPSG:3035","EPSG:3036","EPSG:3046","EPSG:3047","EPSG:3575","EPSG:5105","EPSG:5106","EPSG:5107","EPSG:5108","EPSG:5109","EPSG:5110","EPSG:5111","EPSG:5112","EPSG:5113","EPSG:5114","EPSG:5115","EPSG:5116","EPSG:5117","EPSG:5118","EPSG:5119","EPSG:5120","EPSG:5121","EPSG:5122","EPSG:5123","EPSG:5124","EPSG:5125","EPSG:5126","EPSG:5127","EPSG:5128","EPSG:5129","EPSG:5130","EPSG:4258","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32629","EPSG:32630","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636","EPSG:23029","EPSG:23030","EPSG:23031","EPSG:23032","EPSG:23033","EPSG:23034","EPSG:23035","EPSG:23036"],"country_code":"NO","description":"Contours for Norway","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-hoydekurver","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":22,"min_zoom":9,"name":"Kartverket Contour Lines overlay","overlay":true,"type":"wms","url":"https://openwms.statkart.no/skwms1/wms.topo4?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=hoydetall5linje,hoydetall5punkt,hoydepunkt,vannpunkt,hoydekurver_1m,hoydekurver_5m,N50Hoydekurver,N250Hoydekurver,N500Hoydekurver,N1000Hoydekurver,N2000Hoydekurver&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://www.kartverket.no/kunnskap/historie/kartverkets-historiske-arkiv/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3029","EPSG:3030","EPSG:3031","EPSG:3032","EPSG:3033","EPSG:3034","EPSG:3035","EPSG:3036","EPSG:3046","EPSG:3047","EPSG:3575","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:27391","EPSG:27392","EPSG:27393","EPSG:27394","EPSG:27395","EPSG:27396","EPSG:27397","EPSG:27398","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"1st edition of historic Economic maps for Norway 1960-90s (`Økonomisk kartverk´). Available from zoom 16. Please correct local imagery offset.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-ok-1st","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":20,"min_zoom":11,"name":"Kartverket Economic Maps (historic)","type":"wms","url":"https://wms.geonorge.no/skwms1/wms.n5raster2?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n5raster_foerstegang_metadata,n5raster_foerstegang&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://kartkatalog.geonorge.no/metadata/kartverket/fjellskygge-cache/cca7c129-fe66-4c96-9091-40d92290dd81"},"country_code":"NO","description":"Hillshade for Norway","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-fjellskygge","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":15,"min_zoom":9,"name":"Kartverket Hillshade overlay","overlay":true,"type":"tms","url":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=fjellskygge&zoom={zoom}&x={x}&y={y}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://www.kartverket.no/kart/historiske-kart/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3034","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:27391","EPSG:27392","EPSG:27393","EPSG:27394","EPSG:27395","EPSG:27396","EPSG:27397","EPSG:27398","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Historic maps - for the time being `Amtskartserien´ 1826-1917.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-historic","max_zoom":15,"min_zoom":5,"name":"Kartverket Historic maps","type":"wms","url":"https://wms.geonorge.no/skwms1/wms.historiskekart?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=amt1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-15.01273,-60.16205],[33.3326,-60.17016],[33.32144,-73.0009],[-15.0239,-72.99613],[-15.01273,-60.16205]],[[-173.00076,-70.54952],[-125.00321,-70.54878],[-125.00167,-78.99977],[-172.99922,-79.0002],[-173.00076,-70.54952]],[[3.24857,56.08599],[2.60924,56.59428],[1.47215,58.45924],[1.77704,61.36251],[-0.49301,63.88665],[-13.73292,69.76376],[-12.43655,72.58741],[-5.11965,74.39626],[-3.60356,79.12998],[5.85587,82.34863],[34.98861,82.3401],[37.96874,78.62784],[37.99619,75.79673],[36.95796,73.68962],[32.07458,70.27336],[30.3511,69.56882],[21.46179,69.57098],[18.3032,68.36681],[14.47997,66.2558],[11.50266,63.28307],[11.50166,58.95444],[11.08246,58.96771],[10.03051,58.25173],[8.88244,57.69534],[3.24857,56.08599]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://www.kartverket.no/Kart/Sjokart/"},"country_code":"NO","description":"Norwegian nautical charts (includes Spitsbergen/Svalbard and Antarctica). Raster representation of paper charts. Updated biweekly.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-sjokart","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":20,"min_zoom":3,"name":"Kartverket Nautical Charts","type":"tms","url":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=sjokartraster&zoom={zoom}&x={x}&y={y}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kartverket","url":"https://www.kartverket.no/kart/stedsnavn/"},"country_code":"NO","description":"Official Norwegian place names from the SSR database. Selectable categories.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-ssr2","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":22,"min_zoom":8,"name":"Kartverket Place Names overlay","overlay":true,"type":"wms_endpoint","url":"https://openwms.statkart.no/skwms1/wms.ssr2?request=GetCapabilities&service=WMS"},"type":"Feature"},{"geometry":{"coordinates":[[[3.24857,56.08599],[2.60924,56.59428],[1.47215,58.45924],[1.77704,61.36251],[-0.49301,63.88665],[-13.73292,69.76376],[-12.43655,72.58741],[-5.11965,74.39626],[-3.60356,79.12998],[5.85587,82.34863],[34.98861,82.3401],[37.96874,78.62784],[37.99619,75.79673],[36.95796,73.68962],[32.07458,70.27336],[30.3511,69.56882],[21.46179,69.57098],[18.3032,68.36681],[14.47997,66.2558],[11.50266,63.28307],[11.50166,58.95444],[11.08246,58.96771],[10.03051,58.25173],[8.88244,57.69534],[3.24857,56.08599]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Kystverket","url":"https://kystverket.no/Maritim-infrastruktur/Fyr-og-merker-/"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:25833","EPSG:32633"],"country_code":"NO","description":"Beacons, buoys, lights and fairways maintained by the Norwegian Coastal Administration","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Coat_of_arms_of_the_Norwegian_Coastal_Administration.svg/143px-Coat_of_arms_of_the_Norwegian_Coastal_Administration.svg.png","id":"kystverket-navigasjon","license_url":"https://lists.nuug.no/pipermail/kart/2017-December/006320.html","max_zoom":19,"min_zoom":12,"name":"Kystverket Navigational Aid overlay","overlay":true,"privacy_policy_url":"https://www.kystverket.no/en/About-Kystverket/privacy-statement/","type":"wms","url":"https://nfs.kystverket.no/arcgis/services/nfs/NFSSistOperativ/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=13,12,10,8,6,5,4,3&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© MTBmap.no","url":"https://www.mtbmap.no/"},"country_code":"NO","description":"Norwegian mountain biking map from OSM (max zoom 14-16, varies per region)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/no/MTBmapno.png","id":"mtbmap-no","max_zoom":14,"min_zoom":3,"name":"MTBmap.no","type":"tms","url":"https://mtbmap.no/tiles/osm/mtbmap/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[-10.95725,71.60964],[-6.16765,71.62095],[-6.13756,70.30991],[-10.92717,70.29784],[-10.95725,71.60964]],[[16.81947,74.9482],[21.25771,74.94213],[21.23712,73.8918],[16.79889,73.89828],[16.81947,74.9482]],[[4.04288,79.93593],[20.65421,81.54417],[36.6503,80.40108],[26.76265,75.8129],[13.88667,75.79135],[4.04288,79.93593]],[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Miljødirektoratet","url":"https://kart.naturbase.no"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:4267","EPSG:4269","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Norwegian national parks, nature reserves and other protected areas and objects from Naturbase, including Svalbard/Spitsbergen","icon":"https://www.miljodirektoratet.no/globalassets/profilbank/profilbank-bilder/m_logo_hoved_pos_rgb_thumb2.png","id":"miljodirektoratet-vern","license_url":"https://lists.nuug.no/pipermail/kart/2009-August/001095.html","max_zoom":22,"name":"Miljødirektoratet Protected Areas overlay","overlay":true,"type":"wms","url":"https://kart.miljodirektoratet.no/arcgis/services/vern/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=naturvern_klasser_omrade&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Miljødirektoratet","url":"https://kartkatalog.miljodirektoratet.no/Dataset/Details/30"},"available_projections":["EPSG:4326","EPSG:4267","EPSG:4269","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Public recreation areas with State ownership (\"friluftsområder\").","icon":"https://www.miljodirektoratet.no/globalassets/profilbank/profilbank-bilder/m_logo_hoved_pos_rgb_thumb2.png","id":"miljodirektoratet-friluftsomrader","license_url":"https://lists.nuug.no/pipermail/kart/2009-August/001095.html","max_zoom":22,"name":"Miljødirektoratet Public Recreation Areas overlay","overlay":true,"type":"wms","url":"https://kart.miljodirektoratet.no/arcgis/services/friluftsliv_statlig_sikra/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=friluftsliv_statlig_sikra&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[8.51989,57.6454],[3.25195,56.08737],[2.61185,56.59434],[1.96321,57.90482],[1.48178,58.42936],[1.98303,60.31063],[1.78802,61.35659],[-0.49061,63.88725],[1.36226,67.01603],[14.99771,74.50082],[36.99371,74.50155],[36.99989,73.68633],[32.06909,70.27429],[23.97215,70.47356],[16.25974,68.58447],[12.12888,64.81157],[5.38328,61.92862],[5.7678,58.85355],[8.51989,57.6454]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Oljedirektoratet","url":"https://www.npd.no/no/Kart/Faktakart/"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:3034","EPSG:4230","EPSG:23029","EPSG:23030","EPSG:23031","EPSG:23032","EPSG:23033","EPSG:23034","EPSG:23035","EPSG:23036","EPSG:32629","EPSG:32630","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Production platforms and oil/natural gas fields on the Norwegian continental shelf","icon":"https://register.geonorge.no/data/organizations/870917732_od_liten.png","id":"npd-offshore","license_url":"https://lists.nuug.no/pipermail/kart/2018-January/006333.html","max_zoom":20,"min_zoom":6,"name":"NPD Offshore Installations overlay","overlay":true,"type":"wms","url":"https://gis.npd.no/ogc/factmaps/2_0?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=fclFixed,pplAll,fldByStatus&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-9.98383,71.45079],[-7.01203,71.44554],[-7.09992,70.53405],[-9.93988,70.54137],[-9.98383,71.45079]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Norwegian Polar Institute","url":"https://geodata.npolar.no/"},"available_projections":["EPSG:25829"],"country_code":"NO","description":"Topographic map for Jan Mayen from the Norwegian Polar Institute","icon":"https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png","id":"NPI-JanMayen-topo","license_url":"https://lists.nuug.no/pipermail/kart/2018-February/006371.html","max_zoom":13,"name":"NPI Jan Mayen topo","type":"wmts","url":"https://geodata.npolar.no/arcgis/rest/services/Basisdata/NP_Basiskart_JanMayen_WMTS_25829/MapServer/WMTS/"},"type":"Feature"},{"geometry":{"coordinates":[[[12.08734,79.3621],[14.63558,79.37795],[14.51878,79.79988],[15.45487,79.89874],[15.98423,80.10724],[16.80566,80.09782],[20.31039,79.39182],[21.53948,78.85459],[21.35694,78.61449],[19.40987,78.48647],[15.25723,78.42534],[14.03108,78.17388],[12.8708,78.15895],[11.26867,78.709],[11.16101,78.9777],[12.08734,79.3621]],[[13.45951,77.83857],[13.42262,78.0586],[13.79767,78.1276],[14.84307,78.15297],[15.7742,78.38083],[16.72371,78.36349],[17.16917,78.42542],[17.57914,78.40944],[17.68184,78.28064],[17.52989,78.18588],[17.94337,78.05428],[17.49322,77.94476],[16.80617,77.8457],[15.16211,77.7795],[13.70252,77.69573],[13.45951,77.83857]],[[18.72826,74.50288],[19.14894,74.53028],[19.31346,74.46805],[19.22015,74.358],[19.09828,74.32568],[19.01709,74.32668],[18.71014,74.46382],[18.72826,74.50288]],[[25.43293,76.7571],[25.66268,76.73028],[24.96582,76.41238],[24.73606,76.43982],[25.43293,76.7571]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Norwegian Polar Institute","url":"https://geodata.npolar.no/"},"available_projections":["EPSG:25833"],"country_code":"NO","description":"Orthophoto for Svalbard/Spitsbergen from the Norwegian Polar Institute","icon":"https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png","id":"NPI-Svalbard-ortofoto","license_url":"https://lists.nuug.no/pipermail/kart/2018-February/006371.html","max_zoom":17,"name":"NPI Svalbard Orthophoto","type":"wmts","url":"https://geodata.npolar.no/arcgis/rest/services/Basisdata/NP_Ortofoto_Svalbard_WMTS_25833/MapServer/WMTS/"},"type":"Feature"},{"geometry":{"coordinates":[[[15.48379,78.1614],[16.20938,78.13484],[16.33107,78.15952],[16.25501,78.22148],[15.72717,78.27415],[15.72413,78.32043],[15.64503,78.3312],[15.22367,78.22086],[15.48379,78.1614]],[[14.12844,78.10948],[14.28892,78.10948],[14.32011,78.03213],[14.19689,78.02992],[14.12844,78.10948]],[[11.70335,78.9279],[11.83227,78.95456],[12.10151,78.91851],[12.00872,78.89026],[11.90224,78.89392],[11.70335,78.9279]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Norwegian Polar Institute","url":"https://geodata.npolar.no/"},"available_projections":["EPSG:25833"],"country_code":"NO","description":"Detailed topographic map for Longyearbyen, Barentsburg and Ny-Ålesund from the Norwegian Polar Institute","icon":"https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png","id":"npi-svalbard-fkb","license_url":"https://lists.nuug.no/pipermail/kart/2018-February/006371.html","max_zoom":17,"name":"NPI Svalbard detailed topo","type":"wmts","url":"https://geodata.npolar.no/arcgis/rest/services/Basisdata/FKB_Svalbard_WMTS_25833/MapServer/WMTS/"},"type":"Feature"},{"geometry":{"coordinates":[[[16.40258,76.28434],[13.26049,77.32217],[9.8657,78.6948],[10.04148,79.88974],[16.85301,80.20866],[19.48972,80.59332],[19.77537,80.89372],[21.68699,80.85539],[21.99461,80.57535],[23.79636,80.63274],[26.499,80.55013],[28.76219,80.08457],[26.14744,79.26178],[24.26879,79.10924],[22.58787,79.1424],[22.06052,78.77635],[26.19138,77.80013],[22.25828,76.66459],[21.06078,76.70508],[19.13816,77.47557],[17.30346,76.34671],[16.40258,76.28434]],[[30.71227,80.13552],[32.09106,80.42394],[33.81042,80.37263],[33.94775,80.0571],[31.28906,79.91863],[30.71227,80.13552]],[[25.92222,78.84032],[28.21836,79.04993],[30.73972,79.04679],[29.43784,78.71202],[26.45506,78.55613],[25.92222,78.84032]],[[25.35644,76.77249],[25.78491,76.72275],[25.0653,76.3862],[24.55993,76.44684],[25.35644,76.77249]],[[18.01737,74.68475],[19.92351,74.6919],[19.95136,74.16553],[18.04523,74.15814],[18.01737,74.68475]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Norwegian Polar Institute / USGS Landsat","url":"https://geodata.npolar.no/"},"available_projections":["EPSG:25833"],"country_code":"NO","description":"Satellite imagery for Svalbard from the Norwegian Polar Institute/USGS Landsat","icon":"https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png","id":"npi-svalbard-landsat","license_url":"https://lists.nuug.no/pipermail/kart/2018-February/006371.html","max_zoom":13,"name":"NPI Svalbard satellite","type":"wmts","url":"https://geodata.npolar.no/arcgis/rest/services/Basisdata/NP_Satellitt_Svalbard_WMTS_25833/MapServer/WMTS/"},"type":"Feature"},{"geometry":{"coordinates":[[[7.46699,81.08116],[21.92889,81.09125],[36.04517,80.54078],[27.17687,73.73689],[10.75833,74.04185],[7.46699,81.08116]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Norwegian Polar Institute","url":"https://geodata.npolar.no/"},"available_projections":["EPSG:25833"],"country_code":"NO","description":"Topographic map for Svalbard from the Norwegian Polar Institute","icon":"https://www.npolar.no/npcms/export/sites/np/images/logos/NPI-logo-eng.png","id":"npi-svalbard-topo","license_url":"https://lists.nuug.no/pipermail/kart/2018-February/006371.html","max_zoom":13,"name":"NPI Svalbard topo","type":"wmts","url":"https://geodata.npolar.no/arcgis/rest/services/Basisdata/NP_Basiskart_Svalbard_WMTS_25833/MapServer/WMTS/"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© NVE","url":"https://www.nve.no/flaum-og-skred/kartlegging/aktsemdkart/aktsomhetskart-for-snoskred/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Potential snowslide areas, computed from theoretical height model. Valid for drops higher than 20-50 meters. Dark red=trigger area.","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","id":"nve-snoskred","license_url":"https://lists.nuug.no/pipermail/kart/2017-December/006312.html","max_zoom":13,"min_zoom":5,"name":"NVE Avalanche Danger Areas overlay","overlay":true,"type":"wms","url":"https://gis3.nve.no/map/services/SkredSnoAktR/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Snoskred-Aktsomhetsomrader&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© NVE","url":"https://www.nve.no/karttjenester/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Power lines (high voltage network) including transformers, submarine cables and pylons. Local distribution network is not included.","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","id":"nve-nettanlegg","license_url":"https://lists.nuug.no/pipermail/kart/2017-December/006312.html","max_zoom":22,"min_zoom":6,"name":"NVE Electricity Network overlay","overlay":true,"privacy_policy_url":"https://www.nve.no/nves-personvernerklaering/","type":"wms","url":"https://gis3.nve.no/map/services/Nettanlegg2/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sentralnett,Regionalnett,Distribusjonsnett,Sjokabler,Master og stolper,Transformatorstasjoner&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© NVE","url":"https://www.nve.no/karttjenester/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Hydropower plants including waterways (tunnel, canal, pipeline) and dams","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","id":"nve-vannkraft","license_url":"https://lists.nuug.no/pipermail/kart/2017-December/006312.html","max_zoom":22,"min_zoom":6,"name":"NVE Hydropower Plants overlay","overlay":true,"type":"wms","url":"https://gis3.nve.no/map/services/Vannkraft1/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vannkraftverk,Vannvei,Dam&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© NVE","url":"https://www.nve.no/karttjenester/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Wind power turbines, farms and concession areas (blue: planned, light green: construction, dark green: built).","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","id":"nve-vindkraft","license_url":"https://lists.nuug.no/pipermail/kart/2017-December/006312.html","max_zoom":22,"min_zoom":6,"name":"NVE Wind Power Plants overlay","overlay":true,"type":"wms","url":"https://gis3.nve.no/map/services/Vindkraft2/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vindkraft_konsesjon_gitt_ikke_utbygd,Vindkraft_under_bygging,Vindkraft_utbygd,Vindkraftomrade,Vindturbin&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Geovekst","url":"https://www.norgeibilder.no"},"best":true,"country_code":"NO","description":"Norwegian orthophotos (max zoom 21), courtesy of Geovekst and Norkart.","icon":"https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png","id":"geovekst-nib","license_url":"https://forum.openstreetmap.org/viewtopic.php?id=62083","max_zoom":21,"name":"Norway Orthophoto","type":"tms","url":"https://waapi.webatlas.no/maptiles/tiles/webatlas-orto-newup/wa_grid/{zoom}/{x}/{y}.jpeg?api_key=b8e36d51-119a-423b-b156-d744d54123d5"},"type":"Feature"},{"geometry":{"coordinates":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Geovekst","url":"https://www.norgeibilder.no"},"best":true,"country_code":"NO","description":"Most recent Norwegian orthophotos (max zoom 19), courtesy of Geovekst and Kartverket.","icon":"https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png","id":"geovekst-nib2","license_url":"https://forum.openstreetmap.org/viewtopic.php?id=62083","max_zoom":19,"name":"Norway Orthophoto (more recent, less zoom)","type":"tms","url":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_nib_web_mercator_wmts_v2?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Nibcache_web_mercator_v2&STYLE=default&FORMAT=image/jpgpng&tileMatrixSet=default028mm&tileMatrix={zoom}&tileRow={y}&tileCol={x}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Geovekst","url":"https://www.norgeibilder.no/"},"country_code":"NO","description":"Historic Norwegian orthophotos and maps, courtesy of Geovekst and Norkart.","icon":"https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png","id":"geovekst-nib-historic","license_url":"https://forum.openstreetmap.org/viewtopic.php?id=62083","max_zoom":21,"name":"Norway Orthophoto (historic)","type":"wms_endpoint","url":"https://waapi.webatlas.no/wms-orto-hist?request=GetCapabilities&service=WMS"},"type":"Feature"},{"geometry":{"coordinates":[[[-10.95725,71.60964],[-6.16765,71.62095],[-6.13756,70.30991],[-10.92717,70.29784],[-10.95725,71.60964]],[[16.81947,74.9482],[21.25771,74.94213],[21.23712,73.8918],[16.79889,73.89828],[16.81947,74.9482]],[[4.04288,79.93593],[20.65421,81.54417],[36.6503,80.40108],[26.76265,75.8129],[13.88667,75.79135],[4.04288,79.93593]],[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Riksantikvaren","url":"https://www.riksantikvaren.no/Veiledning/Data-og-tjenester/Karttjenester"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3034","EPSG:4258","EPSG:5105","EPSG:5106","EPSG:5107","EPSG:5108","EPSG:5109","EPSG:5110","EPSG:5111","EPSG:5112","EPSG:5113","EPSG:5114","EPSG:5115","EPSG:5116","EPSG:5117","EPSG:5118","EPSG:5119","EPSG:5120","EPSG:5121","EPSG:5122","EPSG:5123","EPSG:5124","EPSG:5125","EPSG:5126","EPSG:5127","EPSG:5128","EPSG:5129","EPSG:5130","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:27391","EPSG:27392","EPSG:27393","EPSG:27394","EPSG:27395","EPSG:27396","EPSG:27397","EPSG:27398","EPSG:32636","EPSG:32635","EPSG:32633","EPSG:32634","EPSG:32631","EPSG:32632"],"country_code":"NO","description":"Archeological and architectural monuments/sites and cultural environments protected by law (''enkeltminner'') from the Norwegian Directorate for Cultural Heritage","icon":"https://www.riksantikvaren.no/extension/riksantikvaren/design/internetsite/images/logo_na.png","id":"riksantikvaren-kulturminner","license_url":"https://lists.nuug.no/pipermail/kart/2018-January/006348.html","max_zoom":22,"min_zoom":13,"name":"Riksantikvaren Heritage Sites overlay","overlay":true,"type":"wms","url":"https://kart.ra.no/arcgis/services/Distribusjon/Kulturminner/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=3,6&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© SSB","url":"https://www.ssb.no/arealsentrum/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Downtown areas with significant commercial and service activities.","icon":"https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png","id":"ssb-sentrum","license_url":"https://lists.nuug.no/pipermail/kart/2018-January/006345.html","max_zoom":22,"name":"SSB City Centres overlay","overlay":true,"type":"wms","url":"https://ogc.ssb.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_193&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"type":"Polygon"},"properties":{"attribution":{"text":"© SSB","url":"https://www.ssb.no/beftett"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25829","EPSG:25830","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:32631","EPSG:32632","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:32636"],"country_code":"NO","description":"Human settlements of at least 200 people with less than 200 meters between households","icon":"https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png","id":"ssb-tettsteder","license_url":"https://lists.nuug.no/pipermail/kart/2018-January/006345.html","max_zoom":22,"name":"SSB Urban Areas overlay","overlay":true,"type":"wms","url":"https://ogc.ssb.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_198&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Kartverket","url":"https://hoydedata.no/"},"available_projections":["EPSG:3857","EPSG:4258","EPSG:4326","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:5105","EPSG:5106","EPSG:5107","EPSG:5108","EPSG:5109","EPSG:5110","EPSG:5111","EPSG:5112","EPSG:5113","EPSG:5114","EPSG:5115","EPSG:5116","EPSG:5117","EPSG:5118","EPSG:5119","EPSG:5120","EPSG:5121","EPSG:5122","EPSG:5123","EPSG:5124","EPSG:5125","EPSG:5126","EPSG:5127","EPSG:5128","EPSG:5129","EPSG:5130"],"country_code":"NO","description":"Shaded relief representation of the Norwegian digital surface model (DOM), i.e. earth surface including trees, buildings and other objects on top of it.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-dom-skygge","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":24,"name":"Kartverket DOM Digital Surface Model","type":"wms","url":"https://wms.geonorge.no/skwms1/wms.hoyde-dom_somlos_skyggerelieff?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=las_dom_skyggerelieff_somlos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Kartverket","url":"https://hoydedata.no/"},"available_projections":["EPSG:3857","EPSG:4258","EPSG:4326","EPSG:25831","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835","EPSG:25836","EPSG:5105","EPSG:5106","EPSG:5107","EPSG:5108","EPSG:5109","EPSG:5110","EPSG:5111","EPSG:5112","EPSG:5113","EPSG:5114","EPSG:5115","EPSG:5116","EPSG:5117","EPSG:5118","EPSG:5119","EPSG:5120","EPSG:5121","EPSG:5122","EPSG:5123","EPSG:5124","EPSG:5125","EPSG:5126","EPSG:5127","EPSG:5128","EPSG:5129","EPSG:5130"],"country_code":"NO","description":"Shaded relief representation of the Norwegian digital terrain model (DTM), i.e. earth surface without trees, buildings and other objects.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","id":"kartverket-dtm-skygge","license_url":"https://lists.nuug.no/pipermail/kart/2014-August/004831.html","max_zoom":24,"name":"Kartverket DTM Digital Terrain Model","type":"wms","url":"https://wms.geonorge.no/skwms1/wms.hoyde-dtm_somlos_skyggerelieff?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=las_dtm_skyggerelieff_somlos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.6108,76.4137],[16.4731,76.4268],[16.3788,76.4589],[14.4124,77.1324],[14.0784,77.2536],[10.9875,78.4054],[10.631,78.5605],[10.2314,78.8392],[10.3952,79.6074],[10.516,79.7731],[10.9632,79.8707],[20.2294,80.849],[20.4702,80.8493],[25.1752,80.6817],[33.4391,80.3438],[33.7809,80.3016],[34.0395,80.239],[33.977,80.1527],[25.5722,76.5917],[25.2739,76.481],[25.1416,76.4327],[24.937,76.4176],[16.6108,76.4137]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"NO","description":"Sentinel-2 mosaic of Svalbard (true color)","end_date":"2016","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-s2sval","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Svalbard mosaic","start_date":"2016","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=s2sval&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.15085,50.53004],[19.15127,50.53913],[19.19589,50.53855],[19.19635,50.52946],[19.24115,50.52887],[19.2413,50.53801],[19.30921,50.53708],[19.30822,50.50131],[19.28574,50.50188],[19.28451,50.45659],[19.30766,50.45615],[19.30594,50.42935],[19.26171,50.42977],[19.261,50.4029],[19.21539,50.39449],[19.21451,50.36762],[19.19178,50.36773],[19.19141,50.33333],[19.4379,50.33311],[19.43791,50.24987],[19.2499,50.24991],[19.24999,50.33181],[19.16866,50.3322],[19.1679,50.30508],[19.1454,50.30536],[19.14538,50.29621],[19.12318,50.29637],[19.12287,50.28735],[19.03302,50.28831],[19.0342,50.34217],[19.01164,50.3425],[19.01188,50.3604],[18.96701,50.36069],[18.96707,50.36967],[18.94463,50.36967],[18.94471,50.38802],[18.96799,50.38782],[18.96877,50.43257],[18.99152,50.43255],[18.99171,50.44176],[19.01404,50.44131],[19.01415,50.45929],[19.08187,50.45877],[19.08228,50.47676],[19.10477,50.47646],[19.10673,50.53049],[19.15085,50.53004]]],"type":"Polygon"},"properties":{"attribution":{"text":"Starostwo Powiatowe w Będzinie"},"available_projections":["EPSG:2177"],"country_code":"PL","id":"Bedzin-PL-buildings","name":"Będzin: Buildings","type":"wms","url":"http://www.geo.powiat.bedzin.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=eg_budynki_geo,pkt_adr&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.15085,50.53004],[19.15127,50.53913],[19.19589,50.53855],[19.19635,50.52946],[19.24115,50.52887],[19.2413,50.53801],[19.30921,50.53708],[19.30822,50.50131],[19.28574,50.50188],[19.28451,50.45659],[19.30766,50.45615],[19.30594,50.42935],[19.26171,50.42977],[19.261,50.4029],[19.21539,50.39449],[19.21451,50.36762],[19.19178,50.36773],[19.19141,50.33333],[19.4379,50.33311],[19.43791,50.24987],[19.2499,50.24991],[19.24999,50.33181],[19.16866,50.3322],[19.1679,50.30508],[19.1454,50.30536],[19.14538,50.29621],[19.12318,50.29637],[19.12287,50.28735],[19.03302,50.28831],[19.0342,50.34217],[19.01164,50.3425],[19.01188,50.3604],[18.96701,50.36069],[18.96707,50.36967],[18.94463,50.36967],[18.94471,50.38802],[18.96799,50.38782],[18.96877,50.43257],[18.99152,50.43255],[18.99171,50.44176],[19.01404,50.44131],[19.01415,50.45929],[19.08187,50.45877],[19.08228,50.47676],[19.10477,50.47646],[19.10673,50.53049],[19.15085,50.53004]]],"type":"Polygon"},"properties":{"attribution":{"text":"Starostwo Powiatowe w Będzinie"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2013","id":"Bedzin-PL-aerial_image","max_zoom":23,"name":"Będzin: Orthophotomap 2013 (aerial image)","start_date":"2013","type":"wms","url":"http://www.geo.powiat.bedzin.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.81033,50.40715],[18.81032,50.41611],[18.9008,50.41513],[18.90012,50.37923],[18.94532,50.37856],[18.94515,50.36992],[18.96735,50.36984],[18.96593,50.31573],[18.87708,50.31654],[18.87661,50.32559],[18.85443,50.32576],[18.85508,50.33481],[18.83176,50.33467],[18.83241,50.34382],[18.80925,50.34399],[18.80971,50.37073],[18.78751,50.37099],[18.78812,50.40741],[18.81033,50.40715]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Bytomia"},"available_projections":["EPSG:2177"],"country_code":"PL","id":"Bytom-buildings","name":"Bytom: Buildings","type":"wms","url":"http://sitplan.um.bytom.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=adr_osie_ulic,adr_punkty_adresowe,eg_budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.81033,50.40715],[18.81032,50.41611],[18.9008,50.41513],[18.90012,50.37923],[18.94532,50.37856],[18.94515,50.36992],[18.96735,50.36984],[18.96593,50.31573],[18.87708,50.31654],[18.87661,50.32559],[18.85443,50.32576],[18.85508,50.33481],[18.83176,50.33467],[18.83241,50.34382],[18.80925,50.34399],[18.80971,50.37073],[18.78751,50.37099],[18.78812,50.40741],[18.81033,50.40715]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Bytomia"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2014","id":"Bytom-2014","name":"Bytom: Fotoplan 2014 (aerial image)","start_date":"2014","type":"wms","url":"http://sitplan.um.bytom.pl:11180/isdp/gs/wms?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=default:fotoplan_2014&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.81033,50.40715],[18.81032,50.41611],[18.9008,50.41513],[18.90012,50.37923],[18.94532,50.37856],[18.94515,50.36992],[18.96735,50.36984],[18.96593,50.31573],[18.87708,50.31654],[18.87661,50.32559],[18.85443,50.32576],[18.85508,50.33481],[18.83176,50.33467],[18.83241,50.34382],[18.80925,50.34399],[18.80971,50.37073],[18.78751,50.37099],[18.78812,50.40741],[18.81033,50.40715]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Bytomia"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2012","id":"Bytom-2012","max_zoom":23,"name":"Bytom: Orthophotomap 2012 (aerial image)","start_date":"2012","type":"wms","url":"http://sitplan.um.bytom.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=tiff_ortofoto_2012&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.94562,50.31836],[18.94349,50.32385],[18.95466,50.32599],[18.96426,50.33307],[18.96521,50.33777],[18.98692,50.33621],[18.98468,50.32501],[18.99777,50.32204],[18.99686,50.31716],[18.98774,50.31736],[18.98695,50.30989],[18.99736,50.30031],[18.99744,50.29722],[19.00546,50.29548],[19.0073,50.28342],[19.00574,50.27871],[18.99236,50.27091],[18.96792,50.28661],[18.96215,50.27972],[18.96169,50.27337],[18.95824,50.27291],[18.95492,50.26193],[18.96014,50.24927],[18.95672,50.2452],[18.95555,50.23891],[18.94132,50.243],[18.93475,50.25314],[18.93324,50.26032],[18.93262,50.26588],[18.9296,50.26774],[18.92976,50.27131],[18.92669,50.27289],[18.92632,50.27623],[18.93071,50.27619],[18.93437,50.28729],[18.92383,50.29533],[18.92635,50.29986],[18.91905,50.30212],[18.91955,50.30576],[18.92463,50.31192],[18.9262,50.31883],[18.94562,50.31836]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Chorzowa"},"available_projections":["EPSG:4326"],"country_code":"PL","id":"Chorzow-buildings","name":"Chorzów: Buildings","type":"wms","url":"http://e-odgik.chorzow.eu/services/wms/wms_funkcje_bud/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=3,2,1,8,7,6&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Częstochowy"},"available_projections":["EPSG:4326","EPSG:3120","EPSG:3329","EPSG:3330","EPSG:3331","EPSG:3332","EPSG:3333","EPSG:3334","EPSG:2172","EPSG:2173","EPSG:2174","EPSG:2175","EPSG:2176","EPSG:2177","EPSG:2178","EPSG:2179","EPSG:2180","EPSG:32633","EPSG:32634","EPSG:32635"],"country_code":"PL","id":"Czestochowa-buildings","name":"Częstochowa: Buildings","type":"wms","url":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ieg_budynek&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Częstochowy"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2011","id":"Czestochowa-2011","max_zoom":23,"name":"Częstochowa: Orthophotomap 2011 (aerial image)","start_date":"2011","type":"wms","url":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2011&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Częstochowy"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2013","id":"Czestochowa-2013","max_zoom":23,"name":"Częstochowa: Orthophotomap 2013 (aerial image)","start_date":"2013","type":"wms","url":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Częstochowy"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2014","id":"Czestochowa-2014","max_zoom":23,"name":"Częstochowa: Orthophotomap 2014 (aerial image)","start_date":"2014","type":"wms","url":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2014&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Częstochowy"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2015","id":"Czestochowa-2015","max_zoom":23,"name":"Częstochowa: Orthophotomap 2015 (aerial image)","start_date":"2015","type":"wms","url":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2015&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Częstochowy"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2016-11-08","id":"Czestochowa-2016","max_zoom":23,"name":"Częstochowa: Orthophotomap 2016 (aerial image)","start_date":"2016-11-05","type":"wms","url":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2016&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Częstochowy"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2017-11-19","id":"Czestochowa-2017","max_zoom":23,"name":"Częstochowa: Orthophotomap 2017 (aerial image)","start_date":"2017-11-18","type":"wms","url":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orto_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"type":"Polygon"},"properties":{"attribution":{"text":"Główny Urząd Geodezji i Kartografii","url":"https://geoportal.gov.pl/web/guest/regulamin"},"available_projections":["EPSG:4326","EPSG:2180","EPSG:2176","EPSG:2177","EPSG:2178","EPSG:2179"],"best":true,"country_code":"PL","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png","id":"Geoportal2-PL-aerial_image","license_url":"https://wiki.openstreetmap.org/wiki/Geoportal.gov.pl","max_zoom":23,"name":"Geoportal 2: Orthophotomap (aerial image)","type":"wms","url":"https://mapy.geoportal.gov.pl/wss/service/img/guest/ORTO/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Raster&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}{header(User-Agent,Mozilla/5.0 (JOSM)}"},"type":"Feature"},{"geometry":{"coordinates":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"type":"Polygon"},"properties":{"attribution":{"text":"Centralny Ośrodek Dokumentacji Geodezyjnej i Kartograficznej","url":"http://www.codgik.gov.pl/index.php/darmowe-dane/prng.html"},"available_projections":["EPSG:4326","EPSG:2180","EPSG:2176","EPSG:2177","EPSG:2178","EPSG:2179"],"country_code":"PL","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png","id":"Geoportal2-PL-prng","license_url":"https://wiki.openstreetmap.org/wiki/Geoportal.gov.pl","name":"Geoportal 2: PRNG (geo names)","overlay":true,"type":"wms","url":"https://mapy.geoportal.gov.pl/wss/service/pub/guest/G2_PRNG_WMS/MapServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=PozostaleObiektyFizjograficzne,Hydrografia,PozostaleMiejscowosci,Wies,UksztaltowanieTerenu&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}{header(User-Agent,Mozilla/5.0 (JOSM)}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.57376,50.34828],[18.58723,50.35464],[18.58421,50.3601],[18.59264,50.37522],[18.65228,50.38297],[18.67384,50.37675],[18.67672,50.36174],[18.69218,50.34467],[18.70805,50.33799],[18.74154,50.3391],[18.75145,50.33046],[18.74679,50.31236],[18.75512,50.30193],[18.76358,50.29989],[18.76539,50.26873],[18.744,50.26541],[18.73482,50.25377],[18.72775,50.22843],[18.71439,50.22835],[18.71426,50.21978],[18.67522,50.21969],[18.67607,50.22562],[18.65098,50.23169],[18.6288,50.22539],[18.61744,50.24044],[18.62699,50.24369],[18.6315,50.25487],[18.61406,50.2576],[18.60319,50.25206],[18.56536,50.24763],[18.54841,50.2492],[18.55857,50.2826],[18.5459,50.29947],[18.52896,50.33687],[18.55118,50.35332],[18.57376,50.34828]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Gliwice"},"available_projections":["EPSG:3329","EPSG:3333","EPSG:3330","EPSG:3331","EPSG:3334","EPSG:3332","EPSG:3120","EPSG:2172","EPSG:2173","EPSG:2174","EPSG:2175","EPSG:2180","EPSG:2176","EPSG:2177","EPSG:2178","EPSG:2179","EPSG:32633","EPSG:32634","EPSG:32635","EPSG:4326"],"country_code":"PL","id":"Gliwice-buildings","name":"Gliwice: Buildings","type":"wms","url":"http://185.60.246.14:9090/isdp/gs/ows?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=default:EGIB_budynek,default:pkt_adr&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.57376,50.34828],[18.58723,50.35464],[18.58421,50.3601],[18.59264,50.37522],[18.65228,50.38297],[18.67384,50.37675],[18.67672,50.36174],[18.69218,50.34467],[18.70805,50.33799],[18.74154,50.3391],[18.75145,50.33046],[18.74679,50.31236],[18.75512,50.30193],[18.76358,50.29989],[18.76539,50.26873],[18.744,50.26541],[18.73482,50.25377],[18.72775,50.22843],[18.71439,50.22835],[18.71426,50.21978],[18.67522,50.21969],[18.67607,50.22562],[18.65098,50.23169],[18.6288,50.22539],[18.61744,50.24044],[18.62699,50.24369],[18.6315,50.25487],[18.61406,50.2576],[18.60319,50.25206],[18.56536,50.24763],[18.54841,50.2492],[18.55857,50.2826],[18.5459,50.29947],[18.52896,50.33687],[18.55118,50.35332],[18.57376,50.34828]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Gliwice"},"available_projections":["EPSG:2177"],"country_code":"PL","end_date":"2013","id":"Gliwice-2013","max_zoom":23,"name":"Gliwice: Orthophotomap 2013 (aerial image)","start_date":"2013","type":"wms","url":"http://185.60.246.14:9090/isdp/gs/ows?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.90884,50.24006],[18.90851,50.23542],[18.94279,50.23515],[18.94399,50.27138],[18.95469,50.27485],[18.95571,50.2894],[18.96692,50.29364],[18.98752,50.2848],[18.99888,50.2847],[18.99907,50.29368],[18.98892,50.29377],[18.98934,50.30244],[19.0094,50.30196],[19.03401,50.28842],[19.05533,50.30139],[19.07901,50.30087],[19.07908,50.29297],[19.12296,50.27784],[19.12267,50.25523],[19.11079,50.2428],[19.1098,50.17946],[19.12065,50.17936],[19.11957,50.14359],[19.10777,50.14386],[19.0973,50.13916],[19.09656,50.12786],[19.06379,50.12786],[19.02985,50.14009],[19.03007,50.16177],[19.01909,50.16698],[19.00848,50.16707],[18.96329,50.1498],[18.92907,50.15008],[18.92915,50.15426],[18.91854,50.15419],[18.91878,50.20421],[18.90792,50.20429],[18.90808,50.21297],[18.88588,50.21314],[18.88639,50.24024],[18.90884,50.24006]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Katowic"},"available_projections":["EPSG:4326","EPSG:2157","EPSG:2177"],"country_code":"PL","id":"Katowice-buildings","name":"Katowice: Buildings","type":"wms","url":"http://mapserver.um.katowice.pl/services/ortowms/MapServer/WMSServer?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=4,5,6&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.90884,50.24006],[18.90851,50.23542],[18.94279,50.23515],[18.94399,50.27138],[18.95469,50.27485],[18.95571,50.2894],[18.96692,50.29364],[18.98752,50.2848],[18.99888,50.2847],[18.99907,50.29368],[18.98892,50.29377],[18.98934,50.30244],[19.0094,50.30196],[19.03401,50.28842],[19.05533,50.30139],[19.07901,50.30087],[19.07908,50.29297],[19.12296,50.27784],[19.12267,50.25523],[19.11079,50.2428],[19.1098,50.17946],[19.12065,50.17936],[19.11957,50.14359],[19.10777,50.14386],[19.0973,50.13916],[19.09656,50.12786],[19.06379,50.12786],[19.02985,50.14009],[19.03007,50.16177],[19.01909,50.16698],[19.00848,50.16707],[18.96329,50.1498],[18.92907,50.15008],[18.92915,50.15426],[18.91854,50.15419],[18.91878,50.20421],[18.90792,50.20429],[18.90808,50.21297],[18.88588,50.21314],[18.88639,50.24024],[18.90884,50.24006]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Katowic"},"available_projections":["EPSG:4326","EPSG:2157","EPSG:2177"],"country_code":"PL","id":"Katowice-aerial_image","max_zoom":23,"name":"Katowice: Orthophotomap (aerial image)","type":"wms","url":"http://mapserver.um.katowice.pl/services/ortowms/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.17224,50.10121],[22.12574,50.1079],[22.0823,50.17206],[22.13591,50.1867],[22.173,50.18117],[22.18418,50.22914],[22.235,50.24718],[22.3856,50.16031],[22.40346,50.13331],[22.45275,50.12745],[22.45275,50.10676],[22.41768,50.08997],[22.38364,50.08915],[22.38542,50.05393],[22.35315,50.05067],[22.3562,50.00627],[22.31478,49.99451],[22.32139,49.94614],[22.29979,49.92455],[22.24161,49.92847],[22.20901,49.93728],[22.22382,49.96085],[22.16683,50.00412],[22.1387,50.00251],[22.12015,50.04626],[22.17224,50.10121]]],"type":"Polygon"},"properties":{"attribution":{"text":"Powiat łańcucki"},"available_projections":["EPSG:2178","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"lancucki-buildings","max_zoom":19,"name":"Powiat łańcucki: Buildings","type":"wms","url":"https://lancut.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=EBT,budynki,adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[21.53768,50.01085],[21.51944,50.05423],[21.58099,50.1233],[21.48804,50.18059],[21.13725,50.14835],[21.13939,50.12721],[21.18058,50.12101],[21.14315,50.05965],[21.15356,49.92854],[21.27892,49.92554],[21.22448,49.8861],[21.22362,49.84258],[21.35177,49.8349],[21.36368,49.86838],[21.41585,49.82003],[21.47943,49.8398],[21.52679,49.88911],[21.47689,50.00135],[21.53768,50.01085]]],"type":"Polygon"},"properties":{"attribution":{"text":"Powiat dębicki"},"available_projections":["EPSG:2178","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"debicki-buildings","max_zoom":19,"name":"Powiat dębicki: Buildings","type":"wms","url":"https://debica.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,adresy,EBU,EBT,S&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[23.29224,50.09693],[23.55763,50.25704],[23.51394,50.26643],[23.522,50.29892],[23.40991,50.3083],[23.44482,50.35653],[23.38072,50.3699],[23.38829,50.4058],[23.35821,50.41105],[23.2527,50.36601],[23.19379,50.40529],[23.01962,50.2928],[22.84161,50.30574],[22.83572,50.27037],[22.82426,50.26923],[22.79651,50.20933],[22.86603,50.18949],[22.87414,50.13786],[22.93233,50.1678],[22.88954,50.11501],[22.95351,50.07178],[23.05556,50.04967],[22.99884,49.99028],[23.14951,49.97563],[23.29224,50.09693]]],"type":"Polygon"},"properties":{"attribution":{"text":"Powiat lubaczowski"},"available_projections":["EPSG:2179","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"lubaczowski-buildings","max_zoom":19,"name":"Powiat lubaczowski: Buildings","type":"wms","url":"https://lubaczow.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=S,EBT,adresy,budynki_ewid&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.9585,52.46312],[17.03946,52.33605],[16.84291,52.36501],[16.78596,52.46566],[16.70022,52.53819],[16.6415,52.5288],[16.44898,52.36793],[16.47775,52.2696],[16.5659,52.26813],[16.58375,52.17007],[17.08099,52.14981],[17.37124,52.34522],[17.39853,52.44037],[17.35338,52.53949],[17.13689,52.57783],[17.13126,52.6419],[17.01608,52.68366],[16.9158,52.65079],[16.85814,52.58191],[16.7367,52.57459],[16.70022,52.53824],[16.78598,52.46567],[16.9585,52.46312]]],"type":"Polygon"},"properties":{"attribution":{"text":"PODGIK Poznań"},"available_projections":["EPSG:2177","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatpoznaskiOrthophotomap(aerialimage).png","id":"poznanski-buildings","name":"Powiat poznański: Buildings","type":"wms","url":"http://wms.podgik.poznan.pl/cgi-bin/poznan?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.9585,52.46312],[17.03946,52.33605],[16.84291,52.36501],[16.78596,52.46566],[16.70022,52.53819],[16.6415,52.5288],[16.44898,52.36793],[16.47775,52.2696],[16.5659,52.26813],[16.58375,52.17007],[17.08099,52.14981],[17.37124,52.34522],[17.39853,52.44037],[17.35338,52.53949],[17.13689,52.57783],[17.13126,52.6419],[17.01608,52.68366],[16.9158,52.65079],[16.85814,52.58191],[16.7367,52.57459],[16.70022,52.53824],[16.78598,52.46567],[16.9585,52.46312]]],"type":"Polygon"},"properties":{"attribution":{"text":"PODGIK Poznań"},"available_projections":["EPSG:2177"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatpoznaskiOrthophotomap(aerialimage).png","id":"poznanski-aerial","max_zoom":23,"name":"Powiat poznański: Orthophotomap (aerial image)","type":"wms","url":"http://wms.podgik.poznan.pl/cgi-bin/poznan?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto-poznan&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[21.60041,50.21025],[21.74199,50.16538],[21.792,50.17829],[21.81459,50.15264],[21.78741,50.10859],[21.82597,50.09149],[21.82552,50.02925],[21.78666,49.97585],[21.70632,49.96022],[21.683,49.92431],[21.60062,49.91793],[21.54249,49.8862],[21.5188,49.89119],[21.45315,49.99268],[21.50364,50.0198],[21.49298,50.07161],[21.55535,50.11909],[21.50429,50.16559],[21.59816,50.17866],[21.60041,50.21025]]],"type":"Polygon"},"properties":{"attribution":{"text":"Powiat ropczycko-sędziszowski"},"available_projections":["EPSG:2178","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"sropczyce-buildings","max_zoom":19,"name":"Powiat ropczycko-sędziszowski: Buildings","type":"wms","url":"https://spropczyce.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.18219,50.17339],[22.09834,50.17176],[22.18016,50.09784],[22.13779,50.00695],[22.09444,50.00841],[22.02839,50.06668],[21.9354,50.06636],[21.98164,49.94977],[22.05278,50.0097],[22.1771,50.00555],[22.23319,49.96829],[22.31144,49.87008],[22.34961,49.72826],[21.99951,49.82808],[21.84961,49.95739],[21.7495,49.96981],[21.78503,50.14212],[21.93307,50.24748],[22.08291,50.26471],[21.98553,50.31545],[22.0901,50.37369],[22.19821,50.35265],[22.2536,50.2647],[22.18219,50.17339]]],"type":"Polygon"},"properties":{"attribution":{"text":"Powiat rzeszowski"},"available_projections":["EPSG:2178","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"rzeszowski-buildings","max_zoom":19,"name":"Powiat rzeszowski: Buildings","type":"wms","url":"https://powiatrzeszowski.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,EBT,EBU&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.18219,50.17339],[22.09834,50.17176],[22.18016,50.09784],[22.13779,50.00695],[22.09444,50.00841],[22.02839,50.06668],[21.9354,50.06636],[21.98164,49.94977],[22.05278,50.0097],[22.1771,50.00555],[22.23319,49.96829],[22.31144,49.87008],[22.34961,49.72826],[21.99951,49.82808],[21.84961,49.95739],[21.7495,49.96981],[21.78503,50.14212],[21.93307,50.24748],[22.08291,50.26471],[21.98553,50.31545],[22.0901,50.37369],[22.19821,50.35265],[22.2536,50.2647],[22.18219,50.17339]]],"type":"Polygon"},"properties":{"attribution":{"text":"Powiat rzeszowski"},"available_projections":["EPSG:2178","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"rzeszowski-aerial","max_zoom":19,"name":"Powiat rzeszowski: Orthophotomap (aerial image)","type":"wms","url":"https://powiatrzeszowski.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.017,50.35811],[22.09292,50.44916],[22.06785,50.51434],[22.09722,50.54302],[22.16347,50.52686],[22.23795,50.5503],[22.26768,50.60465],[22.22757,50.6653],[22.16235,50.66969],[22.20843,50.75403],[22.16239,50.80039],[22.0546,50.82234],[21.94394,50.77639],[21.86228,50.80439],[21.83413,50.75035],[21.87465,50.70066],[21.84046,50.65749],[21.97582,50.53164],[21.84797,50.47196],[21.88045,50.3913],[22.017,50.35811]]],"type":"Polygon"},"properties":{"attribution":{"text":"Powiat stalowowolski"},"available_projections":["EPSG:2178","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"stalowowolski-buildings","max_zoom":19,"name":"Powiat stalowowolski: Buildings","type":"wms","url":"https://stalowawola.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=EBT,adresy,budynki,centroidy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"type":"Polygon"},"properties":{"attribution":{"text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ"},"available_projections":["EPSG:4326","EPSG:2177","EPSG:2180","EPSG:3857"],"country_code":"PL","end_date":"2018","id":"poznan-buildings","max_zoom":23,"name":"Poznań: Buildings","start_date":"2018","type":"wms","url":"http://wms2.geopoz.poznan.pl:8080/geoserver/sip/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki_ewidencyjne_sql&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"type":"Polygon"},"properties":{"attribution":{"text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ"},"available_projections":["EPSG:4326","EPSG:2177","EPSG:2180","EPSG:3857"],"country_code":"PL","end_date":"2014","id":"poznan-ortofotomapa2014","max_zoom":23,"name":"Poznań: Orthophotomap 2014 (aerial image)","start_date":"2014","type":"wms","url":"http://wms1.geopoz.poznan.pl:6080/arcgis/services/sip/ortofotomapa_2014/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa_2014_image&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"type":"Polygon"},"properties":{"attribution":{"text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ"},"available_projections":["EPSG:4326","EPSG:2177","EPSG:2180","EPSG:3857"],"country_code":"PL","end_date":"2016","id":"poznan-ortofotomapa2016","max_zoom":23,"name":"Poznań: Orthophotomap 2016 (aerial image)","start_date":"2016","type":"wms","url":"http://wms1.geopoz.poznan.pl:6080/arcgis/services/sip/ortofotomapy/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa_2016_image&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.72268,49.76885],[22.73002,49.76787],[22.73097,49.77612],[22.72027,49.77662],[22.71787,49.78062],[22.73104,49.78553],[22.7244,49.79043],[22.73458,49.80441],[22.73167,49.81429],[22.7261,49.8165],[22.72762,49.82124],[22.74395,49.8187],[22.75952,49.80939],[22.79042,49.81462],[22.81169,49.80571],[22.79738,49.80146],[22.80384,49.79247],[22.83118,49.79664],[22.85752,49.78561],[22.84549,49.76746],[22.82485,49.77105],[22.82004,49.75674],[22.77358,49.74439],[22.73838,49.75895],[22.72205,49.74644],[22.71065,49.76288],[22.72268,49.76885]]],"type":"Polygon"},"properties":{"attribution":{"text":"Miasto Przemyśl"},"available_projections":["EPSG:2179","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"przemysl-buildings","max_zoom":19,"name":"Przemyśl: Buildings","type":"wms","url":"http://przemysl.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=adresy,budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.72268,49.76885],[22.73002,49.76787],[22.73097,49.77612],[22.72027,49.77662],[22.71787,49.78062],[22.73104,49.78553],[22.7244,49.79043],[22.73458,49.80441],[22.73167,49.81429],[22.7261,49.8165],[22.72762,49.82124],[22.74395,49.8187],[22.75952,49.80939],[22.79042,49.81462],[22.81169,49.80571],[22.79738,49.80146],[22.80384,49.79247],[22.83118,49.79664],[22.85752,49.78561],[22.84549,49.76746],[22.82485,49.77105],[22.82004,49.75674],[22.77358,49.74439],[22.73838,49.75895],[22.72205,49.74644],[22.71065,49.76288],[22.72268,49.76885]]],"type":"Polygon"},"properties":{"attribution":{"text":"Miasto Przemyśl"},"available_projections":["EPSG:2179","EPSG:2180","EPSG:4326"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png","id":"przemysl-aerial","max_zoom":23,"name":"Przemyśl: Ortophotomap (aerial image)","type":"wms","url":"http://przemysl.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.84294,50.32508],[18.84008,50.33091],[18.85132,50.33437],[18.86262,50.3305],[18.88693,50.333],[18.89493,50.3319],[18.90045,50.32562],[18.89713,50.31146],[18.89312,50.31149],[18.89114,50.30778],[18.8972,50.2999],[18.89073,50.29586],[18.90211,50.29204],[18.90706,50.28637],[18.90853,50.27823],[18.93583,50.27379],[18.94106,50.25859],[18.93848,50.25317],[18.95086,50.24267],[18.96531,50.24084],[18.94611,50.22907],[18.89932,50.22516],[18.90251,50.21749],[18.89075,50.21557],[18.89292,50.20913],[18.86474,50.20512],[18.85673,50.22078],[18.85258,50.22331],[18.84619,50.21761],[18.83341,50.21715],[18.83533,50.22307],[18.83051,50.23099],[18.82411,50.23055],[18.81641,50.23709],[18.81619,50.24125],[18.80635,50.24596],[18.80344,50.24293],[18.78831,50.24456],[18.79552,50.2768],[18.81681,50.27732],[18.81919,50.28794],[18.83893,50.29795],[18.83849,50.3004],[18.82699,50.30342],[18.82691,50.32073],[18.83007,50.32371],[18.84294,50.32508]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Ruda Śląska"},"available_projections":["EPSG:2177","EPSG:2180","EPSG:4326"],"country_code":"PL","id":"Ruda_Slaska-aerial_image","max_zoom":23,"name":"Ruda Śląska: Orthophotomap (aerial image)","type":"wms","url":"https://rudaslaska.geoportal2.pl/map/wmsorto/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.09538,50.08157],[22.0947,50.05584],[22.08892,50.05589],[22.08874,50.03671],[22.09505,50.03682],[22.09435,49.98723],[22.0609,49.98754],[22.0605,49.96525],[22.04757,49.96509],[22.04724,49.95792],[22.03139,49.95845],[22.0312,49.9574],[22.0014,49.95833],[22.00019,49.9375],[22.0014,49.93746],[22.00029,49.92047],[21.96799,49.92088],[21.969,49.93683],[21.95393,49.93706],[21.95441,49.94373],[21.94192,49.94378],[21.94253,49.96646],[21.93676,49.9665],[21.93776,49.97828],[21.92898,49.97858],[21.92951,49.98858],[21.91606,49.9888],[21.9165,50.01192],[21.90572,50.01195],[21.90653,50.04136],[21.87425,50.04183],[21.87546,50.06072],[21.90465,50.06083],[21.90672,50.0835],[22.09538,50.08157]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Rzeszowa"},"available_projections":["EPSG:2178","EPSG:2180","EPSG:4326"],"country_code":"PL","id":"Rzeszow-buildings","max_zoom":19,"name":"Rzeszów: Buildings","type":"wms","url":"http://wms.erzeszow.pl/?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=komunikacja,budynki,adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[22.09538,50.08157],[22.0947,50.05584],[22.08892,50.05589],[22.08874,50.03671],[22.09505,50.03682],[22.09435,49.98723],[22.0609,49.98754],[22.0605,49.96525],[22.04757,49.96509],[22.04724,49.95792],[22.03139,49.95845],[22.0312,49.9574],[22.0014,49.95833],[22.00019,49.9375],[22.0014,49.93746],[22.00029,49.92047],[21.96799,49.92088],[21.969,49.93683],[21.95393,49.93706],[21.95441,49.94373],[21.94192,49.94378],[21.94253,49.96646],[21.93676,49.9665],[21.93776,49.97828],[21.92898,49.97858],[21.92951,49.98858],[21.91606,49.9888],[21.9165,50.01192],[21.90572,50.01195],[21.90653,50.04136],[21.87425,50.04183],[21.87546,50.06072],[21.90465,50.06083],[21.90672,50.0835],[22.09538,50.08157]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Rzeszowa"},"available_projections":["EPSG:2178","EPSG:2180","EPSG:4326"],"country_code":"PL","id":"Rzeszow-aerial_image","max_zoom":23,"name":"Rzeszów: Orthophotomap (aerial image)","type":"wms","url":"http://wms.erzeszow.pl/?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=rastry&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.03103,50.33933],[19.0316,50.35413],[19.0656,50.35373],[19.06529,50.34219],[19.06118,50.33749],[19.06069,50.31967],[19.05603,50.31975],[19.05562,50.30155],[19.06432,50.3015],[19.06366,50.27175],[19.04379,50.27179],[19.04375,50.27478],[19.0213,50.27505],[19.02156,50.28398],[19.01027,50.28856],[18.98791,50.28871],[18.98822,50.3022],[18.98143,50.30226],[18.98213,50.33977],[19.03103,50.33933]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Siemianowice Śląskie"},"available_projections":["EPSG:2177","EPSG:2180","EPSG:4326"],"country_code":"PL","id":"Siemianowice_Slaskie-buildings","max_zoom":19,"name":"Siemianowice Śląskie: Buildings","type":"wms","url":"https://siemianowice.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,drogi,adresy,ulice&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.03103,50.33933],[19.0316,50.35413],[19.0656,50.35373],[19.06529,50.34219],[19.06118,50.33749],[19.06069,50.31967],[19.05603,50.31975],[19.05562,50.30155],[19.06432,50.3015],[19.06366,50.27175],[19.04379,50.27179],[19.04375,50.27478],[19.0213,50.27505],[19.02156,50.28398],[19.01027,50.28856],[18.98791,50.28871],[18.98822,50.3022],[18.98143,50.30226],[18.98213,50.33977],[19.03103,50.33933]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Siemianowice Śląskie"},"available_projections":["EPSG:2177","EPSG:2180","EPSG:4326"],"country_code":"PL","id":"Siemianowice_Slaskie-aerial_image","max_zoom":23,"name":"Siemianowice Śląskie: Orthophotomap (aerial image)","type":"wms","url":"https://siemianowice.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[17.14217,51.12846],[17.15659,51.1499],[17.15933,51.16056],[17.15899,51.17886],[17.14371,51.18155],[17.13024,51.18128],[17.12466,51.17396],[17.11436,51.17746],[17.0778,51.17746],[17.07642,51.1766],[17.07548,51.16825],[17.06698,51.16745],[17.04698,51.17493],[17.03376,51.17729],[17.02741,51.17729],[17.02733,51.18246],[17.02252,51.18816],[17.01299,51.18816],[17.0093,51.18499],[17.00312,51.18504],[17.00261,51.20016],[16.99162,51.20559],[16.97008,51.20763],[16.96424,51.20989],[16.95394,51.20968],[16.94656,51.20586],[16.9233,51.2001],[16.90811,51.21043],[16.89927,51.21027],[16.89292,51.2071],[16.88322,51.2071],[16.88073,51.20489],[16.88047,51.19666],[16.88322,51.19048],[16.87403,51.18719],[16.87026,51.18203],[16.85455,51.18031],[16.8421,51.18488],[16.82434,51.18467],[16.82056,51.17875],[16.82099,51.16373],[16.82502,51.15647],[16.80915,51.15194],[16.80657,51.14613],[16.80648,51.1366],[16.80769,51.13595],[16.81687,51.13601],[16.8161,51.13337],[16.81636,51.12459],[16.82932,51.12329],[16.83266,51.11834],[16.82923,51.11386],[16.82923,51.10993],[16.83215,51.10869],[16.84949,51.10826],[16.85661,51.09899],[16.87901,51.09252],[16.88862,51.09258],[16.89197,51.09667],[16.92107,51.09662],[16.9209,51.09263],[16.91661,51.0812],[16.91686,51.07942],[16.93514,51.07948],[16.93849,51.0736],[16.95248,51.06686],[16.95068,51.05806],[16.95454,51.05369],[16.96188,51.0473],[16.96879,51.04568],[16.98072,51.04584],[16.98424,51.05197],[16.99969,51.04668],[17.00776,51.04422],[17.01973,51.04169],[17.03286,51.0419],[17.03415,51.04673],[17.04509,51.04339],[17.06363,51.04339],[17.07037,51.05286],[17.08363,51.04428],[17.095,51.04368],[17.10633,51.04376],[17.10835,51.04684],[17.10822,51.05377],[17.10226,51.05868],[17.11136,51.0716],[17.12341,51.07179],[17.12299,51.07856],[17.15088,51.07861],[17.17277,51.09344],[17.17277,51.09956],[17.17697,51.10303],[17.17676,51.1092],[17.16363,51.1203],[17.14217,51.12846]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Wrocław"},"available_projections":["EPSG:4326","EPSG:2177","EPSG:3857"],"country_code":"PL","end_date":"2015","icon":"https://i.imgur.com/PRqROXB.png","id":"wroclaw-orto2015","max_zoom":23,"name":"Wrocław: Orthophotomap 2015 (aerial image)","start_date":"2015","type":"wms","url":"https://gis1.um.wroc.pl/arcgis/services/ogc/OGC_ortofoto_2015/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[17.14217,51.12846],[17.15659,51.1499],[17.15933,51.16056],[17.15899,51.17886],[17.14371,51.18155],[17.13024,51.18128],[17.12466,51.17396],[17.11436,51.17746],[17.0778,51.17746],[17.07642,51.1766],[17.07548,51.16825],[17.06698,51.16745],[17.04698,51.17493],[17.03376,51.17729],[17.02741,51.17729],[17.02733,51.18246],[17.02252,51.18816],[17.01299,51.18816],[17.0093,51.18499],[17.00312,51.18504],[17.00261,51.20016],[16.99162,51.20559],[16.97008,51.20763],[16.96424,51.20989],[16.95394,51.20968],[16.94656,51.20586],[16.9233,51.2001],[16.90811,51.21043],[16.89927,51.21027],[16.89292,51.2071],[16.88322,51.2071],[16.88073,51.20489],[16.88047,51.19666],[16.88322,51.19048],[16.87403,51.18719],[16.87026,51.18203],[16.85455,51.18031],[16.8421,51.18488],[16.82434,51.18467],[16.82056,51.17875],[16.82099,51.16373],[16.82502,51.15647],[16.80915,51.15194],[16.80657,51.14613],[16.80648,51.1366],[16.80769,51.13595],[16.81687,51.13601],[16.8161,51.13337],[16.81636,51.12459],[16.82932,51.12329],[16.83266,51.11834],[16.82923,51.11386],[16.82923,51.10993],[16.83215,51.10869],[16.84949,51.10826],[16.85661,51.09899],[16.87901,51.09252],[16.88862,51.09258],[16.89197,51.09667],[16.92107,51.09662],[16.9209,51.09263],[16.91661,51.0812],[16.91686,51.07942],[16.93514,51.07948],[16.93849,51.0736],[16.95248,51.06686],[16.95068,51.05806],[16.95454,51.05369],[16.96188,51.0473],[16.96879,51.04568],[16.98072,51.04584],[16.98424,51.05197],[16.99969,51.04668],[17.00776,51.04422],[17.01973,51.04169],[17.03286,51.0419],[17.03415,51.04673],[17.04509,51.04339],[17.06363,51.04339],[17.07037,51.05286],[17.08363,51.04428],[17.095,51.04368],[17.10633,51.04376],[17.10835,51.04684],[17.10822,51.05377],[17.10226,51.05868],[17.11136,51.0716],[17.12341,51.07179],[17.12299,51.07856],[17.15088,51.07861],[17.17277,51.09344],[17.17277,51.09956],[17.17697,51.10303],[17.17676,51.1092],[17.16363,51.1203],[17.14217,51.12846]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Wrocław"},"available_projections":["EPSG:4326","EPSG:2177","EPSG:3857"],"best":true,"country_code":"PL","end_date":"2018-04-07","i18n":true,"icon":"https://i.imgur.com/PRqROXB.png","id":"wroclaw-orto2018","max_zoom":23,"name":"Wrocław: Orthophotomap 2018 (aerial image)","privacy_policy_url":"http://bip.um.wroc.pl/artykul/7/32673/dane-osobowe","start_date":"2018-04-06","type":"wms","url":"https://gis1.um.wroc.pl/arcgis/services/ogc/OGC_ortofoto_2018/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.74396,50.2753],[18.75586,50.27523],[18.75578,50.27633],[18.74516,50.28105],[18.74609,50.28886],[18.75084,50.28948],[18.74832,50.2957],[18.73379,50.29618],[18.73208,50.31571],[18.73613,50.31646],[18.73882,50.32763],[18.73725,50.33016],[18.73121,50.33169],[18.73054,50.3344],[18.73422,50.3371],[18.73428,50.34097],[18.73866,50.34308],[18.75419,50.34182],[18.75982,50.34624],[18.75438,50.34744],[18.75119,50.34979],[18.74603,50.36876],[18.75705,50.3692],[18.7639,50.36754],[18.77263,50.37628],[18.78436,50.37077],[18.78713,50.37295],[18.79821,50.37048],[18.80466,50.37561],[18.80165,50.37718],[18.80164,50.38222],[18.80509,50.38317],[18.81527,50.38167],[18.81446,50.37515],[18.82183,50.36883],[18.81737,50.36802],[18.82104,50.35843],[18.8159,50.35336],[18.81687,50.35076],[18.82294,50.35156],[18.83281,50.34962],[18.83474,50.3443],[18.84615,50.34448],[18.86293,50.32852],[18.8607,50.32776],[18.85088,50.33191],[18.84578,50.32923],[18.84891,50.32352],[18.83179,50.32028],[18.83192,50.30483],[18.84451,50.30286],[18.84429,50.29627],[18.82282,50.28615],[18.82845,50.28482],[18.82745,50.27972],[18.82322,50.27994],[18.8214,50.27414],[18.81392,50.27309],[18.79981,50.27351],[18.7987,50.2613],[18.7923,50.24641],[18.78261,50.24583],[18.76416,50.25145],[18.75396,50.25669],[18.75004,50.26402],[18.73991,50.26738],[18.73421,50.27084],[18.74396,50.2753]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Zabrza"},"available_projections":["EPSG:2177","EPSG:4326"],"country_code":"PL","end_date":"2011","id":"Zabrze-2011","max_zoom":23,"name":"Zabrze: Orthophotomap 2011 (aerial image)","start_date":"2011","type":"wms","url":"http://siot.um.zabrze.pl/arcgis/services/UMZ_Ortofoto_2011/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Łodzi"},"available_projections":["EPSG:4326","EPSG:2177"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png","id":"Lodz-buildings","name":"Łódź: Buildings","type":"wms","url":"https://gis.mapa.lodz.pl/awiskts/services/WMS_publikowane/LODZ/MapServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Budynki,Ulice,Adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Łodzi"},"available_projections":["EPSG:4326","EPSG:2177"],"country_code":"PL","end_date":"2015","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png","id":"Lodz-2015","max_zoom":22,"name":"Łódź: Orthophotomap 2015 (aerial image)","start_date":"2015","type":"wms","url":"https://gis.mapa.lodz.pl/awiskts/services/Ortofotomapa/Ortofotomapa/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Łodzi"},"available_projections":["EPSG:4326","EPSG:2177","EPSG:2180"],"country_code":"PL","end_date":"2017","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png","id":"Lodz-2017","max_zoom":22,"name":"Łódź: Orthophotomap 2017 (aerial image)","start_date":"2017","type":"wms","url":"https://mapa.lodz.pl/3/services/OGC/Ortofotomapa/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"type":"Polygon"},"properties":{"attribution":{"text":"polska.e-mapa.net - Geoportal otwartych danych przestrzennych","url":"https://polska.e-mapa.net/"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:2180","EPSG:2176","EPSG:2177","EPSG:2178","EPSG:2179"],"country_code":"PL","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/polskae-mapanetBuildings.png","id":"e-mapa.net-buildings","license_url":"http://e-mapa.net/warunki/","max_zoom":19,"name":"polska.e-mapa.net: Buildings","type":"wms","url":"https://integracja02.gugik.gov.pl/cgi-bin/KrajowaIntegracjaEwidencjiGruntow?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.92818,50.32151],[18.93028,50.31766],[18.93402,50.31392],[18.93193,50.31119],[18.92556,50.30575],[18.92429,50.30354],[18.92964,50.30206],[18.93083,50.3004],[18.9283,50.2961],[18.93573,50.29356],[18.93885,50.28965],[18.9371,50.28727],[18.93966,50.28206],[18.93402,50.27553],[18.92953,50.27543],[18.93037,50.27338],[18.93413,50.27104],[18.93239,50.26883],[18.92716,50.26926],[18.90447,50.27371],[18.89758,50.27612],[18.89569,50.28028],[18.89783,50.28566],[18.89712,50.2878],[18.88292,50.29258],[18.88031,50.29473],[18.88311,50.29894],[18.88819,50.30164],[18.88326,50.30717],[18.88444,50.31183],[18.89149,50.31809],[18.89306,50.32558],[18.89568,50.32704],[18.92818,50.32151]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Świętochłowice"},"available_projections":["EPSG:2177","EPSG:2180","EPSG:4326"],"country_code":"PL","end_date":"2008","id":"Swietochlowice-2008","max_zoom":23,"name":"Świętochłowice: Orthophotomap 2008 (aerial image)","start_date":"2008","type":"wms","url":"https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2008&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.92818,50.32151],[18.93028,50.31766],[18.93402,50.31392],[18.93193,50.31119],[18.92556,50.30575],[18.92429,50.30354],[18.92964,50.30206],[18.93083,50.3004],[18.9283,50.2961],[18.93573,50.29356],[18.93885,50.28965],[18.9371,50.28727],[18.93966,50.28206],[18.93402,50.27553],[18.92953,50.27543],[18.93037,50.27338],[18.93413,50.27104],[18.93239,50.26883],[18.92716,50.26926],[18.90447,50.27371],[18.89758,50.27612],[18.89569,50.28028],[18.89783,50.28566],[18.89712,50.2878],[18.88292,50.29258],[18.88031,50.29473],[18.88311,50.29894],[18.88819,50.30164],[18.88326,50.30717],[18.88444,50.31183],[18.89149,50.31809],[18.89306,50.32558],[18.89568,50.32704],[18.92818,50.32151]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Świętochłowice"},"available_projections":["EPSG:2177","EPSG:2180","EPSG:4326"],"country_code":"PL","end_date":"2009","id":"Swietochlowice-2009","max_zoom":23,"name":"Świętochłowice: Orthophotomap 2009 (aerial image)","start_date":"2009","type":"wms","url":"https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2009&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}"},"type":"Feature"},{"geometry":{"coordinates":[[[18.92818,50.32151],[18.93028,50.31766],[18.93402,50.31392],[18.93193,50.31119],[18.92556,50.30575],[18.92429,50.30354],[18.92964,50.30206],[18.93083,50.3004],[18.9283,50.2961],[18.93573,50.29356],[18.93885,50.28965],[18.9371,50.28727],[18.93966,50.28206],[18.93402,50.27553],[18.92953,50.27543],[18.93037,50.27338],[18.93413,50.27104],[18.93239,50.26883],[18.92716,50.26926],[18.90447,50.27371],[18.89758,50.27612],[18.89569,50.28028],[18.89783,50.28566],[18.89712,50.2878],[18.88292,50.29258],[18.88031,50.29473],[18.88311,50.29894],[18.88819,50.30164],[18.88326,50.30717],[18.88444,50.31183],[18.89149,50.31809],[18.89306,50.32558],[18.89568,50.32704],[18.92818,50.32151]]],"type":"Polygon"},"properties":{"attribution":{"text":"Urząd Miasta Świętochłowice"},"available_projections":["EPSG:2177","EPSG:2180","EPSG:4326"],"country_code":"PL","end_date":"2012","id":"Swietochlowice-2012","max_zoom":23,"name":"Świętochłowice: Orthophotomap 2012 (aerial image)","start_date":"2012","type":"wms","url":"https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2012&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}"},"type":"Feature"},{"geometry":{"coordinates":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"type":"Polygon"},"properties":{"attribution":{"text":"Direcção-Geral do Território","url":"http://www.dgterritorio.pt/dados_abertos/cos/"},"available_projections":["EPSG:3763","EPSG:4258","EPSG:4326","EPSG:3857"],"country_code":"PT","end_date":"2010","icon":"http://www.igeo.pt/favicon.ico","id":"COS2010_v1.0","license_url":"http://www.dgterritorio.pt/dados_abertos/cos/","max_zoom":18,"min_zoom":14,"name":"Carta de Uso do Solo 2010 (WMS)","start_date":"2010","type":"wms","url":"http://mapas.dgterritorio.pt/wms-inspire/cos2010v1?language=por&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=COS2010_v1.0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"type":"Polygon"},"properties":{"attribution":{"text":"Direcção-Geral do Território","url":"http://www.dgterritorio.pt/dados_abertos/ortofotos/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3763","EPSG:4258"],"country_code":"PT","end_date":"2006","icon":"http://www.igeo.pt/favicon.ico","id":"ORTOS_DGRF_2004_06","license_url":"http://www.igeo.pt/DadosAbertos/Listagem.aspx","max_zoom":19,"min_zoom":14,"name":"Ortofotos DGRF 2004-2006 (WMS)","start_date":"2004","type":"wms","url":"http://mapas.dgterritorio.pt:8888/wms/produtos?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ortos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-7.38968,37.19205],[-7.52426,37.18002],[-7.89505,36.98171],[-8.15186,37.10886],[-8.65036,37.14062],[-8.95111,37.03545],[-8.78632,37.34833],[-8.76434,37.55111],[-8.7561,38.38258],[-8.47664,38.33466],[-8.47183,38.40141],[-8.66066,38.46596],[-8.66959,38.60882],[-9.142,38.53689],[-8.81104,38.67372],[-8.79318,38.85468],[-8.95935,38.9829],[-9.18732,38.84934],[-9.2395,38.72838],[-9.37821,38.74659],[-9.38233,39.07891],[-9.29169,39.2514],[-9.31915,39.33642],[-9.17084,39.38526],[-9.06372,39.48815],[-9.02252,39.69662],[-8.78632,40.14529],[-8.86322,40.2093],[-8.72589,40.53155],[-8.64075,40.50858],[-8.62427,40.63063],[-8.53089,40.6004],[-8.535,40.71292],[-8.61466,40.89275],[-8.61878,41.10419],[-8.53089,41.16728],[-8.66959,41.21689],[-8.72315,41.41081],[-8.76984,41.65958],[-8.66547,41.73955],[-8.81104,41.72316],[-8.81104,41.85217],[-8.74649,41.9125],[-8.83576,41.93089],[-8.91815,41.84501],[-8.89343,41.70778],[-8.82065,41.50755],[-8.73139,41.16315],[-8.67508,41.069],[-8.68469,40.90729],[-8.93326,40.17573],[-8.88107,40.12219],[-9.11453,39.64694],[-9.11865,39.5623],[-9.3013,39.40543],[-9.43039,39.37571],[-9.34799,39.23864],[-9.45099,39.04799],[-9.45786,38.89317],[-9.53201,38.78835],[-9.50043,38.68551],[-9.28894,38.663],[-9.19418,38.54172],[-9.25324,38.38473],[-9.03488,38.42347],[-8.92502,38.46757],[-8.81241,38.35997],[-8.7973,38.14968],[-8.91953,37.95286],[-8.84262,37.8651],[-8.83988,37.40617],[-9.02664,37.01023],[-8.92914,36.97513],[-8.61466,37.099],[-8.15048,37.05956],[-7.8923,36.93672],[-7.48993,37.15156],[-7.39105,37.15813],[-7.38968,37.19205]]],"type":"Polygon"},"properties":{"attribution":{"text":"Direcção-Geral do Território","url":"http://www.dgterritorio.pt/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3763","EPSG:4258"],"country_code":"PT","end_date":"2015","icon":"http://www.igeo.pt/favicon.ico","id":"ORTOS_DGT_2014_15","license_url":"http://www.dgterritorio.pt/dados_abertos/ortofotos/","max_zoom":20,"min_zoom":1,"name":"Ortofotos Litoral DGT 2014-2015 (WMS)","start_date":"2014","type":"wms","url":"http://ows.dgterritorio.pt/wss/service/ortos2014-2015-wms/guest?language=por&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ortoimagens_2014-2015_Litoral&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[35.93259,44.96237],[35.93259,45.55926],[37.36991,45.55926],[37.36991,44.96237],[35.93259,44.96237]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"RU","description":"State of bridge construction in August 2016 (true color)","end_date":"2016-08-07","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R021_N44_20160807T083013","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Kerch Strait","start_date":"2016-08-07","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20160807T083013&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[35.8787,45.0348],[35.8787,45.6095],[36.9208,45.6095],[36.9208,45.0348],[35.8787,45.0348]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"RU","description":"Bridge and surrounding after completion in April 2018 (true color)","end_date":"2018-04-29","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R021_N44_20180429T082601","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Kerch Strait 2018","start_date":"2018-04-29","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20180429T082601&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[53.1802,67.5344],[53.1821,68.414],[54.2107,69.3367],[55.3584,70.2786],[59.004,70.2786],[60.6947,69.977],[61.9837,69.7161],[61.9823,68.9395],[59.9153,67.5344],[53.1802,67.5344]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"RU","description":"Sentinel-2 image of the Pechora Sea coast in autumn 2016 (true color)","end_date":"2016-09-30","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R078_N68_20160930T081002","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Pechora Sea Coast","start_date":"2016-09-30","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N68_20160930T081002&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[78.45886,80.72643],[78.45886,80.9099],[80.48892,80.9099],[80.48892,80.72643],[78.45886,80.72643]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"RU","description":"Up-to-date late summer imagery with few clouds (true color)","end_date":"2016-08-12","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R094_N79_20160812T105622","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Ushakov Island August 2016","start_date":"2016-08-12","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R094_N79_20160812T105622&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[37.7291,64.1971],[37.7291,65.1161],[37.8592,65.2705],[41.3223,65.2705],[41.3223,64.3142],[41.2114,64.1973],[37.7291,64.1971]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"RU","description":"Beaches, tidal flats and other costal forms (true color)","end_date":"2015-09-13","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-ndvina","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Northern Dvina delta at low tide","start_date":"2015-09-13","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=ndvina&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[59.19898,64.89205],[59.19898,66.91656],[60.73329,68.44289],[67.73295,68.44327],[67.73295,67.74883],[64.21647,64.91957],[59.19898,64.89205]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"RU","description":"Up-to-date late summer imagery with few clouds - caution: not all visible snow is glaciers (true color)","end_date":"2016-08-12","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-ural_s2_2016","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Northern and Polar Ural mountains August 2016","start_date":"2016-08-12","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=ural_s2_2016&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Lantmäteriet, CC0","url":"https://www.lantmateriet.se/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3006","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3021","EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3046","EPSG:3047","EPSG:4258","EPSG:4619","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835"],"country_code":"SE","description":"Mosaic of Swedish orthophotos from the period 1955–1965. Older and younger pictures may occur.","i18n":true,"icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png","id":"lantmateriet-orto1960","license_url":"https://www.lantmateriet.se/en/Kartor-och-geografisk-information/oppna-data/anvandarvillkor/","max_zoom":19,"min_zoom":5,"name":"Lantmäteriet Historic Orthophoto 1960","type":"wms","url":"https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.Histortho_60&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[17.85131,60.87407],[14.74558,60.53889],[11.60239,59.56416],[10.51799,58.66559],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Lantmäteriet, CC0","url":"https://www.lantmateriet.se/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3006","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3021","EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3046","EPSG:3047","EPSG:4258","EPSG:4619","EPSG:25832","EPSG:25833","EPSG:25834","EPSG:25835"],"country_code":"SE","description":"Mosaic of Swedish orthophotos from the period 1970–1980. Is under construction.","i18n":true,"icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png","id":"lantmateriet-orto1975","license_url":"https://www.lantmateriet.se/en/Kartor-och-geografisk-information/oppna-data/anvandarvillkor/","max_zoom":19,"min_zoom":5,"name":"Lantmäteriet Historic Orthophoto 1975","type":"wms","url":"https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.Histortho_75&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[23.87328,65.21069],[30.14647,65.19226],[30.19042,67.62596],[29.43236,69.62651],[27.93822,70.14037],[20.73119,69.2756],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"text":"© Skoterleder.org","url":"https://skoterleder.org/"},"country_code":"SE","description":"Snowmobile trails","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Sweden_road_sign_D9.svg/200px-Sweden_road_sign_D9.svg.png","id":"skoterleder","max_zoom":14,"min_zoom":5,"name":"Snowmobile map Sweden","type":"tms","url":"https://tiles.skoterleder.org/tiles/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[10.8078,58.34266],[13.0258,58.34266],[13.0258,57.0896],[11.70328,57.0896],[10.8078,58.34266]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Gothenburg municipality, CC0","url":"https://catalog.goteborg.se/catalog/6/datasets/718"},"available_projections":["EPSG:3006","EPSG:3007","EPSG:3857"],"country_code":"SE","description":"The city map is an overview map that describes Gothenburg. It contains general information about land, communications, hydrography, buildings, address numbers and street names, administrative division and other orientation text.","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png","id":"gothenburg-citymap","license_url":"https://catalog.goteborg.se/catalog/6/datasets/718","max_zoom":21,"min_zoom":5,"name":"Gothenburg City map","privacy_policy_url":"https://goteborg.se/wps/portal/start/kommun-o-politik/beslut-insyn-och-rattskerhet/sa-har-behandlar-kommunen-dina-personuppgifter/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziTYzcDQy9TAy9LVyDXA0CLcJ8A70sDQ3cLcz1wwkpiAJKG-AAjgb6BbmhigA2cFOY/dz/d5/L2dBISEvZ0FBIS9nQSEh/#collapse-012212692658198088","type":"wms","url":"https://opengeodata.goteborg.se/services/stadskarta.wms.v4/ows?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=stadskarta&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[11.71898,57.54716],[12.01767,57.56411],[11.95862,57.66818],[12.09595,57.68177],[12.06574,57.73166],[12.1138,57.77086],[12.24289,57.79466],[12.16187,57.86704],[11.95519,57.86631],[11.68534,57.72396],[11.71898,57.54716]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Gothenburg municipality, CC0","url":"https://catalog.goteborg.se/catalog/6/datasets/892"},"available_projections":["EPSG:3006","EPSG:3007","EPSG:3857"],"best":true,"category":"photo","country_code":"SE","description":"Orthophoto for Gothenburg municipality","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png","id":"gothenburg-ortho","license_url":"https://catalog.goteborg.se/catalog/6/datasets/892","max_zoom":20,"min_zoom":6,"name":"Gothenburg Orthophoto","privacy_policy_url":"https://goteborg.se/wps/portal/start/kommun-o-politik/beslut-insyn-och-rattskerhet/sa-har-behandlar-kommunen-dina-personuppgifter/","type":"wms","url":"https://opengeodata.goteborg.se/services/ortofoto.wms.v1/ows?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.74345,55.94997],[12.93777,55.90804],[13.00369,55.96842],[12.79083,56.25022],[12.56698,56.1356],[12.74345,55.94997]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Helsingborg municipality","url":"https://helsingborg.opendatasoft.com/"},"best":true,"country_code":"SE","description":"Orthophotos from the municipality of Helsingborg 2016, public domain","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Helsingborg_vapen.svg/198px-Helsingborg_vapen.svg.png","id":"helsingborg-orto","license_url":"https://helsingborg.opendatasoft.com/explore/dataset/flygbilder/information/","max_zoom":20,"min_zoom":5,"name":"Helsingborg Orthophoto","type":"tms","url":"https://mapproxy.openstreetmap.se/tiles/1.0.0/hborg2016_EPSG3857/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.28473,56.70827],[16.38856,56.70798],[16.40843,56.7615],[16.46269,56.75672],[16.47753,56.76023],[16.48815,56.77023],[16.48754,56.79231],[16.48254,56.79547],[16.47667,56.8223],[16.4687,56.82614],[16.48584,56.86271],[16.48809,56.87369],[16.45694,56.87786],[16.46288,56.88769],[16.42696,56.88757],[16.39809,56.89604],[16.36791,56.8952],[16.36717,56.85985],[16.36431,56.84636],[16.36001,56.83657],[16.34423,56.82532],[16.32675,56.79284],[16.26114,56.74422],[16.28473,56.70827]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Kalmar municipality","url":"http://data-kalmar.opendata.arcgis.com/"},"available_projections":["EPSG:3011","EPSG:4326"],"best":true,"country_code":"SE","description":"Orthophotos for the north coast of the municipality of Kalmar 2014","end_date":"2014","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png","id":"kalmar-orto-2014","license_url":"https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/se/Kalmar_permission.pdf","max_zoom":22,"min_zoom":9,"name":"Kalmar North Orthophoto 2014","start_date":"2014","type":"wms","url":"https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2014/ImageServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.156,56.45834],[16.11389,56.46083],[16.09246,56.46633],[16.0724,56.4662],[16.07126,56.51153],[16.08516,56.56847],[16.14417,56.63933],[16.21168,56.68491],[16.28412,56.71655],[16.25135,56.74358],[16.25045,56.75062],[16.29558,56.7512],[16.33516,56.72511],[16.38922,56.71885],[16.41137,56.67602],[16.4053,56.66294],[16.33101,56.625],[16.28048,56.613],[16.21561,56.51967],[16.156,56.45834]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Kalmar municipality","url":"http://data-kalmar.opendata.arcgis.com/"},"available_projections":["EPSG:3010","EPSG:4326"],"best":true,"country_code":"SE","description":"Orthophotos for the south coast of the municipality of Kalmar 2016","end_date":"2016","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png","id":"kalmar-orto-2016","license_url":"https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/se/Kalmar_permission.pdf","max_zoom":22,"min_zoom":9,"name":"Kalmar South Orthophoto 2016","start_date":"2016","type":"wms","url":"https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2016/ImageServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[16.3416,56.81756],[16.32773,56.7973],[16.36692,56.78706],[16.37105,56.79153],[16.36978,56.80511],[16.35645,56.8133],[16.3416,56.81756]],[[16.39207,56.79339],[16.4608,56.78944],[16.48817,56.79067],[16.4833,56.76986],[16.46612,56.76711],[16.45409,56.76774],[16.43173,56.77309],[16.43178,56.77663],[16.40554,56.77214],[16.39325,56.77349],[16.39207,56.79339]],[[16.29836,56.79102],[16.28796,56.7883],[16.27727,56.78367],[16.27623,56.77952],[16.2862,56.7761],[16.3108,56.77696],[16.3118,56.78086],[16.30364,56.78883],[16.29836,56.79102]],[[16.20686,56.63637],[16.22098,56.62389],[16.2453,56.62467],[16.26751,56.62951],[16.28724,56.63831],[16.37871,56.65462],[16.38806,56.6897],[16.38664,56.72867],[16.31586,56.72879],[16.29956,56.7219],[16.29331,56.70021],[16.26799,56.66889],[16.23945,56.66991],[16.2266,56.6624],[16.21411,56.64972],[16.20686,56.63637]],[[16.15172,56.67843],[16.15712,56.69334],[16.15268,56.70297],[16.13274,56.71254],[16.10987,56.71964],[16.08638,56.7112],[16.07969,56.70056],[16.08149,56.69566],[16.09534,56.69599],[16.12877,56.67766],[16.15172,56.67843]],[[15.97369,56.62759],[16.00164,56.63215],[16.04126,56.62999],[16.05658,56.62489],[16.06201,56.61794],[16.09186,56.60378],[16.10527,56.5926],[16.09581,56.58161],[16.03481,56.60405],[16.0305,56.61252],[16.0088,56.60223],[15.98755,56.59742],[15.98449,56.57141],[15.94887,56.57264],[15.91878,56.55184],[15.90892,56.55393],[15.89921,56.56867],[15.9188,56.57287],[15.94612,56.57491],[15.96371,56.59004],[15.9496,56.59724],[15.94308,56.60903],[15.95726,56.61598],[15.97589,56.62005],[15.97369,56.62759]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Kalmar municipality","url":"http://data-kalmar.opendata.arcgis.com/"},"available_projections":["EPSG:3010","EPSG:4326"],"best":true,"country_code":"SE","description":"Orthophotos for urban areas of the municipality of Kalmar 2018","end_date":"2018","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png","id":"kalmar-orto-2018","license_url":"https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/se/Kalmar_permission.pdf","max_zoom":22,"min_zoom":9,"name":"Kalmar Urban Orthophoto 2018","start_date":"2018","type":"wms","url":"https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2018/ImageServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.71117,55.2666],[14.38109,55.29163],[19.65453,57.24934],[19.85228,59.75087],[17.77587,61.13794],[18.06151,62.27815],[20.97289,63.5779],[24.35668,65.60842],[23.96117,66.79191],[20.61034,66.45189],[17.13866,63.96632],[11.99706,61.03702],[12.29369,60.31607],[10.70067,58.81375],[12.71117,55.2666]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Lantmäteriet","url":"https://www.lantmateriet.se"},"country_code":"SE","description":"Scan of \"Economic maps\" ca. 1950–1980","i18n":true,"icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png","id":"osmse-ekonomiska","license_url":"https://www.lantmateriet.se/en/Kartor-och-geografisk-information/oppna-data/anvandarvillkor/","max_zoom":17,"min_zoom":3,"name":"Lantmäteriet Economic Map 1950–1980","type":"tms","url":"https://mapproxy.openstreetmap.se/tms/1.0.0/ek_EPSG3857/{zoom}/{x}/{-y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Lantmäteriet, CC0","url":"https://www.lantmateriet.se/"},"country_code":"SE","description":"Topographic map of Sweden 1:50 000","i18n":true,"icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png","id":"lantmateriet-topowebb","license_url":"https://www.lantmateriet.se/en/Kartor-och-geografisk-information/oppna-data/anvandarvillkor/","max_zoom":15,"min_zoom":3,"name":"Lantmäteriet Topographic Map","type":"tms","url":"https://api.lantmateriet.se/open/topowebb-ccby/v1/wmts/token/9b342b7d9f12d4ddb92277be9869d860/1.0.0/topowebb/default/3857/{zoom}/{y}/{x}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.36884,58.6305],[15.41279,58.65623],[15.46635,58.6339],[15.54291,58.64408],[15.54119,58.60672],[15.58376,58.6414],[15.7592,58.55267],[15.76675,58.52006],[15.91438,58.51755],[16.08089,58.37148],[15.82718,58.30588],[15.84915,58.21449],[15.65861,58.15513],[15.56763,58.19134],[15.55939,58.14661],[15.50171,58.07679],[15.37777,58.05881],[15.28713,58.1031],[15.27203,58.13483],[15.35889,58.16455],[15.32387,58.38012],[15.24971,58.40027],[15.3582,58.47288],[15.36884,58.6305]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Linköping municipality","url":"https://www.linkoping.se/open/"},"available_projections":["EPSG:3857","EPSG:3009"],"best":true,"country_code":"SE","description":"Orthophotos from the municipality of Linköping 2010, open data","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Linköping_vapen.svg/198px-Linköping_vapen.svg.png","id":"linkoping-orto","license_url":"https://github.com/osmlab/editor-layer-index/blob/gh-pages/sources/europe/se/linkoping_permission.pdf","max_zoom":20,"min_zoom":13,"name":"Linköping Orthophoto","type":"wms","url":"http://kartan.linkoping.se/wms?servicename=wms_ortofoto&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Kommun_2010_25cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[17.8755,59.2625],[17.94411,59.27307],[18.09551,59.22603],[18.19582,59.22786],[18.20297,59.24886],[18.12538,59.30779],[18.1786,59.32566],[18.09876,59.3721],[18.04264,59.37816],[18.00796,59.34334],[17.93655,59.37641],[17.97483,59.40246],[17.90882,59.4417],[17.8854,59.43792],[17.88918,59.41382],[17.84077,59.38568],[17.81708,59.40054],[17.77725,59.39984],[17.75622,59.3916],[17.79899,59.36204],[17.94993,59.31121],[17.85622,59.28412],[17.8755,59.2625]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Stockholm municipality, CC0","url":"https://dataportalen.stockholm.se/dataportalen/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:25832","EPSG:25833","EPSG:25835","EPSG:25884","EPSG:3006","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3044","EPSG:3152","EPSG:32632","EPSG:32633","EPSG:5850","EPSG:5973","EPSG:5975"],"best":true,"country_code":"SE","description":"Orthophotos from the municipality of Stockholm 2016, CC0 license","i18n":true,"icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Stockholm_vapen_bra.svg/196px-Stockholm_vapen_bra.svg.png","id":"stockholm-orto","license_url":"https://dataportalen.stockholm.se/dataportalen/GetMetaDataById?id=6841c003-2363-4b74-92b9-2509f75fd312","max_zoom":21,"min_zoom":5,"name":"Stockholm Orthophoto","type":"wms","url":"https://openmap.stockholm.se/bios/wms/app/baggis/web/WMS_STHLM_ORTOFOTO_2016?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=p_1002630&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Trafikverket, CC0","url":"https://www.trafikverket.se"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3006","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3046","EPSG:3047","EPSG:4258","EPSG:4619"],"country_code":"SE","description":"Swedish railway network, including sidings","i18n":true,"icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","id":"trafikverket-baninfo","license_url":"https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667","max_zoom":20,"min_zoom":7,"name":"Trafikverket Railway Network","overlay":true,"type":"wms","url":"https://geo-baninfo.trafikverket.se/mapservice/wms.axd/BanInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Spar_Huvud_och_sidospar&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Trafikverket, CC0","url":"https://www.trafikverket.se"},"country_code":"SE","description":"Swedish railway network with several options for map layers","i18n":true,"icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","id":"trafikverket-baninfo-option","license_url":"https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667","max_zoom":20,"min_zoom":7,"name":"Trafikverket Railway Network options","overlay":true,"type":"wms_endpoint","url":"https://geo-baninfo.trafikverket.se/mapservice/wms.axd/BanInfo?service=wms&request=getCapabilities"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Trafikverket, CC0","url":"https://www.trafikverket.se"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3006","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3046","EPSG:3047","EPSG:4258","EPSG:4619"],"country_code":"SE","description":"Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera","i18n":true,"icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","id":"trafikverket-vagnat-extra","license_url":"https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667","max_zoom":20,"min_zoom":3,"name":"Trafikverket Road Network extra","overlay":true,"type":"wms","url":"https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagnummer,Vaghinder,Rastplats,Rastficka,Hallplats,Farthinder,BroTunnel,ATK_Matplats&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Trafikverket, CC0","url":"https://www.trafikverket.se"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:3006","EPSG:3007","EPSG:3008","EPSG:3009","EPSG:3010","EPSG:3011","EPSG:3012","EPSG:3013","EPSG:3014","EPSG:3015","EPSG:3016","EPSG:3017","EPSG:3018","EPSG:3034","EPSG:3035","EPSG:3044","EPSG:3045","EPSG:3046","EPSG:3047","EPSG:4258","EPSG:4619"],"country_code":"SE","description":"Swedish NVDB road network","i18n":true,"icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","id":"trafikverket-vagnat","license_url":"https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667","max_zoom":20,"min_zoom":13,"name":"Trafikverket Road Network","overlay":true,"type":"wms","url":"https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagtrafiknat,Funkvagklass,Farjeled&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Trafikverket, CC0","url":"https://www.trafikverket.se"},"country_code":"SE","description":"Swedish NVDB road network with several options for map layers","i18n":true,"icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","id":"trafikverket-vagnat-option","license_url":"https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667","max_zoom":20,"min_zoom":3,"name":"Trafikverket Road Network options","overlay":true,"type":"wms_endpoint","url":"https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?service=wms&request=getCapabilities"},"type":"Feature"},{"geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Trafikverket, CC0","url":"https://www.trafikverket.se"},"country_code":"SE","description":"Swedish NVDB street names","i18n":true,"icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","id":"trafikverket-vagnat-navn","license_url":"https://api.trafikinfo.trafikverket.se/Content/ContentDetails/58e384810bb22118e8041667","max_zoom":19,"min_zoom":15,"name":"Trafikverket Street Names","overlay":true,"type":"tms","url":"https://mapproxy.openstreetmap.se/tiles/1.0.0/nvdb_names/EPSG3857/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).","url":"https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/"},"country_code":"SI","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png","id":"GURS-buildings","license_url":"https://wiki.openstreetmap.org/wiki/GURS","max_zoom":19,"min_zoom":8,"name":"GURS: Building outlines","overlay":true,"type":"tms","url":"https://wms.openstreetmap.de/tms/GURS-building-outlines/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).","url":"https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/"},"country_code":"SI","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png","id":"GURS-roads","license_url":"https://wiki.openstreetmap.org/wiki/GURS","max_zoom":19,"min_zoom":8,"name":"GURS: Road lines","overlay":true,"type":"tms","url":"https://wms.openstreetmap.de/tms/GURS-road-lines/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.","url":"https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ"},"country_code":"SI","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png","id":"RABA-KGZ-3000","license_url":"https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ#License","max_zoom":19,"min_zoom":8,"name":"RABA-KGZ: Slovenia built-up areas","permission_osm":"explicit","type":"tms","url":"https://wms.openstreetmap.de/tms/RABA3000/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.","url":"https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ"},"country_code":"SI","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png","id":"RABA-KGZ","license_url":"https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ#License","max_zoom":19,"min_zoom":8,"name":"RABA-KGZ: Slovenia farmland use","permission_osm":"explicit","type":"tms","url":"https://wms.openstreetmap.de/tms/RABA/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.66258,45.57393],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.50227,45.53338],[14.36774,45.4702],[14.33394,45.46206],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.98768,45.44408],[13.91892,45.43951],[13.88867,45.416],[13.81063,45.42531],[13.76403,45.45271],[13.67553,45.43241],[13.57898,45.46183],[13.54054,45.53059],[13.61345,45.54452],[13.71618,45.55473],[13.72281,45.56958],[13.69431,45.58953],[13.69763,45.59973],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.73292,45.75707],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56428,45.86095],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.57859,46.48947],[16.64289,46.48765],[16.64189,46.45889],[16.49276,46.46071],[16.49143,46.48673],[16.40593,46.48856],[16.40626,46.51525],[16.32407,46.51616],[16.32274,46.49084],[16.2582,46.489],[16.28533,46.42441],[16.29755,46.41161],[16.3476,46.41024],[16.34627,46.35468],[16.16698,46.35514],[16.09937,46.35605],[16.07551,46.33684],[16.04058,46.32708],[16.01819,46.29964],[15.89754,46.27342],[15.87799,46.25165],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.73184,46.03213],[15.72802,45.98275],[15.71791,45.97827],[15.71645,45.9178],[15.69803,45.91005],[15.69737,45.8766],[15.7272,45.87591],[15.72554,45.82097],[15.64036,45.81635],[15.58071,45.84199],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.30332,45.74794],[15.29139,45.73452],[15.29371,45.71833],[15.36032,45.71856],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.31145,45.5423],[15.39644,45.48763],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"CC-BY Geodetska uprava Republike Slovenije, DOF025, 2017-2019; Level2.si 2020","url":"https://level2.si/sl/pogoji-uporabe-spletnih-servisov/"},"best":true,"country_code":"SI","description":"Slovenia orthophoto 25cm/pixel (GURS DOF050), hosted by Level2.si","end_date":"2019","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/level2.png","id":"GURS-DOF025","license_url":"https://wiki.openstreetmap.org/wiki/GURS","max_zoom":20,"min_zoom":8,"name":"GURS: Slovenia orthophoto 25cm (DOF025)","overlay":false,"privacy_policy_url":"https://level2.si/sl/pogoji-uporabe-spletnih-servisov/","start_date":"2017","type":"tms","url":"https://gis.level2.si/geoserver/gwc/service/tms/1.0.0/level2%3ADOF025_latest@EPSG%3A3857@jpeg/{zoom}/{x}/{-y}.jpeg","valid-georeference":true},"type":"Feature"},{"geometry":{"coordinates":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Map © Freemap Slovakia, data © OpenStreetMap contributors","url":"https://www.freemap.sk/?layers=A"},"country_code":"SK","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png","id":"Freemap.sk-Car","max_zoom":16,"min_zoom":8,"name":"Freemap.sk Car","type":"tms","url":"https://tile.freemap.sk/A/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","url":"https://www.freemap.sk/?layers=C"},"country_code":"SK","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png","id":"Freemap.sk-Cyclo","max_zoom":16,"min_zoom":8,"name":"Freemap.sk Bicycle","type":"tms","url":"https://tile.freemap.sk/C/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","url":"https://www.freemap.sk/?layers=T"},"country_code":"SK","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png","id":"Freemap.sk-Hiking","max_zoom":16,"min_zoom":8,"name":"Freemap.sk Hiking","type":"tms","url":"https://tile.freemap.sk/T/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","url":"https://www.freemap.sk/?layers=K"},"country_code":"SK","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png","id":"Freemap.sk-Ski","max_zoom":16,"min_zoom":8,"name":"Freemap.sk Ski","type":"tms","url":"https://tile.freemap.sk/K/{zoom}/{x}/{y}.jpeg"},"type":"Feature"},{"geometry":{"coordinates":[[[16.81969,47.49272],[16.81969,49.50303],[22.83883,49.50303],[22.83883,47.49272],[16.81969,47.49272]]],"type":"Polygon"},"properties":{"country_code":"SK","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png","id":"Slovakia-Historic-Maps","max_zoom":12,"name":"Slovakia Historic Maps","type":"tms","url":"https://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[30.30752,50.57184],[30.33155,50.57402],[30.37687,50.57925],[30.42288,50.58143],[30.4318,50.58579],[30.44416,50.58797],[30.45515,50.58754],[30.46545,50.58449],[30.46819,50.57751],[30.49085,50.57489],[30.51351,50.57489],[30.52519,50.57402],[30.55608,50.55221],[30.58424,50.53869],[30.5966,50.53781],[30.60896,50.5365],[30.64329,50.5352],[30.65496,50.53563],[30.65496,50.54305],[30.66045,50.54916],[30.66801,50.55439],[30.67762,50.55876],[30.68792,50.56137],[30.70783,50.55614],[30.71127,50.56356],[30.71127,50.57838],[30.72157,50.58231],[30.71882,50.58972],[30.72981,50.59103],[30.74011,50.58841],[30.76208,50.58536],[30.77306,50.58274],[30.78336,50.57795],[30.80259,50.57141],[30.81014,50.56617],[30.82182,50.55439],[30.82525,50.53956],[30.81701,50.53432],[30.79504,50.52909],[30.78474,50.52559],[30.76276,50.51992],[30.76208,50.5125],[30.75315,50.50769],[30.74354,50.50376],[30.73805,50.49721],[30.74629,50.49197],[30.75521,50.48847],[30.74835,50.48236],[30.75178,50.47537],[30.75315,50.46794],[30.74835,50.46138],[30.75178,50.45439],[30.78886,50.43646],[30.7971,50.43165],[30.80328,50.41765],[30.8225,50.40846],[30.82044,50.40102],[30.82319,50.39358],[30.81289,50.39095],[30.80122,50.39139],[30.78954,50.39314],[30.77787,50.3927],[30.77856,50.3857],[30.77169,50.38001],[30.76208,50.37519],[30.75109,50.37256],[30.73873,50.37256],[30.72775,50.37475],[30.71813,50.37957],[30.71539,50.36512],[30.71127,50.35855],[30.70577,50.35241],[30.69753,50.34716],[30.68586,50.34453],[30.65084,50.34058],[30.63848,50.34014],[30.62681,50.33795],[30.62887,50.3305],[30.64947,50.29279],[30.66663,50.28314],[30.67144,50.27656],[30.6632,50.27085],[30.65153,50.26997],[30.64535,50.27612],[30.63368,50.27787],[30.62132,50.27656],[30.61857,50.2691],[30.62956,50.25637],[30.6378,50.25154],[30.64535,50.23792],[30.64398,50.2309],[30.63917,50.22387],[30.62956,50.21992],[30.6069,50.2164],[30.59591,50.2186],[30.59042,50.23353],[30.5863,50.241],[30.57531,50.25505],[30.56501,50.25944],[30.5657,50.2669],[30.56432,50.29718],[30.56638,50.30463],[30.5657,50.31209],[30.55677,50.31691],[30.54441,50.31735],[30.52587,50.32699],[30.51489,50.3305],[30.50253,50.33182],[30.48055,50.33664],[30.47163,50.34146],[30.46957,50.34935],[30.47025,50.35679],[30.46201,50.36205],[30.4524,50.35679],[30.44004,50.35548],[30.43661,50.36512],[30.43111,50.37212],[30.43661,50.37826],[30.43455,50.3857],[30.40914,50.39883],[30.39678,50.40014],[30.3906,50.40671],[30.37069,50.41546],[30.36314,50.42159],[30.3597,50.42902],[30.3597,50.43646],[30.35696,50.44389],[30.3446,50.44477],[30.32056,50.44258],[30.29585,50.44477],[30.28349,50.44477],[30.27799,50.43864],[30.27525,50.43165],[30.26563,50.42771],[30.25396,50.42902],[30.24572,50.42377],[30.23542,50.42771],[30.2416,50.43427],[30.2416,50.44214],[30.23679,50.4487],[30.23885,50.45613],[30.24297,50.46313],[30.24915,50.46968],[30.25671,50.47493],[30.26083,50.48192],[30.26563,50.48847],[30.26907,50.49983],[30.26151,50.50595],[30.26357,50.51381],[30.26975,50.51992],[30.28898,50.52821],[30.29722,50.53345],[30.30271,50.54],[30.30203,50.54741],[30.30477,50.55483],[30.32743,50.55221],[30.33086,50.55919],[30.32262,50.56486],[30.31233,50.56835],[30.30752,50.57184]]],"type":"Polygon"},"properties":{"country_code":"UA","description":"Works only from within Ukraine or with an Ukrainian proxy server.","end_date":"2014","id":"UkraineKyiv2014DZK","max_zoom":16,"name":"Ukraine - Kyiv 2014 (DZK)","start_date":"2014","type":"tms","url":"https://map.land.gov.ua/map/ortho_kiev/{zoom}/{x}/{-y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[31.88301,47.01397],[31.87752,46.97838],[31.91391,46.98447],[31.91666,46.97932],[31.89468,46.95823],[31.8782,46.95026],[31.88988,46.93339],[31.90018,46.92307],[31.93176,46.91697],[31.9558,46.91228],[31.98257,46.90665],[31.99699,46.90008],[31.98532,46.87568],[31.9558,46.85127],[31.93108,46.83389],[31.91391,46.81792],[31.9455,46.81275],[32.00661,46.81322],[32.04025,46.83812],[32.08214,46.87662],[32.11235,46.90478],[32.12814,46.92917],[32.13844,46.95167],[32.13776,46.97744],[32.11647,46.99384],[32.04918,47.01163],[32.02446,47.02614],[32.03476,47.02848],[32.03957,47.03831],[32.03064,47.05328],[31.96404,47.04533],[31.88301,47.01397]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Map data: © Геоінформаційна система містобудівного кадастру Миколаївської міської ради"},"best":true,"category":"photo","country_code":"UA","end_date":"2018","icon":"https://mkrada.gov.ua/favicon.ico","id":"UkraineMykolaiv2018","license_url":"https://zakon.rada.gov.ua/laws/show/2939-17","max_zoom":21,"min_zoom":11,"name":"Ukraine - Mykolaiv 2018","permission_osm":"implicit","privacy_policy_url":"https://mbk.mkrada.gov.ua/ugoda-koristuvacha","start_date":"2018","type":"tms","url":"http://mbk.mkrada.gov.ua/map/rtile/carto_2013928517078615452/ua/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[23.6193,51.65491],[24.09803,51.64047],[24.39723,51.89353],[25.19178,51.95913],[26.12263,51.92224],[26.49829,51.80933],[27.09005,51.77026],[27.62861,51.62603],[28.02422,51.59093],[28.28021,51.68172],[28.37662,51.5806],[28.82542,51.5682],[29.19111,51.64253],[29.41718,51.4399],[29.67316,51.51238],[29.82276,51.47512],[30.21837,51.50824],[30.54417,51.30709],[30.63726,51.38599],[30.51425,51.63634],[30.983,52.09005],[31.2822,52.07984],[31.48832,52.13497],[32.11,52.05531],[32.31279,52.11864],[32.43912,52.32434],[32.93114,52.28368],[33.29683,52.39337],[33.75561,52.35277],[34.35734,51.78055],[34.14457,51.76409],[34.05813,51.67965],[34.22103,51.47098],[34.25095,51.30085],[34.7197,51.19056],[35.11199,51.21139],[35.1818,51.08626],[35.38792,51.03402],[35.40787,50.62878],[35.62063,50.38563],[36.06944,50.4513],[36.21571,50.41106],[36.31212,50.28802],[36.4717,50.32624],[36.59138,50.2519],[37.46571,50.45977],[37.735,50.11353],[38.05747,49.9384],[38.19377,49.95765],[38.19045,50.07514],[38.35002,50.08154],[38.41651,49.98972],[38.73899,49.97476],[39.00827,49.83344],[39.14457,49.89987],[39.27755,49.78195],[39.54018,49.74544],[39.79949,49.58406],[40.18845,49.6013],[40.0588,49.50424],[40.20508,49.24666],[39.93247,49.06185],[39.71638,49.01608],[40.08872,48.85448],[39.79617,48.78443],[39.69311,48.65283],[39.86266,48.5693],[39.99231,48.31348],[39.83274,47.92287],[39.74297,47.83144],[39.57675,47.81135],[38.86532,47.85153],[38.77555,47.68618],[38.38327,47.60106],[38.30348,47.52704],[38.30016,47.23891],[38.13393,47.05577],[37.5455,47.05124],[37.31279,46.87654],[37.20973,46.92651],[36.96039,46.83107],[36.7443,46.61685],[36.72436,46.7719],[36.4451,46.72407],[36.10601,46.4728],[36.20574,46.66022],[35.92316,46.64424],[35.43114,46.39948],[35.10202,45.97138],[35.0455,45.75145],[35.47436,45.33],[35.86,45.53297],[35.9963,45.43274],[36.11598,45.51899],[36.66452,45.4514],[36.65454,45.34168],[36.50494,45.31363],[36.47502,45.24111],[36.48832,45.04884],[35.81013,44.98539],[35.5076,45.11222],[35.42782,44.93364],[35.12196,44.76394],[34.67649,44.75686],[33.985,44.37078],[33.68912,44.38504],[33.38327,44.50608],[33.35002,44.589],[33.55282,44.93128],[33.42981,45.1263],[33.19377,45.14271],[32.83141,45.33935],[32.60534,45.30896],[32.44577,45.3557],[32.50893,45.47005],[32.87795,45.68181],[33.57941,45.90665],[33.58938,46.02681],[33.25694,46.07065],[33.02422,45.97138],[31.61133,46.19506],[31.27555,46.61457],[30.87662,46.56887],[30.43446,45.98756],[29.69643,45.55159],[29.79284,45.46306],[29.73965,45.15913],[29.47369,45.41407],[29.18114,45.38373],[28.74896,45.22004],[28.56611,45.23409],[28.29018,45.33],[28.23367,45.49103],[28.31678,45.56789],[28.483,45.54228],[28.47303,45.73753],[28.95175,46.03143],[29.02489,46.18125],[28.9318,46.49569],[29.18779,46.57116],[29.59337,46.45448],[29.81944,46.46593],[29.95574,46.68759],[29.8959,46.8197],[29.56013,46.96963],[29.54683,47.29982],[29.14789,47.50234],[29.23101,47.77562],[29.17117,47.934],[28.86864,47.99411],[28.63593,48.16513],[28.44311,48.06525],[28.36332,48.17178],[28.25694,48.15404],[27.735,48.43494],[27.55547,48.45258],[26.92383,48.34884],[26.36532,48.17178],[26.1193,47.97408],[25.3846,47.91618],[24.91585,47.70408],[24.52024,47.94291],[24.18446,47.90058],[23.58274,48.00523],[23.43646,47.96963],[23.15388,48.10522],[23.07077,47.98743],[22.858,47.9585],[22.76824,48.09856],[22.58539,48.103],[22.51558,48.2161],[22.11332,48.4217],[22.49896,49.06621],[22.58872,49.11193],[22.87795,49.04006],[22.7217,49.18151],[22.71837,49.64652],[23.24364,50.105],[24.04484,50.49785],[24.05813,50.68779],[23.9451,50.81399],[24.10135,50.85388],[23.62928,51.29462],[23.6193,51.65491]]],"type":"Polygon"},"properties":{"country_code":"UA","description":"Works only from within Ukraine or with an Ukrainian proxy server.","end_date":"2012","id":"Ukraine-orto10000-2012","max_zoom":16,"name":"Ukraine - Orthophotomaps 2012","start_date":"2012","type":"tms","url":"http://212.26.144.110/tile2/orto_10000/{zoom}/{x}/{-y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[28.46755,49.28259],[28.34945,49.2278],[28.38189,49.19354],[28.51587,49.18198],[28.57965,49.22511],[28.57853,49.25867],[28.54136,49.2818],[28.46755,49.28259]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Вінницька міська рада","url":"https://www.vmr.gov.ua/"},"best":true,"category":"photo","country_code":"UA","end_date":"2018-10","icon":"https://www.vmr.gov.ua/_catalogs/masterpage/images/favicon.ico","id":"UkraineVinnytsia2018","license_url":"https://zakon.rada.gov.ua/laws/show/2939-17","max_zoom":20,"min_zoom":14,"name":"Ukraine - Vinnytsia 2018","permission_osm":"implicit","privacy_policy_url":"https://zakon.rada.gov.ua/laws/show/3792-12","start_date":"2018-10","type":"tms","url":"https://gisapi.vmr.gov.ua/OpenData/ofp/2018-10/GoogleMapsCompatible/{zoom}/{y}/{x}.png?ver=22102018"},"type":"Feature"},{"geometry":{"coordinates":[[[3.24653,-54.47047],[3.24653,-54.37539],[3.46385,-54.37539],[3.46385,-54.47047],[3.24653,-54.47047]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"best":true,"country_code":"BV","description":"For more accurate coastline and glacier mapping (true color)","end_date":"2013-10-18","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81800982013291LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Bouvet Island","start_date":"2013-10-18","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81800982013291LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:3857","EPSG:2019","EPSG:2294","EPSG:2295","EPSG:2952","EPSG:3395","EPSG:3400","EPSG:3401","EPSG:3571","EPSG:3572","EPSG:3573","EPSG:3574","EPSG:3575","EPSG:3576","EPSG:3578","EPSG:3579","EPSG:3799","EPSG:3978","EPSG:3979","EPSG:26907","EPSG:26908","EPSG:26909","EPSG:26910","EPSG:26911","EPSG:26912","EPSG:26913","EPSG:26914","EPSG:26915","EPSG:26916","EPSG:26917","EPSG:26918","EPSG:26919","EPSG:26920","EPSG:26921","EPSG:26922","EPSG:32181","EPSG:32182","EPSG:32183","EPSG:32184","EPSG:32185","EPSG:32186","EPSG:32187","EPSG:32188","EPSG:32189","EPSG:32190","EPSG:32191","EPSG:32192","EPSG:32193","EPSG:32194","EPSG:32195","EPSG:32196","EPSG:32197","EPSG:32198"],"country_code":"CA","id":"Canvec_French","name":"Canvec - French","type":"wms","url":"https://maps.geogratis.gc.ca/wms/canvec_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=canvec&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:3857","EPSG:2019","EPSG:2294","EPSG:2295","EPSG:2952","EPSG:3395","EPSG:3400","EPSG:3401","EPSG:3571","EPSG:3572","EPSG:3573","EPSG:3574","EPSG:3575","EPSG:3576","EPSG:3578","EPSG:3579","EPSG:3799","EPSG:3978","EPSG:3979","EPSG:26907","EPSG:26908","EPSG:26909","EPSG:26910","EPSG:26911","EPSG:26912","EPSG:26913","EPSG:26914","EPSG:26915","EPSG:26916","EPSG:26917","EPSG:26918","EPSG:26919","EPSG:26920","EPSG:26921","EPSG:26922","EPSG:32181","EPSG:32182","EPSG:32183","EPSG:32184","EPSG:32185","EPSG:32186","EPSG:32187","EPSG:32188","EPSG:32189","EPSG:32190","EPSG:32191","EPSG:32192","EPSG:32193","EPSG:32194","EPSG:32195","EPSG:32196","EPSG:32197","EPSG:32198"],"country_code":"CA","id":"Canvec","name":"Canvec - English","type":"wms","url":"https://maps.geogratis.gc.ca/wms/canvec_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=canvec&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:3857","EPSG:2019","EPSG:2294","EPSG:2295","EPSG:2952","EPSG:3395","EPSG:3400","EPSG:3401","EPSG:3571","EPSG:3572","EPSG:3573","EPSG:3574","EPSG:3575","EPSG:3576","EPSG:3578","EPSG:3579","EPSG:3799","EPSG:3978","EPSG:3979","EPSG:26907","EPSG:26908","EPSG:26909","EPSG:26910","EPSG:26911","EPSG:26912","EPSG:26913","EPSG:26914","EPSG:26915","EPSG:26916","EPSG:26917","EPSG:26918","EPSG:26919","EPSG:26920","EPSG:26921","EPSG:26922","EPSG:32181","EPSG:32182","EPSG:32183","EPSG:32184","EPSG:32185","EPSG:32186","EPSG:32187","EPSG:32188","EPSG:32189","EPSG:32190","EPSG:32191","EPSG:32192","EPSG:32193","EPSG:32194","EPSG:32195","EPSG:32196","EPSG:32197","EPSG:32198"],"country_code":"CA","id":"Geobase_Hydrography_French","name":"Geobase Hydrography - French","overlay":true,"type":"wms","url":"https://maps.geogratis.gc.ca/wms/hydro_network_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:3857","EPSG:2019","EPSG:2294","EPSG:2295","EPSG:2952","EPSG:3395","EPSG:3400","EPSG:3401","EPSG:3571","EPSG:3572","EPSG:3573","EPSG:3574","EPSG:3575","EPSG:3576","EPSG:3578","EPSG:3579","EPSG:3799","EPSG:3978","EPSG:3979","EPSG:26907","EPSG:26908","EPSG:26909","EPSG:26910","EPSG:26911","EPSG:26912","EPSG:26913","EPSG:26914","EPSG:26915","EPSG:26916","EPSG:26917","EPSG:26918","EPSG:26919","EPSG:26920","EPSG:26921","EPSG:26922","EPSG:32181","EPSG:32182","EPSG:32183","EPSG:32184","EPSG:32185","EPSG:32186","EPSG:32187","EPSG:32188","EPSG:32189","EPSG:32190","EPSG:32191","EPSG:32192","EPSG:32193","EPSG:32194","EPSG:32195","EPSG:32196","EPSG:32197","EPSG:32198"],"country_code":"CA","id":"Geobase_Hydrography","name":"Geobase Hydrography - English","overlay":true,"type":"wms","url":"https://maps.geogratis.gc.ca/wms/hydro_network_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:3857","EPSG:2019","EPSG:2294","EPSG:2295","EPSG:2952","EPSG:3395","EPSG:3400","EPSG:3401","EPSG:3571","EPSG:3572","EPSG:3573","EPSG:3574","EPSG:3575","EPSG:3576","EPSG:3578","EPSG:3579","EPSG:3799","EPSG:3978","EPSG:3979","EPSG:26907","EPSG:26908","EPSG:26909","EPSG:26910","EPSG:26911","EPSG:26912","EPSG:26913","EPSG:26914","EPSG:26915","EPSG:26916","EPSG:26917","EPSG:26918","EPSG:26919","EPSG:26920","EPSG:26921","EPSG:26922","EPSG:32181","EPSG:32182","EPSG:32183","EPSG:32184","EPSG:32185","EPSG:32186","EPSG:32187","EPSG:32188","EPSG:32189","EPSG:32190","EPSG:32191","EPSG:32192","EPSG:32193","EPSG:32194","EPSG:32195","EPSG:32196","EPSG:32197","EPSG:32198"],"country_code":"CA","id":"Geobase_Roads_French","max_zoom":20,"min_zoom":4,"name":"Geobase Roads - French","type":"wms","url":"https://cartes.geogratis.gc.ca/wms/roads_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=routes&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:3857","EPSG:2019","EPSG:2294","EPSG:2295","EPSG:2952","EPSG:3395","EPSG:3400","EPSG:3401","EPSG:3571","EPSG:3572","EPSG:3573","EPSG:3574","EPSG:3575","EPSG:3576","EPSG:3578","EPSG:3579","EPSG:3799","EPSG:3978","EPSG:3979","EPSG:26907","EPSG:26908","EPSG:26909","EPSG:26910","EPSG:26911","EPSG:26912","EPSG:26913","EPSG:26914","EPSG:26915","EPSG:26916","EPSG:26917","EPSG:26918","EPSG:26919","EPSG:26920","EPSG:26921","EPSG:26922","EPSG:32181","EPSG:32182","EPSG:32183","EPSG:32184","EPSG:32185","EPSG:32186","EPSG:32187","EPSG:32188","EPSG:32189","EPSG:32190","EPSG:32191","EPSG:32192","EPSG:32193","EPSG:32194","EPSG:32195","EPSG:32196","EPSG:32197","EPSG:32198"],"country_code":"CA","id":"Geobase_Roads","max_zoom":20,"min_zoom":4,"name":"Geobase Roads - English","type":"wms","url":"https://maps.geogratis.gc.ca/wms/roads_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=roads&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-84.34799,74.38946],[-84.34799,75.8903],[-79.14871,75.8903],[-79.14871,74.38946],[-84.34799,74.38946]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"CA","description":"Coastline mostly mapped meanwhile (false color IR)","end_date":"2014-09-02","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC80360072014245LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":11,"name":"imagico.de: Eastern Devon Island coast","start_date":"2014-09-02","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC80360072014245LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-81.62923,82.4597],[-83.03136,82.47986],[-83.03136,83.05876],[-72.80309,83.09567],[-65.65786,83.03232],[-65.81167,82.4597],[-81.62923,82.4597]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"CA","description":"Assembled from July 2012 ASTER imagery (true color with estimated blue)","end_date":"2012-07-09","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-nellesmere_ast","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":10,"name":"imagico.de: Northern Ellesmere Island","start_date":"2012-07-09","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-78.89729,82.17577],[-82.64501,82.19426],[-82.64501,83.08067],[-66.58986,83.08497],[-63.78011,82.98908],[-63.78011,82.72198],[-65.0092,82.17577],[-78.89729,82.17577]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"CA","description":"Assembled from July 2016 ASTER imagery (true color with estimated blue)","end_date":"2012-07-15","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-nellesmere_ast_2016","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":10,"name":"imagico.de: Northern Ellesmere Island July 2016","start_date":"2012-07-08","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast_2016&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-51.23857,68.79972],[-51.24334,68.85303],[-51.15167,68.85303],[-51.14038,68.80116],[-51.23857,68.79972]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Icebridge DMS image of the settlement - alignment might be poor","end_date":"2011-04-15","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-DMS_1142622_03746_20110415_17533956","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":15,"name":"imagico.de: Qasigiannguit","start_date":"2011-04-15","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=DMS_1142622_03746_20110415_17533956&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-68.93977,76.51133],[-68.93977,76.5499],[-68.76635,76.55176],[-68.50993,76.55176],[-68.50744,76.51612],[-68.67897,76.51194],[-68.93977,76.51133]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Icebridge DMS image - alignment might be poor","end_date":"2011-05-07","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":15,"name":"imagico.de: Thule Air Base","start_date":"2011-05-07","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=DMS_1142636_160xx_20110507_1822xxxx&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-50.6992,66.9888],[-50.721,67.0017],[-50.7341,67.0125],[-50.7396,67.0193],[-50.7396,67.0212],[-50.7158,67.0265],[-50.7017,67.0265],[-50.6829,67.0176],[-50.6686,67.0077],[-50.6638,66.998],[-50.6642,66.9946],[-50.6891,66.9888],[-50.6992,66.9888]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Icebridge DMS image of the airport and settlement - alignment might be poor","end_date":"2015-10-08","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-dms_kangerlussuaq_20151008","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":17,"name":"imagico.de: Kangerlussuaq Autumn","start_date":"2015-10-08","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20151008&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-50.7519,66.9996],[-50.7555,67.0023],[-50.7555,67.0033],[-50.6395,67.0297],[-50.6162,67.0339],[-50.6097,67.0281],[-50.6331,67.022],[-50.7323,66.9996],[-50.7519,66.9996]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Icebridge DMS image of the airport and roads - alignment might be poor","end_date":"2016-05-18","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-dms_kangerlussuaq_20160518","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":18,"name":"imagico.de: Kangerlussuaq Spring","start_date":"2016-05-18","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20160518&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-68.74292,76.52636],[-68.74446,76.5284],[-68.74807,76.54939],[-68.74615,76.56017],[-68.72276,76.56022],[-68.72017,76.55775],[-68.71853,76.52921],[-68.71978,76.52637],[-68.74292,76.52636]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","end_date":"2015-09-25","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-dms_thule2_2015.09.25","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":17,"name":"imagico.de: Thule Airbase DMS low altitude overflight September 2015","start_date":"2015-09-25","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=dms_thule2_2015.09.25&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-68.77771,76.50688],[-68.77662,76.57064],[-68.68115,76.57065],[-68.6763,76.55384],[-68.6762,76.53074],[-68.68523,76.50688],[-68.77771,76.50688]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","end_date":"2015-09-25","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-dms_thule_2015.09.25","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":16,"name":"imagico.de: Thule Airbase DMS overflight September 2015","start_date":"2015-09-25","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.09.25&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-68.81924,76.5251],[-68.82651,76.54177],[-68.77345,76.5439],[-68.7021,76.54545],[-68.59177,76.5456],[-68.59183,76.52793],[-68.6597,76.5251],[-68.81924,76.5251]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","end_date":"2015-10-06","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-dms_thule_2015.10.06","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":16,"name":"imagico.de: Thule Airbase DMS overflight October 2015","start_date":"2015-10-06","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.10.06&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-43.9774,59.7171],[-44.545,59.7302],[-44.9203,59.7672],[-45.3587,59.8218],[-45.763,59.8848],[-46.0859,59.9827],[-46.3381,60.119],[-46.577,60.2652],[-46.8114,60.4418],[-47.2635,60.5314],[-47.6937,60.5549],[-48.1457,60.6192],[-48.5771,60.7015],[-48.8689,60.8506],[-49.0578,61.0555],[-49.396,61.2957],[-49.7601,61.4934],[-50.2064,61.7324],[-50.4699,61.9539],[-50.8647,62.1596],[-51.0631,62.3869],[-51.2121,62.6001],[-51.3005,62.8389],[-51.4238,62.9979],[-51.6767,63.1944],[-51.9465,63.4079],[-52.0253,63.6377],[-52.2255,63.8378],[-52.3658,64.0705],[-52.4829,64.3792],[-52.4988,64.6788],[-52.789,64.9063],[-53.2046,65.1321],[-53.6649,65.4753],[-53.9977,65.8019],[-54.1348,66.1568],[-54.1441,66.5235],[-54.2285,66.8319],[-54.4519,67.303],[-54.5141,67.7648],[-54.604,68.2021],[-54.568,68.5698],[-54.598,68.8347],[-54.7606,69.1207],[-55.0028,69.4125],[-55.2735,69.6187],[-55.3808,69.8283],[-55.3945,70.0838],[-55.3094,70.2573],[-55.4307,70.479],[-55.5501,70.6707],[-55.7654,70.861],[-56.2489,71.2343],[-56.5018,71.5429],[-56.5867,71.9015],[-56.5189,72.2355],[-56.5085,72.5258],[-56.8923,72.8144],[-57.4027,73.1054],[-57.8066,73.4566],[-58.1461,73.7696],[-58.3554,74.0972],[-58.5125,74.3783],[-58.7336,74.6328],[-59.3551,74.8869],[-60.1412,75.102],[-61.0067,75.2763],[-61.911,75.3886],[-62.4706,75.5595],[-62.9776,75.7454],[-64.1463,75.779],[-65.4481,75.7235],[-66.7068,75.6792],[-67.8379,75.6525],[-69.0456,75.6195],[-70.055,75.5344],[-71.0898,75.4705],[-72.1119,75.4476],[-74.2311,76.4102],[-74.5601,76.5328],[-74.5601,82.6959],[-14.4462,82.6959],[-14.3994,82.5997],[-13.5339,82.4379],[-12.0312,82.3426],[-10.7796,82.3196],[-10.7796,80.1902],[-11.2123,80.069],[-11.136,79.8103],[-10.7796,79.5176],[-10.7796,79.0441],[-11.2626,78.7128],[-12.2579,78.3558],[-13.2398,78.1272],[-13.7649,77.9279],[-14.1169,77.6779],[-14.7129,77.5278],[-15.5507,77.3655],[-16.0936,77.0771],[-16.0586,76.5548],[-15.838,75.9611],[-15.6879,75.4726],[-16.253,75.058],[-17.0427,74.6425],[-18.3155,74.2702],[-19.4463,73.9378],[-19.8329,73.632],[-20.2938,73.3524],[-20.7831,73.0446],[-21.01,72.6766],[-20.8774,72.2926],[-20.7672,71.8726],[-20.7765,71.4304],[-20.9411,70.9802],[-21.219,70.6126],[-21.5326,70.3001],[-21.8039,70.0911],[-22.166,69.8947],[-22.4831,69.7539],[-22.9027,69.6585],[-23.3545,69.544],[-23.9177,69.4036],[-24.1794,69.3088],[-24.6745,69.1084],[-25.1222,68.9555],[-25.6659,68.7995],[-26.0994,68.583],[-26.6316,68.4043],[-27.7638,68.2813],[-28.4575,68.0023],[-29.353,67.8135],[-30.6456,67.4911],[-31.7673,67.0005],[-32.9783,66.2596],[-33.9313,66.0156],[-34.8956,65.7403],[-35.5914,65.5208],[-36.1483,65.372],[-36.7532,65.2559],[-37.1858,65.1349],[-37.6032,64.9727],[-38.0624,64.4901],[-38.5304,64.1244],[-39.0545,63.7213],[-39.3131,63.4405],[-39.5739,62.7506],[-39.9532,62.2739],[-40.2757,61.8547],[-40.714,61.3365],[-41.2091,60.8495],[-41.821,60.5526],[-42.4368,60.3264],[-42.8643,60.0299],[-43.1131,59.9147],[-43.3282,59.83],[-43.5459,59.7695],[-43.797,59.7284],[-43.9774,59.7171]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Landsat mosaic of Greenland (true color)","end_date":"2015","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-greenland","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Greenland mosaic","start_date":"2013","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=greenland&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-85.76109,81.39333],[-89.83016,82.14952],[-89.83153,82.24405],[-84.99342,82.73099],[-79.95207,83.13108],[-74.55641,83.46267],[-69.35851,83.70451],[-28.20784,83.70451],[-23.06624,83.46532],[-17.96584,83.15518],[-17.96721,82.72386],[-22.78197,81.4419],[-85.76109,81.39333]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"First available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret (true color)","end_date":"2013-05-17","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-ls_polar","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":10,"name":"imagico.de: May 2013 off-nadir Landsat","start_date":"2013-05-17","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=ls_polar&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-79.05175,81.91484],[-79.05175,83.43339],[-73.6039,83.80225],[-26.42449,83.80225],[-21.493,83.50352],[-16.88835,83.15095],[-16.88835,81.91484],[-79.05175,81.91484]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Latest images north of the regular Landsat limit (true color)","end_date":"2016-07-17","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-ls_polar2","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":10,"name":"imagico.de: Landsat off-nadir July 2016","start_date":"2016-07-17","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=ls_polar2&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-52.49222,82.48972],[-52.49222,82.94295],[-49.28696,83.47312],[-44.5285,83.73214],[-29.5253,83.73214],[-25.26398,83.58271],[-21.18393,83.39776],[-21.18393,82.74312],[-23.40454,82.48972],[-52.49222,82.48972]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GL","description":"Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast (true color with estimated blue)","end_date":"2012-08-13","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-ngreenland_ast","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":10,"name":"imagico.de: Northern Greenland ASTER","start_date":"2005-06-21","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=ngreenland_ast&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-74.11291,18.64948],[-74.10903,18.64598],[-74.10873,18.64446],[-74.1095,18.64452],[-74.1095,18.64181],[-74.10968,18.64187],[-74.11053,18.64103],[-74.10988,18.64034],[-74.11005,18.64014],[-74.11005,18.64009],[-74.11011,18.64002],[-74.10949,18.63959],[-74.1095,18.63924],[-74.10904,18.63926],[-74.10894,18.63917],[-74.10905,18.63912],[-74.10898,18.63899],[-74.10782,18.63839],[-74.10823,18.63775],[-74.10812,18.63764],[-74.10786,18.63774],[-74.10768,18.63733],[-74.10748,18.63719],[-74.10722,18.63559],[-74.10901,18.63394],[-74.11678,18.62847],[-74.11952,18.62815],[-74.12251,18.63132],[-74.12731,18.63703],[-74.12684,18.6374],[-74.12731,18.63771],[-74.12768,18.63756],[-74.13403,18.64671],[-74.13401,18.64897],[-74.13087,18.65167],[-74.13076,18.65153],[-74.13053,18.65179],[-74.13054,18.65195],[-74.12878,18.65342],[-74.1274,18.65412],[-74.12514,18.65497],[-74.11997,18.65432],[-74.11938,18.65429],[-74.11291,18.64948]],[[-74.11305,18.4922],[-74.10884,18.49216],[-74.10118,18.49095],[-74.10105,18.49057],[-74.10131,18.4902],[-74.10101,18.48996],[-74.10142,18.48933],[-74.10099,18.48931],[-74.1009,18.48886],[-74.10166,18.48725],[-74.10108,18.48713],[-74.10133,18.48664],[-74.10058,18.48654],[-74.10048,18.48552],[-74.10062,18.4849],[-74.10037,18.48478],[-74.10012,18.4827],[-74.09994,18.48123],[-74.10033,18.48114],[-74.10242,18.48116],[-74.10492,18.48149],[-74.10771,18.48189],[-74.1099,18.48226],[-74.10987,18.48243],[-74.10992,18.48246],[-74.11018,18.48232],[-74.11196,18.48261],[-74.11247,18.48278],[-74.11316,18.48382],[-74.1134,18.48521],[-74.11349,18.48709],[-74.11338,18.48704],[-74.11336,18.48717],[-74.11349,18.48727],[-74.11355,18.48931],[-74.11349,18.48949],[-74.1135,18.48951],[-74.11349,18.48952],[-74.11347,18.48951],[-74.11334,18.48957],[-74.11336,18.48962],[-74.11341,18.48958],[-74.11344,18.48959],[-74.11349,18.48956],[-74.11352,18.48957],[-74.11355,18.48956],[-74.11357,18.48998],[-74.11359,18.49067],[-74.11354,18.49108],[-74.11322,18.492],[-74.11305,18.4922]],[[-74.10198,18.24954],[-74.09767,18.24744],[-74.09419,18.2474],[-74.09338,18.24885],[-74.09638,18.25292],[-74.09934,18.25335],[-74.10198,18.24954]],[[-74.02901,18.59744],[-74.02881,18.60255],[-74.00847,18.60182],[-74.00867,18.59671],[-74.02901,18.59744]],[[-73.91991,18.07466],[-73.91468,18.07482],[-73.91535,18.07742],[-73.91478,18.08009],[-73.91997,18.08014],[-73.91924,18.07802],[-73.91999,18.07637],[-73.91991,18.07466]],[[-74.22365,18.3081],[-74.22061,18.30272],[-74.21902,18.30278],[-74.21592,18.30364],[-74.21615,18.30804],[-74.22365,18.3081]],[[-74.00508,18.17646],[-74.00072,18.17657],[-74.00186,18.18175],[-74.00269,18.18344],[-74.00653,18.18336],[-74.00715,18.18218],[-74.00649,18.18056],[-74.0052,18.17922],[-74.00508,18.17646]],[[-74.0653,18.22881],[-74.06361,18.2268],[-74.06114,18.22672],[-74.05968,18.22853],[-74.06281,18.23083],[-74.06446,18.23034],[-74.0653,18.22881]],[[-74.11371,18.47184],[-74.11002,18.47177],[-74.10959,18.47536],[-74.11341,18.47497],[-74.11371,18.47184]],[[-73.95852,18.47452],[-73.95446,18.47465],[-73.95548,18.4794],[-73.95965,18.47878],[-73.95852,18.47452]],[[-74.16719,18.27229],[-74.16196,18.27232],[-74.16175,18.27303],[-74.16255,18.27452],[-74.16372,18.27542],[-74.16341,18.27749],[-74.16404,18.27854],[-74.16756,18.27868],[-74.16742,18.27592],[-74.16775,18.27416],[-74.16719,18.27229]],[[-74.11091,18.45286],[-74.10701,18.45258],[-74.10684,18.4586],[-74.11102,18.45781],[-74.11091,18.45286]],[[-73.76854,18.18022],[-73.75773,18.18006],[-73.73559,18.19311],[-73.73567,18.20143],[-73.74563,18.20191],[-73.74468,18.22311],[-73.77121,18.22417],[-73.77129,18.20844],[-73.76915,18.2064],[-73.76854,18.18022]],[[-74.13455,18.60914],[-74.1388,18.60929],[-74.13871,18.61165],[-74.13447,18.6115],[-74.13455,18.60914]],[[-74.04228,18.20945],[-74.042,18.20484],[-74.04155,18.20239],[-74.03959,18.20051],[-74.03836,18.20028],[-74.03764,18.20242],[-74.03792,18.20562],[-74.03918,18.20932],[-74.04228,18.20945]],[[-74.08668,18.61121],[-74.08669,18.61217],[-74.09146,18.61689],[-74.09211,18.61603],[-74.09313,18.61699],[-74.09603,18.62025],[-74.09627,18.6206],[-74.0967,18.62202],[-74.09337,18.62651],[-74.09237,18.62754],[-74.08862,18.62596],[-74.08863,18.62561],[-74.08778,18.62561],[-74.08661,18.6251],[-74.08662,18.62368],[-74.08514,18.62367],[-74.08462,18.62289],[-74.08463,18.62175],[-74.08339,18.62174],[-74.08261,18.62057],[-74.08262,18.61982],[-74.07659,18.6198],[-74.07658,18.61596],[-74.07255,18.61591],[-74.07259,18.61403],[-74.07062,18.61402],[-74.06858,18.6129],[-74.06855,18.61208],[-74.06614,18.61207],[-74.06414,18.61206],[-74.0625,18.61105],[-74.06254,18.61011],[-74.05927,18.61013],[-74.0545,18.60876],[-74.05451,18.60817],[-74.05168,18.60816],[-74.04932,18.60776],[-74.04647,18.60664],[-74.04646,18.6062],[-74.04243,18.6062],[-74.04133,18.60592],[-74.03625,18.60378],[-74.03597,18.60345],[-74.03642,18.60252],[-74.03719,18.6019],[-74.04003,18.60217],[-74.05608,18.60473],[-74.05851,18.6054],[-74.05861,18.60623],[-74.0611,18.60627],[-74.06481,18.60745],[-74.06518,18.60686],[-74.06679,18.60802],[-74.0696,18.60885],[-74.07142,18.60711],[-74.07239,18.60736],[-74.07515,18.61024],[-74.07701,18.61019],[-74.07798,18.61096],[-74.07901,18.61013],[-74.08109,18.61234],[-74.08234,18.60896],[-74.08383,18.60922],[-74.08513,18.60977],[-74.08668,18.61121]],[[-74.45922,18.4663],[-74.45589,18.46471],[-74.44779,18.47],[-74.44693,18.4713],[-74.44726,18.47934],[-74.44554,18.47915],[-74.44515,18.48326],[-74.43968,18.4839],[-74.439,18.48762],[-74.44299,18.49004],[-74.44906,18.49104],[-74.45382,18.49311],[-74.45571,18.49635],[-74.45786,18.49725],[-74.46052,18.49523],[-74.46241,18.49143],[-74.46198,18.48799],[-74.45537,18.48597],[-74.45526,18.47111],[-74.45944,18.46871],[-74.45922,18.4663]],[[-74.41888,18.57551],[-74.41499,18.57331],[-74.41045,18.57648],[-74.40824,18.58233],[-74.40954,18.58894],[-74.4112,18.59195],[-74.41081,18.59689],[-74.41663,18.60063],[-74.42178,18.59671],[-74.42146,18.59416],[-74.41745,18.59419],[-74.41753,18.59067],[-74.41538,18.59002],[-74.41533,18.58382],[-74.41652,18.58382],[-74.41756,18.5814],[-74.41756,18.57967],[-74.41924,18.57754],[-74.41888,18.57551]]],"type":"Polygon"},"properties":{"country_code":"HT","end_date":"2016-10","id":"drone-imagery-2016","max_zoom":18,"name":"Drone Imagery Matthew(Haiti) October 2016","start_date":"2016-10","type":"tms","url":"https://imagery.openstreetmap.fr/tms/1.0.0/haiti_uav_201610/{zoom}/{x}/{y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-72.26734,18.63561],[-72.2636,18.6373],[-72.26116,18.64141],[-72.25983,18.64588],[-72.25811,18.64742],[-72.24502,18.64795],[-72.23433,18.64807],[-72.22734,18.6482],[-72.21953,18.65438],[-72.2161,18.65446],[-72.21584,18.66222],[-72.21725,18.66739],[-72.21889,18.67019],[-72.22309,18.66958],[-72.22343,18.67312],[-72.22502,18.6732],[-72.22545,18.67609],[-72.23288,18.67597],[-72.23339,18.67877],[-72.23674,18.67857],[-72.23854,18.67975],[-72.24,18.68129],[-72.24463,18.68207],[-72.24682,18.6817],[-72.24605,18.67698],[-72.25094,18.67698],[-72.25511,18.67902],[-72.25961,18.67898],[-72.26081,18.67743],[-72.27038,18.67711],[-72.27901,18.67682],[-72.28373,18.67893],[-72.28613,18.68154],[-72.29665,18.68178],[-72.30184,18.68568],[-72.3012,18.68824],[-72.30802,18.69324],[-72.30948,18.69308],[-72.31699,18.69682],[-72.32806,18.70528],[-72.3384,18.69902],[-72.34012,18.69666],[-72.33961,18.69426],[-72.33377,18.68357],[-72.33135,18.68192],[-72.32551,18.68093],[-72.32027,18.67741],[-72.31626,18.67477],[-72.31167,18.672],[-72.308,18.66995],[-72.30534,18.66926],[-72.30068,18.66499],[-72.29796,18.66479],[-72.29609,18.66129],[-72.29315,18.65999],[-72.29519,18.65497],[-72.28414,18.64962],[-72.27804,18.64523],[-72.27487,18.64212],[-72.27352,18.64057],[-72.2706,18.63901],[-72.26734,18.63561]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"American Red Cross","url":"http://americanredcross.github.io/"},"country_code":"HT","description":"Drone imagery collected December 2017 for Canaan, Haiti by American Red Cross in coordination with the Haitian Red Cross.","end_date":"2017-12-20","id":"canaan_drone_red_cross_201712","max_zoom":21,"name":"Canaan - American Red Cross, Dec-2017","start_date":"2017-12-11","type":"tms","url":"https://tiles.openaerialmap.org/5ac65a9f91b5310010e0d489/0/5ac65a9f91b5310010e0d48a/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-86.19429,21.60805],[-85.49087,18.19755],[-87.74311,18.1696],[-87.88512,18.16671],[-88.03614,18.16812],[-88.03266,18.41814],[-88.28926,18.41987],[-88.28955,18.46881],[-88.30162,18.48182],[-88.32686,18.48703],[-88.37981,18.47636],[-88.38969,18.48],[-88.40121,18.49327],[-88.44756,18.47362],[-88.47518,18.48961],[-88.5161,18.46097],[-88.52891,18.40783],[-88.54595,18.38234],[-88.5426,18.35952],[-88.56227,18.32867],[-88.6009,18.23771],[-88.64108,18.18045],[-88.66034,18.13192],[-88.70053,18.07303],[-88.75998,18.02208],[-88.78258,17.9735],[-88.84036,17.9289],[-88.85808,17.89101],[-88.88123,17.89264],[-88.91209,17.90611],[-88.9241,17.91508],[-88.93739,17.92976],[-88.94982,17.94975],[-88.98711,17.94322],[-88.99783,17.95056],[-89.02484,17.9995],[-89.13973,17.95423],[-89.1391,17.81344],[-89.84645,17.81083],[-90.98253,17.80936],[-90.98265,17.79505],[-90.98231,17.277],[-90.98238,17.25917],[-90.98292,17.25081],[-90.98306,17.24988],[-90.98338,17.24899],[-90.98386,17.24819],[-90.98448,17.24748],[-90.98523,17.2469],[-90.98606,17.24648],[-90.98697,17.24621],[-90.9879,17.24613],[-91.43341,17.24601],[-91.4179,17.21305],[-91.37701,17.20939],[-91.34037,17.18369],[-91.26217,17.18693],[-91.2593,17.11198],[-91.22254,17.09838],[-91.14732,17.01192],[-91.11805,17.00606],[-91.05379,16.9136],[-90.95912,16.90405],[-90.93067,16.85673],[-90.87311,16.83169],[-90.7988,16.80564],[-90.70356,16.72347],[-90.66902,16.68137],[-90.65191,16.63554],[-90.62018,16.57474],[-90.61633,16.52708],[-90.60904,16.51845],[-90.58075,16.47693],[-90.55331,16.48474],[-90.54388,16.48269],[-90.47572,16.46254],[-90.38612,16.41403],[-90.36597,16.37167],[-90.4217,16.25853],[-90.42128,16.17085],[-90.42128,16.09755],[-90.43956,16.07307],[-90.95679,16.06911],[-91.32089,16.06878],[-91.68134,16.06878],[-91.729,16.06784],[-91.74266,16.04243],[-91.77849,15.98298],[-91.80125,15.94468],[-91.8218,15.90969],[-91.84071,15.87827],[-91.91024,15.76105],[-91.93209,15.72468],[-91.9546,15.68605],[-91.98452,15.63592],[-92.08888,15.45995],[-92.11847,15.40996],[-92.14514,15.3644],[-92.20534,15.26263],[-92.09608,15.12449],[-92.0619,15.08086],[-92.06136,15.08002],[-92.06101,15.07908],[-92.06084,15.0781],[-92.06088,15.0771],[-92.06111,15.07612],[-92.06154,15.07522],[-92.06213,15.07442],[-92.06288,15.07375],[-92.06374,15.07324],[-92.06706,15.0717],[-92.06937,15.07022],[-92.06927,15.06917],[-92.06841,15.06741],[-92.06704,15.06374],[-92.06694,15.06281],[-92.06703,15.06188],[-92.06758,15.05883],[-92.06793,15.05769],[-92.06904,15.05519],[-92.06955,15.05431],[-92.07215,15.05061],[-92.07727,15.0421],[-92.07822,15.03923],[-92.07935,15.03636],[-92.07993,15.03356],[-92.08077,15.03078],[-92.08219,15.02776],[-92.08313,15.02647],[-92.08466,15.02493],[-92.0862,15.02313],[-92.08735,15.02215],[-92.08909,15.02106],[-92.09098,15.01927],[-92.0938,15.01737],[-92.0963,15.01626],[-92.09757,15.01589],[-92.10076,15.0154],[-92.10286,15.0147],[-92.10403,15.01446],[-92.10712,15.0142],[-92.10994,15.01369],[-92.11444,15.01361],[-92.11543,15.01371],[-92.12283,15.01516],[-92.12328,15.01503],[-92.12425,15.01398],[-92.1259,15.01257],[-92.12758,15.01063],[-92.12924,15.00896],[-92.13132,15.0074],[-92.13313,15.00538],[-92.13731,15.00256],[-92.14034,14.99953],[-92.14176,14.99758],[-92.14312,14.996],[-92.145,14.99265],[-92.14575,14.98889],[-92.14536,14.98673],[-92.14514,14.98452],[-92.14331,14.98171],[-92.14108,14.97674],[-92.14077,14.97582],[-92.14065,14.97486],[-92.14071,14.9739],[-92.14095,14.97296],[-92.14287,14.96961],[-92.14254,14.96762],[-92.14238,14.96403],[-92.14202,14.96109],[-92.14202,14.95927],[-92.1427,14.95512],[-92.14343,14.9526],[-92.1439,14.95145],[-92.1439,14.94999],[-92.14361,14.94832],[-92.14312,14.94742],[-92.14233,14.94661],[-92.14043,14.94544],[-92.13957,14.94477],[-92.13888,14.94392],[-92.13839,14.94295],[-92.13812,14.9419],[-92.13769,14.93891],[-92.13764,14.9381],[-92.13794,14.93649],[-92.14038,14.92999],[-92.14041,14.92961],[-92.13978,14.92742],[-92.13941,14.92539],[-92.13847,14.92235],[-92.13826,14.92132],[-92.13792,14.9175],[-92.13794,14.91641],[-92.13837,14.9131],[-92.13905,14.90996],[-92.13827,14.90811],[-92.13743,14.90533],[-92.13724,14.90434],[-92.13668,14.89791],[-92.13669,14.89698],[-92.13688,14.89606],[-92.13793,14.89269],[-92.13904,14.89019],[-92.13954,14.88931],[-92.14254,14.88523],[-92.14427,14.88257],[-92.14756,14.87954],[-92.14831,14.87804],[-92.14924,14.87674],[-92.15618,14.8698],[-92.15707,14.86909],[-92.15898,14.8679],[-92.16124,14.86604],[-92.16568,14.86326],[-92.17033,14.86091],[-92.17338,14.85901],[-92.17454,14.85702],[-92.17557,14.85582],[-92.17609,14.85425],[-92.17659,14.85318],[-92.17767,14.85146],[-92.17858,14.84887],[-92.17954,14.84697],[-92.18078,14.84307],[-92.18002,14.83403],[-92.18,14.83101],[-92.17854,14.82616],[-92.17833,14.82472],[-92.17833,14.82184],[-92.17786,14.81923],[-92.1778,14.81788],[-92.17827,14.81247],[-92.17802,14.81162],[-92.17677,14.81013],[-92.17488,14.80731],[-92.17275,14.80279],[-92.1723,14.80145],[-92.17136,14.79647],[-92.17035,14.79465],[-92.16984,14.79331],[-92.16944,14.79152],[-92.16854,14.7899],[-92.16606,14.78642],[-92.16454,14.78464],[-92.16376,14.78342],[-92.16243,14.78032],[-92.1616,14.77755],[-92.16139,14.77611],[-92.16139,14.77278],[-92.16164,14.7712],[-92.16284,14.76787],[-92.16334,14.76713],[-92.16515,14.76547],[-92.16576,14.76426],[-92.16669,14.76215],[-92.16729,14.76016],[-92.1674,14.7589],[-92.16696,14.75791],[-92.16298,14.75154],[-92.16184,14.74877],[-92.15942,14.74418],[-92.15765,14.74008],[-92.15551,14.7388],[-92.15468,14.73817],[-92.154,14.73738],[-92.15349,14.73647],[-92.15124,14.73111],[-92.15077,14.7292],[-92.1483,14.72695],[-92.14477,14.72228],[-92.14341,14.71854],[-92.14315,14.71736],[-92.14319,14.71615],[-92.1436,14.71355],[-92.14331,14.71094],[-92.14428,14.70553],[-92.14196,14.69637],[-92.13995,14.69371],[-92.13858,14.68974],[-92.13837,14.68886],[-92.13833,14.68796],[-92.13845,14.68707],[-92.13873,14.68621],[-92.14197,14.6812],[-92.14262,14.67958],[-92.14262,14.67706],[-92.14312,14.67375],[-92.14298,14.67051],[-92.1426,14.66744],[-92.14146,14.66524],[-92.14111,14.66439],[-92.14093,14.66348],[-92.14109,14.66039],[-92.1413,14.6593],[-92.14175,14.65828],[-92.14241,14.65738],[-92.14354,14.65617],[-92.14462,14.65422],[-92.14532,14.65324],[-92.14624,14.65246],[-92.15054,14.64964],[-92.15373,14.64781],[-92.15473,14.64738],[-92.15756,14.64651],[-92.15781,14.64629],[-92.15814,14.6448],[-92.159,14.64215],[-92.15941,14.64122],[-92.15999,14.64039],[-92.16188,14.63823],[-92.16263,14.63753],[-92.1635,14.63701],[-92.16575,14.63635],[-92.16693,14.63468],[-92.1679,14.63192],[-92.16927,14.62926],[-92.17098,14.62678],[-92.17183,14.62523],[-92.17378,14.62246],[-92.17434,14.6211],[-92.17477,14.61807],[-92.17556,14.61534],[-92.17556,14.6125],[-92.17621,14.60874],[-92.17831,14.60286],[-92.17939,14.60059],[-92.17977,14.59873],[-92.1801,14.59541],[-92.18065,14.59263],[-92.18248,14.58675],[-92.18297,14.5857],[-92.18369,14.5848],[-92.18563,14.58287],[-92.18783,14.581],[-92.19176,14.57812],[-92.19367,14.57628],[-92.19545,14.57494],[-92.19636,14.57388],[-92.1976,14.57154],[-92.19899,14.56959],[-92.20092,14.5673],[-92.20182,14.56649],[-92.20402,14.56493],[-92.20624,14.56354],[-92.20889,14.5623],[-92.20993,14.56156],[-92.21073,14.56063],[-92.21132,14.55931],[-92.21162,14.55779],[-92.21113,14.55208],[-92.21121,14.55069],[-92.21176,14.54791],[-92.2121,14.54686],[-92.21266,14.5459],[-92.21341,14.54509],[-92.21536,14.54343],[-92.21607,14.54291],[-92.21687,14.54254],[-92.22077,14.54175],[-92.22212,14.54169],[-92.22517,14.54196],[-92.22632,14.5422],[-92.22737,14.5427],[-92.22939,14.54397],[-92.23315,14.54574],[-92.2354,14.54615],[-92.23755,14.54635],[-92.23935,14.54602],[-92.2438,14.54404],[-92.24479,14.54372],[-92.3367,14.47672],[-92.33752,14.47624],[-92.33841,14.47592],[-92.33936,14.47577],[-92.34031,14.47581],[-92.34124,14.47602],[-92.34211,14.47641],[-92.34289,14.47696],[-99.37488,9.66464],[-101.1689,9.83098],[-121.2843,30.98696],[-117.4801,32.40539],[-117.4735,32.62548],[-117.0921,32.53754],[-116.3541,32.60111],[-115.4673,32.66952],[-114.7174,32.72067],[-114.7466,32.66068],[-114.7641,32.64011],[-114.789,32.61736],[-114.8036,32.61809],[-114.79,32.57192],[-114.7877,32.55741],[-114.7976,32.52018],[-114.8053,32.49885],[-114.8002,32.49255],[-114.7475,32.47765],[-113.5061,32.09818],[-111.7104,31.5435],[-111.0753,31.3357],[-109.5437,31.33466],[-108.2159,31.34054],[-108.2112,31.78584],[-107.4606,31.78624],[-106.5279,31.78465],[-106.5192,31.77455],[-106.5125,31.77015],[-106.5098,31.76152],[-106.507,31.76171],[-106.5054,31.76037],[-106.4937,31.75147],[-106.4885,31.74838],[-106.4829,31.7488],[-106.4743,31.75082],[-106.4712,31.75321],[-106.4687,31.75958],[-106.4527,31.76549],[-106.4486,31.76352],[-106.4347,31.75541],[-106.4137,31.75192],[-106.3788,31.73279],[-106.3709,31.71389],[-106.347,31.6984],[-106.3318,31.66628],[-106.3082,31.6365],[-106.2975,31.61314],[-106.278,31.56629],[-106.2438,31.54518],[-106.1949,31.47893],[-106.1233,31.43151],[-106.002,31.40007],[-105.9471,31.36233],[-105.8614,31.28737],[-105.7837,31.20434],[-105.5968,31.08854],[-105.4541,30.93583],[-105.2974,30.83294],[-105.2063,30.80763],[-104.9913,30.67752],[-104.8969,30.59322],[-104.8151,30.39009],[-104.674,30.21007],[-104.6577,29.92348],[-104.5575,29.78165],[-104.5256,29.69205],[-104.5227,29.66538],[-104.4108,29.58162],[-104.3958,29.57227],[-104.3906,29.55432],[-104.3691,29.54458],[-104.3366,29.52377],[-104.3118,29.53733],[-104.2073,29.49012],[-104.0405,29.33141],[-103.7799,29.273],[-103.6855,29.18883],[-103.5468,29.16426],[-103.3914,29.04546],[-103.3301,29.05125],[-103.157,28.9822],[-103.1094,29.06478],[-103.0003,29.18766],[-102.9252,29.20344],[-102.8891,29.34776],[-102.8542,29.38162],[-102.8141,29.52451],[-102.7759,29.59792],[-102.7464,29.63694],[-102.6761,29.74924],[-102.5717,29.77405],[-102.497,29.78913],[-102.3947,29.77389],[-102.3643,29.85102],[-102.3294,29.88456],[-102.2463,29.86696],[-102.1867,29.85054],[-102.1472,29.81151],[-102.0795,29.79603],[-101.9741,29.81889],[-101.925,29.79794],[-101.8512,29.80936],[-101.8169,29.81307],[-101.677,29.76841],[-101.5432,29.81422],[-101.4579,29.79249],[-101.3977,29.7746],[-101.3609,29.67596],[-101.304,29.6604],[-101.2508,29.63169],[-101.2279,29.57771],[-101.2495,29.53141],[-101.1708,29.51804],[-101.1447,29.48246],[-101.0885,29.47267],[-101.0597,29.45929],[-101.0076,29.37923],[-100.9458,29.34719],[-100.8846,29.30892],[-100.8122,29.26489],[-100.7762,29.22867],[-100.7315,29.13796],[-100.6695,29.11044],[-100.6259,28.91125],[-100.5999,28.90333],[-100.5883,28.88822],[-100.5326,28.80577],[-100.5051,28.74135],[-100.5044,28.71461],[-100.5093,28.70499],[-100.4958,28.66159],[-100.4773,28.66691],[-100.4408,28.64945],[-100.3232,28.50342],[-100.3316,28.40045],[-100.2418,28.2724],[-100.1767,28.19521],[-100.1113,28.1716],[-100.0781,28.14823],[-100.0079,28.06999],[-99.98003,28.00519],[-99.92212,27.98603],[-99.82999,27.77739],[-99.81327,27.78663],[-99.7464,27.71905],[-99.70889,27.66402],[-99.68799,27.67778],[-99.63548,27.63886],[-99.62529,27.64835],[-99.59582,27.64408],[-99.56903,27.61037],[-99.55563,27.61654],[-99.53849,27.60752],[-99.51223,27.5738],[-99.50848,27.56098],[-99.51866,27.52629],[-99.52402,27.50016],[-99.49722,27.50443],[-99.47745,27.49254],[-98.87131,26.41991],[-97.24,26.09441],[-89.19655,24.82478],[-86.19429,21.60805]]],"type":"Polygon"},"properties":{"attribution":{"text":"Instituto Nacional de Estadísticas y Geografía","url":"https://www.inegi.org.mx/"},"available_projections":["EPSG:4326"],"country_code":"MX","icon":"http://www3.inegi.org.mx/sistemas/widget/img/Inegi.png","id":"inegi-wms","license_url":"http://www.beta.inegi.org.mx/inegi/terminos.html","max_zoom":20,"min_zoom":1,"name":"INEGI Digital Map of Mexico (WMS)","type":"wms_endpoint","url":"https://gaia.inegi.org.mx/NLB/mdm5.wms?Request=GetCapabilities&Version=1.1.1&Service=WMS"},"type":"Feature"},{"geometry":{"coordinates":[[[-66.15007,18.35002],[-66.03337,18.35002],[-66.03328,18.45634],[-66.05464,18.45636],[-66.05463,18.46542],[-66.08303,18.46544],[-66.08302,18.47451],[-66.13034,18.47455],[-66.13034,18.4796],[-66.13983,18.47961],[-66.13984,18.46557],[-66.14995,18.46558],[-66.15007,18.35002]]],"type":"Polygon"},"properties":{"country_code":"US","end_date":"2013-03-15","id":"SanJuanMetroAreaUSACEOrthophotos","license_url":"https://wiki.openstreetmap.org/wiki/Puerto_Rico_Imagery#Recommended_imagery_for_the_San_Juan_Metro_Area:_2013_USACE_Orthophotos","max_zoom":20,"name":"San Juan Metro Area: 2013 USACE Orthophotos","start_date":"2013-03-13","type":"tms","url":"http://imagery-pr-usace-2013.s3-website-us-east-1.amazonaws.com/tiles/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"type":"Polygon"},"properties":{"country_code":"US","description":"At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap","end_date":"2014","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","id":"US-TIGER-Roads-2014","max_zoom":22,"name":"TIGER Roads 2014","overlay":true,"start_date":"2014","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/enf.e0b8291e/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ"},"type":"Feature"},{"geometry":{"coordinates":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"type":"Polygon"},"properties":{"country_code":"US","description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","end_date":"2017","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","id":"US-TIGER-Roads-2017","max_zoom":22,"name":"TIGER Roads 2017","overlay":true,"start_date":"2017","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cj8dftc3q1ecn2tnx9qhwyj0c/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw"},"type":"Feature"},{"geometry":{"coordinates":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"type":"Polygon"},"properties":{"country_code":"US","description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","end_date":"2018","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","id":"US-TIGER-Roads-2018","max_zoom":22,"name":"TIGER Roads 2018","overlay":true,"start_date":"2018","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cjo1wbulo3ub82ro1c9onlzmh/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw"},"type":"Feature"},{"geometry":{"coordinates":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"type":"Polygon"},"properties":{"country_code":"US","description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","end_date":"2019","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","id":"US-TIGER-Roads-2019","max_zoom":22,"name":"TIGER Roads 2019","overlay":true,"privacy_policy_url":"https://www.mapbox.com/legal/privacy/","start_date":"2019","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/ck0dxfa7602e61cmjk7p86749/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw"},"type":"Feature"},{"geometry":{"coordinates":[[[-123.25493,48.7529],[-123.25493,48.55923],[-123.19222,48.55923],[-123.19222,48.43484],[-122.94196,48.43484],[-122.94196,48.37208],[-122.88062,48.37208],[-122.88062,48.30948],[-122.81676,48.30948],[-122.81676,48.19046],[-123.00411,48.19046],[-123.00411,48.12759],[-123.05842,48.12759],[-123.05842,48.19051],[-123.25411,48.19051],[-123.25411,48.1275],[-123.37066,48.1275],[-123.37066,48.19084],[-124.05826,48.19084],[-124.05826,48.25344],[-124.18152,48.25344],[-124.18152,48.31647],[-124.43191,48.31647],[-124.43191,48.37826],[-124.55646,48.37826],[-124.55646,48.44083],[-124.75551,48.44083],[-124.75551,48.1915],[-124.81853,48.1915],[-124.81853,48.12284],[-124.7553,48.12284],[-124.7553,47.55353],[-124.38121,47.55353],[-124.38121,47.12187],[-124.19289,47.12187],[-124.19289,43.75694],[-124.44434,43.75694],[-124.44434,43.14256],[-124.63989,43.14256],[-124.63989,42.61945],[-124.44385,42.61945],[-124.44385,39.80807],[-123.88157,39.80807],[-123.88157,39.11028],[-123.75805,39.11028],[-123.75805,38.49688],[-123.27028,38.49688],[-123.27028,37.93319],[-122.81481,37.93319],[-122.81481,37.80196],[-122.56643,37.80196],[-122.56643,36.93196],[-121.8784,36.93196],[-121.8784,36.68976],[-122.00347,36.68976],[-122.00347,36.43411],[-121.94142,36.43411],[-121.94142,35.92976],[-121.5041,35.92976],[-121.5041,35.81003],[-121.37903,35.81003],[-121.37903,35.42392],[-120.94265,35.42392],[-120.94265,35.18497],[-120.8172,35.18497],[-120.8172,35.12199],[-120.69184,35.12199],[-120.69184,34.49668],[-120.50459,34.49668],[-120.50459,34.43397],[-120.00788,34.43397],[-120.00788,34.36826],[-119.52835,34.36826],[-119.52835,34.05764],[-119.0061,34.05764],[-119.0061,33.99753],[-118.50463,33.99753],[-118.50463,33.86946],[-118.44132,33.86946],[-118.44132,33.68653],[-118.06691,33.68653],[-118.06691,33.30638],[-117.503,33.30638],[-117.503,33.05003],[-117.31882,33.05003],[-117.31882,32.62059],[-117.1917,32.62059],[-117.1917,32.49746],[-116.7465,32.49746],[-116.7465,32.56092],[-115.99701,32.56092],[-115.99701,32.62649],[-114.88081,32.62649],[-114.88081,32.43408],[-114.62945,32.43408],[-114.62945,32.37316],[-114.44474,32.37316],[-114.44474,32.30754],[-114.25576,32.30754],[-114.25576,32.24446],[-114.06803,32.24446],[-114.06803,32.18291],[-113.81665,32.18291],[-113.81665,32.12076],[-113.63074,32.12076],[-113.63074,32.05651],[-113.44175,32.05651],[-113.44175,31.99844],[-113.2546,31.99844],[-113.2546,31.93254],[-113.06807,31.93254],[-113.06807,31.87181],[-112.81611,31.87181],[-112.81611,31.81042],[-112.63088,31.81042],[-112.63088,31.74647],[-112.44189,31.74647],[-112.44189,31.6856],[-112.25719,31.6856],[-112.25719,31.62104],[-112.00338,31.62104],[-112.00338,31.55958],[-111.81562,31.55958],[-111.81562,31.49702],[-111.62786,31.49702],[-111.62786,31.43399],[-111.4419,31.43399],[-111.4419,31.37339],[-111.25597,31.37339],[-111.25597,31.31132],[-108.18458,31.31132],[-108.18458,31.74595],[-106.50651,31.74595],[-106.50651,31.68423],[-106.37973,31.68423],[-106.37973,31.62175],[-106.31743,31.62175],[-106.31743,31.49682],[-106.25518,31.49682],[-106.25518,31.43449],[-106.19247,31.43449],[-106.19247,31.37213],[-106.00392,31.37213],[-106.00392,31.30933],[-105.94166,31.30933],[-105.94166,31.24575],[-105.87982,31.24575],[-105.87982,31.18362],[-105.81623,31.18362],[-105.81623,31.12072],[-105.69212,31.12072],[-105.69212,31.05848],[-105.63029,31.05848],[-105.63029,30.93283],[-105.50444,30.93283],[-105.50444,30.87159],[-105.4413,30.87159],[-105.4413,30.80846],[-105.37815,30.80846],[-105.37815,30.74718],[-105.19047,30.74718],[-105.19047,30.68432],[-105.12862,30.68432],[-105.12862,30.61997],[-105.00365,30.61997],[-105.00365,30.55891],[-104.9418,30.55891],[-104.9418,30.49632],[-104.8782,30.49632],[-104.8782,30.30983],[-104.81553,30.30983],[-104.81553,30.24783],[-104.75361,30.24783],[-104.75361,29.93539],[-104.69095,29.93539],[-104.69095,29.80902],[-104.62913,29.80902],[-104.62913,29.68436],[-104.56599,29.68436],[-104.56599,29.62235],[-104.50372,29.62235],[-104.50372,29.55954],[-104.44101,29.55954],[-104.44101,29.49748],[-104.25376,29.49748],[-104.25376,29.37167],[-104.1292,29.37167],[-104.1292,29.30916],[-104.06887,29.30916],[-104.06887,29.24673],[-103.81873,29.24673],[-103.81873,29.18431],[-103.75574,29.18431],[-103.75574,29.12232],[-103.56675,29.12232],[-103.56675,29.05981],[-103.50498,29.05981],[-103.50498,28.99675],[-103.31658,28.99675],[-103.31658,28.93469],[-103.05976,28.93469],[-103.05976,29.0593],[-102.99797,29.0593],[-102.99797,29.12129],[-102.93314,29.12129],[-102.93314,29.18486],[-102.8096,29.18486],[-102.8096,29.25262],[-102.87013,29.25262],[-102.87013,29.3081],[-102.80967,29.3081],[-102.80967,29.37155],[-102.74757,29.37155],[-102.74757,29.55819],[-102.68455,29.55819],[-102.68455,29.68477],[-102.49678,29.68477],[-102.49678,29.74577],[-102.30866,29.74577],[-102.30866,29.80866],[-102.19093,29.80866],[-102.19093,29.74601],[-101.50499,29.74601],[-101.50499,29.68468],[-101.38058,29.68468],[-101.38058,29.55945],[-101.31751,29.55945],[-101.31751,29.49589],[-101.19101,29.49589],[-101.19101,29.43261],[-101.0675,29.43261],[-101.0675,29.30881],[-100.94189,29.30881],[-100.94189,29.24562],[-100.81673,29.24562],[-100.81673,29.11904],[-100.75227,29.11904],[-100.75227,29.05782],[-100.69254,29.05782],[-100.69254,28.87204],[-100.62902,28.87204],[-100.62902,28.80954],[-100.56799,28.80954],[-100.56799,28.62255],[-100.50404,28.62255],[-100.50404,28.55838],[-100.44218,28.55838],[-100.44218,28.49683],[-100.37943,28.49683],[-100.37943,28.30929],[-100.31719,28.30929],[-100.31719,28.18357],[-100.25448,28.18357],[-100.25448,28.12139],[-100.12823,28.12139],[-100.12823,28.05921],[-100.06595,28.05921],[-100.06595,27.99661],[-100.00239,27.99661],[-100.00239,27.93322],[-99.94265,27.93322],[-99.94265,27.74547],[-99.81685,27.74547],[-99.81685,27.68343],[-99.75413,27.68343],[-99.75413,27.62215],[-99.62916,27.62215],[-99.62916,27.5589],[-99.56728,27.5589],[-99.56728,27.43538],[-99.50418,27.43538],[-99.50418,27.3774],[-99.56718,27.3774],[-99.56718,27.24637],[-99.50498,27.24637],[-99.50498,26.99656],[-99.44274,26.99656],[-99.44274,26.8728],[-99.38006,26.8728],[-99.38006,26.80682],[-99.31907,26.80682],[-99.31907,26.74736],[-99.25375,26.74736],[-99.25375,26.62101],[-99.19106,26.62101],[-99.19106,26.49567],[-99.13006,26.49567],[-99.13006,26.37138],[-99.00295,26.37138],[-99.00295,26.30938],[-98.81657,26.30938],[-98.81657,26.24578],[-98.69201,26.24578],[-98.69201,26.18371],[-98.44409,26.18371],[-98.44409,26.12172],[-98.38232,26.12172],[-98.38232,26.05965],[-98.25327,26.05965],[-98.25327,25.99869],[-98.01091,25.99869],[-98.01091,25.99323],[-97.69323,25.99323],[-97.69323,25.93341],[-97.63139,25.93341],[-97.63139,25.86959],[-97.50468,25.86959],[-97.50468,25.80735],[-97.30834,25.80735],[-97.30834,25.87312],[-97.24563,25.87312],[-97.24563,25.93537],[-97.11389,25.93537],[-97.11389,27.68092],[-97.0571,27.68092],[-97.0571,27.81082],[-95.58108,27.81082],[-95.58108,28.74688],[-94.27104,28.74688],[-94.27104,29.55941],[-92.50299,29.55941],[-92.50299,29.49748],[-91.87762,29.49748],[-91.87762,29.3727],[-91.37842,29.3727],[-91.37842,29.24683],[-91.3154,29.24683],[-91.3154,29.18443],[-91.12947,29.18443],[-91.12947,29.12326],[-91.00526,29.12326],[-91.00526,28.99684],[-89.45002,28.99684],[-89.45002,28.86774],[-88.81043,28.86774],[-88.81043,30.18419],[-85.87915,30.18419],[-85.87915,29.5455],[-84.83681,29.5455],[-84.83681,29.62252],[-84.74828,29.62252],[-84.74828,29.68362],[-84.68589,29.68362],[-84.68589,29.74684],[-83.6297,29.74684],[-83.6297,29.43244],[-83.31749,29.43244],[-83.31749,29.05794],[-82.87966,29.05794],[-82.87966,27.74535],[-82.81828,27.74535],[-82.81828,26.92909],[-82.37968,26.92909],[-82.37968,26.36942],[-81.87771,26.36942],[-81.87771,25.80597],[-81.50369,25.80597],[-81.50369,25.74748],[-81.44055,25.74748],[-81.44055,25.68515],[-81.31559,25.68515],[-81.31559,25.5601],[-81.25385,25.5601],[-81.25385,25.43424],[-81.1902,25.43424],[-81.1902,25.12343],[-81.12881,25.12343],[-81.12881,25.06194],[-81.06492,25.06194],[-81.06492,24.81578],[-81.62895,24.81578],[-81.62895,24.75384],[-81.69072,24.75384],[-81.69072,24.68994],[-81.81732,24.68994],[-81.81732,24.62792],[-82.191,24.62792],[-82.191,24.49629],[-81.62166,24.49629],[-81.62166,24.55948],[-81.37201,24.55948],[-81.37201,24.62207],[-81.05933,24.62207],[-81.05933,24.68483],[-80.93471,24.68483],[-80.93471,24.74748],[-80.74711,24.74748],[-80.74711,24.81006],[-80.36299,24.81006],[-80.36299,25.11759],[-80.12234,25.11759],[-80.12234,25.74724],[-80.05885,25.74724],[-80.05885,26.37083],[-79.99584,26.37083],[-79.99584,26.9398],[-80.05873,26.9398],[-80.05873,27.12775],[-80.12263,27.12775],[-80.12263,27.25343],[-80.1847,27.25343],[-80.1847,27.37812],[-80.24617,27.37812],[-80.24617,27.56587],[-80.30948,27.56587],[-80.30948,27.75303],[-80.37215,27.75303],[-80.37215,27.87745],[-80.43515,27.87745],[-80.43515,28.00334],[-80.49661,28.00334],[-80.49661,28.12773],[-80.55872,28.12773],[-80.55872,28.37235],[-80.49663,28.37235],[-80.49663,29.51603],[-81.12136,29.51603],[-81.12136,31.6847],[-80.60187,31.6847],[-80.60187,32.24753],[-79.4921,32.24753],[-79.4921,32.99703],[-79.11165,32.99703],[-79.11165,33.37295],[-78.61536,33.37295],[-78.61536,33.80976],[-77.9317,33.80976],[-77.9317,33.87182],[-77.86923,33.87182],[-77.86923,34.05525],[-77.68264,34.05525],[-77.68264,34.29746],[-77.24535,34.29746],[-77.24535,34.55986],[-76.49733,34.55986],[-76.49733,34.6228],[-76.43376,34.6228],[-76.43376,34.68493],[-76.37321,34.68493],[-76.37321,34.74677],[-76.30594,34.74677],[-76.30594,34.80855],[-76.2468,34.80855],[-76.2468,34.87284],[-76.18259,34.87284],[-76.18259,34.93353],[-76.12081,34.93353],[-76.12081,34.99524],[-75.9979,34.99524],[-75.9979,35.05782],[-75.87034,35.05782],[-75.87034,35.12191],[-75.74622,35.12191],[-75.74622,35.18189],[-75.49297,35.18189],[-75.49297,35.3083],[-75.43257,35.3083],[-75.43257,35.75425],[-75.49699,35.75425],[-75.49699,37.81056],[-75.3083,37.81056],[-75.3083,37.87201],[-75.2456,37.87201],[-75.2456,37.99548],[-75.18288,37.99548],[-75.18288,38.05851],[-75.11848,38.05851],[-75.11848,38.24691],[-75.05921,38.24691],[-75.05921,38.37043],[-74.99481,38.37043],[-74.99481,38.87184],[-74.48783,38.87184],[-74.48783,39.30894],[-74.17663,39.30894],[-74.17663,39.62247],[-74.0567,39.62247],[-74.0567,39.93318],[-73.9959,39.93318],[-73.9959,40.18549],[-73.93416,40.18549],[-73.93416,40.49595],[-73.8723,40.49595],[-73.8723,40.55271],[-71.80745,40.55271],[-71.80745,41.3088],[-70.88251,41.3088],[-70.88251,41.18498],[-70.74619,41.18498],[-70.74619,41.30919],[-70.43376,41.30919],[-70.43376,41.49639],[-69.93343,41.49639],[-69.93343,41.62308],[-69.86986,41.62308],[-69.86986,41.87769],[-69.93579,41.87769],[-69.93579,42.00323],[-69.99758,42.00323],[-69.99758,42.06502],[-70.06061,42.06502],[-70.06061,42.12943],[-70.55729,42.12943],[-70.55729,43.24871],[-70.49741,43.24871],[-70.49741,43.30922],[-70.37042,43.30922],[-70.37042,43.37196],[-70.30857,43.37196],[-70.30857,43.49699],[-70.18392,43.49699],[-70.18392,43.62235],[-70.05758,43.62235],[-70.05758,43.68502],[-69.74552,43.68502],[-69.74552,43.74766],[-69.24728,43.74766],[-69.24728,43.8107],[-69.05607,43.8107],[-69.05607,43.87172],[-68.99505,43.87172],[-68.99505,43.9982],[-68.49637,43.9982],[-68.49637,44.05974],[-68.3081,44.05974],[-68.3081,44.12214],[-68.18518,44.12214],[-68.18518,44.30814],[-67.9956,44.30814],[-67.9956,44.37275],[-67.8103,44.37275],[-67.8103,44.43518],[-67.49653,44.43518],[-67.49653,44.49688],[-67.37102,44.49688],[-67.37102,44.56006],[-67.18488,44.56006],[-67.18488,44.62133],[-67.12212,44.62133],[-67.12212,44.68679],[-67.05936,44.68679],[-67.05936,44.74737],[-66.93111,44.74737],[-66.93111,44.94066],[-66.99468,44.94066],[-66.99468,45.00245],[-67.05958,45.00245],[-67.05958,45.12734],[-67.1202,45.12734],[-67.1202,45.19101],[-67.24698,45.19101],[-67.24698,45.25344],[-67.31775,45.25344],[-67.31775,45.18984],[-67.37075,45.18984],[-67.37075,45.2534],[-67.43269,45.2534],[-67.43269,45.30834],[-67.37086,45.30834],[-67.37086,45.4397],[-67.43056,45.4397],[-67.43056,45.49501],[-67.37099,45.49501],[-67.37099,45.62645],[-67.6215,45.62645],[-67.6215,45.68961],[-67.68383,45.68961],[-67.68383,45.75326],[-67.74621,45.75326],[-67.74621,47.12682],[-67.87001,47.12682],[-67.87001,47.19003],[-67.93238,47.19003],[-67.93238,47.25397],[-67.99594,47.25397],[-67.99594,47.31497],[-68.12067,47.31497],[-68.12067,47.37808],[-68.44232,47.37808],[-68.44232,47.31661],[-68.63143,47.31661],[-68.63143,47.25447],[-68.9978,47.25447],[-68.9978,47.43989],[-69.06072,47.43989],[-69.06072,47.50476],[-69.25381,47.50476],[-69.25381,47.43981],[-69.31793,47.43981],[-69.31793,47.3786],[-69.44385,47.3786],[-69.44385,47.31563],[-69.50382,47.31563],[-69.50382,47.25258],[-69.56678,47.25258],[-69.56678,47.19109],[-69.63035,47.19109],[-69.63035,47.1287],[-69.69331,47.1287],[-69.69331,47.06543],[-69.75571,47.06543],[-69.75571,47.00428],[-69.81804,47.00428],[-69.81804,46.94153],[-69.8804,46.94153],[-69.8804,46.87925],[-69.94217,46.87925],[-69.94217,46.81774],[-70.00631,46.81774],[-70.00631,46.69203],[-70.07043,46.69203],[-70.07043,46.44259],[-70.19459,46.44259],[-70.19459,46.37859],[-70.2562,46.37859],[-70.2562,46.31526],[-70.32037,46.31526],[-70.32037,46.06512],[-70.3815,46.06512],[-70.3815,45.93552],[-70.32016,45.93552],[-70.32016,45.87948],[-70.44931,45.87948],[-70.44931,45.75387],[-70.507,45.75387],[-70.507,45.69169],[-70.63166,45.69169],[-70.63166,45.62916],[-70.75755,45.62916],[-70.75755,45.44147],[-70.88099,45.44147],[-70.88099,45.37806],[-71.13328,45.37806],[-71.13328,45.31515],[-71.38303,45.31515],[-71.38303,45.25342],[-71.50764,45.25342],[-71.50764,45.06557],[-73.94189,45.06557],[-73.94189,45.00312],[-74.74697,45.00312],[-74.74697,45.0649],[-74.8801,45.0649],[-74.8801,45.0029],[-75.06625,45.0029],[-75.06625,44.94152],[-75.25394,44.94152],[-75.25394,44.8776],[-75.37896,44.8776],[-75.37896,44.81535],[-75.44313,44.81535],[-75.44313,44.75361],[-75.56666,44.75361],[-75.56666,44.69099],[-75.62902,44.69099],[-75.62902,44.6285],[-75.75405,44.6285],[-75.75405,44.56638],[-75.81731,44.56638],[-75.81731,44.50289],[-75.87995,44.50289],[-75.87995,44.37849],[-76.13003,44.37849],[-76.13003,44.31592],[-76.1927,44.31592],[-76.1927,44.25344],[-76.31826,44.25344],[-76.31826,44.19167],[-76.3793,44.19167],[-76.3793,44.06537],[-76.44276,44.06537],[-76.44276,43.99638],[-76.31703,43.99638],[-76.31703,43.94146],[-76.50766,43.94146],[-76.50766,43.87233],[-76.383,43.87233],[-76.383,43.80919],[-76.25341,43.80919],[-76.25341,43.56652],[-76.50648,43.56652],[-76.50648,43.50339],[-76.63312,43.50339],[-76.63312,43.44323],[-76.69511,43.44323],[-76.69511,43.37869],[-76.81778,43.37869],[-76.81778,43.31807],[-77.682,43.31807],[-77.682,43.37894],[-78.05659,43.37894],[-78.05659,43.43969],[-78.43897,43.43969],[-78.43897,43.37944],[-78.88034,43.37944],[-78.88034,43.31497],[-79.12989,43.31497],[-79.12989,43.24293],[-79.06696,43.24293],[-79.06696,43.12999],[-79.12989,43.12999],[-79.12989,43.05773],[-79.07126,43.05773],[-79.07126,42.92949],[-78.94326,42.92949],[-78.94326,42.75422],[-79.06944,42.75422],[-79.06944,42.69416],[-79.13344,42.69416],[-79.13344,42.6297],[-79.19475,42.6297],[-79.19475,42.56635],[-79.37868,42.56635],[-79.37868,42.50334],[-79.4443,42.50334],[-79.4443,42.44106],[-79.56799,42.44106],[-79.56799,42.37753],[-79.69062,42.37753],[-79.69062,42.31711],[-79.81646,42.31711],[-79.81646,42.25345],[-80.00524,42.25345],[-80.00524,42.19092],[-80.19168,42.19092],[-80.19168,42.12726],[-80.3168,42.12726],[-80.3168,42.06699],[-80.50632,42.06699],[-80.50632,42.00343],[-80.69305,42.00343],[-80.69305,41.94151],[-80.94404,41.94151],[-80.94404,41.87812],[-81.19427,41.87812],[-81.19427,41.81665],[-81.31901,41.81665],[-81.31901,41.75455],[-81.44184,41.75455],[-81.44184,41.69096],[-81.50535,41.69096],[-81.50535,41.63016],[-82.74701,41.63016],[-82.74701,41.75369],[-82.88391,41.75369],[-82.88391,41.56561],[-82.99572,41.56561],[-82.99572,41.62704],[-83.12578,41.62704],[-83.12578,41.68784],[-83.24747,41.68784],[-83.24747,41.75369],[-83.37373,41.75369],[-83.37373,41.80928],[-83.3106,41.80928],[-83.3106,41.87161],[-83.24747,41.87161],[-83.24747,41.93614],[-83.18434,41.93614],[-83.18434,41.99609],[-83.12077,41.99609],[-83.12077,42.24648],[-83.05892,42.24648],[-83.05892,42.30896],[-82.86853,42.30896],[-82.86853,42.37177],[-82.80722,42.37177],[-82.80722,42.55855],[-82.75537,42.55855],[-82.75537,42.49549],[-82.5599,42.49549],[-82.5599,42.55855],[-82.49678,42.55855],[-82.49678,42.68336],[-82.43289,42.68336],[-82.43289,42.93422],[-82.37006,42.93422],[-82.37006,43.06481],[-82.43289,43.06481],[-82.43289,43.19176],[-82.49475,43.19176],[-82.49475,43.50346],[-82.55713,43.50346],[-82.55713,43.81609],[-82.61979,43.81609],[-82.61979,43.94221],[-82.68395,43.94221],[-82.68395,44.00226],[-82.74653,44.00226],[-82.74653,44.06705],[-82.87087,44.06705],[-82.87087,44.12919],[-83.00852,44.12919],[-83.00852,44.06648],[-83.13361,44.06648],[-83.13361,44.00539],[-83.24145,44.00539],[-83.24145,44.9962],[-83.18061,44.9962],[-83.18061,45.0673],[-83.24552,45.0673],[-83.24552,45.12874],[-83.30659,45.12874],[-83.30659,45.25515],[-83.37061,45.25515],[-83.37061,45.31659],[-83.43256,45.31659],[-83.43256,45.37921],[-83.61784,45.37921],[-83.61784,45.44197],[-83.80843,45.44197],[-83.80843,45.50362],[-84.05507,45.50362],[-84.05507,45.56479],[-84.12352,45.56479],[-84.12352,45.62878],[-84.18075,45.62878],[-84.18075,45.69147],[-84.31116,45.69147],[-84.31116,45.93371],[-83.821,45.93371],[-83.821,45.87251],[-83.49681,45.87251],[-83.49681,45.93371],[-83.43381,45.93371],[-83.43381,46.00169],[-83.49627,46.00169],[-83.49627,46.06682],[-83.56,46.06682],[-83.56,46.12616],[-83.99546,46.12616],[-83.99546,46.19317],[-84.05918,46.19317],[-84.05918,46.3815],[-84.11526,46.3815],[-84.11526,46.49536],[-84.05918,46.49536],[-84.05918,46.56827],[-84.25795,46.56827],[-84.25795,46.50512],[-84.30719,46.50512],[-84.30719,46.56827],[-84.44154,46.56827],[-84.44154,46.50453],[-84.99657,46.50453],[-84.99657,46.68429],[-84.92982,46.68429],[-84.92982,46.81808],[-85.31659,46.81808],[-85.31659,46.75358],[-87.55626,46.75358],[-87.55626,47.44074],[-87.68254,47.44074],[-87.68254,47.50356],[-88.25607,47.50356],[-88.25607,47.44337],[-88.44174,47.44337],[-88.44174,47.37899],[-88.50683,47.37899],[-88.50683,47.31539],[-88.63128,47.31539],[-88.63128,47.25398],[-88.75696,47.25398],[-88.75696,47.19347],[-88.88383,47.19347],[-88.88383,47.12847],[-88.94342,47.12847],[-88.94342,47.06621],[-89.07087,47.06621],[-89.07087,47.00268],[-89.25656,47.00268],[-89.25656,46.94108],[-90.36777,46.94108],[-90.36777,47.68448],[-90.307,47.68448],[-90.307,47.74602],[-89.99486,47.74602],[-89.99486,47.80827],[-89.80486,47.80827],[-89.80486,47.87006],[-89.67977,47.87006],[-89.67977,47.93396],[-89.49338,47.93396],[-89.49338,47.9958],[-89.42847,47.9958],[-89.42847,48.06564],[-89.99327,48.06564],[-89.99327,48.1283],[-90.74559,48.1283],[-90.74559,48.18931],[-90.80873,48.18931],[-90.80873,48.25221],[-91.06776,48.25221],[-91.06776,48.19167],[-91.19462,48.19167],[-91.19462,48.1279],[-91.68142,48.1279],[-91.68142,48.2526],[-91.93219,48.2526],[-91.93219,48.31425],[-91.99297,48.31425],[-91.99297,48.37808],[-92.31894,48.37808],[-92.31894,48.25291],[-92.37322,48.25291],[-92.37322,48.31534],[-92.43223,48.31534],[-92.43223,48.44114],[-92.49772,48.44114],[-92.49772,48.50178],[-92.56794,48.50178],[-92.56794,48.43958],[-92.62105,48.43958],[-92.62105,48.56508],[-92.80868,48.56508],[-92.80868,48.62869],[-92.80868,48.62674],[-92.93318,48.62674],[-92.93318,48.69221],[-93.00517,48.69221],[-93.00517,48.6283],[-93.12259,48.6283],[-93.12259,48.69221],[-93.31908,48.69221],[-93.31908,48.62674],[-93.50495,48.62674],[-93.50495,48.56352],[-93.74746,48.56352],[-93.74746,48.62674],[-93.81355,48.62674],[-93.81355,48.68988],[-94.24531,48.68988],[-94.24531,48.75543],[-94.61832,48.75543],[-94.61832,48.94104],[-94.6809,48.94104],[-94.6809,49.00297],[-94.74415,49.00297],[-94.74415,49.25361],[-94.80841,49.25361],[-94.80841,49.37841],[-95.11924,49.37841],[-95.11924,49.44253],[-95.19343,49.44253],[-95.19343,49.00353],[-96.87069,49.00353],[-96.87069,49.06561],[-99.00493,49.06561],[-99.00493,49.00507],[-109.36993,49.00507],[-109.36993,49.06682],[-109.50587,49.06682],[-109.50587,49.00507],[-114.183,49.00507],[-114.183,49.06873],[-114.75787,49.06873],[-114.75787,49.00507],[-115.43373,49.00507],[-115.43373,49.06714],[-116.50627,49.06714],[-116.50627,49.00507],[-117.30895,49.00507],[-117.30895,49.06598],[-119.88295,49.06598],[-119.88295,49.00507],[-120.12086,49.00507],[-120.12086,49.06784],[-121.44516,49.06784],[-121.44516,49.00507],[-121.93118,49.00507],[-121.93118,49.06561],[-122.81748,49.06561],[-122.81748,49.00291],[-122.87952,49.00291],[-122.87952,48.9347],[-122.81746,48.9347],[-122.81746,48.8102],[-122.75389,48.8102],[-122.75389,48.75338],[-122.87129,48.75338],[-122.87129,48.81539],[-123.00554,48.81539],[-123.00554,48.75295],[-123.12969,48.75295],[-123.12969,48.69022],[-123.18382,48.69022],[-123.18382,48.7529],[-123.25493,48.7529]],[[-122.93417,37.75215],[-122.93475,37.6842],[-123.0679,37.6849],[-123.06737,37.74753],[-123.12926,37.74785],[-123.12869,37.81569],[-123.05907,37.81532],[-123.05959,37.75281],[-122.93417,37.75215]],[[-71.62995,41.25409],[-71.49665,41.25414],[-71.49656,41.12297],[-71.62986,41.12291],[-71.62995,41.25409]],[[-70.31843,41.37752],[-70.31834,41.24482],[-70.19066,41.24487],[-70.19062,41.1886],[-69.9336,41.1887],[-69.93373,41.37919],[-69.99507,41.37917],[-69.99511,41.44316],[-70.07078,41.44313],[-70.0707,41.31449],[-70.24617,41.31443],[-70.24621,41.37755],[-70.31843,41.37752]],[[-68.94034,43.94041],[-68.68569,43.9405],[-68.68565,43.87218],[-68.74654,43.87216],[-68.7465,43.81025],[-68.80908,43.81023],[-68.80903,43.74673],[-68.87731,43.7467],[-68.87735,43.81178],[-68.94025,43.81176],[-68.94034,43.94041]],[[-123.12915,49.06451],[-122.99542,49.06451],[-122.99542,48.93432],[-123.12915,48.93432],[-123.12915,49.06451]],[[-82.94071,24.75359],[-82.87194,24.75359],[-82.87194,24.69057],[-82.74462,24.69057],[-82.74462,24.62146],[-82.8088,24.62146],[-82.8088,24.55949],[-82.94071,24.55949],[-82.94071,24.75359]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"US","description":"The most recent year of DOQQs from the National Agriculture Imagery Program (NAIP) for each state in the contiguous United States.","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USDA.png","id":"USDA-NAIP","max_zoom":20,"min_zoom":12,"name":"National Agriculture Imagery Program","type":"wms","url":"https://gis.apfo.usda.gov/arcgis/services/NAIP/USDA_CONUS_PRIME/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.15715,68.72197],[-164.8554,67.02551],[-168.0022,66.00175],[-169.00874,66.00155],[-169.00754,64.99877],[-172.51433,63.87673],[-173.8197,59.74014],[-162.50181,58.00058],[-160.0159,58.00124],[-160.01497,57.00003],[-160.50548,56.9999],[-165.80926,54.82485],[-178.0001,52.24465],[-177.9993,51.25543],[-171.46891,51.82153],[-162.40251,53.95666],[-159.00757,55.0025],[-158.01907,55.00278],[-151.99632,55.99919],[-151.50034,57.99879],[-151.50129,58.99198],[-138.516,58.99532],[-138.51505,57.99864],[-133.99482,54.00317],[-130.00444,54.00434],[-130.00708,57.00005],[-131.97588,56.99952],[-135.12299,59.7566],[-138.00718,59.9918],[-139.17159,60.41272],[-140.9874,61.01186],[-140.9684,69.95351],[-156.17689,71.56333],[-160.41363,70.73977],[-163.02183,69.97074],[-164.9717,68.99469],[-167.15715,68.72197]]],"type":"Polygon"},"properties":{"country_code":"US","description":"Highway: Green casing = unclassified. Brown casing = track. Surface: gravel = light brown fill, Asphalt = black, paved = gray, ground =white, concrete = blue, grass = green. Seasonal = white bars","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USForestService-overlay.png","id":"US_Forest_Service_roads_overlay","max_zoom":20,"name":"U.S. Forest Roads Overlay","overlay":true,"type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/glassman/cjf4qjmps0tgv2qpahj977mvz/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1IjoiZ2xhc3NtYW4iLCJhIjoiRjk3dWdwYyJ9.Tg_fMJWxygeKBgVTrZHmGA"},"type":"Feature"},{"geometry":{"coordinates":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.15715,68.72197],[-164.8554,67.02551],[-168.0022,66.00175],[-169.00874,66.00155],[-169.00754,64.99877],[-172.51433,63.87673],[-173.8197,59.74014],[-162.50181,58.00058],[-160.0159,58.00124],[-160.01497,57.00003],[-160.50548,56.9999],[-165.80926,54.82485],[-178.0001,52.24465],[-177.9993,51.25543],[-171.46891,51.82153],[-162.40251,53.95666],[-159.00757,55.0025],[-158.01907,55.00278],[-151.99632,55.99919],[-151.50034,57.99879],[-151.50129,58.99198],[-138.516,58.99532],[-138.51505,57.99864],[-133.99482,54.00317],[-130.00444,54.00434],[-130.00708,57.00005],[-131.97588,56.99952],[-135.12299,59.7566],[-138.00718,59.9918],[-139.17159,60.41272],[-140.9874,61.01186],[-140.9684,69.95351],[-156.17689,71.56333],[-160.41363,70.73977],[-163.02183,69.97074],[-164.9717,68.99469],[-167.15715,68.72197]]],"type":"Polygon"},"properties":{"country_code":"US","id":"US_Forest_Service_roads","max_zoom":19,"name":"U.S. Forest Service roads","type":"tms","url":"https://osm.cycle.travel/forest/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-79.12989,43.31497],[-79.12989,43.24293],[-79.06696,43.24293],[-79.06696,43.13],[-79.12989,43.13],[-79.12989,43.05773],[-79.07126,43.05773],[-79.07126,42.92949],[-78.94326,42.92949],[-78.94326,42.75422],[-82.67886,41.67159],[-82.88391,41.75369],[-83.12077,41.99609],[-83.12077,42.24648],[-83.05892,42.24648],[-83.05892,42.30896],[-82.86853,42.30896],[-82.86853,42.37177],[-82.5599,42.49549],[-82.5599,42.55855],[-82.49678,42.55855],[-82.49678,42.68336],[-82.43289,42.68336],[-82.43289,42.93422],[-82.37006,42.93422],[-82.37006,43.06481],[-82.51953,45.33698],[-83.49681,45.87251],[-83.49681,45.93371],[-83.43381,45.93371],[-83.43381,46.00169],[-83.56,46.12616],[-83.99546,46.12616],[-83.99546,46.19317],[-84.05918,46.19317],[-84.05918,46.3815],[-84.11526,46.3815],[-84.11526,46.49536],[-84.05918,46.49536],[-84.05918,46.56827],[-84.25795,46.56827],[-84.25795,46.50512],[-84.30719,46.50512],[-84.30719,46.56827],[-84.44154,46.56827],[-84.44154,46.50453],[-84.60983,46.50453],[-84.76227,46.63341],[-84.86115,46.88929],[-88.3882,48.30154],[-89.42847,48.06564],[-89.99327,48.06564],[-89.99327,48.1283],[-90.74559,48.1283],[-90.74559,48.18931],[-90.80873,48.18931],[-90.80873,48.25221],[-91.06776,48.25221],[-91.06776,48.19167],[-91.19462,48.19167],[-91.19462,48.1279],[-91.68142,48.1279],[-91.68142,48.2526],[-91.93219,48.2526],[-91.93219,48.31425],[-91.99297,48.31425],[-91.99297,48.37808],[-92.31894,48.37808],[-92.31894,48.25291],[-92.37322,48.25291],[-92.37322,48.31534],[-92.43223,48.31534],[-92.43223,48.44114],[-92.49772,48.44114],[-92.49772,48.50178],[-92.56794,48.50178],[-92.56794,48.43958],[-92.62105,48.43958],[-92.62105,48.56508],[-92.80868,48.56508],[-92.80868,48.62674],[-92.93318,48.62674],[-92.93318,48.69221],[-93.00517,48.69221],[-93.00517,48.6283],[-93.12259,48.6283],[-93.12259,48.69221],[-93.31908,48.69221],[-93.31908,48.62674],[-93.50495,48.62674],[-93.50495,48.56352],[-93.74746,48.56352],[-93.74746,48.62674],[-93.81355,48.62674],[-93.81355,48.68988],[-94.24531,48.68988],[-94.24531,48.75543],[-94.61832,48.75543],[-94.61832,48.94104],[-94.6809,48.94104],[-94.6809,49.00297],[-94.74415,49.00297],[-94.74415,49.25361],[-94.80841,49.25361],[-94.80841,49.37841],[-95.11924,49.37841],[-95.11924,49.44253],[-95.19343,49.44253],[-95.19343,49.00353],[-96.87069,49.00353],[-96.87069,49.06561],[-99.00493,49.06561],[-99.00493,49.00507],[-109.36993,49.00507],[-109.36993,49.06682],[-109.50587,49.06682],[-109.50587,49.00507],[-114.183,49.00507],[-114.183,49.06873],[-114.75787,49.06873],[-114.75787,49.00507],[-115.43373,49.00507],[-115.43373,49.06714],[-116.50627,49.06714],[-116.50627,49.00507],[-117.30895,49.00507],[-117.30895,49.06598],[-119.88295,49.06598],[-119.88295,49.00507],[-120.12086,49.00507],[-120.12086,49.06784],[-121.44516,49.06784],[-121.44516,49.00507],[-121.93118,49.00507],[-121.93118,49.06561],[-123.12915,49.06451],[-123.12915,48.93432],[-123.00554,48.75295],[-123.12969,48.75295],[-123.12969,48.69022],[-123.18382,48.69022],[-123.18382,48.7529],[-123.25493,48.7529],[-123.25493,48.55923],[-123.19222,48.55923],[-123.19222,48.43484],[-123.25411,48.19051],[-124.05826,48.19084],[-124.05826,48.25344],[-124.18152,48.25344],[-124.18152,48.31647],[-124.43191,48.31647],[-124.43191,48.37826],[-124.55646,48.37826],[-124.55646,48.44083],[-124.75551,48.44083],[-139,48.45],[-139,32.5],[-117.18748,32.5],[-116.7465,32.49746],[-116.7465,32.56092],[-115.99701,32.56092],[-115.99701,32.62649],[-115.12495,32.62474],[-115.12495,32.68749],[-114.81241,32.68749],[-114.81261,32.62524],[-114.87531,32.62557],[-114.88081,32.43408],[-114.62945,32.43408],[-114.62945,32.37316],[-114.44474,32.37316],[-114.44474,32.30754],[-114.25576,32.30754],[-114.25576,32.24446],[-114.06803,32.24446],[-114.06803,32.18291],[-113.81665,32.18291],[-113.81665,32.12076],[-113.63074,32.12076],[-113.63074,32.05651],[-113.44175,32.05651],[-113.44175,31.99844],[-113.2546,31.99844],[-113.2546,31.93254],[-113.06807,31.93254],[-113.06807,31.87181],[-112.81611,31.87181],[-112.81611,31.81042],[-112.63088,31.81042],[-112.63088,31.74647],[-112.44189,31.74647],[-112.44189,31.6856],[-112.25719,31.6856],[-112.25719,31.62104],[-112.00338,31.62104],[-112.00338,31.55958],[-111.81562,31.55958],[-111.81562,31.49702],[-111.62786,31.49702],[-111.62786,31.434],[-111.4419,31.434],[-111.4419,31.37339],[-111.25597,31.37339],[-111.25597,31.31132],[-108.18458,31.31132],[-108.18458,31.74595],[-106.50651,31.74595],[-106.50651,31.68423],[-106.37973,31.68423],[-106.37973,31.62175],[-106.31743,31.62175],[-106.31743,31.49682],[-106.25518,31.49682],[-106.25518,31.43449],[-106.19247,31.43449],[-106.19247,31.37213],[-106.00392,31.37213],[-106.00392,31.30933],[-105.94166,31.30933],[-105.94166,31.24575],[-105.87982,31.24575],[-105.87982,31.18362],[-105.81623,31.18362],[-105.81623,31.12072],[-105.69212,31.12072],[-105.69212,31.05848],[-105.63029,31.05848],[-105.63029,30.93283],[-105.50444,30.93283],[-105.50444,30.87159],[-105.4413,30.87159],[-105.4413,30.80846],[-105.37815,30.80846],[-105.37815,30.74718],[-105.19047,30.74718],[-105.19047,30.68432],[-105.12862,30.68432],[-105.12862,30.61997],[-105.00365,30.61997],[-105.00365,30.55891],[-104.9418,30.55891],[-104.9418,30.49632],[-104.8782,30.49632],[-104.8782,30.30983],[-104.81553,30.30983],[-104.81553,30.24783],[-104.75361,30.24783],[-104.75361,29.93539],[-104.69095,29.93539],[-104.69095,29.80902],[-104.62913,29.80902],[-104.62913,29.68436],[-104.56599,29.68436],[-104.56599,29.62235],[-104.50372,29.62235],[-104.50372,29.55954],[-104.44101,29.55954],[-104.44101,29.49748],[-104.25376,29.49748],[-104.25376,29.37167],[-104.1292,29.37167],[-104.1292,29.30916],[-104.06887,29.30916],[-104.06887,29.24673],[-103.81873,29.24673],[-103.81873,29.18431],[-103.75574,29.18431],[-103.75574,29.12232],[-103.56675,29.12232],[-103.56675,29.05981],[-103.50498,29.05981],[-103.50498,28.99675],[-103.31658,28.99675],[-103.31658,28.93469],[-103.05976,28.93469],[-103.05976,29.0593],[-102.99797,29.0593],[-102.99797,29.12129],[-102.93314,29.12129],[-102.93314,29.18486],[-102.8096,29.18486],[-102.8096,29.25262],[-102.87013,29.25262],[-102.87013,29.3081],[-102.80967,29.3081],[-102.80967,29.37155],[-102.74757,29.37155],[-102.74757,29.55819],[-102.68455,29.55819],[-102.68455,29.68477],[-102.49678,29.68477],[-102.49678,29.74577],[-102.30866,29.74577],[-102.30866,29.80866],[-102.19093,29.80866],[-102.19093,29.74601],[-101.50499,29.74601],[-101.50499,29.68468],[-101.38058,29.68468],[-101.38058,29.55945],[-101.31751,29.55945],[-101.31751,29.49589],[-101.19101,29.49589],[-101.19101,29.43261],[-101.0675,29.43261],[-101.0675,29.30881],[-100.94189,29.30881],[-100.94189,29.24562],[-100.81673,29.24562],[-100.81673,29.11904],[-100.75227,29.11904],[-100.75227,29.05782],[-100.69254,29.05782],[-100.69254,28.87204],[-100.62902,28.87204],[-100.62902,28.80954],[-100.56799,28.80954],[-100.56799,28.62255],[-100.50404,28.62255],[-100.50404,28.55838],[-100.44218,28.55838],[-100.44218,28.49683],[-100.37943,28.49683],[-100.37943,28.30929],[-100.31719,28.30929],[-100.31719,28.18357],[-100.25448,28.18357],[-100.25448,28.12139],[-100.12823,28.12139],[-100.12823,28.05921],[-100.06595,28.05921],[-100.06595,27.99661],[-100.00239,27.99661],[-100.00239,27.93322],[-99.94265,27.93322],[-99.94265,27.74547],[-99.81685,27.74547],[-99.81685,27.68343],[-99.75413,27.68343],[-99.75413,27.62215],[-99.62916,27.62215],[-99.62916,27.5589],[-99.56728,27.5589],[-99.56728,27.43538],[-99.50418,27.43538],[-99.50418,27.3774],[-99.56718,27.3774],[-99.56718,27.24637],[-99.50498,27.24637],[-99.50498,26.99656],[-99.44274,26.99656],[-99.44274,26.8728],[-99.38006,26.8728],[-99.38006,26.80682],[-99.31907,26.80682],[-99.31907,26.74736],[-99.25375,26.74736],[-99.25375,26.62101],[-99.19106,26.62101],[-99.19106,26.49567],[-99.13006,26.49567],[-99.13006,26.37138],[-99.00295,26.37138],[-99.00295,26.30938],[-98.81657,26.30938],[-98.81657,26.24578],[-98.69201,26.24578],[-98.69201,26.18371],[-98.44409,26.18371],[-98.44409,26.12172],[-98.38232,26.12172],[-98.38232,26.05965],[-98.25327,26.05965],[-98.25327,25.99869],[-98.01091,25.99869],[-98.01091,25.99323],[-97.69323,25.99323],[-97.69323,25.93341],[-97.63139,25.93341],[-97.63139,25.86959],[-97.50468,25.86959],[-97.50468,25.80735],[-97.30834,25.80735],[-97.30834,25.87312],[-97.24563,25.87312],[-97.24563,25.93537],[-97.11389,25.93537],[-80.7,24],[-79.314,27.108],[-66.93111,44.74737],[-66.93111,44.94066],[-66.99468,44.94066],[-66.99468,45.00245],[-67.05958,45.00245],[-67.05958,45.12734],[-67.1202,45.12734],[-67.1202,45.19101],[-67.24698,45.19101],[-67.24698,45.25344],[-67.31775,45.25344],[-67.31775,45.18984],[-67.37075,45.18984],[-67.37075,45.2534],[-67.43269,45.2534],[-67.43269,45.30834],[-67.37086,45.30834],[-67.37086,45.4397],[-67.43056,45.4397],[-67.43056,45.49501],[-67.37099,45.49501],[-67.37099,45.62645],[-67.6215,45.62645],[-67.6215,45.68961],[-67.68383,45.68961],[-67.68383,45.75326],[-67.74621,45.75326],[-67.74621,47.12682],[-67.87001,47.12682],[-67.87001,47.19003],[-67.93238,47.19003],[-67.93238,47.25397],[-67.99594,47.25397],[-67.99594,47.31497],[-68.12067,47.31497],[-68.12067,47.37808],[-68.44232,47.37808],[-68.44232,47.31661],[-68.63143,47.31661],[-68.63143,47.25447],[-68.9978,47.25447],[-68.9978,47.43989],[-69.06072,47.43989],[-69.06072,47.50476],[-69.25381,47.50476],[-69.25381,47.43981],[-69.31793,47.43981],[-69.31793,47.3786],[-69.44385,47.3786],[-69.44385,47.31563],[-69.50382,47.31563],[-69.50382,47.25258],[-69.56678,47.25258],[-69.56678,47.19109],[-69.63035,47.19109],[-69.63035,47.1287],[-69.69331,47.1287],[-69.69331,47.06543],[-69.75571,47.06543],[-69.75571,47.00428],[-69.81804,47.00428],[-69.81804,46.94153],[-69.8804,46.94153],[-69.8804,46.87925],[-69.94217,46.87925],[-69.94217,46.81774],[-70.00631,46.81774],[-70.00631,46.69203],[-70.07043,46.69203],[-70.07043,46.44259],[-70.19459,46.44259],[-70.19459,46.37859],[-70.2562,46.37859],[-70.2562,46.31526],[-70.32037,46.31526],[-70.32037,46.06512],[-70.3815,46.06512],[-70.3815,45.93552],[-70.32016,45.93552],[-70.32016,45.87948],[-70.44931,45.87948],[-70.44931,45.75387],[-70.507,45.75387],[-70.507,45.69169],[-70.63166,45.69169],[-70.63166,45.62916],[-70.75755,45.62916],[-70.75755,45.44147],[-70.88099,45.44147],[-70.88099,45.37806],[-71.13328,45.37806],[-71.13328,45.31515],[-71.38303,45.31515],[-71.38303,45.25342],[-71.50764,45.25342],[-71.50764,45.06557],[-73.94189,45.06557],[-73.94189,45.00312],[-74.74697,45.00312],[-74.74697,45.0649],[-74.8801,45.0649],[-74.8801,45.0029],[-75.06625,45.0029],[-75.06625,44.94152],[-75.25394,44.94152],[-75.25394,44.8776],[-75.37896,44.8776],[-75.37896,44.81535],[-75.44313,44.81535],[-75.44313,44.75361],[-75.56666,44.75361],[-75.56666,44.691],[-75.62902,44.691],[-75.62902,44.6285],[-75.75405,44.6285],[-75.75405,44.56638],[-75.81731,44.56638],[-75.81731,44.50289],[-75.87995,44.50289],[-75.87995,44.37849],[-76.13003,44.37849],[-76.13003,44.31592],[-76.1927,44.31592],[-76.1927,44.25344],[-76.31826,44.25344],[-76.31826,44.19167],[-76.3793,44.19167],[-76.3793,44.06537],[-76.80375,43.64253],[-79.12989,43.31497]]],"type":"Polygon"},"properties":{"country_code":"US","description":"Public domain aerial imagery, mostly NAIP","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png","id":"USGS-Imagery","max_zoom":20,"min_zoom":12,"name":"USGS Imagery","privacy_policy_url":"https://www.usgs.gov/privacy-policies","type":"tms","url":"https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[-55.99594,52.00107],[-112.02896,52.00107],[-112.03995,56.01308],[-120.00494,56.00592],[-120.01712,60.01202],[-132.00197,60.00239],[-132.01208,63.00193],[-133.96883,63.0005],[-133.9724,63.99225],[-141.04429,63.98726],[-141.06879,69.92046],[-156.24893,71.51583],[-160.44571,70.83527],[-167.08145,68.42906],[-164.08218,67.03914],[-169.01504,65.68269],[-166.57608,64.50778],[-161.82999,64.05006],[-165.08194,63.2603],[-168.02628,59.78623],[-162.53311,59.73089],[-162.35733,58.55905],[-157.83096,58.31753],[-158.00674,57.52404],[-168.22403,53.51022],[-166.55411,53.14277],[-158.77579,54.88541],[-158.6824,55.74964],[-156.55106,56.00848],[-156.15555,56.77466],[-154.70535,56.14337],[-152.07413,57.37035],[-151.62918,58.22653],[-152.00821,58.98056],[-145.9877,60.24741],[-140.38467,59.48634],[-136.53946,57.8061],[-133.79288,54.83483],[-133.33145,53.14277],[-131.46378,51.69838],[-128.52493,51.74602],[-129.79385,50.90159],[-124.56436,47.49786],[-124.03702,45.48627],[-124.6962,42.90428],[-124.49844,40.34146],[-122.80655,37.53929],[-119.99405,33.37085],[-117.24747,32.5412],[-111.13907,31.1977],[-106.70059,31.23529],[-103.20694,28.64618],[-101.84463,29.8158],[-99.20792,26.28744],[-96.79092,25.75432],[-96.92276,27.96911],[-93.47305,29.68226],[-88.94669,28.87732],[-88.6171,30.17736],[-86.2001,30.36713],[-84.96963,29.43379],[-84.09073,30.06333],[-82.97012,28.95426],[-82.97012,27.26824],[-81.25626,25.07956],[-82.09122,24.56105],[-80.06973,24.76073],[-79.85001,27.11188],[-81.27823,30.70777],[-78.99307,33.20554],[-75.03799,35.5983],[-75.85098,37.24252],[-73.74161,40.4586],[-69.89639,41.60224],[-70.68741,43.17629],[-66.93008,44.69516],[-66.53458,43.08007],[-64.20547,43.35229],[-59.50333,45.73221],[-59.51431,46.24762],[-60.0032,46.25901],[-59.99222,47.24506],[-59.00894,47.2376],[-58.99796,47.50267],[-56.51504,47.50267],[-56.52603,46.7477],[-53.99918,46.7477],[-53.9772,46.48358],[-52.49405,46.46354],[-52.50504,48.75361],[-52.99667,48.75451],[-53.01315,49.99551],[-55.00168,50.0061],[-55.03738,53.74721],[-56.00418,53.73421],[-55.99594,52.00107]],[[-59.50127,43.74954],[-60.5024,43.74954],[-60.5024,44.0],[-59.9984,44.0],[-59.9984,44.2494],[-59.50127,44.2494],[-59.50127,43.74954]],[[-155.95024,20.49523],[-157.32675,20.49153],[-157.32903,21.23181],[-155.95251,21.23549],[-155.95024,20.49523]],[[-157.64488,21.24845],[-158.28534,21.24674],[-158.2869,21.74996],[-157.64643,21.75167],[-157.64488,21.24845]],[[-156.12602,20.3247],[-154.74617,20.32841],[-154.74174,18.87578],[-156.1216,18.87203],[-156.12602,20.3247]],[[-159.29077,22.24504],[-159.2893,21.76857],[-160.28917,21.76591],[-160.29064,22.24239],[-159.29077,22.24504]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Caltopo","url":"https://caltopo.com"},"country_code":"US","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png","id":"USGS-Scanned_Topographic","max_zoom":16,"name":"USGS Topographic Maps","type":"tms","url":"https://caltopo.s3.amazonaws.com/topo/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[-109.06765,39.37875],[-107.37012,39.37962],[-107.36995,39.18422],[-107.49574,39.18416],[-107.49568,39.12133],[-107.62081,39.12126],[-107.62076,39.05974],[-107.68231,39.05971],[-107.68226,38.99652],[-107.81774,38.99645],[-107.81779,39.05859],[-107.86948,39.05856],[-107.86943,38.99769],[-108.05698,38.99759],[-108.05688,38.87126],[-108.18204,38.8712],[-108.18198,38.8081],[-108.37142,38.808],[-108.3711,38.43452],[-109.06685,38.43416],[-109.06765,39.37875]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Mesa County GIS","url":"https://gis.mesacounty.us/"},"available_projections":["EPSG:4326","EPSG:3742"],"country_code":"US","end_date":"2015","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png","id":"MCGIS-County-NAIP-Imagery-2015","license_url":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/co/Mesa_County_Data.pdf","max_zoom":20,"name":"Mesa County GIS NAIP 2015","permission_osm":"implicit","privacy_policy_url":"https://www.mesacounty.us/contact-us/copyrightdisclaimerprivacy/","start_date":"2015","type":"wms","url":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/MesaCounty_2015/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-109.06765,39.37875],[-107.37012,39.37962],[-107.36995,39.18422],[-107.49574,39.18416],[-107.49568,39.12133],[-107.62081,39.12126],[-107.62076,39.05974],[-107.68231,39.05971],[-107.68226,38.99652],[-107.81774,38.99645],[-107.81779,39.05859],[-107.86948,39.05856],[-107.86943,38.99769],[-108.05698,38.99759],[-108.05688,38.87126],[-108.18204,38.8712],[-108.18198,38.8081],[-108.37142,38.808],[-108.3711,38.43452],[-109.06685,38.43416],[-109.06765,39.37875]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Mesa County GIS","url":"https://gis.mesacounty.us/"},"available_projections":["EPSG:4326","EPSG:3742"],"country_code":"US","end_date":"2017-10-24","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png","id":"MCGIS-County-NAIP-Imagery-2017","license_url":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/co/Mesa_County_Data.pdf","max_zoom":13,"name":"Mesa County GIS NAIP 2017","permission_osm":"implicit","privacy_policy_url":"https://www.mesacounty.us/contact-us/copyrightdisclaimerprivacy/","start_date":"2017-08-26","type":"wms","url":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/NAIP_2017/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-109.06765,39.37875],[-107.37012,39.37962],[-107.36995,39.18422],[-107.49574,39.18416],[-107.49568,39.12133],[-107.62081,39.12126],[-107.62076,39.05974],[-107.68231,39.05971],[-107.68226,38.99652],[-107.81774,38.99645],[-107.81779,39.05859],[-107.86948,39.05856],[-107.86943,38.99769],[-108.05698,38.99759],[-108.05688,38.87126],[-108.18204,38.8712],[-108.18198,38.8081],[-108.37142,38.808],[-108.3711,38.43452],[-109.06685,38.43416],[-109.06765,39.37875]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Mesa County GIS","url":"http://gis.mesacounty.us/"},"available_projections":["EPSG:3742"],"best":true,"country_code":"US","end_date":"2019","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png","id":"MCGIS-County-NAIP-Imagery-2019","license_url":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/co/Mesa_County_Data.pdf","max_zoom":12,"min_zoom":0,"name":"Mesa County GIS NAIP 2019","permission_osm":"implicit","privacy_policy_url":"https://www.mesacounty.us/contact-us/copyrightdisclaimerprivacy/","start_date":"2019","type":"wmts","url":"https://mcgis.mesacounty.us/image/rest/services/Mosaic_Datasets/MesaCounty_2019/ImageServer/WMTS/1.0.0/WMTSCapabilities.xml"},"type":"Feature"},{"geometry":{"coordinates":[[[-108.93915,39.23931],[-108.86841,39.23846],[-108.86843,39.23734],[-108.81245,39.23666],[-108.81274,39.22256],[-108.79405,39.22234],[-108.79432,39.20857],[-108.70096,39.20745],[-108.70123,39.1939],[-108.60764,39.19277],[-108.60791,39.17906],[-108.58915,39.17884],[-108.58943,39.1649],[-108.53332,39.16422],[-108.53361,39.14993],[-108.51461,39.14971],[-108.51489,39.13611],[-108.44076,39.13522],[-108.44104,39.12109],[-108.42192,39.12086],[-108.42201,39.1163],[-108.3984,39.11602],[-108.39798,39.13708],[-108.32446,39.13619],[-108.32416,39.15107],[-108.30718,39.15087],[-108.3066,39.18],[-108.28866,39.17979],[-108.28807,39.20939],[-108.26868,39.20916],[-108.26957,39.16484],[-108.2864,39.16505],[-108.28699,39.13571],[-108.30312,39.13591],[-108.3038,39.10194],[-108.32335,39.10218],[-108.32328,39.10574],[-108.32914,39.10581],[-108.32943,39.09121],[-108.34736,39.09142],[-108.34764,39.07715],[-108.36637,39.07738],[-108.36666,39.06268],[-108.38569,39.06291],[-108.38599,39.04799],[-108.42216,39.04843],[-108.42245,39.03377],[-108.44051,39.03399],[-108.44137,38.99101],[-108.42193,38.99077],[-108.42252,38.96127],[-108.44162,38.9615],[-108.44133,38.97595],[-108.46034,38.97618],[-108.46006,38.99024],[-108.47877,38.99047],[-108.47848,39.00485],[-108.51515,39.0053],[-108.51519,39.00287],[-108.51825,39.00291],[-108.51821,39.00517],[-108.53414,39.00536],[-108.53397,39.0139],[-108.54342,39.01401],[-108.54336,39.01733],[-108.5455,39.01735],[-108.54548,39.01855],[-108.65864,39.01991],[-108.65778,39.06287],[-108.67867,39.06313],[-108.67837,39.07793],[-108.69699,39.07816],[-108.69671,39.09203],[-108.71557,39.09225],[-108.71529,39.10619],[-108.7388,39.10648],[-108.73853,39.12033],[-108.75744,39.12056],[-108.75686,39.14927],[-108.79422,39.14972],[-108.79393,39.16386],[-108.83224,39.16432],[-108.83196,39.17845],[-108.85061,39.17868],[-108.85033,39.19302],[-108.86938,39.19325],[-108.86906,39.20925],[-108.90237,39.20965],[-108.90208,39.22384],[-108.93946,39.22429],[-108.93915,39.23931]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Mesa County GIS","url":"https://gis.mesacounty.us/"},"available_projections":["EPSG:4326","EPSG:3742"],"country_code":"US","end_date":"2018","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png","id":"MCGIS-County-Valleywide-Imagery-2018","license_url":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/co/Mesa_County_Data.pdf","max_zoom":20,"name":"Mesa County GIS Valleywide 2018","permission_osm":"implicit","privacy_policy_url":"https://www.mesacounty.us/contact-us/copyrightdisclaimerprivacy/","start_date":"2018","type":"wms","url":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/City_Color_2018/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-75.01771,38.45189],[-75.74174,38.44996],[-75.807,39.73907],[-75.75559,39.80106],[-75.64692,39.85638],[-75.47115,39.84646],[-75.37726,39.81478],[-75.48746,39.67181],[-75.50901,39.43446],[-75.39327,39.27784],[-75.30707,39.01667],[-75.19317,38.82219],[-75.05341,38.80876],[-75.01771,38.45189]]],"type":"Polygon"},"properties":{"attribution":{"text":"Digital Aerial Solutions, LLC","url":"https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2012/ImageServer"},"available_projections":["EPSG:3857","EPSG:4326"],"country_code":"US","description":"This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware.","end_date":"2012","id":"Delaware2012Orthophotography","name":"Delaware 2012 Orthophotography","start_date":"2012","type":"wms","url":"https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2012/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-75.01771,38.45189],[-75.74174,38.44996],[-75.807,39.73907],[-75.75559,39.80106],[-75.64692,39.85638],[-75.47115,39.84646],[-75.37726,39.81478],[-75.48746,39.67181],[-75.50901,39.43446],[-75.39327,39.27784],[-75.30707,39.01667],[-75.19317,38.82219],[-75.05341,38.80876],[-75.01771,38.45189]]],"type":"Polygon"},"properties":{"attribution":{"text":"Digital Aerial Solutions, LLC","url":"https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2017/ImageServer"},"available_projections":["EPSG:3857","EPSG:4326"],"country_code":"US","description":"This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware.","end_date":"2017","id":"Delaware2017Orthophotography","name":"Delaware 2017 Orthophotography","start_date":"2017","type":"wms","url":"https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2017/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-86.93095,41.086],[-86.93041,40.99844],[-86.92929,40.9136],[-86.69579,40.91281],[-86.57968,40.91095],[-86.58017,40.82402],[-86.58133,40.73508],[-86.69536,40.73677],[-86.75238,40.73713],[-86.75719,40.72441],[-86.74927,40.71899],[-86.75651,40.709],[-86.75831,40.70082],[-86.7528,40.68632],[-86.75884,40.68177],[-86.74611,40.67998],[-86.7455,40.67817],[-86.75688,40.66457],[-86.7743,40.66412],[-86.7711,40.56207],[-86.69544,40.56209],[-86.69619,40.17853],[-86.24242,40.18069],[-86.24065,39.94074],[-86.24067,39.92607],[-86.32632,39.92421],[-86.6937,39.92283],[-86.69294,39.86434],[-86.68456,39.86481],[-86.68529,39.68845],[-86.68574,39.62997],[-86.66543,39.63046],[-86.64035,39.63049],[-86.64033,39.62006],[-86.65224,39.60871],[-86.65462,39.6001],[-86.65276,39.56656],[-86.64915,39.55523],[-86.67058,39.53389],[-86.68607,39.52616],[-86.68604,39.51438],[-86.68593,39.46995],[-86.63229,39.46957],[-86.63088,39.34809],[-86.64755,39.35578],[-86.65112,39.35623],[-86.65585,39.34353],[-86.65345,39.33402],[-86.66534,39.33173],[-86.68439,39.33715],[-86.6849,39.00994],[-86.68529,38.99402],[-86.31766,38.99358],[-86.27858,38.99352],[-86.27876,38.93414],[-86.27518,38.763],[-86.25877,38.76964],[-86.25766,38.76989],[-86.25632,38.76464],[-86.25595,38.76412],[-86.2429,38.7655],[-86.24046,38.76564],[-86.22518,38.77887],[-86.22435,38.77922],[-86.2209,38.77188],[-86.22004,38.77071],[-86.2156,38.77862],[-86.21476,38.77934],[-86.20226,38.77383],[-86.19747,38.77366],[-86.1851,38.7837],[-86.1836,38.78391],[-86.17766,38.77509],[-86.173,38.77274],[-86.13588,38.76259],[-86.13545,38.76235],[-86.10381,38.76552],[-86.10252,38.76556],[-86.0931,38.78364],[-86.09219,38.78371],[-86.07581,38.77482],[-86.07469,38.77421],[-86.062,38.77849],[-86.06126,38.77817],[-86.02771,38.75574],[-86.02649,38.75529],[-86.0218,38.76733],[-86.02092,38.76757],[-86.01255,38.75668],[-86.01133,38.75667],[-85.98508,38.76808],[-85.98354,38.76793],[-85.98577,38.75933],[-85.98563,38.75823],[-85.97835,38.7528],[-85.97723,38.75239],[-85.96239,38.76394],[-85.96129,38.76424],[-85.95064,38.76109],[-85.95026,38.76081],[-85.94987,38.75358],[-85.94931,38.75345],[-85.93697,38.76276],[-85.93642,38.76271],[-85.93698,38.75636],[-85.93658,38.7555],[-85.91801,38.74601],[-85.91691,38.74554],[-85.91924,38.75314],[-85.91903,38.75375],[-85.91141,38.7472],[-85.91054,38.74747],[-85.91027,38.75725],[-85.90966,38.75713],[-85.90954,38.75157],[-85.90878,38.75108],[-85.89661,38.75053],[-85.8963,38.75027],[-85.89425,38.7303],[-85.89408,38.72998],[-85.88619,38.73486],[-85.88581,38.73485],[-85.88175,38.72502],[-85.88146,38.72485],[-85.84755,38.73477],[-85.84734,38.73492],[-85.82006,38.77551],[-85.81989,38.77593],[-85.8048,38.77951],[-85.80465,38.77961],[-85.8074,38.78896],[-85.80736,38.7892],[-85.79512,38.80755],[-85.79493,38.8078],[-85.79893,39.12907],[-85.688,39.13067],[-85.68507,39.3387],[-85.68494,39.35049],[-85.94282,39.34752],[-85.95215,39.3473],[-85.954,39.86768],[-85.95401,39.86965],[-85.94827,39.86972],[-85.93807,39.86981],[-85.93738,39.92643],[-85.93759,39.92714],[-85.86955,39.92885],[-85.86242,39.92894],[-85.86218,40.40686],[-85.86405,40.56663],[-86.01292,40.56503],[-86.16541,40.56325],[-86.16901,40.96017],[-86.16763,40.99646],[-86.01846,40.9978],[-85.94662,40.99932],[-85.94044,40.7008],[-85.93961,40.65272],[-85.67424,40.65399],[-85.6385,40.65421],[-85.64054,40.78532],[-85.64402,41.00129],[-85.68359,41.00155],[-85.68562,41.08958],[-85.68764,41.17898],[-85.65224,41.17875],[-85.65887,41.69895],[-85.6598,41.7591],[-86.51946,41.75968],[-86.52422,41.75966],[-86.52661,41.6516],[-86.52664,41.65022],[-86.49012,41.64955],[-86.48727,41.64952],[-86.48627,41.58005],[-86.48617,41.57768],[-86.49511,41.56343],[-86.49809,41.56109],[-86.49811,41.52928],[-86.4982,41.52832],[-86.50521,41.51995],[-86.52484,41.51999],[-86.52465,41.43601],[-86.52467,41.43287],[-86.58209,41.43339],[-86.64151,41.4338],[-86.69839,41.40422],[-86.70206,41.40058],[-86.73794,41.32927],[-86.73914,41.32246],[-86.77633,41.29335],[-86.78424,41.28516],[-86.8465,41.26731],[-86.87032,41.26452],[-86.92821,41.23801],[-86.93004,41.2371],[-86.93095,41.086]],[[-86.33109,38.18099],[-86.28777,38.15805],[-86.2718,38.13787],[-86.27866,38.09851],[-86.27872,38.0893],[-86.26689,38.05712],[-86.26127,38.05272],[-86.19093,38.01644],[-86.17898,38.01131],[-86.10023,38.01074],[-86.09466,38.00864],[-86.04537,37.95884],[-86.04352,37.95869],[-86.03632,37.96156],[-86.03517,37.96327],[-86.03106,37.99164],[-86.02831,37.99322],[-85.94916,38.00484],[-85.94706,38.00508],[-85.92644,38.02085],[-85.925,38.02259],[-85.90524,38.08899],[-85.90505,38.09007],[-85.90893,38.14231],[-85.90882,38.14497],[-85.90039,38.17904],[-85.89986,38.17988],[-85.89992,38.18561],[-85.95077,38.18574],[-85.9549,38.26055],[-85.97366,38.26063],[-85.97355,38.27558],[-85.99466,38.27522],[-85.99564,38.30242],[-86.0144,38.30249],[-86.01481,38.33059],[-86.033,38.33067],[-86.03244,38.41768],[-86.25445,38.4224],[-86.25917,38.41516],[-86.26447,38.412],[-86.25802,38.41017],[-86.25215,38.40699],[-86.24927,38.39066],[-86.24576,38.38794],[-86.25517,38.38433],[-86.26163,38.38117],[-86.2593,38.37754],[-86.25816,38.36666],[-86.24819,38.36301],[-86.2482,38.36029],[-86.25291,38.35577],[-86.25703,38.35442],[-86.26405,38.36123],[-86.2705,38.3617],[-86.27353,38.3243],[-86.27306,38.32159],[-86.28346,38.33154],[-86.28605,38.33195],[-86.28451,38.32105],[-86.28941,38.31641],[-86.28263,38.31106],[-86.27581,38.30841],[-86.27864,38.30298],[-86.27444,38.29991],[-86.27136,38.30714],[-86.26773,38.30867],[-86.25894,38.30638],[-86.26423,38.30413],[-86.26485,38.29461],[-86.25253,38.29504],[-86.25313,38.29142],[-86.26959,38.27831],[-86.27486,38.27832],[-86.27612,38.25294],[-86.27737,38.2271],[-86.27972,38.22348],[-86.28442,38.22077],[-86.29319,38.22487],[-86.29788,38.2217],[-86.29848,38.21944],[-86.28912,38.21398],[-86.29557,38.20946],[-86.29032,38.20175],[-86.30627,38.20273],[-86.30848,38.20087],[-86.31671,38.18955],[-86.31847,38.18819],[-86.3097,38.18183],[-86.31264,38.17822],[-86.33109,38.18099]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc."},"available_projections":["EPSG:4326","EPSG:26916"],"country_code":"US","description":"Orthophotography for 24 counties in central Indiana, collected during leaf-off conditions in 2016. One-foot resolution for Bartholomew, Boon, Brown, Carroll, Cass, Clinton, Elkhart, Hamilton, Hendricks, Howard, Johnson, Marion, Marshall, Pulaski, St. Joseph, Starke, and Tipton counties. Six-inch resolution for Fulton, Harrison, Jackson, Kosciusko, Monroe, Morgan, and Wabash counties.","end_date":"2016","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif","id":"IndianaMap2016","license_url":"https://gis.iu.edu/datasetInfo/statewide/in_2016.php","max_zoom":20,"min_zoom":4,"name":"IndianaMap Orthoimagery 2016","permission_osm":"implicit","privacy_policy_url":"https://gis.iu.edu/privacy.php","start_date":"2016","type":"wms","url":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2016/MapServer/WmsServer?FORMAT=image/jpeg&TRANSPARENT=FALSE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-86.68529,38.99402],[-86.67996,38.27838],[-86.67992,38.26342],[-86.66644,38.26344],[-86.57149,38.26445],[-86.57202,38.20824],[-86.46132,38.20826],[-86.46253,38.12986],[-86.46293,38.11943],[-86.43208,38.12614],[-86.43175,38.12612],[-86.40507,38.1058],[-86.40141,38.10504],[-86.38722,38.12463],[-86.37977,38.12927],[-86.336,38.1292],[-86.33514,38.12924],[-86.32345,38.13903],[-86.32091,38.1471],[-86.33079,38.15764],[-86.33553,38.15941],[-86.36675,38.1634],[-86.37038,38.16528],[-86.37546,38.18741],[-86.37402,38.19055],[-86.36106,38.19673],[-86.35711,38.19649],[-86.31732,38.17822],[-86.31264,38.17822],[-86.31591,38.18524],[-86.31847,38.18819],[-86.30919,38.19754],[-86.30848,38.20087],[-86.29384,38.2013],[-86.29032,38.20175],[-86.29557,38.20946],[-86.2903,38.21081],[-86.28912,38.21398],[-86.29848,38.21944],[-86.29788,38.2217],[-86.27972,38.22348],[-86.27737,38.2271],[-86.27551,38.25702],[-86.27486,38.27832],[-86.25313,38.29142],[-86.25253,38.29504],[-86.26015,38.29733],[-86.26485,38.29461],[-86.25895,38.30503],[-86.25894,38.30638],[-86.27136,38.30714],[-86.27444,38.29991],[-86.28263,38.31106],[-86.28941,38.31641],[-86.28451,38.32105],[-86.28307,38.32473],[-86.28754,38.32958],[-86.28605,38.33195],[-86.27594,38.32018],[-86.27306,38.32159],[-86.27345,38.35627],[-86.2705,38.3617],[-86.25291,38.35577],[-86.2482,38.36029],[-86.2593,38.37754],[-86.26163,38.38117],[-86.24635,38.38613],[-86.24576,38.38794],[-86.25334,38.402],[-86.25215,38.40699],[-86.26272,38.40973],[-86.26447,38.412],[-86.25917,38.41516],[-86.25445,38.4224],[-86.03244,38.41768],[-86.033,38.33067],[-86.01481,38.33059],[-86.0144,38.30249],[-85.99564,38.30242],[-85.99466,38.27522],[-85.97355,38.27558],[-85.97359,38.27054],[-85.97366,38.26063],[-85.9549,38.26055],[-85.95077,38.18574],[-85.89992,38.18561],[-85.89986,38.17988],[-85.84499,38.23024],[-85.84422,38.23109],[-85.82696,38.27839],[-85.82559,38.2794],[-85.78149,38.28825],[-85.78098,38.28829],[-85.74553,38.26698],[-85.74392,38.2671],[-85.67667,38.29986],[-85.67558,38.30067],[-85.65256,38.32841],[-85.65165,38.3301],[-85.63191,38.3978],[-85.63166,38.39877],[-85.60737,38.43805],[-85.60677,38.43869],[-85.58381,38.45058],[-85.58123,38.45136],[-85.50038,38.46755],[-85.49931,38.46799],[-85.46866,38.50867],[-85.46682,38.51025],[-85.42008,38.53466],[-85.41957,38.53503],[-85.41566,38.56235],[-85.41566,38.56312],[-85.43759,38.60284],[-85.43824,38.60468],[-85.43837,38.65779],[-85.43854,38.65896],[-85.45673,38.68734],[-85.4569,38.68851],[-85.45197,38.70988],[-85.45184,38.7102],[-85.43609,38.7285],[-85.43532,38.729],[-85.41644,38.73643],[-85.41489,38.73677],[-85.36507,38.73034],[-85.3636,38.73037],[-85.27859,38.74159],[-85.2767,38.74135],[-85.24937,38.73348],[-85.24859,38.73314],[-85.21096,38.69444],[-85.20967,38.69367],[-85.16501,38.6898],[-85.16321,38.69019],[-84.9939,38.77765],[-84.99229,38.77815],[-84.94286,38.77541],[-84.94121,38.77565],[-84.88761,38.79478],[-84.88724,38.7948],[-84.81562,38.78393],[-84.8149,38.78428],[-84.8131,38.79745],[-84.81339,38.79851],[-84.83,38.82966],[-84.82993,38.83037],[-84.79418,38.85753],[-84.79354,38.85784],[-84.78486,38.87357],[-84.78461,38.87498],[-84.8015,38.89171],[-84.80298,38.89227],[-84.86245,38.89789],[-84.8637,38.89809],[-84.87596,38.90778],[-84.87702,38.90901],[-84.87765,38.92059],[-84.87706,38.92147],[-84.83422,38.95885],[-84.83363,38.95943],[-84.82995,38.97142],[-84.83003,38.97305],[-84.89728,39.05471],[-84.89739,39.05548],[-84.82239,39.10457],[-84.81993,39.10544],[-84.80397,40.30267],[-84.80358,40.31025],[-84.80292,40.92236],[-84.80292,40.92257],[-85.3224,40.91703],[-85.33597,40.91703],[-85.33847,41.12909],[-85.3389,41.15113],[-85.33818,41.17286],[-85.31331,41.17316],[-85.30997,41.1732],[-85.30921,41.25112],[-85.30777,41.26413],[-84.84755,41.27],[-84.80356,41.27116],[-84.80613,41.74312],[-84.80588,41.76022],[-85.65074,41.7591],[-85.6598,41.7591],[-85.65224,41.17875],[-85.68764,41.17898],[-85.68359,41.00155],[-85.64402,41.00129],[-85.64014,40.76899],[-85.6385,40.65421],[-85.90024,40.65254],[-85.93961,40.65272],[-85.94663,40.99751],[-85.94662,40.99932],[-86.12927,40.99726],[-86.16763,40.99646],[-86.16805,40.64354],[-86.16541,40.56325],[-85.89975,40.56636],[-85.86405,40.56663],[-85.86211,40.37841],[-85.86144,40.21908],[-86.12848,40.21759],[-86.2435,40.21516],[-86.24065,39.94074],[-86.24067,39.92607],[-85.93779,39.92712],[-85.93759,39.92714],[-85.93807,39.87702],[-85.93807,39.86981],[-85.95364,39.86965],[-85.95401,39.86965],[-85.95269,39.36098],[-85.95215,39.3473],[-85.79977,39.35073],[-85.68494,39.35049],[-85.688,39.13067],[-85.79893,39.12907],[-85.79535,38.82447],[-85.79493,38.8078],[-85.80719,38.78942],[-85.80736,38.7892],[-85.80444,38.78003],[-85.80451,38.77981],[-85.81957,38.77608],[-85.81989,38.77593],[-85.84718,38.73514],[-85.84734,38.73492],[-85.88015,38.72487],[-85.88046,38.72479],[-85.88555,38.73468],[-85.88581,38.73485],[-85.89381,38.72974],[-85.89408,38.72998],[-85.89621,38.74987],[-85.8963,38.75027],[-85.90901,38.75661],[-85.90966,38.75713],[-85.9097,38.74805],[-85.91054,38.74747],[-85.91869,38.75411],[-85.91903,38.75375],[-85.91605,38.7457],[-85.91691,38.74554],[-85.9358,38.75504],[-85.93658,38.7555],[-85.9361,38.76235],[-85.93642,38.76271],[-85.94798,38.75356],[-85.94931,38.75345],[-85.96056,38.7641],[-85.96129,38.76424],[-85.97598,38.75232],[-85.97723,38.75239],[-85.985,38.75764],[-85.98563,38.75823],[-85.98233,38.76692],[-85.98256,38.76759],[-86.01028,38.75687],[-86.01133,38.75667],[-86.01902,38.76736],[-86.02092,38.76757],[-86.02585,38.75538],[-86.02649,38.75529],[-86.06023,38.7775],[-86.06126,38.77817],[-86.0734,38.77417],[-86.07469,38.77421],[-86.09118,38.7835],[-86.09219,38.78371],[-86.10176,38.76589],[-86.10252,38.76556],[-86.13481,38.76227],[-86.13545,38.76235],[-86.17165,38.77244],[-86.173,38.77274],[-86.18176,38.78289],[-86.1836,38.78391],[-86.19724,38.77408],[-86.19747,38.77366],[-86.21178,38.77945],[-86.21476,38.77934],[-86.21851,38.7705],[-86.22004,38.77071],[-86.22363,38.77925],[-86.22435,38.77922],[-86.23696,38.76775],[-86.24046,38.76564],[-86.27167,38.76451],[-86.27518,38.763],[-86.27875,38.986],[-86.27858,38.99352],[-86.68529,38.99402]],[[-87.9869,38.25738],[-87.98177,38.23376],[-87.9843,38.2304],[-87.79945,38.22857],[-87.79978,38.21407],[-87.79955,38.20092],[-87.68887,38.20204],[-87.68891,38.1685],[-87.46706,38.16543],[-87.46665,38.19389],[-87.46633,38.20354],[-87.35565,38.20482],[-87.31699,38.20508],[-87.31686,38.24588],[-87.31599,38.37733],[-87.33482,38.38173],[-87.34541,38.38347],[-87.40584,38.38032],[-87.40759,38.3794],[-87.40712,38.43606],[-87.44473,38.43623],[-87.44453,38.46706],[-87.46394,38.4669],[-87.46401,38.51722],[-87.4642,38.53217],[-87.47051,38.51988],[-87.47047,38.51626],[-87.47569,38.51123],[-87.49091,38.50567],[-87.49255,38.49704],[-87.49548,38.49566],[-87.50017,38.49517],[-87.51323,38.50367],[-87.52786,38.49857],[-87.5314,38.49899],[-87.52985,38.51442],[-87.53637,38.51844],[-87.54693,38.51654],[-87.5498,38.51153],[-87.54139,38.49936],[-87.54069,38.49166],[-87.55772,38.4897],[-87.57302,38.49093],[-87.57962,38.49948],[-87.58373,38.49945],[-87.58059,38.48588],[-87.57997,38.48362],[-87.59023,38.46222],[-87.59888,38.45082],[-87.63108,38.44282],[-87.63579,38.44323],[-87.6371,38.45228],[-87.64069,38.45587],[-87.65128,38.45714],[-87.656,38.458],[-87.6723,38.44833],[-87.67345,38.4465],[-87.66273,38.43799],[-87.66206,38.43256],[-87.7433,38.41401],[-87.74413,38.4141],[-87.77157,38.37799],[-87.77267,38.37656],[-87.80361,38.36406],[-87.80768,38.36175],[-87.82237,38.34582],[-87.82357,38.34448],[-87.83209,38.29841],[-87.83227,38.29745],[-87.84315,38.27932],[-87.84663,38.27702],[-87.86249,38.28335],[-87.86305,38.28425],[-87.8684,38.31254],[-87.87073,38.31296],[-87.90788,38.27006],[-87.90916,38.26955],[-87.91712,38.27358],[-87.91753,38.27531],[-87.9074,38.2931],[-87.90796,38.29582],[-87.93145,38.29737],[-87.93436,38.29517],[-87.9475,38.27861],[-87.94981,38.27675],[-87.94382,38.26401],[-87.94385,38.2622],[-87.95967,38.24218],[-87.96045,38.24177],[-87.97899,38.25866],[-87.97997,38.25958],[-87.9869,38.25738]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc."},"available_projections":["EPSG:4326","EPSG:26916"],"country_code":"US","description":"Orthophotography for 39 counties in eastern Indiana, collected during leaf-off conditions in 2017. One-foot resolution for Adams, Blackford, Clark, Crawford, Decatur, Delaware, Fayette, Floyd, Franklin, Grant, Hamilton, Hancock, Henry, Huntington, Jay, Jefferson, Jennings, Lagrange, Lawrence, Madison, Miami, Noble, Ohio, Orange, Randolph, Ripley, Rush, Scott, Switzerland, Union, and Washington counties. Six-inch resolution for Dearborn, Dekalb, Gibson, Shelby, Steuben, Wayne, Wells, and Whitley counties. Three-inch resolution for Hamilton County and Shelbyville.","end_date":"2017","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif","id":"IndianaMap2017","license_url":"https://gis.iu.edu/datasetInfo/statewide/in_2016.php","max_zoom":20,"min_zoom":4,"name":"IndianaMap Orthoimagery 2017","permission_osm":"implicit","privacy_policy_url":"https://gis.iu.edu/privacy.php","start_date":"2017","type":"wms","url":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2017/MapServer/WmsServer?FORMAT=image/jpeg&TRANSPARENT=FALSE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-88.0997,37.90441],[-88.06863,37.85773],[-88.06288,37.85102],[-88.02672,37.8371],[-88.02543,37.83344],[-88.03865,37.82239],[-88.04431,37.82151],[-88.07796,37.83094],[-88.08182,37.83114],[-88.09143,37.81819],[-88.08912,37.815],[-88.06783,37.79988],[-88.06397,37.799],[-88.03556,37.81121],[-88.03118,37.8108],[-88.02509,37.80253],[-88.02502,37.7999],[-88.00471,37.80015],[-87.9971,37.79767],[-87.95948,37.77311],[-87.95259,37.77174],[-87.93323,37.79697],[-87.93255,37.79767],[-87.90681,37.80762],[-87.9046,37.81253],[-87.90777,37.83761],[-87.91028,37.84342],[-87.94102,37.87917],[-87.94084,37.88334],[-87.89616,37.9284],[-87.89614,37.9284],[-87.87326,37.92145],[-87.87254,37.921],[-87.8381,37.87977],[-87.83388,37.87732],[-87.78517,37.87216],[-87.76563,37.86662],[-87.73176,37.88574],[-87.72678,37.89148],[-87.6765,37.90216],[-87.67573,37.90193],[-87.66286,37.88558],[-87.66282,37.88145],[-87.6754,37.86595],[-87.68163,37.85592],[-87.68069,37.84062],[-87.67919,37.83632],[-87.66718,37.82764],[-87.66652,37.82746],[-87.62501,37.82908],[-87.6154,37.83197],[-87.58873,37.86098],[-87.58843,37.86879],[-87.59037,37.88013],[-87.59158,37.88719],[-87.61988,37.90665],[-87.62027,37.90692],[-87.62842,37.92145],[-87.62896,37.92671],[-87.61082,37.9446],[-87.60622,37.94964],[-87.60051,37.97291],[-87.60035,37.97314],[-87.58818,37.97603],[-87.58795,37.97617],[-87.57576,37.96872],[-87.5755,37.9684],[-87.57705,37.95222],[-87.57749,37.95173],[-87.56396,37.93533],[-87.56188,37.9331],[-87.5115,37.90643],[-87.51077,37.90615],[-87.44949,37.94181],[-87.44779,37.94243],[-87.42852,37.94481],[-87.41858,37.94476],[-87.38051,37.93567],[-87.38025,37.9356],[-87.25525,37.86733],[-87.22094,37.84913],[-87.16486,37.84121],[-87.16232,37.84016],[-87.13291,37.7933],[-87.13094,37.78801],[-87.11433,37.78253],[-87.11113,37.78251],[-87.09197,37.78699],[-87.08835,37.78889],[-87.06805,37.80576],[-87.06784,37.80606],[-87.04926,37.85974],[-87.04385,37.8708],[-87.04535,37.8929],[-87.0451,37.89377],[-87.03589,37.90429],[-87.03344,37.90659],[-86.97896,37.9302],[-86.96904,37.93286],[-86.91963,37.9366],[-86.91933,37.93666],[-86.86322,37.9825],[-86.85595,37.98729],[-86.82349,37.99894],[-86.82007,37.99939],[-86.8037,37.99345],[-86.79498,37.98898],[-86.76733,37.93617],[-86.76505,37.93251],[-86.73445,37.89641],[-86.73146,37.89434],[-86.71846,37.89312],[-86.71614,37.89407],[-86.68601,37.91308],[-86.68093,37.91501],[-86.64773,37.90905],[-86.64708,37.90862],[-86.64404,37.8982],[-86.64475,37.89481],[-86.6625,37.85695],[-86.66158,37.84942],[-86.6553,37.84251],[-86.65252,37.84164],[-86.63351,37.84415],[-86.62576,37.84727],[-86.60462,37.85827],[-86.59811,37.86738],[-86.59595,37.91445],[-86.58858,37.92116],[-86.54072,37.91687],[-86.53416,37.91701],[-86.50783,37.92883],[-86.50662,37.93072],[-86.52383,37.96217],[-86.52517,37.96823],[-86.52183,38.03833],[-86.5194,38.04124],[-86.4719,38.04622],[-86.45219,38.05049],[-86.43135,38.07334],[-86.43052,38.0783],[-86.45991,38.09656],[-86.46386,38.10118],[-86.46253,38.12986],[-86.46132,38.20826],[-86.57202,38.20824],[-86.57149,38.26445],[-86.66644,38.26344],[-86.67992,38.26342],[-86.68299,39.25374],[-86.68439,39.33715],[-86.66059,39.33355],[-86.65582,39.33129],[-86.65527,39.34942],[-86.65112,39.35623],[-86.63088,39.34809],[-86.63229,39.46957],[-86.68593,39.46995],[-86.68604,39.51438],[-86.68607,39.52616],[-86.65331,39.54752],[-86.64915,39.55523],[-86.65459,39.5865],[-86.6552,39.59647],[-86.64033,39.62006],[-86.64035,39.63049],[-86.66543,39.63046],[-86.68574,39.62997],[-86.6952,40.4751],[-86.69544,40.56209],[-86.7711,40.56207],[-86.7743,40.66412],[-86.75688,40.66457],[-86.75336,40.67271],[-86.7455,40.67817],[-86.75702,40.67951],[-86.75884,40.68177],[-86.7528,40.68632],[-86.74978,40.68859],[-86.75526,40.69493],[-86.75831,40.70082],[-86.7541,40.71308],[-86.74927,40.71899],[-86.75719,40.72441],[-86.75236,40.73304],[-86.75238,40.73713],[-86.69536,40.73677],[-86.58133,40.73508],[-86.58017,40.82402],[-86.57968,40.91095],[-86.81376,40.91303],[-86.92929,40.9136],[-86.93,41.22984],[-86.93004,41.2371],[-86.87763,41.25996],[-86.87032,41.26452],[-86.81414,41.27329],[-86.78424,41.28516],[-86.74584,41.31701],[-86.73914,41.32246],[-86.70206,41.40058],[-86.69839,41.40422],[-86.64314,41.43266],[-86.64151,41.4338],[-86.58209,41.43339],[-86.52467,41.43287],[-86.52485,41.50529],[-86.52484,41.51999],[-86.50521,41.51995],[-86.50383,41.52024],[-86.49845,41.528],[-86.4982,41.52832],[-86.49511,41.56343],[-86.48648,41.57047],[-86.4872,41.64648],[-86.48727,41.64952],[-86.51944,41.65012],[-86.52664,41.65022],[-86.52427,41.75785],[-86.52422,41.75966],[-86.82433,41.76024],[-86.82569,41.76025],[-86.91273,41.72327],[-86.91638,41.71645],[-87.13327,41.64289],[-87.17696,41.63272],[-87.26141,41.62887],[-87.28612,41.62704],[-87.40469,41.65019],[-87.41161,41.64876],[-87.42034,41.65341],[-87.39377,41.67733],[-87.42266,41.69573],[-87.4622,41.68529],[-87.50542,41.70611],[-87.51756,41.71643],[-87.52398,41.71348],[-87.52495,41.64461],[-87.52517,41.63248],[-87.53086,40.16985],[-87.53141,40.15046],[-87.4896,40.15077],[-87.49052,40.13081],[-87.40632,40.13009],[-87.41637,40.06971],[-87.41627,40.062],[-87.42097,40.0538],[-87.43171,40.04738],[-87.42439,40.03927],[-87.43152,40.03287],[-87.4356,40.02377],[-87.43012,39.97076],[-87.44019,39.96117],[-87.4209,39.95405],[-87.41967,39.95225],[-87.43444,39.93446],[-87.4332,39.93084],[-87.41218,39.92873],[-87.40677,39.92831],[-87.41325,39.91874],[-87.40958,39.91333],[-87.38431,39.90625],[-87.37827,39.90267],[-87.3728,39.89681],[-87.36787,39.88551],[-87.37917,39.87773],[-87.37914,39.87592],[-87.35564,39.86474],[-87.35381,39.86203],[-87.37149,39.83788],[-87.38166,39.83691],[-87.37382,39.78301],[-87.37377,39.77938],[-87.38338,39.72232],[-87.38432,39.7199],[-87.38166,39.69371],[-87.38183,39.69264],[-87.39542,39.6557],[-87.39557,39.6536],[-87.38127,39.61559],[-87.3821,39.60935],[-87.46069,39.60964],[-87.53206,39.60904],[-87.53114,39.41882],[-87.53138,39.34771],[-87.54333,39.35256],[-87.54374,39.35272],[-87.55371,39.34081],[-87.55413,39.34031],[-87.58799,39.33415],[-87.58881,39.33365],[-87.58942,39.33253],[-87.60013,39.31272],[-87.60001,39.29311],[-87.60978,39.28205],[-87.60535,39.26125],[-87.60554,39.26112],[-87.57916,39.23296],[-87.57456,39.2184],[-87.58573,39.20114],[-87.58861,39.19782],[-87.63518,39.16889],[-87.64043,39.16673],[-87.62796,39.15734],[-87.62772,39.15661],[-87.64313,39.15614],[-87.64599,39.1449],[-87.63073,39.10478],[-87.63038,39.1043],[-87.58251,39.06661],[-87.57259,39.05729],[-87.56982,39.01975],[-87.5697,39.01941],[-87.57839,38.98994],[-87.57832,38.98879],[-87.54369,38.97683],[-87.5295,38.97192],[-87.51409,38.95634],[-87.51219,38.95442],[-87.51847,38.92486],[-87.51883,38.92321],[-87.5294,38.9054],[-87.54409,38.89509],[-87.54737,38.87561],[-87.55338,38.86334],[-87.53059,38.8524],[-87.52943,38.85148],[-87.52191,38.83086],[-87.52129,38.82818],[-87.52648,38.81994],[-87.52614,38.81894],[-87.50008,38.79001],[-87.49925,38.78843],[-87.4976,38.7807],[-87.49825,38.7796],[-87.51401,38.77245],[-87.51449,38.77092],[-87.49978,38.76894],[-87.49805,38.76756],[-87.4977,38.74539],[-87.49708,38.74313],[-87.53062,38.68451],[-87.53275,38.68272],[-87.58724,38.67109],[-87.58973,38.67018],[-87.61753,38.64294],[-87.61936,38.64117],[-87.62656,38.60785],[-87.62711,38.60467],[-87.61356,38.59212],[-87.61383,38.59099],[-87.63633,38.59383],[-87.63694,38.5937],[-87.64997,38.56972],[-87.65233,38.5682],[-87.6507,38.55624],[-87.66073,38.54109],[-87.6538,38.51738],[-87.65417,38.51191],[-87.67837,38.49844],[-87.69319,38.48804],[-87.73536,38.4768],[-87.73952,38.47507],[-87.74345,38.46584],[-87.74317,38.45902],[-87.73551,38.45273],[-87.73013,38.44652],[-87.74071,38.43581],[-87.74104,38.43558],[-87.74397,38.41707],[-87.74413,38.4141],[-87.67257,38.42883],[-87.66206,38.43256],[-87.67159,38.44108],[-87.67345,38.4465],[-87.65833,38.45707],[-87.656,38.458],[-87.64537,38.45493],[-87.64069,38.45587],[-87.63818,38.44593],[-87.63579,38.44323],[-87.61116,38.44663],[-87.59888,38.45082],[-87.58917,38.46994],[-87.57997,38.48362],[-87.58717,38.49353],[-87.58373,38.49945],[-87.55772,38.4897],[-87.54069,38.49166],[-87.54682,38.50883],[-87.5498,38.51153],[-87.54049,38.51841],[-87.53637,38.51844],[-87.52985,38.51442],[-87.53322,38.50351],[-87.5314,38.49899],[-87.51852,38.50409],[-87.51323,38.50367],[-87.50017,38.49517],[-87.49548,38.49566],[-87.49255,38.49704],[-87.49091,38.50567],[-87.47569,38.51123],[-87.47047,38.51626],[-87.46538,38.53171],[-87.4642,38.53217],[-87.46412,38.48095],[-87.46394,38.4669],[-87.44453,38.46706],[-87.44423,38.44349],[-87.44473,38.43623],[-87.40712,38.43606],[-87.40759,38.3794],[-87.35772,38.38158],[-87.34541,38.38347],[-87.31834,38.37776],[-87.31599,38.37733],[-87.3167,38.23137],[-87.31699,38.20508],[-87.35565,38.20482],[-87.46633,38.20354],[-87.46706,38.16543],[-87.68891,38.1685],[-87.68887,38.20204],[-87.79955,38.20092],[-87.79945,38.22857],[-87.9843,38.2304],[-87.97637,38.19939],[-87.96938,38.19044],[-87.94213,38.17786],[-87.94012,38.17625],[-87.93557,38.16283],[-87.9352,38.16233],[-87.92312,38.17009],[-87.92184,38.17035],[-87.91494,38.16256],[-87.91499,38.16029],[-87.94197,38.13351],[-87.94518,38.13085],[-87.96801,38.13066],[-87.96912,38.12987],[-87.97701,38.11149],[-87.97929,38.11004],[-88.01454,38.10034],[-88.01575,38.09854],[-88.00958,38.08532],[-88.00784,38.08484],[-87.96303,38.10202],[-87.96098,38.10165],[-87.95486,38.08812],[-87.95458,38.08708],[-87.95876,38.07453],[-87.9613,38.07156],[-87.98943,38.05671],[-87.99203,38.05557],[-88.02368,38.05286],[-88.03012,38.05248],[-88.04168,38.04467],[-88.04258,38.04311],[-88.03739,38.03544],[-88.03444,38.03411],[-88.01109,38.03342],[-88.00921,38.03129],[-88.02389,38.01342],[-88.02512,38.01026],[-88.01063,37.97518],[-88.01099,37.97319],[-88.03123,37.96013],[-88.03206,37.95901],[-88.02998,37.93083],[-88.03258,37.92876],[-88.05756,37.93455],[-88.0598,37.93452],[-88.06862,37.92726],[-88.06884,37.92489],[-88.02204,37.91462],[-88.01733,37.91183],[-88.0125,37.89012],[-88.01421,37.88565],[-88.0282,37.89127],[-88.03129,37.89472],[-88.04966,37.89086],[-88.05696,37.89181],[-88.08425,37.90482],[-88.08957,37.90732],[-88.0997,37.90441]],[[-85.3389,41.15113],[-85.33593,40.9349],[-85.33597,40.91703],[-84.87996,40.92059],[-84.80292,40.92257],[-84.80353,41.25256],[-84.80356,41.27116],[-85.19291,41.26426],[-85.30777,41.26413],[-85.30938,41.24972],[-85.30997,41.1732],[-85.31331,41.17316],[-85.33818,41.17286],[-85.3389,41.15113]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc."},"available_projections":["EPSG:4326","EPSG:26916"],"country_code":"US","description":"Orthophotography for 19 counties and one city in western Indiana, collected during leaf-off conditions in 2018. One-foot resolution for Benton, Clay, Fountain, Greene, Jasper, LaPorte, Montogomery, Newton, Owen, Parke, Sullivan, Tippecanoe, Vigo, Warren, and White counties. Six-inch resolution for Allen, Lake, Porter, and Putnam counties. Three-inch resolution for Huntingburg.","end_date":"2018","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif","id":"IndianaMap2018","license_url":"https://gis.iu.edu/datasetInfo/statewide/in_2016.php","max_zoom":20,"min_zoom":4,"name":"IndianaMap Orthoimagery 2018","permission_osm":"implicit","privacy_policy_url":"https://gis.iu.edu/privacy.php","start_date":"2018","type":"wms","url":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2018/MapServer/WmsServer?FORMAT=image/jpeg&TRANSPARENT=FALSE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-89.57151,36.55257],[-89.54296,36.50496],[-89.53912,36.4981],[-89.4885,36.49755],[-89.4852,36.49745],[-89.46589,36.52995],[-89.46545,36.53616],[-89.4808,36.56969],[-89.48089,36.56977],[-89.5205,36.57943],[-89.52234,36.58018],[-89.55251,36.57723],[-89.55264,36.57718],[-89.57151,36.55257]],[[-89.41729,36.49903],[-89.34795,36.50308],[-89.30028,36.50715],[-88.06598,36.49774],[-88.05332,36.49712],[-88.0453,36.50408],[-88.03948,36.51041],[-88.03413,36.53112],[-88.03249,36.54066],[-88.0412,36.58412],[-88.04513,36.60294],[-88.06821,36.65975],[-88.07053,36.67812],[-87.85045,36.6651],[-87.85354,36.63507],[-87.69783,36.637],[-87.69385,36.63707],[-87.68285,36.70333],[-87.67503,36.7501],[-87.67186,36.8785],[-87.66,36.96624],[-87.72956,36.9999],[-87.73366,37.00209],[-87.7106,37.02156],[-87.68078,37.14928],[-87.66878,37.14975],[-87.64964,37.14692],[-87.52378,37.10601],[-87.52029,37.10516],[-87.48508,37.12661],[-87.37442,37.13381],[-87.35981,37.1499],[-87.35998,37.1567],[-87.34036,37.15745],[-87.33626,37.1548],[-87.3151,37.18731],[-87.31174,37.19144],[-87.34575,37.21178],[-87.34988,37.2149],[-87.34719,37.2231],[-87.349,37.22625],[-87.37141,37.24404],[-87.36402,37.24914],[-87.38553,37.25335],[-87.38852,37.25738],[-87.38414,37.2901],[-87.38602,37.29551],[-87.37801,37.29926],[-87.37221,37.29889],[-87.3793,37.30468],[-87.38004,37.31102],[-87.37377,37.31474],[-87.37091,37.31614],[-87.35457,37.3105],[-87.34586,37.30973],[-87.33775,37.33252],[-87.33726,37.33615],[-87.31243,37.36282],[-87.30045,37.37026],[-87.30749,37.37378],[-87.3093,37.37693],[-87.30595,37.38197],[-87.29575,37.39164],[-87.33332,37.41148],[-87.3528,37.42569],[-87.3548,37.48279],[-87.36243,37.4863],[-87.35148,37.51231],[-87.34924,37.51552],[-87.35952,37.53213],[-87.36652,37.53339],[-87.36037,37.54255],[-87.35931,37.54665],[-87.37499,37.56998],[-87.37986,37.57898],[-87.39521,37.58871],[-87.46038,37.59267],[-87.4803,37.59914],[-87.49965,37.62694],[-87.49557,37.64786],[-87.73424,37.63828],[-87.94307,37.46638],[-87.94375,37.46563],[-87.93037,37.41046],[-87.93019,37.4092],[-87.91391,37.41123],[-87.91313,37.41104],[-87.91564,37.40477],[-87.91545,37.40448],[-87.90281,37.39822],[-87.90195,37.39824],[-87.86945,37.40519],[-87.86876,37.40518],[-87.86164,37.40894],[-87.86131,37.40954],[-87.86595,37.41683],[-87.86561,37.41728],[-87.84737,37.42062],[-87.84638,37.42046],[-87.84426,37.39512],[-87.84426,37.39482],[-87.85904,37.39277],[-87.85964,37.39241],[-87.86,37.38071],[-87.86003,37.3802],[-87.84335,37.37468],[-87.84282,37.37469],[-87.81953,37.38776],[-87.81861,37.38832],[-87.81061,37.37686],[-87.81042,37.37645],[-87.80095,37.3794],[-87.80122,37.37898],[-88.05239,37.23751],[-88.05269,37.22934],[-88.07805,37.22699],[-88.08885,37.22178],[-88.08231,37.21647],[-88.08042,37.21198],[-88.08376,37.20828],[-88.08891,37.20681],[-88.08443,37.1942],[-88.08301,37.18652],[-88.09489,37.17947],[-88.10183,37.17932],[-88.10889,37.16647],[-88.1099,37.16237],[-88.13168,37.15736],[-88.13252,37.14872],[-88.14131,37.15216],[-88.14428,37.15436],[-88.16293,37.14307],[-88.16557,37.13575],[-88.1919,37.12927],[-88.1966,37.13144],[-88.18787,37.16156],[-88.19039,37.1674],[-88.21927,37.18309],[-88.21986,37.18353],[-88.20455,37.20746],[-88.20065,37.21162],[-88.20258,37.23289],[-88.20032,37.23431],[-88.21851,37.27335],[-88.29375,37.33559],[-88.29557,37.33782],[-88.30556,37.37206],[-88.29948,37.37991],[-88.31327,37.39228],[-88.31811,37.39761],[-88.36547,37.40166],[-88.37121,37.40273],[-88.40624,37.42479],[-88.40881,37.42522],[-88.46586,37.40055],[-88.47022,37.39625],[-88.48672,37.34015],[-88.48695,37.3396],[-88.51406,37.29246],[-88.51486,37.29069],[-88.50409,37.26514],[-88.50382,37.26485],[-88.5123,37.26295],[-88.51187,37.26201],[-88.45005,37.2062],[-88.44982,37.20599],[-88.42533,37.15421],[-88.42462,37.15173],[-88.44912,37.08875],[-88.44919,37.08776],[-88.45919,37.07523],[-88.46019,37.07447],[-88.48622,37.06659],[-88.48605,37.0648],[-88.56528,37.07521],[-88.56587,37.0752],[-88.62221,37.11775],[-88.62589,37.11946],[-88.68777,37.13938],[-88.69398,37.14115],[-88.73125,37.14368],[-88.73211,37.14396],[-88.78695,37.17858],[-88.79737,37.18485],[-88.83505,37.19649],[-88.86953,37.20971],[-88.9273,37.22636],[-88.93175,37.22759],[-88.98326,37.22868],[-89.00097,37.2244],[-89.07622,37.17513],[-89.08653,37.1656],[-89.10403,37.13197],[-89.11119,37.11905],[-89.15129,37.09049],[-89.1545,37.08891],[-89.17858,37.055],[-89.17938,37.05301],[-89.18248,37.03748],[-89.18251,37.03728],[-89.1736,37.01141],[-89.17112,37.00807],[-89.13844,36.98509],[-89.13301,36.982],[-89.1183,36.98188],[-89.11503,36.98033],[-89.09901,36.96139],[-89.09884,36.95785],[-89.13194,36.85744],[-89.13797,36.84735],[-89.17718,36.83578],[-89.17815,36.83459],[-89.17923,36.81291],[-89.17875,36.80993],[-89.17107,36.79812],[-89.16846,36.79557],[-89.13321,36.78823],[-89.12892,36.78768],[-89.11685,36.77561],[-89.11607,36.77242],[-89.12243,36.75484],[-89.12613,36.75173],[-89.15699,36.75597],[-89.16689,36.75963],[-89.19155,36.74722],[-89.19781,36.73941],[-89.20073,36.72014],[-89.19948,36.71605],[-89.17484,36.69396],[-89.16952,36.68888],[-89.16872,36.67189],[-89.15908,36.66635],[-89.18775,36.64111],[-89.19254,36.636],[-89.20261,36.60158],[-89.21356,36.58012],[-89.23184,36.56812],[-89.23654,36.56682],[-89.26806,36.56891],[-89.27171,36.57139],[-89.31943,36.62739],[-89.32472,36.63108],[-89.36486,36.62532],[-89.36555,36.62506],[-89.37545,36.61572],[-89.37637,36.61387],[-89.41729,36.49903]],[[-86.27537,37.5933],[-86.27184,37.58879],[-86.26139,37.58885],[-86.25214,37.59435],[-86.24634,37.59438],[-86.23343,37.58086],[-86.23221,37.57543],[-86.22002,37.57596],[-86.21075,37.57737],[-86.18677,37.56028],[-86.18035,37.55624],[-86.16999,37.56582],[-86.16419,37.56721],[-86.15428,37.56228],[-86.14613,37.5596],[-86.11425,37.56611],[-86.1131,37.56657],[-86.05621,37.4916],[-86.05151,37.48301],[-86.06584,37.46073],[-86.06756,37.458],[-86.05997,37.45123],[-86.05647,37.44853],[-86.05415,37.44899],[-86.05071,37.45354],[-86.00023,37.44696],[-85.8912,37.44011],[-85.89011,37.45144],[-85.89426,37.47002],[-85.88848,37.47366],[-85.87493,37.54533],[-85.83905,37.56901],[-85.82107,37.57404],[-85.80725,37.60173],[-85.7974,37.60855],[-85.80326,37.62032],[-85.80211,37.62305],[-85.73423,37.65674],[-85.68093,37.73207],[-85.65181,37.71806],[-85.6454,37.71308],[-85.63781,37.69632],[-85.63432,37.69406],[-85.60059,37.69908],[-85.59244,37.69364],[-85.6011,37.64604],[-85.60051,37.6397],[-85.58714,37.64469],[-85.58366,37.64424],[-85.57725,37.63926],[-85.57319,37.6379],[-85.57376,37.62838],[-85.56853,37.62295],[-85.57027,37.61751],[-85.57375,37.61705],[-85.57899,37.62611],[-85.58422,37.62566],[-85.5906,37.61613],[-85.59524,37.61341],[-85.61326,37.61612],[-85.615,37.61475],[-85.59464,37.59891],[-85.59464,37.59755],[-85.60219,37.59346],[-85.60683,37.59074],[-85.60564,37.57532],[-85.60505,37.56581],[-85.62302,37.55174],[-85.6265,37.54493],[-85.62417,37.5404],[-85.61778,37.54086],[-85.60735,37.54813],[-85.60212,37.54723],[-85.59341,37.54406],[-85.59514,37.53545],[-85.57134,37.5273],[-85.56495,37.52277],[-85.55393,37.53184],[-85.54697,37.53049],[-85.55105,37.5536],[-85.54408,37.56222],[-85.5348,37.56313],[-85.52667,37.56267],[-85.52144,37.55361],[-85.45053,37.68596],[-85.40147,37.73066],[-85.3873,37.7404],[-85.38629,37.74075],[-85.37373,37.73951],[-85.3733,37.73981],[-85.37495,37.76461],[-85.37454,37.7652],[-85.35546,37.75756],[-85.35345,37.75735],[-85.34591,37.76225],[-85.34548,37.76249],[-85.35624,37.78367],[-85.35601,37.78403],[-85.34029,37.78005],[-85.33859,37.77992],[-85.33649,37.78663],[-85.33574,37.78739],[-85.31214,37.79132],[-85.30818,37.79364],[-85.31532,37.80739],[-85.31527,37.80793],[-85.29908,37.83149],[-85.29844,37.83233],[-85.27861,37.83666],[-85.2776,37.83756],[-85.28027,37.85154],[-85.27953,37.85236],[-85.26827,37.84471],[-85.26784,37.84444],[-85.24567,37.84685],[-85.245,37.84689],[-85.25585,37.86503],[-85.25535,37.86583],[-85.24147,37.86229],[-85.24042,37.86243],[-85.23106,37.87044],[-85.23037,37.87061],[-85.22767,37.85492],[-85.22677,37.85501],[-85.21773,37.87142],[-85.21668,37.87141],[-85.21842,37.85492],[-85.21843,37.85427],[-85.20506,37.84608],[-85.20421,37.84624],[-85.20148,37.85319],[-85.19627,37.85603],[-85.20615,37.8633],[-85.19853,37.8728],[-85.1956,37.87642],[-85.19963,37.89003],[-85.199,37.90091],[-85.18916,37.88457],[-85.18683,37.88411],[-85.1868,37.8909],[-85.18446,37.89226],[-85.15766,37.88584],[-85.153,37.88583],[-85.15412,37.89535],[-85.15295,37.89762],[-85.14714,37.8908],[-85.13839,37.89168],[-85.13192,37.9039],[-85.12544,37.91566],[-85.10622,37.90926],[-85.10747,37.8934],[-85.09758,37.88974],[-85.09409,37.88792],[-85.03458,37.89224],[-85.0305,37.89177],[-85.03114,37.88316],[-85.03115,37.8818],[-85.01031,37.85951],[-85.00043,37.85448],[-85.0029,37.8341],[-85.00872,37.83503],[-85.01175,37.81736],[-85.00594,37.81643],[-85.02984,37.63114],[-85.03909,37.54505],[-85.01293,37.55084],[-85.00192,37.54807],[-85.00201,37.53312],[-84.89814,37.5322],[-84.74786,37.5853],[-84.75244,37.59213],[-84.73671,37.59656],[-84.73155,37.58973],[-84.71175,37.59505],[-84.71516,37.60232],[-84.69416,37.61035],[-84.68832,37.61258],[-84.69583,37.61716],[-84.69405,37.62032],[-84.65805,37.61826],[-84.65215,37.62548],[-84.65854,37.63503],[-84.65902,37.63541],[-84.66623,37.6334],[-84.66685,37.6341],[-84.65457,37.64052],[-84.65352,37.64113],[-84.65356,37.65231],[-84.6564,37.65442],[-84.67906,37.64593],[-84.68045,37.64496],[-84.67354,37.64198],[-84.67213,37.64074],[-84.6785,37.63672],[-84.68,37.6367],[-84.69459,37.64103],[-84.69491,37.64152],[-84.67925,37.65622],[-84.68039,37.65755],[-84.6929,37.66415],[-84.69376,37.66487],[-84.70234,37.65981],[-84.70524,37.66074],[-84.69935,37.66795],[-84.68009,37.67417],[-84.6823,37.68506],[-84.68343,37.68734],[-84.69628,37.68244],[-84.70036,37.68156],[-84.69848,37.69469],[-84.69845,37.69741],[-84.74265,37.69769],[-84.74322,37.69905],[-84.73286,37.70867],[-84.73258,37.70976],[-84.74578,37.71478],[-84.7442,37.71674],[-84.72678,37.71391],[-84.72444,37.71435],[-84.73072,37.72617],[-84.72836,37.72888],[-84.69934,37.72235],[-84.68998,37.72682],[-84.70564,37.73191],[-84.70737,37.73373],[-84.68813,37.73632],[-84.68865,37.74177],[-84.702,37.74548],[-84.70489,37.74777],[-84.69429,37.75903],[-84.69424,37.76356],[-84.71395,37.76793],[-84.71571,37.7696],[-84.70292,37.78664],[-84.70274,37.78751],[-84.71637,37.79979],[-84.71682,37.80026],[-84.71579,37.81518],[-84.71595,37.81553],[-84.67952,37.82987],[-84.6771,37.82838],[-84.67982,37.80132],[-84.6795,37.79834],[-84.66789,37.7834],[-84.66555,37.78298],[-84.64982,37.78901],[-84.64933,37.7907],[-84.65966,37.80897],[-84.65862,37.80952],[-84.61235,37.8017],[-84.61001,37.80071],[-84.60836,37.79271],[-84.60999,37.79165],[-84.64066,37.79291],[-84.64222,37.79201],[-84.64335,37.77918],[-84.64322,37.77846],[-84.60658,37.76066],[-84.60501,37.75974],[-84.61569,37.74642],[-84.61496,37.74584],[-84.60632,37.74281],[-84.60541,37.743],[-84.58968,37.75414],[-84.58728,37.75347],[-84.58816,37.73812],[-84.58776,37.73642],[-84.57019,37.72872],[-84.56928,37.72906],[-84.55705,37.74743],[-84.55591,37.74842],[-84.54004,37.75425],[-84.53923,37.75481],[-84.53656,37.76915],[-84.53602,37.76971],[-84.49641,37.78505],[-84.49565,37.78547],[-84.48348,37.80138],[-84.48291,37.80188],[-84.46464,37.79892],[-84.46412,37.79961],[-84.48413,37.83585],[-84.48467,37.83747],[-84.47809,37.85212],[-84.4773,37.85273],[-84.44594,37.84074],[-84.44411,37.84131],[-84.418,37.87157],[-84.41645,37.87212],[-84.39202,37.84668],[-84.39067,37.84596],[-84.37047,37.85387],[-84.36854,37.85455],[-84.38304,37.89289],[-84.38386,37.89473],[-84.37973,37.90109],[-84.37739,37.90174],[-84.34117,37.88224],[-84.34059,37.88272],[-84.33787,37.89163],[-84.33765,37.89193],[-84.34891,37.89836],[-84.34897,37.8986],[-84.33875,37.90712],[-84.33871,37.90733],[-84.34803,37.91488],[-84.34799,37.91512],[-84.33024,37.92249],[-84.32995,37.92392],[-84.33986,37.93097],[-84.33998,37.93131],[-84.33065,37.9368],[-84.3308,37.93723],[-84.33842,37.93906],[-84.33837,37.93921],[-84.31147,37.95185],[-84.31075,37.95217],[-84.32328,37.95589],[-84.32331,37.95603],[-84.31175,37.96302],[-84.31172,37.96332],[-84.32414,37.96579],[-84.32443,37.96645],[-84.31964,38.0023],[-84.28271,38.01912],[-84.29281,38.03333],[-84.29299,38.03361],[-84.28481,38.04006],[-84.28465,38.04043],[-84.28618,38.06663],[-84.28637,38.06701],[-84.08024,38.11516],[-84.02625,38.1526],[-83.99068,38.17484],[-83.9827,38.19287],[-83.98383,38.19515],[-83.97018,38.20314],[-83.96947,38.20948],[-83.98741,38.22013],[-83.98917,38.22015],[-83.9901,38.20293],[-83.99477,38.2039],[-84.00684,38.21538],[-84.0085,38.21993],[-84.04297,38.22488],[-84.06271,38.23463],[-84.06207,38.23689],[-84.05382,38.23906],[-84.05772,38.24953],[-84.05699,38.25722],[-84.06817,38.25509],[-84.07985,38.25704],[-84.07445,38.26378],[-84.07323,38.26603],[-84.07782,38.27107],[-84.08012,38.27336],[-84.08951,38.27301],[-84.09547,38.2681],[-84.09681,38.25905],[-84.10326,38.25912],[-84.10137,38.2659],[-84.10421,38.27046],[-84.11649,38.27242],[-84.11995,38.27517],[-84.10516,38.28271],[-84.1045,38.28633],[-84.11736,38.28829],[-84.12696,38.30789],[-84.13289,38.30478],[-84.16658,38.35501],[-84.19386,38.37162],[-84.10268,38.45943],[-84.10671,38.46884],[-84.10712,38.46916],[-84.13066,38.4746],[-84.13124,38.47465],[-84.131,38.48267],[-84.13163,38.48297],[-84.14244,38.47603],[-84.14319,38.47602],[-84.15141,38.48962],[-84.1521,38.48993],[-84.17199,38.4865],[-84.17319,38.48736],[-84.16006,38.50108],[-84.16124,38.50177],[-84.18289,38.49678],[-84.18345,38.49735],[-84.1794,38.52331],[-84.17804,38.53327],[-84.1643,38.54491],[-84.16177,38.55394],[-84.16816,38.559],[-84.20714,38.55125],[-84.20886,38.54992],[-84.21707,38.55729],[-84.21763,38.55813],[-84.20383,38.56432],[-84.20297,38.56516],[-84.20541,38.58206],[-84.20473,38.58794],[-84.19575,38.58834],[-84.1953,38.5883],[-84.20091,38.60377],[-84.2075,38.59749],[-84.23415,38.80739],[-84.23604,38.82232],[-84.23054,38.82744],[-84.23294,38.88603],[-84.23289,38.8871],[-84.2864,38.95228],[-84.28874,38.95567],[-84.30005,38.9935],[-84.30716,39.0073],[-84.33985,39.03437],[-84.34089,39.03501],[-84.42565,39.0527],[-84.42652,39.05322],[-84.43401,39.09569],[-84.43495,39.09977],[-84.45282,39.11925],[-84.45619,39.12054],[-84.4792,39.11807],[-84.48059,39.11742],[-84.50434,39.09592],[-84.50612,39.09511],[-84.54971,39.09972],[-84.55096,39.09949],[-84.57256,39.08215],[-84.57306,39.08191],[-84.61685,39.07323],[-84.61845,39.07327],[-84.65842,39.09552],[-84.65993,39.09614],[-84.68487,39.1003],[-84.68593,39.10077],[-84.71788,39.13641],[-84.71826,39.13682],[-84.75139,39.14753],[-84.75244,39.14726],[-84.7842,39.1179],[-84.7874,39.11544],[-84.83142,39.10085],[-84.83248,39.10036],[-84.89694,39.05747],[-84.89729,39.05747],[-84.83027,38.97417],[-84.83003,38.97305],[-84.83299,38.96042],[-84.83363,38.95943],[-84.8762,38.92254],[-84.87706,38.92147],[-84.87723,38.90954],[-84.87702,38.90901],[-84.8679,38.89921],[-84.86643,38.89871],[-84.8145,38.89546],[-84.81331,38.89523],[-84.78542,38.88075],[-84.78518,38.88001],[-84.78981,38.86206],[-84.79094,38.86057],[-84.82962,38.83112],[-84.82993,38.83037],[-84.81417,38.80034],[-84.81339,38.79851],[-84.81432,38.7847],[-84.8149,38.78428],[-84.88679,38.79463],[-84.88724,38.7948],[-84.93976,38.77602],[-84.94121,38.77565],[-84.99111,38.77842],[-84.99229,38.77815],[-85.10094,38.72662],[-85.10172,38.72651],[-85.13605,38.70062],[-85.1368,38.7001],[-85.17189,38.68836],[-85.17298,38.68807],[-85.21237,38.69501],[-85.21482,38.69625],[-85.2464,38.73147],[-85.24692,38.73194],[-85.2767,38.74135],[-85.27859,38.74159],[-85.36176,38.73051],[-85.3636,38.73037],[-85.41339,38.73683],[-85.41489,38.73677],[-85.43532,38.729],[-85.43609,38.7285],[-85.45169,38.71037],[-85.45184,38.7102],[-85.45673,38.68734],[-85.45665,38.68603],[-85.43897,38.65963],[-85.43854,38.65896],[-85.43832,38.60596],[-85.43824,38.60468],[-85.41528,38.55926],[-85.41489,38.55775],[-85.41777,38.53822],[-85.41777,38.53775],[-85.43188,38.52455],[-85.43291,38.52398],[-85.37901,38.51903],[-85.37859,38.51895],[-85.36594,38.50787],[-85.3657,38.5077],[-85.31944,38.49761],[-85.31592,38.49624],[-85.31416,38.49262],[-85.34598,38.45957],[-85.33133,38.44233],[-85.32496,38.4038],[-85.29568,38.37384],[-85.28281,38.35796],[-85.32459,38.30998],[-85.35159,38.30322],[-85.39057,38.30779],[-85.39323,38.30779],[-85.39558,38.30508],[-85.40906,38.30373],[-85.40791,38.29466],[-85.41025,38.29376],[-85.41318,38.29467],[-85.41669,38.30237],[-85.42255,38.30192],[-85.42666,38.30374],[-85.42491,38.29422],[-85.42725,38.29286],[-85.44718,38.30194],[-85.44894,38.3042],[-85.46127,38.28563],[-85.46713,38.28535],[-85.40596,38.26389],[-85.4051,38.26359],[-85.42905,38.11817],[-85.43035,38.10703],[-85.46195,38.09662],[-85.46954,38.09617],[-85.51222,38.01096],[-85.51689,38.01096],[-85.49995,37.99872],[-85.48886,37.99056],[-85.49995,37.98467],[-85.53381,37.96518],[-85.52563,37.95294],[-85.52972,37.94705],[-85.57987,37.91258],[-85.58395,37.91076],[-85.58042,37.88312],[-85.58683,37.87631],[-85.60548,37.87041],[-85.61364,37.86995],[-85.6107,37.85907],[-85.61828,37.85136],[-85.69802,37.81137],[-85.73414,37.81086],[-85.73833,37.81225],[-85.73833,37.84287],[-85.75207,37.84314],[-85.75241,37.87946],[-85.7737,37.87919],[-85.77541,37.97709],[-85.82382,37.9779],[-85.82399,37.99129],[-85.91154,37.99197],[-85.91171,38.00671],[-85.99891,37.99963],[-86.0305,37.99062],[-86.0317,37.96897],[-86.03703,37.95787],[-86.04904,37.95814],[-86.06569,37.97465],[-86.0832,38.00266],[-86.08252,37.80823],[-86.15172,37.79892],[-86.27537,37.5933]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"KyFromAbove","url":"https://kyfromabove.ky.gov/"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"US","description":"6-inch or 1-foot aerial imagery captured from 2012 to 2014 through the Kentucky Aerial Photography and Elevation Data Program (KyFromAbove) and published by the Kentucky Division of Geographic Information (DGI).","end_date":"2014","id":"KYAPED","license_url":"https://kygeonet.ky.gov/kyfromabove/pdfs/KyFromAboveDistributionPolicy.pdf","max_zoom":20,"min_zoom":3,"name":"KyFromAbove","permission_osm":"implicit","privacy_policy_url":"https://kentucky.gov/policies/Pages/default.aspx","start_date":"2012","type":"wms","url":"https://kyraster.ky.gov/arcgis/services/ImageServices/Ky_KYAPED_Imagery_WGS84WM/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-85.60121,36.87174],[-85.59544,36.86312],[-85.57471,36.8382],[-85.5816,36.82323],[-85.59596,36.81869],[-85.58844,36.77788],[-85.55282,36.77383],[-85.54248,36.77429],[-85.51834,36.73394],[-85.51891,36.73212],[-85.47298,36.73393],[-85.46954,36.73167],[-85.49653,36.69086],[-85.43633,36.61853],[-85.20834,36.62566],[-85.19537,36.6255],[-84.83859,36.60505],[-84.83005,36.60447],[-83.78902,36.58388],[-83.69071,36.58258],[-83.67461,36.60308],[-83.67311,36.60468],[-83.64951,36.61668],[-83.64831,36.62268],[-83.58451,36.64138],[-83.57731,36.64178],[-83.53149,36.6652],[-83.52961,36.66618],[-83.43171,36.66649],[-83.42371,36.66739],[-83.313,36.70909],[-83.3114,36.71029],[-83.19682,36.73862],[-83.1946,36.73949],[-83.13684,36.74303],[-83.13639,36.74309],[-83.13099,36.74979],[-83.12783,36.75083],[-83.12934,36.77714],[-83.13169,36.78149],[-83.10803,36.80218],[-83.10309,36.80669],[-83.10209,36.82819],[-83.10179,36.82909],[-83.07969,36.84059],[-83.07519,36.84089],[-83.07559,36.85059],[-83.07259,36.85459],[-83.04219,36.85439],[-83.02689,36.85549],[-83.01259,36.84729],[-83.00922,36.8473],[-83.00328,36.85224],[-82.99838,36.85663],[-82.91031,36.87405],[-82.90777,36.87471],[-82.87949,36.88909],[-82.87857,36.88958],[-82.87256,36.90338],[-82.87747,36.90796],[-82.85864,36.92779],[-82.85796,36.92953],[-82.8561,36.95247],[-82.85587,36.95385],[-82.86736,36.96318],[-82.87023,36.9655],[-82.86845,36.97648],[-82.86754,36.97752],[-82.83853,36.98729],[-82.83601,36.98884],[-82.83029,37.00352],[-82.82868,37.00574],[-82.78243,37.00824],[-82.78214,37.00824],[-82.76641,37.02311],[-82.75917,37.02733],[-82.75071,37.02411],[-82.74798,37.02521],[-82.74368,37.0414],[-82.74245,37.04298],[-82.72471,37.04276],[-82.72247,37.0451],[-82.72631,37.06687],[-82.72702,37.07302],[-82.71835,37.07571],[-82.71674,37.07722],[-82.7262,37.11588],[-82.7221,37.12017],[-82.63401,37.1542],[-82.63349,37.15426],[-82.59323,37.18206],[-82.59245,37.18285],[-82.5079,37.22273],[-82.49886,37.22704],[-82.35534,37.26522],[-82.34874,37.26794],[-82.34193,37.27398],[-82.34392,37.28071],[-82.32772,37.28285],[-82.32464,37.28295],[-81.9646,37.54275],[-81.96454,37.54325],[-81.97275,37.54688],[-81.97508,37.54657],[-81.99379,37.53806],[-81.99449,37.53795],[-81.99772,37.54339],[-81.9984,37.54335],[-82.00955,37.53309],[-82.01186,37.53314],[-82.04175,37.54822],[-82.04278,37.54809],[-82.04591,37.52811],[-82.04677,37.52816],[-82.04911,37.53482],[-82.04989,37.53531],[-82.06271,37.53592],[-82.06374,37.53618],[-82.07325,37.55502],[-82.07503,37.55582],[-82.09892,37.5533],[-82.10289,37.55305],[-82.10819,37.55991],[-82.11658,37.55959],[-82.13308,37.55291],[-82.1333,37.553],[-82.13349,37.56071],[-82.13395,37.56224],[-82.14456,37.56694],[-82.14465,37.56831],[-82.1296,37.57197],[-82.1273,37.57268],[-82.12648,37.58294],[-82.12732,37.58667],[-82.13034,37.59174],[-82.13198,37.59354],[-82.14843,37.59091],[-82.15672,37.59279],[-82.15672,37.60906],[-82.15674,37.6092],[-82.16814,37.60849],[-82.16906,37.60987],[-82.16458,37.6189],[-82.16419,37.62019],[-82.18083,37.62138],[-82.18143,37.62184],[-82.17264,37.6323],[-82.17245,37.63259],[-82.17463,37.64742],[-82.17526,37.64797],[-82.18799,37.64758],[-82.19144,37.64438],[-82.18669,37.62758],[-82.1873,37.62694],[-82.20969,37.6251],[-82.21349,37.62541],[-82.22611,37.65309],[-82.23939,37.66146],[-82.256,37.65679],[-82.25711,37.65675],[-82.28193,37.67534],[-82.2823,37.67583],[-82.28798,37.66844],[-82.28817,37.66823],[-82.29439,37.67796],[-82.29474,37.67828],[-82.30231,37.67555],[-82.30395,37.67576],[-82.29705,37.70084],[-82.29663,37.7024],[-82.30568,37.70671],[-82.30724,37.70767],[-82.3183,37.73305],[-82.31888,37.73376],[-82.33335,37.7412],[-82.33358,37.74328],[-82.31078,37.76269],[-82.31164,37.76429],[-82.32946,37.76239],[-82.33116,37.76313],[-82.323,37.77391],[-82.3237,37.77503],[-82.33722,37.77517],[-82.3376,37.77537],[-82.33838,37.78043],[-82.3397,37.78551],[-82.37487,37.80216],[-82.37739,37.80301],[-82.38526,37.81741],[-82.38659,37.81821],[-82.4015,37.81003],[-82.40165,37.81009],[-82.3996,37.82939],[-82.39968,37.82993],[-82.41737,37.84566],[-82.42048,37.84681],[-82.4148,37.85588],[-82.41465,37.85626],[-82.42351,37.86031],[-82.42426,37.86171],[-82.40844,37.86606],[-82.40746,37.86747],[-82.41632,37.86963],[-82.41768,37.87066],[-82.4192,37.88208],[-82.41978,37.88382],[-82.46149,37.91309],[-82.46288,37.91483],[-82.47252,37.89924],[-82.47457,37.90029],[-82.47497,37.91115],[-82.47553,37.91204],[-82.48802,37.91734],[-82.48819,37.91807],[-82.48019,37.92583],[-82.48047,37.92626],[-82.49827,37.92818],[-82.49936,37.92937],[-82.50201,37.93477],[-82.50127,37.93562],[-82.48916,37.93796],[-82.48905,37.93872],[-82.4973,37.94551],[-82.49668,37.9464],[-82.4751,37.95491],[-82.4718,37.95912],[-82.48441,37.9699],[-82.48384,37.97157],[-82.46407,37.98029],[-82.46426,37.98341],[-82.48329,37.98426],[-82.48387,37.9845],[-82.48757,37.99809],[-82.48773,37.99833],[-82.51597,37.99993],[-82.51735,38.0012],[-82.551,38.07045],[-82.55126,38.0708],[-82.58364,38.09032],[-82.58404,38.09066],[-82.5857,38.107],[-82.58778,38.10888],[-82.61945,38.12074],[-82.62035,38.12148],[-82.62138,38.13231],[-82.62212,38.13341],[-82.63647,38.13786],[-82.63731,38.13905],[-82.63895,38.15674],[-82.64474,38.16549],[-82.61323,38.1704],[-82.61134,38.17155],[-82.59885,38.20171],[-82.59844,38.21739],[-82.61252,38.23455],[-82.61226,38.23609],[-82.60713,38.24598],[-82.60533,38.2473],[-82.58643,38.24561],[-82.58606,38.24562],[-82.57812,38.25515],[-82.57466,38.26387],[-82.58282,38.29548],[-82.58306,38.29683],[-82.57188,38.31578],[-82.57269,38.3188],[-82.59652,38.34285],[-82.59798,38.34491],[-82.59574,38.41819],[-82.59342,38.42186],[-82.60406,38.45963],[-82.60409,38.45984],[-82.61278,38.47359],[-82.6138,38.47453],[-82.65438,38.49483],[-82.65705,38.49682],[-82.69957,38.54406],[-82.70005,38.54434],[-82.72485,38.5576],[-82.73096,38.55926],[-82.78915,38.55989],[-82.78978,38.55995],[-82.84072,38.58725],[-82.84195,38.58827],[-82.85392,38.61213],[-82.85429,38.61345],[-82.85881,38.6574],[-82.85936,38.65949],[-82.87693,38.68756],[-82.8772,38.68851],[-82.87018,38.73294],[-82.87013,38.73362],[-82.88572,38.75499],[-82.88609,38.7552],[-82.92519,38.74965],[-82.93347,38.74701],[-82.97128,38.72724],[-82.97157,38.72715],[-83.02798,38.72709],[-83.02983,38.72618],[-83.06051,38.69095],[-83.06213,38.68967],[-83.11053,38.67306],[-83.11247,38.67158],[-83.13402,38.63308],[-83.13495,38.63172],[-83.15165,38.6197],[-83.15332,38.6189],[-83.20318,38.6167],[-83.20471,38.61686],[-83.2449,38.62868],[-83.2465,38.62846],[-83.29282,38.59661],[-83.2946,38.59648],[-83.31529,38.60671],[-83.31692,38.60832],[-83.3272,38.63725],[-83.32773,38.63781],[-83.35707,38.65436],[-83.3582,38.65497],[-83.46575,38.67484],[-83.46796,38.67517],[-83.51888,38.70261],[-83.52062,38.70296],[-83.62488,38.67913],[-83.62707,38.67797],[-83.64426,38.63771],[-83.64507,38.63625],[-83.65677,38.6279],[-83.66005,38.62718],[-83.76049,38.65177],[-83.76354,38.65225],[-83.77283,38.65914],[-83.77371,38.6608],[-83.78446,38.69641],[-83.78661,38.69881],[-83.83487,38.71625],[-83.83641,38.71734],[-83.84621,38.74229],[-83.84873,38.74718],[-83.86406,38.75895],[-83.86653,38.7602],[-83.92529,38.77103],[-83.92636,38.77128],[-83.96134,38.78731],[-83.96219,38.78744],[-84.07001,38.77033],[-84.07075,38.77026],[-84.20063,38.80157],[-84.20559,38.80259],[-84.22895,38.82409],[-84.23019,38.82636],[-84.23185,38.87281],[-84.23208,38.8747],[-84.40671,38.80609],[-84.40781,38.80587],[-84.41876,38.80576],[-84.53176,38.78992],[-84.59728,38.79086],[-84.62429,38.80375],[-84.62962,38.80288],[-84.64568,38.79257],[-84.65574,38.79082],[-84.66003,38.77725],[-84.78056,38.76487],[-84.78572,38.72003],[-84.79289,38.72463],[-84.79397,38.72462],[-84.81239,38.71229],[-84.8134,38.71168],[-84.81128,38.70268],[-84.81181,38.70234],[-84.8319,38.71176],[-84.83359,38.71197],[-84.84386,38.69761],[-84.84456,38.69675],[-84.86581,38.70048],[-84.86882,38.6997],[-84.87241,38.68955],[-84.873,38.68906],[-84.88826,38.68696],[-84.88859,38.68663],[-84.88971,38.67664],[-84.89022,38.67633],[-84.90335,38.67861],[-84.90436,38.67833],[-84.91084,38.66879],[-84.91238,38.66864],[-84.92561,38.67334],[-84.92653,38.6728],[-84.93664,38.65111],[-84.93693,38.65071],[-84.96629,38.64951],[-84.96778,38.64925],[-84.97436,38.6368],[-84.97537,38.63592],[-84.98941,38.63129],[-84.99073,38.63078],[-85.01388,38.63223],[-85.015,38.63235],[-85.01229,38.62395],[-85.01238,38.62314],[-85.02384,38.6152],[-85.02494,38.61358],[-85.05726,38.61167],[-85.05904,38.61144],[-85.06828,38.60429],[-85.06855,38.60374],[-85.06624,38.59489],[-85.0664,38.59419],[-85.07359,38.59683],[-85.07448,38.59677],[-85.07605,38.58019],[-85.07588,38.57821],[-85.06841,38.56868],[-85.06543,38.56577],[-85.04279,38.57355],[-85.0409,38.57415],[-85.00371,38.55512],[-85.00205,38.55341],[-85.00987,38.54945],[-85.01199,38.54807],[-85.02979,38.50957],[-85.02938,38.50779],[-85.02305,38.50388],[-85.01919,38.50382],[-85.00387,38.51559],[-85.00155,38.5165],[-84.98068,38.51741],[-84.97816,38.51575],[-84.99218,38.49471],[-84.99226,38.49214],[-84.95469,38.47086],[-84.95383,38.46938],[-84.95149,38.46166],[-84.95136,38.45798],[-84.96355,38.43844],[-84.96376,38.43794],[-84.95917,38.43173],[-84.95749,38.43005],[-84.94321,38.42641],[-84.93882,38.42749],[-84.9372,38.45283],[-84.93543,38.45602],[-84.92632,38.46346],[-84.9226,38.46457],[-84.91306,38.46034],[-84.91196,38.45929],[-84.90898,38.45123],[-84.90943,38.44975],[-84.92806,38.43691],[-84.92748,38.4333],[-84.88133,38.4197],[-84.88054,38.41902],[-84.89759,38.38316],[-84.89891,38.37996],[-84.86692,38.36405],[-84.86684,38.36218],[-84.88198,38.3566],[-84.88437,38.35162],[-84.89256,38.35529],[-84.90649,38.37485],[-84.94563,38.35781],[-84.99716,38.33537],[-84.9567,38.33247],[-84.99875,38.27509],[-85.00762,38.17587],[-85.00938,38.17497],[-85.00479,38.16136],[-85.00598,38.15819],[-85.02373,38.1288],[-85.02257,38.12789],[-85.03489,38.12114],[-85.03958,38.11979],[-85.05148,38.08766],[-85.05388,38.07769],[-85.07271,38.05691],[-85.07745,38.04605],[-85.11203,38.02576],[-85.12021,38.02579],[-85.12321,38.01039],[-85.1291,37.99998],[-85.13903,38.00001],[-85.14077,38.00274],[-85.15076,37.98917],[-85.15193,37.98827],[-85.16301,37.99147],[-85.16122,38.00008],[-85.1618,38.00144],[-85.16882,37.99874],[-85.17001,37.99421],[-85.14945,37.89715],[-85.14714,37.8908],[-85.13839,37.89168],[-85.13192,37.9039],[-85.12544,37.91566],[-85.10622,37.90926],[-85.10747,37.8934],[-85.09758,37.88974],[-85.09409,37.88792],[-85.03458,37.89224],[-85.0305,37.89177],[-85.03114,37.88316],[-85.03115,37.8818],[-85.01031,37.85951],[-85.00043,37.85448],[-85.0029,37.8341],[-85.00872,37.83503],[-85.01175,37.81736],[-85.00594,37.81643],[-85.02984,37.63114],[-85.03909,37.54505],[-85.0425,37.46074],[-85.04454,37.41225],[-85.0648,37.4164],[-85.07234,37.41462],[-85.0799,37.40875],[-85.08343,37.39924],[-85.09561,37.39883],[-85.10605,37.3975],[-85.12001,37.38485],[-85.12812,37.38578],[-85.13111,37.3663],[-85.13229,37.36041],[-85.15681,37.31832],[-85.16495,37.31064],[-85.1107,37.28146],[-85.05648,37.2568],[-85.05337,37.19694],[-85.04304,37.18602],[-85.08958,37.12544],[-85.1656,37.03364],[-85.20264,37.00018],[-85.20553,36.99702],[-85.21078,36.98116],[-85.23229,36.92544],[-85.25013,36.92639],[-85.4516,36.93842],[-85.47465,36.89399],[-85.49997,36.87359],[-85.50745,36.8677],[-85.53678,36.8627],[-85.56035,36.85136],[-85.57532,36.8645],[-85.57993,36.86858],[-85.60121,36.87174]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"KyFromAbove","url":"https://kyfromabove.ky.gov/"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"US","description":"6-inch aerial imagery captured in 2019 through the Kentucky Aerial Photography and Elevation Data Program (KyFromAbove) and published by the Kentucky Division of Geographic Information (DGI).","end_date":"2019","id":"KYAPED_2019_6in","license_url":"https://kygeonet.ky.gov/kyfromabove/pdfs/KyFromAboveDistributionPolicy.pdf","max_zoom":20,"min_zoom":2,"name":"KyFromAbove 2019 6in","permission_osm":"implicit","privacy_policy_url":"https://kentucky.gov/policies/Pages/default.aspx","start_date":"2019","type":"wms","url":"https://kyraster.ky.gov/arcgis/services/ImageServices/Ky_KYAPED_2019_6IN_WGS84WM/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-72.13569,42.03025],[-72.53156,42.03458],[-72.57278,42.03022],[-72.58216,42.02474],[-72.60717,42.02515],[-72.60797,42.03108],[-72.64019,42.03205],[-72.69933,42.03696],[-72.75714,42.03635],[-72.75868,42.02439],[-72.76572,42.02276],[-72.76673,42.00327],[-72.81705,41.99769],[-72.81378,42.03674],[-73.03678,42.03929],[-73.43281,42.05059],[-73.49688,42.04968],[-73.50814,42.08626],[-73.26496,42.74594],[-72.6872,42.73348],[-71.97286,42.71307],[-71.69663,42.70572],[-71.29464,42.69704],[-71.27894,42.71136],[-71.26787,42.72603],[-71.25526,42.73659],[-71.24598,42.74231],[-71.23732,42.74491],[-71.22391,42.74643],[-71.18181,42.73732],[-71.18617,42.79088],[-71.16667,42.80891],[-71.13277,42.82145],[-71.06442,42.80626],[-71.05395,42.83337],[-71.04483,42.84869],[-71.03128,42.85924],[-70.96702,42.86887],[-70.94967,42.87588],[-70.92973,42.88504],[-70.91465,42.88661],[-70.90348,42.88671],[-70.88566,42.88288],[-70.84776,42.86088],[-70.82963,42.86875],[-70.81567,42.87204],[-70.45842,42.67694],[-70.8759,42.35302],[-69.88713,42.0519],[-69.89537,41.21643],[-70.81959,41.23192],[-71.09996,41.43386],[-71.12047,41.49717],[-71.13131,41.59231],[-71.14059,41.6051],[-71.14047,41.62389],[-71.13569,41.6284],[-71.13291,41.6601],[-71.17605,41.6681],[-71.17588,41.67154],[-71.1954,41.67514],[-71.26139,41.7523],[-71.32885,41.7811],[-71.33407,41.79455],[-71.34156,41.79817],[-71.33914,41.80842],[-71.3472,41.8231],[-71.3449,41.828],[-71.3352,41.8355],[-71.3422,41.8448],[-71.33392,41.86229],[-71.34086,41.87872],[-71.33865,41.89865],[-71.38174,41.8932],[-71.38127,42.01885],[-71.49744,42.01725],[-71.52888,42.01499],[-71.79925,42.00807],[-71.80067,42.02351],[-72.0635,42.02735],[-72.13569,42.03025]]],"type":"Polygon"},"properties":{"country_code":"US","id":"MassGIS-L3-Parcels","max_zoom":20,"min_zoom":15,"name":"MassGIS L3 Parcels","overlay":true,"type":"tms","url":"https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/MassGIS_Level3_Parcels/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[-76.23413,37.92037],[-76.59805,38.15832],[-76.94,38.27053],[-77.03819,38.41379],[-77.23526,38.33627],[-77.31216,38.41056],[-77.26273,38.56642],[-77.043,38.71338],[-77.04987,38.7937],[-76.92627,38.8925],[-77.04094,38.9845],[-77.12162,38.92523],[-77.15012,38.95514],[-77.25243,38.97543],[-77.25929,39.02425],[-77.34581,39.05492],[-77.46185,39.07038],[-77.53738,39.13965],[-77.47421,39.22481],[-77.57275,39.30428],[-77.72347,39.32899],[-77.77702,39.46323],[-77.86148,39.51622],[-77.84088,39.60886],[-77.95624,39.59299],[-78.16635,39.69556],[-78.27003,39.62156],[-78.3387,39.64007],[-78.46641,39.52364],[-78.6628,39.54006],[-78.79875,39.60622],[-78.9814,39.4468],[-79.06723,39.47649],[-79.48505,39.19954],[-79.48557,39.72158],[-75.78836,39.72181],[-75.69099,38.46058],[-75.04924,38.45816],[-75.04984,38.40222],[-75.08151,38.32321],[-75.09773,38.30907],[-75.187,38.09755],[-75.23798,38.0224],[-75.61821,37.98967],[-75.86369,37.90953],[-76.23413,37.92037]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"DoIT, MD iMap, MDP","url":"http://imap.maryland.gov/Pages/imagery-products.aspx"},"available_projections":["EPSG:4326","EPSG:2248","EPSG:102685","EPSG:26985","EPSG:3857"],"country_code":"US","description":"Six Inch resolution aerial imagery for the State of Maryland","end_date":"2016","id":"geodata.md.gov-MD_SixInchImagery","max_zoom":20,"name":"MD Latest 6 Inch Aerial Imagery","start_date":"2013","type":"wms","url":"https://geodata.md.gov/imap/services/Imagery/MD_SixInchImagery/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=MD_SixInchImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-76.46299,38.9808],[-76.46326,38.94779],[-76.49499,38.9369],[-76.51617,38.93697],[-76.54763,38.9591],[-76.54745,38.98667],[-76.51559,39.00306],[-76.4839,39.00292],[-76.46299,38.9808]],[[-76.09548,38.84133],[-76.0428,38.8409],[-76.04289,38.8298],[-76.03229,38.8297],[-76.03277,38.79667],[-76.02545,38.79664],[-76.02541,38.77462],[-76.03308,38.77472],[-76.03366,38.73073],[-76.05462,38.73094],[-76.0548,38.72005],[-76.10753,38.72043],[-76.10714,38.75338],[-76.11754,38.75346],[-76.11701,38.79731],[-76.09601,38.79715],[-76.09548,38.84133]],[[-77.23397,39.16838],[-77.25516,39.14647],[-77.25496,39.11343],[-77.18093,39.05337],[-77.14907,39.0477],[-77.12798,39.04779],[-77.10683,39.05325],[-77.10688,39.0917],[-77.11775,39.10827],[-77.16011,39.12485],[-77.15975,39.15214],[-77.17048,39.16302],[-77.21284,39.17272],[-77.23397,39.16838]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"DoIT, MD iMap, MDP","url":"http://imap.maryland.gov/Pages/imagery-products.aspx"},"available_projections":["EPSG:2248","EPSG:3857","EPSG:4326","EPSG:26985"],"country_code":"US","description":"Three Inch Resolution Imagery for the cities of Rockville, Gaithersburg and Annapolis","id":"geodata.md.gov-MD_ThreeInchImagery","max_zoom":20,"name":"MD Three Inch Aerial Imagery","type":"wms","url":"https://geodata.md.gov/imap/services/Imagery/MD_ThreeInchImagery/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=MD_ThreeInchImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-76.23413,37.92037],[-76.59805,38.15832],[-76.94,38.27053],[-77.03819,38.41379],[-77.23526,38.33627],[-77.31216,38.41056],[-77.26273,38.56642],[-77.043,38.71338],[-77.04987,38.7937],[-76.92627,38.8925],[-77.04094,38.9845],[-77.12162,38.92523],[-77.15012,38.95514],[-77.25243,38.97543],[-77.25929,39.02425],[-77.34581,39.05492],[-77.46185,39.07038],[-77.53738,39.13965],[-77.47421,39.22481],[-77.57275,39.30428],[-77.72347,39.32899],[-77.77702,39.46323],[-77.86148,39.51622],[-77.84088,39.60886],[-77.95624,39.59299],[-78.16635,39.69556],[-78.27003,39.62156],[-78.3387,39.64007],[-78.46641,39.52364],[-78.6628,39.54006],[-78.79875,39.60622],[-78.9814,39.4468],[-79.06723,39.47649],[-79.48505,39.19954],[-79.48557,39.72158],[-75.78836,39.72181],[-75.69099,38.46058],[-75.04924,38.45816],[-75.04984,38.40222],[-75.08151,38.32321],[-75.09773,38.30907],[-75.187,38.09755],[-75.23798,38.0224],[-75.61821,37.98967],[-75.86369,37.90953],[-76.23413,37.92037]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"DoIT, MD iMap, MDP","url":"http://imap.maryland.gov/Pages/imagery-products.aspx"},"available_projections":["CRS:84","EPSG:4326","EPSG:3857","EPSG:102685","EPSG:26985","EPSG:2248"],"country_code":"US","description":"Maryland State Highway Administration road features and additional Maryland focused landmarks","id":"geodata.md.gov-MD_ColorBasemap","name":"MD Transportation Basemap","type":"wms","url":"https://geodata.md.gov/imap/services/Transportation/MD_ColorBasemap/MapServer/WmsServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=MD_ColorBasemap&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-93.32967,44.79107],[-93.32964,44.63037],[-93.28189,44.63074],[-93.28169,44.47194],[-93.28176,44.47137],[-93.0395,44.47103],[-93.03924,44.51125],[-92.91932,44.51049],[-92.91899,44.54325],[-92.79268,44.54324],[-92.7926,44.62971],[-92.73207,44.62948],[-92.73122,44.71411],[-92.80342,44.74652],[-92.82767,44.75056],[-92.85209,44.74695],[-92.85959,44.75359],[-92.87724,44.77283],[-92.88149,44.77492],[-92.9049,44.77408],[-92.92808,44.78111],[-92.93969,44.77563],[-92.94843,44.76786],[-92.95859,44.76724],[-92.98604,44.77501],[-92.99291,44.77517],[-93.00306,44.77206],[-93.01685,44.77635],[-93.02153,44.79431],[-93.00523,44.81541],[-93.0119,44.83657],[-93.00859,44.85652],[-93.01041,44.86586],[-93.02074,44.89279],[-93.0309,44.8967],[-93.04083,44.90391],[-93.04445,44.91514],[-93.04725,44.9195],[-93.04724,44.92318],[-93.12863,44.92335],[-93.12882,44.91965],[-93.13257,44.91243],[-93.1641,44.89048],[-93.18289,44.8872],[-93.20075,44.86486],[-93.20325,44.85263],[-93.22179,44.83825],[-93.25188,44.81146],[-93.28177,44.80611],[-93.30453,44.7945],[-93.32645,44.79245],[-93.32961,44.79107],[-93.32967,44.79107]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Dakota County GIS","url":"https://dakotacounty.us"},"available_projections":["EPSG:4326","EPSG:26915"],"country_code":"US","end_date":"2017","icon":"https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png","id":"DCGIS-County-Imagery-2017-Fall-Leaf-Off-6-Inch","license_url":"https://www.co.dakota.mn.us/HomeProperty/MappingServices/GISData/Pages/default.aspx","max_zoom":20,"min_zoom":5,"name":"Dakota County GIS 2017 Fall Leaf-Off 6-Inch","privacy_policy_url":"https://www.co.dakota.mn.us/Policies/Pages/default.aspx","start_date":"2017","type":"wms","url":"https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2017AirPhotoLeafOff6Inch/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=2017AirPhotoLeafOff6Inch:None&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-93.32967,44.79107],[-93.32964,44.63037],[-93.28189,44.63074],[-93.28169,44.47194],[-93.28176,44.47137],[-93.0395,44.47103],[-93.03924,44.51125],[-92.91932,44.51049],[-92.91899,44.54325],[-92.79268,44.54324],[-92.7926,44.62971],[-92.73207,44.62948],[-92.73122,44.71411],[-92.80342,44.74652],[-92.82767,44.75056],[-92.85209,44.74695],[-92.85959,44.75359],[-92.87724,44.77283],[-92.88149,44.77492],[-92.9049,44.77408],[-92.92808,44.78111],[-92.93969,44.77563],[-92.94843,44.76786],[-92.95859,44.76724],[-92.98604,44.77501],[-92.99291,44.77517],[-93.00306,44.77206],[-93.01685,44.77635],[-93.02153,44.79431],[-93.00523,44.81541],[-93.0119,44.83657],[-93.00859,44.85652],[-93.01041,44.86586],[-93.02074,44.89279],[-93.0309,44.8967],[-93.04083,44.90391],[-93.04445,44.91514],[-93.04725,44.9195],[-93.04724,44.92318],[-93.12863,44.92335],[-93.12882,44.91965],[-93.13257,44.91243],[-93.1641,44.89048],[-93.18289,44.8872],[-93.20075,44.86486],[-93.20325,44.85263],[-93.22179,44.83825],[-93.25188,44.81146],[-93.28177,44.80611],[-93.30453,44.7945],[-93.32645,44.79245],[-93.32961,44.79107],[-93.32967,44.79107]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Dakota County GIS","url":"https://dakotacounty.us"},"available_projections":["EPSG:4326","EPSG:26915","EPSG:103726"],"country_code":"US","end_date":"2019","icon":"https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png","id":"DCGIS-County-Imagery-2019-Spring-Leaf-Off-6-Inch","license_url":"https://www.co.dakota.mn.us/HomeProperty/MappingServices/GISData/Pages/default.aspx","max_zoom":20,"min_zoom":5,"name":"Dakota County GIS 2019 Spring Leaf-Off 6-Inch","privacy_policy_url":"https://www.co.dakota.mn.us/Policies/Pages/default.aspx","start_date":"2019","type":"wms","url":"https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2019AirPhotoLeafOff6Inch_Spring/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=2019AirPhotoLeafOff6Inch_Spring:default&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-97.17831,48.87603],[-97.1904,48.81522],[-97.15809,48.81035],[-97.18153,48.79821],[-97.08987,48.68402],[-97.17544,48.56222],[-97.13912,48.55541],[-97.16595,48.54825],[-97.12678,48.5202],[-97.16268,48.47779],[-97.12817,48.47437],[-97.15064,48.44082],[-97.12483,48.4419],[-97.14588,48.43116],[-97.12259,48.41793],[-97.15398,48.41814],[-97.13118,48.40729],[-97.16339,48.39287],[-97.13335,48.38221],[-97.15627,48.36559],[-97.11224,48.29648],[-97.14504,48.26877],[-97.1207,48.22476],[-97.12452,48.22318],[-97.1372,48.22696],[-97.14967,48.22316],[-97.1522,48.21964],[-97.13907,48.22196],[-97.12289,48.2165],[-97.11785,48.20974],[-97.13931,48.21676],[-97.12929,48.20839],[-97.14752,48.17058],[-97.12098,48.15956],[-97.14652,48.14223],[-97.07227,48.04808],[-97.02317,47.87399],[-96.97416,47.82335],[-96.99169,47.80842],[-96.93499,47.76706],[-96.93113,47.7154],[-96.85096,47.5983],[-96.87184,47.41882],[-96.8376,47.38899],[-96.85847,47.36769],[-96.829,47.32762],[-96.84488,47.19282],[-96.82192,47.18425],[-96.84147,47.15185],[-96.81257,47.03859],[-96.83956,47.00674],[-96.79177,46.92847],[-96.75327,46.92457],[-96.80255,46.81153],[-96.77546,46.76676],[-96.79821,46.62933],[-96.74722,46.58235],[-96.72201,46.43999],[-96.59961,46.33014],[-96.59269,46.17522],[-96.55452,46.08399],[-96.58118,45.82302],[-96.6626,45.73869],[-96.83866,45.64752],[-96.85776,45.60597],[-96.69255,45.41735],[-96.5218,45.37565],[-96.45314,45.30079],[-96.45306,43.50038],[-93.84857,43.49963],[-91.21772,43.50064],[-91.23187,43.58183],[-91.26899,43.61659],[-91.24414,43.77468],[-91.43253,43.99684],[-91.59208,44.03138],[-91.72156,44.13035],[-91.87517,44.20058],[-91.91863,44.32268],[-91.96682,44.36399],[-92.23086,44.4445],[-92.33612,44.55401],[-92.54807,44.5678],[-92.56944,44.60355],[-92.62148,44.61505],[-92.63211,44.64904],[-92.80786,44.75085],[-92.75065,44.93731],[-92.76207,45.02433],[-92.80313,45.06157],[-92.74092,45.11296],[-92.76188,45.28702],[-92.65043,45.39852],[-92.64651,45.44035],[-92.7456,45.55302],[-92.88376,45.57549],[-92.8692,45.71758],[-92.78463,45.7642],[-92.70771,45.89491],[-92.55194,45.95166],[-92.52519,45.98387],[-92.46936,45.97382],[-92.42856,46.02425],[-92.35177,46.01569],[-92.33292,46.06271],[-92.29404,46.07439],[-92.2913,46.66815],[-92.2071,46.65195],[-92.1761,46.68635],[-92.2047,46.70405],[-92.1463,46.71595],[-92.1166,46.74865],[-92.01631,46.70598],[-92.08868,46.79367],[-91.7799,46.94341],[-91.57352,47.09003],[-91.46563,47.13124],[-91.04681,47.45632],[-90.7776,47.60573],[-90.43711,47.73164],[-89.97463,47.83056],[-89.75663,47.9041],[-89.68041,47.96408],[-89.63918,47.95373],[-89.62363,47.99464],[-89.57027,47.98571],[-89.49176,48.00536],[-89.5698,47.99899],[-89.61071,48.01786],[-89.65088,48.00354],[-89.77537,48.02279],[-89.89721,47.98751],[-89.99383,48.02802],[-90.02334,48.08468],[-90.13579,48.11215],[-90.3743,48.09092],[-90.4674,48.10875],[-90.55671,48.09594],[-90.57969,48.12381],[-90.75159,48.091],[-90.79823,48.1369],[-90.77794,48.16385],[-90.83641,48.17704],[-90.8393,48.23957],[-90.88576,48.24596],[-91.08248,48.18116],[-91.26678,48.07884],[-91.42958,48.04866],[-91.48819,48.06839],[-91.56752,48.0438],[-91.55912,48.1086],[-91.63993,48.09712],[-91.68212,48.12251],[-91.71176,48.11466],[-91.71537,48.19951],[-91.86437,48.20696],[-91.89311,48.23799],[-91.95836,48.23314],[-91.95411,48.25227],[-92.00653,48.26542],[-92.00012,48.3211],[-92.05523,48.35937],[-92.26256,48.35492],[-92.30618,48.31625],[-92.26959,48.24819],[-92.36992,48.22029],[-92.46978,48.3521],[-92.45644,48.41409],[-92.50748,48.44799],[-92.65623,48.43648],[-92.71269,48.46299],[-92.69868,48.49485],[-92.62702,48.50328],[-92.63489,48.54256],[-92.72842,48.53938],[-92.95002,48.60835],[-92.9548,48.63154],[-93.17839,48.62301],[-93.25466,48.64282],[-93.46548,48.59164],[-93.46739,48.54646],[-93.79338,48.51632],[-93.84436,48.63022],[-94.22422,48.64947],[-94.29121,48.70782],[-94.41584,48.71098],[-94.45239,48.69241],[-94.64538,48.74403],[-94.69441,48.78945],[-94.68347,48.88413],[-94.81627,49.32141],[-94.9574,49.37021],[-95.05831,49.35326],[-95.1534,49.38449],[-95.1532,48.99888],[-97.22956,49.00046],[-97.23421,48.94739],[-97.17831,48.87603]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"MnGeo","url":"https://www.mngeo.state.mn.us/chouse/wms/composite_image.html"},"available_projections":["EPSG:26915"],"country_code":"US","end_date":"2017","icon":"https://gisdata.mn.gov/agencyLogos/mnLogo.jpg","id":"Minnesota-Composite-Image-Service","license_url":"ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_mngeo/base_mn_composite_image_service/metadata/metadata.html","max_zoom":20,"min_zoom":5,"name":"Minnesota Composite Image Service","privacy_policy_url":"https://www.co.dakota.mn.us/Policies/Pages/default.aspx","start_date":"2008","type":"wms","url":"https://imageserver.gisdata.mn.gov/cgi-bin/mncomp?LAYERS=mncomp&FORMAT=image/jpeg&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&SRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}"},"type":"Feature"},{"geometry":{"coordinates":[[[-81.6792,36.5974],[-80.25359,36.54793],[-75.8409,36.5671],[-75.4323,35.6441],[-75.50475,35.18806],[-75.70525,35.17684],[-76.14745,34.94077],[-76.53472,34.55487],[-76.69676,34.66789],[-77.27904,34.53224],[-77.68828,34.26482],[-77.9435,33.8269],[-78.21288,33.89402],[-78.5301,33.8304],[-79.6693,34.7916],[-80.8122,34.8085],[-80.84685,34.96329],[-80.95122,35.05552],[-81.06383,35.01729],[-81.07482,35.13417],[-82.3632,35.1805],[-82.9989,34.9919],[-84.3333,34.9767],[-84.27184,35.28229],[-84.09056,35.27332],[-83.91478,35.53301],[-83.55498,35.5911],[-83.2556,35.73392],[-82.98644,35.81414],[-82.92327,35.96767],[-82.67882,36.0854],[-82.60192,36.08984],[-82.536,35.96989],[-82.35472,36.14752],[-82.04436,36.14309],[-81.90428,36.33803],[-81.74224,36.37342],[-81.6792,36.5974]]],"type":"Polygon"},"properties":{"available_projections":["EPSG:2264","EPSG:2264","EPSG:3358","EPSG:3404","EPSG:3631","EPSG:3632","EPSG:3857","EPSG:4326","EPSG:26917","EPSG:32019","EPSG:32119"],"country_code":"US","description":"Most recent true color imagery for the state of North Carolina. The imagery has a pixel resolution of 6 inches and is comprised of imagery flown in 2010, 2012, 2013, and 2014","end_date":"2014","id":"NC-US","name":"NC Latest Orthoimagery","start_date":"2010","type":"wms","url":"https://services.nconemap.gov/secure/services/Imagery/Orthoimagery_Latest/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-74.86599,40.08543],[-74.93534,40.07256],[-75.05653,40.00868],[-75.14236,39.95791],[-75.14456,39.88322],[-75.18515,39.88042],[-75.24499,39.85486],[-75.33339,39.8495],[-75.41531,39.80156],[-75.45131,39.78304],[-75.57744,39.62346],[-75.54245,39.56827],[-75.57847,39.48183],[-74.91678,38.84647],[-74.31702,39.38739],[-74.06708,39.75155],[-73.92141,40.49222],[-74.2382,40.49378],[-74.23859,40.54916],[-74.20211,40.54924],[-74.20228,40.57648],[-74.18406,40.57609],[-74.18436,40.63146],[-74.07587,40.63078],[-74.07532,40.64457],[-74.02124,40.65811],[-74.02081,40.69919],[-74.00265,40.69929],[-74.00247,40.74037],[-73.98434,40.74026],[-73.98402,40.78145],[-73.96591,40.78158],[-73.96597,40.80868],[-73.94777,40.80861],[-73.94769,40.82232],[-73.92966,40.82225],[-73.92906,40.86355],[-73.91104,40.86329],[-73.91061,40.91838],[-73.8923,40.91831],[-73.89215,40.95961],[-73.87413,40.95942],[-73.87386,40.99251],[-74.70601,41.36513],[-74.75716,41.34769],[-74.79801,41.32268],[-74.84024,41.27864],[-74.90547,41.17038],[-74.98152,41.1126],[-75.03902,41.03819],[-75.13515,40.99441],[-75.13773,40.97309],[-75.05705,40.86757],[-75.06846,40.85037],[-75.09687,40.85096],[-75.10099,40.83927],[-75.09018,40.82238],[-75.1367,40.77729],[-75.1724,40.78067],[-75.19833,40.75389],[-75.20506,40.69131],[-75.20373,40.61832],[-75.19764,40.57367],[-75.16777,40.55907],[-75.10237,40.56702],[-75.06906,40.5365],[-75.07421,40.45505],[-75.06134,40.4165],[-75.02684,40.40252],[-74.9671,40.3952],[-74.94461,40.33817],[-74.86839,40.29157],[-74.84402,40.24796],[-74.77552,40.21428],[-74.76334,40.19172],[-74.72918,40.16392],[-74.72609,40.14949],[-74.78805,40.12468],[-74.8229,40.13033],[-74.86599,40.08543]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)","url":"https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D"},"available_projections":["EPSG:6527","EPSG:3424","EPSG:102711","EPSG:2959","EPSG:3857","EPSG:4269","EPSG:4326","EPSG:3616"],"country_code":"US","description":"Digital orthophotography of New Jersey, Near Infrared, 1 foot resolution","end_date":"2015-05-03","id":"img.nj.gov-Infrared2015","max_zoom":20,"name":"NJ 2015 Aerial Imagery (Infrared)","start_date":"2015-03-29","type":"wms","url":"https://img.nj.gov/imagerywms/Infrared2015?FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&WIDTH={width}&HEIGHT={height}&LAYERS=Infrared2015&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-74.86599,40.08543],[-74.93534,40.07256],[-75.05653,40.00868],[-75.14236,39.95791],[-75.14456,39.88322],[-75.18515,39.88042],[-75.24499,39.85486],[-75.33339,39.8495],[-75.41531,39.80156],[-75.45131,39.78304],[-75.57744,39.62346],[-75.54245,39.56827],[-75.57847,39.48183],[-74.91678,38.84647],[-74.31702,39.38739],[-74.06708,39.75155],[-73.92141,40.49222],[-74.2382,40.49378],[-74.23859,40.54916],[-74.20211,40.54924],[-74.20228,40.57648],[-74.18406,40.57609],[-74.18436,40.63146],[-74.07587,40.63078],[-74.07532,40.64457],[-74.02124,40.65811],[-74.02081,40.69919],[-74.00265,40.69929],[-74.00247,40.74037],[-73.98434,40.74026],[-73.98402,40.78145],[-73.96591,40.78158],[-73.96597,40.80868],[-73.94777,40.80861],[-73.94769,40.82232],[-73.92966,40.82225],[-73.92906,40.86355],[-73.91104,40.86329],[-73.91061,40.91838],[-73.8923,40.91831],[-73.89215,40.95961],[-73.87413,40.95942],[-73.87386,40.99251],[-74.70601,41.36513],[-74.75716,41.34769],[-74.79801,41.32268],[-74.84024,41.27864],[-74.90547,41.17038],[-74.98152,41.1126],[-75.03902,41.03819],[-75.13515,40.99441],[-75.13773,40.97309],[-75.05705,40.86757],[-75.06846,40.85037],[-75.09687,40.85096],[-75.10099,40.83927],[-75.09018,40.82238],[-75.1367,40.77729],[-75.1724,40.78067],[-75.19833,40.75389],[-75.20506,40.69131],[-75.20373,40.61832],[-75.19764,40.57367],[-75.16777,40.55907],[-75.10237,40.56702],[-75.06906,40.5365],[-75.07421,40.45505],[-75.06134,40.4165],[-75.02684,40.40252],[-74.9671,40.3952],[-74.94461,40.33817],[-74.86839,40.29157],[-74.84402,40.24796],[-74.77552,40.21428],[-74.76334,40.19172],[-74.72918,40.16392],[-74.72609,40.14949],[-74.78805,40.12468],[-74.8229,40.13033],[-74.86599,40.08543]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)","url":"https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D"},"available_projections":["EPSG:6527","EPSG:3424","EPSG:102711","EPSG:2959","EPSG:3857","EPSG:4269","EPSG:4326","EPSG:3616"],"country_code":"US","description":"Digital orthophotography of New Jersey, Natural Color, 1 foot resolution","end_date":"2015-05-03","id":"img.nj.gov-Natural2015","max_zoom":20,"name":"NJ 2015 Aerial Imagery (Natural Color)","start_date":"2015-03-29","type":"wms","url":"https://img.nj.gov/imagerywms/Natural2015?FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&WIDTH={width}&HEIGHT={height}&LAYERS=Natural2015&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-74.91231,45.03606],[-73.47788,45.02996],[-73.33846,45.03098],[-73.31978,45.00558],[-73.32265,44.98525],[-73.34852,44.9283],[-73.36721,44.8397],[-73.34277,44.81727],[-73.34565,44.77647],[-73.37296,44.73463],[-73.37008,44.67946],[-73.39739,44.64471],[-73.39308,44.60276],[-73.39739,44.54543],[-73.34996,44.51264],[-73.34565,44.49521],[-73.37871,44.4706],[-73.30828,44.43572],[-73.30397,44.41827],[-73.33271,44.33917],[-73.30828,44.27128],[-73.30828,44.25172],[-73.38014,44.14868],[-73.40458,44.04133],[-73.3399,43.79596],[-73.28097,43.64222],[-73.2091,43.54957],[-73.21342,43.51206],[-73.24647,42.67557],[-73.45919,42.14284],[-73.47069,42.03938],[-73.48794,41.73764],[-73.49944,41.64319],[-73.47788,41.62708],[-73.43189,41.57979],[-73.42614,41.56366],[-73.42685,41.45926],[-73.43979,41.40322],[-73.44985,41.38328],[-73.43835,41.37033],[-73.42757,41.35901],[-73.41751,41.3439],[-73.41895,41.27642],[-73.43045,41.24455],[-73.46566,41.19752],[-73.52962,41.14505],[-73.55477,41.13368],[-73.61586,41.13531],[-73.62664,41.10878],[-73.62736,41.05407],[-73.63958,40.99118],[-73.61873,40.98195],[-73.59933,40.96568],[-73.59933,40.93474],[-73.63455,40.91682],[-73.68054,40.89183],[-73.69851,40.87988],[-73.68629,40.87064],[-73.66257,40.87934],[-73.63814,40.90541],[-73.59789,40.91193],[-73.57562,40.9179],[-73.52675,40.92388],[-73.50159,40.94288],[-73.4901,40.95374],[-73.41751,40.96079],[-73.38374,40.96133],[-73.33702,40.95591],[-73.30828,40.93637],[-73.27091,40.92659],[-73.2091,40.91953],[-73.18682,40.92714],[-73.16814,40.93148],[-73.16598,40.95971],[-73.16886,40.97002],[-73.12933,40.98195],[-73.10777,40.98195],[-73.06681,40.9749],[-72.8584,40.97436],[-72.71826,40.98195],[-72.65574,41.00528],[-72.64424,41.00473],[-72.62628,40.99226],[-72.54148,41.03889],[-72.4768,41.06328],[-72.45811,41.08928],[-72.41859,41.09308],[-72.36612,41.13856],[-72.36037,41.1418],[-72.32229,41.15479],[-72.29067,41.16399],[-72.21449,41.18238],[-72.20083,41.19157],[-72.04848,41.25914],[-72.02548,41.2937],[-71.93924,41.30774],[-71.92343,41.30666],[-71.90259,41.2991],[-71.90187,41.28939],[-71.99458,41.24509],[-72.10453,41.19806],[-72.18287,41.16723],[-72.18934,41.16237],[-72.25186,41.12232],[-72.30432,41.10445],[-72.31582,41.09524],[-72.27917,41.08441],[-72.2727,41.08062],[-72.26839,41.04973],[-72.21736,41.04811],[-72.19652,41.04215],[-72.18646,41.05298],[-72.17137,41.0584],[-72.14981,41.05895],[-72.15628,41.09633],[-72.15268,41.1077],[-72.14909,41.14667],[-72.134,41.14505],[-72.07076,41.10553],[-72.07435,41.05678],[-72.08657,41.03185],[-72.10957,41.0069],[-72.08729,41.01287],[-72.06213,41.02534],[-72.04561,41.03239],[-72.01902,41.03293],[-72.00895,41.04215],[-72.00177,41.05136],[-71.96368,41.07737],[-71.922,41.08874],[-71.88966,41.08766],[-71.85588,41.08062],[-71.84582,41.07466],[-71.85588,41.05298],[-71.89038,41.03727],[-71.91625,41.03022],[-71.99099,41.00365],[-72.07938,40.97273],[-72.31941,40.88205],[-72.4423,40.8402],[-72.62771,40.7869],[-72.76569,40.75043],[-72.88499,40.71286],[-72.95973,40.68671],[-73.03735,40.66],[-73.08118,40.64855],[-73.22994,40.61637],[-73.32193,40.6131],[-73.35211,40.61855],[-73.55477,40.56944],[-73.75959,40.57708],[-73.88248,40.54815],[-73.9335,40.53449],[-73.945,40.53395],[-73.94572,40.56289],[-74.08227,40.56234],[-74.08011,40.54924],[-74.12251,40.52084],[-74.15772,40.51373],[-74.18719,40.50117],[-74.22887,40.48696],[-74.26121,40.48532],[-74.2763,40.4957],[-74.27918,40.54378],[-74.26983,40.56671],[-74.25834,40.57217],[-74.22528,40.57217],[-74.226,40.58309],[-74.25115,40.59564],[-74.25259,40.62237],[-74.24324,40.64091],[-74.2339,40.64909],[-74.20228,40.654],[-74.12538,40.65673],[-74.11532,40.69107],[-74.09951,40.68998],[-74.07795,40.71068],[-74.06286,40.7183],[-74.05208,40.7439],[-74.02549,40.79288],[-73.98094,40.86901],[-73.96225,40.92551],[-73.94931,40.96459],[-73.94644,40.99877],[-73.98165,41.01612],[-74.04561,41.04323],[-74.18072,41.09524],[-74.30792,41.14938],[-74.44087,41.21537],[-74.52783,41.25914],[-74.61335,41.30234],[-74.65791,41.31098],[-74.70246,41.33581],[-74.76714,41.38975],[-74.79661,41.41023],[-74.85338,41.42263],[-74.90728,41.43179],[-74.99783,41.47111],[-75.04167,41.52708],[-75.08479,41.59323],[-75.08407,41.61848],[-75.07329,41.66467],[-75.08766,41.70278],[-75.08766,41.71351],[-75.12144,41.76177],[-75.11928,41.79232],[-75.13078,41.81696],[-75.18755,41.83838],[-75.25295,41.84962],[-75.28745,41.85497],[-75.29823,41.88227],[-75.30613,41.9304],[-75.34063,41.94003],[-75.3665,41.9566],[-75.37225,41.97744],[-75.58066,41.97957],[-75.58137,41.92399],[-75.78906,41.92666],[-75.78691,41.98278],[-79.77687,41.98118],[-79.7819,42.20994],[-79.77184,42.28017],[-79.72153,42.29824],[-79.57349,42.36731],[-79.42976,42.46599],[-79.3737,42.49991],[-79.25728,42.54546],[-79.18973,42.5624],[-79.16529,42.56981],[-79.12074,42.62483],[-79.0963,42.64598],[-79.06899,42.6967],[-79.03162,42.71043],[-78.98851,42.72311],[-78.88358,42.77693],[-78.88646,42.8149],[-78.93964,42.88655],[-78.93964,42.93603],[-79.04887,42.96969],[-79.04743,43.05167],[-79.09343,43.05272],[-79.09199,43.09262],[-79.08624,43.26556],[-79.06468,43.27602],[-78.84909,43.33041],[-78.72979,43.35237],[-78.63924,43.37013],[-78.54869,43.37953],[-78.47826,43.38789],[-77.95508,43.38476],[-77.73158,43.34714],[-77.71146,43.34034],[-77.66259,43.31159],[-77.61516,43.28387],[-77.55336,43.253],[-77.5282,43.25509],[-77.45634,43.27864],[-77.42256,43.28492],[-77.16385,43.29433],[-77.0503,43.29381],[-76.94178,43.29329],[-76.91447,43.30793],[-76.85051,43.3163],[-76.80236,43.32832],[-76.75996,43.35184],[-76.64785,43.42809],[-76.54509,43.48026],[-76.51993,43.49486],[-76.44304,43.52717],[-76.4222,43.53811],[-76.28206,43.53863],[-76.23822,43.55686],[-76.24038,43.74147],[-76.30649,43.82915],[-76.31152,43.8675],[-76.34602,43.8618],[-76.40064,43.86128],[-76.47178,43.88408],[-76.46675,43.90893],[-76.4186,43.93119],[-76.37189,43.93223],[-76.36974,43.90272],[-76.33308,43.92964],[-76.27847,43.92964],[-76.27847,43.90427],[-76.26697,43.89599],[-76.23607,43.91204],[-76.19295,43.93326],[-76.19007,43.95086],[-76.21523,43.96017],[-76.25044,43.94982],[-76.31224,43.94775],[-76.30578,43.9762],[-76.33093,44.00464],[-76.39561,44.0248],[-76.39848,44.06251],[-76.37548,44.06457],[-76.3762,44.0909],[-76.47107,44.09297],[-76.46604,44.10948],[-76.44232,44.1296],[-76.39848,44.13218],[-76.39776,44.20435],[-76.3762,44.21671],[-76.23966,44.21929],[-76.23966,44.22804],[-76.21738,44.22856],[-76.21523,44.3479],[-76.11893,44.37103],[-76.04634,44.39157],[-75.93423,44.43418],[-75.83721,44.50341],[-75.76822,44.55823],[-75.69923,44.60379],[-75.63168,44.64829],[-75.56772,44.70501],[-75.50448,44.74586],[-75.45274,44.78157],[-75.31763,44.8723],[-75.15378,44.93745],[-75.09054,44.97305],[-74.97411,45.02793],[-74.91985,45.03682],[-74.91231,45.03606]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"New York State Statewide Digital Orthoimagery Program","url":"https://gis.ny.gov/gateway/orthoprogram/index.cfm"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:120100"],"country_code":"US","description":"New York State High Resolution Digital Orthoimagery, 1 foot resolution","end_date":"2018","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/ny/NYS_Orthos_Online.png","id":"orthos.dhses.ny.gov_latest","max_zoom":19,"name":"NYS Orthos Online","start_date":"2013","type":"wms","url":"https://orthos.dhses.ny.gov/arcgis/services/Latest/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0,1,2,3,4&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-83.1356,41.75081],[-83.08101,41.7511],[-83.0796,41.62936],[-82.95011,41.54404],[-82.89032,41.54404],[-82.89032,41.69462],[-82.8494,41.7463],[-82.76758,41.73925],[-82.75184,41.63584],[-82.64799,41.62408],[-82.68575,41.50634],[-82.49063,41.40492],[-82.0217,41.53462],[-81.72901,41.52048],[-81.39541,41.7369],[-81.10587,41.84484],[-80.50161,41.99939],[-80.51105,40.62127],[-80.6275,40.59021],[-80.58344,40.49933],[-80.58973,40.2812],[-80.85095,39.625],[-81.19399,39.37974],[-81.38912,39.31159],[-81.45521,39.38704],[-81.515,39.35054],[-81.54333,39.26288],[-81.72586,39.19461],[-81.73216,38.9258],[-81.9021,38.85477],[-81.95875,38.89397],[-81.9084,38.93315],[-82.02799,38.99922],[-82.11611,38.92336],[-82.12555,38.8278],[-82.19794,38.78856],[-82.16647,38.72475],[-82.16017,38.58712],[-82.26718,38.57236],[-82.29865,38.43198],[-82.57875,38.39745],[-82.73925,38.53545],[-82.8494,38.56006],[-82.91235,38.73212],[-83.00676,38.71002],[-83.14524,38.59942],[-83.30575,38.58466],[-83.39387,38.64368],[-83.46625,38.64614],[-83.54178,38.69283],[-83.65193,38.61172],[-83.74635,38.63385],[-83.9635,38.76403],[-84.08624,38.75421],[-84.22157,38.7812],[-84.34117,38.99922],[-84.49223,39.07255],[-84.64015,39.05545],[-84.74086,39.11164],[-84.84471,39.08477],[-84.82898,41.70637],[-83.44737,41.76038],[-83.13438,41.64959],[-83.1356,41.75081]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Ohio Statewide Imagery Program","url":"https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx"},"available_projections":["EPSG:4326","EPSG:3754"],"country_code":"US","description":"Most recent available 1-foot orthoimagery from the Ohio Statewide Imagery Program.","end_date":"2014","id":"OSIP_1ft","license_url":"https://ogrip.oit.ohio.gov/Portals/0/PDFs/OSIP%20Program%20Description.pdf#page=2","max_zoom":20,"min_zoom":8,"name":"OSIP 1ft Imagery Most Current Available","permission_osm":"implicit","start_date":"2011","type":"wms","url":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/osip_best_avail_1ft/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-83.1356,41.75081],[-83.08101,41.7511],[-83.0796,41.62936],[-82.95011,41.54404],[-82.89032,41.54404],[-82.89032,41.69462],[-82.8494,41.7463],[-82.76758,41.73925],[-82.75184,41.63584],[-82.64799,41.62408],[-82.68575,41.50634],[-82.49063,41.40492],[-82.0217,41.53462],[-81.72901,41.52048],[-81.39541,41.7369],[-81.10587,41.84484],[-80.50161,41.99939],[-80.51105,40.62127],[-80.6275,40.59021],[-80.58344,40.49933],[-80.58973,40.2812],[-80.85095,39.625],[-81.19399,39.37974],[-81.38912,39.31159],[-81.45521,39.38704],[-81.515,39.35054],[-81.54333,39.26288],[-81.72586,39.19461],[-81.73216,38.9258],[-81.9021,38.85477],[-81.95875,38.89397],[-81.9084,38.93315],[-82.02799,38.99922],[-82.11611,38.92336],[-82.12555,38.8278],[-82.19794,38.78856],[-82.16647,38.72475],[-82.16017,38.58712],[-82.26718,38.57236],[-82.29865,38.43198],[-82.57875,38.39745],[-82.73925,38.53545],[-82.8494,38.56006],[-82.91235,38.73212],[-83.00676,38.71002],[-83.14524,38.59942],[-83.30575,38.58466],[-83.39387,38.64368],[-83.46625,38.64614],[-83.54178,38.69283],[-83.65193,38.61172],[-83.74635,38.63385],[-83.9635,38.76403],[-84.08624,38.75421],[-84.22157,38.7812],[-84.34117,38.99922],[-84.49223,39.07255],[-84.64015,39.05545],[-84.74086,39.11164],[-84.84471,39.08477],[-84.82898,41.70637],[-83.44737,41.76038],[-83.13438,41.64959],[-83.1356,41.75081]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Ohio Statewide Imagery Program","url":"https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx"},"available_projections":["EPSG:4326","EPSG:3753"],"country_code":"US","description":"Most recent available 6-inch orthoimagery from the Ohio Statewide Imagery Program.","end_date":"2018","id":"OSIP_6in","license_url":"https://ogrip.oit.ohio.gov/Portals/0/PDFs/OSIP%20Program%20Description.pdf#page=2","max_zoom":20,"min_zoom":8,"name":"OSIP 6in Imagery Most Current Available","permission_osm":"implicit","start_date":"2010","type":"wms","url":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/OSIP_6in_best_avail/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-152.70873,62.30357],[-152.70839,62.58153],[-152.00835,63.54646],[-148.99432,63.5333],[-148.99432,62.30357],[-152.70873,62.30357]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"US","description":"Recent summer image of the Alaska Range for mapping natural features (true color)","end_date":"2014-07-31","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC80700162014211LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Alaska Range","start_date":"2014-07-31","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC80700162014211LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-168.2544,53.8749],[-168.2544,54.0213],[-167.8591,54.0213],[-167.8591,53.8749],[-168.2544,53.8749]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"US","description":"Recent image from after the eruption (true color)","end_date":"2017-06-05","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC80770232017156LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Bogoslof Island","start_date":"2017-06-05","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC80770232017156LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-154.5102,59.4577],[-154.5097,60.6888],[-153.5403,62.1718],[-148.0423,62.1718],[-148.0445,61.5342],[-149.7291,59.4584],[-154.5102,59.4577]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"US","description":"Tidal flats and glaciers in surrounding mountains (true color)","end_date":"2016-08-31","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R086_N60_20160831T213532","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Cook Inlet","start_date":"2016-08-31","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R086_N60_20160831T213532&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-96.15,30.33],[-96.18,30.33],[-96.18,30.36],[-96.24,30.36],[-96.24,30.33],[-96.3,30.33],[-96.3,30.36],[-96.33,30.36],[-96.33,30.45],[-96.36,30.45],[-96.36,30.51],[-96.42,30.51],[-96.42,30.54],[-96.45,30.54],[-96.45,30.57],[-96.48,30.57],[-96.48,30.6],[-96.57,30.6],[-96.57,30.63],[-96.63,30.63],[-96.63,30.66],[-96.6,30.66],[-96.6,30.69],[-96.57,30.69],[-96.57,30.72],[-96.54,30.72],[-96.54,30.75],[-96.48,30.75],[-96.48,30.78],[-96.45,30.78],[-96.45,30.81],[-96.42,30.81],[-96.42,30.87],[-96.39,30.87],[-96.39,30.9],[-96.36,30.9],[-96.36,30.93],[-96.33,30.93],[-96.33,30.96],[-96.27,30.96],[-96.27,30.99],[-96.21,30.99],[-96.21,30.96],[-96.18,30.96],[-96.18,30.87],[-96.15,30.87],[-96.15,30.54],[-96.12,30.54],[-96.12,30.45],[-96.06,30.45],[-96.06,30.39],[-96.09,30.39],[-96.09,30.36],[-96.12,30.36],[-96.12,30.33],[-96.15,30.33]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Strategic Mapping Program (StratMap). Brazos County Imagery, 2019-01-29","url":"https://data.tnris.org/collection/aa2cd74e-9c2d-4f00-bae5-609b5e898093"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"best":true,"category":"photo","country_code":"US","end_date":"2019","id":"brazos_county_2019_wms","license_url":"https://data.tnris.org/collection/aa2cd74e-9c2d-4f00-bae5-609b5e898093","name":"Brazos County Imagery 2019","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2019","type":"wms","url":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap19_NC_CIR_6in_Brazos/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-96.85,29.6],[-97.15,29.6],[-97.15,29.65],[-97.25,29.65],[-97.25,29.7],[-97.3,29.7],[-97.3,29.75],[-97.35,29.75],[-97.35,29.7],[-97.45,29.7],[-97.45,29.65],[-97.55,29.65],[-97.55,29.6],[-97.65,29.6],[-97.65,29.65],[-97.75,29.65],[-97.75,29.7],[-97.8,29.7],[-97.8,29.75],[-97.85,29.75],[-97.85,29.8],[-97.95,29.8],[-97.95,29.75],[-98.05,29.75],[-98.05,29.85],[-98.15,29.85],[-98.15,29.9],[-98.2,29.9],[-98.2,29.95],[-98.25,29.95],[-98.25,30.0],[-98.3,30.0],[-98.3,29.95],[-98.35,29.95],[-98.35,29.9],[-98.45,29.9],[-98.45,29.95],[-98.5,29.95],[-98.5,30.0],[-98.55,30.0],[-98.55,30.05],[-98.6,30.05],[-98.6,30.45],[-99.0,30.45],[-99.0,30.95],[-98.5,30.95],[-98.5,31.05],[-97.85,31.05],[-97.85,30.95],[-97.75,30.95],[-97.75,30.9],[-97.55,30.9],[-97.55,30.85],[-97.4,30.85],[-97.4,30.8],[-97.3,30.8],[-97.3,30.75],[-97.25,30.75],[-97.25,30.7],[-97.2,30.7],[-97.2,30.6],[-97.15,30.6],[-97.15,30.5],[-97.1,30.5],[-97.1,30.55],[-97.0,30.55],[-97.0,30.6],[-96.95,30.6],[-96.95,30.55],[-96.9,30.55],[-96.9,30.5],[-96.85,30.5],[-96.85,30.45],[-96.8,30.45],[-96.8,30.4],[-96.75,30.4],[-96.75,30.35],[-96.65,30.35],[-96.65,30.3],[-96.6,30.3],[-96.6,30.25],[-96.65,30.25],[-96.65,30.15],[-96.6,30.15],[-96.6,30.05],[-96.55,30.05],[-96.55,29.9],[-96.6,29.9],[-96.6,29.85],[-96.65,29.85],[-96.65,29.8],[-96.7,29.8],[-96.7,29.75],[-96.75,29.75],[-96.75,29.7],[-96.8,29.7],[-96.8,29.65],[-96.85,29.65],[-96.85,29.6]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Strategic Mapping Program (StratMap). CapArea Imagery, 2019-01-29","url":"https://data.tnris.org/collection/f84442b8-ac2a-4708-b5c0-9d15515f4483"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"best":true,"category":"photo","country_code":"US","end_date":"2019","id":"caparea_2019_wms","license_url":"https://data.tnris.org/collection/f84442b8-ac2a-4708-b5c0-9d15515f4483","name":"CapArea Imagery 2019","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2019","type":"wms","url":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap19_NC_CIR_CapArea/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-101.62309,35.13352],[-101.62265,35.12001],[-101.6391,35.11965],[-101.65554,35.11929],[-101.67199,35.11893],[-101.68843,35.11857],[-101.70487,35.1182],[-101.72132,35.11783],[-101.73776,35.11746],[-101.7542,35.11709],[-101.77065,35.11672],[-101.78709,35.11634],[-101.80353,35.11596],[-101.81997,35.11558],[-101.83641,35.11519],[-101.85285,35.11481],[-101.86929,35.11442],[-101.88573,35.11403],[-101.90217,35.11364],[-101.91861,35.11324],[-101.93505,35.11284],[-101.95149,35.11244],[-101.96793,35.11204],[-101.98437,35.11164],[-102.00081,35.11123],[-102.0013,35.12474],[-102.0018,35.13825],[-102.00229,35.15175],[-102.00279,35.16526],[-102.00329,35.17877],[-102.00378,35.19228],[-102.00428,35.20578],[-102.00478,35.21929],[-102.00528,35.2328],[-102.00578,35.2463],[-102.00628,35.25981],[-101.98981,35.26022],[-101.97334,35.26062],[-101.95687,35.26103],[-101.9404,35.26143],[-101.92393,35.26183],[-101.90747,35.26223],[-101.891,35.26262],[-101.89148,35.27613],[-101.875,35.27652],[-101.87548,35.29003],[-101.87596,35.30354],[-101.87644,35.31705],[-101.87692,35.33056],[-101.8774,35.34406],[-101.87788,35.35757],[-101.87836,35.37108],[-101.87884,35.38459],[-101.86234,35.38498],[-101.84585,35.38537],[-101.82935,35.38576],[-101.81285,35.38614],[-101.79636,35.38653],[-101.77986,35.38691],[-101.76336,35.38729],[-101.74687,35.38766],[-101.74641,35.37415],[-101.74595,35.36064],[-101.74549,35.34714],[-101.74504,35.33363],[-101.74458,35.32012],[-101.74412,35.30661],[-101.74367,35.2931],[-101.74321,35.27959],[-101.74275,35.26608],[-101.7423,35.25257],[-101.72583,35.25294],[-101.70936,35.25331],[-101.69289,35.25368],[-101.67642,35.25404],[-101.65995,35.25441],[-101.64347,35.25477],[-101.627,35.25513],[-101.61053,35.25548],[-101.6101,35.24197],[-101.60966,35.22846],[-101.60923,35.21495],[-101.6088,35.20144],[-101.60837,35.18792],[-101.62482,35.18757],[-101.62439,35.17406],[-101.62396,35.16055],[-101.62352,35.14703],[-101.62309,35.13352]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Strategic Mapping Program (StratMap). City of Amarillo Imagery, 2015-03-13","url":"https://data.tnris.org/collection/c4045402-55b8-41ee-a911-adbda2a2c4aa"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"photo","country_code":"US","end_date":"2015","id":"amarillo_2016_wms","license_url":"https://data.tnris.org/collection/c4045402-55b8-41ee-a911-adbda2a2c4aa","name":"City of Amarillo Imagery 2015","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2015","type":"wms","url":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_Amarillo/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-106.11096,31.50405],[-106.1108,31.49052],[-106.12659,31.49038],[-106.14238,31.49024],[-106.15817,31.4901],[-106.17396,31.48995],[-106.18975,31.48981],[-106.20554,31.48966],[-106.22133,31.48951],[-106.23712,31.48936],[-106.25291,31.48921],[-106.25309,31.50274],[-106.25327,31.51627],[-106.25345,31.5298],[-106.26925,31.52964],[-106.26943,31.54317],[-106.28523,31.54301],[-106.30103,31.54285],[-106.30122,31.55638],[-106.30141,31.56991],[-106.30159,31.58345],[-106.3174,31.58328],[-106.31759,31.59681],[-106.31778,31.61034],[-106.31797,31.62387],[-106.33378,31.62371],[-106.33398,31.63724],[-106.34979,31.63707],[-106.34999,31.6506],[-106.35018,31.66413],[-106.366,31.66396],[-106.3662,31.67749],[-106.38202,31.67732],[-106.39784,31.67715],[-106.39804,31.69068],[-106.39825,31.70421],[-106.39845,31.71774],[-106.39865,31.73127],[-106.41448,31.73109],[-106.43031,31.73092],[-106.43052,31.74444],[-106.44635,31.74427],[-106.46218,31.74409],[-106.46197,31.73056],[-106.4778,31.73037],[-106.49363,31.73019],[-106.50946,31.73],[-106.50968,31.74353],[-106.52551,31.74334],[-106.52573,31.75687],[-106.54156,31.75668],[-106.54179,31.77021],[-106.55762,31.77002],[-106.55785,31.78354],[-106.55808,31.79707],[-106.57392,31.79688],[-106.58976,31.79668],[-106.6056,31.79648],[-106.60583,31.81001],[-106.62167,31.80981],[-106.62191,31.82334],[-106.62214,31.83686],[-106.63799,31.83666],[-106.65384,31.83646],[-106.65408,31.84998],[-106.65432,31.86351],[-106.65456,31.87704],[-106.63871,31.87724],[-106.63895,31.89077],[-106.63919,31.9043],[-106.63943,31.91783],[-106.63967,31.93135],[-106.63991,31.94488],[-106.64015,31.95841],[-106.64039,31.97194],[-106.64063,31.98546],[-106.64087,31.99899],[-106.625,31.99919],[-106.62523,32.01272],[-106.62547,32.02625],[-106.60959,32.02645],[-106.59372,32.02665],[-106.57784,32.02685],[-106.56196,32.02705],[-106.54608,32.02724],[-106.5302,32.02743],[-106.51432,32.02762],[-106.49844,32.02781],[-106.49822,32.01429],[-106.498,32.00076],[-106.48212,32.00094],[-106.46625,32.00113],[-106.45037,32.00131],[-106.4345,32.00149],[-106.41862,32.00167],[-106.40275,32.00185],[-106.38687,32.00202],[-106.37099,32.00219],[-106.37079,31.98866],[-106.37059,31.97514],[-106.37039,31.96161],[-106.37019,31.94808],[-106.36999,31.93455],[-106.36979,31.92102],[-106.36959,31.90749],[-106.36939,31.89396],[-106.36919,31.88043],[-106.35333,31.8806],[-106.33748,31.88077],[-106.32162,31.88094],[-106.30576,31.8811],[-106.28991,31.88126],[-106.27405,31.88142],[-106.2582,31.88158],[-106.24234,31.88174],[-106.22648,31.88189],[-106.21063,31.88204],[-106.19477,31.88219],[-106.17891,31.88234],[-106.16305,31.88249],[-106.1472,31.88263],[-106.13134,31.88277],[-106.11548,31.88291],[-106.11532,31.86938],[-106.11516,31.85585],[-106.11499,31.84232],[-106.11483,31.82879],[-106.11467,31.81526],[-106.11451,31.80173],[-106.11434,31.7882],[-106.11418,31.77467],[-106.11402,31.76114],[-106.11386,31.74761],[-106.1137,31.73408],[-106.11353,31.72055],[-106.11337,31.70701],[-106.11321,31.69348],[-106.11305,31.67995],[-106.11289,31.66642],[-106.11273,31.65289],[-106.11257,31.63936],[-106.1124,31.62583],[-106.11224,31.6123],[-106.11208,31.59877],[-106.11192,31.58524],[-106.11176,31.57171],[-106.1116,31.55817],[-106.11144,31.54464],[-106.11128,31.53111],[-106.11112,31.51758],[-106.11096,31.50405]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Strategic Mapping Program (StratMap). City of El Paso Imagery, 2015-10-25","url":"https://data.tnris.org/collection/8870dbdd-d3fb-4c06-a3d1-c4e407428218"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"photo","country_code":"US","end_date":"2015","id":"el_paso_2015_wms","license_url":"https://data.tnris.org/collection/8870dbdd-d3fb-4c06-a3d1-c4e407428218","name":"City of El Paso Imagery 2015","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2015","type":"wms","url":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_ElPaso/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-101.73441,33.50842],[-101.73398,33.4949],[-101.75011,33.49455],[-101.76624,33.49419],[-101.78237,33.49383],[-101.7985,33.49346],[-101.81463,33.4931],[-101.83076,33.49273],[-101.84688,33.49236],[-101.86301,33.49199],[-101.87914,33.49161],[-101.89527,33.49124],[-101.91139,33.49086],[-101.92752,33.49048],[-101.94364,33.4901],[-101.95977,33.48971],[-101.97589,33.48933],[-101.99202,33.48894],[-102.00814,33.48855],[-102.02427,33.48815],[-102.04039,33.48776],[-102.05652,33.48736],[-102.07264,33.48696],[-102.08876,33.48656],[-102.10489,33.48616],[-102.10537,33.49967],[-102.12149,33.49926],[-102.13762,33.49885],[-102.13811,33.51236],[-102.13859,33.52587],[-102.13908,33.53938],[-102.13957,33.55289],[-102.14006,33.5664],[-102.14055,33.57991],[-102.14104,33.59342],[-102.14153,33.60693],[-102.12539,33.60734],[-102.12587,33.62084],[-102.12636,33.63435],[-102.11021,33.63476],[-102.09406,33.63517],[-102.07791,33.63557],[-102.06176,33.63597],[-102.04561,33.63637],[-102.02946,33.63677],[-102.01331,33.63716],[-101.99715,33.63756],[-101.981,33.63795],[-101.96485,33.63834],[-101.9487,33.63872],[-101.94823,33.62521],[-101.93208,33.62559],[-101.91593,33.62598],[-101.89978,33.62636],[-101.88363,33.62673],[-101.88408,33.64025],[-101.88453,33.65376],[-101.88498,33.66727],[-101.88543,33.68078],[-101.88589,33.69429],[-101.88634,33.70781],[-101.88679,33.72132],[-101.88724,33.73483],[-101.8877,33.74834],[-101.88815,33.76185],[-101.87197,33.76223],[-101.85579,33.76261],[-101.83962,33.76298],[-101.82344,33.76335],[-101.80726,33.76372],[-101.80682,33.75021],[-101.79064,33.75058],[-101.77447,33.75094],[-101.75829,33.7513],[-101.74211,33.75166],[-101.74168,33.73815],[-101.74125,33.72464],[-101.74082,33.71112],[-101.74039,33.69761],[-101.73996,33.6841],[-101.73953,33.67058],[-101.73911,33.65707],[-101.73868,33.64356],[-101.73825,33.63004],[-101.73782,33.61653],[-101.73739,33.60301],[-101.73697,33.5895],[-101.73654,33.57599],[-101.73611,33.56247],[-101.73569,33.54896],[-101.73526,33.53545],[-101.73483,33.52193],[-101.73441,33.50842]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Texas Natural Resources Information System (TNRIS). City of Georgetown Imagery, 2015-03-06","url":"https://data.tnris.org/collection/a665d1fe-47f4-497c-b467-bb1535a02c9d"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"photo","country_code":"US","end_date":"2015","id":"georgetown_2016_wms","license_url":"https://data.tnris.org/collection/a665d1fe-47f4-497c-b467-bb1535a02c9d","name":"City of Georgetown Imagery 2015","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2015","type":"wms","url":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_6in_Georgetown/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-101.73441,33.50842],[-101.73398,33.4949],[-101.75011,33.49455],[-101.76624,33.49419],[-101.78237,33.49383],[-101.7985,33.49346],[-101.81463,33.4931],[-101.83076,33.49273],[-101.84688,33.49236],[-101.86301,33.49199],[-101.87914,33.49161],[-101.89527,33.49124],[-101.91139,33.49086],[-101.92752,33.49048],[-101.94364,33.4901],[-101.95977,33.48971],[-101.97589,33.48933],[-101.99202,33.48894],[-102.00814,33.48855],[-102.02427,33.48815],[-102.04039,33.48776],[-102.05652,33.48736],[-102.07264,33.48696],[-102.08876,33.48656],[-102.10489,33.48616],[-102.10537,33.49967],[-102.12149,33.49926],[-102.13762,33.49885],[-102.13811,33.51236],[-102.13859,33.52587],[-102.13908,33.53938],[-102.13957,33.55289],[-102.14006,33.5664],[-102.14055,33.57991],[-102.14104,33.59342],[-102.14153,33.60693],[-102.12539,33.60734],[-102.12587,33.62084],[-102.12636,33.63435],[-102.11021,33.63476],[-102.09406,33.63517],[-102.07791,33.63557],[-102.06176,33.63597],[-102.04561,33.63637],[-102.02946,33.63677],[-102.01331,33.63716],[-101.99715,33.63756],[-101.981,33.63795],[-101.96485,33.63834],[-101.9487,33.63872],[-101.94823,33.62521],[-101.93208,33.62559],[-101.91593,33.62598],[-101.89978,33.62636],[-101.88363,33.62673],[-101.88408,33.64025],[-101.88453,33.65376],[-101.88498,33.66727],[-101.88543,33.68078],[-101.88589,33.69429],[-101.88634,33.70781],[-101.88679,33.72132],[-101.88724,33.73483],[-101.8877,33.74834],[-101.88815,33.76185],[-101.87197,33.76223],[-101.85579,33.76261],[-101.83962,33.76298],[-101.82344,33.76335],[-101.80726,33.76372],[-101.80682,33.75021],[-101.79064,33.75058],[-101.77447,33.75094],[-101.75829,33.7513],[-101.74211,33.75166],[-101.74168,33.73815],[-101.74125,33.72464],[-101.74082,33.71112],[-101.74039,33.69761],[-101.73996,33.6841],[-101.73953,33.67058],[-101.73911,33.65707],[-101.73868,33.64356],[-101.73825,33.63004],[-101.73782,33.61653],[-101.73739,33.60301],[-101.73697,33.5895],[-101.73654,33.57599],[-101.73611,33.56247],[-101.73569,33.54896],[-101.73526,33.53545],[-101.73483,33.52193],[-101.73441,33.50842]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Strategic Mapping Program (StratMap). City of Lubbock Imagery, 2015-03-22","url":"https://data.tnris.org/collection/a5307ec2-8a8b-4647-9d02-87625aeb5cf9"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"photo","country_code":"US","end_date":"2015","id":"lubbock_2016_wms","license_url":"https://data.tnris.org/collection/a5307ec2-8a8b-4647-9d02-87625aeb5cf9","name":"City of Lubbock Imagery 2015","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2015","type":"wms","url":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_Lubbock/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-96.7411,32.38179],[-96.74144,32.36827],[-96.75737,32.36856],[-96.7733,32.36884],[-96.78923,32.36912],[-96.80517,32.3694],[-96.8211,32.36967],[-96.83703,32.36995],[-96.85297,32.37022],[-96.8689,32.37049],[-96.88483,32.37076],[-96.88452,32.38428],[-96.8842,32.39781],[-96.88389,32.41133],[-96.88357,32.42485],[-96.88326,32.43837],[-96.88294,32.4519],[-96.88262,32.46542],[-96.88231,32.47894],[-96.88199,32.49246],[-96.89795,32.49273],[-96.9139,32.493],[-96.92986,32.49326],[-96.94581,32.49352],[-96.96177,32.49378],[-96.97773,32.49404],[-96.99368,32.49429],[-97.00964,32.49455],[-97.0256,32.4948],[-97.04156,32.49505],[-97.05751,32.4953],[-97.07347,32.49554],[-97.08943,32.49578],[-97.10539,32.49603],[-97.12135,32.49627],[-97.1373,32.4965],[-97.15326,32.49674],[-97.16922,32.49697],[-97.18518,32.4972],[-97.20114,32.49743],[-97.2171,32.49766],[-97.23306,32.49788],[-97.24902,32.49811],[-97.26498,32.49833],[-97.28094,32.49855],[-97.2969,32.49876],[-97.31286,32.49898],[-97.32882,32.49919],[-97.34478,32.4994],[-97.36074,32.49961],[-97.3767,32.49982],[-97.37646,32.51335],[-97.37622,32.52687],[-97.37597,32.5404],[-97.37573,32.55392],[-97.37549,32.56745],[-97.37524,32.58098],[-97.39122,32.58118],[-97.39098,32.59471],[-97.39074,32.60823],[-97.39049,32.62176],[-97.40648,32.62196],[-97.42246,32.62217],[-97.43844,32.62237],[-97.45443,32.62256],[-97.47041,32.62276],[-97.48639,32.62295],[-97.50238,32.62314],[-97.50215,32.63667],[-97.50193,32.6502],[-97.5017,32.66372],[-97.50148,32.67725],[-97.50125,32.69078],[-97.50102,32.7043],[-97.5008,32.71783],[-97.50057,32.73136],[-97.50035,32.74488],[-97.51635,32.74507],[-97.53236,32.74526],[-97.54836,32.74545],[-97.56437,32.74563],[-97.58038,32.74582],[-97.59638,32.746],[-97.61239,32.74617],[-97.6284,32.74635],[-97.62819,32.75988],[-97.62798,32.77341],[-97.62777,32.78693],[-97.62757,32.80046],[-97.62736,32.81399],[-97.62715,32.82751],[-97.62694,32.84104],[-97.62673,32.85457],[-97.62652,32.86809],[-97.62632,32.88162],[-97.62611,32.89515],[-97.6259,32.90868],[-97.62569,32.9222],[-97.62548,32.93573],[-97.62527,32.94926],[-97.62506,32.96278],[-97.64111,32.96296],[-97.6409,32.97648],[-97.64069,32.99001],[-97.64049,33.00354],[-97.62443,33.00336],[-97.60838,33.00318],[-97.59233,33.003],[-97.57627,33.00282],[-97.56022,33.00264],[-97.54417,33.00245],[-97.52812,33.00226],[-97.51206,33.00207],[-97.49601,33.00188],[-97.47996,33.00169],[-97.46391,33.00149],[-97.44786,33.00129],[-97.4318,33.00109],[-97.41575,33.00089],[-97.3997,33.00068],[-97.38365,33.00048],[-97.3676,33.00027],[-97.35155,33.00006],[-97.3513,33.01358],[-97.33524,33.01337],[-97.31919,33.01315],[-97.30314,33.01294],[-97.28709,33.01272],[-97.27103,33.0125],[-97.25498,33.01227],[-97.23893,33.01205],[-97.22288,33.01182],[-97.20683,33.01159],[-97.19078,33.01136],[-97.17472,33.01112],[-97.15867,33.01089],[-97.14262,33.01065],[-97.12657,33.01041],[-97.11052,33.01017],[-97.09447,33.00992],[-97.07842,33.00968],[-97.06237,33.00943],[-97.04632,33.00918],[-97.03027,33.00893],[-97.01422,33.00867],[-97.01392,33.02219],[-97.01362,33.03572],[-97.01331,33.04924],[-97.01301,33.06276],[-97.01271,33.07628],[-97.0124,33.08981],[-97.0121,33.10333],[-97.01179,33.11685],[-97.01149,33.13037],[-96.99542,33.13012],[-96.97935,33.12986],[-96.96327,33.12959],[-96.9472,33.12933],[-96.93113,33.12906],[-96.91506,33.1288],[-96.89899,33.12853],[-96.88292,33.12825],[-96.8826,33.14177],[-96.88227,33.1553],[-96.88195,33.16882],[-96.88162,33.18234],[-96.8813,33.19586],[-96.88097,33.20938],[-96.88065,33.2229],[-96.88032,33.23642],[-96.87999,33.24994],[-96.87967,33.26346],[-96.86357,33.26319],[-96.84748,33.26291],[-96.83139,33.26263],[-96.81529,33.26235],[-96.7992,33.26206],[-96.78311,33.26178],[-96.76701,33.26149],[-96.75092,33.2612],[-96.73483,33.26091],[-96.73518,33.24739],[-96.73553,33.23387],[-96.73587,33.22035],[-96.73622,33.20683],[-96.73657,33.19331],[-96.73692,33.17979],[-96.73727,33.16627],[-96.73761,33.15275],[-96.73796,33.13923],[-96.73831,33.12571],[-96.72224,33.12542],[-96.70617,33.12512],[-96.70582,33.13864],[-96.68975,33.13835],[-96.67368,33.13805],[-96.65761,33.13775],[-96.64155,33.13744],[-96.62548,33.13714],[-96.60941,33.13683],[-96.59334,33.13652],[-96.57727,33.13621],[-96.56121,33.13589],[-96.54514,33.13558],[-96.52907,33.13526],[-96.513,33.13494],[-96.49694,33.13462],[-96.49732,33.1211],[-96.49771,33.10758],[-96.49809,33.09407],[-96.49847,33.08055],[-96.49885,33.06703],[-96.49924,33.05351],[-96.49962,33.04],[-96.48357,33.03967],[-96.48395,33.02616],[-96.48434,33.01264],[-96.46829,33.01231],[-96.45225,33.01199],[-96.43621,33.01166],[-96.42016,33.01133],[-96.40412,33.011],[-96.38808,33.01066],[-96.37204,33.01032],[-96.37244,32.99681],[-96.37284,32.98329],[-96.37324,32.96977],[-96.37364,32.95626],[-96.37404,32.94274],[-96.37444,32.92923],[-96.37484,32.91571],[-96.35881,32.91537],[-96.35922,32.90186],[-96.35962,32.88834],[-96.36002,32.87482],[-96.36042,32.86131],[-96.36082,32.84779],[-96.36122,32.83427],[-96.36162,32.82076],[-96.36202,32.80724],[-96.36242,32.79372],[-96.36282,32.78021],[-96.36322,32.76669],[-96.36361,32.75317],[-96.36401,32.73966],[-96.38001,32.73999],[-96.396,32.74033],[-96.41199,32.74066],[-96.42799,32.74099],[-96.44398,32.74131],[-96.45998,32.74164],[-96.47597,32.74196],[-96.49197,32.74228],[-96.49235,32.72877],[-96.49273,32.71525],[-96.4931,32.70173],[-96.49348,32.68821],[-96.49386,32.67469],[-96.49424,32.66117],[-96.49461,32.64766],[-96.49499,32.63414],[-96.49537,32.62062],[-96.51134,32.62094],[-96.52732,32.62125],[-96.54329,32.62157],[-96.55927,32.62188],[-96.57524,32.62219],[-96.59122,32.6225],[-96.60719,32.6228],[-96.62317,32.6231],[-96.63914,32.62341],[-96.65512,32.62371],[-96.6711,32.624],[-96.68707,32.6243],[-96.70305,32.62459],[-96.71903,32.62488],[-96.71937,32.61136],[-96.73534,32.61165],[-96.73568,32.59813],[-96.73602,32.58461],[-96.73636,32.57109],[-96.7367,32.55757],[-96.73704,32.54405],[-96.73738,32.53053],[-96.73772,32.51701],[-96.73806,32.50348],[-96.7384,32.48996],[-96.73874,32.47644],[-96.73908,32.46292],[-96.73941,32.4494],[-96.73975,32.43588],[-96.74009,32.42236],[-96.74043,32.40884],[-96.74076,32.39531],[-96.7411,32.38179]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Strategic Mapping Program (StratMap). Dallas and Fort Worth Imagery, 2015-01-01","url":"https://data.tnris.org/collection/1849447b-4f62-4318-81d3-9fef9c31482c"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"photo","country_code":"US","end_date":"2015","id":"dallas_fort_worth_2016_wms","license_url":"https://data.tnris.org/collection/1849447b-4f62-4318-81d3-9fef9c31482c","name":"Dallas and Fort Worth Imagery 2015","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2015","type":"wms","url":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_DFW/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-97.0,27.85],[-97.0,27.8],[-97.1,27.8],[-97.1,27.9],[-97.2,27.9],[-97.2,27.95],[-97.25,27.95],[-97.25,28.05],[-97.3,28.05],[-97.3,28.1],[-97.5,28.1],[-97.5,28.15],[-97.55,28.15],[-97.55,28.25],[-97.5,28.25],[-97.5,28.3],[-97.45,28.3],[-97.45,28.4],[-97.4,28.4],[-97.4,28.45],[-97.3,28.45],[-97.3,28.5],[-97.25,28.5],[-97.25,28.55],[-97.2,28.55],[-97.2,28.6],[-97.1,28.6],[-97.1,28.55],[-96.95,28.55],[-96.95,28.65],[-96.8,28.65],[-96.8,28.7],[-96.7,28.7],[-96.7,28.75],[-96.35,28.75],[-96.35,28.7],[-96.3,28.7],[-96.3,28.5],[-96.35,28.5],[-96.35,28.3],[-96.4,28.3],[-96.4,28.25],[-96.5,28.25],[-96.5,28.2],[-96.6,28.2],[-96.6,28.15],[-96.7,28.15],[-96.7,28.1],[-96.75,28.1],[-96.75,28.05],[-96.8,28.05],[-96.8,28.0],[-96.9,28.0],[-96.9,27.95],[-96.95,27.95],[-96.95,27.9],[-97.0,27.9],[-97.0,27.85]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Strategic Mapping Program (StratMap). San Antonio River Authority Imagery, 2016-08-01","url":"https://data.tnris.org/collection/bfdb7a76-a36c-4e9b-ba18-e8c8b259ed91"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"photo","country_code":"US","end_date":"2016","id":"san_antonio_river_2016_wms","license_url":"https://data.tnris.org/collection/bfdb7a76-a36c-4e9b-ba18-e8c8b259ed91","name":"San Antonio River Authority Imagery 2016","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2016","type":"wms","url":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap16_NC_CIR_12in_SARA/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-94.98,32.19],[-94.98,32.13],[-95.49,32.13],[-95.49,32.28],[-95.46,32.28],[-95.46,32.34],[-95.49,32.34],[-95.49,32.37],[-95.52,32.37],[-95.52,32.4],[-95.55,32.4],[-95.55,32.43],[-95.58,32.43],[-95.58,32.46],[-95.61,32.46],[-95.61,32.7],[-95.55,32.7],[-95.55,32.67],[-95.52,32.67],[-95.52,32.64],[-95.43,32.64],[-95.43,32.61],[-95.28,32.61],[-95.28,32.58],[-95.07,32.58],[-95.07,32.55],[-94.98,32.55],[-94.98,32.19]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"Smith County (Smith). Smith County Imagery, 2019-12-11","url":"https://data.tnris.org/collection/38f1b2e7-6fc7-4357-80a4-1ee33d7abaaf"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"best":true,"category":"photo","country_code":"US","end_date":"2019","id":"smith_county_2019_wms","license_url":"https://data.tnris.org/collection/38f1b2e7-6fc7-4357-80a4-1ee33d7abaaf","name":"Smith County Imagery 2019","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2019","type":"wms","url":"https://imagery.tnris.org/server/services/Smith_County/SmithCo_2020_NCCIR_6in/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2012-10-01","url":"https://data.tnris.org/collection/924d3c6f-9f74-4147-8044-d4025f12eac3"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"historicphoto","country_code":"US","end_date":"2012","id":"texas_naip_2012_wms","license_url":"https://data.tnris.org/collection/924d3c6f-9f74-4147-8044-d4025f12eac3","name":"Texas NAIP Imagery 2012","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2012","type":"wms","url":"https://webservices.tnris.org/arcgis/services/NAIP/NAIP12_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2014-10-31","url":"https://data.tnris.org/collection/e7d2ccee-5288-4257-85bc-e4a2babf91ee"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"historicphoto","country_code":"US","end_date":"2014","id":"texas_naip_2014_wms","license_url":"https://data.tnris.org/collection/e7d2ccee-5288-4257-85bc-e4a2babf91ee","name":"Texas NAIP Imagery 2014","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2014","type":"wms","url":"https://webservices.tnris.org/arcgis/services/NAIP/NAIP14_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2016-12-15","url":"https://data.tnris.org/collection/a40c2ff9-ccac-4c76-99a1-2382c09cf716"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"historicphoto","country_code":"US","end_date":"2016","id":"texas_naip_2016_wms","license_url":"https://data.tnris.org/collection/a40c2ff9-ccac-4c76-99a1-2382c09cf716","name":"Texas NAIP Imagery 2016","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2016","type":"wms","url":"https://webservices.tnris.org/arcgis/services/NAIP/NAIP16_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2018-12-31","url":"https://data.tnris.org/collection/f1d66250-4021-47df-9fe9-9fca286b0f50"},"available_projections":["CRS:84","EPSG:3857","EPSG:4326"],"category":"photo","country_code":"US","end_date":"2018","id":"texas_naip_2018_wms","license_url":"https://data.tnris.org/collection/f1d66250-4021-47df-9fe9-9fca286b0f50","name":"Texas NAIP Imagery 2018","privacy_policy_url":"https://tnris.org/site-policies/#privacy-and-security-policy","start_date":"2018","type":"wms","url":"https://webservices.tnris.org/arcgis/services/NAIP/NAIP18_NC_CIR_60cm/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"},{"geometry":{"coordinates":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Virginia Geographic Information Network (VGIN)","url":"https://vgin.maps.arcgis.com/home/item.html?id=bcd049dfcdc342a7a08ec81644eeb339"},"best":false,"country_code":"US","description":"Virginia Building Footprint Map Service","end_date":"2018-06","id":"VGIN-BuildingFootprints_WM","license_url":"http://data.virginia.gov/#opendata","max_zoom":20,"name":"Virginia Building Footprints","overlay":true,"start_date":"2015-05","type":"tms","url":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=https%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FVA_Base_layers%2FVA_Building_Footprints%2FMapServer&transparent=true&layers=show%3A20"},"type":"Feature"},{"geometry":{"coordinates":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Virginia Geographic Information Network (VGIN)","url":"https://vgin.maps.arcgis.com/home/item.html?id=36386a7e7dae4032a33cb0b83a1711f1"},"best":false,"country_code":"US","description":"The most recently available VBMP orthoimagery for all of Virginia.","end_date":"2018-08","id":"VGIN-Imagery_WM","license_url":"http://data.virginia.gov/#opendata","max_zoom":20,"name":"Virginia Imagery Service - Most Recent","start_date":"2013-04","type":"tms","url":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=https%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FMostRecentImagery%2FMostRecentImagery_WGS%2FMapServer&transparent=true&layers=show%3A0"},"type":"Feature"},{"geometry":{"coordinates":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Virginia Geographic Information Network (VGIN)","url":"https://vgin.maps.arcgis.com/home/item.html?id=f1dccaf1f42e40cbba791feae2e23690"},"best":false,"country_code":"US","description":"A statewide Parcel service showing property ownership outlines where available","end_date":"2018-06","id":"VGIN-PropertyLines_WM","license_url":"http://data.virginia.gov/#opendata","max_zoom":20,"name":"Virginia Property Lines","overlay":true,"start_date":"2015-05","type":"tms","url":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=http%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FVA_Base_layers%2FVA_Parcels%2FMapServer&transparent=true"},"type":"Feature"},{"geometry":{"coordinates":[[[112.28778,-28.78459],[112.71488,-31.13894],[114.11263,-34.17829],[113.60788,-37.39012],[117.17992,-37.45179],[119.31538,-37.42096],[121.72262,-36.70839],[123.81925,-35.76893],[125.9547,-34.3066],[127.97368,-33.7274],[130.07031,-33.24166],[130.10913,-33.8887],[131.00214,-34.04971],[131.0798,-34.72257],[132.28342,-35.39],[134.18591,-35.61126],[133.8753,-37.1119],[134.8459,-37.6365],[139.7769,-37.82075],[139.93223,-39.4283],[141.6017,-39.8767],[142.3783,-39.36829],[142.3783,-40.64702],[142.49478,-42.07487],[144.009,-44.06013],[147.23161,-44.03222],[149.05645,-42.53431],[149.52237,-40.99959],[149.9494,-40.85292],[150.8036,-38.09627],[151.81313,-38.12682],[156.20052,-22.66771],[156.20052,-20.10109],[156.62761,-17.41763],[155.26869,-17.19521],[154.14272,-19.51662],[153.5215,-18.34139],[153.05558,-16.5636],[152.78379,-15.25677],[152.27905,-13.4135],[151.3472,-12.39177],[149.48354,-12.05024],[146.9598,-9.99241],[135.9719,-9.99241],[130.3032,-10.33636],[128.09016,-12.16414],[125.91588,-12.31591],[124.3239,-11.86033],[122.03323,-11.97429],[118.26706,-16.9353],[115.93747,-19.11357],[114.0738,-21.11863],[113.49141,-22.59603],[112.28778,-28.78459]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"AGRI, Geoscience Australia","url":"https://data.gov.au/dataset/agri-the-australian-geographic-reference-image"},"country_code":"AU","end_date":"2011","id":"AGRI-black_and_white-2.5m","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/Geoscience_Australia","max_zoom":16,"name":"AGRI black-and-white 2.5m","start_date":"2006","type":"tms","url":"https://{switch:a,b,c}.agri.openstreetmap.org/layer/au_ga_agri/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[149.085,-35.1171],[149.1509,-35.1157],[149.1509,-35.1335],[149.1736,-35.1335],[149.1739,-35.1512],[149.1957,-35.1512],[149.1962,-35.1689],[149.2177,-35.1683],[149.2192,-35.2048],[149.241,-35.2043],[149.2419,-35.2223],[149.2632,-35.2222],[149.2644,-35.2575],[149.3085,-35.2571],[149.309,-35.2751],[149.3531,-35.2742],[149.3536,-35.2921],[149.3974,-35.2917],[149.3988,-35.3452],[149.3777,-35.3457],[149.3772,-35.3641],[149.3341,-35.3648],[149.3385,-35.5451],[149.1624,-35.5487],[149.1727,-35.9271],[149.0175,-35.9294],[149.0172,-35.9113],[148.9506,-35.9125],[148.9499,-35.8946],[148.9277,-35.8949],[148.9272,-35.8768],[148.9053,-35.8768],[148.9042,-35.8586],[148.8826,-35.859],[148.8805,-35.7695],[148.8361,-35.7698],[148.8359,-35.7521],[148.8138,-35.7524],[148.8131,-35.7343],[148.7909,-35.7347],[148.7911,-35.7167],[148.7688,-35.7167],[148.7617,-35.3924],[148.7839,-35.3921],[148.7822,-35.3022],[148.8041,-35.302],[148.8033,-35.2836],[148.8474,-35.2832],[148.8469,-35.2652],[148.8689,-35.2643],[148.8687,-35.2466],[148.9128,-35.246],[148.9123,-35.2282],[148.9341,-35.228],[148.9329,-35.1919],[148.999,-35.1904],[148.9986,-35.1724],[149.0206,-35.172],[149.0204,-35.154],[149.0637,-35.1532],[149.0635,-35.1355],[149.0857,-35.1348],[149.085,-35.1171]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory","url":"https://actmapi-actgov.opendata.arcgis.com/datasets/884456bde6fd46d68e0c05479f55d548"},"available_projections":["EPSG:3857"],"country_code":"AU","end_date":"2017-05","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png","id":"ACT2017","license_url":"https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF","max_zoom":21,"name":"ACTmapi Imagery 2017","privacy_policy_url":"https://www.environment.act.gov.au/about/privacy","start_date":"2017-05","type":"wms","url":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2017mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"},"type":"Feature"},{"geometry":{"coordinates":[[[149.2695,-35.4381],[149.2669,-35.348],[149.3329,-35.3468],[149.3334,-35.3648],[149.3774,-35.364],[149.3769,-35.3459],[149.3989,-35.3455],[149.3984,-35.3275],[149.4094,-35.3273],[149.4088,-35.3092],[149.3978,-35.3095],[149.3973,-35.2914],[149.3533,-35.2923],[149.3528,-35.2743],[149.3089,-35.2751],[149.3084,-35.2571],[149.2644,-35.2579],[149.2634,-35.2219],[149.2415,-35.2223],[149.241,-35.2043],[149.219,-35.2047],[149.218,-35.1687],[149.1961,-35.1691],[149.1956,-35.151],[149.1737,-35.1514],[149.1732,-35.1334],[149.1512,-35.1338],[149.1508,-35.1158],[149.085,-35.1169],[149.0854,-35.135],[149.0635,-35.1353],[149.0639,-35.1534],[149.0201,-35.1541],[149.0205,-35.1721],[148.9985,-35.1725],[148.999,-35.1905],[148.9331,-35.1916],[148.934,-35.2276],[148.912,-35.228],[148.9124,-35.246],[148.8685,-35.2467],[148.8689,-35.2647],[148.8469,-35.265],[148.8473,-35.2831],[148.8034,-35.2837],[148.8038,-35.3018],[148.7818,-35.3021],[148.7838,-35.3922],[148.8058,-35.3919],[148.8086,-35.5181],[148.7976,-35.5182],[148.7994,-35.5993],[148.8766,-35.5982],[148.8747,-35.517],[148.8527,-35.5174],[148.8508,-35.4363],[148.8398,-35.4364],[148.8388,-35.3914],[149.0039,-35.3888],[149.0048,-35.4248],[149.0268,-35.4244],[149.0277,-35.4605],[149.0497,-35.4601],[149.0511,-35.5142],[149.1613,-35.5122],[149.1594,-35.4402],[149.2695,-35.4381]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory"},"available_projections":["EPSG:3857"],"country_code":"AU","end_date":"2018-03-19","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png","id":"ACT2018","license_url":"https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF","max_zoom":21,"name":"ACTmapi Imagery 2018","privacy_policy_url":"https://www.environment.act.gov.au/about/privacy","start_date":"2018-03-19","type":"wms","url":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2018mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"},"type":"Feature"},{"geometry":{"coordinates":[[[149.04053,-35.09056],[149.20498,-35.08747],[149.20618,-35.1237],[149.24944,-35.12314],[149.2515,-35.19499],[149.29596,-35.19429],[149.29716,-35.23861],[149.34111,-35.23847],[149.34196,-35.27435],[149.42986,-35.27253],[149.43226,-35.36288],[149.42127,-35.36316],[149.42179,-35.37239],[149.3224,-35.37435],[149.3224,-35.36498],[149.30042,-35.36512],[149.30094,-35.37435],[149.28995,-35.37449],[149.29201,-35.4376],[149.15932,-35.44039],[149.16121,-35.51197],[149.03984,-35.51448],[149.03984,-35.47829],[148.99504,-35.4794],[148.99315,-35.37995],[149.00396,-35.37981],[149.0007,-35.26272],[148.95641,-35.26286],[148.95435,-35.16399],[148.99864,-35.16342],[148.99796,-35.12721],[149.04156,-35.12665],[149.04053,-35.09056]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Aerial Imagery from ACTMapi ©ACT Government","url":"http://actmapi.act.gov.au/terms.html"},"available_projections":["EPSG:3857"],"country_code":"AU","end_date":"2019-02-09","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png","id":"ACT2019","license_url":"https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF","max_zoom":21,"name":"ACTmapi Imagery Feb 2019","privacy_policy_url":"https://www.environment.act.gov.au/about/privacy","start_date":"2019-02-09","type":"wms","url":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2019mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"},"type":"Feature"},{"geometry":{"coordinates":[[[148.97478,-35.10074],[149.22712,-35.09632],[149.22811,-35.13237],[149.24983,-35.13198],[149.25025,-35.14107],[149.27223,-35.14062],[149.27416,-35.21263],[149.31806,-35.21184],[149.31905,-35.248],[149.40694,-35.24632],[149.40805,-35.28227],[149.45191,-35.28129],[149.45509,-35.38044],[149.41089,-35.38135],[149.41166,-35.39927],[149.40042,-35.39955],[149.40093,-35.41752],[149.31287,-35.41934],[149.3139,-35.44634],[149.2697,-35.44718],[149.2709,-35.48325],[149.22678,-35.48402],[149.22772,-35.52007],[149.18378,-35.52084],[149.18464,-35.55709],[149.01855,-35.55974],[149.01701,-35.48807],[148.97324,-35.48863],[148.97203,-35.44333],[148.98319,-35.44333],[148.9807,-35.34419],[148.93676,-35.34461],[148.93187,-35.13753],[148.97581,-35.1369],[148.97478,-35.10074]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd","url":"http://actmapi.act.gov.au/terms.html"},"available_projections":["EPSG:3857"],"country_code":"AU","end_date":"2019-06-19","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png","id":"ACT201906","license_url":"https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF","max_zoom":21,"name":"ACTmapi Imagery Jun 2019","privacy_policy_url":"https://www.environment.act.gov.au/about/privacy","start_date":"2019-06-19","type":"wms","url":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery201906mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"},"type":"Feature"},{"geometry":{"coordinates":[[[149.01888,-35.55033],[149.01874,-35.54169],[149.02979,-35.54152],[149.02911,-35.51456],[148.9849,-35.51532],[148.98051,-35.33506],[148.93611,-35.33576],[148.93142,-35.12826],[149.01972,-35.12661],[149.01913,-35.10016],[149.02959,-35.09987],[149.02982,-35.09083],[149.23791,-35.08675],[149.23815,-35.10483],[149.22757,-35.10541],[149.22888,-35.15974],[149.27261,-35.15838],[149.27404,-35.19432],[149.3173,-35.19374],[149.31991,-35.23005],[149.32918,-35.22947],[149.33013,-35.2386],[149.36293,-35.23763],[149.36531,-35.27334],[149.45206,-35.27237],[149.45396,-35.37224],[149.41047,-35.37243],[149.41213,-35.40809],[149.36745,-35.40964],[149.36792,-35.43636],[149.32419,-35.43694],[149.32562,-35.47412],[149.2372,-35.47431],[149.23886,-35.50237],[149.22817,-35.50218],[149.22793,-35.5105],[149.1842,-35.51205],[149.18443,-35.54764],[149.01888,-35.55033]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd","url":"http://actmapi.act.gov.au/terms.html"},"available_projections":["EPSG:3857"],"best":true,"country_code":"AU","end_date":"2020-01-21","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png","id":"ACT202001","license_url":"https://osmlab.github.io/editor-layer-index/sources/oceania/au/act/ACTmapi-Imagery.PDF","max_zoom":21,"name":"ACTmapi Imagery Jan 2020","privacy_policy_url":"https://www.environment.act.gov.au/about/privacy","start_date":"2020-01-21","type":"wms","url":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery202001mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}"},"type":"Feature"},{"geometry":{"coordinates":[[[149.88647,-32.97641],[149.88785,-34.04583],[150.08835,-34.02421],[150.09264,-34.66569],[150.06758,-34.66604],[150.06775,-34.67733],[149.91669,-34.67952],[149.91806,-34.80365],[150.09247,-34.80478],[150.09796,-34.976],[149.44977,-34.9625],[149.44565,-35.46514],[149.20807,-35.48527],[149.2012,-35.96689],[148.98834,-35.98467],[148.99246,-37.02229],[149.96338,-37.02996],[150.53192,-36.02911],[150.78735,-35.29719],[151.37237,-33.75403],[151.35864,-31.96847],[150.35614,-31.9475],[150.35339,-32.45415],[150.04028,-32.4472],[150.04852,-32.96258],[149.88647,-32.97641]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"©2020 DigitalGlobe","url":"https://www.digitalglobe.com/ecosystem/open-data/australia-wildfires"},"category":"photo","country_code":"AU","end_date":"2019-10-18","id":"Maxar_19-20_Australian_Bushfires_PreEvent","license_url":"https://www.digitalglobe.com/ecosystem/open-data/australia-wildfires","max_zoom":19,"min_zoom":11,"name":"Maxar 2019-2020 Australian Bushfires Pre-event","permission_osm":"explicit","privacy_policy_url":"https://bunnycdn.com/privacy","start_date":"2018-01-20","type":"tms","url":"https://cogeoxyz.b-cdn.net/6b6f479fbacd9a42e9e38bc5c0c6889f009beae13b07742ec4a1648f/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"available_projections":["EPSG:3857"],"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"LPI_NSW_Administrative_Boundaries_County","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":21,"min_zoom":1,"name":"LPI NSW Administrative Boundaries County","overlay":true,"privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"wms","url":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=4&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"available_projections":["EPSG:3857"],"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"LPI_NSW_Administrative_Boundaries_LGA","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":21,"min_zoom":1,"name":"LPI NSW Administrative Boundaries LGA","overlay":true,"privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"wms","url":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=6&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"available_projections":["EPSG:3857"],"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"LPI_NSW_Administrative_Boundaries_NPWS_Reserve","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":21,"min_zoom":1,"name":"LPI NSW Administrative Boundaries NPWS Reserve","overlay":true,"privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"wms","url":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=1&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"available_projections":["EPSG:3857"],"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"LPI_NSW_Administrative_Boundaries_Parish","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":21,"min_zoom":1,"name":"LPI NSW Administrative Boundaries Parish","overlay":true,"privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"wms","url":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=3&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"available_projections":["EPSG:3857"],"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"LPI_NSW_Administrative_Boundaries_StateForest","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":21,"min_zoom":1,"name":"LPI NSW Administrative Boundaries State Forest","overlay":true,"privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"wms","url":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=2&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"available_projections":["EPSG:3857"],"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"LPI_NSW_Administrative_Boundaries_Suburb","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":21,"min_zoom":1,"name":"LPI NSW Administrative Boundaries Suburb","overlay":true,"privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"wms","url":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=7&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[140.99486,-28.95297],[148.96114,-28.89977],[148.98701,-28.48623],[151.01361,-28.47865],[151.10847,-28.70329],[151.87599,-28.68312],[151.93348,-28.40788],[152.25544,-28.23327],[153.06608,-28.21047],[153.14082,-28.1091],[153.47351,-28.11648],[153.35765,-27.69361],[159.49383,-27.69925],[159.4857,-37.84741],[149.52569,-37.82815],[149.91596,-37.487],[148.04859,-36.81317],[147.9681,-36.15679],[146.71477,-36.28666],[145.30046,-36.15679],[144.53007,-36.14751],[142.8398,-35.02543],[142.35686,-34.78025],[141.97741,-34.40162],[140.99503,-34.13718],[140.99486,-28.95297]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"NSW_LPI_BaseMap","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":19,"min_zoom":1,"name":"LPI NSW Base Map","privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"tms","url":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Base_Map/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[140.98687,-28.98878],[148.99515,-28.97275],[148.99667,-28.49151],[151.0029,-28.49307],[151.0029,-28.72617],[151.49151,-28.73239],[151.49187,-28.71553],[151.92282,-28.71964],[151.92516,-28.48971],[151.99559,-28.48987],[151.99899,-28.11927],[152.49676,-28.12209],[152.49682,-28.11464],[153.00446,-28.11544],[153.00446,-28.1204],[153.50386,-28.11934],[153.50393,-28.12271],[153.59194,-28.12236],[153.59266,-28.17769],[153.61112,-28.17579],[153.61139,-28.18252],[153.74268,-28.21621],[153.77873,-28.71091],[152.6238,-32.58772],[152.3124,-32.63288],[151.41419,-33.57904],[150.89299,-35.26487],[150.46207,-35.77773],[150.01565,-37.51036],[149.99181,-37.51268],[149.51978,-37.51307],[149.51996,-37.52169],[149.4463,-37.53537],[149.06334,-37.5358],[148.98366,-37.52176],[148.98169,-37.5192],[148.98638,-37.2585],[148.48754,-37.26585],[148.48248,-37.00927],[147.99439,-37.01434],[147.98829,-36.53322],[147.95297,-36.52607],[147.94865,-36.0686],[147.5035,-36.07168],[147.50477,-36.2651],[146.492,-36.26613],[146.49225,-36.2565],[145.99298,-36.25343],[145.99659,-36.01881],[145.98316,-36.01871],[145.96245,-36.0219],[145.94624,-36.01209],[145.94543,-36.00603],[145.50415,-36.00136],[145.50379,-36.01091],[145.0072,-36.00362],[145.00354,-36.15204],[144.48608,-36.14231],[144.48741,-36.01375],[143.98747,-36.00241],[143.99329,-35.57238],[143.49717,-35.58371],[143.4918,-35.40656],[143.46134,-35.36749],[143.45856,-35.35559],[143.48978,-35.33965],[143.48955,-35.33221],[143.4317,-35.25706],[143.25055,-35.26066],[143.24384,-35.01327],[142.99333,-35.01772],[142.99198,-34.79619],[142.49714,-34.80323],[142.49732,-34.80076],[142.42114,-34.80176],[142.42092,-34.78383],[142.23309,-34.78592],[142.23077,-34.78075],[142.227,-34.50613],[141.99753,-34.50837],[141.9946,-34.25267],[141.49823,-34.25569],[141.49817,-34.25228],[140.99454,-34.25284],[140.98687,-28.98878]],[[159.22678,-31.74407],[159.26398,-31.74399],[159.28989,-31.77428],[159.28993,-31.79393],[159.26157,-31.79395],[159.22682,-31.75483],[159.22678,-31.74407]],[[159.03784,-31.49819],[159.04448,-31.5006],[159.04619,-31.49734],[159.04888,-31.49829],[159.04884,-31.48423],[159.06882,-31.48423],[159.06991,-31.482],[159.08317,-31.48203],[159.08203,-31.48434],[159.08205,-31.49567],[159.08564,-31.49703],[159.08383,-31.50058],[159.09007,-31.5026],[159.08682,-31.50859],[159.09433,-31.51136],[159.09174,-31.51585],[159.09537,-31.51724],[159.10276,-31.52611],[159.1161,-31.53006],[159.11422,-31.5342],[159.11875,-31.53417],[159.1193,-31.54888],[159.12618,-31.55796],[159.11841,-31.56323],[159.11553,-31.55983],[159.1115,-31.55983],[159.11154,-31.60158],[159.08954,-31.6016],[159.08626,-31.60845],[159.07954,-31.60611],[159.07714,-31.61149],[159.05943,-31.61155],[159.05296,-31.60369],[159.05893,-31.59087],[159.05891,-31.57897],[159.05541,-31.57773],[159.05735,-31.57387],[159.05585,-31.57333],[159.05038,-31.57335],[159.05035,-31.56329],[159.0463,-31.5619],[159.04847,-31.55793],[159.04237,-31.55601],[159.04533,-31.55038],[159.03783,-31.54763],[159.03802,-31.54723],[159.03487,-31.54724],[159.03487,-31.54383],[159.03244,-31.54297],[159.03461,-31.53808],[159.02754,-31.53554],[159.02964,-31.53159],[159.02305,-31.52935],[159.03784,-31.49819]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"available_projections":["EPSG:3857"],"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"NSW_LPI_Imagery_Dates","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":21,"name":"LPI NSW Imagery Dates","overlay":true,"privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"wms","url":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Imagery_Dates/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=0&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[140.98687,-28.98878],[148.99515,-28.97275],[148.99667,-28.49151],[151.0029,-28.49307],[151.0029,-28.72617],[151.49151,-28.73239],[151.49187,-28.71553],[151.92282,-28.71964],[151.92516,-28.48971],[151.99559,-28.48987],[151.99899,-28.11927],[152.49676,-28.12209],[152.49682,-28.11464],[153.00446,-28.11544],[153.00446,-28.1204],[153.50386,-28.11934],[153.50393,-28.12271],[153.59194,-28.12236],[153.59266,-28.17769],[153.61112,-28.17579],[153.61139,-28.18252],[153.74268,-28.21621],[153.77873,-28.71091],[152.6238,-32.58772],[152.3124,-32.63288],[151.41419,-33.57904],[150.89299,-35.26487],[150.46207,-35.77773],[150.01565,-37.51036],[149.99181,-37.51268],[149.51978,-37.51307],[149.51996,-37.52169],[149.4463,-37.53537],[149.06334,-37.5358],[148.98366,-37.52176],[148.98169,-37.5192],[148.98638,-37.2585],[148.48754,-37.26585],[148.48248,-37.00927],[147.99439,-37.01434],[147.98829,-36.53322],[147.95297,-36.52607],[147.94865,-36.0686],[147.5035,-36.07168],[147.50477,-36.2651],[146.492,-36.26613],[146.49225,-36.2565],[145.99298,-36.25343],[145.99659,-36.01881],[145.98316,-36.01871],[145.96245,-36.0219],[145.94624,-36.01209],[145.94543,-36.00603],[145.50415,-36.00136],[145.50379,-36.01091],[145.0072,-36.00362],[145.00354,-36.15204],[144.48608,-36.14231],[144.48741,-36.01375],[143.98747,-36.00241],[143.99329,-35.57238],[143.49717,-35.58371],[143.4918,-35.40656],[143.46134,-35.36749],[143.45856,-35.35559],[143.48978,-35.33965],[143.48955,-35.33221],[143.4317,-35.25706],[143.25055,-35.26066],[143.24384,-35.01327],[142.99333,-35.01772],[142.99198,-34.79619],[142.49714,-34.80323],[142.49732,-34.80076],[142.42114,-34.80176],[142.42092,-34.78383],[142.23309,-34.78592],[142.23077,-34.78075],[142.227,-34.50613],[141.99753,-34.50837],[141.9946,-34.25267],[141.49823,-34.25569],[141.49817,-34.25228],[140.99454,-34.25284],[140.98687,-28.98878]],[[159.22678,-31.74407],[159.26398,-31.74399],[159.28989,-31.77428],[159.28993,-31.79393],[159.26157,-31.79395],[159.22682,-31.75483],[159.22678,-31.74407]],[[159.03784,-31.49819],[159.04448,-31.5006],[159.04619,-31.49734],[159.04888,-31.49829],[159.04884,-31.48423],[159.06882,-31.48423],[159.06991,-31.482],[159.08317,-31.48203],[159.08203,-31.48434],[159.08205,-31.49567],[159.08564,-31.49703],[159.08383,-31.50058],[159.09007,-31.5026],[159.08682,-31.50859],[159.09433,-31.51136],[159.09174,-31.51585],[159.09537,-31.51724],[159.10276,-31.52611],[159.1161,-31.53006],[159.11422,-31.5342],[159.11875,-31.53417],[159.1193,-31.54888],[159.12618,-31.55796],[159.11841,-31.56323],[159.11553,-31.55983],[159.1115,-31.55983],[159.11154,-31.60158],[159.08954,-31.6016],[159.08626,-31.60845],[159.07954,-31.60611],[159.07714,-31.61149],[159.05943,-31.61155],[159.05296,-31.60369],[159.05893,-31.59087],[159.05891,-31.57897],[159.05541,-31.57773],[159.05735,-31.57387],[159.05585,-31.57333],[159.05038,-31.57335],[159.05035,-31.56329],[159.0463,-31.5619],[159.04847,-31.55793],[159.04237,-31.55601],[159.04533,-31.55038],[159.03783,-31.54763],[159.03802,-31.54723],[159.03487,-31.54724],[159.03487,-31.54383],[159.03244,-31.54297],[159.03461,-31.53808],[159.02754,-31.53554],[159.02964,-31.53159],[159.02305,-31.52935],[159.03784,-31.49819]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"best":true,"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"NSW_LPI_Imagery","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":21,"min_zoom":1,"name":"LPI NSW Imagery","privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"tms","url":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[140.99884,-28.99924],[140.99652,-34.13858],[142.03614,-34.37588],[142.40976,-34.76694],[143.33826,-35.23318],[143.99654,-35.98105],[144.49912,-36.0211],[144.50725,-36.24765],[145.01541,-36.25421],[145.00118,-36.00795],[146.50426,-36.12639],[146.49564,-36.24471],[146.98863,-36.25283],[146.99725,-36.12755],[147.38221,-36.13103],[147.38939,-36.01137],[147.81483,-36.00556],[147.99306,-36.138],[148.06846,-36.80624],[149.98571,-37.508],[163,-32],[153.76465,-28.11075],[153.25003,-28.12497],[153.24999,-28.23324],[153.16672,-28.23316],[153.16663,-28.25001],[153.11659,-28.24986],[153.1165,-28.2834],[152.9999,-28.28324],[152.99972,-28.24986],[152.24994,-28.25001],[152.24997,-28.37507],[151.99986,-28.37496],[151.99989,-28.50023],[151.93341,-28.50007],[151.93313,-28.62475],[151.98317,-28.62491],[151.98299,-28.64139],[151.99988,-28.64163],[152.00007,-28.68335],[152.03322,-28.6832],[152.0334,-28.71661],[151.99998,-28.71645],[151.99998,-28.74953],[151.03383,-28.75054],[151.03293,-28.74188],[151.02413,-28.74188],[151.02395,-28.73274],[151.00059,-28.73258],[151.00005,-28.50052],[148.99982,-28.50003],[148.99985,-28.74974],[149.0997,-28.74885],[149.10007,-28.81658],[149.00009,-28.81658],[148.99983,-28.96653],[148.94988,-28.96653],[148.95024,-28.99937],[140.99884,-28.99924]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© Department of Customer Service 2019","url":"https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services"},"country_code":"AU","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","id":"NSW_LPI_TopographicMap","license_url":"https://wiki.openstreetmap.org/wiki/Attribution/New_South_Wales_Government_Data","max_zoom":16,"min_zoom":1,"name":"LPI NSW Topographic Map","privacy_policy_url":"https://maps.six.nsw.gov.au/js/sixmaps/app/coreTerms.html","type":"tms","url":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[73.2279,-53.20333],[73.2279,-53.01073],[73.25949,-52.94944],[73.78992,-52.94944],[73.78992,-53.06048],[73.71783,-53.20333],[73.2279,-53.20333]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AU","description":"Glaciers of Northwest Heard Island (mapped meanwhile) (false color IR)","end_date":"2013-03-13","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-EO1A1350972013086110KF","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Northwest Heard Island","start_date":"2013-03-13","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=EO1A1350972013086110KF&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[73.06897,-53.27059],[73.06897,-52.87549],[73.67338,-52.87673],[74.08863,-52.9495],[74.08863,-53.27059],[73.06897,-53.27059]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AU","description":"Recent image of Heard island with interior mostly cloud covered but mostly well visible coast (true color)","end_date":"2016-04-12","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R047_S54_20160411T044330","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Heard Island coast","start_date":"2016-04-12","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R047_S54_20160411T044330&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[140.99929,-28.99913],[140.99939,-25.9967],[137.9991,-25.99709],[137.99652,-10.0581],[142.18505,-9.13463],[143.92089,-9.10209],[144.4702,-9.4924],[146.49169,-12.38292],[152.18261,-14.66862],[154.32494,-14.78549],[156.59911,-14.01935],[157.21434,-14.28567],[158.79638,-15.7711],[156.33544,-19.28003],[157.01659,-20.38582],[158.65355,-25.08559],[161.63084,-26.80444],[162.66355,-28.20759],[153.54217,-28.16887],[152.01233,-28.91201],[151.40533,-29.17135],[151.30645,-29.16415],[150.43579,-28.66408],[149.4223,-28.67854],[148.95813,-29.00333],[140.99929,-28.99913]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© State of Queensland (Department of Natural Resources, Mines and Energy) 2020","url":"http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={C3A4EE0F-60CF-4350-A50D-AF6BF2B1163C}"},"country_code":"AU","icon":"http://qldspatial.information.qld.gov.au/catalogue/custom/assets/cue/images/favicon.ico","id":"QLDMap_Lite","license_url":"https://wiki.openstreetmap.org/wiki/File:QLD_DNRM_CCBY_letter.png","max_zoom":18,"min_zoom":0,"name":"QLDMap Lite","privacy_policy_url":"https://www.qld.gov.au/legal/privacy","type":"tms","url":"https://gisservices.information.qld.gov.au/arcgis/rest/services/Basemaps/QldMap_Lite/MapServer/WMTS/tile/1.0.0/Basemaps_QldMap_Lite/default/GoogleMapsCompatible/{zoom}/{y}/{x}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[140.99929,-28.99913],[140.99939,-25.9967],[137.9991,-25.99709],[137.99652,-10.0581],[142.18505,-9.13463],[143.92089,-9.10209],[144.4702,-9.4924],[146.49169,-12.38292],[152.18261,-14.66862],[154.32494,-14.78549],[156.59911,-14.01935],[157.21434,-14.28567],[158.79638,-15.7711],[156.33544,-19.28003],[157.01659,-20.38582],[158.65355,-25.08559],[161.63084,-26.80444],[162.66355,-28.20759],[153.54217,-28.16887],[152.01233,-28.91201],[151.40533,-29.17135],[151.30645,-29.16415],[150.43579,-28.66408],[149.4223,-28.67854],[148.95813,-29.00333],[140.99929,-28.99913]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© State of Queensland (Department of Natural Resources, Mines and Energy) 2020","url":"http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={2B30FF3F-41A5-4A6B-86FD-1635C44CB754}"},"country_code":"AU","icon":"http://qldspatial.information.qld.gov.au/catalogue/custom/assets/cue/images/favicon.ico","id":"QLDMap_Topo","license_url":"https://wiki.openstreetmap.org/wiki/File:QLD_DNRM_CCBY_letter.png","max_zoom":18,"min_zoom":0,"name":"QLDMap Topo","privacy_policy_url":"https://www.qld.gov.au/legal/privacy","type":"tms","url":"https://gisservices.information.qld.gov.au/arcgis/rest/services/Basemaps/QldMap_Topo/MapServer/WMTS/tile/1.0.0/Basemaps_QldMap_Topo/default/GoogleMapsCompatible/{zoom}/{y}/{x}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[138.94746,-35.00283],[138.92407,-34.99305],[138.92517,-34.99001],[138.92695,-34.98968],[138.93336,-34.99052],[138.93811,-34.98634],[138.93688,-34.98205],[138.9365,-34.97941],[138.92935,-34.97259],[138.91302,-34.97015],[138.89699,-34.97178],[138.89712,-34.96186],[138.90229,-34.96106],[138.9154,-34.96132],[138.93356,-34.96413],[138.93841,-34.96659],[138.94461,-34.97268],[138.94909,-34.98091],[138.94935,-34.98242],[138.94858,-34.98799],[138.94491,-34.99168],[138.94645,-34.99515],[138.94748,-34.99817],[138.94684,-34.99989],[138.94746,-35.00283]],[[136.80219,-35.83855],[136.87205,-35.82317],[136.85377,-35.77702],[136.78811,-35.79025],[136.80219,-35.83855]],[[136.95745,-35.71934],[137.00204,-35.71903],[137.00187,-35.74846],[136.9575,-35.74871],[136.95745,-35.71934]],[[138.86929,-34.9703],[138.85127,-34.96485],[138.85981,-34.95272],[138.86187,-34.94748],[138.85504,-34.94751],[138.85414,-34.94428],[138.85564,-34.94002],[138.85749,-34.89269],[138.85105,-34.8917],[138.84886,-34.88755],[138.85049,-34.87653],[138.85547,-34.87294],[138.85972,-34.8747],[138.8838,-34.85167],[138.88654,-34.84625],[138.89787,-34.83864],[138.90512,-34.83998],[138.90547,-34.8299],[138.91083,-34.82624],[138.92276,-34.82783],[138.92186,-34.85297],[138.91723,-34.85319],[138.91568,-34.87945],[138.91384,-34.886],[138.90083,-34.88688],[138.89946,-34.8922],[138.87517,-34.89322],[138.87573,-34.91212],[138.87405,-34.92465],[138.88032,-34.9213],[138.88195,-34.91817],[138.89216,-34.92194],[138.87929,-34.94783],[138.87324,-34.96383],[138.86929,-34.9703]],[[136.57493,-35.92881],[136.57699,-35.93493],[136.57836,-35.94186],[136.5801,-35.94541],[136.58881,-35.94872],[136.5925,-35.94855],[136.59795,-35.94671],[136.59999,-35.94138],[136.60649,-35.94315],[136.61422,-35.93886],[136.6137,-35.93333],[136.64409,-35.91311],[136.64975,-35.91446],[136.65409,-35.91446],[136.65507,-35.91196],[136.65512,-35.90535],[136.64975,-35.89725],[136.63774,-35.89385],[136.6213,-35.89691],[136.61645,-35.89976],[136.6137,-35.90459],[136.57493,-35.92881]],[[137.46304,-35.73005],[137.46169,-35.71908],[137.46353,-35.71788],[137.46478,-35.7114],[137.47006,-35.70903],[137.47924,-35.708],[137.49261,-35.70345],[137.49263,-35.70826],[137.49598,-35.70741],[137.49799,-35.7153],[137.46304,-35.73005]],[[136.63555,-35.9581],[136.63593,-35.96252],[136.64666,-35.96429],[136.67765,-35.96283],[136.69859,-35.96338],[136.72224,-35.96213],[136.74356,-35.96245],[136.74417,-35.96338],[136.75352,-35.96318],[136.75408,-35.96199],[136.76691,-35.96182],[136.76674,-35.95661],[136.76446,-35.95414],[136.75979,-35.95529],[136.75635,-35.95508],[136.75356,-35.95331],[136.75283,-35.94977],[136.75052,-35.94827],[136.74631,-35.94938],[136.7179,-35.94928],[136.70769,-35.94886],[136.70533,-35.94994],[136.7037,-35.9515],[136.70318,-35.95355],[136.69704,-35.95515],[136.68486,-35.95543],[136.6831,-35.95772],[136.67263,-35.95734],[136.65314,-35.95817],[136.65061,-35.95897],[136.64366,-35.95814],[136.63555,-35.9581]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"ARA - Airborne Research Australia","url":"https://www.airborneresearch.org.au/"},"best":true,"country_code":"AU","end_date":"2020-02-06","icon":"https://static.wixstatic.com/media/a40742_9e0c1ee9ed0743a8bbf73b2fe6613802.gif","id":"ARA_Bushfires_2020","license_url":"https://wiki.openstreetmap.org/wiki/File:OSM_waiver_AirborneResearchSouthAustralia.pdf","max_zoom":22,"min_zoom":14,"name":"ARA Bushfires 2020","privacy_policy_url":"https://bunnycdn.com/privacy","start_date":"2020-01-08","type":"tms","url":"https://cogeoxyz.b-cdn.net/46b53084a82973a36c0f57a1d5446c605d00ed851f11a6f5ca7c75db/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":{"coordinates":[[[147.10456,-41.3946],[147.10541,-41.47525],[147.17433,-41.47514],[147.17428,-41.45584],[147.17533,-41.45584],[147.17501,-41.39451],[147.10456,-41.3946]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© City of Launceston"},"country_code":"AU","end_date":"2011-12","icon":"https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png","id":"CityOfLaunceston_2011","license_url":"https://osmlab.github.io/editor-layer-index/sources/oceania/au/tas/Launceston_OrthoPhoto.pdf","max_zoom":20,"min_zoom":10,"name":"Launceston OrthoPhoto 2011","permission_osm":"explicit","start_date":"2011-12","type":"tms","url":"https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Dec2011_10cm/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[147.06561,-41.5081],[147.06547,-41.36487],[147.23734,-41.36464],[147.23786,-41.50787],[147.06561,-41.5081]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"© City of Launceston"},"country_code":"AU","end_date":"2013-02-15","icon":"https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png","id":"CityOfLaunceston_2013","license_url":"https://osmlab.github.io/editor-layer-index/sources/oceania/au/tas/Launceston_OrthoPhoto.pdf","max_zoom":20,"min_zoom":12,"name":"Launceston OrthoPhoto 2013","permission_osm":"explicit","start_date":"2013-02-15","type":"tms","url":"https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Feb2013_10cm/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[144.9146,-37.7993],[144.9139,-37.7989],[144.9128,-37.7986],[144.9114,-37.7988],[144.9098,-37.7998],[144.906,-37.8064],[144.9043,-37.8126],[144.9042,-37.8142],[144.9056,-37.8209],[144.9043,-37.8224],[144.899,-37.8273],[144.8969,-37.8301],[144.896,-37.8335],[144.896,-37.8387],[144.897,-37.8419],[144.9011,-37.8469],[144.9052,-37.8502],[144.9068,-37.8506],[144.908,-37.8502],[144.9084,-37.8495],[144.907,-37.8477],[144.9076,-37.8469],[144.9045,-37.8416],[144.9053,-37.8414],[144.9081,-37.8458],[144.9118,-37.8502],[144.9127,-37.8504],[144.9155,-37.8489],[144.9155,-37.8481],[144.914,-37.8459],[144.9162,-37.8445],[144.914,-37.8413],[144.9163,-37.8399],[144.9165,-37.8384],[144.9151,-37.8344],[144.9183,-37.8331],[144.9195,-37.8326],[144.921,-37.8309],[144.9219,-37.83],[144.923,-37.8295],[144.9294,-37.8282],[144.9353,-37.827],[144.9411,-37.8269],[144.9418,-37.8268],[144.9458,-37.8275],[144.9471,-37.8279],[144.9478,-37.8278],[144.9579,-37.8295],[144.9592,-37.8294],[144.9613,-37.829],[144.9625,-37.8297],[144.9648,-37.8318],[144.9657,-37.8323],[144.9662,-37.8323],[144.9703,-37.8312],[144.9705,-37.8323],[144.9711,-37.8331],[144.9735,-37.8351],[144.9743,-37.836],[144.9794,-37.85],[144.9797,-37.8508],[144.9806,-37.8512],[144.9843,-37.8515],[144.9848,-37.8514],[144.9854,-37.8508],[144.9892,-37.8311],[144.9889,-37.8304],[144.9923,-37.8104],[144.9924,-37.8098],[144.9919,-37.809],[144.9745,-37.8071],[144.9768,-37.7933],[144.9767,-37.7928],[144.9764,-37.7923],[144.9759,-37.7922],[144.9698,-37.7915],[144.9708,-37.7857],[144.9704,-37.785],[144.9699,-37.7848],[144.9649,-37.7842],[144.9651,-37.7825],[144.9651,-37.782],[144.9642,-37.7814],[144.964,-37.7808],[144.9639,-37.7796],[144.9635,-37.7785],[144.9627,-37.7778],[144.9614,-37.7772],[144.9392,-37.7746],[144.9384,-37.7746],[144.938,-37.7749],[144.9373,-37.776],[144.9366,-37.7769],[144.9361,-37.7773],[144.936,-37.7779],[144.9378,-37.7814],[144.9383,-37.7842],[144.9391,-37.7865],[144.9389,-37.7867],[144.9388,-37.7873],[144.9377,-37.788],[144.9322,-37.7874],[144.9312,-37.7878],[144.9308,-37.7879],[144.93,-37.7874],[144.9218,-37.7864],[144.9149,-37.7794],[144.9143,-37.7787],[144.9137,-37.7785],[144.9129,-37.7786],[144.9082,-37.7813],[144.9072,-37.7821],[144.9057,-37.7845],[144.9053,-37.7864],[144.9043,-37.7866],[144.9037,-37.7872],[144.9032,-37.7883],[144.902,-37.7888],[144.9014,-37.7896],[144.9019,-37.791],[144.9026,-37.792],[144.9042,-37.7929],[144.9064,-37.7938],[144.9081,-37.7946],[144.9105,-37.7952],[144.9127,-37.796],[144.9143,-37.797],[144.9153,-37.7978],[144.9154,-37.7981],[144.9153,-37.7985],[144.9152,-37.7987],[144.9148,-37.7991],[144.9146,-37.7993]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"City of Melbourne","url":"https://data.melbourne.vic.gov.au/Environment/2019-Aerial-Imagery/cwpe-ugri"},"best":true,"country_code":"AU","end_date":"2019-02-03","icon":"https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png","id":"City_of_Melbourne_Feb_2019","license_url":"https://wiki.openstreetmap.org/wiki/File:City_of_Melbourne_OSMF_CCBY_waiver.pdf","max_zoom":22,"min_zoom":10,"name":"City of Melbourne Feb 2019","privacy_policy_url":"https://www.mapbox.com/legal/privacy/","start_date":"2019-02-02","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.melbourne190203/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w"},"type":"Feature"},{"geometry":{"coordinates":[[[144.9146,-37.7993],[144.9139,-37.7989],[144.9128,-37.7986],[144.9114,-37.7988],[144.9098,-37.7998],[144.906,-37.8064],[144.9043,-37.8126],[144.9042,-37.8142],[144.9056,-37.8209],[144.9043,-37.8224],[144.899,-37.8273],[144.8969,-37.8301],[144.896,-37.8335],[144.896,-37.8387],[144.897,-37.8419],[144.9011,-37.8469],[144.9052,-37.8502],[144.9068,-37.8506],[144.908,-37.8502],[144.9084,-37.8495],[144.907,-37.8477],[144.9076,-37.8469],[144.9045,-37.8416],[144.9053,-37.8414],[144.9081,-37.8458],[144.9118,-37.8502],[144.9127,-37.8504],[144.9155,-37.8489],[144.9155,-37.8481],[144.914,-37.8459],[144.9162,-37.8445],[144.914,-37.8413],[144.9163,-37.8399],[144.9165,-37.8384],[144.9151,-37.8344],[144.9183,-37.8331],[144.9195,-37.8326],[144.921,-37.8309],[144.9219,-37.83],[144.923,-37.8295],[144.9294,-37.8282],[144.9353,-37.827],[144.9411,-37.8269],[144.9418,-37.8268],[144.9458,-37.8275],[144.9471,-37.8279],[144.9478,-37.8278],[144.9579,-37.8295],[144.9592,-37.8294],[144.9613,-37.829],[144.9625,-37.8297],[144.9648,-37.8318],[144.9657,-37.8323],[144.9662,-37.8323],[144.9703,-37.8312],[144.9705,-37.8323],[144.9711,-37.8331],[144.9735,-37.8351],[144.9743,-37.836],[144.9794,-37.85],[144.9797,-37.8508],[144.9806,-37.8512],[144.9843,-37.8515],[144.9848,-37.8514],[144.9854,-37.8508],[144.9892,-37.8311],[144.9889,-37.8304],[144.9923,-37.8104],[144.9924,-37.8098],[144.9919,-37.809],[144.9745,-37.8071],[144.9768,-37.7933],[144.9767,-37.7928],[144.9764,-37.7923],[144.9759,-37.7922],[144.9698,-37.7915],[144.9708,-37.7857],[144.9704,-37.785],[144.9699,-37.7848],[144.9649,-37.7842],[144.9651,-37.7825],[144.9651,-37.782],[144.9642,-37.7814],[144.964,-37.7808],[144.9639,-37.7796],[144.9635,-37.7785],[144.9627,-37.7778],[144.9614,-37.7772],[144.9392,-37.7746],[144.9384,-37.7746],[144.938,-37.7749],[144.9373,-37.776],[144.9366,-37.7769],[144.9361,-37.7773],[144.936,-37.7779],[144.9378,-37.7814],[144.9383,-37.7842],[144.9391,-37.7865],[144.9389,-37.7867],[144.9388,-37.7873],[144.9377,-37.788],[144.9322,-37.7874],[144.9312,-37.7878],[144.9308,-37.7879],[144.93,-37.7874],[144.9218,-37.7864],[144.9149,-37.7794],[144.9143,-37.7787],[144.9137,-37.7785],[144.9129,-37.7786],[144.9082,-37.7813],[144.9072,-37.7821],[144.9057,-37.7845],[144.9053,-37.7864],[144.9043,-37.7866],[144.9037,-37.7872],[144.9032,-37.7883],[144.902,-37.7888],[144.9014,-37.7896],[144.9019,-37.791],[144.9026,-37.792],[144.9042,-37.7929],[144.9064,-37.7938],[144.9081,-37.7946],[144.9105,-37.7952],[144.9127,-37.796],[144.9143,-37.797],[144.9153,-37.7978],[144.9154,-37.7981],[144.9153,-37.7985],[144.9152,-37.7987],[144.9148,-37.7991],[144.9146,-37.7993]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"City of Melbourne","url":"https://data.melbourne.vic.gov.au/Property-Planning/2018-Aerial-Imagery-True-Ortho-/qa5h-sfgh"},"country_code":"AU","end_date":"2018-05","icon":"https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png","id":"City_of_Melbourne_May_2018","license_url":"https://wiki.openstreetmap.org/wiki/File:City_of_Melbourne_OSMF_CCBY_waiver.pdf","max_zoom":22,"min_zoom":10,"name":"City of Melbourne May 2018","privacy_policy_url":"https://www.mapbox.com/legal/privacy/","start_date":"2018-05","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.gdbhzo3g/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w"},"type":"Feature"},{"geometry":{"coordinates":[[[129.00009,-31.68764],[128.99872,-14.58225],[127.08984,-12.29707],[124.76074,-12.98315],[121.24512,-15.70766],[119.0918,-17.60214],[115.53223,-18.85431],[112.41211,-20.46819],[111.24756,-22.83695],[111.00586,-25.62172],[111.64307,-29.66896],[111.68701,-32.3614],[112.14844,-34.47034],[113.35693,-36.10238],[116.98242,-36.70366],[119.44336,-36.94989],[122.27783,-36.61553],[125.99121,-35.40696],[127.59521,-34.57895],[128.86963,-33.59632],[129.00009,-31.68764]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Main Roads Western Australia","url":"https://catalogue.data.wa.gov.au/dataset/clss-road-hierarchy"},"available_projections":["EPSG:3857","EPSG:4326"],"country_code":"AU","id":"MainRoadsWA_Road_Hierarchy","license_url":"https://wiki.openstreetmap.org/wiki/Contributors#Main_Roads_.28state_government_agency.29","max_zoom":21,"name":"Main Roads WA Road Hierarchy","overlay":true,"type":"wms","url":"https://services.slip.wa.gov.au/public/services/SLIP_Public_Services/Transport/MapServer/WMSServer?LAYERS=8&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&FORMAT=image%2Fpng&SRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}"},"type":"Feature"},{"geometry":{"coordinates":[[[167.25037,-47.21957],[167.24487,-47.28016],[167.50305,-47.37975],[168.25012,-47.1561],[168.74451,-46.7963],[169.32678,-46.75492],[169.78271,-46.60417],[170.42542,-46.11133],[170.80444,-45.95115],[170.95276,-45.44086],[171.30981,-44.91036],[171.40869,-44.39062],[172.56226,-43.92955],[172.90283,-43.9691],[173.16101,-43.90977],[173.25989,-43.69568],[172.97424,-43.5366],[172.76001,-43.37711],[173.15002,-43.17714],[173.70483,-42.63396],[174.36401,-41.7836],[174.32007,-41.40978],[174.84741,-41.52914],[175.07263,-41.70573],[175.50659,-41.67291],[176.2262,-41.10833],[176.83044,-40.42604],[177.17102,-39.67337],[177.03918,-39.39375],[177.44568,-39.18118],[177.60498,-39.33005],[177.97852,-39.36828],[178.33557,-38.65978],[178.70911,-37.74466],[178.62671,-37.54458],[178.3136,-37.43125],[177.62146,-37.37889],[177.03918,-37.39635],[176.56128,-37.37016],[176.33606,-37.05956],[176.00647,-36.29742],[175.67688,-36.05354],[174.67163,-35.1783],[173.19397,-34.28445],[172.67761,-34.23451],[172.38647,-34.40238],[172.47986,-34.71904],[172.98523,-35.32185],[173.56201,-36.14231],[174.30908,-37.07709],[174.55627,-38.05242],[174.47937,-38.65549],[174.32556,-38.86537],[173.79822,-38.95941],[173.60596,-39.23225],[173.69934,-39.56335],[174.58923,-39.95607],[174.98474,-40.21664],[174.98474,-40.49292],[174.72107,-40.80549],[174.14978,-40.65147],[173.28186,-40.4344],[172.58972,-40.35073],[172.08435,-40.53468],[171.76575,-40.82628],[171.57349,-41.39742],[171.28235,-41.65239],[170.87585,-42.53284],[170.354,-42.87194],[168.27759,-43.92955],[167.6239,-44.47691],[166.55273,-45.38688],[166.27258,-45.91677],[166.48132,-46.22545],[167.67883,-46.47192],[167.25037,-47.21957]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"Sourced from LINZ CC-BY 4.0","url":"https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data"},"best":true,"category":"photo","country_code":"NZ","icon":"https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico","id":"LINZ_NZ_Aerial_Imagery","license_url":"https://wiki.openstreetmap.org/wiki/Contributors#New_Zealand","max_zoom":21,"name":"LINZ NZ Aerial Imagery","privacy_policy_url":"https://www.linz.govt.nz/privacy","type":"tms","url":"https://basemaps.linz.govt.nz/v1/tiles/aerial/EPSG:3857/{zoom}/{x}/{y}.jpg?api=d01egend5f8dv4zcbfj6z2t7rs3"},"type":"Feature"},{"geometry":{"coordinates":[[[167.25037,-47.21957],[167.24487,-47.28016],[167.50305,-47.37975],[168.25012,-47.1561],[168.74451,-46.7963],[169.32678,-46.75492],[169.78271,-46.60417],[170.42542,-46.11133],[170.80444,-45.95115],[170.95276,-45.44086],[171.30981,-44.91036],[171.40869,-44.39062],[172.56226,-43.92955],[172.90283,-43.9691],[173.16101,-43.90977],[173.25989,-43.69568],[172.97424,-43.5366],[172.76001,-43.37711],[173.15002,-43.17714],[173.70483,-42.63396],[174.36401,-41.7836],[174.32007,-41.40978],[174.84741,-41.52914],[175.07263,-41.70573],[175.50659,-41.67291],[176.2262,-41.10833],[176.83044,-40.42604],[177.17102,-39.67337],[177.03918,-39.39375],[177.44568,-39.18118],[177.60498,-39.33005],[177.97852,-39.36828],[178.33557,-38.65978],[178.70911,-37.74466],[178.62671,-37.54458],[178.3136,-37.43125],[177.62146,-37.37889],[177.03918,-37.39635],[176.56128,-37.37016],[176.33606,-37.05956],[176.00647,-36.29742],[175.67688,-36.05354],[174.67163,-35.1783],[173.19397,-34.28445],[172.67761,-34.23451],[172.38647,-34.40238],[172.47986,-34.71904],[172.98523,-35.32185],[173.56201,-36.14231],[174.30908,-37.07709],[174.55627,-38.05242],[174.47937,-38.65549],[174.32556,-38.86537],[173.79822,-38.95941],[173.60596,-39.23225],[173.69934,-39.56335],[174.58923,-39.95607],[174.98474,-40.21664],[174.98474,-40.49292],[174.72107,-40.80549],[174.14978,-40.65147],[173.28186,-40.4344],[172.58972,-40.35073],[172.08435,-40.53468],[171.76575,-40.82628],[171.57349,-41.39742],[171.28235,-41.65239],[170.87585,-42.53284],[170.354,-42.87194],[168.27759,-43.92955],[167.6239,-44.47691],[166.55273,-45.38688],[166.27258,-45.91677],[166.48132,-46.22545],[167.67883,-46.47192],[167.25037,-47.21957]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"CC BY 4.0 Land Information New Zealand","url":"https://data.linz.govt.nz/layer/2343-nz-mainland-topo50-gridless-maps"},"category":"map","country_code":"NZ","icon":"https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico","id":"LINZ_NZ_Topo50_Gridless_Maps","license_url":"https://wiki.openstreetmap.org/wiki/Contributors#LINZ","max_zoom":21,"name":"LINZ NZ Topo50 Gridless Maps","type":"tms","url":"https://map.cazzaserver.com/linz_topo/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":{"coordinates":[[[153.06138,-11.78923],[153.06138,-11.28869],[153.10927,-11.07229],[154.41201,-11.07229],[154.41201,-11.78923],[153.06138,-11.78923]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"PG","description":"Coarse coastline due to cloud cover in Bing/Mapbox (true color)","end_date":"2014-12-24","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC80910682014358LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Vanatinai","start_date":"2014-12-24","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC80910682014358LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[150.38853,-2.80053],[150.38853,-2.3834],[150.83348,-2.3834],[150.83348,-2.80053],[150.38853,-2.80053]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"PG","description":"Many missing islands in OSM (mostly mapped meanwhile) (true color)","end_date":"2015-06-08","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC80940622015159LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: New Ireland","start_date":"2015-06-08","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC80940622015159LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-55.5438,-35.77219],[-64.31743,-49.44788],[-61.52546,-55.68296],[-66.04226,-55.24192],[-66.6896,-55.17191],[-66.86233,-55.04496],[-67.23387,-54.9245],[-67.47633,-54.92785],[-67.71808,-54.91261],[-67.96138,-54.88571],[-68.18753,-54.89288],[-68.61804,-54.92151],[-68.66375,-52.66716],[-68.51023,-52.39432],[-70.01629,-52.05707],[-72.05562,-52.01749],[-72.09055,-51.93758],[-72.02273,-51.88832],[-72.49598,-51.597],[-72.3623,-51.25935],[-72.46252,-51.08654],[-72.31217,-50.90093],[-72.39293,-50.69005],[-72.49148,-50.66866],[-72.59646,-50.73916],[-72.76983,-50.68829],[-73.22154,-50.87193],[-73.22709,-50.66897],[-73.39438,-50.58008],[-73.57703,-50.15788],[-73.53993,-50.01443],[-73.61453,-49.91795],[-73.52684,-49.7716],[-73.02779,-49.70085],[-73.02788,-49.23743],[-73.16148,-49.13062],[-72.96385,-48.89084],[-72.80952,-48.90039],[-72.59462,-48.77255],[-72.63621,-48.45823],[-72.46698,-48.45706],[-72.42158,-48.31422],[-72.3428,-48.29046],[-72.37166,-48.15995],[-72.57678,-47.96054],[-72.5731,-47.72062],[-72.3839,-47.57888],[-72.38448,-47.41759],[-72.07162,-47.2755],[-72.04726,-47.14867],[-71.93566,-47.15037],[-72.00956,-47.08473],[-72.00759,-46.78833],[-71.71488,-46.64453],[-71.7985,-46.26925],[-71.97019,-46.14972],[-71.63332,-45.97063],[-71.66595,-45.89232],[-71.77408,-45.85187],[-71.8548,-45.61169],[-71.7885,-45.50505],[-71.58354,-45.45607],[-71.58236,-45.36316],[-71.40574,-45.27206],[-71.61593,-45.03146],[-72.07949,-44.93988],[-72.11766,-44.73884],[-71.47444,-44.68048],[-71.2897,-44.75036],[-71.28469,-44.60892],[-71.20209,-44.5359],[-71.40536,-44.44891],[-71.86374,-44.44274],[-71.9047,-44.10354],[-71.70007,-43.98287],[-71.78725,-43.80985],[-71.63263,-43.65888],[-71.87866,-43.56195],[-71.95542,-43.44292],[-71.91512,-43.319],[-71.80268,-43.29535],[-71.73869,-43.19234],[-71.94149,-43.11061],[-72.18001,-42.8948],[-72.18733,-42.66619],[-72.06314,-42.53751],[-72.0441,-42.41231],[-72.14365,-42.40333],[-72.20024,-42.17229],[-72.17802,-42.13207],[-72.06032,-42.10593],[-71.78041,-42.12128],[-71.83133,-41.78089],[-71.94135,-41.60926],[-71.9023,-41.06778],[-72.02097,-40.73647],[-71.91507,-40.61832],[-71.87117,-40.38959],[-71.76665,-40.35676],[-71.87961,-40.24227],[-71.8856,-40.10093],[-71.67779,-39.92156],[-71.74365,-39.86164],[-71.77001,-39.61946],[-71.68665,-39.50983],[-71.58545,-39.55159],[-71.45202,-39.31025],[-71.47673,-38.89162],[-71.25594,-38.74909],[-70.95844,-38.70272],[-70.89411,-38.57644],[-71.03346,-38.45451],[-71.08724,-38.09054],[-71.23505,-37.86541],[-71.26668,-37.68295],[-71.18031,-37.4828],[-71.27241,-37.28686],[-71.17697,-37.1077],[-71.27586,-36.9637],[-71.20495,-36.91075],[-71.2345,-36.83303],[-71.07654,-36.43571],[-70.96469,-36.43366],[-70.90086,-36.34336],[-70.77062,-36.35412],[-70.59553,-36.12118],[-70.44219,-36.14876],[-70.42788,-35.73781],[-70.50607,-35.38014],[-70.59764,-35.34459],[-70.63128,-35.23712],[-70.42629,-35.12462],[-70.32933,-34.83081],[-70.35687,-34.72532],[-70.07752,-34.38253],[-70.06901,-34.24694],[-69.87771,-34.20233],[-69.95948,-33.77235],[-69.83371,-33.34911],[-70.02502,-33.37388],[-70.14906,-33.04145],[-70.06223,-33.01233],[-70.00981,-32.90747],[-70.19517,-32.75732],[-70.19589,-32.50891],[-70.28486,-32.45564],[-70.44343,-32.05325],[-70.41077,-31.9809],[-70.29402,-31.95849],[-70.5117,-31.85844],[-70.62295,-31.59949],[-70.59941,-31.29869],[-70.5377,-31.08557],[-70.35748,-31.0002],[-70.20264,-30.32249],[-69.97775,-30.32288],[-69.847,-30.16294],[-70.01824,-30.10003],[-69.95038,-29.73744],[-70.03755,-29.35428],[-69.97565,-29.18743],[-69.85112,-29.06923],[-69.70118,-28.37779],[-69.20484,-27.90816],[-68.84844,-27.13115],[-68.76133,-27.08588],[-68.60693,-27.09636],[-68.3489,-26.92771],[-68.64137,-26.50722],[-68.60352,-26.25391],[-68.45177,-26.1377],[-68.63052,-25.43524],[-68.55582,-25.14476],[-68.44595,-25.0658],[-68.62011,-24.81717],[-68.55162,-24.58836],[-68.28078,-24.34935],[-67.32648,-24.02538],[-66.99882,-23.00044],[-67.18775,-22.81375],[-67.08088,-22.62433],[-67.03366,-22.53815],[-66.84345,-22.39746],[-66.73734,-22.22282],[-66.38248,-22.07602],[-66.28978,-21.76554],[-66.21845,-21.72575],[-65.89675,-21.88263],[-65.71368,-22.09054],[-65.61493,-22.09152],[-65.60973,-22.09505],[-65.60607,-22.09358],[-65.60256,-22.09658],[-65.60015,-22.09543],[-65.59229,-22.09511],[-65.59015,-22.09735],[-65.58691,-22.09645],[-65.58512,-22.08432],[-65.57523,-22.07312],[-65.47487,-22.08487],[-64.99026,-22.06739],[-64.59768,-22.19269],[-64.52643,-22.29504],[-64.33114,-22.68517],[-64.10381,-22.34114],[-64.10712,-22.32023],[-64.06522,-22.23093],[-64.04702,-22.23757],[-64.03654,-22.19469],[-64.0029,-22.10735],[-63.99022,-22.07925],[-63.97147,-22.07619],[-63.94118,-21.99823],[-63.70932,-21.99896],[-63.68839,-22.01037],[-63.68079,-22.03116],[-63.68507,-22.04019],[-63.68156,-22.05185],[-63.67659,-22.03287],[-63.67201,-22.02293],[-63.66821,-22.01634],[-63.67191,-22.01399],[-63.66566,-21.99839],[-62.79606,-21.98778],[-62.74618,-22.10033],[-62.18511,-22.50843],[-61.93761,-22.97376],[-61.45605,-23.36182],[-61.05842,-23.56621],[-60.95137,-23.75997],[-60.28746,-24.01906],[-60.03728,-24.00408],[-59.46607,-24.33428],[-59.12256,-24.59772],[-58.46645,-24.84584],[-58.332,-24.98132],[-58.2349,-24.91756],[-57.8565,-25.08005],[-57.76981,-25.15013],[-57.75374,-25.17277],[-57.71597,-25.26456],[-57.71837,-25.27146],[-57.71111,-25.27265],[-57.71008,-25.28146],[-57.70692,-25.2845],[-57.70438,-25.28159],[-57.70273,-25.28239],[-57.70175,-25.28459],[-57.69741,-25.28283],[-57.69281,-25.28588],[-57.69733,-25.29337],[-57.70246,-25.29847],[-57.69612,-25.30832],[-57.69763,-25.3199],[-57.69143,-25.32127],[-57.67993,-25.33318],[-57.64822,-25.3679],[-57.63902,-25.38287],[-57.61504,-25.38841],[-57.59954,-25.39704],[-57.57673,-25.42029],[-57.56698,-25.43147],[-57.55477,-25.43999],[-57.55285,-25.44705],[-57.55811,-25.45717],[-57.55763,-25.46897],[-57.56523,-25.48014],[-57.56806,-25.49501],[-57.57722,-25.50575],[-57.57566,-25.52264],[-57.5661,-25.54112],[-57.56809,-25.55797],[-57.58142,-25.57145],[-57.59952,-25.57438],[-57.60444,-25.59855],[-57.6122,-25.61963],[-57.6367,-25.61807],[-57.66569,-25.60273],[-57.67006,-25.65579],[-57.67513,-25.66052],[-57.68626,-25.66287],[-57.69808,-25.65933],[-57.71855,-25.64914],[-57.72537,-25.71924],[-57.77786,-25.77559],[-57.84986,-26.01142],[-58.08597,-26.14202],[-58.13896,-26.66834],[-58.28224,-26.80127],[-58.32056,-26.82169],[-58.3167,-26.86081],[-58.32384,-26.87074],[-58.56858,-27.20629],[-57.90834,-27.24265],[-56.99114,-27.41858],[-56.60886,-27.36586],[-56.40607,-27.52701],[-56.32355,-27.36897],[-56.09353,-27.25219],[-55.76168,-27.38106],[-55.65541,-27.30153],[-55.67524,-27.17004],[-55.59643,-27.06538],[-55.40826,-26.91763],[-55.20788,-26.89214],[-54.97304,-26.63717],[-54.8532,-26.59894],[-54.72264,-26.31238],[-54.73235,-25.98554],[-54.65309,-25.84138],[-54.71357,-25.66721],[-54.62995,-25.55106],[-54.44288,-25.5795],[-54.11451,-25.4396],[-53.80059,-25.65093],[-53.766,-25.94301],[-53.59024,-26.19274],[-53.67264,-26.61495],[-53.61669,-26.95395],[-53.76351,-27.18917],[-54.15393,-27.36033],[-54.26461,-27.49923],[-54.79439,-27.6397],[-55.0044,-27.90341],[-55.19076,-27.92946],[-55.41589,-28.14304],[-55.66542,-28.26547],[-55.61633,-28.32205],[-55.65957,-28.46539],[-55.83413,-28.42136],[-55.87339,-28.49468],[-56.13558,-28.7265],[-56.37343,-29.10817],[-56.569,-29.13892],[-56.76306,-29.48638],[-57.05958,-29.72263],[-57.24463,-29.86452],[-57.3045,-30.03966],[-57.61942,-30.20517],[-57.60863,-30.32424],[-57.82983,-30.53118],[-57.75241,-30.68756],[-57.75273,-30.91942],[-57.93419,-31.27388],[-57.99,-31.36053],[-57.98302,-31.3734],[-57.97736,-31.38022],[-57.97778,-31.38599],[-57.98203,-31.39213],[-58.00944,-31.41341],[-58.06637,-31.47395],[-57.92613,-31.57745],[-57.98622,-31.77449],[-58.12179,-31.89772],[-58.11905,-32.14059],[-58.04227,-32.29153],[-58.14327,-32.45845],[-58.0758,-33.00587],[-58.18964,-33.09402],[-58.2723,-33.1061],[-58.31012,-33.1048],[-58.35418,-33.1221],[-58.37567,-33.17644],[-58.44465,-33.5853],[-58.43016,-33.71813],[-58.42434,-33.86887],[-58.41858,-33.91742],[-58.33697,-34.00477],[-58.241,-34.16246],[-57.84696,-34.50017],[-55.5438,-35.77219]]],"type":"Polygon"},"properties":{"attribution":{"text":"Mapa Educativo","url":"http://mapa.educacion.gob.ar/"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"AR","icon":"http://mapa.educacion.gob.ar/wp-content/themes/sitio_nuevo/img/men_icon.png","id":"Mapa-Educativo-wms","license_url":"https://datos.gob.ar/acerca/marco-legal","max_zoom":20,"min_zoom":1,"name":"Educational map (WMS)","type":"wms_endpoint","url":"http://www.mapaeducativo.edu.ar/geoserver/ogc/wms?SERVICE=WMS&"},"type":"Feature"},{"geometry":{"coordinates":[[[-55.98107,-27.49161],[-55.81536,-27.4901],[-55.79547,-27.47875],[-55.80229,-27.46904],[-55.80122,-27.46816],[-55.81217,-27.45416],[-55.83014,-27.44918],[-55.8467,-27.43985],[-55.8656,-27.37607],[-55.88358,-27.34641],[-55.99031,-27.34635],[-56.008,-27.35417],[-56.00495,-27.35865],[-56.01724,-27.36395],[-56.00751,-27.38156],[-56.0176,-27.38673],[-56.00601,-27.40295],[-56.01873,-27.40982],[-56.00395,-27.43095],[-56.01667,-27.43871],[-55.98107,-27.49161]]],"type":"Polygon"},"properties":{"attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"AR","icon":"https://www.ign.gob.ar/sites/default/files/favicon.png","id":"ign-posadas","license_url":"https://www.ign.gob.ar/descargas/tyc1.html","max_zoom":20,"min_zoom":1,"name":"IGN orthophoto Posadas (WMTS)","type":"wms_endpoint","url":"https://ide.ign.gob.ar/geoservicios/services/sensores_remotos/posadas/ImageServer/WMSServer?request=GetCapabilities&service=WMS"},"type":"Feature"},{"geometry":{"coordinates":[[[-55.5438,-35.77219],[-64.31743,-49.44788],[-61.52546,-55.68296],[-66.04226,-55.24192],[-66.6896,-55.17191],[-66.86233,-55.04496],[-67.23387,-54.9245],[-67.47633,-54.92785],[-67.71808,-54.91261],[-67.96138,-54.88571],[-68.18753,-54.89288],[-68.61804,-54.92151],[-68.66375,-52.66716],[-68.51023,-52.39432],[-70.01629,-52.05707],[-72.05562,-52.01749],[-72.09055,-51.93758],[-72.02273,-51.88832],[-72.49598,-51.597],[-72.3623,-51.25935],[-72.46252,-51.08654],[-72.31217,-50.90093],[-72.39293,-50.69005],[-72.49148,-50.66866],[-72.59646,-50.73916],[-72.76983,-50.68829],[-73.22154,-50.87193],[-73.22709,-50.66897],[-73.39438,-50.58008],[-73.57703,-50.15788],[-73.53993,-50.01443],[-73.61453,-49.91795],[-73.52684,-49.7716],[-73.02779,-49.70085],[-73.02788,-49.23743],[-73.16148,-49.13062],[-72.96385,-48.89084],[-72.80952,-48.90039],[-72.59462,-48.77255],[-72.63621,-48.45823],[-72.46698,-48.45706],[-72.42158,-48.31422],[-72.3428,-48.29046],[-72.37166,-48.15995],[-72.57678,-47.96054],[-72.5731,-47.72062],[-72.3839,-47.57888],[-72.38448,-47.41759],[-72.07162,-47.2755],[-72.04726,-47.14867],[-71.93566,-47.15037],[-72.00956,-47.08473],[-72.00759,-46.78833],[-71.71488,-46.64453],[-71.7985,-46.26925],[-71.97019,-46.14972],[-71.63332,-45.97063],[-71.66595,-45.89232],[-71.77408,-45.85187],[-71.8548,-45.61169],[-71.7885,-45.50505],[-71.58354,-45.45607],[-71.58236,-45.36316],[-71.40574,-45.27206],[-71.61593,-45.03146],[-72.07949,-44.93988],[-72.11766,-44.73884],[-71.47444,-44.68048],[-71.2897,-44.75036],[-71.28469,-44.60892],[-71.20209,-44.5359],[-71.40536,-44.44891],[-71.86374,-44.44274],[-71.9047,-44.10354],[-71.70007,-43.98287],[-71.78725,-43.80985],[-71.63263,-43.65888],[-71.87866,-43.56195],[-71.95542,-43.44292],[-71.91512,-43.319],[-71.80268,-43.29535],[-71.73869,-43.19234],[-71.94149,-43.11061],[-72.18001,-42.8948],[-72.18733,-42.66619],[-72.06314,-42.53751],[-72.0441,-42.41231],[-72.14365,-42.40333],[-72.20024,-42.17229],[-72.17802,-42.13207],[-72.06032,-42.10593],[-71.78041,-42.12128],[-71.83133,-41.78089],[-71.94135,-41.60926],[-71.9023,-41.06778],[-72.02097,-40.73647],[-71.91507,-40.61832],[-71.87117,-40.38959],[-71.76665,-40.35676],[-71.87961,-40.24227],[-71.8856,-40.10093],[-71.67779,-39.92156],[-71.74365,-39.86164],[-71.77001,-39.61946],[-71.68665,-39.50983],[-71.58545,-39.55159],[-71.45202,-39.31025],[-71.47673,-38.89162],[-71.25594,-38.74909],[-70.95844,-38.70272],[-70.89411,-38.57644],[-71.03346,-38.45451],[-71.08724,-38.09054],[-71.23505,-37.86541],[-71.26668,-37.68295],[-71.18031,-37.4828],[-71.27241,-37.28686],[-71.17697,-37.1077],[-71.27586,-36.9637],[-71.20495,-36.91075],[-71.2345,-36.83303],[-71.07654,-36.43571],[-70.96469,-36.43366],[-70.90086,-36.34336],[-70.77062,-36.35412],[-70.59553,-36.12118],[-70.44219,-36.14876],[-70.42788,-35.73781],[-70.50607,-35.38014],[-70.59764,-35.34459],[-70.63128,-35.23712],[-70.42629,-35.12462],[-70.32933,-34.83081],[-70.35687,-34.72532],[-70.07752,-34.38253],[-70.06901,-34.24694],[-69.87771,-34.20233],[-69.95948,-33.77235],[-69.83371,-33.34911],[-70.02502,-33.37388],[-70.14906,-33.04145],[-70.06223,-33.01233],[-70.00981,-32.90747],[-70.19517,-32.75732],[-70.19589,-32.50891],[-70.28486,-32.45564],[-70.44343,-32.05325],[-70.41077,-31.9809],[-70.29402,-31.95849],[-70.5117,-31.85844],[-70.62295,-31.59949],[-70.59941,-31.29869],[-70.5377,-31.08557],[-70.35748,-31.0002],[-70.20264,-30.32249],[-69.97775,-30.32288],[-69.847,-30.16294],[-70.01824,-30.10003],[-69.95038,-29.73744],[-70.03755,-29.35428],[-69.97565,-29.18743],[-69.85112,-29.06923],[-69.70118,-28.37779],[-69.20484,-27.90816],[-68.84844,-27.13115],[-68.76133,-27.08588],[-68.60693,-27.09636],[-68.3489,-26.92771],[-68.64137,-26.50722],[-68.60352,-26.25391],[-68.45177,-26.1377],[-68.63052,-25.43524],[-68.55582,-25.14476],[-68.44595,-25.0658],[-68.62011,-24.81717],[-68.55162,-24.58836],[-68.28078,-24.34935],[-67.32648,-24.02538],[-66.99882,-23.00044],[-67.18775,-22.81375],[-67.08088,-22.62433],[-67.03366,-22.53815],[-66.84345,-22.39746],[-66.73734,-22.22282],[-66.38248,-22.07602],[-66.28978,-21.76554],[-66.21845,-21.72575],[-65.89675,-21.88263],[-65.71368,-22.09054],[-65.61493,-22.09152],[-65.60973,-22.09505],[-65.60607,-22.09358],[-65.60256,-22.09658],[-65.60015,-22.09543],[-65.59229,-22.09511],[-65.59015,-22.09735],[-65.58691,-22.09645],[-65.58512,-22.08432],[-65.57523,-22.07312],[-65.47487,-22.08487],[-64.99026,-22.06739],[-64.59768,-22.19269],[-64.52643,-22.29504],[-64.33114,-22.68517],[-64.10381,-22.34114],[-64.10712,-22.32023],[-64.06522,-22.23093],[-64.04702,-22.23757],[-64.03654,-22.19469],[-64.0029,-22.10735],[-63.99022,-22.07925],[-63.97147,-22.07619],[-63.94118,-21.99823],[-63.70932,-21.99896],[-63.68839,-22.01037],[-63.68079,-22.03116],[-63.68507,-22.04019],[-63.68156,-22.05185],[-63.67659,-22.03287],[-63.67201,-22.02293],[-63.66821,-22.01634],[-63.67191,-22.01399],[-63.66566,-21.99839],[-62.79606,-21.98778],[-62.74618,-22.10033],[-62.18511,-22.50843],[-61.93761,-22.97376],[-61.45605,-23.36182],[-61.05842,-23.56621],[-60.95137,-23.75997],[-60.28746,-24.01906],[-60.03728,-24.00408],[-59.46607,-24.33428],[-59.12256,-24.59772],[-58.46645,-24.84584],[-58.332,-24.98132],[-58.2349,-24.91756],[-57.8565,-25.08005],[-57.76981,-25.15013],[-57.75374,-25.17277],[-57.71597,-25.26456],[-57.71837,-25.27146],[-57.71111,-25.27265],[-57.71008,-25.28146],[-57.70692,-25.2845],[-57.70438,-25.28159],[-57.70273,-25.28239],[-57.70175,-25.28459],[-57.69741,-25.28283],[-57.69281,-25.28588],[-57.69733,-25.29337],[-57.70246,-25.29847],[-57.69612,-25.30832],[-57.69763,-25.3199],[-57.69143,-25.32127],[-57.67993,-25.33318],[-57.64822,-25.3679],[-57.63902,-25.38287],[-57.61504,-25.38841],[-57.59954,-25.39704],[-57.57673,-25.42029],[-57.56698,-25.43147],[-57.55477,-25.43999],[-57.55285,-25.44705],[-57.55811,-25.45717],[-57.55763,-25.46897],[-57.56523,-25.48014],[-57.56806,-25.49501],[-57.57722,-25.50575],[-57.57566,-25.52264],[-57.5661,-25.54112],[-57.56809,-25.55797],[-57.58142,-25.57145],[-57.59952,-25.57438],[-57.60444,-25.59855],[-57.6122,-25.61963],[-57.6367,-25.61807],[-57.66569,-25.60273],[-57.67006,-25.65579],[-57.67513,-25.66052],[-57.68626,-25.66287],[-57.69808,-25.65933],[-57.71855,-25.64914],[-57.72537,-25.71924],[-57.77786,-25.77559],[-57.84986,-26.01142],[-58.08597,-26.14202],[-58.13896,-26.66834],[-58.28224,-26.80127],[-58.32056,-26.82169],[-58.3167,-26.86081],[-58.32384,-26.87074],[-58.56858,-27.20629],[-57.90834,-27.24265],[-56.99114,-27.41858],[-56.60886,-27.36586],[-56.40607,-27.52701],[-56.32355,-27.36897],[-56.09353,-27.25219],[-55.76168,-27.38106],[-55.65541,-27.30153],[-55.67524,-27.17004],[-55.59643,-27.06538],[-55.40826,-26.91763],[-55.20788,-26.89214],[-54.97304,-26.63717],[-54.8532,-26.59894],[-54.72264,-26.31238],[-54.73235,-25.98554],[-54.65309,-25.84138],[-54.71357,-25.66721],[-54.62995,-25.55106],[-54.44288,-25.5795],[-54.11451,-25.4396],[-53.80059,-25.65093],[-53.766,-25.94301],[-53.59024,-26.19274],[-53.67264,-26.61495],[-53.61669,-26.95395],[-53.76351,-27.18917],[-54.15393,-27.36033],[-54.26461,-27.49923],[-54.79439,-27.6397],[-55.0044,-27.90341],[-55.19076,-27.92946],[-55.41589,-28.14304],[-55.66542,-28.26547],[-55.61633,-28.32205],[-55.65957,-28.46539],[-55.83413,-28.42136],[-55.87339,-28.49468],[-56.13558,-28.7265],[-56.37343,-29.10817],[-56.569,-29.13892],[-56.76306,-29.48638],[-57.05958,-29.72263],[-57.24463,-29.86452],[-57.3045,-30.03966],[-57.61942,-30.20517],[-57.60863,-30.32424],[-57.82983,-30.53118],[-57.75241,-30.68756],[-57.75273,-30.91942],[-57.93419,-31.27388],[-57.99,-31.36053],[-57.98302,-31.3734],[-57.97736,-31.38022],[-57.97778,-31.38599],[-57.98203,-31.39213],[-58.00944,-31.41341],[-58.06637,-31.47395],[-57.92613,-31.57745],[-57.98622,-31.77449],[-58.12179,-31.89772],[-58.11905,-32.14059],[-58.04227,-32.29153],[-58.14327,-32.45845],[-58.0758,-33.00587],[-58.18964,-33.09402],[-58.2723,-33.1061],[-58.31012,-33.1048],[-58.35418,-33.1221],[-58.37567,-33.17644],[-58.44465,-33.5853],[-58.43016,-33.71813],[-58.42434,-33.86887],[-58.41858,-33.91742],[-58.33697,-34.00477],[-58.241,-34.16246],[-57.84696,-34.50017],[-55.5438,-35.77219]]],"type":"Polygon"},"properties":{"attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"country_code":"AR","icon":"https://www.ign.gob.ar/sites/default/files/favicon.png","id":"ign-topografico-tms","license_url":"https://www.ign.gob.ar/descargas/tyc1.html","max_zoom":19,"min_zoom":1,"name":"IGN topographical map (TMS)","type":"tms","url":"https://ide.ign.gob.ar/geoservicios/rest/services/Mapas_IGN/mapa_topografico/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[-55.5438,-35.77219],[-64.31743,-49.44788],[-61.52546,-55.68296],[-66.04226,-55.24192],[-66.6896,-55.17191],[-66.86233,-55.04496],[-67.23387,-54.9245],[-67.47633,-54.92785],[-67.71808,-54.91261],[-67.96138,-54.88571],[-68.18753,-54.89288],[-68.61804,-54.92151],[-68.66375,-52.66716],[-68.51023,-52.39432],[-70.01629,-52.05707],[-72.05562,-52.01749],[-72.09055,-51.93758],[-72.02273,-51.88832],[-72.49598,-51.597],[-72.3623,-51.25935],[-72.46252,-51.08654],[-72.31217,-50.90093],[-72.39293,-50.69005],[-72.49148,-50.66866],[-72.59646,-50.73916],[-72.76983,-50.68829],[-73.22154,-50.87193],[-73.22709,-50.66897],[-73.39438,-50.58008],[-73.57703,-50.15788],[-73.53993,-50.01443],[-73.61453,-49.91795],[-73.52684,-49.7716],[-73.02779,-49.70085],[-73.02788,-49.23743],[-73.16148,-49.13062],[-72.96385,-48.89084],[-72.80952,-48.90039],[-72.59462,-48.77255],[-72.63621,-48.45823],[-72.46698,-48.45706],[-72.42158,-48.31422],[-72.3428,-48.29046],[-72.37166,-48.15995],[-72.57678,-47.96054],[-72.5731,-47.72062],[-72.3839,-47.57888],[-72.38448,-47.41759],[-72.07162,-47.2755],[-72.04726,-47.14867],[-71.93566,-47.15037],[-72.00956,-47.08473],[-72.00759,-46.78833],[-71.71488,-46.64453],[-71.7985,-46.26925],[-71.97019,-46.14972],[-71.63332,-45.97063],[-71.66595,-45.89232],[-71.77408,-45.85187],[-71.8548,-45.61169],[-71.7885,-45.50505],[-71.58354,-45.45607],[-71.58236,-45.36316],[-71.40574,-45.27206],[-71.61593,-45.03146],[-72.07949,-44.93988],[-72.11766,-44.73884],[-71.47444,-44.68048],[-71.2897,-44.75036],[-71.28469,-44.60892],[-71.20209,-44.5359],[-71.40536,-44.44891],[-71.86374,-44.44274],[-71.9047,-44.10354],[-71.70007,-43.98287],[-71.78725,-43.80985],[-71.63263,-43.65888],[-71.87866,-43.56195],[-71.95542,-43.44292],[-71.91512,-43.319],[-71.80268,-43.29535],[-71.73869,-43.19234],[-71.94149,-43.11061],[-72.18001,-42.8948],[-72.18733,-42.66619],[-72.06314,-42.53751],[-72.0441,-42.41231],[-72.14365,-42.40333],[-72.20024,-42.17229],[-72.17802,-42.13207],[-72.06032,-42.10593],[-71.78041,-42.12128],[-71.83133,-41.78089],[-71.94135,-41.60926],[-71.9023,-41.06778],[-72.02097,-40.73647],[-71.91507,-40.61832],[-71.87117,-40.38959],[-71.76665,-40.35676],[-71.87961,-40.24227],[-71.8856,-40.10093],[-71.67779,-39.92156],[-71.74365,-39.86164],[-71.77001,-39.61946],[-71.68665,-39.50983],[-71.58545,-39.55159],[-71.45202,-39.31025],[-71.47673,-38.89162],[-71.25594,-38.74909],[-70.95844,-38.70272],[-70.89411,-38.57644],[-71.03346,-38.45451],[-71.08724,-38.09054],[-71.23505,-37.86541],[-71.26668,-37.68295],[-71.18031,-37.4828],[-71.27241,-37.28686],[-71.17697,-37.1077],[-71.27586,-36.9637],[-71.20495,-36.91075],[-71.2345,-36.83303],[-71.07654,-36.43571],[-70.96469,-36.43366],[-70.90086,-36.34336],[-70.77062,-36.35412],[-70.59553,-36.12118],[-70.44219,-36.14876],[-70.42788,-35.73781],[-70.50607,-35.38014],[-70.59764,-35.34459],[-70.63128,-35.23712],[-70.42629,-35.12462],[-70.32933,-34.83081],[-70.35687,-34.72532],[-70.07752,-34.38253],[-70.06901,-34.24694],[-69.87771,-34.20233],[-69.95948,-33.77235],[-69.83371,-33.34911],[-70.02502,-33.37388],[-70.14906,-33.04145],[-70.06223,-33.01233],[-70.00981,-32.90747],[-70.19517,-32.75732],[-70.19589,-32.50891],[-70.28486,-32.45564],[-70.44343,-32.05325],[-70.41077,-31.9809],[-70.29402,-31.95849],[-70.5117,-31.85844],[-70.62295,-31.59949],[-70.59941,-31.29869],[-70.5377,-31.08557],[-70.35748,-31.0002],[-70.20264,-30.32249],[-69.97775,-30.32288],[-69.847,-30.16294],[-70.01824,-30.10003],[-69.95038,-29.73744],[-70.03755,-29.35428],[-69.97565,-29.18743],[-69.85112,-29.06923],[-69.70118,-28.37779],[-69.20484,-27.90816],[-68.84844,-27.13115],[-68.76133,-27.08588],[-68.60693,-27.09636],[-68.3489,-26.92771],[-68.64137,-26.50722],[-68.60352,-26.25391],[-68.45177,-26.1377],[-68.63052,-25.43524],[-68.55582,-25.14476],[-68.44595,-25.0658],[-68.62011,-24.81717],[-68.55162,-24.58836],[-68.28078,-24.34935],[-67.32648,-24.02538],[-66.99882,-23.00044],[-67.18775,-22.81375],[-67.08088,-22.62433],[-67.03366,-22.53815],[-66.84345,-22.39746],[-66.73734,-22.22282],[-66.38248,-22.07602],[-66.28978,-21.76554],[-66.21845,-21.72575],[-65.89675,-21.88263],[-65.71368,-22.09054],[-65.61493,-22.09152],[-65.60973,-22.09505],[-65.60607,-22.09358],[-65.60256,-22.09658],[-65.60015,-22.09543],[-65.59229,-22.09511],[-65.59015,-22.09735],[-65.58691,-22.09645],[-65.58512,-22.08432],[-65.57523,-22.07312],[-65.47487,-22.08487],[-64.99026,-22.06739],[-64.59768,-22.19269],[-64.52643,-22.29504],[-64.33114,-22.68517],[-64.10381,-22.34114],[-64.10712,-22.32023],[-64.06522,-22.23093],[-64.04702,-22.23757],[-64.03654,-22.19469],[-64.0029,-22.10735],[-63.99022,-22.07925],[-63.97147,-22.07619],[-63.94118,-21.99823],[-63.70932,-21.99896],[-63.68839,-22.01037],[-63.68079,-22.03116],[-63.68507,-22.04019],[-63.68156,-22.05185],[-63.67659,-22.03287],[-63.67201,-22.02293],[-63.66821,-22.01634],[-63.67191,-22.01399],[-63.66566,-21.99839],[-62.79606,-21.98778],[-62.74618,-22.10033],[-62.18511,-22.50843],[-61.93761,-22.97376],[-61.45605,-23.36182],[-61.05842,-23.56621],[-60.95137,-23.75997],[-60.28746,-24.01906],[-60.03728,-24.00408],[-59.46607,-24.33428],[-59.12256,-24.59772],[-58.46645,-24.84584],[-58.332,-24.98132],[-58.2349,-24.91756],[-57.8565,-25.08005],[-57.76981,-25.15013],[-57.75374,-25.17277],[-57.71597,-25.26456],[-57.71837,-25.27146],[-57.71111,-25.27265],[-57.71008,-25.28146],[-57.70692,-25.2845],[-57.70438,-25.28159],[-57.70273,-25.28239],[-57.70175,-25.28459],[-57.69741,-25.28283],[-57.69281,-25.28588],[-57.69733,-25.29337],[-57.70246,-25.29847],[-57.69612,-25.30832],[-57.69763,-25.3199],[-57.69143,-25.32127],[-57.67993,-25.33318],[-57.64822,-25.3679],[-57.63902,-25.38287],[-57.61504,-25.38841],[-57.59954,-25.39704],[-57.57673,-25.42029],[-57.56698,-25.43147],[-57.55477,-25.43999],[-57.55285,-25.44705],[-57.55811,-25.45717],[-57.55763,-25.46897],[-57.56523,-25.48014],[-57.56806,-25.49501],[-57.57722,-25.50575],[-57.57566,-25.52264],[-57.5661,-25.54112],[-57.56809,-25.55797],[-57.58142,-25.57145],[-57.59952,-25.57438],[-57.60444,-25.59855],[-57.6122,-25.61963],[-57.6367,-25.61807],[-57.66569,-25.60273],[-57.67006,-25.65579],[-57.67513,-25.66052],[-57.68626,-25.66287],[-57.69808,-25.65933],[-57.71855,-25.64914],[-57.72537,-25.71924],[-57.77786,-25.77559],[-57.84986,-26.01142],[-58.08597,-26.14202],[-58.13896,-26.66834],[-58.28224,-26.80127],[-58.32056,-26.82169],[-58.3167,-26.86081],[-58.32384,-26.87074],[-58.56858,-27.20629],[-57.90834,-27.24265],[-56.99114,-27.41858],[-56.60886,-27.36586],[-56.40607,-27.52701],[-56.32355,-27.36897],[-56.09353,-27.25219],[-55.76168,-27.38106],[-55.65541,-27.30153],[-55.67524,-27.17004],[-55.59643,-27.06538],[-55.40826,-26.91763],[-55.20788,-26.89214],[-54.97304,-26.63717],[-54.8532,-26.59894],[-54.72264,-26.31238],[-54.73235,-25.98554],[-54.65309,-25.84138],[-54.71357,-25.66721],[-54.62995,-25.55106],[-54.44288,-25.5795],[-54.11451,-25.4396],[-53.80059,-25.65093],[-53.766,-25.94301],[-53.59024,-26.19274],[-53.67264,-26.61495],[-53.61669,-26.95395],[-53.76351,-27.18917],[-54.15393,-27.36033],[-54.26461,-27.49923],[-54.79439,-27.6397],[-55.0044,-27.90341],[-55.19076,-27.92946],[-55.41589,-28.14304],[-55.66542,-28.26547],[-55.61633,-28.32205],[-55.65957,-28.46539],[-55.83413,-28.42136],[-55.87339,-28.49468],[-56.13558,-28.7265],[-56.37343,-29.10817],[-56.569,-29.13892],[-56.76306,-29.48638],[-57.05958,-29.72263],[-57.24463,-29.86452],[-57.3045,-30.03966],[-57.61942,-30.20517],[-57.60863,-30.32424],[-57.82983,-30.53118],[-57.75241,-30.68756],[-57.75273,-30.91942],[-57.93419,-31.27388],[-57.99,-31.36053],[-57.98302,-31.3734],[-57.97736,-31.38022],[-57.97778,-31.38599],[-57.98203,-31.39213],[-58.00944,-31.41341],[-58.06637,-31.47395],[-57.92613,-31.57745],[-57.98622,-31.77449],[-58.12179,-31.89772],[-58.11905,-32.14059],[-58.04227,-32.29153],[-58.14327,-32.45845],[-58.0758,-33.00587],[-58.18964,-33.09402],[-58.2723,-33.1061],[-58.31012,-33.1048],[-58.35418,-33.1221],[-58.37567,-33.17644],[-58.44465,-33.5853],[-58.43016,-33.71813],[-58.42434,-33.86887],[-58.41858,-33.91742],[-58.33697,-34.00477],[-58.241,-34.16246],[-57.84696,-34.50017],[-55.5438,-35.77219]]],"type":"Polygon"},"properties":{"attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"AR","icon":"https://www.ign.gob.ar/sites/default/files/favicon.png","id":"ign-topografico-wms","license_url":"https://www.ign.gob.ar/descargas/tyc1.html","max_zoom":20,"min_zoom":1,"name":"IGN topographical map (WMS)","type":"wms_endpoint","url":"https://ide.ign.gob.ar/geoservicios/services/Mapas_IGN/mapa_topografico/MapServer/WMSServer?request=GetCapabilities&service=WMS"},"type":"Feature"},{"geometry":{"coordinates":[[[-55.5438,-35.77219],[-64.31743,-49.44788],[-61.52546,-55.68296],[-66.04226,-55.24192],[-66.6896,-55.17191],[-66.86233,-55.04496],[-67.23387,-54.9245],[-67.47633,-54.92785],[-67.71808,-54.91261],[-67.96138,-54.88571],[-68.18753,-54.89288],[-68.61804,-54.92151],[-68.66375,-52.66716],[-68.51023,-52.39432],[-70.01629,-52.05707],[-72.05562,-52.01749],[-72.09055,-51.93758],[-72.02273,-51.88832],[-72.49598,-51.597],[-72.3623,-51.25935],[-72.46252,-51.08654],[-72.31217,-50.90093],[-72.39293,-50.69005],[-72.49148,-50.66866],[-72.59646,-50.73916],[-72.76983,-50.68829],[-73.22154,-50.87193],[-73.22709,-50.66897],[-73.39438,-50.58008],[-73.57703,-50.15788],[-73.53993,-50.01443],[-73.61453,-49.91795],[-73.52684,-49.7716],[-73.02779,-49.70085],[-73.02788,-49.23743],[-73.16148,-49.13062],[-72.96385,-48.89084],[-72.80952,-48.90039],[-72.59462,-48.77255],[-72.63621,-48.45823],[-72.46698,-48.45706],[-72.42158,-48.31422],[-72.3428,-48.29046],[-72.37166,-48.15995],[-72.57678,-47.96054],[-72.5731,-47.72062],[-72.3839,-47.57888],[-72.38448,-47.41759],[-72.07162,-47.2755],[-72.04726,-47.14867],[-71.93566,-47.15037],[-72.00956,-47.08473],[-72.00759,-46.78833],[-71.71488,-46.64453],[-71.7985,-46.26925],[-71.97019,-46.14972],[-71.63332,-45.97063],[-71.66595,-45.89232],[-71.77408,-45.85187],[-71.8548,-45.61169],[-71.7885,-45.50505],[-71.58354,-45.45607],[-71.58236,-45.36316],[-71.40574,-45.27206],[-71.61593,-45.03146],[-72.07949,-44.93988],[-72.11766,-44.73884],[-71.47444,-44.68048],[-71.2897,-44.75036],[-71.28469,-44.60892],[-71.20209,-44.5359],[-71.40536,-44.44891],[-71.86374,-44.44274],[-71.9047,-44.10354],[-71.70007,-43.98287],[-71.78725,-43.80985],[-71.63263,-43.65888],[-71.87866,-43.56195],[-71.95542,-43.44292],[-71.91512,-43.319],[-71.80268,-43.29535],[-71.73869,-43.19234],[-71.94149,-43.11061],[-72.18001,-42.8948],[-72.18733,-42.66619],[-72.06314,-42.53751],[-72.0441,-42.41231],[-72.14365,-42.40333],[-72.20024,-42.17229],[-72.17802,-42.13207],[-72.06032,-42.10593],[-71.78041,-42.12128],[-71.83133,-41.78089],[-71.94135,-41.60926],[-71.9023,-41.06778],[-72.02097,-40.73647],[-71.91507,-40.61832],[-71.87117,-40.38959],[-71.76665,-40.35676],[-71.87961,-40.24227],[-71.8856,-40.10093],[-71.67779,-39.92156],[-71.74365,-39.86164],[-71.77001,-39.61946],[-71.68665,-39.50983],[-71.58545,-39.55159],[-71.45202,-39.31025],[-71.47673,-38.89162],[-71.25594,-38.74909],[-70.95844,-38.70272],[-70.89411,-38.57644],[-71.03346,-38.45451],[-71.08724,-38.09054],[-71.23505,-37.86541],[-71.26668,-37.68295],[-71.18031,-37.4828],[-71.27241,-37.28686],[-71.17697,-37.1077],[-71.27586,-36.9637],[-71.20495,-36.91075],[-71.2345,-36.83303],[-71.07654,-36.43571],[-70.96469,-36.43366],[-70.90086,-36.34336],[-70.77062,-36.35412],[-70.59553,-36.12118],[-70.44219,-36.14876],[-70.42788,-35.73781],[-70.50607,-35.38014],[-70.59764,-35.34459],[-70.63128,-35.23712],[-70.42629,-35.12462],[-70.32933,-34.83081],[-70.35687,-34.72532],[-70.07752,-34.38253],[-70.06901,-34.24694],[-69.87771,-34.20233],[-69.95948,-33.77235],[-69.83371,-33.34911],[-70.02502,-33.37388],[-70.14906,-33.04145],[-70.06223,-33.01233],[-70.00981,-32.90747],[-70.19517,-32.75732],[-70.19589,-32.50891],[-70.28486,-32.45564],[-70.44343,-32.05325],[-70.41077,-31.9809],[-70.29402,-31.95849],[-70.5117,-31.85844],[-70.62295,-31.59949],[-70.59941,-31.29869],[-70.5377,-31.08557],[-70.35748,-31.0002],[-70.20264,-30.32249],[-69.97775,-30.32288],[-69.847,-30.16294],[-70.01824,-30.10003],[-69.95038,-29.73744],[-70.03755,-29.35428],[-69.97565,-29.18743],[-69.85112,-29.06923],[-69.70118,-28.37779],[-69.20484,-27.90816],[-68.84844,-27.13115],[-68.76133,-27.08588],[-68.60693,-27.09636],[-68.3489,-26.92771],[-68.64137,-26.50722],[-68.60352,-26.25391],[-68.45177,-26.1377],[-68.63052,-25.43524],[-68.55582,-25.14476],[-68.44595,-25.0658],[-68.62011,-24.81717],[-68.55162,-24.58836],[-68.28078,-24.34935],[-67.32648,-24.02538],[-66.99882,-23.00044],[-67.18775,-22.81375],[-67.08088,-22.62433],[-67.03366,-22.53815],[-66.84345,-22.39746],[-66.73734,-22.22282],[-66.38248,-22.07602],[-66.28978,-21.76554],[-66.21845,-21.72575],[-65.89675,-21.88263],[-65.71368,-22.09054],[-65.61493,-22.09152],[-65.60973,-22.09505],[-65.60607,-22.09358],[-65.60256,-22.09658],[-65.60015,-22.09543],[-65.59229,-22.09511],[-65.59015,-22.09735],[-65.58691,-22.09645],[-65.58512,-22.08432],[-65.57523,-22.07312],[-65.47487,-22.08487],[-64.99026,-22.06739],[-64.59768,-22.19269],[-64.52643,-22.29504],[-64.33114,-22.68517],[-64.10381,-22.34114],[-64.10712,-22.32023],[-64.06522,-22.23093],[-64.04702,-22.23757],[-64.03654,-22.19469],[-64.0029,-22.10735],[-63.99022,-22.07925],[-63.97147,-22.07619],[-63.94118,-21.99823],[-63.70932,-21.99896],[-63.68839,-22.01037],[-63.68079,-22.03116],[-63.68507,-22.04019],[-63.68156,-22.05185],[-63.67659,-22.03287],[-63.67201,-22.02293],[-63.66821,-22.01634],[-63.67191,-22.01399],[-63.66566,-21.99839],[-62.79606,-21.98778],[-62.74618,-22.10033],[-62.18511,-22.50843],[-61.93761,-22.97376],[-61.45605,-23.36182],[-61.05842,-23.56621],[-60.95137,-23.75997],[-60.28746,-24.01906],[-60.03728,-24.00408],[-59.46607,-24.33428],[-59.12256,-24.59772],[-58.46645,-24.84584],[-58.332,-24.98132],[-58.2349,-24.91756],[-57.8565,-25.08005],[-57.76981,-25.15013],[-57.75374,-25.17277],[-57.71597,-25.26456],[-57.71837,-25.27146],[-57.71111,-25.27265],[-57.71008,-25.28146],[-57.70692,-25.2845],[-57.70438,-25.28159],[-57.70273,-25.28239],[-57.70175,-25.28459],[-57.69741,-25.28283],[-57.69281,-25.28588],[-57.69733,-25.29337],[-57.70246,-25.29847],[-57.69612,-25.30832],[-57.69763,-25.3199],[-57.69143,-25.32127],[-57.67993,-25.33318],[-57.64822,-25.3679],[-57.63902,-25.38287],[-57.61504,-25.38841],[-57.59954,-25.39704],[-57.57673,-25.42029],[-57.56698,-25.43147],[-57.55477,-25.43999],[-57.55285,-25.44705],[-57.55811,-25.45717],[-57.55763,-25.46897],[-57.56523,-25.48014],[-57.56806,-25.49501],[-57.57722,-25.50575],[-57.57566,-25.52264],[-57.5661,-25.54112],[-57.56809,-25.55797],[-57.58142,-25.57145],[-57.59952,-25.57438],[-57.60444,-25.59855],[-57.6122,-25.61963],[-57.6367,-25.61807],[-57.66569,-25.60273],[-57.67006,-25.65579],[-57.67513,-25.66052],[-57.68626,-25.66287],[-57.69808,-25.65933],[-57.71855,-25.64914],[-57.72537,-25.71924],[-57.77786,-25.77559],[-57.84986,-26.01142],[-58.08597,-26.14202],[-58.13896,-26.66834],[-58.28224,-26.80127],[-58.32056,-26.82169],[-58.3167,-26.86081],[-58.32384,-26.87074],[-58.56858,-27.20629],[-57.90834,-27.24265],[-56.99114,-27.41858],[-56.60886,-27.36586],[-56.40607,-27.52701],[-56.32355,-27.36897],[-56.09353,-27.25219],[-55.76168,-27.38106],[-55.65541,-27.30153],[-55.67524,-27.17004],[-55.59643,-27.06538],[-55.40826,-26.91763],[-55.20788,-26.89214],[-54.97304,-26.63717],[-54.8532,-26.59894],[-54.72264,-26.31238],[-54.73235,-25.98554],[-54.65309,-25.84138],[-54.71357,-25.66721],[-54.62995,-25.55106],[-54.44288,-25.5795],[-54.11451,-25.4396],[-53.80059,-25.65093],[-53.766,-25.94301],[-53.59024,-26.19274],[-53.67264,-26.61495],[-53.61669,-26.95395],[-53.76351,-27.18917],[-54.15393,-27.36033],[-54.26461,-27.49923],[-54.79439,-27.6397],[-55.0044,-27.90341],[-55.19076,-27.92946],[-55.41589,-28.14304],[-55.66542,-28.26547],[-55.61633,-28.32205],[-55.65957,-28.46539],[-55.83413,-28.42136],[-55.87339,-28.49468],[-56.13558,-28.7265],[-56.37343,-29.10817],[-56.569,-29.13892],[-56.76306,-29.48638],[-57.05958,-29.72263],[-57.24463,-29.86452],[-57.3045,-30.03966],[-57.61942,-30.20517],[-57.60863,-30.32424],[-57.82983,-30.53118],[-57.75241,-30.68756],[-57.75273,-30.91942],[-57.93419,-31.27388],[-57.99,-31.36053],[-57.98302,-31.3734],[-57.97736,-31.38022],[-57.97778,-31.38599],[-57.98203,-31.39213],[-58.00944,-31.41341],[-58.06637,-31.47395],[-57.92613,-31.57745],[-57.98622,-31.77449],[-58.12179,-31.89772],[-58.11905,-32.14059],[-58.04227,-32.29153],[-58.14327,-32.45845],[-58.0758,-33.00587],[-58.18964,-33.09402],[-58.2723,-33.1061],[-58.31012,-33.1048],[-58.35418,-33.1221],[-58.37567,-33.17644],[-58.44465,-33.5853],[-58.43016,-33.71813],[-58.42434,-33.86887],[-58.41858,-33.91742],[-58.33697,-34.00477],[-58.241,-34.16246],[-57.84696,-34.50017],[-55.5438,-35.77219]]],"type":"Polygon"},"properties":{"attribution":{"text":"Ministerio de Agroindustria","url":"https://www.agroindustria.gob.ar/"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"AR","id":"Agroindustria-wms","license_url":"https://datos.gob.ar/acerca/marco-legal","max_zoom":20,"min_zoom":1,"name":"Ministry of Agroindustry (WMS)","type":"wms_endpoint","url":"https://ide.agroindustria.gob.ar/geoserver/agroindustria/ows?service=wms&version=1.1.1&request=GetCapabilities"},"type":"Feature"},{"geometry":{"coordinates":[[[-55.5438,-35.77219],[-64.31743,-49.44788],[-61.52546,-55.68296],[-66.04226,-55.24192],[-66.6896,-55.17191],[-66.86233,-55.04496],[-67.23387,-54.9245],[-67.47633,-54.92785],[-67.71808,-54.91261],[-67.96138,-54.88571],[-68.18753,-54.89288],[-68.61804,-54.92151],[-68.66375,-52.66716],[-68.51023,-52.39432],[-70.01629,-52.05707],[-72.05562,-52.01749],[-72.09055,-51.93758],[-72.02273,-51.88832],[-72.49598,-51.597],[-72.3623,-51.25935],[-72.46252,-51.08654],[-72.31217,-50.90093],[-72.39293,-50.69005],[-72.49148,-50.66866],[-72.59646,-50.73916],[-72.76983,-50.68829],[-73.22154,-50.87193],[-73.22709,-50.66897],[-73.39438,-50.58008],[-73.57703,-50.15788],[-73.53993,-50.01443],[-73.61453,-49.91795],[-73.52684,-49.7716],[-73.02779,-49.70085],[-73.02788,-49.23743],[-73.16148,-49.13062],[-72.96385,-48.89084],[-72.80952,-48.90039],[-72.59462,-48.77255],[-72.63621,-48.45823],[-72.46698,-48.45706],[-72.42158,-48.31422],[-72.3428,-48.29046],[-72.37166,-48.15995],[-72.57678,-47.96054],[-72.5731,-47.72062],[-72.3839,-47.57888],[-72.38448,-47.41759],[-72.07162,-47.2755],[-72.04726,-47.14867],[-71.93566,-47.15037],[-72.00956,-47.08473],[-72.00759,-46.78833],[-71.71488,-46.64453],[-71.7985,-46.26925],[-71.97019,-46.14972],[-71.63332,-45.97063],[-71.66595,-45.89232],[-71.77408,-45.85187],[-71.8548,-45.61169],[-71.7885,-45.50505],[-71.58354,-45.45607],[-71.58236,-45.36316],[-71.40574,-45.27206],[-71.61593,-45.03146],[-72.07949,-44.93988],[-72.11766,-44.73884],[-71.47444,-44.68048],[-71.2897,-44.75036],[-71.28469,-44.60892],[-71.20209,-44.5359],[-71.40536,-44.44891],[-71.86374,-44.44274],[-71.9047,-44.10354],[-71.70007,-43.98287],[-71.78725,-43.80985],[-71.63263,-43.65888],[-71.87866,-43.56195],[-71.95542,-43.44292],[-71.91512,-43.319],[-71.80268,-43.29535],[-71.73869,-43.19234],[-71.94149,-43.11061],[-72.18001,-42.8948],[-72.18733,-42.66619],[-72.06314,-42.53751],[-72.0441,-42.41231],[-72.14365,-42.40333],[-72.20024,-42.17229],[-72.17802,-42.13207],[-72.06032,-42.10593],[-71.78041,-42.12128],[-71.83133,-41.78089],[-71.94135,-41.60926],[-71.9023,-41.06778],[-72.02097,-40.73647],[-71.91507,-40.61832],[-71.87117,-40.38959],[-71.76665,-40.35676],[-71.87961,-40.24227],[-71.8856,-40.10093],[-71.67779,-39.92156],[-71.74365,-39.86164],[-71.77001,-39.61946],[-71.68665,-39.50983],[-71.58545,-39.55159],[-71.45202,-39.31025],[-71.47673,-38.89162],[-71.25594,-38.74909],[-70.95844,-38.70272],[-70.89411,-38.57644],[-71.03346,-38.45451],[-71.08724,-38.09054],[-71.23505,-37.86541],[-71.26668,-37.68295],[-71.18031,-37.4828],[-71.27241,-37.28686],[-71.17697,-37.1077],[-71.27586,-36.9637],[-71.20495,-36.91075],[-71.2345,-36.83303],[-71.07654,-36.43571],[-70.96469,-36.43366],[-70.90086,-36.34336],[-70.77062,-36.35412],[-70.59553,-36.12118],[-70.44219,-36.14876],[-70.42788,-35.73781],[-70.50607,-35.38014],[-70.59764,-35.34459],[-70.63128,-35.23712],[-70.42629,-35.12462],[-70.32933,-34.83081],[-70.35687,-34.72532],[-70.07752,-34.38253],[-70.06901,-34.24694],[-69.87771,-34.20233],[-69.95948,-33.77235],[-69.83371,-33.34911],[-70.02502,-33.37388],[-70.14906,-33.04145],[-70.06223,-33.01233],[-70.00981,-32.90747],[-70.19517,-32.75732],[-70.19589,-32.50891],[-70.28486,-32.45564],[-70.44343,-32.05325],[-70.41077,-31.9809],[-70.29402,-31.95849],[-70.5117,-31.85844],[-70.62295,-31.59949],[-70.59941,-31.29869],[-70.5377,-31.08557],[-70.35748,-31.0002],[-70.20264,-30.32249],[-69.97775,-30.32288],[-69.847,-30.16294],[-70.01824,-30.10003],[-69.95038,-29.73744],[-70.03755,-29.35428],[-69.97565,-29.18743],[-69.85112,-29.06923],[-69.70118,-28.37779],[-69.20484,-27.90816],[-68.84844,-27.13115],[-68.76133,-27.08588],[-68.60693,-27.09636],[-68.3489,-26.92771],[-68.64137,-26.50722],[-68.60352,-26.25391],[-68.45177,-26.1377],[-68.63052,-25.43524],[-68.55582,-25.14476],[-68.44595,-25.0658],[-68.62011,-24.81717],[-68.55162,-24.58836],[-68.28078,-24.34935],[-67.32648,-24.02538],[-66.99882,-23.00044],[-67.18775,-22.81375],[-67.08088,-22.62433],[-67.03366,-22.53815],[-66.84345,-22.39746],[-66.73734,-22.22282],[-66.38248,-22.07602],[-66.28978,-21.76554],[-66.21845,-21.72575],[-65.89675,-21.88263],[-65.71368,-22.09054],[-65.61493,-22.09152],[-65.60973,-22.09505],[-65.60607,-22.09358],[-65.60256,-22.09658],[-65.60015,-22.09543],[-65.59229,-22.09511],[-65.59015,-22.09735],[-65.58691,-22.09645],[-65.58512,-22.08432],[-65.57523,-22.07312],[-65.47487,-22.08487],[-64.99026,-22.06739],[-64.59768,-22.19269],[-64.52643,-22.29504],[-64.33114,-22.68517],[-64.10381,-22.34114],[-64.10712,-22.32023],[-64.06522,-22.23093],[-64.04702,-22.23757],[-64.03654,-22.19469],[-64.0029,-22.10735],[-63.99022,-22.07925],[-63.97147,-22.07619],[-63.94118,-21.99823],[-63.70932,-21.99896],[-63.68839,-22.01037],[-63.68079,-22.03116],[-63.68507,-22.04019],[-63.68156,-22.05185],[-63.67659,-22.03287],[-63.67201,-22.02293],[-63.66821,-22.01634],[-63.67191,-22.01399],[-63.66566,-21.99839],[-62.79606,-21.98778],[-62.74618,-22.10033],[-62.18511,-22.50843],[-61.93761,-22.97376],[-61.45605,-23.36182],[-61.05842,-23.56621],[-60.95137,-23.75997],[-60.28746,-24.01906],[-60.03728,-24.00408],[-59.46607,-24.33428],[-59.12256,-24.59772],[-58.46645,-24.84584],[-58.332,-24.98132],[-58.2349,-24.91756],[-57.8565,-25.08005],[-57.76981,-25.15013],[-57.75374,-25.17277],[-57.71597,-25.26456],[-57.71837,-25.27146],[-57.71111,-25.27265],[-57.71008,-25.28146],[-57.70692,-25.2845],[-57.70438,-25.28159],[-57.70273,-25.28239],[-57.70175,-25.28459],[-57.69741,-25.28283],[-57.69281,-25.28588],[-57.69733,-25.29337],[-57.70246,-25.29847],[-57.69612,-25.30832],[-57.69763,-25.3199],[-57.69143,-25.32127],[-57.67993,-25.33318],[-57.64822,-25.3679],[-57.63902,-25.38287],[-57.61504,-25.38841],[-57.59954,-25.39704],[-57.57673,-25.42029],[-57.56698,-25.43147],[-57.55477,-25.43999],[-57.55285,-25.44705],[-57.55811,-25.45717],[-57.55763,-25.46897],[-57.56523,-25.48014],[-57.56806,-25.49501],[-57.57722,-25.50575],[-57.57566,-25.52264],[-57.5661,-25.54112],[-57.56809,-25.55797],[-57.58142,-25.57145],[-57.59952,-25.57438],[-57.60444,-25.59855],[-57.6122,-25.61963],[-57.6367,-25.61807],[-57.66569,-25.60273],[-57.67006,-25.65579],[-57.67513,-25.66052],[-57.68626,-25.66287],[-57.69808,-25.65933],[-57.71855,-25.64914],[-57.72537,-25.71924],[-57.77786,-25.77559],[-57.84986,-26.01142],[-58.08597,-26.14202],[-58.13896,-26.66834],[-58.28224,-26.80127],[-58.32056,-26.82169],[-58.3167,-26.86081],[-58.32384,-26.87074],[-58.56858,-27.20629],[-57.90834,-27.24265],[-56.99114,-27.41858],[-56.60886,-27.36586],[-56.40607,-27.52701],[-56.32355,-27.36897],[-56.09353,-27.25219],[-55.76168,-27.38106],[-55.65541,-27.30153],[-55.67524,-27.17004],[-55.59643,-27.06538],[-55.40826,-26.91763],[-55.20788,-26.89214],[-54.97304,-26.63717],[-54.8532,-26.59894],[-54.72264,-26.31238],[-54.73235,-25.98554],[-54.65309,-25.84138],[-54.71357,-25.66721],[-54.62995,-25.55106],[-54.44288,-25.5795],[-54.11451,-25.4396],[-53.80059,-25.65093],[-53.766,-25.94301],[-53.59024,-26.19274],[-53.67264,-26.61495],[-53.61669,-26.95395],[-53.76351,-27.18917],[-54.15393,-27.36033],[-54.26461,-27.49923],[-54.79439,-27.6397],[-55.0044,-27.90341],[-55.19076,-27.92946],[-55.41589,-28.14304],[-55.66542,-28.26547],[-55.61633,-28.32205],[-55.65957,-28.46539],[-55.83413,-28.42136],[-55.87339,-28.49468],[-56.13558,-28.7265],[-56.37343,-29.10817],[-56.569,-29.13892],[-56.76306,-29.48638],[-57.05958,-29.72263],[-57.24463,-29.86452],[-57.3045,-30.03966],[-57.61942,-30.20517],[-57.60863,-30.32424],[-57.82983,-30.53118],[-57.75241,-30.68756],[-57.75273,-30.91942],[-57.93419,-31.27388],[-57.99,-31.36053],[-57.98302,-31.3734],[-57.97736,-31.38022],[-57.97778,-31.38599],[-57.98203,-31.39213],[-58.00944,-31.41341],[-58.06637,-31.47395],[-57.92613,-31.57745],[-57.98622,-31.77449],[-58.12179,-31.89772],[-58.11905,-32.14059],[-58.04227,-32.29153],[-58.14327,-32.45845],[-58.0758,-33.00587],[-58.18964,-33.09402],[-58.2723,-33.1061],[-58.31012,-33.1048],[-58.35418,-33.1221],[-58.37567,-33.17644],[-58.44465,-33.5853],[-58.43016,-33.71813],[-58.42434,-33.86887],[-58.41858,-33.91742],[-58.33697,-34.00477],[-58.241,-34.16246],[-57.84696,-34.50017],[-55.5438,-35.77219]]],"type":"Polygon"},"properties":{"attribution":{"text":"Ministerio de Energía y Minería","url":"https://sig.se.gob.ar/geoportal"},"available_projections":["EPSG:4326","EPSG:3857"],"country_code":"AR","id":"Ministerio-de-Energia-y-Mineria-wms","license_url":"https://datos.gob.ar/acerca/marco-legal","max_zoom":20,"min_zoom":1,"name":"Ministry of Energy and Mining (WMS)","type":"wms_endpoint","url":"https://sig.se.gob.ar/cgi-bin/mapserv6?map=/var/www/html/visor/geofiles/map/mapase.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetCapabilities"},"type":"Feature"},{"geometry":{"coordinates":[[[-62.9988,-40.7327],[-62.9988,-37.9476],[-61.7505,-37.9474],[-61.7501,-40.7322],[-62.9988,-40.7327]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AR","description":"Tidal flats and islands at the coast (true color)","end_date":"2017-01-27","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R067_S40_20170127T140051","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Bahía Blanca (low tide)","start_date":"2017-01-27","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170127T140051&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-62.9988,-40.7327],[-62.9988,-37.9476],[-61.7505,-37.9474],[-61.7501,-40.7322],[-62.9988,-40.7327]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"AR","description":"Tidal flats and islands at the coast (true color)","end_date":"2017-04-17","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R067_S40_20170417T140051","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Bahía Blanca (high tide)","start_date":"2017-04-17","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170417T140051&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.60875,-9.83072],[-36.60784,-9.74047],[-36.61718,-9.74051],[-36.61631,-9.65075],[-36.70737,-9.64977],[-36.70832,-9.74043],[-36.69898,-9.74047],[-36.69997,-9.82968],[-36.60875,-9.83072]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"arapiraca_al","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Arapiraca AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Arapiraca&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-35.96968,-9.2928],[-35.97063,-9.20261],[-35.97727,-9.20264],[-35.98365,-9.2027],[-35.98765,-9.20266],[-35.99159,-9.20274],[-36.00498,-9.20284],[-36.01473,-9.20293],[-36.01651,-9.20296],[-36.01871,-9.20293],[-36.02487,-9.20286],[-36.02892,-9.20297],[-36.03308,-9.20289],[-36.03769,-9.20294],[-36.04581,-9.203],[-36.05161,-9.20305],[-36.05457,-9.20301],[-36.06022,-9.20304],[-36.06191,-9.20304],[-36.0618,-9.21319],[-36.06167,-9.21806],[-36.06156,-9.21915],[-36.06163,-9.22156],[-36.06144,-9.22277],[-36.06139,-9.22716],[-36.06134,-9.23227],[-36.0614,-9.23391],[-36.06145,-9.23494],[-36.06131,-9.23646],[-36.06133,-9.23773],[-36.06142,-9.23905],[-36.06145,-9.24133],[-36.06136,-9.2423],[-36.06141,-9.24358],[-36.06139,-9.2453],[-36.06126,-9.24726],[-36.06123,-9.24949],[-36.06127,-9.25107],[-36.06121,-9.25517],[-36.06119,-9.25795],[-36.06107,-9.25945],[-36.06109,-9.26183],[-36.06106,-9.26493],[-36.06086,-9.27146],[-36.06083,-9.2751],[-36.06074,-9.28274],[-36.0608,-9.29234],[-36.06074,-9.29363],[-36.05477,-9.29357],[-36.04621,-9.29349],[-36.03941,-9.29348],[-36.03501,-9.29339],[-36.02979,-9.29341],[-36.02167,-9.29332],[-36.01278,-9.29328],[-36.00468,-9.29321],[-35.99678,-9.29314],[-35.98969,-9.29312],[-35.98483,-9.29305],[-35.98305,-9.29289],[-35.98173,-9.29294],[-35.97884,-9.29282],[-35.96968,-9.2928]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:5641","EPSG:22525"],"country_code":"BR","id":"branquinha_al","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Branquinha AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?service=WMS&version=1.1.0&request=GetMap&layers=Branquinha&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.10753,-9.43884],[-36.10752,-9.43421],[-36.10767,-9.42959],[-36.10779,-9.42361],[-36.10769,-9.41927],[-36.10781,-9.41391],[-36.10803,-9.41094],[-36.1081,-9.40965],[-36.10811,-9.40747],[-36.10816,-9.40693],[-36.10819,-9.40418],[-36.10811,-9.40176],[-36.10817,-9.40002],[-36.10827,-9.39952],[-36.10827,-9.39646],[-36.10833,-9.39475],[-36.10832,-9.39273],[-36.10836,-9.3904],[-36.10841,-9.38447],[-36.10847,-9.38165],[-36.10846,-9.37767],[-36.10835,-9.37573],[-36.10845,-9.37432],[-36.10849,-9.37234],[-36.10845,-9.3697],[-36.10867,-9.36278],[-36.10863,-9.36102],[-36.10873,-9.35928],[-36.10874,-9.35736],[-36.10855,-9.35479],[-36.1087,-9.3523],[-36.10871,-9.34996],[-36.10873,-9.34893],[-36.11269,-9.34908],[-36.11726,-9.34912],[-36.12138,-9.34905],[-36.12806,-9.3491],[-36.13217,-9.34906],[-36.13694,-9.34915],[-36.14025,-9.34914],[-36.14134,-9.34932],[-36.14458,-9.34916],[-36.14684,-9.34914],[-36.14842,-9.34905],[-36.15276,-9.34907],[-36.154,-9.34922],[-36.15627,-9.34923],[-36.16026,-9.34921],[-36.16086,-9.34929],[-36.166,-9.34933],[-36.16938,-9.34942],[-36.17176,-9.34936],[-36.17628,-9.34945],[-36.18028,-9.34937],[-36.18227,-9.34946],[-36.18826,-9.34938],[-36.19039,-9.34945],[-36.19354,-9.34946],[-36.19552,-9.34941],[-36.19918,-9.34951],[-36.19926,-9.35146],[-36.19913,-9.35234],[-36.19912,-9.35353],[-36.19919,-9.35646],[-36.19922,-9.35771],[-36.1993,-9.35832],[-36.19933,-9.36112],[-36.19922,-9.36177],[-36.19918,-9.36258],[-36.19931,-9.364],[-36.19926,-9.36499],[-36.19922,-9.36563],[-36.19928,-9.3666],[-36.19917,-9.36796],[-36.19917,-9.36868],[-36.19922,-9.36911],[-36.19912,-9.37017],[-36.19887,-9.37149],[-36.19886,-9.37264],[-36.19902,-9.37322],[-36.19915,-9.37504],[-36.19911,-9.37688],[-36.19896,-9.37747],[-36.19899,-9.37915],[-36.19917,-9.38053],[-36.19919,-9.38124],[-36.19926,-9.38175],[-36.19928,-9.38302],[-36.19913,-9.38374],[-36.19908,-9.38592],[-36.19879,-9.38787],[-36.19881,-9.38935],[-36.19902,-9.39092],[-36.19904,-9.392],[-36.19899,-9.39348],[-36.1988,-9.39451],[-36.19867,-9.39705],[-36.19845,-9.39949],[-36.19864,-9.40313],[-36.19866,-9.40476],[-36.19865,-9.40836],[-36.19875,-9.40902],[-36.19857,-9.41058],[-36.19859,-9.41273],[-36.19874,-9.41446],[-36.19868,-9.41711],[-36.1986,-9.41902],[-36.19846,-9.41965],[-36.1985,-9.42235],[-36.19871,-9.42429],[-36.19858,-9.42697],[-36.1984,-9.42895],[-36.19857,-9.43412],[-36.19871,-9.4347],[-36.19865,-9.43595],[-36.19857,-9.43626],[-36.19859,-9.43667],[-36.19876,-9.43749],[-36.19889,-9.43905],[-36.19882,-9.43995],[-36.1785,-9.43977],[-36.17718,-9.43968],[-36.17265,-9.43967],[-36.17099,-9.43971],[-36.16396,-9.43963],[-36.15386,-9.4395],[-36.13983,-9.4393],[-36.12875,-9.43913],[-36.11497,-9.43892],[-36.10753,-9.43884]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"cajueiro_al","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Cajueiro AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Cajueiro&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.30643,-9.82332],[-36.30603,-9.78597],[-36.30602,-9.78263],[-36.30609,-9.78168],[-36.30604,-9.78081],[-36.3059,-9.77531],[-36.30586,-9.76496],[-36.30545,-9.73336],[-36.39634,-9.73248],[-36.39627,-9.73744],[-36.39636,-9.74336],[-36.39644,-9.75535],[-36.3966,-9.75856],[-36.39665,-9.75979],[-36.39655,-9.76244],[-36.39661,-9.76489],[-36.39658,-9.76648],[-36.39661,-9.76684],[-36.39659,-9.7696],[-36.3967,-9.77896],[-36.39675,-9.78464],[-36.39684,-9.79067],[-36.39693,-9.79681],[-36.39703,-9.80298],[-36.39719,-9.82033],[-36.39722,-9.82234],[-36.39392,-9.82233],[-36.35375,-9.82279],[-36.34822,-9.82286],[-36.31697,-9.82317],[-36.31191,-9.82324],[-36.30879,-9.82327],[-36.30643,-9.82332]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"campo_alegre_al","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Campo Alegre AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Campo%20Alegre&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.03321,-9.45741],[-36.03322,-9.45581],[-36.03336,-9.45483],[-36.0334,-9.45291],[-36.03327,-9.45141],[-36.03336,-9.44287],[-36.0335,-9.43821],[-36.03353,-9.42881],[-36.03363,-9.42027],[-36.03389,-9.41091],[-36.03389,-9.40032],[-36.03401,-9.3888],[-36.03413,-9.38528],[-36.03428,-9.38265],[-36.03417,-9.37849],[-36.03444,-9.36688],[-36.05246,-9.3671],[-36.05791,-9.36711],[-36.0716,-9.36727],[-36.08622,-9.36731],[-36.103,-9.3675],[-36.11652,-9.36755],[-36.12515,-9.36768],[-36.12522,-9.37473],[-36.12521,-9.37721],[-36.12511,-9.38038],[-36.12514,-9.38529],[-36.12505,-9.39026],[-36.12504,-9.39477],[-36.12506,-9.40172],[-36.12499,-9.40382],[-36.1248,-9.40679],[-36.12463,-9.41123],[-36.12474,-9.4136],[-36.12456,-9.4163],[-36.12459,-9.42461],[-36.12466,-9.42691],[-36.12465,-9.42925],[-36.12457,-9.4297],[-36.12464,-9.43538],[-36.12438,-9.44109],[-36.12446,-9.44387],[-36.12452,-9.44579],[-36.12438,-9.44736],[-36.12448,-9.44856],[-36.12448,-9.45095],[-36.12436,-9.45392],[-36.12434,-9.45791],[-36.11758,-9.45783],[-36.1089,-9.45778],[-36.10419,-9.4578],[-36.10116,-9.45773],[-36.0953,-9.45773],[-36.08461,-9.45767],[-36.07361,-9.45757],[-36.05726,-9.45741],[-36.04816,-9.45747],[-36.04177,-9.45739],[-36.03767,-9.45739],[-36.03321,-9.45741]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"capela_al","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Capela AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Capela&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-37.94962,-9.42957],[-37.94834,-9.33972],[-38.03903,-9.33834],[-38.04034,-9.42846],[-37.94962,-9.42957]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"delmiro_gouveia","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Delmiro Gouveia AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Delmiro%20Gouveia&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.71382,-9.43476],[-36.71477,-9.34443],[-36.80586,-9.34498],[-36.80525,-9.43542],[-36.71382,-9.43476]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"estrela_de_alagoas","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Estrela de Alagoas","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Estrela%20de%20Alagoas&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.78013,-9.92939],[-36.78087,-9.83892],[-36.87233,-9.83917],[-36.87173,-9.90542],[-36.87037,-9.92989],[-36.86156,-9.92994],[-36.85566,-9.92981],[-36.85146,-9.92973],[-36.84575,-9.92977],[-36.83213,-9.92967],[-36.81456,-9.9296],[-36.78013,-9.92939]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"girau_do_pnciano","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Girau do Ponciano","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Girau%20do%20Ponciano&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.94048,-9.57588],[-36.94106,-9.48536],[-37.03215,-9.48606],[-37.03164,-9.57639],[-36.94048,-9.57588]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"major_isidoro","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Major Isidoro AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Major%20Isidoro&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.34201,-9.49289],[-36.3422,-9.47533],[-36.34275,-9.4029],[-36.34473,-9.4029],[-36.34537,-9.40279],[-36.34702,-9.40293],[-36.3508,-9.40291],[-36.359,-9.40307],[-36.36109,-9.403],[-36.36289,-9.40307],[-36.3659,-9.40305],[-36.36713,-9.40301],[-36.37571,-9.40307],[-36.38049,-9.40308],[-36.38663,-9.4032],[-36.38852,-9.40312],[-36.39286,-9.40325],[-36.39656,-9.40322],[-36.40309,-9.40327],[-36.41973,-9.40338],[-36.43368,-9.4034],[-36.43355,-9.41685],[-36.43344,-9.42386],[-36.43338,-9.43753],[-36.43329,-9.45012],[-36.433,-9.49359],[-36.40839,-9.4935],[-36.40442,-9.49354],[-36.40008,-9.49351],[-36.39787,-9.49342],[-36.39168,-9.49328],[-36.38757,-9.49331],[-36.38536,-9.49341],[-36.37673,-9.49331],[-36.37427,-9.49319],[-36.36707,-9.49299],[-36.36502,-9.493],[-36.36043,-9.49299],[-36.35955,-9.49295],[-36.35895,-9.49304],[-36.35703,-9.49294],[-36.35665,-9.493],[-36.3526,-9.493],[-36.34767,-9.49297],[-36.34201,-9.49289]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"mar_vermelho_al","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Mar Vermelho AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Mar%20Vermelho&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.8196,-9.35174],[-36.82017,-9.26142],[-36.82465,-9.26133],[-36.83064,-9.26147],[-36.83673,-9.2615],[-36.84228,-9.26148],[-36.84562,-9.2616],[-36.85564,-9.2616],[-36.86214,-9.26159],[-36.8659,-9.26147],[-36.86724,-9.2615],[-36.86952,-9.26149],[-36.87127,-9.26157],[-36.87476,-9.26153],[-36.87816,-9.26163],[-36.88321,-9.2617],[-36.88565,-9.26167],[-36.88857,-9.26148],[-36.89217,-9.26151],[-36.89383,-9.26163],[-36.8974,-9.26175],[-36.91122,-9.26183],[-36.9111,-9.26651],[-36.91112,-9.28542],[-36.91121,-9.29066],[-36.91118,-9.29368],[-36.91099,-9.29929],[-36.91091,-9.30729],[-36.9109,-9.3123],[-36.91083,-9.31597],[-36.91084,-9.32013],[-36.91098,-9.32395],[-36.91099,-9.32587],[-36.91079,-9.32964],[-36.91079,-9.33523],[-36.91074,-9.33944],[-36.91092,-9.34311],[-36.91084,-9.34471],[-36.91066,-9.35229],[-36.89277,-9.35225],[-36.87735,-9.35212],[-36.86463,-9.35203],[-36.85761,-9.35194],[-36.84344,-9.35191],[-36.83115,-9.3518],[-36.8196,-9.35174]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"minador_do_negrao","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Minador do Negrão","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Minador%20do%20Negrao&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-37.7822,-9.54444],[-37.7826,-9.45388],[-37.81147,-9.45412],[-37.81735,-9.45451],[-37.82057,-9.45416],[-37.87394,-9.45428],[-37.87358,-9.54475],[-37.7822,-9.54444]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"olho_dagua_do_casado","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Olho d'Agua do Casado AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Olho%20Dagua%20do%20Casado&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-37.28907,-9.71916],[-37.28904,-9.71114],[-37.28911,-9.7022],[-37.28915,-9.69175],[-37.28919,-9.68886],[-37.28927,-9.68069],[-37.28926,-9.67732],[-37.28936,-9.66999],[-37.28936,-9.66599],[-37.28931,-9.66133],[-37.28941,-9.65526],[-37.28946,-9.64556],[-37.2895,-9.63489],[-37.28954,-9.62926],[-37.2964,-9.62885],[-37.31188,-9.62897],[-37.32762,-9.62914],[-37.33181,-9.62919],[-37.34338,-9.62917],[-37.35876,-9.62923],[-37.37175,-9.6293],[-37.37839,-9.62913],[-37.38051,-9.62922],[-37.38061,-9.63143],[-37.38054,-9.63785],[-37.38043,-9.63895],[-37.38053,-9.64147],[-37.38051,-9.64876],[-37.3805,-9.6543],[-37.38043,-9.656],[-37.38024,-9.66028],[-37.38022,-9.66551],[-37.38019,-9.67054],[-37.38016,-9.67896],[-37.38013,-9.68781],[-37.38009,-9.70116],[-37.38003,-9.71053],[-37.3801,-9.71743],[-37.38005,-9.71959],[-37.37932,-9.71954],[-37.37392,-9.71956],[-37.36582,-9.71945],[-37.35849,-9.71946],[-37.35334,-9.71938],[-37.34414,-9.71937],[-37.33423,-9.71923],[-37.32933,-9.71927],[-37.3218,-9.71924],[-37.31983,-9.71927],[-37.31094,-9.7192],[-37.29589,-9.71921],[-37.28907,-9.71916]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"al_palestina","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Palestina AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Palestina&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.58664,-9.46124],[-36.58665,-9.45851],[-36.58619,-9.41968],[-36.58604,-9.41452],[-36.58596,-9.40593],[-36.58585,-9.39509],[-36.58579,-9.39163],[-36.58565,-9.38983],[-36.58549,-9.38249],[-36.58529,-9.37965],[-36.58511,-9.37744],[-36.58503,-9.37059],[-36.5889,-9.37058],[-36.59064,-9.37065],[-36.59389,-9.3706],[-36.60037,-9.37073],[-36.61046,-9.37049],[-36.62288,-9.37021],[-36.63377,-9.37002],[-36.63835,-9.36986],[-36.64743,-9.36997],[-36.65141,-9.36994],[-36.65534,-9.36972],[-36.65647,-9.36974],[-36.66111,-9.37024],[-36.66276,-9.37026],[-36.66704,-9.36973],[-36.67052,-9.36966],[-36.67325,-9.36966],[-36.67602,-9.36987],[-36.67593,-9.3726],[-36.67597,-9.37679],[-36.67639,-9.38138],[-36.67654,-9.38464],[-36.67663,-9.39265],[-36.67675,-9.39829],[-36.67689,-9.40875],[-36.67707,-9.41887],[-36.67717,-9.43179],[-36.67724,-9.43395],[-36.67718,-9.43753],[-36.67728,-9.44311],[-36.6773,-9.44933],[-36.67741,-9.45528],[-36.6774,-9.45938],[-36.67735,-9.46017],[-36.67568,-9.46021],[-36.66625,-9.4603],[-36.66224,-9.4603],[-36.65736,-9.46042],[-36.6504,-9.46047],[-36.63543,-9.46065],[-36.61979,-9.46083],[-36.61433,-9.46083],[-36.61029,-9.46097],[-36.60647,-9.46097],[-36.60186,-9.46099],[-36.59426,-9.46112],[-36.58664,-9.46124]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"palmeira_dos_indios","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Palmeira dos Indios AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Palmeira%20dos%20Indios&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-37.39003,-9.78589],[-37.39019,-9.7762],[-37.38993,-9.76575],[-37.38991,-9.75256],[-37.39015,-9.74102],[-37.39003,-9.73201],[-37.39012,-9.72254],[-37.39015,-9.71289],[-37.39019,-9.70341],[-37.3902,-9.69548],[-37.40377,-9.6955],[-37.41728,-9.6956],[-37.43224,-9.69569],[-37.44319,-9.69573],[-37.44723,-9.69582],[-37.45682,-9.69585],[-37.47062,-9.69591],[-37.47373,-9.69591],[-37.47586,-9.69604],[-37.48128,-9.69605],[-37.48131,-9.6989],[-37.48122,-9.70087],[-37.48121,-9.70239],[-37.48135,-9.70545],[-37.48138,-9.71046],[-37.48134,-9.71617],[-37.4812,-9.71875],[-37.48125,-9.72035],[-37.48136,-9.72134],[-37.48134,-9.7241],[-37.4813,-9.72506],[-37.48103,-9.72732],[-37.48102,-9.73088],[-37.48127,-9.73462],[-37.48131,-9.73638],[-37.48131,-9.73893],[-37.48131,-9.74388],[-37.4813,-9.74989],[-37.48122,-9.75315],[-37.48102,-9.75855],[-37.48084,-9.7642],[-37.48085,-9.76526],[-37.48094,-9.76675],[-37.48093,-9.76881],[-37.48084,-9.7721],[-37.48087,-9.77486],[-37.48076,-9.77993],[-37.48081,-9.7863],[-37.46382,-9.78623],[-37.45353,-9.7862],[-37.43979,-9.78611],[-37.42998,-9.78607],[-37.4208,-9.786],[-37.40853,-9.78596],[-37.39545,-9.78593],[-37.39003,-9.78589]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"pao_de_acucar","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Pão de Açucar AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Pao%20de%20Acucar&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-37.71918,-9.65236],[-37.71918,-9.63874],[-37.71914,-9.6321],[-37.71924,-9.62114],[-37.71929,-9.61023],[-37.71934,-9.59988],[-37.7194,-9.58891],[-37.71945,-9.57802],[-37.71944,-9.57173],[-37.71952,-9.56684],[-37.71956,-9.56225],[-37.71998,-9.56218],[-37.72258,-9.56195],[-37.72818,-9.56203],[-37.73254,-9.562],[-37.74107,-9.56206],[-37.74845,-9.56202],[-37.75926,-9.56216],[-37.76972,-9.56227],[-37.78036,-9.56244],[-37.78537,-9.56236],[-37.78907,-9.56233],[-37.79562,-9.56245],[-37.79771,-9.56237],[-37.81006,-9.56243],[-37.81061,-9.56241],[-37.81053,-9.56531],[-37.81049,-9.57629],[-37.81046,-9.58742],[-37.81038,-9.59757],[-37.81031,-9.61798],[-37.81018,-9.65197],[-37.81018,-9.6523],[-37.81024,-9.65259],[-37.80664,-9.65245],[-37.80206,-9.65253],[-37.79597,-9.65237],[-37.79179,-9.65252],[-37.78815,-9.65246],[-37.78723,-9.65242],[-37.78035,-9.65241],[-37.77865,-9.65223],[-37.77625,-9.6523],[-37.77475,-9.65219],[-37.77234,-9.65223],[-37.7696,-9.65245],[-37.76623,-9.65251],[-37.76345,-9.65246],[-37.7604,-9.6525],[-37.75102,-9.65237],[-37.75012,-9.65249],[-37.74155,-9.65248],[-37.7403,-9.65239],[-37.73785,-9.65246],[-37.73443,-9.65238],[-37.73106,-9.65243],[-37.72651,-9.65237],[-37.72195,-9.65225],[-37.71992,-9.65228],[-37.71918,-9.65236]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"al_piranhas","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Piranhas AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Piranhas&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-37.23942,-9.35157],[-37.23947,-9.34387],[-37.23942,-9.33792],[-37.23954,-9.33022],[-37.23973,-9.32791],[-37.23974,-9.3228],[-37.23964,-9.32085],[-37.23971,-9.31864],[-37.2398,-9.31706],[-37.23982,-9.31561],[-37.24053,-9.30933],[-37.24051,-9.30004],[-37.24008,-9.29687],[-37.23998,-9.29546],[-37.23992,-9.29319],[-37.23989,-9.28978],[-37.23995,-9.28818],[-37.24008,-9.28641],[-37.24036,-9.28212],[-37.24038,-9.27897],[-37.24051,-9.27557],[-37.24004,-9.26979],[-37.24018,-9.26721],[-37.24018,-9.26612],[-37.23995,-9.26455],[-37.23983,-9.26151],[-37.24333,-9.26136],[-37.24936,-9.26146],[-37.26445,-9.26161],[-37.28016,-9.26172],[-37.28294,-9.26171],[-37.29581,-9.26178],[-37.30685,-9.26178],[-37.31419,-9.26189],[-37.32437,-9.26192],[-37.33078,-9.26175],[-37.33057,-9.27275],[-37.33048,-9.28007],[-37.33054,-9.28117],[-37.33069,-9.28427],[-37.3307,-9.28535],[-37.33064,-9.28617],[-37.33071,-9.28717],[-37.33064,-9.28769],[-37.33062,-9.29027],[-37.33043,-9.29308],[-37.33038,-9.29655],[-37.33034,-9.30591],[-37.3304,-9.31203],[-37.33038,-9.32194],[-37.33041,-9.3342],[-37.33035,-9.34185],[-37.3303,-9.34783],[-37.33035,-9.35202],[-37.31509,-9.35194],[-37.30011,-9.3519],[-37.29531,-9.35183],[-37.28899,-9.35171],[-37.28497,-9.35182],[-37.27851,-9.35173],[-37.27431,-9.35181],[-37.27115,-9.3517],[-37.26351,-9.35168],[-37.26046,-9.35164],[-37.25402,-9.35177],[-37.24705,-9.35163],[-37.23942,-9.35157]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"poco_das_trincheiras","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Poço das Trincheiras AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Poco%20das%20Trincheiras&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-37.20224,-9.41356],[-37.20188,-9.37768],[-37.20208,-9.37455],[-37.20192,-9.36733],[-37.20169,-9.36045],[-37.20172,-9.35501],[-37.20195,-9.35101],[-37.20191,-9.34773],[-37.20175,-9.33835],[-37.2017,-9.33505],[-37.20171,-9.33301],[-37.20142,-9.32833],[-37.20121,-9.32469],[-37.20117,-9.32351],[-37.21425,-9.32346],[-37.21537,-9.3234],[-37.22078,-9.32328],[-37.23727,-9.32313],[-37.25181,-9.32293],[-37.2656,-9.32276],[-37.2803,-9.32259],[-37.29191,-9.32245],[-37.29205,-9.33522],[-37.29304,-9.4122],[-37.28357,-9.41235],[-37.27789,-9.4125],[-37.2716,-9.41249],[-37.26506,-9.41262],[-37.26165,-9.41274],[-37.25499,-9.41276],[-37.24991,-9.41296],[-37.24616,-9.41297],[-37.24108,-9.41303],[-37.23461,-9.41321],[-37.2284,-9.41325],[-37.22165,-9.41335],[-37.21686,-9.41346],[-37.21292,-9.41343],[-37.20224,-9.41356]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"santana_do_ipanema","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Santana do Ipanema AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Santana%20do%20Ipanema&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.1415,-9.83171],[-36.05047,-9.83246],[-36.04959,-9.74246],[-36.14059,-9.74166],[-36.1415,-9.83171]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"Sao_miguel_dos_campos","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"São Miguel dos Campos AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Sao_miguel_dos_campos&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.31164,-9.95468],[-36.31158,-9.94382],[-36.31145,-9.93197],[-36.31127,-9.92436],[-36.31123,-9.91848],[-36.31119,-9.91637],[-36.31141,-9.91324],[-36.3111,-9.90922],[-36.31108,-9.90318],[-36.31099,-9.89379],[-36.31089,-9.8842],[-36.31078,-9.87412],[-36.31068,-9.86457],[-36.3318,-9.86432],[-36.34001,-9.86437],[-36.3478,-9.86425],[-36.35917,-9.8642],[-36.37047,-9.86404],[-36.38448,-9.86386],[-36.40164,-9.86364],[-36.40221,-9.9225],[-36.40249,-9.93177],[-36.40259,-9.94183],[-36.40248,-9.94804],[-36.40266,-9.9537],[-36.3855,-9.95384],[-36.38283,-9.95392],[-36.37096,-9.95399],[-36.36232,-9.95423],[-36.34747,-9.95422],[-36.33287,-9.95446],[-36.3291,-9.95456],[-36.32089,-9.95459],[-36.31164,-9.95468]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"teotonio_vilela","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Teotonio Vilela AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Teotonio%20Vilela&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-35.97725,-9.20752],[-35.9772,-9.19398],[-35.97694,-9.19053],[-35.97678,-9.18607],[-35.97702,-9.18208],[-35.97704,-9.17968],[-35.97682,-9.17734],[-35.97664,-9.17517],[-35.97701,-9.17518],[-35.97696,-9.1707],[-35.97674,-9.17066],[-35.97661,-9.16645],[-35.97618,-9.16222],[-35.9761,-9.16026],[-35.97661,-9.16026],[-35.97672,-9.14608],[-35.97654,-9.14122],[-35.97666,-9.1332],[-35.97653,-9.12184],[-35.97648,-9.11748],[-35.98618,-9.11755],[-35.98947,-9.11733],[-36.00561,-9.11733],[-36.01859,-9.11736],[-36.04601,-9.11722],[-36.06734,-9.11698],[-36.06756,-9.16134],[-36.06771,-9.16405],[-36.06745,-9.16408],[-36.06756,-9.16657],[-36.06777,-9.16654],[-36.06798,-9.20701],[-36.0498,-9.20711],[-36.04671,-9.20698],[-36.02941,-9.20709],[-36.01355,-9.20718],[-35.99318,-9.20733],[-35.97725,-9.20752]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"uniao_dos_palmares","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"União dos Palmares AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Uniao%20dos%20Palmares&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-36.198,-9.42067],[-36.19777,-9.41789],[-36.1978,-9.41528],[-36.19801,-9.41074],[-36.19789,-9.40857],[-36.19793,-9.40637],[-36.19797,-9.40561],[-36.19793,-9.40405],[-36.19799,-9.40312],[-36.19827,-9.40028],[-36.19829,-9.39496],[-36.19789,-9.39169],[-36.19844,-9.38932],[-36.19837,-9.3862],[-36.19794,-9.38167],[-36.19801,-9.37972],[-36.19834,-9.37867],[-36.19832,-9.37698],[-36.19817,-9.37586],[-36.19852,-9.37139],[-36.19822,-9.36239],[-36.19862,-9.35319],[-36.19849,-9.35097],[-36.19857,-9.34852],[-36.1988,-9.34668],[-36.1986,-9.34349],[-36.19877,-9.34084],[-36.19895,-9.33301],[-36.19877,-9.33039],[-36.28958,-9.33114],[-36.28938,-9.33319],[-36.2895,-9.33538],[-36.28925,-9.34124],[-36.28945,-9.34291],[-36.28928,-9.34521],[-36.28897,-9.37311],[-36.28915,-9.37481],[-36.28892,-9.37708],[-36.2889,-9.38541],[-36.28872,-9.38633],[-36.28872,-9.39343],[-36.28887,-9.39558],[-36.28877,-9.40129],[-36.28862,-9.40652],[-36.28872,-9.40715],[-36.28877,-9.42133],[-36.198,-9.42067]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"vicosa_al","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Viçosa AL","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Vicosa&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-35.52384,-9.48089],[-35.5236,-9.44515],[-35.51572,-9.44518],[-35.51584,-9.44229],[-35.50542,-9.44238],[-35.50518,-9.43064],[-35.49334,-9.43073],[-35.49304,-9.3982],[-35.4893,-9.39817],[-35.48921,-9.38628],[-35.4854,-9.38634],[-35.48525,-9.37809],[-35.48127,-9.37812],[-35.48114,-9.36987],[-35.47698,-9.36996],[-35.47686,-9.36385],[-35.47459,-9.36388],[-35.47447,-9.36153],[-35.47212,-9.36141],[-35.47206,-9.35917],[-35.46976,-9.3592],[-35.46967,-9.35682],[-35.46653,-9.35676],[-35.46641,-9.35289],[-35.46387,-9.35277],[-35.46387,-9.35119],[-35.44135,-9.35131],[-35.44125,-9.34541],[-35.43177,-9.34538],[-35.43171,-9.33602],[-35.39463,-9.33632],[-35.39442,-9.30125],[-35.38165,-9.30143],[-35.38147,-9.28638],[-35.37799,-9.28626],[-35.37796,-9.2811],[-35.36942,-9.28122],[-35.36921,-9.27261],[-35.35966,-9.27276],[-35.35969,-9.26465],[-35.35051,-9.26474],[-35.35036,-9.25562],[-35.34115,-9.25565],[-35.34118,-9.24501],[-35.31775,-9.24519],[-35.3176,-9.22567],[-35.30292,-9.22579],[-35.30283,-9.2113],[-35.30794,-9.21136],[-35.30785,-9.19979],[-35.29103,-9.19988],[-35.29091,-9.1966],[-35.29018,-9.19669],[-35.28997,-9.16516],[-35.27759,-9.16522],[-35.2775,-9.16417],[-35.27541,-9.1642],[-35.27535,-9.16152],[-35.27375,-9.16149],[-35.27366,-9.15839],[-35.27182,-9.15842],[-35.27185,-9.15729],[-35.27149,-9.15729],[-35.27143,-9.15469],[-35.26965,-9.15463],[-35.26959,-9.15362],[-35.26919,-9.15362],[-35.26907,-9.13159],[-35.26403,-9.13165],[-35.264,-9.12318],[-35.26056,-9.12321],[-35.26053,-9.11781],[-35.256,-9.11784],[-35.25573,-9.08946],[-35.25114,-9.08955],[-35.25108,-9.08651],[-35.25026,-9.08648],[-35.25029,-9.08475],[-35.24449,-9.08478],[-35.24449,-9.07989],[-35.24093,-9.07997],[-35.24081,-9.07312],[-35.23734,-9.07312],[-35.23719,-9.06322],[-35.23655,-9.06322],[-35.23652,-9.04655],[-35.23323,-9.04652],[-35.23332,-9.04345],[-35.2306,-9.04348],[-35.2306,-9.04014],[-35.22897,-9.04008],[-35.229,-9.03835],[-35.22505,-9.03826],[-35.22502,-9.03167],[-35.2223,-9.03161],[-35.22233,-9.02012],[-35.21834,-9.02009],[-35.21831,-9.01341],[-35.21671,-9.01341],[-35.21668,-9.00998],[-35.21176,-9.00998],[-35.21173,-9.00647],[-35.20971,-9.00653],[-35.20974,-9.00438],[-35.20765,-9.00432],[-35.20768,-9.00226],[-35.20566,-9.00226],[-35.20563,-8.99987],[-35.20391,-8.99987],[-35.20394,-8.99785],[-35.20213,-8.99791],[-35.20213,-8.99579],[-35.19844,-8.99582],[-35.19844,-8.99361],[-35.19434,-8.99361],[-35.19428,-8.99122],[-35.19065,-8.99131],[-35.19062,-8.98833],[-35.18766,-8.98842],[-35.18763,-8.98544],[-35.18473,-8.98541],[-35.18467,-8.98255],[-35.18238,-8.98252],[-35.18235,-8.98052],[-35.17951,-8.98061],[-35.17948,-8.97742],[-35.17809,-8.97745],[-35.17803,-8.97306],[-35.17558,-8.97303],[-35.17549,-8.96912],[-35.17293,-8.96909],[-35.17284,-8.96292],[-35.17063,-8.96289],[-35.17048,-8.95579],[-35.16852,-8.95564],[-35.16852,-8.94806],[-35.16794,-8.948],[-35.16791,-8.93995],[-35.16245,-8.93995],[-35.16242,-8.92978],[-35.1587,-8.92981],[-35.15873,-8.92662],[-35.15547,-8.92668],[-35.1555,-8.92378],[-35.15348,-8.92381],[-35.15339,-8.92065],[-35.15131,-8.92062],[-35.15122,-8.91194],[-35.15263,-8.91194],[-35.15263,-8.90821],[-35.15439,-8.90824],[-35.1543,-8.90215],[-35.15593,-8.90212],[-35.15593,-8.90051],[-35.15768,-8.90048],[-35.15774,-8.89905],[-35.15958,-8.89908],[-35.15955,-8.89747],[-35.16139,-8.8975],[-35.16133,-8.89625],[-35.16363,-8.89625],[-35.1636,-8.89526],[-35.16553,-8.89526],[-35.1655,-8.89315],[-35.16794,-8.89315],[-35.16791,-8.89147],[-35.17024,-8.89153],[-35.17027,-8.8904],[-35.17302,-8.89043],[-35.17302,-8.88876],[-35.17791,-8.88876],[-35.17794,-8.88795],[-35.17894,-8.88792],[-35.17894,-8.88891],[-35.17966,-8.88894],[-35.17978,-8.88858],[-35.18099,-8.88861],[-35.18099,-8.88816],[-35.18519,-8.88816],[-35.18519,-8.88897],[-35.18591,-8.889],[-35.18591,-8.88971],[-35.18932,-8.88971],[-35.18947,-8.8893],[-35.19014,-8.88927],[-35.19017,-8.88831],[-35.19071,-8.88831],[-35.19077,-8.88789],[-35.19153,-8.88792],[-35.19156,-8.88619],[-35.19754,-8.88607],[-35.19757,-8.8873],[-35.19968,-8.8873],[-35.19974,-8.88777],[-35.2008,-8.88777],[-35.2008,-8.88822],[-35.2033,-8.88822],[-35.20337,-8.8887],[-35.20563,-8.88861],[-35.20557,-8.88983],[-35.20741,-8.8898],[-35.20744,-8.89022],[-35.21125,-8.89025],[-35.21128,-8.88769],[-35.21245,-8.88777],[-35.21248,-8.88861],[-35.21623,-8.88858],[-35.21623,-8.88748],[-35.21871,-8.88745],[-35.21871,-8.88897],[-35.22136,-8.88897],[-35.22263,-8.88792],[-35.22402,-8.88748],[-35.22453,-8.88763],[-35.22644,-8.88718],[-35.22707,-8.88598],[-35.23311,-8.88446],[-35.23933,-8.88339],[-35.24129,-8.88416],[-35.25011,-8.88515],[-35.25624,-8.88506],[-35.26168,-8.88294],[-35.26161,-8.88094],[-35.26406,-8.88109],[-35.26877,-8.8793],[-35.27421,-8.87748],[-35.2781,-8.87518],[-35.28499,-8.87507],[-35.28502,-8.87581],[-35.2881,-8.87578],[-35.29405,-8.87545],[-35.30782,-8.87208],[-35.31757,-8.86961],[-35.32784,-8.86716],[-35.33206,-8.86614],[-35.34103,-8.86376],[-35.3471,-8.86244],[-35.3522,-8.86113],[-35.35257,-8.86391],[-35.34903,-8.86611],[-35.34496,-8.87205],[-35.34327,-8.87489],[-35.34318,-8.87569],[-35.34381,-8.87668],[-35.34481,-8.8768],[-35.34888,-8.87721],[-35.35042,-8.87781],[-35.35254,-8.87891],[-35.35399,-8.88011],[-35.35577,-8.88252],[-35.35755,-8.88396],[-35.36036,-8.88512],[-35.36114,-8.88509],[-35.3612,-8.88587],[-35.36175,-8.8859],[-35.36178,-8.88777],[-35.36253,-8.88783],[-35.36247,-8.891],[-35.36311,-8.89112],[-35.36311,-8.89482],[-35.3644,-8.89488],[-35.36507,-8.8967],[-35.36637,-8.90022],[-35.36754,-8.90427],[-35.36794,-8.90782],[-35.36863,-8.90917],[-35.37207,-8.91155],[-35.3741,-8.91349],[-35.37277,-8.916],[-35.37262,-8.91817],[-35.37084,-8.92229],[-35.37062,-8.92486],[-35.37235,-8.93038],[-35.37153,-8.93193],[-35.37153,-8.93363],[-35.37171,-8.93387],[-35.37171,-8.94362],[-35.36818,-8.94377],[-35.36815,-8.94505],[-35.36927,-8.94511],[-35.36921,-8.94863],[-35.37078,-8.94872],[-35.37081,-8.95182],[-35.37219,-8.95176],[-35.37222,-8.95528],[-35.37319,-8.95531],[-35.37313,-8.95737],[-35.3744,-8.95737],[-35.37446,-8.96012],[-35.37567,-8.96018],[-35.3757,-8.96205],[-35.37688,-8.96208],[-35.37694,-8.96444],[-35.37781,-8.96444],[-35.37775,-8.96617],[-35.38074,-8.96617],[-35.38074,-8.96331],[-35.38288,-8.96328],[-35.38291,-8.95982],[-35.38542,-8.95985],[-35.38542,-8.95722],[-35.38723,-8.95722],[-35.3872,-8.95406],[-35.38947,-8.95409],[-35.38947,-8.95084],[-35.39158,-8.95087],[-35.39158,-8.94792],[-35.39587,-8.94792],[-35.39581,-8.94651],[-35.3972,-8.94654],[-35.39711,-8.94472],[-35.39838,-8.94469],[-35.39838,-8.93915],[-35.40107,-8.93915],[-35.40106,-8.93895],[-35.40167,-8.93894],[-35.40173,-8.93688],[-35.40236,-8.93688],[-35.40236,-8.93628],[-35.40324,-8.9364],[-35.4033,-8.93583],[-35.40426,-8.9358],[-35.4042,-8.93363],[-35.40574,-8.9336],[-35.40577,-8.93124],[-35.4081,-8.93133],[-35.40804,-8.92927],[-35.40937,-8.9293],[-35.40928,-8.92739],[-35.41085,-8.92742],[-35.41085,-8.92542],[-35.41239,-8.92545],[-35.41236,-8.9239],[-35.41335,-8.92387],[-35.41329,-8.92193],[-35.41523,-8.92196],[-35.41523,-8.91999],[-35.41655,-8.92002],[-35.41655,-8.91755],[-35.4196,-8.91755],[-35.41966,-8.91964],[-35.42184,-8.91964],[-35.42187,-8.92265],[-35.42389,-8.92268],[-35.42392,-8.92513],[-35.42537,-8.92513],[-35.42537,-8.92766],[-35.42724,-8.92766],[-35.42727,-8.92987],[-35.42815,-8.92984],[-35.42818,-8.9316],[-35.42987,-8.93154],[-35.4299,-8.93407],[-35.43141,-8.93407],[-35.43141,-8.9356],[-35.43226,-8.93557],[-35.43229,-8.93586],[-35.4334,-8.93583],[-35.4334,-8.94001],[-35.43434,-8.94004],[-35.43434,-8.94097],[-35.43531,-8.94097],[-35.43534,-8.94261],[-35.43567,-8.94264],[-35.4357,-8.94329],[-35.43627,-8.94332],[-35.43624,-8.94422],[-35.4373,-8.94422],[-35.43727,-8.9452],[-35.43823,-8.9452],[-35.43827,-8.94684],[-35.43902,-8.94687],[-35.43902,-8.94798],[-35.44026,-8.94798],[-35.44032,-8.94953],[-35.44159,-8.94956],[-35.44165,-8.95152],[-35.44273,-8.95152],[-35.44273,-8.95334],[-35.44436,-8.95334],[-35.44436,-8.95498],[-35.44569,-8.95501],[-35.44563,-8.95674],[-35.4472,-8.9568],[-35.44717,-8.95865],[-35.44895,-8.95871],[-35.44892,-8.96],[-35.45101,-8.95994],[-35.45098,-8.96101],[-35.45469,-8.96095],[-35.45466,-8.96235],[-35.46049,-8.96235],[-35.46055,-8.96557],[-35.46653,-8.96548],[-35.46659,-8.96885],[-35.46771,-8.96883],[-35.46774,-8.97053],[-35.4739,-8.97053],[-35.47399,-8.9753],[-35.47791,-8.97521],[-35.47797,-8.97816],[-35.4841,-8.97813],[-35.48416,-8.98201],[-35.49084,-8.98195],[-35.49084,-8.98562],[-35.49721,-8.98562],[-35.49721,-8.99069],[-35.50225,-8.99057],[-35.50234,-8.99567],[-35.50648,-8.99567],[-35.50651,-8.99856],[-35.51204,-8.9985],[-35.51207,-9.00163],[-35.51663,-9.00166],[-35.51666,-9.00617],[-35.52119,-9.00614],[-35.52122,-9.00739],[-35.53127,-9.00733],[-35.53127,-9.01064],[-35.54818,-9.01049],[-35.54818,-9.01359],[-35.56968,-9.01344],[-35.56974,-9.01738],[-35.58575,-9.01732],[-35.58578,-9.01995],[-35.60957,-9.01983],[-35.60954,-9.02302],[-35.62911,-9.02287],[-35.62905,-9.02508],[-35.65221,-9.0249],[-35.65224,-9.02758],[-35.67552,-9.0274],[-35.67555,-9.03056],[-35.68295,-9.03056],[-35.68298,-9.03435],[-35.69128,-9.03432],[-35.69128,-9.03766],[-35.6995,-9.0376],[-35.6995,-9.04034],[-35.70668,-9.04031],[-35.70671,-9.04518],[-35.71115,-9.04518],[-35.71133,-9.06691],[-35.70871,-9.06691],[-35.70877,-9.07869],[-35.70656,-9.07872],[-35.70656,-9.08653],[-35.7043,-9.08653],[-35.70433,-9.09104],[-35.69992,-9.09107],[-35.69989,-9.0956],[-35.69536,-9.09557],[-35.69542,-9.10001],[-35.69092,-9.10013],[-35.69101,-9.10207],[-35.63367,-9.10246],[-35.6337,-9.10541],[-35.62585,-9.10553],[-35.62591,-9.10964],[-35.62231,-9.10964],[-35.62234,-9.11203],[-35.6199,-9.112],[-35.6199,-9.11501],[-35.61473,-9.11507],[-35.61473,-9.11707],[-35.61177,-9.11701],[-35.61181,-9.1182],[-35.6096,-9.11826],[-35.60963,-9.12571],[-35.59976,-9.12583],[-35.59979,-9.12923],[-35.59634,-9.12926],[-35.5964,-9.13502],[-35.59197,-9.13507],[-35.59209,-9.149],[-35.59018,-9.14897],[-35.59015,-9.15108],[-35.6016,-9.15105],[-35.60154,-9.14912],[-35.60552,-9.14912],[-35.60549,-9.14557],[-35.61184,-9.14554],[-35.61184,-9.14235],[-35.6176,-9.14238],[-35.61757,-9.13853],[-35.624,-9.13853],[-35.62397,-9.13466],[-35.63177,-9.13466],[-35.63164,-9.13063],[-35.63922,-9.1306],[-35.63919,-9.12878],[-35.66386,-9.12869],[-35.6638,-9.1261],[-35.71278,-9.12577],[-35.71275,-9.12407],[-35.72426,-9.12401],[-35.71964,-9.15323],[-35.72112,-9.1532],[-35.72124,-9.17258],[-35.72066,-9.17255],[-35.72082,-9.18558],[-35.71212,-9.18566],[-35.7133,-9.34416],[-35.69041,-9.34433],[-35.69065,-9.37189],[-35.68899,-9.37189],[-35.68902,-9.37598],[-35.68757,-9.37598],[-35.68766,-9.38232],[-35.68497,-9.38235],[-35.68503,-9.39093],[-35.68168,-9.39099],[-35.68177,-9.39936],[-35.67715,-9.39933],[-35.67724,-9.4089],[-35.67292,-9.40893],[-35.67301,-9.41754],[-35.66972,-9.4176],[-35.66978,-9.42498],[-35.66722,-9.42498],[-35.66728,-9.4327],[-35.66075,-9.43288],[-35.66075,-9.43705],[-35.6513,-9.43708],[-35.65142,-9.44211],[-35.64514,-9.44217],[-35.64523,-9.44652],[-35.63645,-9.44661],[-35.63645,-9.44992],[-35.62711,-9.45],[-35.62727,-9.46505],[-35.62086,-9.46511],[-35.62092,-9.4722],[-35.60939,-9.47222],[-35.60939,-9.47529],[-35.59674,-9.47535],[-35.59674,-9.47351],[-35.57844,-9.47371],[-35.57847,-9.47595],[-35.57267,-9.47604],[-35.5727,-9.48042],[-35.56823,-9.48048],[-35.56826,-9.48881],[-35.54169,-9.48893],[-35.54163,-9.48071],[-35.52384,-9.48089]]],"type":"Polygon"},"properties":{"attribution":{"text":"Secretaria de Estado do Planejamento, Gestão e Patrimônio","url":"http://www.seplag.al.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:22525"],"country_code":"BR","id":"alagoas_litoral","license_url":"http://dados.al.gov.br/dataset/imagens-de-alta-resolucao","name":"Alagoas Litoral 2006","type":"wms","url":"http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?LAYERS=Ortofotos%202006&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]]],"type":"Polygon"},"properties":{"attribution":{"text":"BDGEx"},"available_projections":["EPSG:3857"],"country_code":"BR","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/Exercito.png","id":"BDGEx_ctm_multi","license_url":"https://wiki.openstreetmap.org/wiki/BDGEx_Tile_Layer","min_zoom":1,"name":"Cartas Topográficas do Exército Brasileiro","type":"wms","url":"https://bdgex.eb.mil.br/mapcache?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ctmmultiescalas_mercator&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-40.94577,-21.31404],[-40.6231,-20.86278],[-40.38882,-20.65177],[-40.22209,-20.29831],[-39.80383,-19.66412],[-39.69603,-19.42573],[-39.67304,-19.30437],[-39.70538,-18.61384],[-39.65292,-18.33096],[-40.22281,-17.97587],[-40.34282,-17.9198],[-40.45278,-17.91502],[-40.46499,-17.92049],[-40.48368,-17.90408],[-40.50164,-17.90681],[-40.51602,-17.88903],[-40.53326,-17.88903],[-40.54548,-17.90134],[-40.58932,-17.91502],[-40.58932,-17.93211],[-40.61519,-17.93416],[-40.62956,-17.9868],[-40.64609,-17.9868],[-40.65903,-18.00731],[-40.68777,-18.00594],[-40.70574,-18.01756],[-40.71365,-18.00184],[-40.72155,-17.99774],[-40.75102,-18.00252],[-40.76754,-17.99842],[-40.76754,-17.98133],[-40.80923,-17.94852],[-40.82432,-17.96014],[-40.83151,-17.94989],[-40.86528,-17.9827],[-40.88397,-17.96766],[-40.90912,-17.98475],[-40.77761,-18.10775],[-40.77832,-18.15146],[-40.79054,-18.15351],[-40.8351,-18.14531],[-40.89547,-18.10365],[-40.93283,-18.12755],[-40.95583,-18.1255],[-40.95296,-18.14463],[-40.96014,-18.15009],[-40.96374,-18.14326],[-40.97955,-18.13643],[-40.99248,-18.15009],[-40.99105,-18.16307],[-41.00901,-18.16307],[-41.05788,-18.1658],[-41.05788,-18.17536],[-41.09597,-18.19243],[-41.09597,-18.2054],[-41.1089,-18.21291],[-41.09812,-18.22997],[-41.10531,-18.2327],[-41.09884,-18.25591],[-41.12903,-18.27502],[-41.16137,-18.30572],[-41.15059,-18.37394],[-41.16424,-18.37939],[-41.16424,-18.4019],[-41.15059,-18.40735],[-41.15849,-18.41144],[-41.17358,-18.41144],[-41.18868,-18.44485],[-41.02123,-18.46667],[-41.04638,-18.60362],[-41.03776,-18.61452],[-41.05788,-18.62678],[-41.0471,-18.64857],[-41.03488,-18.65402],[-40.99895,-18.67716],[-40.94505,-18.69418],[-40.94433,-18.76973],[-40.92134,-18.81055],[-40.93715,-18.82347],[-40.94721,-18.82143],[-40.97092,-18.83572],[-41.08375,-18.83232],[-41.10675,-18.83572],[-41.11753,-18.80783],[-41.13118,-18.79286],[-41.23611,-18.7949],[-41.2512,-18.81667],[-41.2476,-18.85544],[-41.2203,-18.87992],[-41.20808,-18.87992],[-41.20664,-18.86632],[-41.16424,-18.867],[-41.15634,-18.88876],[-41.12903,-18.9044],[-41.12112,-18.92412],[-41.0392,-18.98665],[-41.07585,-19.00567],[-41.06507,-19.06342],[-40.96877,-19.12726],[-40.96158,-19.15102],[-40.92996,-19.206],[-40.94649,-19.22296],[-40.94793,-19.24264],[-40.92565,-19.26299],[-40.94936,-19.2786],[-40.92277,-19.31048],[-40.94361,-19.35252],[-40.93427,-19.381],[-40.95727,-19.39184],[-40.9738,-19.42641],[-40.95439,-19.46165],[-40.97883,-19.50298],[-41.01332,-19.50298],[-41.04638,-19.48333],[-41.05429,-19.48401],[-41.04135,-19.56664],[-41.09238,-19.58966],[-41.14627,-19.656],[-41.16496,-19.65871],[-41.17933,-19.6939],[-41.19658,-19.74599],[-41.16999,-19.80618],[-41.18939,-19.82375],[-41.18868,-19.88526],[-41.21239,-19.89743],[-41.22964,-19.90216],[-41.24689,-19.93324],[-41.25479,-19.92919],[-41.26988,-19.93797],[-41.30653,-19.93392],[-41.31516,-19.96972],[-41.3245,-19.97647],[-41.313,-20.01226],[-41.33672,-20.05548],[-41.34822,-20.08653],[-41.3554,-20.12094],[-41.37768,-20.15805],[-41.38702,-20.18638],[-41.41074,-20.19448],[-41.4208,-20.20257],[-41.7636,-20.2046],[-41.78516,-20.28483],[-41.85055,-20.3246],[-41.86349,-20.37513],[-41.85127,-20.38187],[-41.84337,-20.40949],[-41.80887,-20.42498],[-41.80672,-20.47211],[-41.83115,-20.47885],[-41.81103,-20.54212],[-41.83115,-20.55086],[-41.86205,-20.61814],[-41.82109,-20.64437],[-41.85343,-20.68068],[-41.87139,-20.72102],[-41.8678,-20.73849],[-41.88002,-20.73984],[-41.88289,-20.76739],[-41.85415,-20.77478],[-41.83331,-20.7983],[-41.80887,-20.80905],[-41.78444,-20.80569],[-41.75138,-20.82382],[-41.74707,-20.87487],[-41.72335,-20.87554],[-41.74132,-20.92723],[-41.72335,-20.97757],[-41.74347,-21.09763],[-41.7291,-21.12579],[-41.594,-21.16332],[-41.57244,-21.18678],[-41.49051,-21.18879],[-41.48332,-21.20085],[-41.43948,-21.22095],[-41.41289,-21.20956],[-41.34965,-21.21291],[-41.27994,-21.2464],[-41.24473,-21.23234],[-41.17718,-21.25511],[-41.09238,-21.2243],[-41.04854,-21.25913],[-41.01548,-21.25578],[-41.00254,-21.28726],[-40.94577,-21.31404]]],"type":"Polygon"},"properties":{"attribution":{"text":"Departamento de Estradas de Rodagem do Estado do Espírito Santo","url":"https://der.es.gov.br"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"der-es","license_url":"http://www.acessoainformacao.es.gov.br/DER-ES","name":"DER-ES","overlay":true,"type":"wms","url":"http://portal.der.es.gov.br/geoserver/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=deres-ext:TRECHOINFO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-48.3148,-15.45953],[-48.31647,-15.70744],[-48.37636,-15.70412],[-48.37636,-15.79064],[-48.31647,-15.79396],[-48.31813,-16.0868],[-48.12845,-16.0868],[-48.12845,-16.12673],[-48.06689,-16.1284],[-48.06522,-16.21159],[-48.00366,-16.21325],[-48.00532,-16.29478],[-47.80899,-16.29312],[-47.80899,-16.13006],[-47.29153,-16.1284],[-47.29153,-16.0685],[-47.27656,-16.06684],[-47.27822,-15.99695],[-47.30983,-15.99862],[-47.30983,-15.58598],[-47.24661,-15.59264],[-47.24827,-15.4978],[-47.49102,-15.49441],[-47.49619,-15.41128],[-47.69086,-15.41294],[-47.69252,-15.4978],[-48.24825,-15.49946],[-48.24803,-15.46183],[-48.3148,-15.45953]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"GeoPortal DF","url":"http://www.geoportal.segeth.df.gov.br/"},"country_code":"BR","description":"Satellite imagery","end_date":"2015","icon":"http://www.geoportal.segeth.df.gov.br/static/dist/img/logo_geoportal.png","id":"GeoPortal_DF_2015","max_zoom":22,"name":"GeoPortal DF 2015","start_date":"2015","type":"wms","url":"https://www.geoservicos1.segeth.df.gov.br/arcgis/services/Imagens/FOTO_2015/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-48.27336,-16.04808],[-48.21349,-15.64139],[-48.0016,-15.54637],[-47.80395,-15.55207],[-47.50464,-15.62334],[-47.48659,-15.97586],[-47.7992,-16.02242],[-47.95694,-16.05663],[-48.27336,-16.04808]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"GeoPortal DF","url":"http://www.geoportal.segeth.df.gov.br/"},"country_code":"BR","description":"Satellite imagery","end_date":"2016","icon":"http://www.geoportal.segeth.df.gov.br/static/dist/img/logo_geoportal.png","id":"GeoPortal_DF_2016","max_zoom":22,"name":"GeoPortal DF 2016","start_date":"2016","type":"wms","url":"https://www.geoservicos1.segeth.df.gov.br/arcgis/services/Imagens/FOTO_2016/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-48.25141,-15.61285],[-48.08404,-15.61516],[-48.08404,-15.60131],[-48.05172,-15.60361],[-48.05172,-15.54244],[-47.82087,-15.5459],[-47.81972,-15.60131],[-47.71814,-15.60246],[-47.71814,-15.55975],[-47.66759,-15.56043],[-47.66717,-15.50807],[-47.52307,-15.51127],[-47.52422,-15.60592],[-47.61195,-15.60708],[-47.6131,-15.68557],[-47.63619,-15.69134],[-47.63734,-15.78137],[-47.61656,-15.78022],[-47.61772,-15.91181],[-47.56347,-15.91411],[-47.56231,-15.95336],[-47.69852,-15.95336],[-47.70083,-16.02377],[-47.85204,-16.02262],[-47.85088,-15.97644],[-47.94207,-15.97644],[-47.94207,-16.06186],[-48.09674,-16.05955],[-48.0979,-15.96836],[-48.25372,-15.96606],[-48.25141,-15.61285]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"GeoPortal DF","url":"http://www.geoportal.segeth.df.gov.br/"},"country_code":"BR","description":"Satellite imagery","end_date":"2017","icon":"http://www.geoportal.segeth.df.gov.br/static/dist/img/logo_geoportal.png","id":"GeoPortal_DF_2017","max_zoom":20,"name":"GeoPortal DF 2017","start_date":"2017","type":"wms","url":"https://www.geoservicos1.segeth.df.gov.br/arcgis/services/Imagens/PLEIADES_2017/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-48.3148,-15.45953],[-48.31647,-15.70744],[-48.37636,-15.70412],[-48.37636,-15.79064],[-48.31647,-15.79396],[-48.31813,-16.0868],[-48.12845,-16.0868],[-48.12845,-16.12673],[-48.06689,-16.1284],[-48.06522,-16.21159],[-48.00366,-16.21325],[-48.00532,-16.29478],[-47.80899,-16.29312],[-47.80899,-16.13006],[-47.29153,-16.1284],[-47.29153,-16.0685],[-47.27656,-16.06684],[-47.27822,-15.99695],[-47.30983,-15.99862],[-47.30983,-15.58598],[-47.24661,-15.59264],[-47.24827,-15.4978],[-47.49102,-15.49441],[-47.49619,-15.41128],[-47.69086,-15.41294],[-47.69252,-15.4978],[-48.24825,-15.49946],[-48.24803,-15.46183],[-48.3148,-15.45953]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"GeoPortal DF","url":"http://www.geoportal.segeth.df.gov.br/"},"country_code":"BR","description":"Satellite imagery","end_date":"2018","icon":"http://www.geoportal.segeth.df.gov.br/static/dist/img/logo_geoportal.png","id":"GeoPortal_DF_2018","max_zoom":22,"name":"GeoPortal DF 2018","privacy_policy_url":"https://wiki.openstreetmap.org/wiki/Pt:GeoPortalDFBrasilia","start_date":"2018","type":"wmts","url":"wmts:https://www.geoservicos1.segeth.df.gov.br/arcgis/rest/services/Imagens/GEOEYE_TERRACAP_2018/ImageServer/WMTS/1.0.0/WMTSCapabilities.xml"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BC250_Aglomerado_Rural","license_url":"http://dados.gov.br","name":"IBGE-BC250-Aglomerado Rural Isolado","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Aglomerado_Rural_Isolado_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BC250_Pista_Pouso","license_url":"http://dados.gov.br","name":"IBGE-BC250-Pista de Pouso","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Pista_Ponto_Pouso_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BC250_Rios_Drenagem","license_url":"http://dados.gov.br","name":"IBGE-BC250-Rios Drenagem","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Drenagem_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BC250_Rodoviario","license_url":"http://dados.gov.br","name":"IBGE-BC250-Trecho Rodoviario","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Rodoviario_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image/png&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BC250_Terra_Indegina","license_url":"http://dados.gov.br","name":"IBGE-BC250-Terra Indigena","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Terra_Indigena_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BC250_Uso_Sustentavel","license_url":"http://dados.gov.br","name":"IBGE-BC250-Unidade de Uso Sistentável - APA","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Unidade_Uso_Sustentavel_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BC250_Villa","license_url":"http://dados.gov.br","name":"IBGE-BC250-Villa","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Vila_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BCIM_Gerador_Eletrica","license_url":"http://dados.gov.br","name":"IBGE-BCIM-Estações Geradora de Energia Elétrica","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Est_Gerad_Energia_Eletrica_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:5396","EPSG:22525"],"country_code":"BR","id":"IBGE_BCIM_Municipio","license_url":"http://dados.gov.br","name":"IBGE-BCIM-Município","overlay":true,"type":"wms","url":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Municipio_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE"},"type":"Feature"},{"geometry":{"coordinates":[[[-48.2444,-16.0508],[-48.2444,-15.5005],[-47.5695,-15.5005],[-47.5695,-16.0508],[-48.2444,-16.0508]]],"type":"Polygon"},"properties":{"attribution":{"required":false,"text":"IBGE"},"country_code":"BR","description":"Addresses data from IBGE","id":"IBGE_DF_Addresses","max_zoom":20,"name":"IBGE Distrito Federal","overlay":true,"type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/wille/cirnnxni1000jg8nfppc8g7pm/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g"},"type":"Feature"},{"geometry":{"coordinates":[[[-38.48974,-12.81113],[-38.54485,-13.01392],[-38.47755,-13.03466],[-38.33473,-12.94685],[-38.30006,-12.90669],[-38.33954,-12.90435],[-38.35482,-12.83021],[-38.38091,-12.82184],[-38.40717,-12.86754],[-38.46537,-12.81599],[-38.48974,-12.81113]]],"type":"Polygon"},"properties":{"country_code":"BR","description":"Streets geometry and names of Salvador, Bahia. Source: Faces de Logradouro - IBGE.","id":"IBGE_Salvador_Streets","max_zoom":20,"name":"Nomes de Ruas IBGE Salvador-BA","overlay":true,"type":"tms","url":"https://api.mapbox.com/styles/v1/wille/cj8lp78dn62wl2rquim47qo0g/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g"},"type":"Feature"},{"geometry":{"coordinates":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"country_code":"BR","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png","id":"IBGE_Setores_Rurais","license_url":"https://wiki.openstreetmap.org/wiki/IBGE_Tile_Layer","max_zoom":14,"name":"IBGE Mapa de Setores Rurais","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.i00mo1kj/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ"},"type":"Feature"},{"geometry":{"coordinates":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE"},"country_code":"BR","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png","id":"IBGE_Setores_Urbanos","license_url":"https://wiki.openstreetmap.org/wiki/IBGE_Tile_Layer","max_zoom":19,"name":"IBGE Mapa de Setores Urbanos","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.hgda0m6h/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ"},"type":"Feature"},{"geometry":{"coordinates":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"type":"Polygon"},"properties":{"attribution":{"text":"IBGE, OSM Brasil"},"country_code":"BR","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png","id":"IBGE_Nomes_Ruas","license_url":"https://wiki.openstreetmap.org/wiki/IBGE_Street_Names","max_zoom":22,"min_zoom":4,"name":"IBGE Nomes de Ruas","overlay":true,"type":"tms","url":"https://api.maptiler.com/maps/b2037b15-5614-4fed-9608-9830b8dc574a/256/{zoom}/{x}/{y}.png?key=YmPoUxbTlEHlrASzv56Z"},"type":"Feature"},{"geometry":{"coordinates":[[[-51.10903,-23.39275],[-51.11015,-23.39112],[-51.11198,-23.3896],[-51.11358,-23.38977],[-51.121,-23.38593],[-51.12225,-23.38511],[-51.12483,-23.3835],[-51.12538,-23.38187],[-51.12482,-23.3777],[-51.12446,-23.37505],[-51.12437,-23.3723],[-51.12244,-23.37033],[-51.12302,-23.36643],[-51.12856,-23.36548],[-51.12832,-23.35884],[-51.12477,-23.35476],[-51.12703,-23.35091],[-51.12412,-23.3468],[-51.12025,-23.34781],[-51.11765,-23.33969],[-51.11265,-23.34129],[-51.1094,-23.33489],[-51.10756,-23.33409],[-51.10486,-23.33398],[-51.10253,-23.33419],[-51.09987,-23.33102],[-51.09801,-23.32936],[-51.09999,-23.32831],[-51.10323,-23.32532],[-51.10473,-23.32319],[-51.10466,-23.32129],[-51.10515,-23.31844],[-51.10636,-23.31575],[-51.10661,-23.31467],[-51.1105,-23.31167],[-51.11158,-23.30842],[-51.0995,-23.30947],[-51.0974,-23.30863],[-51.09512,-23.30745],[-51.09202,-23.30494],[-51.09036,-23.30371],[-51.09205,-23.29875],[-51.09269,-23.2975],[-51.09408,-23.29295],[-51.10074,-23.29332],[-51.10102,-23.28871],[-51.10068,-23.28837],[-51.10085,-23.28778],[-51.09938,-23.28664],[-51.09632,-23.27791],[-51.10285,-23.27302],[-51.10836,-23.27034],[-51.1131,-23.2684],[-51.1316,-23.26534],[-51.13188,-23.26201],[-51.13173,-23.25506],[-51.1329,-23.25468],[-51.13296,-23.25075],[-51.13474,-23.25127],[-51.13534,-23.25133],[-51.13517,-23.24359],[-51.13535,-23.24118],[-51.13752,-23.24219],[-51.13885,-23.2435],[-51.14109,-23.24521],[-51.14717,-23.24318],[-51.14761,-23.23828],[-51.14908,-23.23588],[-51.14977,-23.23681],[-51.15139,-23.23854],[-51.15289,-23.23884],[-51.15384,-23.23895],[-51.1582,-23.23814],[-51.16045,-23.23816],[-51.16035,-23.24658],[-51.15912,-23.24783],[-51.16131,-23.24777],[-51.16659,-23.24594],[-51.17193,-23.24582],[-51.17205,-23.24956],[-51.17424,-23.2484],[-51.17514,-23.24932],[-51.17686,-23.24816],[-51.17947,-23.25169],[-51.18135,-23.25381],[-51.18274,-23.25363],[-51.18379,-23.25326],[-51.18496,-23.2533],[-51.18627,-23.25215],[-51.18665,-23.24748],[-51.19118,-23.24914],[-51.19142,-23.25286],[-51.19369,-23.25278],[-51.19384,-23.26074],[-51.20097,-23.26055],[-51.20127,-23.2426],[-51.20994,-23.24278],[-51.2109,-23.26988],[-51.21969,-23.27222],[-51.22597,-23.27453],[-51.22934,-23.2786],[-51.23452,-23.2816],[-51.23498,-23.28325],[-51.23507,-23.28544],[-51.23371,-23.2859],[-51.23216,-23.28802],[-51.2287,-23.29229],[-51.2274,-23.2946],[-51.22679,-23.29548],[-51.2256,-23.29657],[-51.22393,-23.29721],[-51.22048,-23.30073],[-51.21864,-23.3013],[-51.21668,-23.30212],[-51.21424,-23.30441],[-51.21097,-23.30697],[-51.22328,-23.3183],[-51.22439,-23.31459],[-51.22521,-23.31289],[-51.22512,-23.31258],[-51.22521,-23.31251],[-51.22553,-23.31253],[-51.22595,-23.31239],[-51.22617,-23.31183],[-51.22936,-23.31489],[-51.22802,-23.31661],[-51.22789,-23.31902],[-51.22767,-23.32023],[-51.22723,-23.32151],[-51.22739,-23.32223],[-51.22725,-23.32285],[-51.23033,-23.32558],[-51.23046,-23.32671],[-51.22954,-23.32789],[-51.22916,-23.3305],[-51.22929,-23.33178],[-51.22681,-23.33447],[-51.22602,-23.33657],[-51.22473,-23.33839],[-51.2221,-23.34023],[-51.22257,-23.34196],[-51.22381,-23.34339],[-51.22384,-23.34531],[-51.22441,-23.347],[-51.22454,-23.34829],[-51.22404,-23.34968],[-51.22351,-23.35011],[-51.22382,-23.35077],[-51.22305,-23.35174],[-51.2226,-23.35296],[-51.22587,-23.35481],[-51.2265,-23.36706],[-51.22354,-23.36915],[-51.22367,-23.37968],[-51.22038,-23.38163],[-51.21647,-23.3817],[-51.21416,-23.37995],[-51.20928,-23.37395],[-51.20738,-23.36814],[-51.20629,-23.36723],[-51.20472,-23.36627],[-51.19823,-23.36668],[-51.19297,-23.36651],[-51.18986,-23.36544],[-51.18806,-23.36464],[-51.18718,-23.36453],[-51.1858,-23.36374],[-51.18304,-23.36359],[-51.18071,-23.36376],[-51.17907,-23.36158],[-51.17764,-23.35836],[-51.16684,-23.35626],[-51.16614,-23.35854],[-51.16476,-23.36039],[-51.16077,-23.35922],[-51.15983,-23.3666],[-51.16204,-23.36861],[-51.16276,-23.37416],[-51.15845,-23.3758],[-51.15505,-23.37631],[-51.15396,-23.37903],[-51.15299,-23.38105],[-51.15119,-23.38208],[-51.14917,-23.38251],[-51.14722,-23.38216],[-51.14518,-23.38259],[-51.1441,-23.38376],[-51.14512,-23.38808],[-51.1418,-23.3894],[-51.14031,-23.3888],[-51.14068,-23.39161],[-51.14127,-23.39354],[-51.14094,-23.39443],[-51.14046,-23.39536],[-51.13939,-23.3951],[-51.13739,-23.39315],[-51.13609,-23.3898],[-51.13429,-23.38976],[-51.13216,-23.39007],[-51.13172,-23.39286],[-51.12259,-23.38864],[-51.12228,-23.39166],[-51.11883,-23.39317],[-51.11568,-23.39335],[-51.10903,-23.39275]],[[-51.13829,-23.41601],[-51.13331,-23.41867],[-51.13209,-23.41644],[-51.13002,-23.41829],[-51.12869,-23.41901],[-51.12824,-23.42103],[-51.12696,-23.42186],[-51.12533,-23.42269],[-51.12445,-23.42097],[-51.12151,-23.42411],[-51.12063,-23.42327],[-51.11971,-23.42312],[-51.11977,-23.42157],[-51.1188,-23.42155],[-51.11643,-23.42084],[-51.11943,-23.41917],[-51.11787,-23.41678],[-51.11655,-23.41731],[-51.1157,-23.4157],[-51.11512,-23.41309],[-51.11908,-23.41111],[-51.1196,-23.4117],[-51.12052,-23.41489],[-51.12148,-23.41714],[-51.12309,-23.41863],[-51.12755,-23.41654],[-51.12803,-23.4174],[-51.1312,-23.41557],[-51.1308,-23.41477],[-51.13279,-23.41264],[-51.13522,-23.41106],[-51.13586,-23.41096],[-51.13682,-23.41119],[-51.13721,-23.41158],[-51.1373,-23.41324],[-51.13743,-23.41471],[-51.13829,-23.41601]],[[-51.18929,-23.61469],[-51.18869,-23.61385],[-51.18818,-23.61339],[-51.18731,-23.61302],[-51.18629,-23.61314],[-51.18402,-23.61396],[-51.18349,-23.61397],[-51.18183,-23.61284],[-51.1814,-23.61344],[-51.18063,-23.61314],[-51.18001,-23.61409],[-51.17866,-23.61329],[-51.18065,-23.6106],[-51.17972,-23.61018],[-51.18062,-23.60849],[-51.18212,-23.6085],[-51.18261,-23.60775],[-51.1832,-23.60804],[-51.18415,-23.60628],[-51.18511,-23.60666],[-51.18649,-23.6047],[-51.18902,-23.6061],[-51.18821,-23.60742],[-51.18919,-23.60802],[-51.1889,-23.60953],[-51.18962,-23.60993],[-51.19119,-23.61119],[-51.19015,-23.61245],[-51.19054,-23.61276],[-51.19029,-23.61378],[-51.18929,-23.61469]],[[-51.08006,-23.52984],[-51.07962,-23.52205],[-51.08468,-23.52194],[-51.08582,-23.52404],[-51.08589,-23.52704],[-51.08579,-23.52777],[-51.0853,-23.52806],[-51.08514,-23.52857],[-51.08512,-23.52982],[-51.08471,-23.53024],[-51.08343,-23.53024],[-51.0833,-23.52978],[-51.08006,-23.52984]]],"type":"Polygon"},"properties":{"attribution":{"text":"Prefeitura do Londrinas, PR","url":"http://siglon.londrina.pr.gov.br"},"country_code":"BR","end_date":"2011","id":"londrina2011","license_url":"http://siglon.londrina.pr.gov.br","max_zoom":19,"name":"Londrina Ortofoto 2011","start_date":"2011","type":"tms","url":"https://siglon.londrina.pr.gov.br/arcgis/rest/services/Imagens/Ortofotos_2011_Paranacidade/MapServer/WMTS/tile/1.0.0/Imagens_Ortofotos_2011_Paranacidade/default/GoogleMapsCompatible/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":{"coordinates":[[[-43.17709,-22.96971],[-43.14586,-22.96959],[-43.14605,-22.92719],[-43.15625,-22.92731],[-43.15647,-22.87557],[-43.17739,-22.87494],[-43.17742,-22.88553],[-43.19804,-22.88571],[-43.19804,-22.85429],[-43.21875,-22.85444],[-43.21901,-22.83365],[-43.22937,-22.83365],[-43.22934,-22.82371],[-43.19869,-22.82353],[-43.19856,-22.83413],[-43.18826,-22.83398],[-43.18804,-22.84448],[-43.16667,-22.84442],[-43.16683,-22.83404],[-43.15638,-22.83407],[-43.15654,-22.81336],[-43.10436,-22.81306],[-43.10446,-22.80288],[-43.09387,-22.80276],[-43.0941,-22.73998],[-43.13599,-22.73992],[-43.13569,-22.75067],[-43.12573,-22.75055],[-43.12556,-22.77118],[-43.14595,-22.77109],[-43.14612,-22.76055],[-43.17771,-22.76088],[-43.17758,-22.77115],[-43.18807,-22.7713],[-43.18807,-22.78166],[-43.25067,-22.78163],[-43.25057,-22.79198],[-43.28054,-22.79282],[-43.30343,-22.79312],[-43.33353,-22.79297],[-43.33347,-22.80258],[-43.38574,-22.8024],[-43.38542,-22.81255],[-43.41691,-22.81285],[-43.41675,-22.82341],[-43.42717,-22.82335],[-43.4274,-22.83374],[-43.45844,-22.83362],[-43.45864,-22.81276],[-43.48984,-22.813],[-43.48994,-22.7965],[-43.50208,-22.79746],[-43.51543,-22.79737],[-43.52078,-22.79591],[-43.54169,-22.79603],[-43.54179,-22.80234],[-43.54653,-22.80246],[-43.54666,-22.81189],[-43.55251,-22.81279],[-43.56991,-22.81294],[-43.56998,-22.8197],[-43.57361,-22.82326],[-43.58348,-22.82329],[-43.58352,-22.83347],[-43.59391,-22.83374],[-43.59394,-22.85468],[-43.66099,-22.85459],[-43.66099,-22.85983],[-43.70852,-22.86019],[-43.70836,-22.86503],[-43.72206,-22.86488],[-43.72213,-22.86847],[-43.75015,-22.86859],[-43.75009,-22.8753],[-43.76038,-22.87527],[-43.75992,-22.8785],[-43.75976,-22.88457],[-43.76132,-22.88586],[-43.78129,-22.8858],[-43.78126,-22.89591],[-43.80213,-22.89621],[-43.80135,-22.91137],[-43.80119,-22.92758],[-43.79213,-22.92776],[-43.7922,-22.93822],[-43.78191,-22.93799],[-43.78184,-22.94869],[-43.75067,-22.94845],[-43.7506,-22.95909],[-43.72986,-22.95886],[-43.72966,-22.97984],[-43.70904,-22.97966],[-43.70891,-22.99033],[-43.69846,-22.99006],[-43.69836,-23.00065],[-43.66735,-23.00044],[-43.66726,-23.01117],[-43.63125,-23.00937],[-43.63131,-23.02079],[-43.63586,-23.02091],[-43.63602,-23.03164],[-43.67771,-23.03164],[-43.67765,-23.04233],[-43.67086,-23.0423],[-43.67109,-23.0631],[-43.64599,-23.06304],[-43.64605,-23.05276],[-43.60475,-23.05255],[-43.60452,-23.06307],[-43.58381,-23.06289],[-43.58368,-23.08404],[-43.54186,-23.08383],[-43.54195,-23.06319],[-43.52147,-23.06301],[-43.5213,-23.07352],[-43.50043,-23.07337],[-43.50043,-23.04218],[-43.45877,-23.04221],[-43.4587,-23.03194],[-43.43782,-23.03182],[-43.43776,-23.02154],[-43.3235,-23.02121],[-43.3233,-23.04212],[-43.31291,-23.04195],[-43.31275,-23.05267],[-43.30239,-23.05258],[-43.30236,-23.04227],[-43.29194,-23.04215],[-43.29197,-23.03194],[-43.27109,-23.03182],[-43.27119,-23.01093],[-43.26061,-23.01087],[-43.26067,-23.00059],[-43.25057,-23.00047],[-43.25054,-23.01126],[-43.23989,-23.01102],[-43.23986,-23.00062],[-43.21908,-23.0005],[-43.21904,-22.99021],[-43.20901,-22.99009],[-43.20862,-23.08389],[-43.18768,-23.08377],[-43.18761,-23.07334],[-43.13582,-23.07337],[-43.13589,-23.05249],[-43.17732,-23.05255],[-43.17709,-22.96971]]],"type":"Polygon"},"properties":{"attribution":{"text":"Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro.","url":"https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2013_UTM/MapServer"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:29193"],"country_code":"BR","end_date":"2013","id":"rio2013","license_url":"http://data.rio/about","name":"Rio Mosaic 2013","start_date":"2013","type":"wms","url":"http://geo.rio.rj.gov.br/ArcGIS/services/Imagens/Mosaico_2013/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-42.30363,-22.43698],[-44.10842,-22.06579],[-44.5313,-23.7863],[-42.70469,-24.16178],[-42.30363,-22.43698]]],"type":"Polygon"},"properties":{"attribution":{"text":"Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro.","url":"https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2015_UTM/MapServer"},"available_projections":["EPSG:4326","EPSG:3857","EPSG:29193"],"country_code":"BR","end_date":"2015","id":"rio2015","license_url":"http://data.rio/about","max_zoom":13,"name":"Rio Mosaic 2015","start_date":"2015","type":"wms","url":"https://pgeo3.rio.rj.gov.br/arcgis/services/Imagens/Mosaico_2015_UTM/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-48.62488,-26.91624],[-48.62416,-26.83409],[-48.56163,-26.83412],[-48.56165,-26.74919],[-48.62675,-26.74918],[-48.62715,-26.73276],[-48.64126,-26.733],[-48.64174,-26.70912],[-48.62414,-26.70913],[-48.62418,-26.50079],[-48.57099,-26.50077],[-48.57155,-26.47415],[-48.55418,-26.47381],[-48.5545,-26.45736],[-48.56155,-26.45747],[-48.56161,-26.41746],[-48.4991,-26.41747],[-48.49909,-26.25081],[-48.43664,-26.25079],[-48.43661,-26.20752],[-48.4601,-26.20751],[-48.46195,-26.1242],[-48.56161,-26.12419],[-48.56163,-25.95753],[-48.62411,-25.95753],[-48.62411,-25.94507],[-48.68838,-25.94607],[-48.6884,-25.95752],[-49.25089,-25.95752],[-49.2509,-25.9992],[-49.31339,-25.9992],[-49.31338,-26.0825],[-49.37591,-26.0825],[-49.37591,-26.12419],[-49.50093,-26.12418],[-49.50092,-26.16586],[-49.68661,-26.16585],[-49.68661,-26.12417],[-49.74907,-26.08246],[-49.74908,-26.04084],[-49.8116,-26.04085],[-49.81159,-25.99918],[-49.93657,-25.99915],[-49.93661,-25.98244],[-50.00091,-25.98288],[-50.00094,-25.99915],[-50.31338,-25.99916],[-50.31342,-26.04083],[-50.37411,-26.04084],[-50.3741,-25.9992],[-50.49914,-25.99918],[-50.49911,-25.98414],[-50.62593,-25.98452],[-50.62595,-26.04084],[-50.6884,-26.04161],[-50.68845,-26.12416],[-50.75094,-26.12414],[-50.75095,-26.20752],[-51.12595,-26.20747],[-51.12595,-26.24913],[-51.18848,-26.24918],[-51.31344,-26.33245],[-51.31347,-26.62414],[-51.4366,-26.62415],[-51.43659,-26.56476],[-51.62409,-26.5641],[-51.62411,-26.5408],[-51.99907,-26.5408],[-52.06158,-26.49911],[-52.06158,-26.45747],[-52.12408,-26.45749],[-52.12406,-26.41579],[-52.37407,-26.4158],[-52.37409,-26.39133],[-52.56156,-26.3894],[-52.56158,-26.37415],[-52.62408,-26.37417],[-52.62409,-26.33247],[-53.12408,-26.33247],[-53.1241,-26.31707],[-53.1618,-26.3165],[-53.16136,-26.29082],[-53.18656,-26.29083],[-53.24907,-26.24911],[-53.24906,-26.23919],[-53.31159,-26.23824],[-53.3741,-26.22882],[-53.43845,-26.22777],[-53.43843,-26.24914],[-53.5616,-26.24916],[-53.56159,-26.23983],[-53.65501,-26.23814],[-53.65623,-26.29263],[-53.67011,-26.31684],[-53.68846,-26.33242],[-53.70322,-26.3741],[-53.70929,-26.38449],[-53.7098,-26.39568],[-53.70619,-26.40722],[-53.70721,-26.45927],[-53.71438,-26.46168],[-53.71476,-26.48118],[-53.73047,-26.49913],[-53.73146,-26.54081],[-53.75096,-26.5408],[-53.75095,-26.62417],[-53.7602,-26.62414],[-53.76125,-26.6675],[-53.75098,-26.66751],[-53.75096,-26.74298],[-53.72737,-26.7434],[-53.72133,-26.74905],[-53.72141,-26.75093],[-53.74571,-26.75943],[-53.74612,-26.77704],[-53.71948,-26.77755],[-53.72084,-26.83416],[-53.70047,-26.83414],[-53.70277,-26.93108],[-53.71168,-26.93091],[-53.71224,-26.95557],[-53.751,-26.95479],[-53.75092,-26.99915],[-53.76467,-26.99915],[-53.8037,-27.03751],[-53.80454,-27.07258],[-53.80809,-27.07249],[-53.80862,-27.09613],[-53.8269,-27.09577],[-53.82762,-27.12414],[-53.84644,-27.12413],[-53.84765,-27.17014],[-53.83506,-27.18932],[-53.83536,-27.20054],[-53.68847,-27.20284],[-53.68849,-27.22789],[-53.43654,-27.23246],[-53.43655,-27.16751],[-53.37598,-27.16751],[-53.37601,-27.23352],[-53.24905,-27.23564],[-53.24905,-27.20922],[-53.06344,-27.20918],[-53.06345,-27.2334],[-52.81348,-27.23685],[-52.81346,-27.27653],[-52.75096,-27.27732],[-52.75096,-27.29249],[-52.4385,-27.29252],[-52.43848,-27.32689],[-52.37603,-27.32753],[-52.37599,-27.3342],[-52.25098,-27.33418],[-52.25099,-27.34669],[-52.18655,-27.34728],[-52.18657,-27.33419],[-52.12598,-27.3342],[-52.12599,-27.36413],[-52.02979,-27.36489],[-52.03036,-27.42442],[-51.97534,-27.42479],[-51.97603,-27.50088],[-51.93845,-27.50085],[-51.93845,-27.54252],[-51.68846,-27.54247],[-51.68847,-27.55742],[-51.59903,-27.5579],[-51.59923,-27.59481],[-51.56351,-27.59498],[-51.56348,-27.62586],[-51.50088,-27.62586],[-51.50095,-27.66754],[-51.43937,-27.6675],[-51.43954,-27.70932],[-51.37597,-27.7095],[-51.37601,-27.75089],[-51.31349,-27.7509],[-51.31346,-27.79253],[-51.18847,-27.79251],[-51.18848,-27.87586],[-51.12598,-27.87586],[-51.12597,-27.91752],[-51.06348,-27.9175],[-51.06347,-27.95919],[-51.00095,-28.00086],[-50.9385,-28.00086],[-50.93849,-28.16755],[-50.81346,-28.16752],[-50.81345,-28.29253],[-50.75096,-28.29251],[-50.68845,-28.33418],[-50.68849,-28.41754],[-50.626,-28.41752],[-50.56352,-28.44094],[-50.43848,-28.44051],[-50.43847,-28.45917],[-50.37597,-28.45921],[-50.37598,-28.47554],[-50.18844,-28.47454],[-50.18849,-28.51143],[-50.12398,-28.51104],[-50.12402,-28.50086],[-49.87597,-28.50085],[-49.87601,-28.5142],[-49.81347,-28.51369],[-49.81347,-28.58255],[-49.83003,-28.58251],[-49.82951,-28.62597],[-49.8759,-28.66572],[-50.001,-28.74915],[-50.001,-29.04083],[-50.03319,-29.04081],[-50.03219,-29.14711],[-50.12602,-29.14774],[-50.12598,-29.16579],[-50.13613,-29.16581],[-50.1885,-29.19623],[-50.1885,-29.31905],[-50.1422,-29.31873],[-50.14208,-29.33422],[-50.126,-29.33418],[-50.12599,-29.36238],[-49.99906,-29.36153],[-49.99904,-29.24031],[-49.93848,-29.23986],[-49.93851,-29.25087],[-49.87601,-29.25087],[-49.876,-29.30098],[-49.82262,-29.30052],[-49.82227,-29.33419],[-49.81347,-29.33422],[-49.81354,-29.3411],[-49.68654,-29.33991],[-49.68651,-29.29255],[-49.62399,-29.29252],[-49.62398,-29.25085],[-49.56149,-29.25083],[-49.56145,-29.16749],[-49.49901,-29.16746],[-49.49902,-29.08419],[-49.4365,-29.08418],[-49.43651,-29.04251],[-49.37405,-29.04248],[-49.37402,-28.9592],[-49.31153,-28.95917],[-49.31152,-28.91749],[-49.24898,-28.9175],[-49.24897,-28.87582],[-49.18655,-28.87585],[-49.18653,-28.83414],[-49.12402,-28.83418],[-49.12401,-28.7925],[-49.06149,-28.79247],[-49.06146,-28.75084],[-48.99903,-28.75085],[-48.99903,-28.70919],[-48.93658,-28.70918],[-48.93658,-28.66752],[-48.87405,-28.66751],[-48.87404,-28.62585],[-48.74912,-28.62585],[-48.74912,-28.54254],[-48.68656,-28.54253],[-48.68658,-28.33417],[-48.62408,-28.33416],[-48.62406,-28.08418],[-48.5616,-28.08418],[-48.56159,-27.95919],[-48.49905,-27.95916],[-48.49904,-27.91581],[-48.56157,-27.9158],[-48.5616,-27.87584],[-48.49902,-27.87586],[-48.49902,-27.83422],[-48.43657,-27.83418],[-48.43661,-27.62583],[-48.37406,-27.62585],[-48.37405,-27.50086],[-48.31157,-27.50086],[-48.31153,-27.24913],[-48.43657,-27.24913],[-48.43654,-27.20916],[-48.37402,-27.2092],[-48.37405,-27.1658],[-48.43656,-27.1658],[-48.43656,-27.12415],[-48.49906,-27.12413],[-48.49907,-27.08667],[-48.50022,-27.08666],[-48.50031,-27.08247],[-48.5616,-27.08248],[-48.56159,-27.04252],[-48.49906,-27.04252],[-48.49906,-26.99913],[-48.56156,-26.99913],[-48.56157,-26.91579],[-48.62488,-26.91624]]],"type":"Polygon"},"properties":{"attribution":{"text":"Sistema de Informações Geográficas - Governo de Santa Catarina","url":"http://sigsc.sds.sc.gov.br/download/termo_sigsc.pdf"},"available_projections":["EPSG:29193","EPSG:31982","EPSG:3857","EPSG:41001","EPSG:4326"],"country_code":"BR","end_date":"2012","id":"sc2012","license_url":"http://sigsc.sds.sc.gov.br","name":"SIG Santa Catarina OrtoRGB 2012","start_date":"2012","type":"wms","url":"http://sigsc.sc.gov.br/sigserver/SIGSC/wms?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OrtoRGB-Landsat-2012&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}"},"type":"Feature"},{"geometry":{"coordinates":[[[-69.8568,-55.55949],[-72.26521,-55.14943],[-72.26521,-54.51089],[-72.08531,-54.17909],[-69.49116,-54.17889],[-69.4915,-55.28379],[-69.62231,-55.5591],[-69.8568,-55.55949]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"CL","description":"A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping (false color IR)","end_date":"2013-09-16","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC82280982013259LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":12,"name":"imagico.de: Isla Londonderry","start_date":"2013-09-16","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC82280982013259LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-72.86696,-41.51741],[-72.86696,-41.04527],[-72.23181,-41.04527],[-71.8751,-41.10829],[-72.00007,-41.51741],[-72.86696,-41.51741]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"CL","description":"Image from after the 2015 eruption (true color)","end_date":"2016-01-31","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC82330892016031LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Volcán Calbuco","start_date":"2016-01-31","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC82330892016031LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-78.532,-1.80509],[-78.532,-1.60811],[-78.33562,-1.60811],[-78.33562,-1.80509],[-78.532,-1.80509]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"EC","description":"2007 ASTER image offering better glacier coverage than common sources (true color with estimated blue)","end_date":"2012-02-05","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: El Altar","start_date":"2012-02-05","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00302052007154424_20150518041444_91492&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-92.05216,1.3213],[-92.05216,1.72181],[-91.74849,1.72181],[-91.74849,1.3213],[-92.05216,1.3213]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"EC","description":"Recent image, only old and poor images in other sources currently (true color)","end_date":"2016-03-11","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R040_N01_20160311T164128","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Darwin and Wolf islands, Galapagos","start_date":"2016-03-11","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R040_N01_20160311T164128&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-28.21075,-56.72108],[-28.21075,-56.62498],[-27.96956,-56.62498],[-27.96956,-56.72108],[-28.21075,-56.72108]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GS","description":"Missing in other image sources (true color with estimated blue)","end_date":"2013-11-16","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Leskov Island ASTER","start_date":"2013-11-16","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00311162013112731_20150618142416_109190&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-180.0,-67.42635],[-180.0,-67.32544],[-179.82473,-67.32538],[-179.82473,-67.42635],[-180.0,-67.42635]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GS","description":"Missing in other image sources (true color)","end_date":"2014-02-05","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC80611072014036LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Scott Island","start_date":"2014-02-05","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC80611072014036LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-27.99293,-56.73479],[-28.22776,-56.73262],[-28.22416,-56.60075],[-27.96975,-56.60283],[-27.97319,-56.73479],[-27.99293,-56.73479]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GS","description":"Missing in other image sources (true color)","end_date":"2015-10-13","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC81991002015286LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Leskov Island Landsat","start_date":"2015-10-13","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC81991002015286LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-34.17701,-55.29693],[-35.19599,-55.28285],[-35.16664,-54.72097],[-34.12517,-54.73465],[-34.1401,-55.29693],[-34.17701,-55.29693]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GS","description":"Missing in other image sources (true color)","end_date":"2015-12-10","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC82050982015344LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Clerke Rocks","start_date":"2015-12-10","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC82050982015344LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-42.12875,-53.7205],[-42.14626,-53.45782],[-41.67573,-53.44586],[-41.65582,-53.70872],[-42.12875,-53.7205]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"GS","description":"Missing in other image sources (true color)","end_date":"2015-12-13","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-LC82100972015347LGN00","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":13,"name":"imagico.de: Shag Rocks","start_date":"2015-12-13","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=LC82100972015347LGN00&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-79.62539,8.77083],[-79.68684,8.82197],[-79.68667,8.93705],[-79.65363,9.09294],[-79.26816,9.09294],[-79.32833,8.77083],[-79.62539,8.77083]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"PA","description":"New locks with less clouds than in the Sentinel-2 image - make sure to check image alignment (true color)","end_date":"2016-12-30","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-EO1A0120532016364110KF","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Panama Canal - Pacific side","start_date":"2016-12-30","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=EO1A0120532016364110KF&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-80.01654,8.84898],[-80.01654,9.41481],[-79.46859,9.41481],[-79.46859,8.84898],[-80.01654,8.84898]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"PA","description":"Images of the new locks (but partly cloudy) (true color)","end_date":"2016-06-07","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R111_N09_20160604T154554","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Panama Canal","start_date":"2016-06-07","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R111_N09_20160604T154554&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-72.75945,-15.68684],[-72.75945,-15.4957],[-72.74434,-15.4263],[-72.41286,-15.4263],[-72.41286,-15.65296],[-72.42411,-15.68667],[-72.75945,-15.68684]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"PE","description":"Up-to-date image for glacier mapping (true color)","end_date":"2016-09-21","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-EO1A0040712016264110KF","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Coropuna","start_date":"2016-09-21","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=EO1A0040712016264110KF&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":{"coordinates":[[[-71.18071,-14.49785],[-71.17976,-13.71029],[-70.55637,-13.71263],[-70.55637,-14.49785],[-71.18071,-14.49785]]],"type":"Polygon"},"properties":{"attribution":{"required":true,"text":"imagico.de OSM images for mapping","url":"http://maps.imagico.de/#osmim"},"country_code":"PE","description":"Poor and outdated imagery in other sources (true color)","end_date":"2016-05-10","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png","id":"osmim-imagicode-S2A_R039_S15_20160510T145731","license_url":"http://imagico.de/map/osmim_tiles.php","max_zoom":14,"name":"imagico.de: Willkanuta Mountains and Quelccaya Ice Cap","start_date":"2016-05-10","type":"tms","url":"http://imagico.de/map/osmim_tiles.php?layer=S2A_R039_S15_20160510T145731&z={zoom}&x={x}&y={-y}"},"type":"Feature"},{"geometry":null,"properties":{"default":true,"description":"Satellite and aerial imagery.","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/Bing.png","id":"Bing","license_url":"https://wiki.openstreetmap.org/wiki/Bing_Maps","max_zoom":22,"min_zoom":1,"name":"Bing aerial imagery","no_tile_header":{"X-VE-Tile-Info":["no-tile"]},"permission_osm":"explicit","privacy_policy_url":"https://privacy.microsoft.com/en-gb/privacystatement","type":"bing","url":"https://www.bing.com/maps"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Terms & Feedback","url":"https://wiki.openstreetmap.org/wiki/Esri"},"category":"photo","default":true,"description":"Esri world imagery.","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png","id":"EsriWorldImagery","max_zoom":22,"name":"Esri World Imagery","no_tile_header":{"Etag":["\"10i954m13i2\""]},"permission_osm":"explicit","type":"tms","url":"https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Terms & Feedback","url":"https://wiki.openstreetmap.org/wiki/Esri"},"category":"photo","default":true,"description":"Esri archive imagery that may be clearer and more accurate than the default layer.","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png","id":"EsriWorldImageryClarity","license_url":"https://github.com/osmlab/editor-layer-index/pull/358#issuecomment-361416110","max_zoom":22,"name":"Esri World Imagery (Clarity) Beta","permission_osm":"explicit","type":"tms","url":"https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Terms & Feedback","url":"https://www.mapbox.com/about/maps"},"category":"osmbasedmap","default":true,"description":"Shows major features to help orient you.","i18n":true,"id":"mapbox_locator_overlay","max_zoom":16,"name":"Locator Overlay","overlay":true,"privacy_policy_url":"https://www.mapbox.com/legal/privacy/","type":"tms","url":"https://api.mapbox.com/styles/v1/openstreetmap/ckasmteyi1tda1ipfis6wqhuq/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJja2JjaDZoMm8wMXU5MzJvMmZwOHY3ZHRyIn0.nzEnT3XUHOzDoZxawHYGxg"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Terms & Feedback","url":"https://www.mapbox.com/about/maps"},"category":"photo","default":true,"description":"Satellite and aerial imagery.","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/MapBoxSatellite.png","id":"Mapbox","license_url":"https://wiki.openstreetmap.org/wiki/Vertical_Aerial_Photographs#DigitalGlobe_.2F_MapBox","max_zoom":22,"name":"Mapbox Satellite","permission_osm":"explicit","privacy_policy_url":"https://www.mapbox.com/legal/privacy/","type":"tms","url":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/mapbox.satellite/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA","url":"https://tools.geofabrik.de/osmi"},"category":"qa","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png","id":"OSM_Inspector-Addresses","max_zoom":18,"name":"OSM Inspector: Addresses","overlay":true,"type":"tms","url":"https://tools.geofabrik.de/osmi/tiles/addresses/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA","url":"https://tools.geofabrik.de/osmi"},"category":"qa","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png","id":"OSM_Inspector-Geometry","max_zoom":18,"name":"OSM Inspector: Geometry","overlay":true,"type":"tms","url":"https://tools.geofabrik.de/osmi/tiles/geometry/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA","url":"https://tools.geofabrik.de/osmi"},"category":"qa","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png","id":"OSM_Inspector-Highways","max_zoom":18,"name":"OSM Inspector: Highways","overlay":true,"type":"tms","url":"https://tools.geofabrik.de/osmi/tiles/highways/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA","url":"https://tools.geofabrik.de/osmi"},"category":"qa","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png","id":"OSM_Inspector-Multipolygon","max_zoom":19,"min_zoom":8,"name":"OSM Inspector: Area","overlay":true,"type":"tms","url":"https://tools.geofabrik.de/osmi/tiles/area/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA","url":"https://tools.geofabrik.de/osmi"},"category":"qa","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png","id":"OSM_Inspector-Places","max_zoom":18,"name":"OSM Inspector: Places","overlay":true,"type":"tms","url":"https://tools.geofabrik.de/osmi/tiles/places/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA","url":"https://tools.geofabrik.de/osmi"},"category":"qa","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png","id":"OSM_Inspector-Routing","max_zoom":18,"name":"OSM Inspector: Routing","overlay":true,"type":"tms","url":"https://tools.geofabrik.de/osmi/tiles/routing/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA","url":"https://tools.geofabrik.de/osmi"},"category":"qa","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OSMIHighways.png","id":"OSM_Inspector-Tagging","max_zoom":18,"name":"OSM Inspector: Tagging","overlay":true,"type":"tms","url":"https://tools.geofabrik.de/osmi/tiles/tagging/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA","url":"http://openptmap.de"},"category":"osmbasedmap","i18n":true,"icon":"http://openptmap.de/favicon_pt.png","id":"openpt_map","max_zoom":17,"min_zoom":4,"name":"OpenPT Map (overlay)","overlay":true,"type":"tms","url":"http://openptmap.de/tiles/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"text":"Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors","url":"https://www.openrailwaymap.org/"},"category":"osmbasedmap","description":"Overlay imagery showing railway infrastructure based on OpenStreetMap data","i18n":true,"icon":"https://www.openrailwaymap.org/img/openrailwaymap-64.png","id":"openrailwaymap","max_zoom":20,"name":"OpenRailwayMap","overlay":true,"privacy_policy_url":"https://www.openrailwaymap.org/en/imprint","type":"tms","url":"https://{switch:a,b,c}.tiles.openrailwaymap.org/standard/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"text":"Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors","url":"https://www.openrailwaymap.org/"},"description":"Overlay imagery showing railway speed limits based on OpenStreetMap data","i18n":true,"icon":"https://www.openrailwaymap.org/img/openrailwaymap-64.png","id":"openrailwaymap-maxspeeds","max_zoom":20,"name":"OpenRailwayMap Maxspeeds","overlay":true,"privacy_policy_url":"https://www.openrailwaymap.org/en/imprint","type":"tms","url":"https://{switch:a,b,c}.tiles.openrailwaymap.org/maxspeed/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"text":"Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors","url":"https://www.openrailwaymap.org/"},"description":"Overlay imagery showing railway signals based on OpenStreetMap data","i18n":true,"icon":"https://www.openrailwaymap.org/img/openrailwaymap-64.png","id":"openrailwaymap-signalling","max_zoom":20,"name":"OpenRailwayMap Signalling","overlay":true,"privacy_policy_url":"https://www.openrailwaymap.org/en/imprint","type":"tms","url":"https://{switch:a,b,c}.tiles.openrailwaymap.org/signals/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA","url":"https://www.openstreetmap.org/copyright"},"category":"osmbasedmap","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenSeaMap.png","id":"openseamap","max_zoom":18,"name":"OpenSeaMap","overlay":true,"type":"tms","url":"https://tiles.openseamap.org/seamark/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"text":"© OpenSnowMap.org","url":"https://www.opensnowmap.org/"},"category":"osmbasedmap","description":"Overlay imagery for piste mapping in OSM. Updated daily.","icon":"https://www.opensnowmap.org/pics/alpine.png","id":"opensnowmap-overlay","max_zoom":18,"name":"OpenSnowMap overlay","overlay":true,"type":"tms","url":"https://www.opensnowmap.org/pistes/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA","url":"https://www.openstreetmap.org/"},"category":"osmbasedmap","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","id":"osm-mapnik-no_labels","max_zoom":18,"name":"OpenStreetMap (Mapnik, no labels)","type":"tms","url":"https://tiles.wmflabs.org/osm-no-labels/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL","url":"https://www.openstreetmap.org/"},"category":"osmbasedmap","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","id":"osmfr","max_zoom":20,"name":"OpenStreetMap (French Style)","type":"tms","url":"https://{switch:a,b,c}.tile.openstreetmap.fr/osmfr/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"html":"GPS Direction: ← ↓ ↑ → © OpenStreetMap contributors.","required":true,"text":"© OpenStreetMap contributors","url":"https://www.openstreetmap.org/copyright"},"category":"other","description":"Public GPS traces uploaded to OpenStreetMap.","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","id":"osm-gps","license_url":"https://wiki.osmfoundation.org/wiki/Terms_of_Use","max_zoom":20,"name":"OpenStreetMap GPS traces","overlay":true,"privacy_policy_url":"https://wiki.osmfoundation.org/wiki/Privacy_Policy","type":"tms","url":"https://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":false,"text":"© OpenStreetMap contributors, CC-BY-SA","url":"https://www.openstreetmap.org"},"category":"osmbasedmap","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","id":"osm-mapnik-german_style","max_zoom":18,"name":"OpenStreetMap (German Style)","type":"tms","url":"https://{switch:a,b,c,d}.tile.openstreetmap.de/tiles/osmde/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, tiles courtesy of Humanitarian OpenStreetMap Team","url":"https://www.hotosm.org/"},"category":"osmbasedmap","icon":"https://wiki.openstreetmap.org/w/images/thumb/c/c9/Hot_logo.svg/300px-Hot_logo.svg.png","id":"HDM_HOT","max_zoom":20,"name":"OpenStreetMap (HOT Style)","type":"tms","url":"https://{switch:a,b,c}.tile.openstreetmap.fr/hot/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA 2.0","url":"https://www.openstreetmap.org"},"category":"osmbasedmap","default":true,"description":"The default OpenStreetMap layer.","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","id":"MAPNIK","license_url":"https://wiki.osmfoundation.org/wiki/Terms_of_Use","max_zoom":19,"name":"OpenStreetMap (Standard)","privacy_policy_url":"https://wiki.osmfoundation.org/wiki/Privacy_Policy","type":"tms","url":"https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA","url":"https://www.openstreetmap.org"},"category":"osmbasedmap","default":true,"i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-MapnikBlackWhite.png","id":"osm-mapnik-black_and_white","max_zoom":18,"name":"OpenStreetMap (Standard Black & White)","type":"tms","url":"https://tiles.wmflabs.org/bw-mapnik/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Kartendaten: © OpenStreetMap-Mitwirkende, SRTM | Kartendarstellung: © OpenTopoMap (CC-BY-SA)","url":"https://tile.opentopomap.org/about#verwendung"},"category":"osmbasedmap","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenTopoMap.png","id":"OpenTopoMap","max_zoom":17,"min_zoom":3,"name":"OpenTopoMap","type":"tms","url":"https://{switch:a,b,c}.tile.opentopomap.org/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA","url":"https://öpnvkarte.de/"},"category":"osmbasedmap","icon":"https://osmlab.github.io/editor-layer-index/sources/world/PublicTransport(PNV).png","id":"public_transport_oepnv","max_zoom":18,"name":"Public Transport (ÖPNV)","type":"tms","url":"https://tile.memomaps.de/tilegen/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Simon Poole, Data ©OpenStreetMap contributors","url":"https://qa.poole.ch"},"category":"qa","i18n":true,"id":"qa_no_address","max_zoom":18,"name":"QA No Address","overlay":true,"type":"tms","url":"https://tile{switch:2,3}.poole.ch/noaddress/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© Tiles: skobbler Map data: OpenStreetMap contributors","url":"https://maps.skobbler.com"},"category":"osmbasedmap","i18n":true,"icon":"https://www.skobbler.com/images/skobbler_logo_josm.png","id":"skobbler","max_zoom":18,"min_zoom":1,"name":"skobbler","type":"tms","url":"https://tiles{switch:1,2,3,4}-4001b3692e229e3215c9b7a73e528198.skobblermaps.com/TileService/tiles/2.0/00021210101/0/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL","url":"http://maps.stamen.com/#terrain"},"category":"elevation","i18n":true,"icon":"https://stamen.com/wp-content/uploads/2016/07/stamen_compass_rose_small-01.png","id":"stamen-terrain-background","max_zoom":18,"min_zoom":4,"name":"Stamen Terrain","type":"tms","url":"https://stamen-tiles-{switch:a,b,c,d}.a.ssl.fastly.net/terrain-background/{zoom}/{x}/{y}.jpg"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Maps © Thunderforest, Data © OpenStreetMap contributors","url":"https://www.thunderforest.com/terms"},"category":"osmbasedmap","i18n":true,"id":"tf-landscape","license_url":"https://thunderforest.com/terms","max_zoom":22,"name":"Thunderforest Landscape","privacy_policy_url":"https://www.thunderforest.com/privacy","type":"tms","url":"https://{switch:a,b,c}.tile.thunderforest.com/landscape/{zoom}/{x}/{y}.png?apikey={apikey}"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Maps © Thunderforest, Data © OpenStreetMap contributors","url":"https://www.thunderforest.com/terms"},"category":"osmbasedmap","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/TF-OpenCycleMap.png","id":"tf-cycle","license_url":"https://thunderforest.com/terms","max_zoom":22,"name":"Thunderforest OpenCycleMap","privacy_policy_url":"https://www.thunderforest.com/privacy","type":"tms","url":"https://{switch:a,b,c}.tile.thunderforest.com/cycle/{zoom}/{x}/{y}.png?apikey={apikey}"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Maps © Thunderforest, Data © OpenStreetMap contributors","url":"https://www.thunderforest.com/terms"},"category":"osmbasedmap","i18n":true,"id":"tf-outdoors","license_url":"https://thunderforest.com/terms","max_zoom":22,"name":"Thunderforest Outdoors","privacy_policy_url":"https://www.thunderforest.com/privacy","type":"tms","url":"https://{switch:a,b,c}.tile.thunderforest.com/outdoors/{zoom}/{x}/{y}.png?apikey={apikey}"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0","url":"https://cycling.waymarkedtrails.org/en/help/legal"},"category":"other","i18n":true,"icon":"https://static.waymarkedtrails.org/img/map_cycling.png","id":"Waymarked_Trails-Cycling","max_zoom":17,"name":"Waymarked Trails: Cycling","overlay":true,"type":"tms","url":"https://tile.waymarkedtrails.org/cycling/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0","url":"https://hiking.waymarkedtrails.org/en/help/legal"},"category":"other","i18n":true,"icon":"https://static.waymarkedtrails.org/img/map_hiking.png","id":"Waymarked_Trails-Hiking","max_zoom":17,"name":"Waymarked Trails: Hiking","overlay":true,"type":"tms","url":"https://tile.waymarkedtrails.org/hiking/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0","url":"https://mtb.waymarkedtrails.org/en/help/legal"},"category":"other","i18n":true,"icon":"https://static.waymarkedtrails.org/img/map_mtb.png","id":"Waymarked_Trails-MTB","max_zoom":17,"name":"Waymarked Trails: MTB","overlay":true,"type":"tms","url":"https://tile.waymarkedtrails.org/mtb/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0","url":"https://skating.waymarkedtrails.org/en/help/legal"},"category":"other","i18n":true,"icon":"https://static.waymarkedtrails.org/img/map_skating.png","id":"Waymarked_Trails-Skating","max_zoom":17,"name":"Waymarked Trails: Skating","overlay":true,"type":"tms","url":"https://tile.waymarkedtrails.org/skating/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0","url":"https://slopes.waymarkedtrails.org/en/help/legal"},"category":"other","i18n":true,"icon":"https://static.waymarkedtrails.org/img/map_slopes.png","id":"Waymarked_Trails-Winter_Sports","max_zoom":17,"name":"Waymarked Trails: Winter Sports","overlay":true,"type":"tms","url":"https://tile.waymarkedtrails.org/slopes/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0","url":"https://skating.waymarkedtrails.org/en/help/legal"},"category":"other","icon":"https://static.waymarkedtrails.org/img/map_riding.png","id":"Waymarked_Trails-Horse_Riding","max_zoom":17,"name":"Waymarked Trails: Horse Riding","overlay":true,"type":"tms","url":"https://tile.waymarkedtrails.org/riding/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"© OpenStreetMap contributors, CC-BY-SA","url":"https://www.openstreetmap.org/"},"category":"osmbasedmap","id":"wikimedia-map","max_zoom":18,"name":"Wikimedia Map","type":"tms","url":"https://maps.wikimedia.org/osm-intl/{zoom}/{x}/{y}.png"},"type":"Feature"},{"geometry":null,"properties":{"attribution":{"required":true,"text":"Sentinel-2 cloudless - https://s2maps.eu by EOX IT Services GmbH (Contains modified Copernicus Sentinel data 2017 & 2018)","url":"https://s2maps.eu/"},"available_projections":["EPSG:3857","EPSG:4326","EPSG:900913"],"category":"photo","default":false,"description":"Post-processed Sentinel Satellite imagery.","end_date":"2018","i18n":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/eox.png","id":"EOXAT2018CLOUDLESS","license_url":"https://wiki.openstreetmap.org/wiki/Eox.at","max_zoom":18,"name":"eox.at 2018 cloudless","permission_osm":"explicit","privacy_policy_url":"https://eox.at/impressum/","start_date":"2018","type":"wms","url":"https://tiles.maps.eox.at?LAYERS=s2cloudless-2018_3857&STYLES=&FORMAT=image/jpeg&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap"},"type":"Feature"}],"meta":{"format_version":"1.0","generated":"2020-09-25 14:02:52"},"type":"FeatureCollection"}
diff --git a/assets/layers/ghost_bike/ghost_bike.json b/assets/layers/ghost_bike/ghost_bike.json
index 4442e4d..e146d39 100644
--- a/assets/layers/ghost_bike/ghost_bike.json
+++ b/assets/layers/ghost_bike/ghost_bike.json
@@ -80,12 +80,12 @@
"question": {
"en": "On what webpage can one find more information about the Ghost bike or the accident?",
"nl": "Op welke website kan men meer informatie vinden over de Witte fiets of over het ongeval?",
- "de": ""
+ "de": "Auf welcher Webseite kann man mehr Informationen über das Geisterrad oder den Unfall finden?"
},
"render": {
"en": "More information is available",
"nl": "Meer informatie",
- "de": "Auf welcher Webseite kann man mehr Informationen über das Geisterrad oder den Unfall finden?"
+ "de": "Mehr Informationen"
},
"freeform": {
"type": "url",
@@ -106,6 +106,20 @@
"freeform": {
"key": "inscription"
}
+ },
+ {
+ "question": {
+ "nl": "Wanneer werd deze witte fiets geplaatst?",
+ "en": "When was this Ghost bike installed?"
+ },
+ "render": {
+ "nl": "Geplaatst op {start_date}",
+ "en": "Placed on {start_date}"
+ },
+ "freeform": {
+ "key": "start_date",
+ "type": "date"
+ }
}
]
}
\ No newline at end of file
diff --git a/test.ts b/test.ts
index b81a451..9892432 100644
--- a/test.ts
+++ b/test.ts
@@ -1,5 +1,5 @@
-import AvailableBaseLayers from "./Logic/AvailableBaseLayers";
+import {Basemap} from "./Logic/Leaflet/Basemap";
-
-const layers = AvailableBaseLayers.AvailableLayersAt(51.2,3.2);
-console.log(layers);
+const input = "https://geoservices.informatievlaanderen.be/raadpleegdiensten/OGW/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OGWRGB13_15VL&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}";
+const leafletLayer = Basemap.CreateBackgroundLayer("aiv", "AIV", input, "Attr", "http://osm.org", 22, true, false);
+console.log(leafletLayer)
\ No newline at end of file
diff --git a/test/Tag.spec.ts b/test/Tag.spec.ts
index 540dbf3..e8e0bea 100644
--- a/test/Tag.spec.ts
+++ b/test/Tag.spec.ts
@@ -12,6 +12,7 @@ import Translations from "../UI/i18n/Translations";
import {TagRenderingOptions} from "../Customizations/TagRenderingOptions";
import {UIEventSource} from "../Logic/UIEventSource";
import {TagRendering} from "../UI/TagRendering";
+import {Basemap} from "../Logic/Leaflet/Basemap";
new T([
@@ -120,7 +121,5 @@ new T([
equal(true, rendered.indexOf("Niet toegankelijk") > 0)
}
- ]
-
-
+ ],
]);