From dbe643aeac9bd5a08083d250670e9b8285ed56f5 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 12 Mar 2020 14:27:49 -0400 Subject: [PATCH 1/8] Switch from bundled editor-layer-index to fetched imagery-index --- modules/core/data.js | 3 +- modules/renderer/background.js | 249 ++++++++++++++++++++++---- modules/renderer/background_source.js | 6 +- test/spec/spec_helpers.js | 3 +- 4 files changed, 216 insertions(+), 45 deletions(-) diff --git a/modules/core/data.js b/modules/core/data.js index 571762e191..e40b905ba5 100644 --- a/modules/core/data.js +++ b/modules/core/data.js @@ -13,7 +13,8 @@ export function coreData(context) { 'address_formats': 'data/address_formats.min.json', 'deprecated': 'data/deprecated.min.json', 'discarded': 'data/discarded.min.json', - 'imagery': 'data/imagery.min.json', + 'imagery_features': 'https://cdn.jsdelivr.net/npm/@ideditor/imagery-index@0.1/dist/featureCollection.min.json', + 'imagery_sources': 'https://cdn.jsdelivr.net/npm/@ideditor/imagery-index@0.1/dist/sources.min.json', 'intro_graph': 'data/intro_graph.min.json', 'keepRight': 'data/keepRight.min.json', 'languages': 'data/languages.min.json', diff --git a/modules/renderer/background.js b/modules/renderer/background.js index 9fd07463a4..d1bd4722e7 100644 --- a/modules/renderer/background.js +++ b/modules/renderer/background.js @@ -2,6 +2,7 @@ import { dispatch as d3_dispatch } from 'd3-dispatch'; import { interpolateNumber as d3_interpolateNumber } from 'd3-interpolate'; import { select as d3_select } from 'd3-selection'; +import LocationConflation from '@ideditor/location-conflation'; import whichPolygon from 'which-polygon'; import { geoExtent, geoMetersToOffset, geoOffsetToMeters} from '../geo'; @@ -27,50 +28,50 @@ export function rendererBackground(context) { function ensureImageryIndex() { - return context.data().get('imagery') - .then(sources => { + const data = context.data(); + return Promise.all([ data.get('imagery_sources'), data.get('imagery_features') ]) + .then(vals => { if (_imageryIndex) return _imageryIndex; - _imageryIndex = { - imagery: sources, - features: {} - }; - - // use which-polygon to support efficient index and querying for imagery - const features = sources.map(source => { - if (!source.polygon) return null; - // workaround for editor-layer-index weirdness.. - // Add an extra array nest to each element in `source.polygon` - // so the rings are not treated as a bunch of holes: - // what we have: [ [[outer],[hole],[hole]] ] - // what we want: [ [[outer]],[[outer]],[[outer]] ] - const rings = source.polygon.map(ring => [ring]); - - const feature = { - type: 'Feature', - properties: { id: source.id }, - geometry: { type: 'MultiPolygon', coordinates: rings } - }; - - _imageryIndex.features[source.id] = feature; - return feature; - - }).filter(Boolean); + const sources = preprocessSources(Object.values(vals[0])); + const loco = new LocationConflation(vals[1]); + let features = {}; + let backgrounds = []; + + // process all sources + sources.forEach(source => { + // Resolve the locationSet to a GeoJSON feature.. + const resolvedFeature = loco.resolveLocationSet(source.locationSet); + let feature = features[resolvedFeature.id]; + if (!feature) { + feature = JSON.parse(JSON.stringify(resolvedFeature)); // deep clone + feature.properties.sourceIDs = new Set(); + features[resolvedFeature.id] = feature; + } + feature.properties.sourceIDs.add(source.id); - _imageryIndex.query = whichPolygon({ type: 'FeatureCollection', features: features }); + // Features resolved from loco should have area precalculated. + source.area = feature.properties.area || Infinity; - // Instantiate `rendererBackgroundSource` objects for each source - _imageryIndex.backgrounds = sources.map(source => { + // Instantiate a `rendererBackgroundSource` + let background; if (source.type === 'bing') { - return rendererBackgroundSource.Bing(source, dispatch); + background = rendererBackgroundSource.Bing(source, dispatch); } else if (/^EsriWorldImagery/.test(source.id)) { - return rendererBackgroundSource.Esri(source); + background = rendererBackgroundSource.Esri(source); } else { - return rendererBackgroundSource(source); + background = rendererBackgroundSource(source); } + backgrounds.push(background); }); + _imageryIndex = { + features: features, + backgrounds: backgrounds, + query: whichPolygon({ type: 'FeatureCollection', features: Object.values(features) }) + }; + // Add 'None' _imageryIndex.backgrounds.unshift(rendererBackgroundSource.None()); @@ -273,14 +274,16 @@ export function rendererBackground(context) { background.sources = (extent, zoom, includeCurrent) => { if (!_imageryIndex) return []; // called before init()? + // Gather the source ids visible in the given extent let visible = {}; - (_imageryIndex.query.bbox(extent.rectangle(), true) || []) - .forEach(d => visible[d.id] = true); + let hits = _imageryIndex.query.bbox(extent.rectangle(), true) || []; + hits.forEach(properties => { + Array.from(properties.sourceIDs).forEach(sourceID => visible[sourceID] = true); + }); const currSource = baseLayer.source(); return _imageryIndex.backgrounds.filter(source => { - if (!source.polygon) return true; // always include imagery with worldwide coverage if (includeCurrent && currSource === source) return true; // optionally include the current imagery if (zoom && zoom < 6) return false; // optionally exclude local imagery at low zooms return visible[source.id]; // include imagery visible in given extent @@ -474,7 +477,7 @@ export function rendererBackground(context) { ); } - const locator = imageryIndex.backgrounds.find(d => d.overlay && d.default); + const locator = imageryIndex.backgrounds.find(d => d.id === 'mapbox_locator_overlay'); if (locator) { background.toggleOverlayLayer(locator); } @@ -504,10 +507,178 @@ export function rendererBackground(context) { background.offset(geoMetersToOffset(offset)); } } - }) - .catch(() => { /* ignore */ }); + }); + // .catch(() => { /* ignore */ }); }; return utilRebind(background, dispatch, 'on'); } + + + +// Historically, iD has used a different imagery subset than what we pulled +// from the external imagery index. This remapping previously happened +// in the `update_imagery.js` script before the imagery was bundled with iD. +// +// Now that the client fetches imagery at runtime, it needs to happen here. +// *This code should change to be more flexible.* +// +function preprocessSources(sources) { + + // ignore imagery more than 20 years old.. + let cutoffDate = new Date(); + cutoffDate.setFullYear(cutoffDate.getFullYear() - 20); + + const discard = { + 'osmbe': true, // 'OpenStreetMap (Belgian Style)' + 'osmfr': true, // 'OpenStreetMap (French Style)' + 'osm-mapnik-german_style': true, // 'OpenStreetMap (German Style)' + 'HDM_HOT': true, // 'OpenStreetMap (HOT Style)' + 'osm-mapnik-black_and_white': true, // 'OpenStreetMap (Standard Black & White)' + 'osm-mapnik-no_labels': true, // 'OpenStreetMap (Mapnik, no labels)' + 'OpenStreetMap-turistautak': true, // 'OpenStreetMap (turistautak)' + + 'hike_n_bike': true, // 'Hike & Bike' + 'landsat': true, // 'Landsat' + 'skobbler': true, // 'Skobbler' + 'public_transport_oepnv': true, // 'Public Transport (ÖPNV)' + 'tf-cycle': true, // 'Thunderforest OpenCycleMap' + 'tf-landscape': true, // 'Thunderforest Landscape' + 'qa_no_address': true, // 'QA No Address' + 'wikimedia-map': true, // 'Wikimedia Map' + + 'openinframap-petroleum': true, + 'openinframap-power': true, + 'openinframap-telecoms': true, + 'openpt_map': true, + 'openrailwaymap': true, + 'openseamap': true, + 'opensnowmap-overlay': true, + + 'US-TIGER-Roads-2012': true, + 'US-TIGER-Roads-2014': true, + + 'Waymarked_Trails-Cycling': true, + 'Waymarked_Trails-Hiking': true, + 'Waymarked_Trails-Horse_Riding': true, + 'Waymarked_Trails-MTB': true, + 'Waymarked_Trails-Skating': true, + 'Waymarked_Trails-Winter_Sports': true, + + 'OSM_Inspector-Addresses': true, + 'OSM_Inspector-Geometry': true, + 'OSM_Inspector-Highways': true, + 'OSM_Inspector-Multipolygon': true, + 'OSM_Inspector-Places': true, + 'OSM_Inspector-Routing': true, + 'OSM_Inspector-Tagging': true, + + 'EOXAT2018CLOUDLESS': true + }; + + const supportedWMSProjections = { + 'EPSG:4326': true, + 'EPSG:3857': true, + 'EPSG:900913': true, + 'EPSG:3587': true, + 'EPSG:54004': true, + 'EPSG:41001': true, + 'EPSG:102113': true, + 'EPSG:102100': true, + 'EPSG:3785': true + }; + + + let keepImagery = []; + sources.forEach(source => { + if (source.type !== 'tms' && source.type !== 'wms' && source.type !== 'bing') return; + if (source.id in discard) return; + + let im = { + id: source.id, + type: source.type, + name: source.name, + template: source.url, // this one renamed + locationSet: source.locationSet + }; + + // Maxar sources + if (source.id === 'Maxar-Premium') { + im.template = '7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f041cc9f8df06b0345600376663e7dc1cdbc7df16876d8b5d006ed5782e6af4bfe2ff5a292'; + im.encrypted = true; + } else if (source.id === 'Maxar-Standard') { + im.template = '7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f010c8c9d7fb6b534560012461377dc1cdb672f16827dfe0d005bf5685b7ac4ea97cf5f795'; + im.encrypted = true; + } + + // A few sources support 512px tiles + if (source.id === 'Mapbox') { + im.template = im.template.replace('.jpg', '@2x.jpg'); + im.tileSize = 512; + } else if (source.id === 'mtbmap-no') { + im.tileSize = 512; + } else { + im.tileSize = 256; + } + + // Some WMS sources are supported, check projection + if (source.type === 'wms') { + const projection = (source.available_projections || []).find(p => supportedWMSProjections[p]); + if (!projection) return; + if (sources.some(other => other.name === source.name && other.type !== source.type)) return; + im.projection = projection; + } + + + let startDate, endDate, isValid; + + if (source.end_date) { + endDate = new Date(source.end_date); + isValid = !isNaN(endDate.getTime()); + if (isValid) { + if (endDate <= cutoffDate) return; // too old + im.endDate = endDate; + } + } + + if (source.start_date) { + startDate = new Date(source.start_date); + isValid = !isNaN(startDate.getTime()); + if (isValid) { + im.startDate = startDate; + } + } + + im.zoomExtent = [ + source.min_zoom || 0, + source.max_zoom || 24 + ]; + + if (source.id === 'mapbox_locator_overlay') { + im.overzoom = false; + } + + const attribution = source.attribution || {}; + if (attribution.url) { im.terms_url = attribution.url; } + if (attribution.text) { im.terms_text = attribution.text; } + if (attribution.html) { im.terms_html = attribution.html; } + + + if (source.icon) { + if (/^http(s)?/i.test(source.icon)) { + im.icon = source.icon; + } else { + im.icon = `https://cdn.jsdelivr.net/npm/@ideditor/imagery-index@0.1/dist/images/${source.icon}`; + } + } + + if (source.best) { im.best = source.best; } + if (source.overlay) { im.overlay = source.overlay; } + if (source.description) { im.description = source.description; } + + keepImagery.push(im); + }); + + return keepImagery; +} diff --git a/modules/renderer/background_source.js b/modules/renderer/background_source.js index 77eb41426a..581f52493d 100644 --- a/modules/renderer/background_source.js +++ b/modules/renderer/background_source.js @@ -1,4 +1,4 @@ -import { geoArea as d3_geoArea, geoMercatorRaw as d3_geoMercatorRaw } from 'd3-geo'; +import { geoMercatorRaw as d3_geoMercatorRaw } from 'd3-geo'; import { json as d3_json } from 'd3-fetch'; import { t } from '../util/locale'; @@ -72,9 +72,7 @@ export function rendererBackgroundSource(data) { source.area = function() { - if (!data.polygon) return Number.MAX_VALUE; // worldwide - var area = d3_geoArea({ type: 'MultiPolygon', coordinates: [ data.polygon ] }); - return isNaN(area) ? 0 : area; + return data.area || Number.MAX_VALUE; }; diff --git a/test/spec/spec_helpers.js b/test/spec/spec_helpers.js index 7890bb1381..d55ef36f92 100644 --- a/test/spec/spec_helpers.js +++ b/test/spec/spec_helpers.js @@ -11,7 +11,8 @@ for (var k in iD.services) { delete iD.services[k]; } iD.data.locales = { en: { rtl: false, languageNames: {}, scriptNames: {} }}; iD.data.locale_en = { en: {} }; // Initializing `coreContext` initializes `_background`, which tries loading: -iD.data.imagery = []; +iD.data.imagery_sources = []; +iD.data.imagery_features = { type: 'FeatureCollection', features: [] }; // Initializing `coreContext` initializes `_presets`, which tries loading: iD.data.preset_categories = {}; iD.data.preset_defaults = {}; From 50353cf59678b69f96da07a084cfed3fe04b093c Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 12 Mar 2020 15:25:09 -0400 Subject: [PATCH 2/8] Switch references from editor-layer-index -> imagery-index - remove the update_imagery script and steps to run it (this happens at runtime now) - update privacy policy, faq, release notes, readme --- FAQ.md | 3 +- PRIVACY.md | 5 +- README.md | 6 +- RELEASING.md | 5 +- data/imagery.json | 77470 ------------------------------------ dist/locales/en.json | 519 +- modules/core/context.js | 2 +- package.json | 3 +- scripts/build_data.js | 11 +- scripts/deploy.sh | 6 - scripts/update_imagery.js | 203 - 11 files changed, 342 insertions(+), 77891 deletions(-) delete mode 100644 data/imagery.json delete mode 100644 scripts/update_imagery.js diff --git a/FAQ.md b/FAQ.md index 402aa3f265..14f7bd5727 100644 --- a/FAQ.md +++ b/FAQ.md @@ -15,8 +15,7 @@ To report an issue with missing or cloudy imagery: * _For Bing Satellite layer:_ Open the location in [Bing Maps](https://www.bing.com/maps), click the "Feedback" button and choose "Report a map problem" option. * _For Esri World Imagery:_ You can open a new issue using the [Imagery Map Feedback tool](https://www.arcgis.com/home/item.html?id=ebdfa4146680410bb952c7d532ea5407). -iD's list of available background imagery sources come from the [editor-layer-index](https://github.com/osmlab/editor-layer-index) -project. If you know of a more recent imagery source that is licensed for this use, +iD's list of available background imagery sources come from the [@ideditor/imagery-index](https://github.com/ideditor/imagery-index) project. If you know of a more recent imagery source that is licensed for this use, please open a request there with the link and license details. diff --git a/PRIVACY.md b/PRIVACY.md index 57277c6d3a..d5a63019e3 100644 --- a/PRIVACY.md +++ b/PRIVACY.md @@ -24,7 +24,7 @@ Details on that are [here](https://github.com/openstreetmap/iD/blob/master/modul ### Background imagery and other third party services -If you use background or streetside imagery to aid your edits, your browser must fetch information and images from a third-party imagery host. That use is governed by the respective privacy policies of each imagery host. The [Editor Layer Index](https://github.com/osmlab/editor-layer-index) and [iD Editor GitHub code](https://github.com/openstreetmap/iD/blob/master/modules/ui/map_data.js) provides detailed information as to imagery layer available in iD. In addition, you may use third party services to assist your editing or check for errors. See [here](https://github.com/openstreetmap/iD/tree/master/modules/services) for details. If you do not wish to interact with these third parties, do not use these features. +If you use background or streetside imagery to aid your edits, your browser must fetch information and images from a third-party imagery host. That use is governed by the respective privacy policies of each imagery host. The [Imagery Index](https://github.com/ideditor/imagery-index) and [iD Editor GitHub code](https://github.com/openstreetmap/iD/blob/master/modules/ui/map_data.js) provide detailed information as to imagery layers available in iD. In addition, you may use third party services to assist your editing or check for errors. See [here](https://github.com/openstreetmap/iD/tree/master/modules/services) for details. If you do not wish to interact with these third parties, do not use these features. ### Name Suggestion Index @@ -37,4 +37,5 @@ If you believe that we hold information that would allow us to correct, amend, o ### Changelog -* _2019-Dec-17_ - Initial version. \ No newline at end of file +* _2020-Mar-02_ - Swap osmlab/editor-layer-index -> ideditor/imagery-index +* _2019-Dec-17_ - Initial version. diff --git a/README.md b/README.md index ff57f64e38..a81f49b8e0 100644 --- a/README.md +++ b/README.md @@ -87,16 +87,18 @@ development, see [CONTRIBUTING.md](CONTRIBUTING.md). iD is available under the [ISC License](https://opensource.org/licenses/ISC). See the [LICENSE.md](LICENSE.md) file for more details. -iD also bundles portions of the following open source software. +iD also relies on portions of the following open source software. * [D3.js (BSD-3-Clause)](https://github.com/d3/d3) * [CLDR (Unicode Consortium Terms of Use)](https://github.com/unicode-cldr/cldr-json) -* [editor-layer-index (CC-BY-SA 3.0)](https://github.com/osmlab/editor-layer-index) * [Font Awesome (CC-BY 4.0)](https://fontawesome.com/license) * [Maki (CC0 1.0)](https://github.com/mapbox/maki) +* [Temaki (CC0 1.0)](https://github.com/ideditor/temaki) * [Mapillary JS (MIT)](https://github.com/mapillary/mapillary-js) +* [Pannellum (MIT)](https://github.com/mpetroff/pannellum) * [name-suggestion-index (BSD-3-Clause)](https://github.com/osmlab/name-suggestion-index) * [osm-community-index (ISC)](https://github.com/osmlab/osm-community-index) +* [imagery-index (ISC)](https://github.com/ideditor/imagery-index) ## Thank you diff --git a/RELEASING.md b/RELEASING.md index 4e16e7f102..edee7fc021 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -16,11 +16,8 @@ on the iD project, and then create this file with contents like
 #### Update `2.x` branch
 ```bash
 $  git checkout 2.x
-$  rm -rf node_modules/editor-layer-index/
-$  npm install
-$  npm run imagery
+$  npm run install
 $  npm run all
-$  git add . && git commit -m 'npm run imagery'
 $  npm run translations
 $  git add . && git commit -m 'npm run translations'
 ```
diff --git a/data/imagery.json b/data/imagery.json
deleted file mode 100644
index 3f7ee0a465..0000000000
--- a/data/imagery.json
+++ /dev/null
@@ -1,77470 +0,0 @@
-[
-  {
-    "id": "ACT2017",
-    "name": "ACTmapi Imagery 2017",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2017-05-01T00:00:00.000Z",
-    "startDate": "2017-05-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://actmapi-actgov.opendata.arcgis.com/datasets/884456bde6fd46d68e0c05479f55d548",
-    "terms_text": "© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory",
-    "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png"
-  },
-  {
-    "id": "ACT2018",
-    "name": "ACTmapi Imagery 2018",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2018-03-19T00:00:00.000Z",
-    "startDate": "2018-03-19T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory",
-    "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png"
-  },
-  {
-    "id": "ACT2019",
-    "name": "ACTmapi Imagery Feb 2019",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2019-02-01T00:00:00.000Z",
-    "startDate": "2019-02-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://actmapi.act.gov.au/terms.html",
-    "terms_text": "Aerial Imagery from ACTMapi ©ACT Government",
-    "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png"
-  },
-  {
-    "id": "ACT201906",
-    "name": "ACTmapi Imagery Jun 2019",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2019-06-01T00:00:00.000Z",
-    "startDate": "2019-06-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://actmapi.act.gov.au/terms.html",
-    "terms_text": "Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd",
-    "best": true,
-    "icon": "http://actmapi.act.gov.au/img/apple-touch-icon.png"
-  },
-  {
-    "id": "AGRI-black_and_white-2.5m",
-    "name": "AGRI black-and-white 2.5m",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.agri.openstreetmap.org/layer/au_ga_agri/{zoom}/{x}/{y}.png",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2006-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 16],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.gov.au/dataset/agri-the-australian-geographic-reference-image",
-    "terms_text": "AGRI, Geoscience Australia"
-  },
-  {
-    "id": "AIV_DHMV_II_HILL_25cm",
-    "name": "AIV Digitaal Hoogtemodel Vlaanderen II, multidirectionale hillshade 0,25 m",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© agentschap Informatie Vlaanderen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"
-  },
-  {
-    "id": "AIV_DHMV_II_SVF_25cm",
-    "name": "AIV Digitaal Hoogtemodel Vlaanderen II, Skyview factor 0,25 m",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© agentschap Informatie Vlaanderen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"
-  },
-  {
-    "id": "AGIV10cm",
-    "name": "AIV Flanders 2013-2015 aerial imagery 10cm",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© agentschap Informatie Vlaanderen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"
-  },
-  {
-    "id": "AGIVFlandersGRB",
-    "name": "AIV Flanders GRB",
-    "type": "tms",
-    "template": "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}",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© agentschap Informatie Vlaanderen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"
-  },
-  {
-    "id": "AGIV",
-    "name": "AIV Flanders most recent aerial imagery",
-    "type": "tms",
-    "template": "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}",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© agentschap Informatie Vlaanderen",
-    "best": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"
-  },
-  {
-    "id": "alagoas_litoral",
-    "name": "Alagoas Litoral 2006",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "ARA_Bushfires_2020",
-    "name": "ARA Bushfires 2020",
-    "type": "tms",
-    "template": "https://cogeoxyz.b-cdn.net/{zoom}/{x}/{y}.jpg?url=https%3A%2F%2Fwww.alantgeo.com.au%2Fshare%2Fara.json.gz",
-    "endDate": "2020-01-28T00:00:00.000Z",
-    "startDate": "2020-01-08T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [138.87801, -34.94052],
-        [138.87835, -34.94068],
-        [138.87831, -34.94269],
-        [138.87205, -34.95774],
-        [138.86315, -34.95569],
-        [138.86336, -34.95433],
-        [138.86311, -34.95417],
-        [138.86389, -34.95199],
-        [138.86391, -34.95165],
-        [138.86408, -34.95119],
-        [138.86416, -34.95119],
-        [138.86445, -34.95075],
-        [138.86452, -34.95032],
-        [138.86438, -34.95019],
-        [138.86968, -34.93831],
-        [138.87801, -34.94052]
-      ],
-      [
-        [136.78813, -35.79021],
-        [136.80204, -35.83806],
-        [136.83592, -35.8317],
-        [136.8506, -35.82891],
-        [136.8716, -35.82312],
-        [136.86707, -35.81324],
-        [136.86682, -35.80963],
-        [136.85375, -35.77688],
-        [136.78813, -35.79021]
-      ],
-      [
-        [138.86807, -34.93828],
-        [138.86826, -34.93821],
-        [138.86735, -34.93686],
-        [138.86723, -34.93691],
-        [138.86533, -34.93436],
-        [138.86559, -34.93416],
-        [138.86484, -34.93295],
-        [138.86417, -34.93301],
-        [138.86359, -34.93172],
-        [138.86314, -34.93124],
-        [138.86278, -34.92998],
-        [138.86287, -34.92993],
-        [138.86283, -34.92969],
-        [138.86208, -34.92949],
-        [138.86231, -34.92617],
-        [138.86292, -34.92438],
-        [138.8631, -34.92245],
-        [138.86314, -34.92103],
-        [138.8629, -34.91965],
-        [138.86297, -34.91663],
-        [138.86322, -34.91657],
-        [138.86316, -34.91025],
-        [138.86305, -34.90727],
-        [138.86284, -34.90528],
-        [138.86309, -34.90418],
-        [138.86604, -34.90359],
-        [138.86635, -34.90106],
-        [138.863, -34.90083],
-        [138.86276, -34.89931],
-        [138.86286, -34.89857],
-        [138.86329, -34.89855],
-        [138.86341, -34.8979],
-        [138.86321, -34.89565],
-        [138.86341, -34.89554],
-        [138.86304, -34.89471],
-        [138.86262, -34.89483],
-        [138.86179, -34.89319],
-        [138.86153, -34.89226],
-        [138.86152, -34.89137],
-        [138.86103, -34.89139],
-        [138.86034, -34.88996],
-        [138.85996, -34.88978],
-        [138.85991, -34.88912],
-        [138.86018, -34.88765],
-        [138.85973, -34.88754],
-        [138.8598, -34.88391],
-        [138.86084, -34.88195],
-        [138.86139, -34.88078],
-        [138.86095, -34.88054],
-        [138.86134, -34.8791],
-        [138.86243, -34.8769],
-        [138.86267, -34.8766],
-        [138.87236, -34.87677],
-        [138.87143, -34.87825],
-        [138.87138, -34.87853],
-        [138.87135, -34.87861],
-        [138.87038, -34.87976],
-        [138.86999, -34.87966],
-        [138.86926, -34.88081],
-        [138.8694, -34.88087],
-        [138.86915, -34.88156],
-        [138.869, -34.88228],
-        [138.86883, -34.88303],
-        [138.86876, -34.88322],
-        [138.86873, -34.88344],
-        [138.86906, -34.88358],
-        [138.86857, -34.88607],
-        [138.86809, -34.886],
-        [138.86823, -34.88711],
-        [138.86833, -34.88711],
-        [138.86861, -34.88837],
-        [138.86869, -34.88835],
-        [138.86908, -34.88958],
-        [138.8696, -34.88952],
-        [138.87023, -34.8908],
-        [138.87031, -34.89078],
-        [138.87145, -34.89338],
-        [138.87169, -34.89335],
-        [138.87328, -34.89636],
-        [138.87319, -34.89643],
-        [138.87338, -34.89707],
-        [138.87353, -34.8972],
-        [138.87313, -34.9137],
-        [138.87206, -34.91747],
-        [138.87232, -34.9188],
-        [138.87188, -34.92355],
-        [138.87224, -34.92772],
-        [138.87275, -34.92764],
-        [138.87246, -34.93834],
-        [138.86807, -34.93828]
-      ],
-      [
-        [136.95888, -35.74871],
-        [136.95748, -35.74715],
-        [136.9575, -35.7195],
-        [137.00215, -35.71913],
-        [137.00181, -35.74856],
-        [136.95888, -35.74871]
-      ],
-      [
-        [138.8973, -34.96183],
-        [138.89707, -34.97142],
-        [138.89738, -34.97167],
-        [138.89964, -34.97145],
-        [138.90168, -34.97103],
-        [138.90187, -34.97144],
-        [138.90549, -34.97111],
-        [138.90853, -34.97042],
-        [138.90863, -34.97063],
-        [138.91298, -34.96985],
-        [138.91305, -34.97011],
-        [138.91438, -34.97007],
-        [138.91448, -34.97041],
-        [138.91894, -34.97082],
-        [138.91909, -34.97103],
-        [138.92087, -34.97114],
-        [138.92347, -34.97104],
-        [138.9235, -34.97115],
-        [138.92477, -34.9712],
-        [138.92483, -34.9715],
-        [138.92636, -34.97164],
-        [138.92641, -34.97179],
-        [138.92928, -34.97199],
-        [138.92915, -34.97247],
-        [138.93021, -34.97292],
-        [138.93003, -34.9733],
-        [138.93261, -34.97481],
-        [138.93228, -34.97523],
-        [138.9335, -34.97625],
-        [138.93336, -34.97648],
-        [138.93594, -34.97866],
-        [138.93624, -34.97842],
-        [138.93691, -34.97899],
-        [138.93639, -34.97934],
-        [138.93728, -34.98066],
-        [138.93717, -34.9807],
-        [138.93771, -34.98185],
-        [138.93691, -34.98207],
-        [138.93784, -34.98488],
-        [138.93807, -34.98486],
-        [138.93835, -34.98608],
-        [138.93809, -34.98614],
-        [138.93801, -34.98675],
-        [138.93754, -34.98709],
-        [138.93758, -34.98717],
-        [138.93649, -34.98797],
-        [138.93657, -34.98816],
-        [138.93564, -34.98883],
-        [138.93567, -34.98892],
-        [138.93471, -34.98951],
-        [138.93477, -34.98968],
-        [138.93394, -34.99018],
-        [138.93326, -34.9905],
-        [138.93199, -34.99029],
-        [138.92691, -34.98966],
-        [138.92523, -34.98985],
-        [138.92407, -34.99293],
-        [138.92531, -34.99356],
-        [138.93157, -34.99617],
-        [138.93278, -34.99551],
-        [138.93538, -34.99644],
-        [138.93605, -34.99658],
-        [138.93563, -34.99732],
-        [138.9355, -34.99729],
-        [138.93529, -34.99774],
-        [138.94749, -35.00282],
-        [138.94672, -35.00115],
-        [138.9469, -35.00106],
-        [138.94656, -35.00011],
-        [138.94682, -34.99994],
-        [138.94632, -34.9987],
-        [138.94748, -34.9981],
-        [138.94651, -34.99647],
-        [138.94621, -34.99564],
-        [138.94647, -34.9952],
-        [138.94484, -34.99378],
-        [138.94441, -34.99298],
-        [138.94486, -34.99145],
-        [138.9443, -34.99124],
-        [138.94449, -34.99086],
-        [138.94519, -34.99138],
-        [138.94624, -34.99004],
-        [138.94741, -34.98938],
-        [138.94765, -34.98934],
-        [138.94864, -34.98773],
-        [138.94845, -34.98752],
-        [138.94836, -34.98707],
-        [138.94872, -34.98623],
-        [138.94842, -34.98506],
-        [138.94823, -34.98499],
-        [138.9483, -34.98472],
-        [138.94893, -34.98461],
-        [138.94886, -34.98327],
-        [138.94928, -34.9823],
-        [138.94923, -34.98104],
-        [138.94804, -34.97867],
-        [138.94776, -34.97864],
-        [138.94636, -34.97576],
-        [138.94663, -34.97554],
-        [138.94425, -34.97245],
-        [138.94278, -34.97129],
-        [138.94309, -34.97077],
-        [138.93948, -34.96835],
-        [138.93955, -34.96809],
-        [138.9379, -34.96724],
-        [138.93827, -34.96648],
-        [138.93337, -34.96412],
-        [138.93051, -34.96352],
-        [138.91532, -34.96137],
-        [138.90088, -34.96109],
-        [138.8973, -34.96183]
-      ],
-      [
-        [137.49796, -35.71525],
-        [137.4631, -35.72999],
-        [137.46169, -35.71908],
-        [137.46344, -35.71793],
-        [137.46392, -35.71402],
-        [137.46475, -35.71145],
-        [137.47012, -35.70906],
-        [137.47956, -35.70784],
-        [137.4925, -35.70344],
-        [137.49246, -35.70536],
-        [137.49283, -35.70687],
-        [137.4922, -35.70704],
-        [137.49247, -35.70835],
-        [137.49287, -35.70835],
-        [137.49599, -35.70739],
-        [137.49796, -35.71525]
-      ],
-      [
-        [138.90663, -34.86848],
-        [138.90687, -34.86785],
-        [138.90865, -34.86776],
-        [138.90924, -34.86401],
-        [138.90898, -34.86392],
-        [138.909, -34.86335],
-        [138.90912, -34.86334],
-        [138.90927, -34.86183],
-        [138.90989, -34.86],
-        [138.91025, -34.85997],
-        [138.9109, -34.85825],
-        [138.91106, -34.85834],
-        [138.91136, -34.85758],
-        [138.91216, -34.85349],
-        [138.91623, -34.85342],
-        [138.92178, -34.8528],
-        [138.92231, -34.84986],
-        [138.92259, -34.84588],
-        [138.92269, -34.84071],
-        [138.92213, -34.83547],
-        [138.92306, -34.83048],
-        [138.92268, -34.82766],
-        [138.91144, -34.82613],
-        [138.90624, -34.82888],
-        [138.90544, -34.83152],
-        [138.90562, -34.84559],
-        [138.90563, -34.85201],
-        [138.90736, -34.85243],
-        [138.9068, -34.85393],
-        [138.90376, -34.85335],
-        [138.90043, -34.86077],
-        [138.90384, -34.86159],
-        [138.90337, -34.86243],
-        [138.90231, -34.86227],
-        [138.90144, -34.8642],
-        [138.90306, -34.86467],
-        [138.90259, -34.86745],
-        [138.90663, -34.86848]
-      ],
-      [
-        [138.89524, -34.87881],
-        [138.89429, -34.87709],
-        [138.8944, -34.87571],
-        [138.89496, -34.87562],
-        [138.89511, -34.87533],
-        [138.89543, -34.87529],
-        [138.89717, -34.8713],
-        [138.89766, -34.87135],
-        [138.89871, -34.8697],
-        [138.90109, -34.87036],
-        [138.90098, -34.8707],
-        [138.90279, -34.87129],
-        [138.90244, -34.87257],
-        [138.90578, -34.8733],
-        [138.90581, -34.87362],
-        [138.9087, -34.87421],
-        [138.90636, -34.88072],
-        [138.90588, -34.8811],
-        [138.90522, -34.88113],
-        [138.90305, -34.87875],
-        [138.89847, -34.87856],
-        [138.89853, -34.87811],
-        [138.89524, -34.87881]
-      ]
-    ],
-    "terms_url": "https://www.airborneresearch.org.au/",
-    "terms_text": "ARA - Airborne Research Australia",
-    "best": true,
-    "icon": "https://static.wixstatic.com/media/a40742_9e0c1ee9ed0743a8bbf73b2fe6613802.gif"
-  },
-  {
-    "id": "arapiraca_al",
-    "name": "Arapiraca AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "CRAIG-Auvergne-2013",
-    "name": "Auvergne 2013 25cm CRAIG",
-    "type": "tms",
-    "template": "https://tiles.craig.fr/osm/wmts/1.0.0/ortho_2013/webmercator/{zoom}/{x}/{y}.jpeg",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://ids.craig.fr/geocat/srv/fre/catalog.search?node=srv#/metadata/8cabc987-829c-4c9f-943b-6a0e255cd73",
-    "terms_text": "Orthophotographie CRAIG/Sintegra/IGN 2013"
-  },
-  {
-    "id": "CRAIG-Auvergne-2016",
-    "name": "Auvergne 2016 25cm CRAIG",
-    "type": "tms",
-    "template": "https://tiles.craig.fr/ortho/wmts/1.0.0/ortho_2016/webmercator/{zoom}/{x}/{y}.jpeg",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://ids.craig.fr/geocat/srv/fre/catalog.search?node=srv#/metadata/e37c057b-5884-429b-8bec-5db0baef0ee",
-    "terms_text": "CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016"
-  },
-  {
-    "id": "BANO",
-    "name": "BANO",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.layers.openstreetmap.fr/bano/{zoom}/{x}/{y}.png",
-    "zoomExtent": [12, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat",
-    "terms_text": "Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL",
-    "description": "French address registry or Base Adresses Nationale Ouverte",
-    "overlay": true
-  },
-  {
-    "id": "lu.geoportail.opendata.basemap",
-    "name": "Basemap geoportail.lu",
-    "type": "tms",
-    "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/basemap/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
-    "endDate": "2010-07-20T00:00:00.000Z",
-    "startDate": "2013-07-19T00:00:00.000Z",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts",
-    "terms_text": "Administration du Cadastre et de la Topographie",
-    "icon": "https://www.geoportail.lu/static/img/lion.png"
-  },
-  {
-    "id": "basemap.at",
-    "name": "basemap.at",
-    "type": "tms",
-    "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://basemap.at",
-    "terms_text": "basemap.at",
-    "description": "Basemap of Austria, based on government data.",
-    "icon": "https://www.basemap.at/images/logo_basemap.jpg"
-  },
-  {
-    "id": "basemap.at-orthofoto",
-    "name": "basemap.at Orthofoto",
-    "type": "tms",
-    "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://basemap.at",
-    "terms_text": "basemap.at",
-    "best": true,
-    "description": "Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.",
-    "icon": "https://www.basemap.at/images/logo_basemap.jpg"
-  },
-  {
-    "id": "basemap.at-overlay",
-    "name": "basemap.at Overlay",
-    "type": "tms",
-    "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmapoverlay/normal/google3857/{zoom}/{y}/{x}.png",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://basemap.at",
-    "terms_text": "basemap.at",
-    "description": "Annotation overlay provided by basemap.at.",
-    "icon": "https://www.basemap.at/images/logo_basemap.jpg",
-    "overlay": true
-  },
-  {
-    "id": "bavaria-80cm",
-    "name": "Bavaria (80 cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [7, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.ldbv.bayern.de/",
-    "terms_text": "Bayerische Vermessungsverwaltung",
-    "best": true
-  },
-  {
-    "id": "route500hydro",
-    "name": "BD Carthage",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.tile.openstreetmap.fr/route500hydro/{zoom}/{x}/{y}.png",
-    "zoomExtent": [6, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.sandre.eaufrance.fr/actualite/la-bd-carthage-en-licence-ouverte-open-licence",
-    "terms_text": "Tiles © cquest@Openstreetmap France, data © Onema - IGN, LO/OL",
-    "description": "Réseau hydrographique: cours et plans d'eau et POI",
-    "overlay": true
-  },
-  {
-    "id": "fr.ign.bdortho",
-    "name": "BDOrtho IGN",
-    "type": "tms",
-    "template": "https://proxy-ign.openstreetmap.fr/94GjiyqD/bdortho/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [2, 21],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://openstreetmap.fr/bdortho",
-    "terms_text": "BDOrtho IGN",
-    "best": true,
-    "icon": "http://www.ign.fr/institut/sites/all/themes/ign_institut/logo.png"
-  },
-  {
-    "id": "Benin_cotonou_pleiade_2016",
-    "name": "Benin: Cotonou Pleiade 2016",
-    "type": "tms",
-    "template": "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}",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "best": true
-  },
-  {
-    "id": "Berlin-2011",
-    "name": "Berlin aerial photography 2011",
-    "type": "wms",
-    "template": "https://fbinter.stadt-berlin.de/fb/wms/senstadt/k_luftbild2011_20?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geoportal Berlin/Digitale farbige Orthophotos 2011"
-  },
-  {
-    "id": "Berlin-2014",
-    "name": "Berlin aerial photography 2014",
-    "type": "tms",
-    "template": "https://tiles.codefor.de/berlin-2014/{zoom}/{x}/{y}.png",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geoportal Berlin/Digitale farbige Orthophotos 2014"
-  },
-  {
-    "id": "Berlin-2015",
-    "name": "Berlin aerial photography 2015",
-    "type": "tms",
-    "template": "https://tiles.codefor.de/berlin-2015/{zoom}/{x}/{y}.png",
-    "endDate": "2015-08-03T00:00:00.000Z",
-    "startDate": "2015-08-02T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geoportal Berlin/Digitale farbige Orthophotos 2015"
-  },
-  {
-    "id": "Berlin-2016",
-    "name": "Berlin aerial photography 2016",
-    "type": "tms",
-    "template": "https://tiles.codefor.de/berlin-2016/{zoom}/{x}/{y}.png",
-    "endDate": "2016-04-03T00:00:00.000Z",
-    "startDate": "2016-04-02T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geoportal Berlin/Digitale farbige Orthophotos 2016"
-  },
-  {
-    "id": "Berlin-2016-infrared",
-    "name": "Berlin aerial photography 2016 (infrared)",
-    "type": "tms",
-    "template": "https://tiles.codefor.de/berlin-2016i/{zoom}/{x}/{y}.png",
-    "endDate": "2016-04-03T00:00:00.000Z",
-    "startDate": "2016-04-02T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geoportal Berlin/Digitale Color-Infrarot-Orthophotos 2016"
-  },
-  {
-    "id": "Berlin-2017",
-    "name": "Berlin aerial photography 2017",
-    "type": "tms",
-    "template": "https://tiles.codefor.de/berlin-2017/{zoom}/{x}/{y}.png",
-    "endDate": "2017-03-28T00:00:00.000Z",
-    "startDate": "2017-03-27T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geoportal Berlin/Digitale farbige Orthophotos 2017"
-  },
-  {
-    "id": "Berlin-2018",
-    "name": "Berlin aerial photography 2018",
-    "type": "tms",
-    "template": "https://tiles.codefor.de/berlin-2018/{zoom}/{x}/{y}.png",
-    "endDate": "2018-04-07T00:00:00.000Z",
-    "startDate": "2018-03-19T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geoportal Berlin/Digitale farbige Orthophotos 2018"
-  },
-  {
-    "id": "Berlin-2019",
-    "name": "Berlin aerial photography 2019",
-    "type": "tms",
-    "template": "https://tiles.codefor.de/berlin-2019/{zoom}/{x}/{y}.png",
-    "endDate": "2019-04-06T00:00:00.000Z",
-    "startDate": "2019-04-01T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geoportal Berlin/Digitale farbige Orthophotos 2019 (DOP20RGB)",
-    "best": true
-  },
-  {
-    "id": "Bing",
-    "name": "Bing aerial imagery",
-    "type": "bing",
-    "template": "https://www.bing.com/maps",
-    "zoomExtent": [1, 22],
-    "default": true,
-    "description": "Satellite and aerial imagery.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/Bing.png"
-  },
-  {
-    "id": "Bologna-Orthophoto-2017",
-    "name": "Bologna ortofoto 2017",
-    "type": "tms",
-    "template": "https://sitmappe.comune.bologna.it/tms/tileserver/Ortofoto2017/{zoom}/{x}/{y}.png",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://dati.comune.bologna.it/node/3449",
-    "terms_text": "© Comune di Bologna cc-by 4.0 ODbL compliant",
-    "best": true
-  },
-  {
-    "id": "Bonvillars-2013",
-    "name": "Bonvillars Orthophoto 2013",
-    "type": "tms",
-    "template": "https://osmdata.asitvd.ch/tiles/bonvillars2013/{zoom}/{x}/{y}.png",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [14, 20],
-    "polygon": [
-      [
-        [6.66713, 46.83358],
-        [6.66313, 46.83833],
-        [6.67213, 46.84191],
-        [6.6749, 46.84226],
-        [6.67843, 46.83807],
-        [6.66713, 46.83358]
-      ]
-    ],
-    "terms_url": "https://osmdata.asitvd.ch/",
-    "terms_text": "Bonvillars - Orthophoto technique 2013"
-  },
-  {
-    "id": "Bordeaux_2012",
-    "name": "Bordeaux - 2012",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2012/{zoom}/{x}/{y}",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "Communauté urbaine de Bordeaux - 2012"
-  },
-  {
-    "id": "Bordeaux_2016",
-    "name": "Bordeaux 2016",
-    "type": "tms",
-    "template": "http://tms.bordeaux.inria.fr/bdx2016/{zoom}/{x}/{y}.jpg",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [14, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "Bordeaux Métropole - 2016"
-  },
-  {
-    "id": "branquinha_al",
-    "name": "Branquinha AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "Budapest_XI_2015",
-    "name": "Budapest district XI orthophoto 2015",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://terinfo.ujbuda.hu",
-    "terms_text": "Budapest XI. kerület önkormányzata",
-    "description": "5 cm resolution bald image"
-  },
-  {
-    "id": "Budapest_XI_2017",
-    "name": "Budapest district XI orthophoto 2017",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2017-03-01T00:00:00.000Z",
-    "startDate": "2017-03-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://terinfo.ujbuda.hu",
-    "terms_text": "Budapest XI. kerület önkormányzata",
-    "best": true,
-    "description": "5 cm resolution bald image"
-  },
-  {
-    "id": "Cadastre",
-    "name": "Cadastre",
-    "type": "tms",
-    "template": "http://tms.cadastre.openstreetmap.fr/*/tout/{zoom}/{x}/{y}.png",
-    "zoomExtent": [12, 22],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation",
-    "terms_text": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2020",
-    "description": "French land registry",
-    "icon": "https://svn.openstreetmap.org/applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png"
-  },
-  {
-    "id": "lu.geoportail.opendata.cadastre",
-    "name": "Cadastre geoportail.lu",
-    "type": "tms",
-    "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/cadastre/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts",
-    "terms_text": "Administration du Cadastre et de la Topographie",
-    "icon": "https://www.geoportail.lu/static/img/lion.png"
-  },
-  {
-    "id": "cajueiro_al",
-    "name": "Cajueiro AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "osm-cambodia_laos_thailand_vietnam-bilingual",
-    "name": "Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tile.osm-tools.org/osm/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://www.osm-tools.org",
-    "terms_text": "© osm-tools.org & OpenStreetMap contributors, CC-BY-SA"
-  },
-  {
-    "id": "campo_alegre_al",
-    "name": "Campo Alegre AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "canaan_drone_red_cross_201712",
-    "name": "Canaan - American Red Cross, Dec-2017",
-    "type": "tms",
-    "template": "https://tiles.openaerialmap.org/5ac65a9f91b5310010e0d489/0/5ac65a9f91b5310010e0d48a/{zoom}/{x}/{y}.png",
-    "endDate": "2017-12-20T00:00:00.000Z",
-    "startDate": "2017-12-11T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://americanredcross.github.io/",
-    "terms_text": "American Red Cross",
-    "description": "Drone imagery collected December 2017 for Canaan, Haiti by American Red Cross in coordination with the Haitian Red Cross."
-  },
-  {
-    "id": "Geneve-SITG-2011",
-    "name": "Canton de Génève 5cm (SITG 2011)",
-    "type": "wms",
-    "template": "https://ge.ch/ags2/services/Orthophotos_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}",
-    "projection": "EPSG:4326",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [6.18221, 46.22618],
-        [6.18348, 46.22772],
-        [6.18929, 46.23329],
-        [6.19196, 46.23858],
-        [6.19253, 46.24239],
-        [6.19061, 46.24397],
-        [6.19046, 46.24654],
-        [6.19256, 46.25045],
-        [6.19186, 46.25262],
-        [6.19325, 46.256],
-        [6.19287, 46.25776],
-        [6.19543, 46.26181],
-        [6.1979, 46.26454],
-        [6.20045, 46.26569],
-        [6.20917, 46.26634],
-        [6.21716, 46.27388],
-        [6.22046, 46.27895],
-        [6.2275, 46.28649],
-        [6.23433, 46.28955],
-        [6.23643, 46.2932],
-        [6.24074, 46.29774],
-        [6.23958, 46.30396],
-        [6.2413, 46.30529],
-        [6.2432, 46.30453],
-        [6.24513, 46.30492],
-        [6.24627, 46.30372],
-        [6.24983, 46.3027],
-        [6.25032, 46.3014],
-        [6.24938, 46.30018],
-        [6.25146, 46.29647],
-        [6.25063, 46.29451],
-        [6.25223, 46.29382],
-        [6.25429, 46.2907],
-        [6.25231, 46.28735],
-        [6.25032, 46.2868],
-        [6.24974, 46.28574],
-        [6.24636, 46.28433],
-        [6.24323, 46.28428],
-        [6.23985, 46.28098],
-        [6.23934, 46.27627],
-        [6.24372, 46.27356],
-        [6.25113, 46.26258],
-        [6.26244, 46.2553],
-        [6.26301, 46.25457],
-        [6.262, 46.25215],
-        [6.26736, 46.24887],
-        [6.27732, 46.25211],
-        [6.27725, 46.25298],
-        [6.2832, 46.25503],
-        [6.28231, 46.25568],
-        [6.28278, 46.25677],
-        [6.28868, 46.26046],
-        [6.29154, 46.2644],
-        [6.29457, 46.26556],
-        [6.29729, 46.26489],
-        [6.29783, 46.2631],
-        [6.29541, 46.25827],
-        [6.29663, 46.2566],
-        [6.3024, 46.2558],
-        [6.30678, 46.25753],
-        [6.311, 46.25666],
-        [6.30768, 46.25184],
-        [6.31046, 46.25057],
-        [6.31011, 46.24749],
-        [6.31156, 46.24386],
-        [6.29606, 46.22501],
-        [6.29012, 46.22241],
-        [6.27773, 46.21493],
-        [6.26707, 46.21276],
-        [6.25668, 46.20926],
-        [6.25089, 46.20574],
-        [6.25076, 46.20456],
-        [6.2495, 46.20404],
-        [6.24643, 46.20454],
-        [6.24251, 46.20364],
-        [6.23594, 46.20541],
-        [6.23347, 46.20509],
-        [6.22889, 46.20172],
-        [6.22323, 46.20005],
-        [6.22355, 46.19881],
-        [6.22257, 46.19791],
-        [6.21935, 46.19765],
-        [6.21688, 46.19448],
-        [6.21259, 46.19189],
-        [6.20727, 46.19137],
-        [6.20588, 46.18908],
-        [6.2034, 46.18806],
-        [6.20282, 46.18642],
-        [6.20035, 46.18504],
-        [6.19905, 46.18296],
-        [6.19615, 46.18288],
-        [6.1885, 46.17967],
-        [6.18751, 46.17539],
-        [6.18982, 46.16584],
-        [6.1748, 46.15694],
-        [6.1688, 46.15624],
-        [6.15829, 46.15195],
-        [6.15434, 46.15141],
-        [6.14952, 46.14933],
-        [6.14805, 46.14748],
-        [6.14832, 46.14619],
-        [6.14561, 46.14417],
-        [6.14244, 46.14493],
-        [6.13768, 46.14217],
-        [6.13692, 46.14071],
-        [6.13074, 46.13946],
-        [6.12598, 46.13966],
-        [6.12014, 46.14181],
-        [6.1077, 46.14203],
-        [6.10537, 46.14313],
-        [6.09746, 46.14325],
-        [6.09151, 46.15095],
-        [6.07476, 46.14795],
-        [6.07188, 46.14908],
-        [6.05295, 46.15046],
-        [6.04973, 46.1468],
-        [6.04862, 46.14153],
-        [6.04571, 46.13916],
-        [6.04287, 46.14006],
-        [6.04013, 46.13894],
-        [6.03783, 46.13716],
-        [6.03647, 46.13381],
-        [6.03531, 46.13344],
-        [6.03, 46.13816],
-        [6.02079, 46.14024],
-        [6.01693, 46.14191],
-        [6.01282, 46.14119],
-        [6.00814, 46.14171],
-        [6.00364, 46.14088],
-        [5.99338, 46.1432],
-        [5.98728, 46.14171],
-        [5.98464, 46.14232],
-        [5.98309, 46.13712],
-        [5.97603, 46.1319],
-        [5.97314, 46.13081],
-        [5.97037, 46.13108],
-        [5.96536, 46.12882],
-        [5.96163, 46.12976],
-        [5.9573, 46.12767],
-        [5.95575, 46.12836],
-        [5.95484, 46.13214],
-        [5.9589, 46.13553],
-        [5.96446, 46.13738],
-        [5.96517, 46.13845],
-        [5.9631, 46.14241],
-        [5.96383, 46.14656],
-        [5.97157, 46.1558],
-        [5.97884, 46.16721],
-        [5.98022, 46.17354],
-        [5.98322, 46.17507],
-        [5.98537, 46.17478],
-        [5.98754, 46.17306],
-        [5.99029, 46.17955],
-        [5.9936, 46.18203],
-        [5.98976, 46.18692],
-        [5.98287, 46.18822],
-        [5.98068, 46.1904],
-        [5.96282, 46.1963],
-        [5.96225, 46.19719],
-        [5.96465, 46.20022],
-        [5.97164, 46.20302],
-        [5.96985, 46.20383],
-        [5.96794, 46.20675],
-        [5.97227, 46.21418],
-        [5.97364, 46.21563],
-        [5.97897, 46.21821],
-        [6.00857, 46.24444],
-        [6.01422, 46.24855],
-        [6.06593, 46.28345],
-        [6.11511, 46.31511],
-        [6.12573, 46.31843],
-        [6.12972, 46.31568],
-        [6.12978, 46.31407],
-        [6.13604, 46.30896],
-        [6.14179, 46.30555],
-        [6.15393, 46.30014],
-        [6.17157, 46.29507],
-        [6.17125, 46.29223],
-        [6.17277, 46.28629],
-        [6.17018, 46.28533],
-        [6.16834, 46.28109],
-        [6.17201, 46.27554],
-        [6.1722, 46.27301],
-        [6.1691, 46.26785],
-        [6.16746, 46.26217],
-        [6.16531, 46.26195],
-        [6.16455, 46.26274],
-        [6.15943, 46.25898],
-        [6.15532, 46.25216],
-        [6.15387, 46.25212],
-        [6.15273, 46.25037],
-        [6.15311, 46.2477],
-        [6.15494, 46.24591],
-        [6.1521, 46.23878],
-        [6.15217, 46.23273],
-        [6.15034, 46.22659],
-        [6.15454, 46.22191],
-        [6.15483, 46.22044],
-        [6.15296, 46.21738],
-        [6.154, 46.21355],
-        [6.1571, 46.21097],
-        [6.16263, 46.21043],
-        [6.16387, 46.2097],
-        [6.16911, 46.21191],
-        [6.16867, 46.21318],
-        [6.17073, 46.21478],
-        [6.17471, 46.21603],
-        [6.18221, 46.22618]
-      ],
-      [
-        [6.18834, 46.34901],
-        [6.18696, 46.34862],
-        [6.18195, 46.35015],
-        [6.17961, 46.352],
-        [6.17142, 46.35444],
-        [6.17022, 46.35911],
-        [6.17415, 46.36036],
-        [6.17272, 46.36189],
-        [6.17348, 46.36288],
-        [6.17999, 46.36547],
-        [6.1877, 46.36132],
-        [6.19447, 46.36175],
-        [6.19905, 46.36086],
-        [6.20113, 46.35634],
-        [6.20258, 46.35567],
-        [6.20791, 46.35583],
-        [6.21374, 46.35379],
-        [6.21247, 46.35085],
-        [6.20846, 46.34665],
-        [6.2086, 46.33991],
-        [6.20659, 46.33792],
-        [6.20493, 46.33861],
-        [6.20348, 46.33793],
-        [6.19181, 46.34333],
-        [6.19318, 46.34787],
-        [6.19076, 46.3477],
-        [6.18834, 46.34901]
-      ],
-      [
-        [6.18182, 46.34281],
-        [6.18016, 46.34318],
-        [6.1752, 46.34532],
-        [6.17341, 46.34398],
-        [6.17324, 46.34054],
-        [6.1714, 46.33952],
-        [6.16588, 46.34254],
-        [6.16564, 46.34339],
-        [6.17091, 46.35054],
-        [6.17341, 46.35029],
-        [6.17458, 46.35192],
-        [6.17587, 46.35205],
-        [6.18579, 46.34593],
-        [6.18182, 46.34281]
-      ]
-    ],
-    "terms_url": "http://ge.ch/sitg/donnees/conditions-d-utilisation/open-data",
-    "terms_text": "Orthophotos du SITG 2011"
-  },
-  {
-    "id": "CTFRIBOURG2016",
-    "name": "Canton Fribourg 2016",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/fribourg_2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Canton Fribourg 2016 'orthophoto technique'",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Canvec",
-    "name": "Canvec - English",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "Canvec_French",
-    "name": "Canvec - French",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "capela_al",
-    "name": "Capela AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "COS2010_v1.0",
-    "name": "Carta de Uso do Solo 2010 (WMS)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2010-01-01T00:00:00.000Z",
-    "startDate": "2010-01-01T00:00:00.000Z",
-    "zoomExtent": [14, 18],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.dgterritorio.pt/dados_abertos/cos/",
-    "terms_text": "Direcção-Geral do Território",
-    "icon": "http://www.igeo.pt/favicon.ico"
-  },
-  {
-    "id": "BDGEx_ctm_multi",
-    "name": "Cartas Topográficas do Exército Brasileiro",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [1, 22],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "BDGEx",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/south-america/br/Exercito.png"
-  },
-  {
-    "id": "Cartoriviera-2012",
-    "name": "Cartoriviera - Orthophoto 2012",
-    "type": "tms",
-    "template": "https://osmdata.asitvd.ch/tiles/cartoriviera2012/{zoom}/{x}/{y}.png",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [14, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://map.cartoriviera.ch/?baselayer_ref=orthos_2012_mobile&baselayer_opacity=100",
-    "terms_text": "Cartoriviera"
-  },
-  {
-    "id": "Catastro-Spain",
-    "name": "Catastro Spain",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "Chorzow-buildings",
-    "name": "Chorzów: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Chorzowa"
-  },
-  {
-    "id": "South_Africa-CapeTown-Aerial-2013",
-    "name": "City of Cape Town 2013 Aerial",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2013/{zoom}/{x}/{y}.jpg",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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, -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]
-      ]
-    ],
-    "terms_url": "https://www.capetown.gov.za",
-    "terms_text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
-    "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 12cm ground sample distance"
-  },
-  {
-    "id": "South_Africa-CapeTown-Aerial",
-    "name": "City of Cape Town 2015 Aerial",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2015/{zoom}/{x}/{y}.jpg",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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, -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]
-      ]
-    ],
-    "terms_url": "https://www.capetown.gov.za",
-    "terms_text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
-    "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance"
-  },
-  {
-    "id": "City_of_Melbourne_Feb_2019",
-    "name": "City of Melbourne Feb 2019",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.melbourne190203/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w",
-    "endDate": "2019-02-03T00:00:00.000Z",
-    "startDate": "2019-02-02T00:00:00.000Z",
-    "zoomExtent": [10, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.melbourne.vic.gov.au/Environment/2019-Aerial-Imagery/cwpe-ugri",
-    "terms_text": "City of Melbourne",
-    "best": true,
-    "icon": "https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png"
-  },
-  {
-    "id": "City_of_Melbourne_May_2018",
-    "name": "City of Melbourne May 2018",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.gdbhzo3g/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w",
-    "endDate": "2018-05-01T00:00:00.000Z",
-    "startDate": "2018-05-01T00:00:00.000Z",
-    "zoomExtent": [10, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.melbourne.vic.gov.au/Property-Planning/2018-Aerial-Imagery-True-Ortho-/qa5h-sfgh",
-    "terms_text": "City of Melbourne",
-    "icon": "https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png"
-  },
-  {
-    "id": "turku-orto",
-    "name": "City of Turku ortophoto",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [4, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto",
-    "terms_text": "© Turun kaupunki",
-    "best": true,
-    "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": "Zuerich-aerial_2011",
-    "name": "City of Zürich Orthophoto 2011",
-    "type": "wms",
-    "template": "https://www.gis.stadt-zuerich.ch/maps/services/wms/WMS-ZH-STZH-OGD/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Luftbild_2011&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [8.44624, 47.44143],
-        [8.63178, 47.43968],
-        [8.62895, 47.31377],
-        [8.44381, 47.31555],
-        [8.44624, 47.44143]
-      ]
-    ],
-    "terms_text": "Stadt Zürich Open Government Data"
-  },
-  {
-    "id": "Zuerich-overview",
-    "name": "City of Zürich Overview map (Steets, buildings, house numbers)",
-    "type": "wms",
-    "template": "https://www.gis.stadt-zuerich.ch/maps/services/wms/WMS-ZH-STZH-OGD/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Uebersichtsplan&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [8.45788, 47.44582],
-        [8.57392, 47.44477],
-        [8.57362, 47.43124],
-        [8.60266, 47.43096],
-        [8.6023, 47.41746],
-        [8.6318, 47.41716],
-        [8.6295, 47.33628],
-        [8.57162, 47.33678],
-        [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]
-      ]
-    ],
-    "terms_text": "Stadt Zürich Open Government Data"
-  },
-  {
-    "id": "Czech_CUZK-KM",
-    "name": "Czech CUZK:KM",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "overlay": true
-  },
-  {
-    "id": "Czech_CUZK-KM-tms",
-    "name": "Czech CUZK:KM tiles proxy",
-    "type": "tms",
-    "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_cuzk.php/{zoom}/{x}/{y}.png",
-    "zoomExtent": [13, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "overlay": true
-  },
-  {
-    "id": "Czech_pLPIS",
-    "name": "Czech pLPIS",
-    "type": "wms",
-    "template": "https://eagri.cz/public/app/wms/plpis.fcgi?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=LPIS_FB4,LPIS_FB4_KOD&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "Czech_RUIAN-budovy",
-    "name": "Czech RUIAN budovy",
-    "type": "tms",
-    "template": "https://tile.poloha.net/budovy/{zoom}/{x}/{y}.png",
-    "zoomExtent": [12, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://poloha.net/",
-    "terms_text": "Czech RUIAN"
-  },
-  {
-    "id": "Czech_RUIAN-parcely",
-    "name": "Czech RUIAN parcely",
-    "type": "tms",
-    "template": "https://tile.poloha.net/parcely/{zoom}/{x}/{y}.png",
-    "zoomExtent": [12, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://poloha.net/",
-    "terms_text": "Czech RUIAN"
-  },
-  {
-    "id": "Czestochowa-buildings",
-    "name": "Częstochowa: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Częstochowy"
-  },
-  {
-    "id": "DCGIS-County-Imagery-2017-Fall-Leaf-Off-6-Inch",
-    "name": "Dakota County GIS 2017 Fall Leaf-Off 6-Inch",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://dakotacounty.us",
-    "terms_text": "Dakota County GIS",
-    "icon": "https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png"
-  },
-  {
-    "id": "DCGIS-County-Imagery-2019-Spring-Leaf-Off-6-Inch",
-    "name": "Dakota County GIS 2019 Spring Leaf-Off 6-Inch",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2019-01-01T00:00:00.000Z",
-    "startDate": "2019-01-01T00:00:00.000Z",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://dakotacounty.us",
-    "terms_text": "Dakota County GIS",
-    "icon": "https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png"
-  },
-  {
-    "id": "Duna_2013",
-    "name": "Danube flood orthophoto 2013",
-    "type": "tms",
-    "template": "http://e.tile.openstreetmap.hu/dunai-arviz-2013/{zoom}/{x}/{y}.jpg",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [10, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://fototerkep.hu",
-    "terms_text": "Fotótérkép.hu",
-    "description": "Riverbank of Danube at Budapest, Szentendre and Szigetmonostor"
-  },
-  {
-    "id": "Delaware2012Orthophotography",
-    "name": "Delaware 2012 Orthophotography",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2012/ImageServer",
-    "terms_text": "Digital Aerial Solutions, LLC",
-    "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."
-  },
-  {
-    "id": "Delaware2017Orthophotography",
-    "name": "Delaware 2017 Orthophotography",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2017/ImageServer",
-    "terms_text": "Digital Aerial Solutions, LLC",
-    "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."
-  },
-  {
-    "id": "delmiro_gouveia",
-    "name": "Delmiro Gouveia AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-37.94962, -9.42957],
-        [-37.94834, -9.33972],
-        [-38.03903, -9.33834],
-        [-38.04034, -9.42846],
-        [-37.94962, -9.42957]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "der-es",
-    "name": "DER-ES",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://der.es.gov.br",
-    "terms_text": "Departamento de Estradas de Rodagem do Estado do Espírito Santo",
-    "overlay": true
-  },
-  {
-    "id": "db-inspire-2013-11",
-    "name": "Deutsche Bahn VzG lines January 2017",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2013-11-01T00:00:00.000Z",
-    "startDate": "2013-11-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.deutschebahn.com/dataset/data-streckennetz",
-    "terms_text": "Data CC-BY 4.0 Deutsche Bahn AG",
-    "overlay": true
-  },
-  {
-    "id": "db-inspire-2015-11",
-    "name": "Deutsche Bahn VzG lines Nov 2015",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2015-11-01T00:00:00.000Z",
-    "startDate": "2015-11-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.deutschebahn.com/dataset/data-streckennetz",
-    "terms_text": "Data CC-BY 4.0 Deutsche Bahn AG",
-    "overlay": true
-  },
-  {
-    "id": "dgu-dof-2011",
-    "name": "dgu.hr: Croatia 2011 Aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [16.2996, 46.38154],
-        [16.30063, 46.38565],
-        [16.2985, 46.38985],
-        [16.30063, 46.39146],
-        [16.30008, 46.39566],
-        [16.30213, 46.39712],
-        [16.29686, 46.4008],
-        [16.29515, 46.40392],
-        [16.28591, 46.40689],
-        [16.28208, 46.41095],
-        [16.27215, 46.41194],
-        [16.26825, 46.41454],
-        [16.26852, 46.41869],
-        [16.27003, 46.42067],
-        [16.26921, 46.42699],
-        [16.26236, 46.437],
-        [16.25839, 46.44992],
-        [16.2599, 46.45275],
-        [16.25469, 46.46077],
-        [16.25538, 46.46746],
-        [16.251, 46.47227],
-        [16.24648, 46.47896],
-        [16.23649, 46.48339],
-        [16.2369, 46.4883],
-        [16.2369, 46.4981],
-        [16.23881, 46.50083],
-        [16.24484, 46.50262],
-        [16.25825, 46.50441],
-        [16.26264, 46.50799],
-        [16.26168, 46.5177],
-        [16.26743, 46.51911],
-        [16.27112, 46.52081],
-        [16.27646, 46.52109],
-        [16.27783, 46.51902],
-        [16.28865, 46.51939],
-        [16.29672, 46.51788],
-        [16.30028, 46.51581],
-        [16.30288, 46.51647],
-        [16.30863, 46.52307],
-        [16.30918, 46.52608],
-        [16.32027, 46.53154],
-        [16.33232, 46.53343],
-        [16.33697, 46.53192],
-        [16.33684, 46.53522],
-        [16.3382, 46.53795],
-        [16.34094, 46.53917],
-        [16.33478, 46.53974],
-        [16.33163, 46.54303],
-        [16.33423, 46.54689],
-        [16.34546, 46.54849],
-        [16.34957, 46.55094],
-        [16.35326, 46.55245],
-        [16.35915, 46.55009],
-        [16.36203, 46.54972],
-        [16.36134, 46.55452],
-        [16.36449, 46.55763],
-        [16.3701, 46.55838],
-        [16.37394, 46.5565],
-        [16.37804, 46.55602],
-        [16.38434, 46.55405],
-        [16.38612, 46.55141],
-        [16.38667, 46.54868],
-        [16.38407, 46.54557],
-        [16.38804, 46.54397],
-        [16.38968, 46.542],
-        [16.39132, 46.53917],
-        [16.40022, 46.54228],
-        [16.40734, 46.54162],
-        [16.40844, 46.5387],
-        [16.40844, 46.53691],
-        [16.41268, 46.53701],
-        [16.41993, 46.53333],
-        [16.42568, 46.53597],
-        [16.43157, 46.53569],
-        [16.43527, 46.53305],
-        [16.44129, 46.53107],
-        [16.44554, 46.52561],
-        [16.44293, 46.52099],
-        [16.44334, 46.51854],
-        [16.45142, 46.52156],
-        [16.4569, 46.52118],
-        [16.45895, 46.52297],
-        [16.46251, 46.52448],
-        [16.46552, 46.52467],
-        [16.46958, 46.52183],
-        [16.47551, 46.51842],
-        [16.47648, 46.51592],
-        [16.48072, 46.515],
-        [16.48532, 46.51267],
-        [16.48544, 46.51158],
-        [16.49056, 46.51044],
-        [16.49337, 46.50812],
-        [16.49222, 46.50562],
-        [16.4921, 46.50358],
-        [16.49646, 46.50012],
-        [16.51184, 46.49754],
-        [16.51305, 46.49516],
-        [16.51662, 46.49508],
-        [16.52249, 46.49112],
-        [16.52327, 46.48769],
-        [16.52243, 46.48295],
-        [16.53499, 46.48387],
-        [16.54437, 46.48076],
-        [16.55592, 46.4841],
-        [16.57032, 46.47695],
-        [16.58004, 46.47638],
-        [16.59578, 46.47995],
-        [16.60968, 46.47961],
-        [16.61939, 46.47165],
-        [16.62559, 46.47188],
-        [16.63262, 46.46934],
-        [16.64719, 46.46773],
-        [16.66846, 46.46184],
-        [16.69994, 46.42007],
-        [16.70966, 46.40541],
-        [16.7192, 46.40206],
-        [16.73511, 46.4046],
-        [16.74231, 46.40217],
-        [16.74466, 46.39848],
-        [16.74466, 46.38981],
-        [16.75052, 46.39224],
-        [16.75789, 46.39097],
-        [16.7609, 46.38566],
-        [16.76509, 46.38843],
-        [16.77296, 46.38877],
-        [16.77899, 46.38473],
-        [16.78502, 46.38947],
-        [16.79624, 46.39028],
-        [16.80444, 46.38739],
-        [16.80896, 46.3808],
-        [16.81231, 46.38011],
-        [16.82069, 46.37688],
-        [16.82873, 46.37768],
-        [16.83743, 46.37895],
-        [16.84329, 46.37399],
-        [16.84329, 46.36786],
-        [16.85234, 46.36451],
-        [16.86172, 46.35873],
-        [16.86808, 46.35769],
-        [16.87361, 46.35365],
-        [16.86959, 46.34775],
-        [16.87277, 46.34868],
-        [16.88148, 46.3407],
-        [16.88583, 46.33434],
-        [16.87897, 46.32544],
-        [16.88198, 46.32093],
-        [16.88047, 46.31364],
-        [16.88365, 46.306],
-        [16.89019, 46.30253],
-        [16.89119, 46.28633],
-        [16.89119, 46.28228],
-        [16.90509, 46.27789],
-        [16.91263, 46.26816],
-        [16.91732, 46.26434],
-        [16.92519, 46.26365],
-        [16.93858, 46.25774],
-        [16.94344, 46.25161],
-        [16.95399, 46.24442],
-        [16.96287, 46.24338],
-        [16.96638, 46.24547],
-        [16.97559, 46.24616],
-        [16.98012, 46.24049],
-        [16.97777, 46.2311],
-        [16.97844, 46.22821],
-        [16.98983, 46.22821],
-        [16.99569, 46.22612],
-        [17.00641, 46.22635],
-        [17.05363, 46.20631],
-        [17.05748, 46.20631],
-        [17.06921, 46.20492],
-        [17.0749, 46.19564],
-        [17.07808, 46.19286],
-        [17.08327, 46.19135],
-        [17.08646, 46.19344],
-        [17.09902, 46.1917],
-        [17.10705, 46.18857],
-        [17.10722, 46.18428],
-        [17.11208, 46.18185],
-        [17.1238, 46.18266],
-        [17.13017, 46.17918],
-        [17.12866, 46.17304],
-        [17.13084, 46.17234],
-        [17.1377, 46.17547],
-        [17.15294, 46.17617],
-        [17.16198, 46.17292],
-        [17.16366, 46.16167],
-        [17.17153, 46.16028],
-        [17.18375, 46.15227],
-        [17.19179, 46.13522],
-        [17.19062, 46.13092],
-        [17.18342, 46.12698],
-        [17.18643, 46.1199],
-        [17.18392, 46.11177],
-        [17.21005, 46.11699],
-        [17.21624, 46.11734],
-        [17.22194, 46.11398],
-        [17.2231, 46.10833],
-        [17.21815, 46.10213],
-        [17.23366, 46.10329],
-        [17.23885, 46.09946],
-        [17.23751, 46.09447],
-        [17.22566, 46.09251],
-        [17.22386, 46.08914],
-        [17.22804, 46.08377],
-        [17.23785, 46.08181],
-        [17.24396, 46.07774],
-        [17.25602, 46.07008],
-        [17.26277, 46.06307],
-        [17.26908, 46.06142],
-        [17.27561, 46.05758],
-        [17.27594, 46.05276],
-        [17.26276, 46.04585],
-        [17.26464, 46.04381],
-        [17.26713, 46.04103],
-        [17.26673, 46.03672],
-        [17.28817, 46.03556],
-        [17.29813, 46.03422],
-        [17.30173, 46.02643],
-        [17.29629, 46.02004],
-        [17.27795, 46.01771],
-        [17.2762, 46.01533],
-        [17.26272, 46.01265],
-        [17.27092, 46.01207],
-        [17.2767, 46.00759],
-        [17.28356, 46.00457],
-        [17.29612, 46.00643],
-        [17.30182, 46.00707],
-        [17.30902, 46.00335],
-        [17.31011, 45.99834],
-        [17.30843, 45.99154],
-        [17.3153, 45.99404],
-        [17.32267, 45.99439],
-        [17.32912, 45.99828],
-        [17.33816, 45.99951],
-        [17.34377, 45.99631],
-        [17.34829, 45.9863],
-        [17.35231, 45.97944],
-        [17.35532, 45.97792],
-        [17.35591, 45.98624],
-        [17.35825, 45.9927],
-        [17.36194, 45.99514],
-        [17.36794, 45.99616],
-        [17.37366, 45.99398],
-        [17.37936, 45.99119],
-        [17.38053, 45.9838],
-        [17.37308, 45.97583],
-        [17.38162, 45.97146],
-        [17.38748, 45.96867],
-        [17.39694, 45.9643],
-        [17.39635, 45.96093],
-        [17.39317, 45.95522],
-        [17.39373, 45.95228],
-        [17.40598, 45.94033],
-        [17.41117, 45.94306],
-        [17.41445, 45.93808],
-        [17.42032, 45.9457],
-        [17.42507, 45.95051],
-        [17.43638, 45.95377],
-        [17.44835, 45.95377],
-        [17.4594, 45.94905],
-        [17.46778, 45.94725],
-        [17.49198, 45.94556],
-        [17.51517, 45.94276],
-        [17.53301, 45.93793],
-        [17.55947, 45.9423],
-        [17.57404, 45.93991],
-        [17.59313, 45.92582],
-        [17.61306, 45.91586],
-        [17.62863, 45.90607],
-        [17.6401, 45.88701],
-        [17.65249, 45.86655],
-        [17.65316, 45.85507],
-        [17.66053, 45.84521],
-        [17.67025, 45.83833],
-        [17.68565, 45.84148],
-        [17.70081, 45.84072],
-        [17.7106, 45.83547],
-        [17.72744, 45.83477],
-        [17.74937, 45.83074],
-        [17.75473, 45.82438],
-        [17.76394, 45.81849],
-        [17.77374, 45.82],
-        [17.78756, 45.81971],
-        [17.79585, 45.81283],
-        [17.8043, 45.80833],
-        [17.81075, 45.80734],
-        [17.8146, 45.81172],
-        [17.82339, 45.81359],
-        [17.83202, 45.81131],
-        [17.83629, 45.80483],
-        [17.83713, 45.79339],
-        [17.84341, 45.78866],
-        [17.85262, 45.78702],
-        [17.85655, 45.78381],
-        [17.85831, 45.77762],
-        [17.85957, 45.77324],
-        [17.86526, 45.77067],
-        [17.86811, 45.77862],
-        [17.88276, 45.78755],
-        [17.89457, 45.79321],
-        [17.90763, 45.79537],
-        [17.9196, 45.7914],
-        [17.92873, 45.78948],
-        [17.93518, 45.79181],
-        [17.94556, 45.79485],
-        [17.95352, 45.7959],
-        [17.9598, 45.79461],
-        [17.96901, 45.79251],
-        [17.97369, 45.79269],
-        [17.98282, 45.79707],
-        [18.00359, 45.7973],
-        [18.00719, 45.79485],
-        [18.01983, 45.78422],
-        [18.03465, 45.77908],
-        [18.04763, 45.77762],
-        [18.06028, 45.77447],
-        [18.08054, 45.76834],
-        [18.09335, 45.76904],
-        [18.10507, 45.77435],
-        [18.10951, 45.78241],
-        [18.1168, 45.79],
-        [18.12374, 45.79257],
-        [18.13538, 45.79123],
-        [18.14501, 45.79175],
-        [18.15757, 45.78837],
-        [18.1631, 45.78183],
-        [18.17055, 45.77914],
-        [18.17826, 45.78767],
-        [18.18763, 45.79041],
-        [18.19576, 45.78977],
-        [18.2048, 45.78551],
-        [18.21652, 45.7837],
-        [18.22933, 45.78305],
-        [18.2362, 45.7792],
-        [18.24633, 45.76507],
-        [18.24993, 45.76547],
-        [18.25906, 45.76425],
-        [18.27706, 45.75852],
-        [18.29054, 45.76325],
-        [18.29531, 45.76372],
-        [18.3, 45.76296],
-        [18.30871, 45.75998],
-        [18.31491, 45.75952],
-        [18.33249, 45.75771],
-        [18.34028, 45.75291],
-        [18.35033, 45.76682],
-        [18.35987, 45.77511],
-        [18.36506, 45.77628],
-        [18.3803, 45.76781],
-        [18.38533, 45.76764],
-        [18.39521, 45.76466],
-        [18.39864, 45.75887],
-        [18.40057, 45.75952],
-        [18.40475, 45.75595],
-        [18.403, 45.74766],
-        [18.41036, 45.74222],
-        [18.41849, 45.74392],
-        [18.42728, 45.74479],
-        [18.43599, 45.7417],
-        [18.44336, 45.74187],
-        [18.44344, 45.75677],
-        [18.44051, 45.76033],
-        [18.44922, 45.77132],
-        [18.45742, 45.77248],
-        [18.46504, 45.76915],
-        [18.47743, 45.77003],
-        [18.48028, 45.78638],
-        [18.48413, 45.79491],
-        [18.49401, 45.79858],
-        [18.50314, 45.79736],
-        [18.50858, 45.7931],
-        [18.5095, 45.78854],
-        [18.51612, 45.78784],
-        [18.52893, 45.79561],
-        [18.53278, 45.79619],
-        [18.53756, 45.79567],
-        [18.54308, 45.79806],
-        [18.54861, 45.79683],
-        [18.55212, 45.79695],
-        [18.55539, 45.80442],
-        [18.55757, 45.80646],
-        [18.57021, 45.80425],
-        [18.56829, 45.8151],
-        [18.58704, 45.82129],
-        [18.59885, 45.82852],
-        [18.59617, 45.83576],
-        [18.61719, 45.84118],
-        [18.61392, 45.84696],
-        [18.60906, 45.85372],
-        [18.62229, 45.85938],
-        [18.62334, 45.87402],
-        [18.62736, 45.8792],
-        [18.6333, 45.87929],
-        [18.63904, 45.87186],
-        [18.64775, 45.87539],
-        [18.63829, 45.88288],
-        [18.6372, 45.88652],
-        [18.63628, 45.88972],
-        [18.64402, 45.89465],
-        [18.6521, 45.89812],
-        [18.65708, 45.89829],
-        [18.65801, 45.89963],
-        [18.65587, 45.90351],
-        [18.6552, 45.91536],
-        [18.65566, 45.91755],
-        [18.65729, 45.91935],
-        [18.66462, 45.91938],
-        [18.67027, 45.9149],
-        [18.67299, 45.91696],
-        [18.68869, 45.91895],
-        [18.69954, 45.92049],
-        [18.70502, 45.92093],
-        [18.70703, 45.92066],
-        [18.70883, 45.9183],
-        [18.71365, 45.91391],
-        [18.72265, 45.90788],
-        [18.73852, 45.90371],
-        [18.74852, 45.90272],
-        [18.75137, 45.90292],
-        [18.75422, 45.90211],
-        [18.75438, 45.89972],
-        [18.75765, 45.89951],
-        [18.75962, 45.89855],
-        [18.76439, 45.89447],
-        [18.76393, 45.89197],
-        [18.77427, 45.89136],
-        [18.78034, 45.88905],
-        [18.78557, 45.88378],
-        [18.79064, 45.88142],
-        [18.79801, 45.88151],
-        [18.80609, 45.88171],
-        [18.80831, 45.89101],
-        [18.80814, 45.89579],
-        [18.80374, 45.90144],
-        [18.80274, 45.90365],
-        [18.81521, 45.91536],
-        [18.82036, 45.91772],
-        [18.82623, 45.91743],
-        [18.83033, 45.90791],
-        [18.86248, 45.91303],
-        [18.85984, 45.91793],
-        [18.86001, 45.92116],
-        [18.86257, 45.92299],
-        [18.86617, 45.92296],
-        [18.86918, 45.9216],
-        [18.87161, 45.92017],
-        [18.87237, 45.91897],
-        [18.87535, 45.91744],
-        [18.87849, 45.91784],
-        [18.88401, 45.92121],
-        [18.90217, 45.92088],
-        [18.90522, 45.9185],
-        [18.90664, 45.91579],
-        [18.90702, 45.91314],
-        [18.90512, 45.91023],
-        [18.90122, 45.90712],
-        [18.89675, 45.90573],
-        [18.87764, 45.90004],
-        [18.87412, 45.89779],
-        [18.87259, 45.89554],
-        [18.87288, 45.89382],
-        [18.87773, 45.88687],
-        [18.88039, 45.88448],
-        [18.88648, 45.8821],
-        [18.89742, 45.87859],
-        [18.90084, 45.87634],
-        [18.90322, 45.87396],
-        [18.90512, 45.86959],
-        [18.90522, 45.86687],
-        [18.90284, 45.86356],
-        [18.89846, 45.86197],
-        [18.89466, 45.85912],
-        [18.88543, 45.85733],
-        [18.87735, 45.85753],
-        [18.86812, 45.85806],
-        [18.86071, 45.85998],
-        [18.86128, 45.85773],
-        [18.86165, 45.84448],
-        [18.86005, 45.83211],
-        [18.85784, 45.82581],
-        [18.85291, 45.81718],
-        [18.85158, 45.81307],
-        [18.85272, 45.80956],
-        [18.8569, 45.80969],
-        [18.86337, 45.8077],
-        [18.87478, 45.80936],
-        [18.87887, 45.81658],
-        [18.87859, 45.81996],
-        [18.88172, 45.82374],
-        [18.88734, 45.82593],
-        [18.89314, 45.82798],
-        [18.89999, 45.82732],
-        [18.90807, 45.82487],
-        [18.91482, 45.82209],
-        [18.92176, 45.81977],
-        [18.92338, 45.81566],
-        [18.92576, 45.80465],
-        [18.92224, 45.79663],
-        [18.92214, 45.78927],
-        [18.92062, 45.78781],
-        [18.91682, 45.78264],
-        [18.90645, 45.77892],
-        [18.89475, 45.77886],
-        [18.89352, 45.7772],
-        [18.87764, 45.78323],
-        [18.87288, 45.78264],
-        [18.86527, 45.77972],
-        [18.85405, 45.77335],
-        [18.85747, 45.76665],
-        [18.86556, 45.76247],
-        [18.87792, 45.75929],
-        [18.89542, 45.75351],
-        [18.90769, 45.74721],
-        [18.91634, 45.74661],
-        [18.92376, 45.74827],
-        [18.93004, 45.75225],
-        [18.9366, 45.75703],
-        [18.94459, 45.76114],
-        [18.94687, 45.76406],
-        [18.9561, 45.7691],
-        [18.96085, 45.7691],
-        [18.96932, 45.76765],
-        [18.97265, 45.76493],
-        [18.97455, 45.76008],
-        [18.97293, 45.75278],
-        [18.97892, 45.74966],
-        [18.98168, 45.74674],
-        [18.98301, 45.74223],
-        [18.97968, 45.73586],
-        [18.97341, 45.73061],
-        [18.96313, 45.72404],
-        [18.96951, 45.72318],
-        [18.9755, 45.72185],
-        [18.97968, 45.71594],
-        [18.97987, 45.70923],
-        [18.9774, 45.69881],
-        [18.9716, 45.69436],
-        [18.95866, 45.69243],
-        [18.95049, 45.69595],
-        [18.94906, 45.69847],
-        [18.94459, 45.70113],
-        [18.9327, 45.70233],
-        [18.9289, 45.70392],
-        [18.92081, 45.7012],
-        [18.92719, 45.69475],
-        [18.93308, 45.69083],
-        [18.94059, 45.6901],
-        [18.94278, 45.68897],
-        [18.96447, 45.6826],
-        [18.96447, 45.6713],
-        [18.97131, 45.67117],
-        [18.97103, 45.66904],
-        [18.97284, 45.66632],
-        [18.97788, 45.6594],
-        [18.97826, 45.65389],
-        [18.97483, 45.64983],
-        [18.9676, 45.64644],
-        [18.95847, 45.64558],
-        [18.94944, 45.64252],
-        [18.94373, 45.64192],
-        [18.93841, 45.63387],
-        [18.94659, 45.63593],
-        [18.95106, 45.63228],
-        [18.95496, 45.62755],
-        [18.95419, 45.6241],
-        [18.94687, 45.62064],
-        [18.94735, 45.61964],
-        [18.94525, 45.61432],
-        [18.94782, 45.60793],
-        [18.94763, 45.60321],
-        [18.94193, 45.59868],
-        [18.92814, 45.59562],
-        [18.9249, 45.59629],
-        [18.91844, 45.59728],
-        [18.91748, 45.59376],
-        [18.91273, 45.59056],
-        [18.89979, 45.57892],
-        [18.90122, 45.57133],
-        [18.90731, 45.56953],
-        [18.91054, 45.56893],
-        [18.91406, 45.57066],
-        [18.9171, 45.57046],
-        [18.93127, 45.56667],
-        [18.93632, 45.56114],
-        [18.93527, 45.55521],
-        [18.93061, 45.55062],
-        [18.93185, 45.54722],
-        [18.93736, 45.54336],
-        [18.94487, 45.54089],
-        [18.94963, 45.53863],
-        [18.95733, 45.53856],
-        [18.97322, 45.53996],
-        [18.98187, 45.54169],
-        [18.99091, 45.54516],
-        [18.99946, 45.55481],
-        [19.00412, 45.55987],
-        [19.01059, 45.56047],
-        [19.02191, 45.55954],
-        [19.03247, 45.55361],
-        [19.03313, 45.54649],
-        [19.0377, 45.53843],
-        [19.04055, 45.53663],
-        [19.05624, 45.53636],
-        [19.07022, 45.53543],
-        [19.08106, 45.53157],
-        [19.09676, 45.52424],
-        [19.10208, 45.52097],
-        [19.10503, 45.51651],
-        [19.10712, 45.51124],
-        [19.10665, 45.50338],
-        [19.10284, 45.49598],
-        [19.08962, 45.48478],
-        [19.08297, 45.48304],
-        [19.06861, 45.48231],
-        [19.04892, 45.48078],
-        [19.03161, 45.48278],
-        [19.01925, 45.48838],
-        [19.00907, 45.49311],
-        [19.00346, 45.49158],
-        [19.00073, 45.48768],
-        [18.9988, 45.48091],
-        [18.99756, 45.47438],
-        [18.99775, 45.47277],
-        [18.99366, 45.47284],
-        [18.99271, 45.4547],
-        [18.99595, 45.44796],
-        [18.99965, 45.44316],
-        [19.00707, 45.43828],
-        [19.01287, 45.43582],
-        [19.01944, 45.43375],
-        [19.0259, 45.43028],
-        [19.03018, 45.42547],
-        [19.02952, 45.41779],
-        [19.03418, 45.41766],
-        [19.03342, 45.40972],
-        [19.02828, 45.40397],
-        [19.02258, 45.40017],
-        [19.01506, 45.39843],
-        [19.0007, 45.3983],
-        [18.98748, 45.39496],
-        [18.97873, 45.39129],
-        [18.97331, 45.38815],
-        [18.97303, 45.38127],
-        [18.97736, 45.37577],
-        [18.9832, 45.37145],
-        [18.99129, 45.36797],
-        [19.01335, 45.35942],
-        [19.02258, 45.35507],
-        [19.03037, 45.35227],
-        [19.05016, 45.34993],
-        [19.05577, 45.34766],
-        [19.06994, 45.34679],
-        [19.08915, 45.34237],
-        [19.09695, 45.33749],
-        [19.10227, 45.33021],
-        [19.10094, 45.30821],
-        [19.10513, 45.30834],
-        [19.1095, 45.30091],
-        [19.11661, 45.29513],
-        [19.12358, 45.29175],
-        [19.13147, 45.28914],
-        [19.15753, 45.28104],
-        [19.16818, 45.27944],
-        [19.17693, 45.27529],
-        [19.17636, 45.27054],
-        [19.19129, 45.27027],
-        [19.22001, 45.26619],
-        [19.22638, 45.26746],
-        [19.2378, 45.27094],
-        [19.24303, 45.27388],
-        [19.24683, 45.27904],
-        [19.25492, 45.28185],
-        [19.26129, 45.28305],
-        [19.26699, 45.28238],
-        [19.27384, 45.2793],
-        [19.27679, 45.27542],
-        [19.27717, 45.27127],
-        [19.27536, 45.26672],
-        [19.26747, 45.26009],
-        [19.26509, 45.25675],
-        [19.26176, 45.25126],
-        [19.26243, 45.24597],
-        [19.28383, 45.24182],
-        [19.32177, 45.23753],
-        [19.35934, 45.23586],
-        [19.42202, 45.23666],
-        [19.42439, 45.22695],
-        [19.42905, 45.21924],
-        [19.43799, 45.20899],
-        [19.44988, 45.19546],
-        [19.44284, 45.19217],
-        [19.43685, 45.19177],
-        [19.43666, 45.18902],
-        [19.434, 45.18708],
-        [19.43057, 45.18654],
-        [19.43771, 45.1726],
-        [19.43162, 45.16858],
-        [19.41821, 45.16415],
-        [19.41412, 45.16542],
-        [19.4048, 45.16797],
-        [19.40204, 45.16831],
-        [19.38749, 45.17159],
-        [19.38492, 45.17039],
-        [19.37484, 45.17025],
-        [19.37256, 45.16878],
-        [19.364, 45.172],
-        [19.36181, 45.17153],
-        [19.362, 45.16878],
-        [19.35658, 45.16797],
-        [19.35639, 45.16308],
-        [19.34736, 45.16341],
-        [19.34555, 45.17099],
-        [19.32748, 45.17649],
-        [19.32986, 45.18138],
-        [19.32682, 45.18393],
-        [19.31883, 45.19975],
-        [19.31769, 45.20625],
-        [19.29857, 45.20397],
-        [19.28602, 45.20377],
-        [19.28735, 45.19881],
-        [19.29125, 45.19573],
-        [19.2882, 45.19217],
-        [19.2844, 45.19211],
-        [19.29619, 45.17964],
-        [19.2961, 45.17642],
-        [19.298, 45.1728],
-        [19.298, 45.16998],
-        [19.29362, 45.16965],
-        [19.29144, 45.17079],
-        [19.28915, 45.16938],
-        [19.28459, 45.16925],
-        [19.27384, 45.17045],
-        [19.27137, 45.17394],
-        [19.24769, 45.17099],
-        [19.24626, 45.17568],
-        [19.23675, 45.17374],
-        [19.23, 45.17991],
-        [19.22619, 45.18339],
-        [19.21992, 45.18453],
-        [19.21364, 45.18587],
-        [19.20955, 45.18922],
-        [19.20365, 45.19137],
-        [19.18948, 45.19955],
-        [19.1852, 45.20022],
-        [19.17893, 45.19854],
-        [19.1756, 45.20035],
-        [19.17237, 45.19807],
-        [19.16837, 45.19043],
-        [19.17741, 45.18788],
-        [19.18749, 45.18487],
-        [19.19709, 45.17897],
-        [19.19034, 45.1667],
-        [19.16495, 45.14537],
-        [19.14222, 45.12726],
-        [19.13879, 45.12894],
-        [19.11835, 45.13263],
-        [19.10988, 45.13719],
-        [19.08905, 45.14323],
-        [19.09, 45.13772],
-        [19.08363, 45.13356],
-        [19.08401, 45.13122],
-        [19.08011, 45.12732],
-        [19.07888, 45.11464],
-        [19.08767, 45.11224],
-        [19.0881, 45.11083],
-        [19.0876, 45.11014],
-        [19.08715, 45.10956],
-        [19.08898, 45.10956],
-        [19.09046, 45.10885],
-        [19.09671, 45.10227],
-        [19.09659, 45.10033],
-        [19.09766, 45.09888],
-        [19.09785, 45.09754],
-        [19.09699, 45.09516],
-        [19.09533, 45.09269],
-        [19.09797, 45.09007],
-        [19.10142, 45.08705],
-        [19.10287, 45.08504],
-        [19.10727, 45.08324],
-        [19.10838, 45.08193],
-        [19.10857, 45.08104],
-        [19.10967, 45.07943],
-        [19.10929, 45.07809],
-        [19.10631, 45.07087],
-        [19.09961, 45.06035],
-        [19.10408, 45.05765],
-        [19.10513, 45.05629],
-        [19.1076, 45.05431],
-        [19.10929, 45.05206],
-        [19.10952, 45.05083],
-        [19.10869, 45.04876],
-        [19.10612, 45.04467],
-        [19.10256, 45.04021],
-        [19.0979, 45.03685],
-        [19.09856, 45.03544],
-        [19.10073, 45.0349],
-        [19.1017, 45.03432],
-        [19.10237, 45.03334],
-        [19.10237, 45.03242],
-        [19.10158, 45.0303],
-        [19.10275, 45.0283],
-        [19.10275, 45.02754],
-        [19.10194, 45.02595],
-        [19.1008, 45.02523],
-        [19.10075, 45.02354],
-        [19.10173, 45.0218],
-        [19.10303, 45.01546],
-        [19.1042, 45.01444],
-        [19.10496, 45.01316],
-        [19.10532, 45.01217],
-        [19.10586, 45.01163],
-        [19.10612, 45.01045],
-        [19.10555, 45.00926],
-        [19.09928, 45.00411],
-        [19.09583, 44.99369],
-        [19.09483, 44.99266],
-        [19.09407, 44.99246],
-        [19.08882, 44.99147],
-        [19.08822, 44.99038],
-        [19.08202, 44.98463],
-        [19.07413, 44.9833],
-        [19.06536, 44.98083],
-        [19.06192, 44.98015],
-        [19.05936, 44.97872],
-        [19.05765, 44.97822],
-        [19.05879, 44.97795],
-        [19.06143, 44.97743],
-        [19.06582, 44.97561],
-        [19.07001, 44.9756],
-        [19.07517, 44.9743],
-        [19.08218, 44.97666],
-        [19.08708, 44.97669],
-        [19.09003, 44.97608],
-        [19.0944, 44.97351],
-        [19.09925, 44.974],
-        [19.10253, 44.9737],
-        [19.10708, 44.97282],
-        [19.11347, 44.97662],
-        [19.11768, 44.97884],
-        [19.12353, 44.97955],
-        [19.13071, 44.98231],
-        [19.13375, 44.98345],
-        [19.14008, 44.98338],
-        [19.14369, 44.98234],
-        [19.14854, 44.97985],
-        [19.15235, 44.97706],
-        [19.15149, 44.96067],
-        [19.15491, 44.96078],
-        [19.15682, 44.96014],
-        [19.15858, 44.9566],
-        [19.16024, 44.95324],
-        [19.15929, 44.95108],
-        [19.15605, 44.94954],
-        [19.15092, 44.94745],
-        [19.14778, 44.94361],
-        [19.14726, 44.94015],
-        [19.14459, 44.93755],
-        [19.13789, 44.93624],
-        [19.12648, 44.93587],
-        [19.11749, 44.93099],
-        [19.10831, 44.9287],
-        [19.10089, 44.9256],
-        [19.09172, 44.92308],
-        [19.08877, 44.92119],
-        [19.09129, 44.91981],
-        [19.09204, 44.9164],
-        [19.09072, 44.91415],
-        [19.08767, 44.91358],
-        [19.0901, 44.9122],
-        [19.0911, 44.91042],
-        [19.08649, 44.90499],
-        [19.08368, 44.90361],
-        [19.07698, 44.90281],
-        [19.07384, 44.90065],
-        [19.07103, 44.89893],
-        [19.06566, 44.89843],
-        [19.05781, 44.90176],
-        [19.04935, 44.90678],
-        [19.04193, 44.91021],
-        [19.03711, 44.9148],
-        [19.03284, 44.91841],
-        [19.02513, 44.91871],
-        [19.00562, 44.91331],
-        [18.99675, 44.90679],
-        [18.99708, 44.89801],
-        [19.01031, 44.88508],
-        [19.02756, 44.85927],
-        [19.02647, 44.85137],
-        [18.996, 44.84823],
-        [18.96225, 44.84597],
-        [18.92499, 44.8468],
-        [18.87835, 44.84817],
-        [18.85055, 44.849],
-        [18.83925, 44.8547],
-        [18.81915, 44.87339],
-        [18.78942, 44.88449],
-        [18.7633, 44.8992],
-        [18.75635, 44.90792],
-        [18.76338, 44.91978],
-        [18.74655, 44.9263],
-        [18.74471, 44.93786],
-        [18.74764, 44.9455],
-        [18.76271, 44.94894],
-        [18.78398, 44.93857],
-        [18.79579, 44.93987],
-        [18.79813, 44.94485],
-        [18.78214, 44.95469],
-        [18.7782, 44.97596],
-        [18.78901, 44.99224],
-        [18.78214, 44.99165],
-        [18.77251, 44.99485],
-        [18.76163, 44.99591],
-        [18.74613, 44.98987],
-        [18.73659, 44.98934],
-        [18.72679, 44.99017],
-        [18.72026, 44.99728],
-        [18.72621, 45.00622],
-        [18.73282, 45.01545],
-        [18.71892, 45.02054],
-        [18.71155, 45.03475],
-        [18.70109, 45.03439],
-        [18.68861, 45.03764],
-        [18.66466, 45.05817],
-        [18.6588, 45.05326],
-        [18.64725, 45.05421],
-        [18.64063, 45.05776],
-        [18.60864, 45.05805],
-        [18.59935, 45.06409],
-        [18.59843, 45.06971],
-        [18.60856, 45.07627],
-        [18.60211, 45.07645],
-        [18.58771, 45.08384],
-        [18.58704, 45.06846],
-        [18.57691, 45.06154],
-        [18.56703, 45.06551],
-        [18.56401, 45.07432],
-        [18.55598, 45.07065],
-        [18.54434, 45.06137],
-        [18.54467, 45.05539],
-        [18.54057, 45.0409],
-        [18.53161, 45.03995],
-        [18.52474, 45.04303],
-        [18.526, 45.05155],
-        [18.52299, 45.05634],
-        [18.51419, 45.05344],
-        [18.48983, 45.05516],
-        [18.46814, 45.05995],
-        [18.44804, 45.07639],
-        [18.43749, 45.08265],
-        [18.43088, 45.0985],
-        [18.41924, 45.10518],
-        [18.40015, 45.10547],
-        [18.36875, 45.10269],
-        [18.33676, 45.09808],
-        [18.32169, 45.09696],
-        [18.3098, 45.10376],
-        [18.3021, 45.11191],
-        [18.28929, 45.10996],
-        [18.27631, 45.11174],
-        [18.2722, 45.12781],
-        [18.26718, 45.13318],
-        [18.25755, 45.13614],
-        [18.23561, 45.13194],
-        [18.21493, 45.12202],
-        [18.21309, 45.11705],
-        [18.2161, 45.10919],
-        [18.22473, 45.10287],
-        [18.22699, 45.09856],
-        [18.22046, 45.08827],
-        [18.21192, 45.08177],
-        [18.19994, 45.07562],
-        [18.18286, 45.07343],
-        [18.16695, 45.07396],
-        [18.15062, 45.08153],
-        [18.1394, 45.08183],
-        [18.12115, 45.07621],
-        [18.1106, 45.07863],
-        [18.10139, 45.08484],
-        [18.08967, 45.09714],
-        [18.07652, 45.10057],
-        [18.06856, 45.10352],
-        [18.06664, 45.10772],
-        [18.06856, 45.1115],
-        [18.08054, 45.119],
-        [18.07242, 45.13182],
-        [18.06597, 45.13909],
-        [18.05709, 45.13962],
-        [18.04822, 45.13631],
-        [18.04462, 45.12385],
-        [18.03733, 45.12196],
-        [18.02862, 45.12432],
-        [18.02126, 45.13868],
-        [18.01732, 45.14618],
-        [18.0097, 45.14872],
-        [17.9948, 45.14488],
-        [17.9824, 45.13543],
-        [17.98106, 45.12414],
-        [17.97202, 45.11292],
-        [17.96105, 45.10843],
-        [17.94146, 45.10813],
-        [17.93576, 45.1037],
-        [17.9366, 45.09483],
-        [17.94221, 45.08626],
-        [17.94171, 45.08141],
-        [17.93024, 45.07438],
-        [17.90654, 45.05882],
-        [17.88418, 45.04794],
-        [17.86593, 45.04114],
-        [17.85061, 45.04019],
-        [17.83545, 45.04327],
-        [17.80824, 45.05663],
-        [17.78848, 45.07308],
-        [17.78504, 45.0768],
-        [17.77709, 45.08124],
-        [17.76905, 45.08112],
-        [17.76528, 45.0807],
-        [17.75616, 45.08254],
-        [17.73238, 45.09584],
-        [17.71747, 45.10394],
-        [17.7091, 45.11032],
-        [17.70047, 45.11138],
-        [17.68808, 45.11357],
-        [17.6777, 45.12426],
-        [17.67225, 45.12934],
-        [17.66363, 45.13094],
-        [17.65341, 45.1281],
-        [17.63483, 45.11971],
-        [17.62989, 45.1151],
-        [17.62629, 45.1102],
-        [17.61599, 45.10967],
-        [17.61063, 45.106],
-        [17.6005, 45.10181],
-        [17.59045, 45.10281],
-        [17.58358, 45.10843],
-        [17.57839, 45.11256],
-        [17.57445, 45.11286],
-        [17.5696, 45.10654],
-        [17.55729, 45.10417],
-        [17.54992, 45.10701],
-        [17.55059, 45.11321],
-        [17.55277, 45.12184],
-        [17.5495, 45.12663],
-        [17.54414, 45.12544],
-        [17.54582, 45.11835],
-        [17.54372, 45.11292],
-        [17.53594, 45.10665],
-        [17.52187, 45.10488],
-        [17.51283, 45.10494],
-        [17.50362, 45.11109],
-        [17.49801, 45.10837],
-        [17.48821, 45.10589],
-        [17.47757, 45.10795],
-        [17.47347, 45.11239],
-        [17.47699, 45.11894],
-        [17.48746, 45.12515],
-        [17.48821, 45.13283],
-        [17.47456, 45.12267],
-        [17.4589, 45.12249],
-        [17.44768, 45.12456],
-        [17.44408, 45.1281],
-        [17.44425, 45.13265],
-        [17.45086, 45.14399],
-        [17.44827, 45.15627],
-        [17.44509, 45.15769],
-        [17.44098, 45.15639],
-        [17.43814, 45.14582],
-        [17.4275, 45.13655],
-        [17.41754, 45.13253],
-        [17.40607, 45.13141],
-        [17.38312, 45.13407],
-        [17.35968, 45.13608],
-        [17.3426, 45.13809],
-        [17.32644, 45.14895],
-        [17.32225, 45.15604],
-        [17.32752, 45.16295],
-        [17.30927, 45.16159],
-        [17.30525, 45.16619],
-        [17.30659, 45.17375],
-        [17.29554, 45.17233],
-        [17.28264, 45.17186],
-        [17.27318, 45.18585],
-        [17.26824, 45.17404],
-        [17.26422, 45.17257],
-        [17.26389, 45.16619],
-        [17.25903, 45.15332],
-        [17.25141, 45.1444],
-        [17.2463, 45.14263],
-        [17.23492, 45.14376],
-        [17.22244, 45.14257],
-        [17.2144, 45.14381],
-        [17.2031, 45.14659],
-        [17.19096, 45.14328],
-        [17.17932, 45.14352],
-        [17.16542, 45.14694],
-        [17.14055, 45.16047],
-        [17.13125, 45.16295],
-        [17.10957, 45.17334],
-        [17.10262, 45.17475],
-        [17.06619, 45.18904],
-        [17.0605, 45.196],
-        [17.0507, 45.19736],
-        [17.04065, 45.20414],
-        [17.03437, 45.21983],
-        [17.02382, 45.21087],
-        [17.01771, 45.20951],
-        [17.00992, 45.21081],
-        [17.00415, 45.21399],
-        [17.00314, 45.21889],
-        [17.00004, 45.21783],
-        [16.99201, 45.21889],
-        [16.9864, 45.22066],
-        [16.97911, 45.22573],
-        [16.97559, 45.22443],
-        [16.96923, 45.22384],
-        [16.96362, 45.22644],
-        [16.95943, 45.22844],
-        [16.95583, 45.22886],
-        [16.95031, 45.22514],
-        [16.94361, 45.22431],
-        [16.93875, 45.22426],
-        [16.93264, 45.22703],
-        [16.93088, 45.23682],
-        [16.93054, 45.24206],
-        [16.9344, 45.24878],
-        [16.94637, 45.25321],
-        [16.94897, 45.25468],
-        [16.94913, 45.25668],
-        [16.93699, 45.26158],
-        [16.93465, 45.26965],
-        [16.93331, 45.27307],
-        [16.9282, 45.27307],
-        [16.92351, 45.27142],
-        [16.92259, 45.26723],
-        [16.91782, 45.26275],
-        [16.91874, 45.25975],
-        [16.91681, 45.25509],
-        [16.91237, 45.25061],
-        [16.90442, 45.24749],
-        [16.89814, 45.24713],
-        [16.89429, 45.24401],
-        [16.88658, 45.24295],
-        [16.88809, 45.24136],
-        [16.88525, 45.23428],
-        [16.88742, 45.23062],
-        [16.88684, 45.22644],
-        [16.88432, 45.22296],
-        [16.88508, 45.22137],
-        [16.88181, 45.21647],
-        [16.87737, 45.216],
-        [16.8721, 45.21718],
-        [16.86833, 45.21635],
-        [16.86724, 45.21193],
-        [16.86322, 45.20821],
-        [16.85778, 45.20225],
-        [16.85292, 45.20115],
-        [16.84775, 45.20171],
-        [16.84623, 45.1975],
-        [16.84723, 45.19526],
-        [16.84706, 45.19367],
-        [16.84438, 45.19148],
-        [16.84116, 45.18842],
-        [16.83484, 45.18547],
-        [16.8286, 45.18402],
-        [16.82178, 45.1824],
-        [16.81516, 45.18187],
-        [16.80691, 45.18254],
-        [16.80273, 45.18299],
-        [16.79109, 45.18603],
-        [16.77706, 45.18948],
-        [16.77124, 45.19119],
-        [16.76329, 45.1957],
-        [16.75965, 45.19703],
-        [16.75328, 45.19665],
-        [16.74889, 45.1975],
-        [16.73972, 45.20143],
-        [16.7326, 45.20461],
-        [16.73051, 45.20467],
-        [16.72611, 45.20258],
-        [16.72063, 45.20205],
-        [16.71615, 45.20184],
-        [16.71121, 45.19951],
-        [16.70409, 45.1947],
-        [16.69911, 45.1934],
-        [16.69429, 45.1934],
-        [16.68939, 45.19491],
-        [16.68349, 45.19727],
-        [16.67809, 45.19871],
-        [16.67051, 45.19857],
-        [16.66649, 45.19945],
-        [16.66168, 45.20208],
-        [16.65628, 45.20452],
-        [16.65125, 45.20441],
-        [16.64543, 45.20517],
-        [16.6343, 45.21163],
-        [16.63015, 45.21113],
-        [16.62802, 45.21116],
-        [16.62509, 45.2124],
-        [16.62278, 45.21467],
-        [16.62107, 45.21718],
-        [16.61941, 45.21939],
-        [16.61709, 45.22137],
-        [16.61451, 45.22243],
-        [16.60744, 45.22516],
-        [16.60455, 45.22697],
-        [16.60028, 45.22828],
-        [16.59808, 45.22881],
-        [16.59699, 45.22877],
-        [16.59356, 45.22654],
-        [16.59218, 45.22426],
-        [16.58755, 45.22213],
-        [16.58255, 45.22004],
-        [16.5792, 45.21948],
-        [16.57514, 45.21974],
-        [16.57133, 45.2196],
-        [16.56785, 45.21976],
-        [16.56528, 45.21976],
-        [16.56237, 45.21855],
-        [16.55883, 45.21705],
-        [16.55559, 45.21654],
-        [16.55249, 45.21641],
-        [16.54954, 45.21688],
-        [16.54772, 45.21712],
-        [16.54445, 45.21777],
-        [16.54198, 45.21876],
-        [16.53884, 45.22048],
-        [16.53725, 45.22206],
-        [16.5366, 45.22433],
-        [16.53589, 45.22452],
-        [16.53308, 45.22445],
-        [16.53074, 45.22431],
-        [16.52186, 45.22151],
-        [16.51946, 45.21977],
-        [16.5151, 45.21845],
-        [16.51263, 45.21647],
-        [16.50999, 45.21581],
-        [16.50512, 45.21274],
-        [16.50163, 45.21198],
-        [16.49998, 45.21198],
-        [16.49992, 45.20987],
-        [16.49689, 45.20907],
-        [16.49491, 45.20698],
-        [16.49417, 45.20094],
-        [16.49086, 45.19326],
-        [16.48662, 45.1876],
-        [16.47863, 45.18198],
-        [16.47765, 45.18004],
-        [16.4782, 45.17638],
-        [16.48211, 45.1696],
-        [16.4831, 45.16561],
-        [16.48159, 45.15965],
-        [16.47876, 45.15632],
-        [16.47142, 45.14842],
-        [16.46679, 45.14146],
-        [16.46448, 45.13997],
-        [16.46184, 45.13997],
-        [16.46186, 45.13855],
-        [16.45391, 45.13501],
-        [16.45031, 45.13174],
-        [16.44722, 45.13101],
-        [16.44499, 45.12871],
-        [16.44087, 45.12514],
-        [16.43486, 45.12272],
-        [16.42988, 45.12175],
-        [16.42383, 45.1219],
-        [16.4237, 45.12057],
-        [16.41417, 45.11902],
-        [16.40499, 45.11581],
-        [16.39821, 45.11157],
-        [16.39752, 45.10909],
-        [16.39675, 45.1063],
-        [16.39744, 45.10509],
-        [16.40636, 45.0997],
-        [16.40645, 45.09831],
-        [16.40585, 45.09661],
-        [16.40233, 45.09449],
-        [16.39958, 45.09255],
-        [16.39915, 45.08807],
-        [16.39641, 45.08485],
-        [16.39057, 45.08037],
-        [16.3898, 45.0771],
-        [16.39152, 45.07207],
-        [16.39134, 45.06613],
-        [16.38817, 45.06067],
-        [16.38757, 45.05236],
-        [16.38165, 45.04794],
-        [16.37718, 45.04842],
-        [16.37315, 45.0426],
-        [16.3686, 45.03969],
-        [16.36362, 45.03508],
-        [16.3613, 45.03023],
-        [16.36311, 45.02392],
-        [16.36122, 45.01706],
-        [16.36268, 45.01172],
-        [16.35984, 45.00693],
-        [16.3583, 45.00232],
-        [16.35504, 44.99959],
-        [16.34706, 44.99704],
-        [16.33056, 44.99762],
-        [16.32583, 44.99875],
-        [16.32279, 44.99882],
-        [16.31546, 44.99583],
-        [16.3062, 44.9957],
-        [16.30148, 44.99502],
-        [16.29511, 44.99478],
-        [16.29188, 44.99293],
-        [16.28569, 44.9923],
-        [16.28427, 44.99441],
-        [16.28042, 45.00406],
-        [16.27552, 45.00208],
-        [16.26948, 45.00393],
-        [16.26777, 45.01237],
-        [16.26682, 45.01324],
-        [16.26468, 45.01328],
-        [16.26292, 45.00958],
-        [16.25802, 45.00776],
-        [16.25426, 45.00796],
-        [16.25155, 45.01032],
-        [16.24628, 45.01139],
-        [16.24152, 45.01012],
-        [16.22578, 45.01489],
-        [16.22497, 45.02141],
-        [16.22131, 45.02161],
-        [16.20971, 45.02578],
-        [16.20619, 45.02924],
-        [16.19625, 45.02733],
-        [16.19069, 45.02823],
-        [16.18707, 45.03149],
-        [16.18141, 45.04477],
-        [16.174, 45.04836],
-        [16.17124, 45.05115],
-        [16.17176, 45.05656],
-        [16.16962, 45.06136],
-        [16.16515, 45.06626],
-        [16.16715, 45.07026],
-        [16.16192, 45.07231],
-        [16.15322, 45.07946],
-        [16.14489, 45.08081],
-        [16.13857, 45.0851],
-        [16.13643, 45.08524],
-        [16.13472, 45.08359],
-        [16.13025, 45.08332],
-        [16.12573, 45.08527],
-        [16.12159, 45.0893],
-        [16.10628, 45.08964],
-        [16.09853, 45.09705],
-        [16.09282, 45.10024],
-        [16.08617, 45.10185],
-        [16.08065, 45.10994],
-        [16.08021, 45.12308],
-        [16.07989, 45.13195],
-        [16.07442, 45.1393],
-        [16.06672, 45.14359],
-        [16.05821, 45.15315],
-        [16.05136, 45.15731],
-        [16.0467, 45.16804],
-        [16.04199, 45.17042],
-        [16.04152, 45.17619],
-        [16.02321, 45.17733],
-        [16.01612, 45.17582],
-        [16.01137, 45.178],
-        [16.00914, 45.18458],
-        [16.02074, 45.19412],
-        [16.0224, 45.19757],
-        [16.01731, 45.20001],
-        [16.01122, 45.21415],
-        [16.00666, 45.21352],
-        [16.00209, 45.21414],
-        [15.99729, 45.21784],
-        [15.99299, 45.21741],
-        [15.98569, 45.22062],
-        [15.97876, 45.2257],
-        [15.97485, 45.22537],
-        [15.96924, 45.219],
-        [15.9602, 45.21757],
-        [15.9561, 45.21445],
-        [15.94777, 45.21067],
-        [15.91799, 45.21049],
-        [15.91602, 45.21084],
-        [15.91676, 45.21425],
-        [15.92107, 45.22075],
-        [15.92048, 45.22437],
-        [15.91837, 45.22313],
-        [15.91641, 45.22182],
-        [15.91103, 45.22092],
-        [15.90497, 45.22186],
-        [15.90076, 45.22427],
-        [15.89795, 45.22354],
-        [15.89976, 45.21924],
-        [15.89843, 45.21553],
-        [15.89596, 45.21355],
-        [15.88727, 45.21269],
-        [15.88478, 45.21492],
-        [15.87527, 45.21472],
-        [15.87009, 45.21666],
-        [15.8601, 45.21395],
-        [15.85538, 45.21374],
-        [15.84351, 45.22157],
-        [15.83464, 45.21608],
-        [15.83649, 45.21177],
-        [15.82967, 45.20474],
-        [15.82342, 45.20258],
-        [15.81405, 45.20607],
-        [15.81303, 45.20303],
-        [15.80651, 45.20025],
-        [15.80658, 45.1968],
-        [15.8047, 45.19499],
-        [15.79767, 45.19164],
-        [15.79069, 45.19066],
-        [15.78682, 45.18517],
-        [15.78216, 45.18249],
-        [15.78188, 45.17495],
-        [15.78039, 45.17366],
-        [15.77476, 45.17354],
-        [15.77487, 45.16994],
-        [15.77289, 45.16881],
-        [15.77021, 45.16383],
-        [15.77392, 45.15274],
-        [15.78071, 45.14703],
-        [15.78012, 45.14014],
-        [15.78483, 45.1394],
-        [15.7871, 45.13525],
-        [15.78302, 45.1302],
-        [15.78911, 45.12464],
-        [15.79444, 45.12179],
-        [15.79588, 45.11433],
-        [15.78558, 45.10442],
-        [15.78341, 45.09297],
-        [15.77534, 45.09164],
-        [15.77927, 45.08366],
-        [15.77597, 45.08369],
-        [15.776, 45.08188],
-        [15.77587, 45.07994],
-        [15.77589, 45.07704],
-        [15.77534, 45.07382],
-        [15.7611, 45.06754],
-        [15.75772, 45.06344],
-        [15.75122, 45.06121],
-        [15.75929, 45.05309],
-        [15.76032, 45.04691],
-        [15.77165, 45.02161],
-        [15.77654, 45.01075],
-        [15.78186, 45.0096],
-        [15.78701, 45.00456],
-        [15.79001, 44.99352],
-        [15.78572, 44.98271],
-        [15.78847, 44.97482],
-        [15.7871, 44.96984],
-        [15.781, 44.96504],
-        [15.77371, 44.96583],
-        [15.77182, 44.96765],
-        [15.75336, 44.96619],
-        [15.75113, 44.95836],
-        [15.75371, 44.95083],
-        [15.75113, 44.94488],
-        [15.74281, 44.93655],
-        [15.76487, 44.88762],
-        [15.76401, 44.87071],
-        [15.79834, 44.84699],
-        [15.79628, 44.84419],
-        [15.76143, 44.82617],
-        [15.73551, 44.82288],
-        [15.7477, 44.80863],
-        [15.74547, 44.80121],
-        [15.75972, 44.78829],
-        [15.76744, 44.77794],
-        [15.77465, 44.77196],
-        [15.77568, 44.76758],
-        [15.78289, 44.75844],
-        [15.7877, 44.75051],
-        [15.81242, 44.74332],
-        [15.81911, 44.73686],
-        [15.82615, 44.72649],
-        [15.8325, 44.72393],
-        [15.84726, 44.7393],
-        [15.85894, 44.74003],
-        [15.87147, 44.73613],
-        [15.87696, 44.73564],
-        [15.88005, 44.74698],
-        [15.89481, 44.75271],
-        [15.90631, 44.74978],
-        [15.90685, 44.74324],
-        [15.9156, 44.73624],
-        [15.92568, 44.72287],
-        [15.93043, 44.71939],
-        [15.93329, 44.71273],
-        [15.93666, 44.71455],
-        [15.95526, 44.71499],
-        [15.95896, 44.71307],
-        [15.96058, 44.70783],
-        [15.96139, 44.70394],
-        [15.95825, 44.70009],
-        [15.9622, 44.69583],
-        [15.96662, 44.69482],
-        [15.96914, 44.69282],
-        [15.97323, 44.68336],
-        [15.97256, 44.67954],
-        [15.97946, 44.67328],
-        [15.98431, 44.67325],
-        [15.9894, 44.67156],
-        [15.9932, 44.66878],
-        [15.9971, 44.66608],
-        [15.99957, 44.66286],
-        [16.01389, 44.6586],
-        [16.02287, 44.66019],
-        [16.03025, 44.65833],
-        [16.03586, 44.65529],
-        [16.03705, 44.64872],
-        [16.04423, 44.64061],
-        [16.04603, 44.63739],
-        [16.0476, 44.63045],
-        [16.04912, 44.6293],
-        [16.05274, 44.62978],
-        [16.05823, 44.62811],
-        [16.0592, 44.627],
-        [16.05963, 44.61248],
-        [16.06263, 44.60805],
-        [16.05868, 44.60361],
-        [16.05298, 44.60341],
-        [16.05084, 44.60046],
-        [16.05531, 44.59799],
-        [16.05564, 44.59508],
-        [16.04751, 44.58986],
-        [16.04499, 44.58634],
-        [16.03595, 44.58438],
-        [16.02497, 44.58563],
-        [16.02135, 44.58329],
-        [16.02316, 44.5732],
-        [16.02416, 44.56754],
-        [16.02335, 44.56378],
-        [16.04917, 44.54877],
-        [16.05778, 44.54162],
-        [16.08056, 44.53881],
-        [16.09458, 44.53528],
-        [16.11056, 44.52942],
-        [16.12673, 44.51464],
-        [16.12792, 44.50341],
-        [16.13543, 44.49378],
-        [16.13662, 44.48788],
-        [16.141, 44.48581],
-        [16.1458, 44.48018],
-        [16.14413, 44.47424],
-        [16.14033, 44.47047],
-        [16.14223, 44.46243],
-        [16.13748, 44.45873],
-        [16.13767, 44.45734],
-        [16.141, 44.45727],
-        [16.14423, 44.45544],
-        [16.14818, 44.44916],
-        [16.14713, 44.4423],
-        [16.14375, 44.43918],
-        [16.14594, 44.42719],
-        [16.14879, 44.42542],
-        [16.15559, 44.42542],
-        [16.16491, 44.41802],
-        [16.16858, 44.41462],
-        [16.17072, 44.4098],
-        [16.17599, 44.4063],
-        [16.17742, 44.40236],
-        [16.17571, 44.39968],
-        [16.16991, 44.39747],
-        [16.16092, 44.39176],
-        [16.15412, 44.39111],
-        [16.15108, 44.39173],
-        [16.14019, 44.3886],
-        [16.13367, 44.39142],
-        [16.134, 44.3868],
-        [16.13524, 44.38112],
-        [16.14608, 44.3799],
-        [16.14993, 44.38085],
-        [16.1536, 44.3834],
-        [16.15797, 44.3834],
-        [16.17276, 44.37701],
-        [16.17856, 44.37018],
-        [16.19915, 44.3659],
-        [16.20998, 44.36191],
-        [16.22406, 44.3489],
-        [16.22307, 44.34118],
-        [16.20923, 44.33349],
-        [16.20405, 44.32822],
-        [16.19963, 44.31988],
-        [16.19953, 44.3143],
-        [16.19368, 44.30784],
-        [16.1923, 44.29936],
-        [16.1923, 44.29548],
-        [16.19511, 44.29218],
-        [16.1972, 44.28398],
-        [16.19606, 44.27162],
-        [16.20077, 44.26219],
-        [16.20538, 44.2582],
-        [16.20495, 44.25425],
-        [16.209, 44.25459],
-        [16.21427, 44.25177],
-        [16.22269, 44.24131],
-        [16.22559, 44.23409],
-        [16.22412, 44.22213],
-        [16.22179, 44.22032],
-        [16.21908, 44.21974],
-        [16.21765, 44.21695],
-        [16.22307, 44.21388],
-        [16.22973, 44.21207],
-        [16.23192, 44.20696],
-        [16.23429, 44.20488],
-        [16.23722, 44.20476],
-        [16.23721, 44.20365],
-        [16.24017, 44.20368],
-        [16.24314, 44.20014],
-        [16.24685, 44.19823],
-        [16.24761, 44.19602],
-        [16.25488, 44.19141],
-        [16.25992, 44.18586],
-        [16.26577, 44.18173],
-        [16.26744, 44.17852],
-        [16.27395, 44.17634],
-        [16.27638, 44.17307],
-        [16.2934, 44.16444],
-        [16.29892, 44.15594],
-        [16.30916, 44.14974],
-        [16.31098, 44.1463],
-        [16.31266, 44.14387],
-        [16.31276, 44.14256],
-        [16.31157, 44.12793],
-        [16.31525, 44.12639],
-        [16.31598, 44.125],
-        [16.3168, 44.12172],
-        [16.32072, 44.11655],
-        [16.33606, 44.11467],
-        [16.3383, 44.11357],
-        [16.35283, 44.10791],
-        [16.36216, 44.10334],
-        [16.36388, 44.10159],
-        [16.36616, 44.09926],
-        [16.36664, 44.09827],
-        [16.36668, 44.09748],
-        [16.36514, 44.09516],
-        [16.37192, 44.08445],
-        [16.37753, 44.08405],
-        [16.37814, 44.08379],
-        [16.38276, 44.08597],
-        [16.38391, 44.08599],
-        [16.38536, 44.08569],
-        [16.38659, 44.08507],
-        [16.38961, 44.08289],
-        [16.39672, 44.08247],
-        [16.39834, 44.08239],
-        [16.40072, 44.08215],
-        [16.40256, 44.08211],
-        [16.42785, 44.0856],
-        [16.42923, 44.08519],
-        [16.4303, 44.08448],
-        [16.44441, 44.0688],
-        [16.44508, 44.06805],
-        [16.44565, 44.06696],
-        [16.44472, 44.06462],
-        [16.44389, 44.06191],
-        [16.43893, 44.05434],
-        [16.4396, 44.049],
-        [16.44177, 44.04244],
-        [16.44204, 44.03718],
-        [16.44144, 44.03546],
-        [16.43997, 44.03188],
-        [16.44156, 44.03107],
-        [16.44345, 44.0311],
-        [16.44897, 44.03042],
-        [16.45525, 44.03049],
-        [16.45923, 44.03076],
-        [16.46266, 44.03126],
-        [16.46731, 44.03221],
-        [16.46936, 44.03212],
-        [16.48295, 44.0317],
-        [16.50428, 44.02631],
-        [16.50539, 44.02518],
-        [16.5187, 44.00519],
-        [16.53769, 43.98917],
-        [16.53995, 43.98722],
-        [16.54742, 43.97499],
-        [16.54784, 43.97359],
-        [16.55289, 43.9553],
-        [16.58975, 43.94507],
-        [16.59094, 43.94383],
-        [16.59163, 43.94198],
-        [16.59304, 43.93928],
-        [16.60141, 43.93673],
-        [16.60252, 43.93566],
-        [16.6029, 43.93479],
-        [16.60614, 43.9266],
-        [16.61033, 43.92476],
-        [16.61114, 43.92396],
-        [16.61148, 43.92265],
-        [16.61232, 43.92],
-        [16.6123, 43.91601],
-        [16.61539, 43.91597],
-        [16.62603, 43.90769],
-        [16.62867, 43.90324],
-        [16.64786, 43.88983],
-        [16.64922, 43.88855],
-        [16.65117, 43.88764],
-        [16.65797, 43.88589],
-        [16.66067, 43.88414],
-        [16.66243, 43.88224],
-        [16.66266, 43.88149],
-        [16.66505, 43.87972],
-        [16.66869, 43.87984],
-        [16.67011, 43.87971],
-        [16.67173, 43.87885],
-        [16.67495, 43.87646],
-        [16.6753, 43.87581],
-        [16.68634, 43.86798],
-        [16.70704, 43.86016],
-        [16.70857, 43.85933],
-        [16.71315, 43.85609],
-        [16.7138, 43.85502],
-        [16.71809, 43.84742],
-        [16.71824, 43.8464],
-        [16.71843, 43.8444],
-        [16.72107, 43.84185],
-        [16.72161, 43.84086],
-        [16.72136, 43.83616],
-        [16.7236, 43.83248],
-        [16.72362, 43.83172],
-        [16.72335, 43.83075],
-        [16.72144, 43.8294],
-        [16.72347, 43.82627],
-        [16.72351, 43.82517],
-        [16.72268, 43.82325],
-        [16.72213, 43.82148],
-        [16.72148, 43.81899],
-        [16.72136, 43.81635],
-        [16.72215, 43.80778],
-        [16.72601, 43.8053],
-        [16.72799, 43.80221],
-        [16.72956, 43.80045],
-        [16.72977, 43.7994],
-        [16.72915, 43.79709],
-        [16.72868, 43.79633],
-        [16.7304, 43.79518],
-        [16.73067, 43.79396],
-        [16.7331, 43.79121],
-        [16.73685, 43.78775],
-        [16.74221, 43.78312],
-        [16.74761, 43.77845],
-        [16.7541, 43.77221],
-        [16.75707, 43.77269],
-        [16.76105, 43.77219],
-        [16.76113, 43.77177],
-        [16.76613, 43.7717],
-        [16.77987, 43.77006],
-        [16.80222, 43.76488],
-        [16.80474, 43.7634],
-        [16.81478, 43.75664],
-        [16.81822, 43.75048],
-        [16.81828, 43.74988],
-        [16.82743, 43.73415],
-        [16.83352, 43.73241],
-        [16.83664, 43.7307],
-        [16.85083, 43.72098],
-        [16.86975, 43.71255],
-        [16.87562, 43.70733],
-        [16.87926, 43.70099],
-        [16.87915, 43.69905],
-        [16.88031, 43.69583],
-        [16.88522, 43.69357],
-        [16.88617, 43.6923],
-        [16.88811, 43.68718],
-        [16.9022, 43.68081],
-        [16.91083, 43.67631],
-        [16.91177, 43.67521],
-        [16.91319, 43.67263],
-        [16.9151, 43.67026],
-        [16.91964, 43.66446],
-        [16.91987, 43.66365],
-        [16.9224, 43.66007],
-        [16.93025, 43.65648],
-        [16.93092, 43.65531],
-        [16.93161, 43.65321],
-        [16.9349, 43.64722],
-        [16.93502, 43.6448],
-        [16.96136, 43.6273],
-        [16.96701, 43.62375],
-        [16.97371, 43.61948],
-        [16.97438, 43.61853],
-        [16.98089, 43.60728],
-        [16.98424, 43.6034],
-        [16.98573, 43.60235],
-        [16.98596, 43.6015],
-        [16.98907, 43.59903],
-        [16.99, 43.59768],
-        [16.99288, 43.59344],
-        [16.99533, 43.59303],
-        [16.99672, 43.59205],
-        [16.99824, 43.59048],
-        [16.99849, 43.58974],
-        [17.00863, 43.58314],
-        [17.00982, 43.58233],
-        [17.01034, 43.58107],
-        [17.0107, 43.58011],
-        [17.01059, 43.5779],
-        [17.0165, 43.5733],
-        [17.02349, 43.56986],
-        [17.02745, 43.56859],
-        [17.0318, 43.5659],
-        [17.03477, 43.56426],
-        [17.03862, 43.56096],
-        [17.04442, 43.55911],
-        [17.05219, 43.5578],
-        [17.05378, 43.55721],
-        [17.05702, 43.55681],
-        [17.05702, 43.55466],
-        [17.06636, 43.55462],
-        [17.06808, 43.55331],
-        [17.06879, 43.55202],
-        [17.06852, 43.55117],
-        [17.07149, 43.54991],
-        [17.07346, 43.54927],
-        [17.07452, 43.54838],
-        [17.08097, 43.54524],
-        [17.08189, 43.54413],
-        [17.08518, 43.54105],
-        [17.08683, 43.53952],
-        [17.08861, 43.53847],
-        [17.09226, 43.5361],
-        [17.09602, 43.53387],
-        [17.09682, 43.53308],
-        [17.10538, 43.53055],
-        [17.10685, 43.52958],
-        [17.10814, 43.52757],
-        [17.10963, 43.5258],
-        [17.1252, 43.52018],
-        [17.12726, 43.51848],
-        [17.13247, 43.5127],
-        [17.13458, 43.51098],
-        [17.13502, 43.51009],
-        [17.13737, 43.50974],
-        [17.13969, 43.50972],
-        [17.14176, 43.50901],
-        [17.14208, 43.5086],
-        [17.14415, 43.50792],
-        [17.14524, 43.50711],
-        [17.14576, 43.5059],
-        [17.14771, 43.50368],
-        [17.15204, 43.49746],
-        [17.15583, 43.49647],
-        [17.16031, 43.49604],
-        [17.17436, 43.49275],
-        [17.17884, 43.4963],
-        [17.18005, 43.49774],
-        [17.18154, 43.4982],
-        [17.18405, 43.49902],
-        [17.18771, 43.49984],
-        [17.19003, 43.49967],
-        [17.19537, 43.49993],
-        [17.20701, 43.49982],
-        [17.2122, 43.49881],
-        [17.21509, 43.49966],
-        [17.21637, 43.49946],
-        [17.22093, 43.49976],
-        [17.22801, 43.49976],
-        [17.23196, 43.49837],
-        [17.23435, 43.4967],
-        [17.23701, 43.49603],
-        [17.23822, 43.49496],
-        [17.2404, 43.49427],
-        [17.24187, 43.49351],
-        [17.24561, 43.49263],
-        [17.24785, 43.49156],
-        [17.25275, 43.48933],
-        [17.25855, 43.4861],
-        [17.26052, 43.48547],
-        [17.26225, 43.48455],
-        [17.26728, 43.48271],
-        [17.26958, 43.48124],
-        [17.27243, 43.47973],
-        [17.27276, 43.47849],
-        [17.27632, 43.47642],
-        [17.27731, 43.47519],
-        [17.28139, 43.47296],
-        [17.28264, 43.47171],
-        [17.28532, 43.46933],
-        [17.28624, 43.46797],
-        [17.2866, 43.46536],
-        [17.28913, 43.46188],
-        [17.28899, 43.45998],
-        [17.28991, 43.45711],
-        [17.28926, 43.4541],
-        [17.28804, 43.45238],
-        [17.28972, 43.44916],
-        [17.28959, 43.44726],
-        [17.28865, 43.4458],
-        [17.28878, 43.44351],
-        [17.28788, 43.44156],
-        [17.28842, 43.43857],
-        [17.28733, 43.43422],
-        [17.28549, 43.43054],
-        [17.28216, 43.42595],
-        [17.27814, 43.42043],
-        [17.2745, 43.41634],
-        [17.27216, 43.413],
-        [17.26918, 43.41219],
-        [17.26382, 43.40792],
-        [17.26217, 43.40486],
-        [17.26075, 43.40301],
-        [17.25664, 43.40208],
-        [17.26104, 43.3989],
-        [17.26414, 43.39479],
-        [17.26516, 43.39138],
-        [17.26632, 43.386],
-        [17.26791, 43.37838],
-        [17.26885, 43.3732],
-        [17.27251, 43.36888],
-        [17.27391, 43.36757],
-        [17.27446, 43.3659],
-        [17.27438, 43.36444],
-        [17.27699, 43.36022],
-        [17.27712, 43.35861],
-        [17.27762, 43.35677],
-        [17.27756, 43.35555],
-        [17.27873, 43.35526],
-        [17.28313, 43.34764],
-        [17.29342, 43.33131],
-        [17.30111, 43.31927],
-        [17.30266, 43.31749],
-        [17.30441, 43.31584],
-        [17.30598, 43.31389],
-        [17.3095, 43.30684],
-        [17.31084, 43.30487],
-        [17.31178, 43.30308],
-        [17.31337, 43.30084],
-        [17.31383, 43.29974],
-        [17.31784, 43.296],
-        [17.32055, 43.29333],
-        [17.32438, 43.28912],
-        [17.32627, 43.28879],
-        [17.32901, 43.28795],
-        [17.33012, 43.2867],
-        [17.33138, 43.28491],
-        [17.33266, 43.28267],
-        [17.33254, 43.28088],
-        [17.3335, 43.27866],
-        [17.33408, 43.27704],
-        [17.33412, 43.2747],
-        [17.33478, 43.27417],
-        [17.33552, 43.27283],
-        [17.33602, 43.2714],
-        [17.33582, 43.27005],
-        [17.33559, 43.26978],
-        [17.33641, 43.26898],
-        [17.33653, 43.26762],
-        [17.33611, 43.26646],
-        [17.33564, 43.26588],
-        [17.3389, 43.26232],
-        [17.3407, 43.25991],
-        [17.341, 43.25936],
-        [17.34344, 43.25777],
-        [17.34447, 43.25629],
-        [17.34462, 43.25537],
-        [17.34752, 43.25508],
-        [17.35451, 43.25395],
-        [17.36082, 43.25189],
-        [17.36824, 43.25169],
-        [17.37011, 43.25216],
-        [17.37294, 43.25218],
-        [17.37646, 43.252],
-        [17.379, 43.25122],
-        [17.3817, 43.25009],
-        [17.38471, 43.25012],
-        [17.39222, 43.24854],
-        [17.39827, 43.24763],
-        [17.40078, 43.24631],
-        [17.40786, 43.24182],
-        [17.41663, 43.23641],
-        [17.42366, 43.23203],
-        [17.4234, 43.22816],
-        [17.42638, 43.22814],
-        [17.43036, 43.22016],
-        [17.43233, 43.21821],
-        [17.4327, 43.21716],
-        [17.43304, 43.21537],
-        [17.43274, 43.21455],
-        [17.43303, 43.21187],
-        [17.43455, 43.21052],
-        [17.43485, 43.20942],
-        [17.43455, 43.20771],
-        [17.43571, 43.20556],
-        [17.43552, 43.20439],
-        [17.43515, 43.20269],
-        [17.4345, 43.19824],
-        [17.43352, 43.19711],
-        [17.43303, 43.19456],
-        [17.43217, 43.19342],
-        [17.43154, 43.19119],
-        [17.43043, 43.18933],
-        [17.43053, 43.18794],
-        [17.43172, 43.18519],
-        [17.43346, 43.18123],
-        [17.43591, 43.18263],
-        [17.438, 43.18288],
-        [17.44028, 43.18232],
-        [17.44367, 43.18111],
-        [17.44761, 43.18015],
-        [17.45085, 43.17971],
-        [17.45279, 43.17889],
-        [17.4534, 43.17815],
-        [17.45524, 43.17755],
-        [17.45715, 43.17643],
-        [17.45855, 43.1755],
-        [17.45945, 43.17458],
-        [17.46034, 43.17377],
-        [17.46214, 43.17318],
-        [17.46327, 43.17248],
-        [17.46514, 43.17164],
-        [17.46668, 43.17045],
-        [17.46946, 43.16877],
-        [17.47561, 43.16536],
-        [17.47604, 43.16418],
-        [17.47869, 43.1628],
-        [17.48447, 43.16096],
-        [17.48814, 43.16012],
-        [17.49152, 43.15872],
-        [17.49323, 43.15725],
-        [17.49458, 43.15644],
-        [17.49585, 43.15634],
-        [17.49633, 43.15603],
-        [17.50096, 43.15453],
-        [17.50323, 43.15328],
-        [17.5041, 43.15307],
-        [17.5075, 43.15153],
-        [17.50916, 43.1501],
-        [17.51062, 43.14917],
-        [17.51568, 43.14763],
-        [17.52138, 43.1462],
-        [17.528, 43.14377],
-        [17.53268, 43.14149],
-        [17.53599, 43.1394],
-        [17.54105, 43.13789],
-        [17.54608, 43.13624],
-        [17.54735, 43.1356],
-        [17.54932, 43.13385],
-        [17.5514, 43.13349],
-        [17.55324, 43.13339],
-        [17.55662, 43.1323],
-        [17.55868, 43.13126],
-        [17.56014, 43.13017],
-        [17.56376, 43.12737],
-        [17.56486, 43.12661],
-        [17.5672, 43.12577],
-        [17.56843, 43.12491],
-        [17.5703, 43.12428],
-        [17.57361, 43.12358],
-        [17.57736, 43.12229],
-        [17.5818, 43.12095],
-        [17.58489, 43.11943],
-        [17.58694, 43.11874],
-        [17.58996, 43.11716],
-        [17.59436, 43.11478],
-        [17.59802, 43.1129],
-        [17.60069, 43.11105],
-        [17.60222, 43.11094],
-        [17.60363, 43.11035],
-        [17.60494, 43.10942],
-        [17.60589, 43.1083],
-        [17.61323, 43.1047],
-        [17.62194, 43.10018],
-        [17.62776, 43.09777],
-        [17.629, 43.09757],
-        [17.63049, 43.09706],
-        [17.63221, 43.09613],
-        [17.63334, 43.09557],
-        [17.63715, 43.09477],
-        [17.63904, 43.09354],
-        [17.64095, 43.09229],
-        [17.64304, 43.09121],
-        [17.64429, 43.09027],
-        [17.64522, 43.08805],
-        [17.65012, 43.07925],
-        [17.65267, 43.07481],
-        [17.65291, 43.07368],
-        [17.65295, 43.07287],
-        [17.65387, 43.07064],
-        [17.65413, 43.07026],
-        [17.65533, 43.06911],
-        [17.65625, 43.06685],
-        [17.65718, 43.06482],
-        [17.65969, 43.06062],
-        [17.66288, 43.05543],
-        [17.66398, 43.05285],
-        [17.66521, 43.05078],
-        [17.66695, 43.04723],
-        [17.669, 43.04299],
-        [17.67219, 43.0381],
-        [17.67612, 43.03219],
-        [17.67831, 43.02874],
-        [17.67986, 43.0277],
-        [17.68069, 43.02618],
-        [17.68167, 43.0252],
-        [17.68268, 43.02425],
-        [17.68431, 43.02197],
-        [17.68636, 43.02069],
-        [17.68689, 43.01954],
-        [17.68763, 43.01635],
-        [17.68846, 43.01132],
-        [17.69535, 43.00363],
-        [17.69763, 43.00099],
-        [17.69817, 42.99964],
-        [17.70499, 42.98764],
-        [17.70556, 42.98527],
-        [17.70669, 42.98351],
-        [17.7085, 42.98023],
-        [17.71408, 42.97496],
-        [17.71384, 42.9707],
-        [17.70105, 42.96614],
-        [17.68885, 42.9633],
-        [17.68698, 42.96293],
-        [17.68241, 42.96273],
-        [17.67891, 42.96188],
-        [17.67431, 42.96167],
-        [17.67178, 42.96069],
-        [17.67, 42.95984],
-        [17.66802, 42.95943],
-        [17.66662, 42.95952],
-        [17.66291, 42.9585],
-        [17.66149, 42.95834],
-        [17.66003, 42.95843],
-        [17.65517, 42.95706],
-        [17.65359, 42.95674],
-        [17.65131, 42.95563],
-        [17.64944, 42.95519],
-        [17.64297, 42.95113],
-        [17.64175, 42.95083],
-        [17.63991, 42.95074],
-        [17.63492, 42.94772],
-        [17.63317, 42.94633],
-        [17.63199, 42.9452],
-        [17.62938, 42.94451],
-        [17.62762, 42.94357],
-        [17.62611, 42.9432],
-        [17.62282, 42.94183],
-        [17.62121, 42.94083],
-        [17.61881, 42.94012],
-        [17.61537, 42.93951],
-        [17.60937, 42.93868],
-        [17.60543, 42.93831],
-        [17.6032, 42.93825],
-        [17.60213, 42.93792],
-        [17.59293, 42.93768],
-        [17.58964, 42.93703],
-        [17.58596, 42.93632],
-        [17.58424, 42.93625],
-        [17.58165, 42.93547],
-        [17.58002, 42.93553],
-        [17.57584, 42.93452],
-        [17.5649, 42.93716],
-        [17.56195, 42.93632],
-        [17.55758, 42.9348],
-        [17.55283, 42.93751],
-        [17.55068, 42.9375],
-        [17.54079, 42.92978],
-        [17.55227, 42.92245],
-        [17.57828, 42.91352],
-        [17.60211, 42.9037],
-        [17.61379, 42.90241],
-        [17.61921, 42.89785],
-        [17.62797, 42.89436],
-        [17.63398, 42.88891],
-        [17.64304, 42.88436],
-        [17.64799, 42.88926],
-        [17.66215, 42.90753],
-        [17.6643, 42.91162],
-        [17.67305, 42.92048],
-        [17.67683, 42.92325],
-        [17.68764, 42.92563],
-        [17.70404, 42.92431],
-        [17.72558, 42.92174],
-        [17.75631, 42.91476],
-        [17.76858, 42.90992],
-        [17.7879, 42.89439],
-        [17.80041, 42.9114],
-        [17.80532, 42.91742],
-        [17.80747, 42.91947],
-        [17.80994, 42.91968],
-        [17.81313, 42.91834],
-        [17.8145, 42.91781],
-        [17.81646, 42.91693],
-        [17.82294, 42.9144],
-        [17.83115, 42.91166],
-        [17.84137, 42.90642],
-        [17.84605, 42.90453],
-        [17.84684, 42.90398],
-        [17.84753, 42.90304],
-        [17.85276, 42.89772],
-        [17.85497, 42.89507],
-        [17.85905, 42.88991],
-        [17.86051, 42.88881],
-        [17.8618, 42.88642],
-        [17.86216, 42.88405],
-        [17.86074, 42.88175],
-        [17.8592, 42.87944],
-        [17.85757, 42.8779],
-        [17.8578, 42.87662],
-        [17.85961, 42.86939],
-        [17.86077, 42.86793],
-        [17.86188, 42.8654],
-        [17.86257, 42.86362],
-        [17.86613, 42.85892],
-        [17.86645, 42.85802],
-        [17.86733, 42.85673],
-        [17.87057, 42.85152],
-        [17.87315, 42.84772],
-        [17.87643, 42.84496],
-        [17.878, 42.84334],
-        [17.88046, 42.83977],
-        [17.88551, 42.8398],
-        [17.88933, 42.83823],
-        [17.89355, 42.83672],
-        [17.90126, 42.83463],
-        [17.90231, 42.83418],
-        [17.90334, 42.8331],
-        [17.90351, 42.8322],
-        [17.90241, 42.82987],
-        [17.90113, 42.82794],
-        [17.90003, 42.82717],
-        [17.8989, 42.82512],
-        [17.89754, 42.82419],
-        [17.89478, 42.82156],
-        [17.8933, 42.82071],
-        [17.89081, 42.815],
-        [17.89327, 42.81196],
-        [17.90171, 42.81198],
-        [17.90911, 42.8131],
-        [17.91046, 42.81308],
-        [17.91166, 42.81273],
-        [17.91362, 42.81155],
-        [17.91613, 42.81011],
-        [17.94119, 42.80308],
-        [17.95164, 42.8011],
-        [17.95338, 42.79982],
-        [17.96005, 42.7946],
-        [17.962, 42.79191],
-        [17.96683, 42.78819],
-        [17.96825, 42.78757],
-        [17.96921, 42.78682],
-        [17.96966, 42.78627],
-        [17.97529, 42.78378],
-        [17.97704, 42.78202],
-        [17.98146, 42.78038],
-        [17.98501, 42.78065],
-        [17.99464, 42.77921],
-        [17.99837, 42.77783],
-        [17.99975, 42.77641],
-        [17.99979, 42.77518],
-        [17.99975, 42.7739],
-        [18.00007, 42.77231],
-        [18.00018, 42.76573],
-        [18.00168, 42.76442],
-        [18.00219, 42.76363],
-        [18.00515, 42.75962],
-        [18.00663, 42.75855],
-        [18.01058, 42.75648],
-        [18.01161, 42.75539],
-        [18.0123, 42.75465],
-        [18.02601, 42.75448],
-        [18.02882, 42.75358],
-        [18.03268, 42.75248],
-        [18.03451, 42.75242],
-        [18.03698, 42.7518],
-        [18.04343, 42.75042],
-        [18.04496, 42.74908],
-        [18.05144, 42.74422],
-        [18.05339, 42.74396],
-        [18.05616, 42.74279],
-        [18.0588, 42.74176],
-        [18.06393, 42.73857],
-        [18.06562, 42.73715],
-        [18.06755, 42.7354],
-        [18.07105, 42.73316],
-        [18.07609, 42.7296],
-        [18.07667, 42.7287],
-        [18.07663, 42.72749],
-        [18.07691, 42.7266],
-        [18.07903, 42.72698],
-        [18.08019, 42.72679],
-        [18.08159, 42.72632],
-        [18.08416, 42.72504],
-        [18.0927, 42.72184],
-        [18.10032, 42.71919],
-        [18.10392, 42.71713],
-        [18.10843, 42.71355],
-        [18.10933, 42.71193],
-        [18.11045, 42.70962],
-        [18.11141, 42.70663],
-        [18.11131, 42.7027],
-        [18.11036, 42.70155],
-        [18.1107, 42.69967],
-        [18.11049, 42.69906],
-        [18.10873, 42.69663],
-        [18.10813, 42.69359],
-        [18.10592, 42.68963],
-        [18.1059, 42.68878],
-        [18.10976, 42.68843],
-        [18.1115, 42.68857],
-        [18.11246, 42.68857],
-        [18.11442, 42.68876],
-        [18.11626, 42.68833],
-        [18.11746, 42.68747],
-        [18.11948, 42.68633],
-        [18.12422, 42.68545],
-        [18.12667, 42.68494],
-        [18.12851, 42.68472],
-        [18.13373, 42.68444],
-        [18.13527, 42.68384],
-        [18.13813, 42.68226],
-        [18.14085, 42.68261],
-        [18.14253, 42.68248],
-        [18.14596, 42.68086],
-        [18.14686, 42.67969],
-        [18.14772, 42.67676],
-        [18.14931, 42.67204],
-        [18.15328, 42.66798],
-        [18.15613, 42.66443],
-        [18.15772, 42.66199],
-        [18.15828, 42.65994],
-        [18.15819, 42.65896],
-        [18.16598, 42.66117],
-        [18.17158, 42.66197],
-        [18.17261, 42.66182],
-        [18.17396, 42.66295],
-        [18.17501, 42.66333],
-        [18.17606, 42.66339],
-        [18.17913, 42.66322],
-        [18.18087, 42.66254],
-        [18.18338, 42.66011],
-        [18.18589, 42.65781],
-        [18.18772, 42.65804],
-        [18.19093, 42.65757],
-        [18.19327, 42.65669],
-        [18.1948, 42.65524],
-        [18.19497, 42.65473],
-        [18.19673, 42.65381],
-        [18.19782, 42.65206],
-        [18.19862, 42.6508],
-        [18.20424, 42.64569],
-        [18.20761, 42.64051],
-        [18.21389, 42.63647],
-        [18.21563, 42.63405],
-        [18.21844, 42.63086],
-        [18.22147, 42.62796],
-        [18.22422, 42.62502],
-        [18.22887, 42.62202],
-        [18.23381, 42.62163],
-        [18.23632, 42.62041],
-        [18.23728, 42.61894],
-        [18.23733, 42.61801],
-        [18.23911, 42.6185],
-        [18.24241, 42.61822],
-        [18.24368, 42.61763],
-        [18.24522, 42.61563],
-        [18.24619, 42.61395],
-        [18.2466, 42.61106],
-        [18.24679, 42.60541],
-        [18.24911, 42.60547],
-        [18.25844, 42.60781],
-        [18.26273, 42.60892],
-        [18.26477, 42.61117],
-        [18.27044, 42.61342],
-        [18.27312, 42.61307],
-        [18.2744, 42.61517],
-        [18.28073, 42.61969],
-        [18.28168, 42.61995],
-        [18.28503, 42.61967],
-        [18.28861, 42.61945],
-        [18.29249, 42.61817],
-        [18.31086, 42.61733],
-        [18.3235, 42.61934],
-        [18.33193, 42.62142],
-        [18.34811, 42.6216],
-        [18.36845, 42.61827],
-        [18.37062, 42.61669],
-        [18.37631, 42.60993],
-        [18.3824, 42.60094],
-        [18.38596, 42.59811],
-        [18.39259, 42.59094],
-        [18.40075, 42.58794],
-        [18.40066, 42.586],
-        [18.40545, 42.58592],
-        [18.41875, 42.57781],
-        [18.43351, 42.56805],
-        [18.43729, 42.56658],
-        [18.43954, 42.56497],
-        [18.44008, 42.5637],
-        [18.44096, 42.5567],
-        [18.44343, 42.55112],
-        [18.44341, 42.54918],
-        [18.44244, 42.53503],
-        [18.44201, 42.52551],
-        [18.44072, 42.52124],
-        [18.44021, 42.52064],
-        [18.446, 42.5169],
-        [18.45055, 42.51001],
-        [18.44931, 42.50814],
-        [18.44407, 42.50121],
-        [18.44394, 42.49871],
-        [18.44321, 42.49754],
-        [18.4433, 42.4959],
-        [18.44223, 42.49397],
-        [18.44171, 42.49318],
-        [18.44115, 42.49026],
-        [18.44175, 42.48786],
-        [18.44102, 42.48631],
-        [18.43987, 42.48498],
-        [18.44613, 42.48264],
-        [18.45077, 42.47909],
-        [18.45274, 42.4765],
-        [18.456, 42.47482],
-        [18.45815, 42.47529],
-        [18.46102, 42.47444],
-        [18.46634, 42.47203],
-        [18.47647, 42.46665],
-        [18.4787, 42.46409],
-        [18.48239, 42.45883],
-        [18.48673, 42.45316],
-        [18.49119, 42.45006],
-        [18.49437, 42.4474],
-        [18.49621, 42.44357],
-        [18.5069, 42.43435],
-        [18.50944, 42.43283],
-        [18.51866, 42.42855],
-        [18.52484, 42.4237],
-        [18.52851, 42.42188],
-        [18.52998, 42.42174],
-        [18.53683, 42.39958],
-        [18.53816, 42.39319],
-        [18.53787, 42.39042],
-        [18.53516, 42.38933],
-        [18.52931, 42.3893],
-        [18.52232, 42.39066],
-        [18.51919, 42.39242],
-        [18.51662, 42.39288],
-        [18.51248, 42.39541],
-        [18.50758, 42.39839],
-        [18.50435, 42.40095],
-        [18.50335, 42.4065],
-        [18.48793, 42.4169],
-        [18.48287, 42.41931],
-        [18.47862, 42.42371],
-        [18.47561, 42.42659],
-        [18.47261, 42.42935],
-        [18.47124, 42.43261],
-        [18.46591, 42.43701],
-        [18.46385, 42.43961],
-        [18.45969, 42.4424],
-        [18.44974, 42.44683],
-        [18.44562, 42.44309],
-        [18.4306, 42.43708],
-        [18.42236, 42.44081],
-        [18.42253, 42.44582],
-        [18.40219, 42.45741],
-        [18.40716, 42.46456],
-        [18.37051, 42.48292],
-        [18.35026, 42.49159],
-        [18.30503, 42.5133],
-        [18.26941, 42.52582],
-        [18.26348, 42.53474],
-        [18.24091, 42.54979],
-        [18.22254, 42.56181],
-        [18.21945, 42.56775],
-        [18.19851, 42.56648],
-        [18.18718, 42.57255],
-        [18.18443, 42.57887],
-        [18.16795, 42.58532],
-        [18.16915, 42.5905],
-        [18.19868, 42.59998],
-        [18.21327, 42.59833],
-        [18.21568, 42.60453],
-        [18.2016, 42.61501],
-        [18.18237, 42.60983],
-        [18.16401, 42.61476],
-        [18.14461, 42.62524],
-        [18.13379, 42.62676],
-        [18.1307, 42.61792],
-        [18.12178, 42.61678],
-        [18.10822, 42.62171],
-        [18.10444, 42.6351],
-        [18.03989, 42.64873],
-        [17.94891, 42.64128],
-        [17.06039, 42.69152],
-        [16.35138, 42.37123],
-        [16.23677, 42.38453],
-        [16.39023, 42.73995],
-        [15.43075, 43.08152],
-        [15.42676, 43.10342],
-        [15.63066, 43.43802],
-        [14.62071, 44.3094],
-        [14.29287, 44.49332],
-        [14.00808, 44.80011],
-        [13.9892, 44.78854],
-        [13.97152, 44.78829],
-        [13.95882, 44.78768],
-        [13.95367, 44.7794],
-        [13.95401, 44.76916],
-        [13.93564, 44.75905],
-        [13.88603, 44.75271],
-        [13.88535, 44.76331],
-        [13.89307, 44.78049],
-        [13.89153, 44.8023],
-        [13.86715, 44.80388],
-        [13.82578, 44.82532],
-        [13.81273, 44.84467],
-        [13.80363, 44.85648],
-        [13.78447, 44.85757],
-        [13.78601, 44.88862],
-        [13.77793, 44.89044],
-        [13.76604, 44.88889],
-        [13.7571, 44.8829],
-        [13.74901, 44.88263],
-        [13.7396, 44.88856],
-        [13.72724, 44.90183],
-        [13.72647, 44.90823],
-        [13.71639, 44.90809],
-        [13.70853, 44.9134],
-        [13.70926, 44.91746],
-        [13.71972, 44.92473],
-        [13.71925, 44.92803],
-        [13.71107, 44.9351],
-        [13.7123, 44.94594],
-        [13.72398, 44.94888],
-        [13.72443, 44.94412],
-        [13.74003, 44.94462],
-        [13.74596, 44.94366],
-        [13.77423, 44.9216],
-        [13.79362, 44.92123],
-        [13.7959, 44.92877],
-        [13.78487, 44.93867],
-        [13.77079, 44.95919],
-        [13.76178, 44.96316],
-        [13.76116, 44.98088],
-        [13.73532, 44.98052],
-        [13.72261, 44.98289],
-        [13.69926, 44.98714],
-        [13.69017, 44.99661],
-        [13.68347, 45.00984],
-        [13.68334, 45.01524],
-        [13.6745, 45.01506],
-        [13.64605, 45.03605],
-        [13.60777, 45.03763],
-        [13.60451, 45.08431],
-        [13.60193, 45.12296],
-        [13.57035, 45.13967],
-        [13.57754, 45.15724],
-        [13.56139, 45.19789],
-        [13.57374, 45.22722],
-        [13.58211, 45.24115],
-        [13.56651, 45.25347],
-        [13.56571, 45.27271],
-        [13.55416, 45.30856],
-        [13.55372, 45.31784],
-        [13.54537, 45.31771],
-        [13.52898, 45.32753],
-        [13.53379, 45.36116],
-        [13.52818, 45.37418],
-        [13.52383, 45.39419],
-        [13.51034, 45.4124],
-        [13.51013, 45.42486],
-        [13.50659, 45.4248],
-        [13.50447, 45.44261],
-        [13.50872, 45.44279],
-        [13.5076, 45.46073],
-        [13.50549, 45.46079],
-        [13.48227, 45.48675],
-        [13.48555, 45.496],
-        [13.49894, 45.50731],
-        [13.50564, 45.50971],
-        [13.5136, 45.5099],
-        [13.5443, 45.4977],
-        [13.56091, 45.49377],
-        [13.58344, 45.48213],
-        [13.58341, 45.48066],
-        [13.58734, 45.48071],
-        [13.62264, 45.46586],
-        [13.62274, 45.46366],
-        [13.63102, 45.46387],
-        [13.64511, 45.46236],
-        [13.65952, 45.45616],
-        [13.66785, 45.45194],
-        [13.67463, 45.44773],
-        [13.68073, 45.44797],
-        [13.68596, 45.4511],
-        [13.69643, 45.45802],
-        [13.70399, 45.46013],
-        [13.71042, 45.46013],
-        [13.71317, 45.45688],
-        [13.71969, 45.45869],
-        [13.72184, 45.46133],
-        [13.72699, 45.46278],
-        [13.74175, 45.46453],
-        [13.75248, 45.46362],
-        [13.76432, 45.47054],
-        [13.77308, 45.46934],
-        [13.77602, 45.46747],
-        [13.78933, 45.46771],
-        [13.80501, 45.46386],
-        [13.81119, 45.4586],
-        [13.81187, 45.45483],
-        [13.80913, 45.45047],
-        [13.80969, 45.44577],
-        [13.81865, 45.4421],
-        [13.819, 45.43779],
-        [13.83243, 45.43803],
-        [13.84217, 45.43677],
-        [13.85427, 45.43439],
-        [13.85827, 45.42999],
-        [13.86286, 45.4305],
-        [13.88238, 45.429],
-        [13.8859, 45.43439],
-        [13.89204, 45.44297],
-        [13.90762, 45.45432],
-        [13.91371, 45.45664],
-        [13.94096, 45.45718],
-        [13.94573, 45.45938],
-        [13.9595, 45.45844],
-        [13.9701, 45.45233],
-        [13.98027, 45.45832],
-        [13.98186, 45.47094],
-        [13.98663, 45.47319],
-        [13.99019, 45.47328],
-        [13.98087, 45.48255],
-        [13.98281, 45.48451],
-        [13.97113, 45.49161],
-        [13.96633, 45.49335],
-        [13.96186, 45.49444],
-        [13.95822, 45.5071],
-        [13.96337, 45.5105],
-        [13.96688, 45.51465],
-        [13.97414, 45.51768],
-        [13.97804, 45.51738],
-        [13.9816, 45.51654],
-        [13.98396, 45.51432],
-        [13.98937, 45.51185],
-        [13.99542, 45.51104],
-        [13.99336, 45.51483],
-        [13.99435, 45.51756],
-        [13.99804, 45.52147],
-        [14.00195, 45.52298],
-        [14.01465, 45.52213],
-        [14.03173, 45.51173],
-        [14.04495, 45.50078],
-        [14.04941, 45.50117],
-        [14.05375, 45.50006],
-        [14.07602, 45.48728],
-        [14.09147, 45.48502],
-        [14.10915, 45.48586],
-        [14.1267, 45.48135],
-        [14.14189, 45.47795],
-        [14.14872, 45.48306],
-        [14.15481, 45.48385],
-        [14.17172, 45.48258],
-        [14.18854, 45.47864],
-        [14.20335, 45.47325],
-        [14.20288, 45.483],
-        [14.21043, 45.49459],
-        [14.217, 45.49654],
-        [14.22047, 45.50397],
-        [14.23137, 45.50845],
-        [14.24884, 45.50803],
-        [14.26656, 45.48715],
-        [14.27695, 45.49305],
-        [14.28914, 45.49296],
-        [14.29467, 45.48676],
-        [14.30622, 45.48345],
-        [14.31733, 45.48607],
-        [14.31982, 45.4846],
-        [14.32179, 45.4827],
-        [14.32381, 45.47413],
-        [14.33656, 45.48195],
-        [14.34862, 45.48791],
-        [14.35282, 45.48857],
-        [14.36578, 45.48821],
-        [14.3869, 45.49693],
-        [14.39243, 45.4975],
-        [14.39462, 45.50553],
-        [14.41007, 45.5099],
-        [14.4138, 45.51251],
-        [14.42913, 45.51215],
-        [14.43346, 45.51353],
-        [14.43998, 45.51931],
-        [14.45299, 45.52283],
-        [14.47341, 45.53756],
-        [14.48749, 45.54141],
-        [14.49376, 45.54991],
-        [14.49238, 45.56596],
-        [14.49577, 45.58008],
-        [14.50058, 45.58455],
-        [14.50178, 45.58852],
-        [14.49311, 45.59638],
-        [14.49324, 45.60041],
-        [14.4953, 45.60824],
-        [14.49998, 45.6084],
-        [14.49993, 45.61037],
-        [14.50305, 45.61087],
-        [14.5112, 45.61024],
-        [14.51311, 45.6103],
-        [14.51569, 45.61242],
-        [14.52614, 45.61357],
-        [14.53247, 45.61654],
-        [14.54144, 45.62448],
-        [14.54242, 45.62709],
-        [14.54453, 45.62895],
-        [14.54779, 45.63655],
-        [14.56186, 45.65401],
-        [14.56487, 45.6756],
-        [14.56821, 45.67686],
-        [14.57954, 45.67464],
-        [14.58418, 45.66912],
-        [14.59748, 45.67254],
-        [14.61164, 45.66673],
-        [14.61345, 45.65737],
-        [14.61027, 45.65065],
-        [14.60522, 45.62774],
-        [14.62551, 45.61817],
-        [14.63212, 45.61512],
-        [14.63507, 45.60761],
-        [14.64061, 45.60736],
-        [14.6471, 45.60249],
-        [14.65359, 45.59515],
-        [14.6544, 45.59372],
-        [14.65441, 45.59304],
-        [14.66074, 45.59309],
-        [14.67618, 45.59236],
-        [14.68164, 45.59083],
-        [14.68697, 45.58689],
-        [14.6881, 45.5847],
-        [14.69134, 45.58365],
-        [14.69391, 45.58134],
-        [14.69629, 45.57799],
-        [14.70107, 45.56974],
-        [14.70367, 45.56282],
-        [14.70119, 45.55836],
-        [14.69821, 45.55431],
-        [14.6947, 45.55291],
-        [14.69452, 45.54617],
-        [14.69276, 45.54485],
-        [14.69175, 45.54122],
-        [14.69211, 45.53837],
-        [14.68957, 45.53456],
-        [14.69169, 45.53064],
-        [14.69859, 45.52874],
-        [14.69724, 45.53345],
-        [14.69989, 45.53651],
-        [14.70526, 45.53816],
-        [14.72508, 45.53642],
-        [14.73145, 45.53258],
-        [14.73729, 45.53237],
-        [14.74024, 45.5301],
-        [14.74343, 45.52568],
-        [14.75239, 45.52068],
-        [14.76183, 45.51444],
-        [14.76891, 45.51502],
-        [14.77298, 45.51369],
-        [14.77363, 45.51026],
-        [14.7882, 45.50911],
-        [14.79239, 45.50555],
-        [14.79516, 45.50609],
-        [14.79864, 45.50514],
-        [14.80766, 45.49592],
-        [14.80725, 45.49385],
-        [14.80389, 45.4912],
-        [14.80796, 45.48889],
-        [14.80949, 45.48475],
-        [14.80996, 45.47995],
-        [14.82011, 45.47205],
-        [14.82058, 45.46316],
-        [14.83309, 45.46353],
-        [14.84553, 45.46519],
-        [14.86034, 45.46974],
-        [14.86689, 45.46895],
-        [14.87249, 45.47437],
-        [14.87904, 45.4752],
-        [14.88895, 45.47917],
-        [14.90252, 45.47822],
-        [14.90782, 45.4814],
-        [14.90776, 45.48314],
-        [14.90664, 45.48736],
-        [14.90735, 45.4922],
-        [14.91083, 45.49401],
-        [14.90718, 45.49848],
-        [14.90859, 45.50377],
-        [14.91184, 45.50514],
-        [14.90894, 45.51097],
-        [14.9093, 45.51593],
-        [14.91001, 45.52055],
-        [14.9162, 45.52444],
-        [14.91667, 45.52845],
-        [14.92157, 45.53097],
-        [14.93136, 45.53217],
-        [14.93561, 45.53072],
-        [14.94953, 45.52378],
-        [14.97395, 45.51006],
-        [14.98516, 45.50063],
-        [14.99253, 45.49927],
-        [15.00798, 45.50055],
-        [15.0143, 45.5003],
-        [15.01872, 45.49811],
-        [15.03046, 45.48897],
-        [15.04119, 45.49067],
-        [15.04639, 45.49654],
-        [15.057, 45.49707],
-        [15.06078, 45.49352],
-        [15.06255, 45.49033],
-        [15.07258, 45.49062],
-        [15.0793, 45.48541],
-        [15.08738, 45.48583],
-        [15.09116, 45.48368],
-        [15.09181, 45.47995],
-        [15.08809, 45.47689],
-        [15.0888, 45.46924],
-        [15.09558, 45.46622],
-        [15.10443, 45.46618],
-        [15.11499, 45.45819],
-        [15.12679, 45.44959],
-        [15.14018, 45.44719],
-        [15.14525, 45.44164],
-        [15.15085, 45.43249],
-        [15.15846, 45.42765],
-        [15.16778, 45.42529],
-        [15.17427, 45.42633],
-        [15.17775, 45.42479],
-        [15.18566, 45.42951],
-        [15.18453, 45.43552],
-        [15.18772, 45.43759],
-        [15.19142, 45.43844],
-        [15.19617, 45.4385],
-        [15.19971, 45.43634],
-        [15.2043, 45.4303],
-        [15.2073, 45.42827],
-        [15.22158, 45.42864],
-        [15.22412, 45.43067],
-        [15.22417, 45.43742],
-        [15.22972, 45.44363],
-        [15.23562, 45.45042],
-        [15.24152, 45.45633],
-        [15.25385, 45.46101],
-        [15.26429, 45.46469],
-        [15.26912, 45.46833],
-        [15.2749, 45.46903],
-        [15.27968, 45.46845],
-        [15.29767, 45.46241],
-        [15.32298, 45.45819],
-        [15.32782, 45.45555],
-        [15.33832, 45.46006],
-        [15.3438, 45.45993],
-        [15.34575, 45.46585],
-        [15.34976, 45.46949],
-        [15.35548, 45.47822],
-        [15.36156, 45.48157],
-        [15.37766, 45.48781],
-        [15.37459, 45.48996],
-        [15.36881, 45.49261],
-        [15.36144, 45.49186],
-        [15.35707, 45.49472],
-        [15.34622, 45.50154],
-        [15.33082, 45.50724],
-        [15.32298, 45.51402],
-        [15.32227, 45.51824],
-        [15.31484, 45.51915],
-        [15.31177, 45.52105],
-        [15.30941, 45.52576],
-        [15.30938, 45.52971],
-        [15.30487, 45.52969],
-        [15.29879, 45.53386],
-        [15.29661, 45.53841],
-        [15.29691, 45.5425],
-        [15.29431, 45.54807],
-        [15.29372, 45.56947],
-        [15.29396, 45.58243],
-        [15.27414, 45.59903],
-        [15.27225, 45.6053],
-        [15.28122, 45.61198],
-        [15.29372, 45.61578],
-        [15.30233, 45.61603],
-        [15.29738, 45.62139],
-        [15.2975, 45.63162],
-        [15.30363, 45.63575],
-        [15.33112, 45.63806],
-        [15.34044, 45.63682],
-        [15.34669, 45.63806],
-        [15.34103, 45.63888],
-        [15.33702, 45.64309],
-        [15.33702, 45.6468],
-        [15.34292, 45.64903],
-        [15.3553, 45.6501],
-        [15.37335, 45.64845],
-        [15.37831, 45.64408],
-        [15.38657, 45.64292],
-        [15.38916, 45.64086],
-        [15.39836, 45.64787],
-        [15.39176, 45.65183],
-        [15.38904, 45.65604],
-        [15.3881, 45.659],
-        [15.38338, 45.66667],
-        [15.37276, 45.67566],
-        [15.37005, 45.67912],
-        [15.36734, 45.68233],
-        [15.36639, 45.67516],
-        [15.352, 45.66585],
-        [15.34575, 45.66692],
-        [15.34327, 45.67129],
-        [15.34598, 45.6858],
-        [15.35778, 45.69124],
-        [15.35896, 45.69321],
-        [15.35212, 45.69791],
-        [15.35424, 45.7101],
-        [15.34315, 45.7087],
-        [15.33808, 45.70195],
-        [15.329, 45.69445],
-        [15.32392, 45.69404],
-        [15.33136, 45.67368],
-        [15.32451, 45.67005],
-        [15.31413, 45.67211],
-        [15.31071, 45.67714],
-        [15.30387, 45.6844],
-        [15.29938, 45.6825],
-        [15.28287, 45.69041],
-        [15.28263, 45.70409],
-        [15.28004, 45.70483],
-        [15.27296, 45.70112],
-        [15.27308, 45.69297],
-        [15.26859, 45.69132],
-        [15.26437, 45.69142],
-        [15.25461, 45.69799],
-        [15.25213, 45.70458],
-        [15.25042, 45.70792],
-        [15.24647, 45.71076],
-        [15.24724, 45.71377],
-        [15.24541, 45.71525],
-        [15.24087, 45.71579],
-        [15.2401, 45.71772],
-        [15.23532, 45.719],
-        [15.23367, 45.72238],
-        [15.23656, 45.72608],
-        [15.25379, 45.73028],
-        [15.25904, 45.72921],
-        [15.2703, 45.73807],
-        [15.27042, 45.74132],
-        [15.27933, 45.74696],
-        [15.29059, 45.74963],
-        [15.29278, 45.75428],
-        [15.29903, 45.7577],
-        [15.30723, 45.7584],
-        [15.31643, 45.76297],
-        [15.3228, 45.76309],
-        [15.32982, 45.76597],
-        [15.3533, 45.77655],
-        [15.36197, 45.77959],
-        [15.36775, 45.77963],
-        [15.3725, 45.78229],
-        [15.37772, 45.78234],
-        [15.3804, 45.78186],
-        [15.38204, 45.78291],
-        [15.38291, 45.7856],
-        [15.39323, 45.79224],
-        [15.39851, 45.79415],
-        [15.40482, 45.79528],
-        [15.41276, 45.79759],
-        [15.4168, 45.7975],
-        [15.42025, 45.79874],
-        [15.44906, 45.79833],
-        [15.46384, 45.79761],
-        [15.47062, 45.79902],
-        [15.46703, 45.80238],
-        [15.4662, 45.81097],
-        [15.4626, 45.81716],
-        [15.46272, 45.82041],
-        [15.4662, 45.82215],
-        [15.47278, 45.82067],
-        [15.47455, 45.82141],
-        [15.47387, 45.82458],
-        [15.47602, 45.82937],
-        [15.48071, 45.83111],
-        [15.49316, 45.83504],
-        [15.49738, 45.83374],
-        [15.49897, 45.83202],
-        [15.50569, 45.83101],
-        [15.50729, 45.8291],
-        [15.50661, 45.82499],
-        [15.51015, 45.82458],
-        [15.5131, 45.82577],
-        [15.51914, 45.82501],
-        [15.52513, 45.82641],
-        [15.53144, 45.83115],
-        [15.5315, 45.83329],
-        [15.53536, 45.83666],
-        [15.53445, 45.84085],
-        [15.53438, 45.84594],
-        [15.53477, 45.8477],
-        [15.5364, 45.85015],
-        [15.53989, 45.85055],
-        [15.54429, 45.84863],
-        [15.55131, 45.84846],
-        [15.55369, 45.84675],
-        [15.55563, 45.84103],
-        [15.55871, 45.83936],
-        [15.55824, 45.84189],
-        [15.5599, 45.8459],
-        [15.56453, 45.8489],
-        [15.56666, 45.85054],
-        [15.56722, 45.85191],
-        [15.56902, 45.85535],
-        [15.57099, 45.85595],
-        [15.57316, 45.85585],
-        [15.57674, 45.85445],
-        [15.58208, 45.8507],
-        [15.58645, 45.84938],
-        [15.59155, 45.84904],
-        [15.5936, 45.84878],
-        [15.59706, 45.84726],
-        [15.60159, 45.84556],
-        [15.6061, 45.84455],
-        [15.61125, 45.84251],
-        [15.61172, 45.84169],
-        [15.61175, 45.8384],
-        [15.61794, 45.83844],
-        [15.62135, 45.83665],
-        [15.62662, 45.83504],
-        [15.6301, 45.83508],
-        [15.6328, 45.8345],
-        [15.63617, 45.83193],
-        [15.63715, 45.8304],
-        [15.63749, 45.82716],
-        [15.63986, 45.82649],
-        [15.64191, 45.82462],
-        [15.64389, 45.82588],
-        [15.64679, 45.83072],
-        [15.64819, 45.83258],
-        [15.65461, 45.83693],
-        [15.65905, 45.83958],
-        [15.66213, 45.84285],
-        [15.66478, 45.84397],
-        [15.66841, 45.84418],
-        [15.67124, 45.84315],
-        [15.67615, 45.84369],
-        [15.67829, 45.84494],
-        [15.68003, 45.84534],
-        [15.68771, 45.84555],
-        [15.69097, 45.84555],
-        [15.69081, 45.84835],
-        [15.69212, 45.84996],
-        [15.69403, 45.85136],
-        [15.69633, 45.85186],
-        [15.69817, 45.85137],
-        [15.69404, 45.8549],
-        [15.68885, 45.85909],
-        [15.68248, 45.86067],
-        [15.67953, 45.86276],
-        [15.67553, 45.86715],
-        [15.67431, 45.86884],
-        [15.67484, 45.87033],
-        [15.67659, 45.87161],
-        [15.67733, 45.87335],
-        [15.67618, 45.87521],
-        [15.67599, 45.87739],
-        [15.6773, 45.87991],
-        [15.67782, 45.88346],
-        [15.67984, 45.88498],
-        [15.68217, 45.88501],
-        [15.67997, 45.8865],
-        [15.67935, 45.88766],
-        [15.6767, 45.88933],
-        [15.67639, 45.89149],
-        [15.67723, 45.89276],
-        [15.67885, 45.89367],
-        [15.67887, 45.8942],
-        [15.67718, 45.89569],
-        [15.67698, 45.89707],
-        [15.67789, 45.89907],
-        [15.67649, 45.90062],
-        [15.67639, 45.90182],
-        [15.67547, 45.90472],
-        [15.6763, 45.90599],
-        [15.67991, 45.90833],
-        [15.68067, 45.9085],
-        [15.68251, 45.91063],
-        [15.68561, 45.91093],
-        [15.68793, 45.91095],
-        [15.68787, 45.91501],
-        [15.68927, 45.91582],
-        [15.69103, 45.9161],
-        [15.69245, 45.91687],
-        [15.69442, 45.9174],
-        [15.69554, 45.91715],
-        [15.69563, 45.91873],
-        [15.69681, 45.92187],
-        [15.7023, 45.92368],
-        [15.70256, 45.92448],
-        [15.70003, 45.92579],
-        [15.69988, 45.92749],
-        [15.70156, 45.92934],
-        [15.70171, 45.93176],
-        [15.7041, 45.93322],
-        [15.70463, 45.93664],
-        [15.70401, 45.93896],
-        [15.70548, 45.94101],
-        [15.70531, 45.94214],
-        [15.70501, 45.94349],
-        [15.70525, 45.94534],
-        [15.70404, 45.94866],
-        [15.70534, 45.95092],
-        [15.70563, 45.95752],
-        [15.70575, 45.96322],
-        [15.69991, 45.98064],
-        [15.69625, 45.98753],
-        [15.69643, 45.99138],
-        [15.69779, 45.99196],
-        [15.69619, 45.994],
-        [15.69584, 45.99749],
-        [15.6982, 46.00261],
-        [15.70327, 46.00413],
-        [15.70817, 46.00667],
-        [15.7074, 46.00974],
-        [15.70663, 46.01093],
-        [15.70374, 46.01162],
-        [15.70233, 46.01339],
-        [15.70209, 46.01601],
-        [15.70292, 46.01818],
-        [15.70793, 46.02027],
-        [15.70947, 46.02232],
-        [15.70947, 46.02498],
-        [15.71247, 46.03038],
-        [15.71194, 46.03599],
-        [15.71584, 46.04017],
-        [15.71902, 46.04083],
-        [15.71991, 46.04345],
-        [15.72315, 46.04492],
-        [15.72545, 46.04492],
-        [15.72026, 46.04635],
-        [15.7189, 46.04844],
-        [15.7189, 46.04992],
-        [15.71265, 46.05536],
-        [15.70274, 46.05675],
-        [15.68923, 46.06003],
-        [15.68103, 46.06428],
-        [15.67354, 46.06772],
-        [15.66812, 46.06903],
-        [15.66015, 46.06719],
-        [15.65596, 46.06903],
-        [15.65343, 46.07112],
-        [15.65213, 46.07496],
-        [15.65408, 46.07852],
-        [15.64594, 46.08053],
-        [15.64417, 46.08213],
-        [15.63726, 46.07996],
-        [15.63054, 46.08057],
-        [15.62323, 46.08368],
-        [15.61497, 46.08994],
-        [15.61432, 46.09235],
-        [15.61556, 46.09423],
-        [15.61886, 46.09522],
-        [15.61951, 46.09677],
-        [15.61373, 46.09653],
-        [15.6106, 46.09845],
-        [15.60748, 46.10508],
-        [15.60743, 46.10826],
-        [15.60466, 46.10824],
-        [15.6009, 46.1108],
-        [15.60143, 46.11691],
-        [15.60352, 46.12515],
-        [15.60677, 46.13378],
-        [15.60069, 46.13729],
-        [15.5922, 46.14346],
-        [15.59179, 46.14731],
-        [15.5945, 46.15025],
-        [15.60181, 46.15303],
-        [15.60789, 46.15495],
-        [15.6073, 46.15666],
-        [15.59928, 46.15907],
-        [15.59963, 46.1632],
-        [15.60317, 46.1659],
-        [15.60411, 46.1688],
-        [15.61432, 46.1746],
-        [15.62305, 46.17615],
-        [15.62671, 46.17872],
-        [15.63284, 46.18252],
-        [15.63178, 46.18599],
-        [15.63349, 46.18791],
-        [15.64192, 46.19008],
-        [15.6444, 46.19281],
-        [15.64251, 46.19967],
-        [15.64263, 46.20351],
-        [15.63833, 46.20478],
-        [15.63709, 46.20743],
-        [15.63844, 46.21388],
-        [15.64198, 46.2158],
-        [15.64329, 46.21654],
-        [15.64456, 46.21655],
-        [15.64451, 46.21888],
-        [15.64602, 46.21958],
-        [15.64847, 46.21976],
-        [15.65007, 46.22006],
-        [15.65216, 46.22133],
-        [15.65511, 46.22198],
-        [15.65664, 46.22198],
-        [15.66065, 46.22327],
-        [15.66505, 46.22522],
-        [15.66756, 46.22561],
-        [15.67045, 46.22835],
-        [15.67652, 46.22955],
-        [15.68242, 46.22937],
-        [15.68587, 46.22845],
-        [15.68917, 46.22678],
-        [15.69602, 46.22614],
-        [15.70286, 46.225],
-        [15.70846, 46.22578],
-        [15.71359, 46.22578],
-        [15.71787, 46.22496],
-        [15.72642, 46.2259],
-        [15.73032, 46.22504],
-        [15.73229, 46.2238],
-        [15.73321, 46.222],
-        [15.74094, 46.22431],
-        [15.74742, 46.2238],
-        [15.75185, 46.22261],
-        [15.75592, 46.2221],
-        [15.75798, 46.22027],
-        [15.75916, 46.21765],
-        [15.75792, 46.21445],
-        [15.75497, 46.21186],
-        [15.75601, 46.21035],
-        [15.75778, 46.2098],
-        [15.76893, 46.21269],
-        [15.77774, 46.21586],
-        [15.7832, 46.21908],
-        [15.78556, 46.22143],
-        [15.78491, 46.22365],
-        [15.78957, 46.22906],
-        [15.78925, 46.23608],
-        [15.79181, 46.23891],
-        [15.79529, 46.24004],
-        [15.79694, 46.24269],
-        [15.79223, 46.25019],
-        [15.78916, 46.25376],
-        [15.78742, 46.2588],
-        [15.78813, 46.26088],
-        [15.79102, 46.2621],
-        [15.79715, 46.26272],
-        [15.80205, 46.263],
-        [15.81013, 46.26465],
-        [15.81974, 46.26461],
-        [15.82313, 46.26416],
-        [15.82974, 46.26549],
-        [15.83874, 46.26855],
-        [15.84753, 46.26877],
-        [15.85219, 46.26902],
-        [15.86154, 46.27034],
-        [15.86384, 46.27207],
-        [15.86392, 46.27348],
-        [15.86221, 46.27554],
-        [15.86336, 46.27735],
-        [15.86652, 46.27874],
-        [15.8703, 46.2811],
-        [15.87487, 46.28251],
-        [15.87755, 46.2832],
-        [15.88327, 46.28261],
-        [15.89486, 46.28614],
-        [15.89537, 46.28936],
-        [15.89668, 46.29014],
-        [15.91594, 46.29024],
-        [15.91596, 46.29077],
-        [15.91918, 46.28974],
-        [15.92608, 46.29051],
-        [15.92855, 46.29127],
-        [15.93006, 46.29121],
-        [15.93211, 46.29242],
-        [15.93459, 46.29274],
-        [15.93863, 46.2925],
-        [15.94279, 46.29335],
-        [15.94636, 46.29647],
-        [15.95326, 46.29747],
-        [15.95595, 46.29896],
-        [15.96043, 46.29937],
-        [15.96264, 46.3004],
-        [15.96668, 46.30778],
-        [15.9727, 46.31224],
-        [15.97386, 46.31387],
-        [15.97615, 46.31511],
-        [15.97807, 46.31491],
-        [15.9847, 46.31391],
-        [15.98618, 46.31693],
-        [15.98913, 46.31725],
-        [15.99284, 46.31713],
-        [16.00352, 46.31114],
-        [16.01013, 46.3131],
-        [16.01284, 46.3133],
-        [16.0165, 46.31522],
-        [16.01709, 46.31636],
-        [16.01614, 46.31852],
-        [16.01361, 46.32063],
-        [16.01408, 46.32292],
-        [16.02222, 46.3285],
-        [16.02405, 46.33265],
-        [16.02812, 46.33546],
-        [16.03525, 46.33998],
-        [16.03962, 46.34051],
-        [16.04546, 46.34006],
-        [16.04758, 46.33868],
-        [16.05189, 46.33795],
-        [16.05484, 46.34104],
-        [16.05879, 46.3441],
-        [16.06357, 46.34499],
-        [16.07131, 46.3449],
-        [16.0713, 46.34703],
-        [16.07116, 46.36293],
-        [16.0691, 46.3629],
-        [16.06271, 46.36942],
-        [16.05136, 46.37687],
-        [16.04534, 46.38216],
-        [16.0467, 46.38488],
-        [16.05625, 46.39644],
-        [16.08799, 46.39139],
-        [16.13842, 46.40811],
-        [16.1501, 46.40762],
-        [16.15883, 46.40457],
-        [16.17045, 46.3957],
-        [16.17765, 46.392],
-        [16.17818, 46.38838],
-        [16.17989, 46.38822],
-        [16.18679, 46.39066],
-        [16.19181, 46.38907],
-        [16.1947, 46.38728],
-        [16.19405, 46.38224],
-        [16.20266, 46.38378],
-        [16.20827, 46.38732],
-        [16.21788, 46.38793],
-        [16.22042, 46.38598],
-        [16.22484, 46.39005],
-        [16.23204, 46.3905],
-        [16.23888, 46.38769],
-        [16.24106, 46.38236],
-        [16.24985, 46.38289],
-        [16.26507, 46.37886],
-        [16.27191, 46.3813],
-        [16.29863, 46.38102],
-        [16.2996, 46.38154]
-      ]
-    ],
-    "terms_url": "https://dgu.gov.hr/",
-    "terms_text": "Sadrži podatke Državne geodetske uprave",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"
-  },
-  {
-    "id": "dgu-dof-2014-2016",
-    "name": "dgu.hr: Croatia 2014-2016 Aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [16.52249, 46.49112],
-        [16.52243, 46.48295],
-        [16.53499, 46.48387],
-        [16.54437, 46.48076],
-        [16.55592, 46.4841],
-        [16.57032, 46.47695],
-        [16.58004, 46.47638],
-        [16.59578, 46.47995],
-        [16.60968, 46.47961],
-        [16.61939, 46.47165],
-        [16.62559, 46.47188],
-        [16.63262, 46.46934],
-        [16.64719, 46.46773],
-        [16.66846, 46.46184],
-        [16.69994, 46.42007],
-        [16.70966, 46.40541],
-        [16.7192, 46.40206],
-        [16.73511, 46.4046],
-        [16.74231, 46.40217],
-        [16.74466, 46.39848],
-        [16.74466, 46.38981],
-        [16.75052, 46.39224],
-        [16.75789, 46.39097],
-        [16.7609, 46.38566],
-        [16.76509, 46.38843],
-        [16.77296, 46.38877],
-        [16.77899, 46.38473],
-        [16.78502, 46.38947],
-        [16.79624, 46.39028],
-        [16.80444, 46.38739],
-        [16.80896, 46.3808],
-        [16.81231, 46.38011],
-        [16.82069, 46.37688],
-        [16.82873, 46.37768],
-        [16.83743, 46.37895],
-        [16.84329, 46.37399],
-        [16.84329, 46.36786],
-        [16.85234, 46.36451],
-        [16.86172, 46.35873],
-        [16.86808, 46.35769],
-        [16.87361, 46.35365],
-        [16.86959, 46.34775],
-        [16.87277, 46.34868],
-        [16.88148, 46.3407],
-        [16.88583, 46.33434],
-        [16.87897, 46.32544],
-        [16.88198, 46.32093],
-        [16.88047, 46.31364],
-        [16.88365, 46.306],
-        [16.89019, 46.30253],
-        [16.89119, 46.28633],
-        [16.89119, 46.28228],
-        [16.90509, 46.27789],
-        [16.91263, 46.26816],
-        [16.91732, 46.26434],
-        [16.92519, 46.26365],
-        [16.93858, 46.25774],
-        [16.94344, 46.25161],
-        [16.95399, 46.24442],
-        [16.96287, 46.24338],
-        [16.96638, 46.24547],
-        [16.97559, 46.24616],
-        [16.98012, 46.24049],
-        [16.97777, 46.2311],
-        [16.97844, 46.22821],
-        [16.98983, 46.22821],
-        [16.99569, 46.22612],
-        [17.00641, 46.22635],
-        [17.05363, 46.20631],
-        [17.05748, 46.20631],
-        [17.06921, 46.20492],
-        [17.0749, 46.19564],
-        [17.07808, 46.19286],
-        [17.08327, 46.19135],
-        [17.08646, 46.19344],
-        [17.09902, 46.1917],
-        [17.10705, 46.18857],
-        [17.10722, 46.18428],
-        [17.11208, 46.18185],
-        [17.1238, 46.18266],
-        [17.13017, 46.17918],
-        [17.12866, 46.17304],
-        [17.13084, 46.17234],
-        [17.1377, 46.17547],
-        [17.15294, 46.17617],
-        [17.16198, 46.17292],
-        [17.16366, 46.16167],
-        [17.17153, 46.16028],
-        [17.18375, 46.15227],
-        [17.19179, 46.13522],
-        [17.19062, 46.13092],
-        [17.18342, 46.12698],
-        [17.18643, 46.1199],
-        [17.18392, 46.11177],
-        [17.21005, 46.11699],
-        [17.21624, 46.11734],
-        [17.22194, 46.11398],
-        [17.2231, 46.10833],
-        [17.21815, 46.10213],
-        [17.23366, 46.10329],
-        [17.23885, 46.09946],
-        [17.23751, 46.09447],
-        [17.22813, 46.0904],
-        [17.22529, 46.08436],
-        [17.23785, 46.08181],
-        [17.24396, 46.07774],
-        [17.24429, 46.07071],
-        [17.24488, 46.06758],
-        [17.25526, 46.06764],
-        [17.25669, 46.06485],
-        [17.25434, 46.06183],
-        [17.26908, 46.06142],
-        [17.27561, 46.05758],
-        [17.27594, 46.05276],
-        [17.26255, 46.04282],
-        [17.26673, 46.03672],
-        [17.28817, 46.03556],
-        [17.29813, 46.03422],
-        [17.30173, 46.02643],
-        [17.29629, 46.02004],
-        [17.27795, 46.01771],
-        [17.2762, 46.01533],
-        [17.26272, 46.01265],
-        [17.27092, 46.01207],
-        [17.2767, 46.00759],
-        [17.28356, 46.00457],
-        [17.29612, 46.00643],
-        [17.30182, 46.00707],
-        [17.30902, 46.00335],
-        [17.31011, 45.99834],
-        [17.30843, 45.99154],
-        [17.3153, 45.99404],
-        [17.32267, 45.99439],
-        [17.32912, 45.99828],
-        [17.33816, 45.99951],
-        [17.34377, 45.99631],
-        [17.34829, 45.9863],
-        [17.35231, 45.97944],
-        [17.35532, 45.97792],
-        [17.35591, 45.98624],
-        [17.35825, 45.9927],
-        [17.36194, 45.99514],
-        [17.37366, 45.99398],
-        [17.37936, 45.99119],
-        [17.38053, 45.9838],
-        [17.37308, 45.97583],
-        [17.38162, 45.97146],
-        [17.38748, 45.96867],
-        [17.39694, 45.9643],
-        [17.39635, 45.96093],
-        [17.39317, 45.95522],
-        [17.39049, 45.9501],
-        [17.39351, 45.94428],
-        [17.39024, 45.93723],
-        [17.39426, 45.93514],
-        [17.40657, 45.94236],
-        [17.41117, 45.94306],
-        [17.41511, 45.9409],
-        [17.41704, 45.93403],
-        [17.42566, 45.93158],
-        [17.43219, 45.9324],
-        [17.42474, 45.93729],
-        [17.42156, 45.94498],
-        [17.42507, 45.95051],
-        [17.43638, 45.95377],
-        [17.44835, 45.95377],
-        [17.4594, 45.94905],
-        [17.46778, 45.94725],
-        [17.49198, 45.94556],
-        [17.51517, 45.94276],
-        [17.53301, 45.93793],
-        [17.55947, 45.9423],
-        [17.57404, 45.93991],
-        [17.59313, 45.92582],
-        [17.61306, 45.91586],
-        [17.62863, 45.90607],
-        [17.6401, 45.88701],
-        [17.65249, 45.86655],
-        [17.65316, 45.85507],
-        [17.66053, 45.84521],
-        [17.67025, 45.83833],
-        [17.68565, 45.84148],
-        [17.70081, 45.84072],
-        [17.7106, 45.83547],
-        [17.72744, 45.83477],
-        [17.74937, 45.83074],
-        [17.75473, 45.82438],
-        [17.76394, 45.81849],
-        [17.77374, 45.82],
-        [17.78756, 45.81971],
-        [17.79585, 45.81283],
-        [17.8043, 45.80833],
-        [17.81075, 45.80734],
-        [17.8146, 45.81172],
-        [17.82339, 45.81359],
-        [17.83202, 45.81131],
-        [17.83629, 45.80483],
-        [17.83713, 45.79339],
-        [17.84341, 45.78866],
-        [17.85262, 45.78702],
-        [17.85655, 45.78381],
-        [17.85831, 45.77762],
-        [17.85957, 45.77324],
-        [17.86526, 45.77067],
-        [17.86811, 45.77862],
-        [17.88276, 45.78755],
-        [17.89457, 45.79321],
-        [17.90763, 45.79537],
-        [17.9196, 45.7914],
-        [17.92873, 45.78948],
-        [17.93518, 45.79181],
-        [17.94556, 45.79485],
-        [17.95352, 45.7959],
-        [17.9598, 45.79461],
-        [17.96901, 45.79251],
-        [17.97369, 45.79269],
-        [17.98282, 45.79707],
-        [18.00359, 45.7973],
-        [18.00719, 45.79485],
-        [18.01983, 45.78422],
-        [18.03465, 45.77908],
-        [18.04763, 45.77762],
-        [18.06028, 45.77447],
-        [18.08054, 45.76834],
-        [18.09335, 45.76904],
-        [18.10507, 45.77435],
-        [18.10951, 45.78241],
-        [18.1168, 45.79],
-        [18.12374, 45.79257],
-        [18.13538, 45.79123],
-        [18.14501, 45.79175],
-        [18.15757, 45.78837],
-        [18.1631, 45.78183],
-        [18.17055, 45.77914],
-        [18.17826, 45.78767],
-        [18.18763, 45.79041],
-        [18.19576, 45.78977],
-        [18.2048, 45.78551],
-        [18.21652, 45.7837],
-        [18.22933, 45.78305],
-        [18.2362, 45.7792],
-        [18.24633, 45.76507],
-        [18.24993, 45.76547],
-        [18.25906, 45.76425],
-        [18.27706, 45.75852],
-        [18.29054, 45.76325],
-        [18.29531, 45.76372],
-        [18.3, 45.76296],
-        [18.30871, 45.75998],
-        [18.31491, 45.75952],
-        [18.33249, 45.75771],
-        [18.34028, 45.75291],
-        [18.35033, 45.76682],
-        [18.35987, 45.77511],
-        [18.36506, 45.77628],
-        [18.3803, 45.76781],
-        [18.38533, 45.76764],
-        [18.39521, 45.76466],
-        [18.39864, 45.75887],
-        [18.40057, 45.75952],
-        [18.40475, 45.75595],
-        [18.403, 45.74766],
-        [18.41036, 45.74222],
-        [18.41849, 45.74392],
-        [18.42728, 45.74479],
-        [18.43599, 45.7417],
-        [18.44336, 45.74187],
-        [18.44344, 45.75677],
-        [18.44051, 45.76033],
-        [18.44922, 45.77132],
-        [18.45742, 45.77248],
-        [18.46504, 45.76915],
-        [18.47743, 45.77003],
-        [18.48028, 45.78638],
-        [18.48413, 45.79491],
-        [18.49401, 45.79858],
-        [18.50314, 45.79736],
-        [18.50858, 45.7931],
-        [18.5095, 45.78854],
-        [18.51612, 45.78784],
-        [18.52893, 45.79561],
-        [18.53278, 45.79619],
-        [18.53756, 45.79567],
-        [18.54308, 45.79806],
-        [18.54861, 45.79683],
-        [18.55212, 45.79695],
-        [18.55539, 45.80442],
-        [18.55757, 45.80646],
-        [18.57021, 45.80425],
-        [18.56829, 45.8151],
-        [18.58704, 45.82129],
-        [18.59885, 45.82852],
-        [18.59617, 45.83576],
-        [18.61719, 45.84118],
-        [18.61392, 45.84696],
-        [18.60906, 45.85372],
-        [18.62229, 45.85938],
-        [18.62334, 45.87402],
-        [18.62736, 45.8792],
-        [18.6333, 45.87929],
-        [18.63904, 45.87186],
-        [18.64775, 45.87539],
-        [18.63829, 45.88288],
-        [18.6372, 45.88652],
-        [18.63628, 45.88972],
-        [18.64402, 45.89465],
-        [18.6521, 45.89812],
-        [18.65708, 45.89829],
-        [18.65801, 45.89963],
-        [18.65587, 45.90351],
-        [18.6552, 45.91536],
-        [18.65566, 45.91755],
-        [18.65729, 45.91935],
-        [18.66462, 45.91938],
-        [18.67027, 45.9149],
-        [18.67299, 45.91696],
-        [18.68869, 45.91895],
-        [18.69954, 45.92049],
-        [18.70502, 45.92093],
-        [18.70703, 45.92066],
-        [18.70883, 45.9183],
-        [18.71365, 45.91391],
-        [18.72265, 45.90788],
-        [18.73852, 45.90371],
-        [18.74852, 45.90272],
-        [18.75137, 45.90292],
-        [18.75422, 45.90211],
-        [18.75438, 45.89972],
-        [18.75765, 45.89951],
-        [18.75962, 45.89855],
-        [18.76439, 45.89447],
-        [18.76393, 45.89197],
-        [18.77427, 45.89136],
-        [18.78034, 45.88905],
-        [18.78557, 45.88378],
-        [18.79064, 45.88142],
-        [18.79801, 45.88151],
-        [18.80609, 45.88171],
-        [18.80831, 45.89101],
-        [18.80814, 45.89579],
-        [18.80374, 45.90144],
-        [18.80274, 45.90365],
-        [18.81521, 45.91536],
-        [18.82036, 45.91772],
-        [18.82623, 45.91743],
-        [18.83033, 45.90791],
-        [18.86248, 45.91303],
-        [18.85984, 45.91793],
-        [18.86001, 45.92116],
-        [18.86257, 45.92299],
-        [18.86617, 45.92296],
-        [18.86918, 45.9216],
-        [18.87161, 45.92017],
-        [18.87237, 45.91897],
-        [18.87639, 45.85638],
-        [18.86651, 45.85714],
-        [18.86021, 45.85912],
-        [18.8592, 45.85713],
-        [18.86165, 45.84448],
-        [18.86005, 45.83211],
-        [18.85784, 45.82581],
-        [18.85114, 45.81691],
-        [18.85289, 45.81577],
-        [18.85373, 45.81102],
-        [18.8565, 45.8114],
-        [18.86248, 45.80877],
-        [18.87307, 45.81026],
-        [18.87617, 45.8189],
-        [18.87925, 45.81794],
-        [18.8774, 45.78247],
-        [18.87328, 45.78159],
-        [18.866, 45.77791],
-        [18.85574, 45.7726],
-        [18.85943, 45.76673],
-        [18.86592, 45.76337],
-        [18.87687, 45.76008],
-        [18.87611, 45.74542],
-        [18.90636, 45.74482],
-        [18.92405, 45.74455],
-        [18.92186, 45.67243],
-        [18.92709, 45.66572],
-        [18.92899, 45.63999],
-        [18.92814, 45.59562],
-        [18.92507, 45.595],
-        [18.91427, 45.59755],
-        [18.90833, 45.59295],
-        [18.90117, 45.57833],
-        [18.90242, 45.57188],
-        [18.90808, 45.57012],
-        [18.91084, 45.56998],
-        [18.91282, 45.57206],
-        [18.9171, 45.57046],
-        [18.92994, 45.5682],
-        [18.92709, 45.55168],
-        [18.9269, 45.5301],
-        [19.00355, 45.53163],
-        [19.00764, 45.49465],
-        [19.00317, 45.49238],
-        [19.00073, 45.48768],
-        [18.99591, 45.48099],
-        [18.99537, 45.47391],
-        [18.99524, 45.47183],
-        [18.99585, 45.46597],
-        [18.99509, 45.46117],
-        [18.99385, 45.45303],
-        [18.98625, 45.4531],
-        [18.98482, 45.41993],
-        [18.9852, 45.4196],
-        [18.9852, 45.41719],
-        [18.98758, 45.41312],
-        [18.98678, 45.39609],
-        [18.97879, 45.39221],
-        [18.97435, 45.38718],
-        [18.9741, 45.38142],
-        [18.97736, 45.37577],
-        [18.9832, 45.37145],
-        [18.98063, 45.36516],
-        [18.97769, 45.36062],
-        [18.97816, 45.35728],
-        [18.98187, 45.3534],
-        [18.97987, 45.34745],
-        [19.05577, 45.34766],
-        [19.05662, 45.34565],
-        [19.06927, 45.34532],
-        [19.06823, 45.33161],
-        [19.1036, 45.33061],
-        [19.10227, 45.31021],
-        [19.1079, 45.30137],
-        [19.11661, 45.29513],
-        [19.11739, 45.28847],
-        [19.13147, 45.28914],
-        [19.15525, 45.27971],
-        [19.1543, 45.27328],
-        [19.15905, 45.22822],
-        [19.15886, 45.19398],
-        [19.16038, 45.18822],
-        [19.15972, 45.1844],
-        [19.16324, 45.18111],
-        [19.16362, 45.16268],
-        [19.11207, 45.16375],
-        [19.11205, 45.14601],
-        [19.09091, 45.14651],
-        [19.07065, 45.14698],
-        [19.07503, 45.14063],
-        [19.09072, 45.14058],
-        [19.09117, 45.1372],
-        [19.0848, 45.13299],
-        [19.08456, 45.13096],
-        [19.08109, 45.12669],
-        [19.08045, 45.11535],
-        [19.08608, 45.1136],
-        [19.08767, 45.11224],
-        [19.0881, 45.11083],
-        [19.0876, 45.11014],
-        [19.08715, 45.10956],
-        [19.08898, 45.10956],
-        [19.09046, 45.10885],
-        [19.09671, 45.10227],
-        [19.09659, 45.10033],
-        [19.09766, 45.09888],
-        [19.09785, 45.09754],
-        [19.09699, 45.09516],
-        [19.09533, 45.09269],
-        [19.09797, 45.09007],
-        [19.10142, 45.08705],
-        [19.10287, 45.08504],
-        [19.10727, 45.08324],
-        [19.10838, 45.08193],
-        [19.10857, 45.08104],
-        [19.10967, 45.07943],
-        [19.10929, 45.07809],
-        [19.10631, 45.07087],
-        [19.09961, 45.06035],
-        [19.10408, 45.05765],
-        [19.10513, 45.05629],
-        [19.1076, 45.05431],
-        [19.10929, 45.05206],
-        [19.10952, 45.05083],
-        [19.10869, 45.04876],
-        [19.10612, 45.04467],
-        [19.10256, 45.04021],
-        [19.0979, 45.03685],
-        [19.09856, 45.03544],
-        [19.10073, 45.0349],
-        [19.1017, 45.03432],
-        [19.10237, 45.03334],
-        [19.10237, 45.03242],
-        [19.10158, 45.0303],
-        [19.10275, 45.0283],
-        [19.10275, 45.02754],
-        [19.10194, 45.02595],
-        [19.1008, 45.02523],
-        [19.10075, 45.02354],
-        [19.10173, 45.0218],
-        [19.10303, 45.01546],
-        [19.1042, 45.01444],
-        [19.10496, 45.01316],
-        [19.10532, 45.01217],
-        [19.10586, 45.01163],
-        [19.10612, 45.01045],
-        [19.10555, 45.00926],
-        [19.09928, 45.00411],
-        [19.09583, 44.99369],
-        [19.09483, 44.99266],
-        [19.09407, 44.99246],
-        [19.08882, 44.99147],
-        [19.08822, 44.99038],
-        [19.08202, 44.98463],
-        [19.07413, 44.9833],
-        [19.06536, 44.98083],
-        [19.06192, 44.98015],
-        [19.05936, 44.97872],
-        [19.05765, 44.97822],
-        [19.05879, 44.97795],
-        [19.06143, 44.97743],
-        [19.06582, 44.97561],
-        [19.07001, 44.9756],
-        [19.07517, 44.9743],
-        [19.08218, 44.97666],
-        [19.08708, 44.97669],
-        [19.09003, 44.97608],
-        [19.0944, 44.97351],
-        [19.09925, 44.974],
-        [19.10253, 44.9737],
-        [19.10708, 44.97282],
-        [19.11347, 44.97662],
-        [19.11768, 44.97884],
-        [19.12353, 44.97955],
-        [19.13071, 44.98231],
-        [19.13375, 44.98345],
-        [19.14008, 44.98338],
-        [19.14369, 44.98234],
-        [19.14854, 44.97985],
-        [19.15235, 44.97706],
-        [19.15149, 44.96067],
-        [19.15491, 44.96078],
-        [19.15682, 44.96014],
-        [19.15858, 44.9566],
-        [19.16024, 44.95324],
-        [19.15929, 44.95108],
-        [19.15605, 44.94954],
-        [19.15092, 44.94745],
-        [19.14778, 44.94361],
-        [19.14726, 44.94015],
-        [19.14459, 44.93755],
-        [19.13789, 44.93624],
-        [19.12648, 44.93587],
-        [19.11749, 44.93099],
-        [19.10831, 44.9287],
-        [19.10089, 44.9256],
-        [19.09172, 44.92308],
-        [19.08877, 44.92119],
-        [19.09129, 44.91981],
-        [19.09204, 44.9164],
-        [19.09072, 44.91415],
-        [19.08767, 44.91358],
-        [19.0901, 44.9122],
-        [19.0911, 44.91042],
-        [19.08649, 44.90499],
-        [19.08368, 44.90361],
-        [19.07698, 44.90281],
-        [19.07384, 44.90065],
-        [19.07103, 44.89893],
-        [19.06566, 44.89843],
-        [19.05781, 44.90176],
-        [19.04935, 44.90678],
-        [19.04193, 44.91021],
-        [19.03711, 44.9148],
-        [19.03284, 44.91841],
-        [19.02513, 44.91871],
-        [19.00562, 44.91331],
-        [18.99675, 44.90679],
-        [18.99708, 44.89801],
-        [19.01031, 44.88508],
-        [19.02756, 44.85927],
-        [19.02647, 44.85137],
-        [18.996, 44.84823],
-        [18.96225, 44.84597],
-        [18.92499, 44.8468],
-        [18.87835, 44.84817],
-        [18.85055, 44.849],
-        [18.83925, 44.8547],
-        [18.81915, 44.87339],
-        [18.78942, 44.88449],
-        [18.7633, 44.8992],
-        [18.75635, 44.90792],
-        [18.76338, 44.91978],
-        [18.74655, 44.9263],
-        [18.74471, 44.93786],
-        [18.74764, 44.9455],
-        [18.76271, 44.94894],
-        [18.78398, 44.93857],
-        [18.79579, 44.93987],
-        [18.79813, 44.94485],
-        [18.78214, 44.95469],
-        [18.7782, 44.97596],
-        [18.78901, 44.99224],
-        [18.78214, 44.99165],
-        [18.77251, 44.99485],
-        [18.76163, 44.99591],
-        [18.74613, 44.98987],
-        [18.73659, 44.98934],
-        [18.72679, 44.99017],
-        [18.72026, 44.99728],
-        [18.72621, 45.00622],
-        [18.73282, 45.01545],
-        [18.71892, 45.02054],
-        [18.71155, 45.03475],
-        [18.70109, 45.03439],
-        [18.68861, 45.03764],
-        [18.66466, 45.05817],
-        [18.6588, 45.05326],
-        [18.64725, 45.05421],
-        [18.64063, 45.05776],
-        [18.60864, 45.05805],
-        [18.59935, 45.06409],
-        [18.59843, 45.06971],
-        [18.60856, 45.07627],
-        [18.60211, 45.07645],
-        [18.58771, 45.08384],
-        [18.58704, 45.06846],
-        [18.57691, 45.06154],
-        [18.56703, 45.06551],
-        [18.56401, 45.07432],
-        [18.55598, 45.07065],
-        [18.54434, 45.06137],
-        [18.54467, 45.05539],
-        [18.54057, 45.0409],
-        [18.53161, 45.03995],
-        [18.52474, 45.04303],
-        [18.526, 45.05155],
-        [18.52299, 45.05634],
-        [18.51419, 45.05344],
-        [18.48983, 45.05516],
-        [18.46814, 45.05995],
-        [18.44804, 45.07639],
-        [18.43749, 45.08265],
-        [18.43088, 45.0985],
-        [18.41924, 45.10518],
-        [18.40015, 45.10547],
-        [18.36875, 45.10269],
-        [18.33676, 45.09808],
-        [18.32169, 45.09696],
-        [18.3098, 45.10376],
-        [18.3021, 45.11191],
-        [18.28929, 45.10996],
-        [18.27631, 45.11174],
-        [18.2722, 45.12781],
-        [18.26718, 45.13318],
-        [18.25755, 45.13614],
-        [18.23561, 45.13194],
-        [18.21493, 45.12202],
-        [18.21309, 45.11705],
-        [18.2161, 45.10919],
-        [18.22473, 45.10287],
-        [18.22699, 45.09856],
-        [18.22046, 45.08827],
-        [18.21192, 45.08177],
-        [18.19994, 45.07562],
-        [18.18286, 45.07343],
-        [18.16695, 45.07396],
-        [18.15062, 45.08153],
-        [18.1394, 45.08183],
-        [18.12115, 45.07621],
-        [18.1106, 45.07863],
-        [18.10139, 45.08484],
-        [18.08967, 45.09714],
-        [18.07652, 45.10057],
-        [18.06856, 45.10352],
-        [18.06664, 45.10772],
-        [18.06856, 45.1115],
-        [18.08054, 45.119],
-        [18.07242, 45.13182],
-        [18.06597, 45.13909],
-        [18.05709, 45.13962],
-        [18.04822, 45.13631],
-        [18.04462, 45.12385],
-        [18.03733, 45.12196],
-        [18.02862, 45.12432],
-        [18.02126, 45.13868],
-        [18.01732, 45.14618],
-        [18.0097, 45.14872],
-        [17.9948, 45.14488],
-        [17.9824, 45.13543],
-        [17.98106, 45.12414],
-        [17.97202, 45.11292],
-        [17.96105, 45.10843],
-        [17.94146, 45.10813],
-        [17.93576, 45.1037],
-        [17.9366, 45.09483],
-        [17.94221, 45.08626],
-        [17.94171, 45.08141],
-        [17.93024, 45.07438],
-        [17.90654, 45.05882],
-        [17.88418, 45.04794],
-        [17.86593, 45.04114],
-        [17.85061, 45.04019],
-        [17.83545, 45.04327],
-        [17.80824, 45.05663],
-        [17.78848, 45.07308],
-        [17.78504, 45.0768],
-        [17.77709, 45.08124],
-        [17.76905, 45.08112],
-        [17.76528, 45.0807],
-        [17.75616, 45.08254],
-        [17.73238, 45.09584],
-        [17.71747, 45.10394],
-        [17.7091, 45.11032],
-        [17.70047, 45.11138],
-        [17.68808, 45.11357],
-        [17.6777, 45.12426],
-        [17.67225, 45.12934],
-        [17.66363, 45.13094],
-        [17.65341, 45.1281],
-        [17.63483, 45.11971],
-        [17.62989, 45.1151],
-        [17.62629, 45.1102],
-        [17.61599, 45.10967],
-        [17.61063, 45.106],
-        [17.6005, 45.10181],
-        [17.59045, 45.10281],
-        [17.58358, 45.10843],
-        [17.57839, 45.11256],
-        [17.57445, 45.11286],
-        [17.5696, 45.10654],
-        [17.55729, 45.10417],
-        [17.54992, 45.10701],
-        [17.55059, 45.11321],
-        [17.55277, 45.12184],
-        [17.5495, 45.12663],
-        [17.54414, 45.12544],
-        [17.54582, 45.11835],
-        [17.54372, 45.11292],
-        [17.53594, 45.10665],
-        [17.52187, 45.10488],
-        [17.51283, 45.10494],
-        [17.50362, 45.11109],
-        [17.49801, 45.10837],
-        [17.48821, 45.10589],
-        [17.47757, 45.10795],
-        [17.47347, 45.11239],
-        [17.47699, 45.11894],
-        [17.48746, 45.12515],
-        [17.48821, 45.13283],
-        [17.47456, 45.12267],
-        [17.4589, 45.12249],
-        [17.44768, 45.12456],
-        [17.44408, 45.1281],
-        [17.44425, 45.13265],
-        [17.45086, 45.14399],
-        [17.44827, 45.15627],
-        [17.44509, 45.15769],
-        [17.44098, 45.15639],
-        [17.43814, 45.14582],
-        [17.4275, 45.13655],
-        [17.41754, 45.13253],
-        [17.40607, 45.13141],
-        [17.38312, 45.13407],
-        [17.35968, 45.13608],
-        [17.3426, 45.13809],
-        [17.32644, 45.14895],
-        [17.32225, 45.15604],
-        [17.32752, 45.16295],
-        [17.30927, 45.16159],
-        [17.30525, 45.16619],
-        [17.30659, 45.17375],
-        [17.29554, 45.17233],
-        [17.28264, 45.17186],
-        [17.27318, 45.18585],
-        [17.26824, 45.17404],
-        [17.26422, 45.17257],
-        [17.26389, 45.16619],
-        [17.25903, 45.15332],
-        [17.25141, 45.1444],
-        [17.2463, 45.14263],
-        [17.23492, 45.14376],
-        [17.22244, 45.14257],
-        [17.2144, 45.14381],
-        [17.2031, 45.14659],
-        [17.19096, 45.14328],
-        [17.17932, 45.14352],
-        [17.16542, 45.14694],
-        [17.14055, 45.16047],
-        [17.13125, 45.16295],
-        [17.10957, 45.17334],
-        [17.10262, 45.17475],
-        [17.06619, 45.18904],
-        [17.0605, 45.196],
-        [17.0507, 45.19736],
-        [17.04065, 45.20414],
-        [17.03437, 45.21983],
-        [17.02382, 45.21087],
-        [17.01771, 45.20951],
-        [17.00992, 45.21081],
-        [17.00415, 45.21399],
-        [17.00314, 45.21889],
-        [17.00004, 45.21783],
-        [16.99201, 45.21889],
-        [16.9864, 45.22066],
-        [16.97911, 45.22573],
-        [16.97559, 45.22443],
-        [16.96923, 45.22384],
-        [16.96362, 45.22644],
-        [16.95943, 45.22844],
-        [16.95583, 45.22886],
-        [16.95031, 45.22514],
-        [16.94361, 45.22431],
-        [16.93875, 45.22426],
-        [16.93264, 45.22703],
-        [16.93088, 45.23682],
-        [16.93054, 45.24206],
-        [16.9344, 45.24878],
-        [16.94637, 45.25321],
-        [16.94897, 45.25468],
-        [16.94913, 45.25668],
-        [16.93699, 45.26158],
-        [16.93465, 45.26965],
-        [16.93331, 45.27307],
-        [16.9282, 45.27307],
-        [16.92351, 45.27142],
-        [16.92259, 45.26723],
-        [16.91782, 45.26275],
-        [16.91874, 45.25975],
-        [16.91681, 45.25509],
-        [16.91237, 45.25061],
-        [16.90442, 45.24749],
-        [16.89814, 45.24713],
-        [16.89429, 45.24401],
-        [16.88658, 45.24295],
-        [16.88809, 45.24136],
-        [16.88525, 45.23428],
-        [16.88742, 45.23062],
-        [16.88684, 45.22644],
-        [16.88432, 45.22296],
-        [16.88508, 45.22137],
-        [16.88181, 45.21647],
-        [16.87737, 45.216],
-        [16.8721, 45.21718],
-        [16.86833, 45.21635],
-        [16.86724, 45.21193],
-        [16.86322, 45.20821],
-        [16.85778, 45.20225],
-        [16.85292, 45.20115],
-        [16.84775, 45.20171],
-        [16.84623, 45.1975],
-        [16.84723, 45.19526],
-        [16.84706, 45.19367],
-        [16.84438, 45.19148],
-        [16.84116, 45.18842],
-        [16.83484, 45.18547],
-        [16.8286, 45.18402],
-        [16.82178, 45.1824],
-        [16.81516, 45.18187],
-        [16.80691, 45.18254],
-        [16.80273, 45.18299],
-        [16.79109, 45.18603],
-        [16.77706, 45.18948],
-        [16.77124, 45.19119],
-        [16.76329, 45.1957],
-        [16.75965, 45.19703],
-        [16.75328, 45.19665],
-        [16.74889, 45.1975],
-        [16.73972, 45.20143],
-        [16.7326, 45.20461],
-        [16.73051, 45.20467],
-        [16.72611, 45.20258],
-        [16.72063, 45.20205],
-        [16.71615, 45.20184],
-        [16.71121, 45.19951],
-        [16.70409, 45.1947],
-        [16.69911, 45.1934],
-        [16.69429, 45.1934],
-        [16.68939, 45.19491],
-        [16.68349, 45.19727],
-        [16.67809, 45.19871],
-        [16.67051, 45.19857],
-        [16.66649, 45.19945],
-        [16.66168, 45.20208],
-        [16.65628, 45.20452],
-        [16.65125, 45.20441],
-        [16.64543, 45.20517],
-        [16.6343, 45.21163],
-        [16.63015, 45.21113],
-        [16.62802, 45.21116],
-        [16.62509, 45.2124],
-        [16.62278, 45.21467],
-        [16.62107, 45.21718],
-        [16.61941, 45.21939],
-        [16.61709, 45.22137],
-        [16.61451, 45.22243],
-        [16.60744, 45.22516],
-        [16.60455, 45.22697],
-        [16.60028, 45.22828],
-        [16.59808, 45.22881],
-        [16.59699, 45.22877],
-        [16.59356, 45.22654],
-        [16.59218, 45.22426],
-        [16.58755, 45.22213],
-        [16.58255, 45.22004],
-        [16.5792, 45.21948],
-        [16.57514, 45.21974],
-        [16.57133, 45.2196],
-        [16.56785, 45.21976],
-        [16.56528, 45.21976],
-        [16.56237, 45.21855],
-        [16.55883, 45.21705],
-        [16.55559, 45.21654],
-        [16.55249, 45.21641],
-        [16.54954, 45.21688],
-        [16.54772, 45.21712],
-        [16.54445, 45.21777],
-        [16.54198, 45.21876],
-        [16.53884, 45.22048],
-        [16.53725, 45.22206],
-        [16.5366, 45.22433],
-        [16.53589, 45.22452],
-        [16.53308, 45.22445],
-        [16.53074, 45.22431],
-        [16.52186, 45.22151],
-        [16.51946, 45.21977],
-        [16.5151, 45.21845],
-        [16.51263, 45.21647],
-        [16.50999, 45.21581],
-        [16.50512, 45.21274],
-        [16.50382, 45.21198],
-        [16.50337, 45.2111],
-        [16.50043, 45.20883],
-        [16.49773, 45.2078],
-        [16.49602, 45.20668],
-        [16.49455, 45.20057],
-        [16.49331, 45.19698],
-        [16.49086, 45.19326],
-        [16.48932, 45.18999],
-        [16.48662, 45.1876],
-        [16.47885, 45.18086],
-        [16.48026, 45.17359],
-        [16.48235, 45.16972],
-        [16.48439, 45.16663],
-        [16.48354, 45.16026],
-        [16.48149, 45.15775],
-        [16.47655, 45.15548],
-        [16.47612, 45.15302],
-        [16.47225, 45.14839],
-        [16.46768, 45.13997],
-        [16.46448, 45.13997],
-        [16.46184, 45.13997],
-        [16.46178, 45.13692],
-        [16.45031, 45.13174],
-        [16.44718, 45.13001],
-        [16.44457, 45.12618],
-        [16.43825, 45.1231],
-        [16.43392, 45.12189],
-        [16.42988, 45.12175],
-        [16.42383, 45.1219],
-        [16.42379, 45.11924],
-        [16.41105, 45.11716],
-        [16.3992, 45.11095],
-        [16.39792, 45.10632],
-        [16.40686, 45.10061],
-        [16.40786, 45.09796],
-        [16.40233, 45.09449],
-        [16.40087, 45.09219],
-        [16.4002, 45.08792],
-        [16.39641, 45.08485],
-        [16.39117, 45.08037],
-        [16.3924, 45.07244],
-        [16.39179, 45.06563],
-        [16.38817, 45.06067],
-        [16.38757, 45.05236],
-        [16.38594, 45.04977],
-        [16.38165, 45.04794],
-        [16.37718, 45.04842],
-        [16.37419, 45.04278],
-        [16.3686, 45.03969],
-        [16.36511, 45.03522],
-        [16.36345, 45.03153],
-        [16.3613, 45.03023],
-        [16.36354, 45.02531],
-        [16.36122, 45.01706],
-        [16.36268, 45.01172],
-        [16.36268, 45.00928],
-        [16.35984, 45.00693],
-        [16.3583, 45.00232],
-        [16.35817, 45.00121],
-        [16.35504, 44.99959],
-        [16.34706, 44.99704],
-        [16.3304, 44.99691],
-        [16.32583, 44.99875],
-        [16.32279, 44.99882],
-        [16.31546, 44.99583],
-        [16.3062, 44.9957],
-        [16.30148, 44.99502],
-        [16.29511, 44.99478],
-        [16.29188, 44.99293],
-        [16.28569, 44.9923],
-        [16.28427, 44.99441],
-        [16.28042, 45.00406],
-        [16.27552, 45.00208],
-        [16.26948, 45.00393],
-        [16.26777, 45.01237],
-        [16.26682, 45.01324],
-        [16.26468, 45.01328],
-        [16.26292, 45.00958],
-        [16.25802, 45.00776],
-        [16.25426, 45.00796],
-        [16.25155, 45.01032],
-        [16.24628, 45.01139],
-        [16.24152, 45.01012],
-        [16.22578, 45.01489],
-        [16.22497, 45.02141],
-        [16.22131, 45.02161],
-        [16.20971, 45.02578],
-        [16.20619, 45.02924],
-        [16.19625, 45.02733],
-        [16.19069, 45.02823],
-        [16.18707, 45.03149],
-        [16.18141, 45.04477],
-        [16.174, 45.04836],
-        [16.17124, 45.05115],
-        [16.17176, 45.05656],
-        [16.16962, 45.06136],
-        [16.16515, 45.06626],
-        [16.16715, 45.07026],
-        [16.16192, 45.07231],
-        [16.15322, 45.07946],
-        [16.14489, 45.08081],
-        [16.13857, 45.0851],
-        [16.13643, 45.08524],
-        [16.13472, 45.08359],
-        [16.13025, 45.08332],
-        [16.12573, 45.08527],
-        [16.12159, 45.0893],
-        [16.10628, 45.08964],
-        [16.09853, 45.09705],
-        [16.09282, 45.10024],
-        [16.08617, 45.10185],
-        [16.08065, 45.10994],
-        [16.08021, 45.12308],
-        [16.07989, 45.13195],
-        [16.07442, 45.1393],
-        [16.06672, 45.14359],
-        [16.05821, 45.15315],
-        [16.05136, 45.15731],
-        [16.0467, 45.16804],
-        [16.04199, 45.17042],
-        [16.04152, 45.17619],
-        [16.02321, 45.17733],
-        [16.01612, 45.17582],
-        [16.01137, 45.178],
-        [16.00914, 45.18458],
-        [16.02074, 45.19412],
-        [16.0224, 45.19757],
-        [16.01731, 45.20001],
-        [16.01122, 45.21415],
-        [16.00666, 45.21352],
-        [16.00209, 45.21414],
-        [15.99729, 45.21784],
-        [15.99299, 45.21741],
-        [15.98569, 45.22062],
-        [15.97876, 45.2257],
-        [15.97485, 45.22537],
-        [15.96924, 45.219],
-        [15.9602, 45.21757],
-        [15.9561, 45.21445],
-        [15.94777, 45.21067],
-        [15.91799, 45.21049],
-        [15.91602, 45.21084],
-        [15.91676, 45.21425],
-        [15.92107, 45.22075],
-        [15.92048, 45.22437],
-        [15.91837, 45.22313],
-        [15.91641, 45.22182],
-        [15.91103, 45.22092],
-        [15.90497, 45.22186],
-        [15.90076, 45.22427],
-        [15.89795, 45.22354],
-        [15.89976, 45.21924],
-        [15.89843, 45.21553],
-        [15.89596, 45.21355],
-        [15.88727, 45.21269],
-        [15.88478, 45.21492],
-        [15.87527, 45.21472],
-        [15.87009, 45.21666],
-        [15.8601, 45.21395],
-        [15.85538, 45.21374],
-        [15.84351, 45.22157],
-        [15.83464, 45.21608],
-        [15.83649, 45.21177],
-        [15.82967, 45.20474],
-        [15.82342, 45.20258],
-        [15.81405, 45.20607],
-        [15.81303, 45.20303],
-        [15.80651, 45.20025],
-        [15.80658, 45.1968],
-        [15.8047, 45.19499],
-        [15.79767, 45.19164],
-        [15.79069, 45.19066],
-        [15.78682, 45.18517],
-        [15.78216, 45.18249],
-        [15.78188, 45.17495],
-        [15.78039, 45.17366],
-        [15.77476, 45.17354],
-        [15.77487, 45.16994],
-        [15.77289, 45.16881],
-        [15.77021, 45.16383],
-        [15.77392, 45.15274],
-        [15.78071, 45.14703],
-        [15.78012, 45.14014],
-        [15.78483, 45.1394],
-        [15.7871, 45.13525],
-        [15.78302, 45.1302],
-        [15.78911, 45.12464],
-        [15.79444, 45.12179],
-        [15.79588, 45.11433],
-        [15.78558, 45.10442],
-        [15.78341, 45.09297],
-        [15.77534, 45.09164],
-        [15.77927, 45.08366],
-        [15.77597, 45.08369],
-        [15.776, 45.08188],
-        [15.77587, 45.07994],
-        [15.77589, 45.07704],
-        [15.77534, 45.07382],
-        [15.7611, 45.06754],
-        [15.75772, 45.06344],
-        [15.75122, 45.06121],
-        [15.75929, 45.05309],
-        [15.76032, 45.04691],
-        [15.77165, 45.02161],
-        [15.77654, 45.01075],
-        [15.78186, 45.0096],
-        [15.78701, 45.00456],
-        [15.79001, 44.99352],
-        [15.78572, 44.98271],
-        [15.78847, 44.97482],
-        [15.7871, 44.96984],
-        [15.781, 44.96504],
-        [15.77371, 44.96583],
-        [15.77182, 44.96765],
-        [15.75336, 44.96619],
-        [15.75113, 44.95836],
-        [15.75371, 44.95083],
-        [15.75113, 44.94488],
-        [15.74281, 44.93655],
-        [15.76487, 44.88762],
-        [15.76401, 44.87071],
-        [15.79834, 44.84699],
-        [15.79628, 44.84419],
-        [15.76143, 44.82617],
-        [15.73551, 44.82288],
-        [15.7477, 44.80863],
-        [15.74547, 44.80121],
-        [15.75972, 44.78829],
-        [15.76744, 44.77794],
-        [15.77465, 44.77196],
-        [15.77568, 44.76758],
-        [15.78289, 44.75844],
-        [15.7877, 44.75051],
-        [15.81242, 44.74332],
-        [15.81911, 44.73686],
-        [15.82615, 44.72649],
-        [15.8325, 44.72393],
-        [15.84726, 44.7393],
-        [15.85894, 44.74003],
-        [15.87147, 44.73613],
-        [15.87696, 44.73564],
-        [15.88005, 44.74698],
-        [15.89481, 44.75271],
-        [15.90631, 44.74978],
-        [15.90685, 44.74324],
-        [15.9156, 44.73624],
-        [15.92568, 44.72287],
-        [15.93043, 44.71939],
-        [15.93329, 44.71273],
-        [15.93666, 44.71455],
-        [15.95526, 44.71499],
-        [15.95896, 44.71307],
-        [15.96058, 44.70783],
-        [15.96139, 44.70394],
-        [15.95825, 44.70009],
-        [15.9622, 44.69583],
-        [15.96662, 44.69482],
-        [15.96914, 44.69282],
-        [15.97323, 44.68336],
-        [15.97256, 44.67954],
-        [15.97946, 44.67328],
-        [15.98431, 44.67325],
-        [15.9894, 44.67156],
-        [15.9932, 44.66878],
-        [15.9971, 44.66608],
-        [15.99957, 44.66286],
-        [16.01389, 44.6586],
-        [16.02287, 44.66019],
-        [16.03025, 44.65833],
-        [16.03586, 44.65529],
-        [16.03705, 44.64872],
-        [16.04423, 44.64061],
-        [16.04603, 44.63739],
-        [16.0476, 44.63045],
-        [16.04912, 44.6293],
-        [16.05274, 44.62978],
-        [16.05823, 44.62811],
-        [16.0592, 44.627],
-        [16.05963, 44.61248],
-        [16.06263, 44.60805],
-        [16.05868, 44.60361],
-        [16.05298, 44.60341],
-        [16.05084, 44.60046],
-        [16.05531, 44.59799],
-        [16.05564, 44.59508],
-        [16.04751, 44.58986],
-        [16.04499, 44.58634],
-        [16.03595, 44.58438],
-        [16.02497, 44.58563],
-        [16.02135, 44.58329],
-        [16.02316, 44.5732],
-        [16.02416, 44.56754],
-        [16.02335, 44.56378],
-        [16.04917, 44.54877],
-        [16.05778, 44.54162],
-        [16.08056, 44.53881],
-        [16.09458, 44.53528],
-        [16.11056, 44.52942],
-        [16.12673, 44.51464],
-        [16.12792, 44.50341],
-        [16.13543, 44.49378],
-        [16.13662, 44.48788],
-        [16.141, 44.48581],
-        [16.1458, 44.48018],
-        [16.14413, 44.47424],
-        [16.14033, 44.47047],
-        [16.14223, 44.46243],
-        [16.13748, 44.45873],
-        [16.13767, 44.45734],
-        [16.141, 44.45727],
-        [16.14423, 44.45544],
-        [16.14818, 44.44916],
-        [16.14713, 44.4423],
-        [16.14375, 44.43918],
-        [16.14594, 44.42719],
-        [16.14879, 44.42542],
-        [16.15559, 44.42542],
-        [16.16491, 44.41802],
-        [16.16858, 44.41462],
-        [16.17072, 44.4098],
-        [16.17599, 44.4063],
-        [16.17742, 44.40236],
-        [16.17571, 44.39968],
-        [16.16991, 44.39747],
-        [16.16092, 44.39176],
-        [16.15412, 44.39111],
-        [16.15108, 44.39173],
-        [16.14019, 44.3886],
-        [16.13367, 44.39142],
-        [16.134, 44.3868],
-        [16.13524, 44.38112],
-        [16.14608, 44.3799],
-        [16.14993, 44.38085],
-        [16.1536, 44.3834],
-        [16.15797, 44.3834],
-        [16.17276, 44.37701],
-        [16.17856, 44.37018],
-        [16.19915, 44.3659],
-        [16.20998, 44.36191],
-        [16.22406, 44.3489],
-        [16.22307, 44.34118],
-        [16.20923, 44.33349],
-        [16.20405, 44.32822],
-        [16.19963, 44.31988],
-        [16.19953, 44.3143],
-        [16.19368, 44.30784],
-        [16.1923, 44.29936],
-        [16.1923, 44.29548],
-        [16.19511, 44.29218],
-        [16.1972, 44.28398],
-        [16.19606, 44.27162],
-        [16.20077, 44.26219],
-        [16.20538, 44.2582],
-        [16.20495, 44.25425],
-        [16.209, 44.25459],
-        [16.21427, 44.25177],
-        [16.22269, 44.24131],
-        [16.22559, 44.23409],
-        [16.22412, 44.22213],
-        [16.22179, 44.22032],
-        [16.21908, 44.21974],
-        [16.21765, 44.21695],
-        [16.22307, 44.21388],
-        [16.22973, 44.21207],
-        [16.23192, 44.20696],
-        [16.23429, 44.20488],
-        [16.23722, 44.20476],
-        [16.23721, 44.20365],
-        [16.24017, 44.20368],
-        [16.24314, 44.20014],
-        [16.24685, 44.19823],
-        [16.24761, 44.19602],
-        [16.25488, 44.19141],
-        [16.25992, 44.18586],
-        [16.26577, 44.18173],
-        [16.26744, 44.17852],
-        [16.27395, 44.17634],
-        [16.27638, 44.17307],
-        [16.2934, 44.16444],
-        [16.29892, 44.15594],
-        [16.30915, 44.14985],
-        [16.31098, 44.1463],
-        [16.31266, 44.14387],
-        [16.31276, 44.14256],
-        [16.31157, 44.12793],
-        [16.31525, 44.12639],
-        [16.31598, 44.125],
-        [16.3168, 44.12172],
-        [16.32072, 44.11655],
-        [16.33606, 44.11467],
-        [16.3383, 44.11357],
-        [16.35283, 44.10791],
-        [16.36216, 44.10334],
-        [16.36388, 44.10159],
-        [16.36616, 44.09926],
-        [16.36664, 44.09827],
-        [16.36668, 44.09748],
-        [16.36514, 44.09516],
-        [16.37192, 44.08445],
-        [16.37753, 44.08405],
-        [16.37814, 44.08379],
-        [16.38276, 44.08597],
-        [16.38391, 44.08599],
-        [16.38536, 44.08569],
-        [16.38659, 44.08507],
-        [16.38961, 44.08289],
-        [16.39672, 44.08247],
-        [16.39834, 44.08239],
-        [16.40072, 44.08215],
-        [16.40256, 44.08211],
-        [16.42785, 44.0856],
-        [16.42923, 44.08519],
-        [16.4303, 44.08448],
-        [16.44441, 44.0688],
-        [16.44508, 44.06805],
-        [16.44565, 44.06696],
-        [16.44472, 44.06462],
-        [16.44389, 44.06191],
-        [16.43893, 44.05434],
-        [16.4396, 44.049],
-        [16.44177, 44.04244],
-        [16.44204, 44.03718],
-        [16.44144, 44.03546],
-        [16.43997, 44.03188],
-        [16.44156, 44.03107],
-        [16.44345, 44.0311],
-        [16.44897, 44.03042],
-        [16.45525, 44.03049],
-        [16.45923, 44.03076],
-        [16.46266, 44.03126],
-        [16.46731, 44.03221],
-        [16.46936, 44.03212],
-        [16.48295, 44.0317],
-        [16.50428, 44.02631],
-        [16.50539, 44.02518],
-        [16.5187, 44.00519],
-        [16.53769, 43.98917],
-        [16.53995, 43.98722],
-        [16.54742, 43.97499],
-        [16.54784, 43.97359],
-        [16.55289, 43.9553],
-        [16.58975, 43.94507],
-        [16.59094, 43.94383],
-        [16.59163, 43.94198],
-        [16.59304, 43.93928],
-        [16.60141, 43.93673],
-        [16.60252, 43.93566],
-        [16.6029, 43.93479],
-        [16.60614, 43.9266],
-        [16.61033, 43.92476],
-        [16.61114, 43.92396],
-        [16.61148, 43.92265],
-        [16.61203, 43.92134],
-        [16.60461, 43.91569],
-        [16.60504, 43.91517],
-        [16.60009, 43.91158],
-        [16.6014, 43.91125],
-        [16.60432, 43.91125],
-        [16.60489, 43.91087],
-        [16.60658, 43.91063],
-        [16.60727, 43.91029],
-        [16.60958, 43.90902],
-        [16.61027, 43.90854],
-        [16.61198, 43.90866],
-        [16.61426, 43.90794],
-        [16.62066, 43.90334],
-        [16.6217, 43.90179],
-        [16.62437, 43.89994],
-        [16.62781, 43.89753],
-        [16.65, 43.88009],
-        [16.65, 43.87782],
-        [16.65228, 43.8744],
-        [16.65913, 43.86939],
-        [16.67073, 43.87631],
-        [16.6752, 43.87433],
-        [16.71695, 43.84072],
-        [16.72161, 43.84086],
-        [16.72136, 43.83616],
-        [16.7236, 43.83248],
-        [16.72362, 43.83172],
-        [16.72335, 43.83075],
-        [16.72144, 43.8294],
-        [16.72347, 43.82627],
-        [16.72351, 43.82517],
-        [16.72268, 43.82325],
-        [16.72213, 43.82148],
-        [16.72148, 43.81899],
-        [16.72136, 43.81635],
-        [16.72215, 43.80778],
-        [16.72601, 43.8053],
-        [16.72799, 43.80221],
-        [16.72956, 43.80045],
-        [16.72977, 43.7994],
-        [16.72915, 43.79709],
-        [16.72868, 43.79633],
-        [16.7304, 43.79518],
-        [16.73067, 43.79396],
-        [16.7331, 43.79121],
-        [16.73685, 43.78775],
-        [16.74221, 43.78312],
-        [16.74761, 43.77845],
-        [16.7541, 43.77221],
-        [16.75707, 43.77269],
-        [16.76105, 43.77219],
-        [16.76113, 43.77177],
-        [16.76613, 43.7717],
-        [16.77987, 43.77006],
-        [16.80222, 43.76488],
-        [16.80474, 43.7634],
-        [16.81478, 43.75664],
-        [16.81822, 43.75048],
-        [16.81828, 43.74988],
-        [16.82743, 43.73415],
-        [16.83352, 43.73241],
-        [16.83664, 43.7307],
-        [16.85083, 43.72098],
-        [16.86975, 43.71255],
-        [16.87562, 43.70733],
-        [16.87926, 43.70099],
-        [16.87915, 43.69905],
-        [16.88031, 43.69583],
-        [16.88522, 43.69357],
-        [16.88617, 43.6923],
-        [16.88811, 43.68718],
-        [16.9022, 43.68081],
-        [16.91083, 43.67631],
-        [16.91177, 43.67521],
-        [16.91319, 43.67263],
-        [16.9151, 43.67026],
-        [16.91964, 43.66446],
-        [16.91987, 43.66365],
-        [16.9224, 43.66007],
-        [16.93025, 43.65648],
-        [16.93092, 43.65531],
-        [16.93161, 43.65321],
-        [16.9349, 43.64722],
-        [16.93502, 43.6448],
-        [16.96136, 43.6273],
-        [16.96701, 43.62375],
-        [16.97371, 43.61948],
-        [16.97438, 43.61853],
-        [16.98089, 43.60728],
-        [16.98424, 43.6034],
-        [16.98573, 43.60235],
-        [16.98596, 43.6015],
-        [16.98907, 43.59903],
-        [16.99, 43.59768],
-        [16.99288, 43.59344],
-        [16.99533, 43.59303],
-        [16.99672, 43.59205],
-        [16.99824, 43.59048],
-        [16.99849, 43.58974],
-        [17.00863, 43.58314],
-        [17.00982, 43.58233],
-        [17.01034, 43.58107],
-        [17.0107, 43.58011],
-        [17.01059, 43.5779],
-        [17.0165, 43.5733],
-        [17.02349, 43.56986],
-        [17.02745, 43.56859],
-        [17.0318, 43.5659],
-        [17.03477, 43.56426],
-        [17.03862, 43.56096],
-        [17.04442, 43.55911],
-        [17.05219, 43.5578],
-        [17.05378, 43.55721],
-        [17.05702, 43.55681],
-        [17.05702, 43.55466],
-        [17.06636, 43.55462],
-        [17.06808, 43.55331],
-        [17.06879, 43.55202],
-        [17.06852, 43.55117],
-        [17.07149, 43.54991],
-        [17.07346, 43.54927],
-        [17.07452, 43.54838],
-        [17.08097, 43.54524],
-        [17.08189, 43.54413],
-        [17.08518, 43.54105],
-        [17.08683, 43.53952],
-        [17.08861, 43.53847],
-        [17.09226, 43.5361],
-        [17.09602, 43.53387],
-        [17.09682, 43.53308],
-        [17.10538, 43.53055],
-        [17.10685, 43.52958],
-        [17.10814, 43.52757],
-        [17.10963, 43.5258],
-        [17.1252, 43.52018],
-        [17.12726, 43.51848],
-        [17.13247, 43.5127],
-        [17.13458, 43.51098],
-        [17.13502, 43.51009],
-        [17.13737, 43.50974],
-        [17.13969, 43.50972],
-        [17.14176, 43.50901],
-        [17.14208, 43.5086],
-        [17.14415, 43.50792],
-        [17.14524, 43.50711],
-        [17.14576, 43.5059],
-        [17.14771, 43.50368],
-        [17.15204, 43.49746],
-        [17.15583, 43.49647],
-        [17.16031, 43.49604],
-        [17.17436, 43.49275],
-        [17.17884, 43.4963],
-        [17.18005, 43.49774],
-        [17.18154, 43.4982],
-        [17.18405, 43.49902],
-        [17.18771, 43.49984],
-        [17.19003, 43.49967],
-        [17.19537, 43.49993],
-        [17.20701, 43.49982],
-        [17.2122, 43.49881],
-        [17.21509, 43.49966],
-        [17.21637, 43.49946],
-        [17.22093, 43.49976],
-        [17.22801, 43.49976],
-        [17.23196, 43.49837],
-        [17.23435, 43.4967],
-        [17.23701, 43.49603],
-        [17.23822, 43.49496],
-        [17.2404, 43.49427],
-        [17.24187, 43.49351],
-        [17.24561, 43.49263],
-        [17.24785, 43.49156],
-        [17.25275, 43.48933],
-        [17.25855, 43.4861],
-        [17.26052, 43.48547],
-        [17.26225, 43.48455],
-        [17.26728, 43.48271],
-        [17.26958, 43.48124],
-        [17.27243, 43.47973],
-        [17.27276, 43.47849],
-        [17.27632, 43.47642],
-        [17.27731, 43.47519],
-        [17.28139, 43.47296],
-        [17.28264, 43.47171],
-        [17.28532, 43.46933],
-        [17.28624, 43.46797],
-        [17.2866, 43.46536],
-        [17.28913, 43.46188],
-        [17.28899, 43.45998],
-        [17.28991, 43.45711],
-        [17.28926, 43.4541],
-        [17.28804, 43.45238],
-        [17.28972, 43.44916],
-        [17.28959, 43.44726],
-        [17.28865, 43.4458],
-        [17.28878, 43.44351],
-        [17.28788, 43.44156],
-        [17.28842, 43.43857],
-        [17.28733, 43.43422],
-        [17.28549, 43.43054],
-        [17.28216, 43.42595],
-        [17.27814, 43.42043],
-        [17.2745, 43.41634],
-        [17.27216, 43.413],
-        [17.26918, 43.41219],
-        [17.26382, 43.40792],
-        [17.26217, 43.40486],
-        [17.26075, 43.40301],
-        [17.25664, 43.40208],
-        [17.26104, 43.3989],
-        [17.26414, 43.39479],
-        [17.26516, 43.39138],
-        [17.26632, 43.386],
-        [17.26791, 43.37838],
-        [17.26885, 43.3732],
-        [17.27251, 43.36888],
-        [17.27391, 43.36757],
-        [17.27446, 43.3659],
-        [17.27438, 43.36444],
-        [17.27699, 43.36022],
-        [17.27712, 43.35861],
-        [17.27762, 43.35677],
-        [17.27756, 43.35555],
-        [17.27873, 43.35526],
-        [17.28313, 43.34764],
-        [17.29342, 43.33131],
-        [17.30111, 43.31927],
-        [17.30266, 43.31749],
-        [17.30441, 43.31584],
-        [17.30598, 43.31389],
-        [17.3095, 43.30684],
-        [17.31084, 43.30487],
-        [17.31178, 43.30308],
-        [17.31337, 43.30084],
-        [17.31383, 43.29974],
-        [17.31784, 43.296],
-        [17.32055, 43.29333],
-        [17.32438, 43.28912],
-        [17.32627, 43.28879],
-        [17.32901, 43.28795],
-        [17.33012, 43.2867],
-        [17.33138, 43.28491],
-        [17.33266, 43.28267],
-        [17.33254, 43.28088],
-        [17.3335, 43.27866],
-        [17.33408, 43.27704],
-        [17.33412, 43.2747],
-        [17.33478, 43.27417],
-        [17.33552, 43.27283],
-        [17.33602, 43.2714],
-        [17.33582, 43.27005],
-        [17.33559, 43.26978],
-        [17.33641, 43.26898],
-        [17.33653, 43.26762],
-        [17.33611, 43.26646],
-        [17.33564, 43.26588],
-        [17.3389, 43.26232],
-        [17.3407, 43.25991],
-        [17.341, 43.25936],
-        [17.34344, 43.25777],
-        [17.34447, 43.25629],
-        [17.34462, 43.25537],
-        [17.34752, 43.25508],
-        [17.35451, 43.25395],
-        [17.36082, 43.25189],
-        [17.36824, 43.25169],
-        [17.37011, 43.25216],
-        [17.37294, 43.25218],
-        [17.37646, 43.252],
-        [17.379, 43.25122],
-        [17.3817, 43.25009],
-        [17.38471, 43.25012],
-        [17.39222, 43.24854],
-        [17.39827, 43.24763],
-        [17.40078, 43.24631],
-        [17.40786, 43.24182],
-        [17.41663, 43.23641],
-        [17.42366, 43.23203],
-        [17.4234, 43.22816],
-        [17.42638, 43.22814],
-        [17.43036, 43.22016],
-        [17.43233, 43.21821],
-        [17.4327, 43.21716],
-        [17.43304, 43.21537],
-        [17.43274, 43.21455],
-        [17.43303, 43.21187],
-        [17.43455, 43.21052],
-        [17.43485, 43.20942],
-        [17.43455, 43.20771],
-        [17.43571, 43.20556],
-        [17.43552, 43.20439],
-        [17.43515, 43.20269],
-        [17.4345, 43.19824],
-        [17.43352, 43.19711],
-        [17.43303, 43.19456],
-        [17.43217, 43.19342],
-        [17.43154, 43.19119],
-        [17.43043, 43.18933],
-        [17.43053, 43.18794],
-        [17.43172, 43.18519],
-        [17.43346, 43.18123],
-        [17.43591, 43.18263],
-        [17.438, 43.18288],
-        [17.44028, 43.18232],
-        [17.44367, 43.18111],
-        [17.44761, 43.18015],
-        [17.45085, 43.17971],
-        [17.45279, 43.17889],
-        [17.4534, 43.17815],
-        [17.45524, 43.17755],
-        [17.45715, 43.17643],
-        [17.45855, 43.1755],
-        [17.45945, 43.17458],
-        [17.46034, 43.17377],
-        [17.46214, 43.17318],
-        [17.46327, 43.17248],
-        [17.46514, 43.17164],
-        [17.46668, 43.17045],
-        [17.46946, 43.16877],
-        [17.47561, 43.16536],
-        [17.47604, 43.16418],
-        [17.47869, 43.1628],
-        [17.48447, 43.16096],
-        [17.48814, 43.16012],
-        [17.49152, 43.15872],
-        [17.49323, 43.15725],
-        [17.49458, 43.15644],
-        [17.49585, 43.15634],
-        [17.49633, 43.15603],
-        [17.50096, 43.15453],
-        [17.50323, 43.15328],
-        [17.5041, 43.15307],
-        [17.5075, 43.15153],
-        [17.50916, 43.1501],
-        [17.51062, 43.14917],
-        [17.51568, 43.14763],
-        [17.52138, 43.1462],
-        [17.528, 43.14377],
-        [17.53268, 43.14149],
-        [17.53599, 43.1394],
-        [17.54105, 43.13789],
-        [17.54608, 43.13624],
-        [17.54735, 43.1356],
-        [17.54932, 43.13385],
-        [17.5514, 43.13349],
-        [17.55324, 43.13339],
-        [17.55662, 43.1323],
-        [17.55868, 43.13126],
-        [17.56014, 43.13017],
-        [17.56376, 43.12737],
-        [17.56486, 43.12661],
-        [17.5672, 43.12577],
-        [17.56843, 43.12491],
-        [17.5703, 43.12428],
-        [17.57361, 43.12358],
-        [17.57736, 43.12229],
-        [17.5818, 43.12095],
-        [17.58489, 43.11943],
-        [17.58694, 43.11874],
-        [17.58996, 43.11716],
-        [17.59436, 43.11478],
-        [17.59802, 43.1129],
-        [17.60069, 43.11105],
-        [17.60222, 43.11094],
-        [17.60363, 43.11035],
-        [17.60494, 43.10942],
-        [17.60589, 43.1083],
-        [17.61323, 43.1047],
-        [17.62194, 43.10018],
-        [17.62776, 43.09777],
-        [17.629, 43.09757],
-        [17.63049, 43.09706],
-        [17.63221, 43.09613],
-        [17.63334, 43.09557],
-        [17.63715, 43.09477],
-        [17.63904, 43.09354],
-        [17.64095, 43.09229],
-        [17.64304, 43.09121],
-        [17.64429, 43.09027],
-        [17.64522, 43.08805],
-        [17.65012, 43.07925],
-        [17.65267, 43.07481],
-        [17.65291, 43.07368],
-        [17.65295, 43.07287],
-        [17.65387, 43.07064],
-        [17.65413, 43.07026],
-        [17.65533, 43.06911],
-        [17.65625, 43.06685],
-        [17.65718, 43.06482],
-        [17.65969, 43.06062],
-        [17.66288, 43.05543],
-        [17.66398, 43.05285],
-        [17.66521, 43.05078],
-        [17.66695, 43.04723],
-        [17.669, 43.04299],
-        [17.67219, 43.0381],
-        [17.67612, 43.03219],
-        [17.67831, 43.02874],
-        [17.67986, 43.0277],
-        [17.68069, 43.02618],
-        [17.68167, 43.0252],
-        [17.68268, 43.02425],
-        [17.68431, 43.02197],
-        [17.68636, 43.02069],
-        [17.68689, 43.01954],
-        [17.68763, 43.01635],
-        [17.68846, 43.01132],
-        [17.69535, 43.00363],
-        [17.69763, 43.00099],
-        [17.69817, 42.99964],
-        [17.70499, 42.98764],
-        [17.70556, 42.98527],
-        [17.70669, 42.98351],
-        [17.7085, 42.98023],
-        [17.71408, 42.97496],
-        [17.71384, 42.9707],
-        [17.70105, 42.96614],
-        [17.68885, 42.9633],
-        [17.68698, 42.96293],
-        [17.68241, 42.96273],
-        [17.67891, 42.96188],
-        [17.67431, 42.96167],
-        [17.67178, 42.96069],
-        [17.67, 42.95984],
-        [17.66802, 42.95943],
-        [17.66662, 42.95952],
-        [17.66291, 42.9585],
-        [17.66149, 42.95834],
-        [17.66003, 42.95843],
-        [17.65517, 42.95706],
-        [17.65359, 42.95674],
-        [17.65131, 42.95563],
-        [17.64944, 42.95519],
-        [17.64297, 42.95113],
-        [17.64175, 42.95083],
-        [17.63991, 42.95074],
-        [17.63492, 42.94772],
-        [17.63317, 42.94633],
-        [17.63199, 42.9452],
-        [17.62938, 42.94451],
-        [17.62762, 42.94357],
-        [17.62611, 42.9432],
-        [17.62282, 42.94183],
-        [17.62121, 42.94083],
-        [17.61881, 42.94012],
-        [17.61537, 42.93951],
-        [17.60937, 42.93868],
-        [17.60543, 42.93831],
-        [17.6032, 42.93825],
-        [17.60213, 42.93792],
-        [17.59293, 42.93768],
-        [17.58964, 42.93703],
-        [17.58596, 42.93632],
-        [17.58424, 42.93625],
-        [17.58165, 42.93547],
-        [17.58002, 42.93553],
-        [17.57649, 42.93745],
-        [17.57444, 42.9389],
-        [17.56664, 42.93852],
-        [17.56426, 42.93879],
-        [17.54924, 42.93892],
-        [17.53481, 42.93894],
-        [17.52978, 42.9424],
-        [17.52028, 42.92815],
-        [17.52748, 42.92702],
-        [17.53375, 42.92469],
-        [17.54671, 42.91709],
-        [17.548, 42.91583],
-        [17.55298, 42.91602],
-        [17.56242, 42.91338],
-        [17.56697, 42.91111],
-        [17.57452, 42.90822],
-        [17.58096, 42.90634],
-        [17.58714, 42.90407],
-        [17.59512, 42.90112],
-        [17.60087, 42.89785],
-        [17.60774, 42.89873],
-        [17.61263, 42.89772],
-        [17.62113, 42.89213],
-        [17.62671, 42.8871],
-        [17.63263, 42.88269],
-        [17.63752, 42.88137],
-        [17.64361, 42.88081],
-        [17.6487, 42.88431],
-        [17.64423, 42.88859],
-        [17.66215, 42.90753],
-        [17.6643, 42.91162],
-        [17.67305, 42.92048],
-        [17.67683, 42.92325],
-        [17.68764, 42.92563],
-        [17.70404, 42.92431],
-        [17.72558, 42.92174],
-        [17.75631, 42.91476],
-        [17.76858, 42.90992],
-        [17.7879, 42.89439],
-        [17.80041, 42.9114],
-        [17.80532, 42.91742],
-        [17.80747, 42.91947],
-        [17.80994, 42.91968],
-        [17.81313, 42.91834],
-        [17.8145, 42.91781],
-        [17.81646, 42.91693],
-        [17.82294, 42.9144],
-        [17.83115, 42.91166],
-        [17.84137, 42.90642],
-        [17.84605, 42.90453],
-        [17.84684, 42.90398],
-        [17.84753, 42.90304],
-        [17.85276, 42.89772],
-        [17.85497, 42.89507],
-        [17.85905, 42.88991],
-        [17.86051, 42.88881],
-        [17.8618, 42.88642],
-        [17.86216, 42.88405],
-        [17.86074, 42.88175],
-        [17.8592, 42.87944],
-        [17.85757, 42.8779],
-        [17.8578, 42.87662],
-        [17.85961, 42.86939],
-        [17.86077, 42.86793],
-        [17.86188, 42.8654],
-        [17.86257, 42.86362],
-        [17.86613, 42.85892],
-        [17.86645, 42.85802],
-        [17.86733, 42.85673],
-        [17.87057, 42.85152],
-        [17.87315, 42.84772],
-        [17.87643, 42.84496],
-        [17.878, 42.84334],
-        [17.88046, 42.83977],
-        [17.88551, 42.8398],
-        [17.88933, 42.83823],
-        [17.89355, 42.83672],
-        [17.90126, 42.83463],
-        [17.90231, 42.83418],
-        [17.90334, 42.8331],
-        [17.90351, 42.8322],
-        [17.90241, 42.82987],
-        [17.90113, 42.82794],
-        [17.90003, 42.82717],
-        [17.8989, 42.82512],
-        [17.89754, 42.82419],
-        [17.89478, 42.82156],
-        [17.8933, 42.82071],
-        [17.89081, 42.815],
-        [17.89327, 42.81196],
-        [17.90171, 42.81198],
-        [17.90911, 42.8131],
-        [17.91046, 42.81308],
-        [17.91166, 42.81273],
-        [17.91362, 42.81155],
-        [17.91613, 42.81011],
-        [17.94119, 42.80308],
-        [17.95164, 42.8011],
-        [17.95338, 42.79982],
-        [17.96005, 42.7946],
-        [17.962, 42.79191],
-        [17.96683, 42.78819],
-        [17.96825, 42.78757],
-        [17.96921, 42.78682],
-        [17.96966, 42.78627],
-        [17.97529, 42.78378],
-        [17.97704, 42.78202],
-        [17.98146, 42.78038],
-        [17.98501, 42.78065],
-        [17.99464, 42.77921],
-        [17.99837, 42.77783],
-        [17.99975, 42.77641],
-        [17.99979, 42.77518],
-        [17.99975, 42.7739],
-        [18.00007, 42.77231],
-        [18.00018, 42.76573],
-        [18.00168, 42.76442],
-        [18.00219, 42.76363],
-        [18.00515, 42.75962],
-        [18.00663, 42.75855],
-        [18.01058, 42.75648],
-        [18.01161, 42.75539],
-        [18.0123, 42.75465],
-        [18.02601, 42.75448],
-        [18.02882, 42.75358],
-        [18.03268, 42.75248],
-        [18.03451, 42.75242],
-        [18.03698, 42.7518],
-        [18.04343, 42.75042],
-        [18.04496, 42.74908],
-        [18.05144, 42.74422],
-        [18.05339, 42.74396],
-        [18.05616, 42.74279],
-        [18.0588, 42.74176],
-        [18.06393, 42.73857],
-        [18.06562, 42.73715],
-        [18.06755, 42.7354],
-        [18.07105, 42.73316],
-        [18.07609, 42.7296],
-        [18.07667, 42.7287],
-        [18.07663, 42.72749],
-        [18.07691, 42.7266],
-        [18.07903, 42.72698],
-        [18.08019, 42.72679],
-        [18.08159, 42.72632],
-        [18.08416, 42.72504],
-        [18.0927, 42.72184],
-        [18.10032, 42.71919],
-        [18.10392, 42.71713],
-        [18.10843, 42.71355],
-        [18.10933, 42.71193],
-        [18.11045, 42.70962],
-        [18.11141, 42.70663],
-        [18.11131, 42.7027],
-        [18.11036, 42.70155],
-        [18.1107, 42.69967],
-        [18.11049, 42.69906],
-        [18.10873, 42.69663],
-        [18.10813, 42.69359],
-        [18.10592, 42.68963],
-        [18.1059, 42.68878],
-        [18.10976, 42.68843],
-        [18.1115, 42.68857],
-        [18.11246, 42.68857],
-        [18.11442, 42.68876],
-        [18.11626, 42.68833],
-        [18.11746, 42.68747],
-        [18.11948, 42.68633],
-        [18.12422, 42.68545],
-        [18.12667, 42.68494],
-        [18.12851, 42.68472],
-        [18.13373, 42.68444],
-        [18.13527, 42.68384],
-        [18.13813, 42.68226],
-        [18.14085, 42.68261],
-        [18.14253, 42.68248],
-        [18.14596, 42.68086],
-        [18.14686, 42.67969],
-        [18.14772, 42.67676],
-        [18.14931, 42.67204],
-        [18.15328, 42.66798],
-        [18.15613, 42.66443],
-        [18.15772, 42.66199],
-        [18.15828, 42.65994],
-        [18.15819, 42.65896],
-        [18.16598, 42.66117],
-        [18.17158, 42.66197],
-        [18.17261, 42.66182],
-        [18.17396, 42.66295],
-        [18.17501, 42.66333],
-        [18.17606, 42.66339],
-        [18.17913, 42.66322],
-        [18.18087, 42.66254],
-        [18.18338, 42.66011],
-        [18.18589, 42.65781],
-        [18.18772, 42.65804],
-        [18.19093, 42.65757],
-        [18.19327, 42.65669],
-        [18.1948, 42.65524],
-        [18.19497, 42.65473],
-        [18.19673, 42.65381],
-        [18.19782, 42.65206],
-        [18.19862, 42.6508],
-        [18.20424, 42.64569],
-        [18.20761, 42.64051],
-        [18.21389, 42.63647],
-        [18.21563, 42.63405],
-        [18.21844, 42.63086],
-        [18.22147, 42.62796],
-        [18.22422, 42.62502],
-        [18.22887, 42.62202],
-        [18.23381, 42.62163],
-        [18.23632, 42.62041],
-        [18.23728, 42.61894],
-        [18.23733, 42.61801],
-        [18.23911, 42.6185],
-        [18.24241, 42.61822],
-        [18.24368, 42.61763],
-        [18.24522, 42.61563],
-        [18.24619, 42.61395],
-        [18.2466, 42.61106],
-        [18.24679, 42.60541],
-        [18.24911, 42.60547],
-        [18.25844, 42.60781],
-        [18.26273, 42.60892],
-        [18.26477, 42.61117],
-        [18.27044, 42.61342],
-        [18.27312, 42.61307],
-        [18.2744, 42.61517],
-        [18.28073, 42.61969],
-        [18.28168, 42.61995],
-        [18.28503, 42.61967],
-        [18.28861, 42.61945],
-        [18.29249, 42.61817],
-        [18.31086, 42.61733],
-        [18.3235, 42.61934],
-        [18.33193, 42.62142],
-        [18.34811, 42.6216],
-        [18.36845, 42.61827],
-        [18.37062, 42.61669],
-        [18.37631, 42.60993],
-        [18.3824, 42.60094],
-        [18.38596, 42.59811],
-        [18.39259, 42.59094],
-        [18.40075, 42.58794],
-        [18.40066, 42.586],
-        [18.40545, 42.58592],
-        [18.41875, 42.57781],
-        [18.43351, 42.56805],
-        [18.43729, 42.56658],
-        [18.43954, 42.56497],
-        [18.44008, 42.5637],
-        [18.44096, 42.5567],
-        [18.44343, 42.55112],
-        [18.44341, 42.54918],
-        [18.44244, 42.53503],
-        [18.44201, 42.52551],
-        [18.44072, 42.52124],
-        [18.44021, 42.52064],
-        [18.446, 42.5169],
-        [18.45055, 42.51001],
-        [18.44931, 42.50814],
-        [18.44407, 42.50121],
-        [18.44394, 42.49871],
-        [18.44321, 42.49754],
-        [18.4433, 42.4959],
-        [18.44223, 42.49397],
-        [18.44171, 42.49318],
-        [18.44115, 42.49026],
-        [18.44175, 42.48786],
-        [18.44102, 42.48631],
-        [18.43987, 42.48498],
-        [18.44613, 42.48264],
-        [18.45077, 42.47909],
-        [18.45274, 42.4765],
-        [18.456, 42.47482],
-        [18.45815, 42.47529],
-        [18.46102, 42.47444],
-        [18.46634, 42.47203],
-        [18.47647, 42.46665],
-        [18.4787, 42.46409],
-        [18.48239, 42.45883],
-        [18.48673, 42.45316],
-        [18.49119, 42.45006],
-        [18.49437, 42.4474],
-        [18.49621, 42.44357],
-        [18.5069, 42.43435],
-        [18.50944, 42.43283],
-        [18.51866, 42.42855],
-        [18.52484, 42.4237],
-        [18.52851, 42.42188],
-        [18.52998, 42.42174],
-        [18.52979, 42.41742],
-        [18.52518, 42.41753],
-        [18.52247, 42.41689],
-        [18.5179, 42.41746],
-        [18.51614, 42.41412],
-        [18.51443, 42.413],
-        [18.51529, 42.40784],
-        [18.51976, 42.40447],
-        [18.52746, 42.40018],
-        [18.53293, 42.3979],
-        [18.53635, 42.39597],
-        [18.53816, 42.39319],
-        [18.53787, 42.39042],
-        [18.53516, 42.38933],
-        [18.52931, 42.3893],
-        [18.52232, 42.39066],
-        [18.51919, 42.39242],
-        [18.51662, 42.39288],
-        [18.51248, 42.39541],
-        [18.50758, 42.39839],
-        [18.50435, 42.40095],
-        [18.50335, 42.4065],
-        [18.48793, 42.4169],
-        [18.48287, 42.41931],
-        [18.47862, 42.42371],
-        [18.47561, 42.42659],
-        [18.47261, 42.42935],
-        [18.47124, 42.43261],
-        [18.46591, 42.43701],
-        [18.46385, 42.43961],
-        [18.45969, 42.4424],
-        [18.44974, 42.44683],
-        [18.44562, 42.44309],
-        [18.4306, 42.43708],
-        [18.42236, 42.44081],
-        [18.42253, 42.44582],
-        [18.40219, 42.45741],
-        [18.40716, 42.46456],
-        [18.37051, 42.48292],
-        [18.35026, 42.49159],
-        [18.30503, 42.5133],
-        [18.26941, 42.52582],
-        [18.26348, 42.53474],
-        [18.24091, 42.54979],
-        [18.22254, 42.56181],
-        [18.21945, 42.56775],
-        [18.19851, 42.56648],
-        [18.18718, 42.57255],
-        [18.18443, 42.57887],
-        [18.16795, 42.58532],
-        [18.16915, 42.5905],
-        [18.19868, 42.59998],
-        [18.21327, 42.59833],
-        [18.21568, 42.60453],
-        [18.2016, 42.61501],
-        [18.18237, 42.60983],
-        [18.16401, 42.61476],
-        [18.14461, 42.62524],
-        [18.13379, 42.62676],
-        [18.1307, 42.61792],
-        [18.12178, 42.61678],
-        [18.10822, 42.62171],
-        [18.10444, 42.6351],
-        [18.03989, 42.64873],
-        [17.94891, 42.64128],
-        [17.06039, 42.69152],
-        [16.35138, 42.37123],
-        [16.23677, 42.38453],
-        [16.39023, 42.73995],
-        [15.43075, 43.08152],
-        [15.42676, 43.10342],
-        [15.63066, 43.43802],
-        [14.62071, 44.3094],
-        [14.29287, 44.49332],
-        [13.99641, 44.82337],
-        [14.00894, 44.80997],
-        [14.00808, 44.80011],
-        [13.9892, 44.78854],
-        [13.97152, 44.78829],
-        [13.95882, 44.78768],
-        [13.95367, 44.7794],
-        [13.95401, 44.76916],
-        [13.93564, 44.75905],
-        [13.88603, 44.75271],
-        [13.88535, 44.76331],
-        [13.89307, 44.78049],
-        [13.89153, 44.8023],
-        [13.86715, 44.80388],
-        [13.82578, 44.82532],
-        [13.81273, 44.84467],
-        [13.80363, 44.85648],
-        [13.78447, 44.85757],
-        [13.78601, 44.88862],
-        [13.77793, 44.89044],
-        [13.76604, 44.88889],
-        [13.7571, 44.8829],
-        [13.74901, 44.88263],
-        [13.7396, 44.88856],
-        [13.72724, 44.90183],
-        [13.72647, 44.90823],
-        [13.71639, 44.90809],
-        [13.70853, 44.9134],
-        [13.70926, 44.91746],
-        [13.71972, 44.92473],
-        [13.71925, 44.92803],
-        [13.70279, 44.94304],
-        [13.70336, 44.94822],
-        [13.70945, 44.95038],
-        [13.72398, 44.94888],
-        [13.74596, 44.94366],
-        [13.76862, 44.94342],
-        [13.76178, 44.96316],
-        [13.76116, 44.98088],
-        [13.73532, 44.98052],
-        [13.72261, 44.98289],
-        [13.69926, 44.98714],
-        [13.69017, 44.99661],
-        [13.68347, 45.00984],
-        [13.68334, 45.01524],
-        [13.6745, 45.01506],
-        [13.64605, 45.03605],
-        [13.60777, 45.03763],
-        [13.60451, 45.08431],
-        [13.60193, 45.12296],
-        [13.57035, 45.13967],
-        [13.57754, 45.15724],
-        [13.56139, 45.19789],
-        [13.57374, 45.22722],
-        [13.58211, 45.24115],
-        [13.56651, 45.25347],
-        [13.56571, 45.27271],
-        [13.55416, 45.30856],
-        [13.55372, 45.31784],
-        [13.54537, 45.31771],
-        [13.52898, 45.32753],
-        [13.53379, 45.36116],
-        [13.52818, 45.37418],
-        [13.52383, 45.39419],
-        [13.51034, 45.4124],
-        [13.51013, 45.42486],
-        [13.50659, 45.4248],
-        [13.50167, 45.44254],
-        [13.50872, 45.44279],
-        [13.5076, 45.46073],
-        [13.50045, 45.46072],
-        [13.48227, 45.48675],
-        [13.48555, 45.496],
-        [13.49894, 45.50731],
-        [13.50564, 45.50971],
-        [13.50899, 45.50995],
-        [13.62167, 45.43361],
-        [13.8722, 45.40671],
-        [13.88661, 45.40668],
-        [13.91067, 45.41026],
-        [13.92956, 45.41151],
-        [13.96571, 45.41603],
-        [14.0013, 45.41872],
-        [14.03128, 45.42045],
-        [14.0718, 45.42525],
-        [14.14737, 45.43227],
-        [14.19625, 45.43889],
-        [14.21856, 45.44014],
-        [14.27031, 45.44792],
-        [14.36464, 45.45647],
-        [14.435, 45.46377],
-        [14.46156, 45.46406],
-        [14.49866, 45.46924],
-        [14.51701, 45.47116],
-        [14.54973, 45.47174],
-        [14.55, 45.47356],
-        [14.58984, 45.47778],
-        [14.59052, 45.463],
-        [14.60996, 45.46146],
-        [14.6253, 45.4726],
-        [14.64679, 45.45762],
-        [14.66828, 45.4558],
-        [14.68457, 45.46713],
-        [14.70662, 45.45196],
-        [14.72044, 45.45119],
-        [14.75097, 45.44773],
-        [14.77808, 45.44341],
-        [14.81121, 45.44158],
-        [14.84023, 45.44072],
-        [14.85324, 45.43947],
-        [14.88264, 45.43426],
-        [14.88818, 45.43488],
-        [14.89232, 45.43383],
-        [14.89691, 45.43308],
-        [14.89941, 45.43219],
-        [14.91881, 45.42948],
-        [14.95886, 45.42631],
-        [14.96303, 45.42496],
-        [14.97741, 45.4229],
-        [14.98843, 45.42304],
-        [15.00205, 45.42223],
-        [15.00917, 45.42088],
-        [15.02142, 45.42011],
-        [15.06324, 45.41444],
-        [15.07166, 45.42021],
-        [15.08289, 45.41228],
-        [15.10267, 45.40997],
-        [15.11068, 45.41041],
-        [15.12985, 45.40723],
-        [15.16346, 45.40526],
-        [15.19316, 45.40185],
-        [15.23197, 45.41199],
-        [15.26572, 45.41867],
-        [15.30337, 45.42919],
-        [15.3636, 45.44264],
-        [15.40276, 45.47625],
-        [15.42028, 45.58175],
-        [15.42959, 45.65356],
-        [15.43753, 45.70368],
-        [15.50187, 45.69852],
-        [15.50119, 45.68934],
-        [15.53001, 45.68943],
-        [15.51454, 45.70727],
-        [15.54445, 45.72027],
-        [15.52357, 45.74392],
-        [15.54959, 45.75486],
-        [15.57286, 45.76708],
-        [15.59189, 45.77472],
-        [15.60873, 45.7837],
-        [15.66048, 45.80775],
-        [15.68703, 45.82082],
-        [15.72324, 45.8379],
-        [15.72749, 45.88175],
-        [15.73036, 45.90157],
-        [15.73166, 45.91977],
-        [15.73372, 45.92915],
-        [15.73399, 45.93605],
-        [15.73577, 45.95142],
-        [15.73618, 45.95547],
-        [15.74104, 45.98073],
-        [15.74111, 45.98506],
-        [15.7459, 46.01834],
-        [15.75028, 46.04942],
-        [15.7522, 46.05527],
-        [15.75357, 46.07778],
-        [15.75679, 46.09691],
-        [15.76007, 46.11836],
-        [15.82209, 46.11376],
-        [15.82565, 46.11362],
-        [15.82339, 46.10066],
-        [15.83092, 46.10071],
-        [15.83126, 46.11988],
-        [15.82524, 46.11793],
-        [15.79957, 46.15536],
-        [15.81723, 46.16076],
-        [15.80066, 46.18612],
-        [15.83468, 46.19773],
-        [15.85864, 46.20512],
-        [15.903, 46.22],
-        [15.88479, 46.24679],
-        [15.93969, 46.26445],
-        [15.97199, 46.27457],
-        [16.1297, 46.32763],
-        [16.17091, 46.34181],
-        [16.18926, 46.3143],
-        [16.30466, 46.35117],
-        [16.30501, 46.38145],
-        [16.2996, 46.38154],
-        [16.30063, 46.38565],
-        [16.2985, 46.38985],
-        [16.30063, 46.39146],
-        [16.30008, 46.39566],
-        [16.30213, 46.39712],
-        [16.29686, 46.4008],
-        [16.29515, 46.40392],
-        [16.28591, 46.40689],
-        [16.28208, 46.41095],
-        [16.27215, 46.41194],
-        [16.26825, 46.41454],
-        [16.26852, 46.41869],
-        [16.27003, 46.42067],
-        [16.26921, 46.42699],
-        [16.26236, 46.437],
-        [16.25839, 46.44992],
-        [16.2599, 46.45275],
-        [16.25469, 46.46077],
-        [16.25538, 46.46746],
-        [16.251, 46.47227],
-        [16.24648, 46.47896],
-        [16.23649, 46.48339],
-        [16.2369, 46.4883],
-        [16.2369, 46.4981],
-        [16.23881, 46.50083],
-        [16.24484, 46.50262],
-        [16.25825, 46.50441],
-        [16.26264, 46.50799],
-        [16.26168, 46.5177],
-        [16.26743, 46.51911],
-        [16.27112, 46.52081],
-        [16.27646, 46.52109],
-        [16.27783, 46.51902],
-        [16.28865, 46.51939],
-        [16.29672, 46.51788],
-        [16.30028, 46.51581],
-        [16.30288, 46.51647],
-        [16.30863, 46.52307],
-        [16.30918, 46.52608],
-        [16.32027, 46.53154],
-        [16.33232, 46.53343],
-        [16.33697, 46.53192],
-        [16.33684, 46.53522],
-        [16.3382, 46.53795],
-        [16.34094, 46.53917],
-        [16.33478, 46.53974],
-        [16.33163, 46.54303],
-        [16.33423, 46.54689],
-        [16.34546, 46.54849],
-        [16.34957, 46.55094],
-        [16.35326, 46.55245],
-        [16.35915, 46.55009],
-        [16.36203, 46.54972],
-        [16.36134, 46.55452],
-        [16.36449, 46.55763],
-        [16.3701, 46.55838],
-        [16.37394, 46.5565],
-        [16.37804, 46.55602],
-        [16.38434, 46.55405],
-        [16.38612, 46.55141],
-        [16.38667, 46.54868],
-        [16.38407, 46.54557],
-        [16.38804, 46.54397],
-        [16.38968, 46.542],
-        [16.39132, 46.53917],
-        [16.40022, 46.54228],
-        [16.40734, 46.54162],
-        [16.40844, 46.5387],
-        [16.40844, 46.53691],
-        [16.41268, 46.53701],
-        [16.41993, 46.53333],
-        [16.42568, 46.53597],
-        [16.43157, 46.53569],
-        [16.43527, 46.53305],
-        [16.44129, 46.53107],
-        [16.44554, 46.52561],
-        [16.44293, 46.52099],
-        [16.44334, 46.51854],
-        [16.45142, 46.52156],
-        [16.4569, 46.52118],
-        [16.45895, 46.52297],
-        [16.46251, 46.52448],
-        [16.46552, 46.52467],
-        [16.46958, 46.52183],
-        [16.47551, 46.51842],
-        [16.47648, 46.51592],
-        [16.48072, 46.515],
-        [16.48532, 46.51267],
-        [16.48544, 46.51158],
-        [16.49056, 46.51044],
-        [16.49337, 46.50812],
-        [16.49222, 46.50562],
-        [16.4921, 46.50358],
-        [16.49646, 46.50012],
-        [16.51184, 46.49754],
-        [16.51305, 46.49516],
-        [16.51662, 46.49508],
-        [16.52249, 46.49112]
-      ]
-    ],
-    "terms_url": "https://dgu.gov.hr/",
-    "terms_text": "Sadrži podatke Državne geodetske uprave",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"
-  },
-  {
-    "id": "dgu-dof-2017",
-    "name": "dgu.hr: Croatia 2017 Aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [16.30898, 45.22981],
-        [16.5, 45.22997],
-        [16.50001, 45.21197],
-        [16.50382, 45.21198],
-        [16.50512, 45.21274],
-        [16.50999, 45.21581],
-        [16.51263, 45.21647],
-        [16.5151, 45.21845],
-        [16.51946, 45.21977],
-        [16.52186, 45.22151],
-        [16.53074, 45.22431],
-        [16.53308, 45.22445],
-        [16.53589, 45.22452],
-        [16.5366, 45.22433],
-        [16.53725, 45.22206],
-        [16.53884, 45.22048],
-        [16.54198, 45.21876],
-        [16.54445, 45.21777],
-        [16.54772, 45.21712],
-        [16.54954, 45.21688],
-        [16.55249, 45.21641],
-        [16.55559, 45.21654],
-        [16.55883, 45.21705],
-        [16.56237, 45.21855],
-        [16.56528, 45.21976],
-        [16.56785, 45.21976],
-        [16.57133, 45.2196],
-        [16.57514, 45.21974],
-        [16.5792, 45.21948],
-        [16.58255, 45.22004],
-        [16.58755, 45.22213],
-        [16.59218, 45.22426],
-        [16.59356, 45.22654],
-        [16.59699, 45.22877],
-        [16.59808, 45.22881],
-        [16.60028, 45.22828],
-        [16.60455, 45.22697],
-        [16.60744, 45.22516],
-        [16.61451, 45.22243],
-        [16.61709, 45.22137],
-        [16.61941, 45.21939],
-        [16.62107, 45.21718],
-        [16.62278, 45.21467],
-        [16.62509, 45.2124],
-        [16.62802, 45.21116],
-        [16.63015, 45.21113],
-        [16.6343, 45.21163],
-        [16.64543, 45.20517],
-        [16.65125, 45.20441],
-        [16.65628, 45.20452],
-        [16.66168, 45.20208],
-        [16.66649, 45.19945],
-        [16.67051, 45.19857],
-        [16.67809, 45.19871],
-        [16.68349, 45.19727],
-        [16.68939, 45.19491],
-        [16.69429, 45.1934],
-        [16.69911, 45.1934],
-        [16.70409, 45.1947],
-        [16.71121, 45.19951],
-        [16.71615, 45.20184],
-        [16.72063, 45.20205],
-        [16.72611, 45.20258],
-        [16.73051, 45.20467],
-        [16.7326, 45.20461],
-        [16.73972, 45.20143],
-        [16.74889, 45.1975],
-        [16.75328, 45.19665],
-        [16.75965, 45.19703],
-        [16.76329, 45.1957],
-        [16.77124, 45.19119],
-        [16.77706, 45.18948],
-        [16.79109, 45.18603],
-        [16.80273, 45.18299],
-        [16.80691, 45.18254],
-        [16.81516, 45.18187],
-        [16.82178, 45.1824],
-        [16.8286, 45.18402],
-        [16.83484, 45.18547],
-        [16.84116, 45.18842],
-        [16.84438, 45.19148],
-        [16.84706, 45.19367],
-        [16.84723, 45.19526],
-        [16.84623, 45.1975],
-        [16.84775, 45.20171],
-        [16.85292, 45.20115],
-        [16.85778, 45.20225],
-        [16.86322, 45.20821],
-        [16.86724, 45.21193],
-        [16.86833, 45.21635],
-        [16.8721, 45.21718],
-        [16.87737, 45.216],
-        [16.88181, 45.21647],
-        [16.88508, 45.22137],
-        [16.88432, 45.22296],
-        [16.88684, 45.22644],
-        [16.88742, 45.23062],
-        [16.88525, 45.23428],
-        [16.88809, 45.24136],
-        [16.88658, 45.24295],
-        [16.89429, 45.24401],
-        [16.89814, 45.24713],
-        [16.90442, 45.24749],
-        [16.91237, 45.25061],
-        [16.91681, 45.25509],
-        [16.91874, 45.25975],
-        [16.91782, 45.26275],
-        [16.92259, 45.26723],
-        [16.92351, 45.27142],
-        [16.9282, 45.27307],
-        [16.93331, 45.27307],
-        [16.93465, 45.26965],
-        [16.93699, 45.26158],
-        [16.94913, 45.25668],
-        [16.94897, 45.25468],
-        [16.94637, 45.25321],
-        [16.9344, 45.24878],
-        [16.93054, 45.24206],
-        [16.93088, 45.23682],
-        [16.93264, 45.22703],
-        [16.93875, 45.22426],
-        [16.94361, 45.22431],
-        [16.95031, 45.22514],
-        [16.95583, 45.22886],
-        [16.95943, 45.22844],
-        [16.96362, 45.22644],
-        [16.96923, 45.22384],
-        [16.97559, 45.22443],
-        [16.97911, 45.22573],
-        [16.9864, 45.22066],
-        [16.99201, 45.21889],
-        [17.00004, 45.21783],
-        [17.00314, 45.21889],
-        [17.00415, 45.21399],
-        [17.00992, 45.21081],
-        [17.01771, 45.20951],
-        [17.02382, 45.21087],
-        [17.03437, 45.21983],
-        [17.04065, 45.20414],
-        [17.0507, 45.19736],
-        [17.0605, 45.196],
-        [17.06619, 45.18904],
-        [17.10262, 45.17475],
-        [17.10957, 45.17334],
-        [17.13125, 45.16295],
-        [17.14055, 45.16047],
-        [17.16542, 45.14694],
-        [17.17932, 45.14352],
-        [17.19096, 45.14328],
-        [17.2031, 45.14659],
-        [17.2144, 45.14381],
-        [17.22244, 45.14257],
-        [17.23492, 45.14376],
-        [17.2463, 45.14263],
-        [17.25141, 45.1444],
-        [17.25903, 45.15332],
-        [17.26389, 45.16619],
-        [17.26422, 45.17257],
-        [17.26824, 45.17404],
-        [17.27318, 45.18585],
-        [17.28264, 45.17186],
-        [17.29554, 45.17233],
-        [17.30659, 45.17375],
-        [17.30525, 45.16619],
-        [17.30927, 45.16159],
-        [17.32752, 45.16295],
-        [17.32225, 45.15604],
-        [17.32644, 45.14895],
-        [17.3426, 45.13809],
-        [17.35968, 45.13608],
-        [17.38312, 45.13407],
-        [17.40607, 45.13141],
-        [17.41754, 45.13253],
-        [17.4275, 45.13655],
-        [17.43814, 45.14582],
-        [17.44098, 45.15639],
-        [17.44509, 45.15769],
-        [17.44827, 45.15627],
-        [17.45086, 45.14399],
-        [17.44425, 45.13265],
-        [17.44408, 45.1281],
-        [17.44768, 45.12456],
-        [17.4589, 45.12249],
-        [17.47456, 45.12267],
-        [17.48821, 45.13283],
-        [17.48746, 45.12515],
-        [17.47699, 45.11894],
-        [17.47347, 45.11239],
-        [17.47757, 45.10795],
-        [17.48821, 45.10589],
-        [17.49801, 45.10837],
-        [17.50362, 45.11109],
-        [17.51283, 45.10494],
-        [17.52187, 45.10488],
-        [17.53594, 45.10665],
-        [17.54372, 45.11292],
-        [17.54582, 45.11835],
-        [17.54414, 45.12544],
-        [17.5495, 45.12663],
-        [17.55277, 45.12184],
-        [17.55059, 45.11321],
-        [17.54992, 45.10701],
-        [17.55729, 45.10417],
-        [17.5696, 45.10654],
-        [17.57445, 45.11286],
-        [17.57839, 45.11256],
-        [17.58358, 45.10843],
-        [17.59045, 45.10281],
-        [17.6005, 45.10181],
-        [17.61063, 45.106],
-        [17.61599, 45.10967],
-        [17.62629, 45.1102],
-        [17.62989, 45.1151],
-        [17.63483, 45.11971],
-        [17.65341, 45.1281],
-        [17.66363, 45.13094],
-        [17.67225, 45.12934],
-        [17.6777, 45.12426],
-        [17.68808, 45.11357],
-        [17.70047, 45.11138],
-        [17.7091, 45.11032],
-        [17.71747, 45.10394],
-        [17.73238, 45.09584],
-        [17.75616, 45.08254],
-        [17.76528, 45.0807],
-        [17.76905, 45.08112],
-        [17.77709, 45.08124],
-        [17.78504, 45.0768],
-        [17.78848, 45.07308],
-        [17.80824, 45.05663],
-        [17.83545, 45.04327],
-        [17.85061, 45.04019],
-        [17.86593, 45.04114],
-        [17.88418, 45.04794],
-        [17.90654, 45.05882],
-        [17.93024, 45.07438],
-        [17.94171, 45.08141],
-        [17.94221, 45.08626],
-        [17.9366, 45.09483],
-        [17.93576, 45.1037],
-        [17.94146, 45.10813],
-        [17.96105, 45.10843],
-        [17.97202, 45.11292],
-        [17.98106, 45.12414],
-        [17.9824, 45.13543],
-        [17.9948, 45.14488],
-        [18.0097, 45.14872],
-        [18.01732, 45.14618],
-        [18.02126, 45.13868],
-        [18.02862, 45.12432],
-        [18.03733, 45.12196],
-        [18.04462, 45.12385],
-        [18.04822, 45.13631],
-        [18.05709, 45.13962],
-        [18.06597, 45.13909],
-        [18.07242, 45.13182],
-        [18.08054, 45.119],
-        [18.06856, 45.1115],
-        [18.06664, 45.10772],
-        [18.06856, 45.10352],
-        [18.07652, 45.10057],
-        [18.08967, 45.09714],
-        [18.10139, 45.08484],
-        [18.1106, 45.07863],
-        [18.12115, 45.07621],
-        [18.1394, 45.08183],
-        [18.15062, 45.08153],
-        [18.16695, 45.07396],
-        [18.18286, 45.07343],
-        [18.19994, 45.07562],
-        [18.21192, 45.08177],
-        [18.22046, 45.08827],
-        [18.22699, 45.09856],
-        [18.22473, 45.10287],
-        [18.2161, 45.10919],
-        [18.21309, 45.11705],
-        [18.21493, 45.12202],
-        [18.23561, 45.13194],
-        [18.25755, 45.13614],
-        [18.26718, 45.13318],
-        [18.2722, 45.12781],
-        [18.27631, 45.11174],
-        [18.28929, 45.10996],
-        [18.3021, 45.11191],
-        [18.3098, 45.10376],
-        [18.32169, 45.09696],
-        [18.33676, 45.09808],
-        [18.36875, 45.10269],
-        [18.40015, 45.10547],
-        [18.41924, 45.10518],
-        [18.43088, 45.0985],
-        [18.43749, 45.08265],
-        [18.44804, 45.07639],
-        [18.46814, 45.05995],
-        [18.48983, 45.05516],
-        [18.51419, 45.05344],
-        [18.52299, 45.05634],
-        [18.526, 45.05155],
-        [18.52474, 45.04303],
-        [18.53161, 45.03995],
-        [18.54057, 45.0409],
-        [18.54467, 45.05539],
-        [18.54434, 45.06137],
-        [18.55598, 45.07065],
-        [18.56401, 45.07432],
-        [18.56703, 45.06551],
-        [18.57691, 45.06154],
-        [18.58704, 45.06846],
-        [18.58771, 45.08384],
-        [18.60211, 45.07645],
-        [18.60856, 45.07627],
-        [18.59843, 45.06971],
-        [18.59935, 45.06409],
-        [18.60864, 45.05805],
-        [18.64063, 45.05776],
-        [18.64725, 45.05421],
-        [18.6588, 45.05326],
-        [18.66466, 45.05817],
-        [18.68861, 45.03764],
-        [18.70109, 45.03439],
-        [18.71155, 45.03475],
-        [18.71892, 45.02054],
-        [18.73282, 45.01545],
-        [18.72621, 45.00622],
-        [18.72026, 44.99728],
-        [18.72679, 44.99017],
-        [18.74613, 44.98987],
-        [18.76163, 44.99591],
-        [18.77251, 44.99485],
-        [18.78214, 44.99165],
-        [18.78901, 44.99224],
-        [18.7782, 44.97596],
-        [18.78214, 44.95469],
-        [18.79813, 44.94485],
-        [18.79579, 44.93987],
-        [18.78398, 44.93857],
-        [18.76271, 44.94894],
-        [18.74764, 44.9455],
-        [18.74471, 44.93786],
-        [18.74655, 44.9263],
-        [18.76338, 44.91978],
-        [18.75635, 44.90792],
-        [18.7633, 44.8992],
-        [18.78942, 44.88449],
-        [18.81915, 44.87339],
-        [18.83925, 44.8547],
-        [18.85055, 44.849],
-        [18.87835, 44.84817],
-        [18.92499, 44.8468],
-        [18.96225, 44.84597],
-        [18.996, 44.84823],
-        [19.02647, 44.85137],
-        [19.02756, 44.85927],
-        [19.01031, 44.88508],
-        [18.99708, 44.89801],
-        [18.99675, 44.90679],
-        [19.00562, 44.91331],
-        [19.02513, 44.91871],
-        [19.03284, 44.91841],
-        [19.03711, 44.9148],
-        [19.04021, 44.91764],
-        [19.09204, 44.9164],
-        [19.09514, 44.97513],
-        [19.08643, 44.97779],
-        [19.06357, 44.97797],
-        [19.08634, 44.98608],
-        [19.09656, 44.99355],
-        [19.09714, 45.10453],
-        [19.08325, 45.11717],
-        [19.08333, 45.12745],
-        [19.09354, 45.1395],
-        [19.11297, 45.1343],
-        [19.11908, 45.12993],
-        [19.13491, 45.12692],
-        [19.20164, 45.17959],
-        [19.21077, 45.1852],
-        [19.22609, 45.18077],
-        [19.23564, 45.17127],
-        [19.24803, 45.17269],
-        [19.27726, 45.19446],
-        [19.29434, 45.19458],
-        [19.29316, 45.20196],
-        [19.31561, 45.20349],
-        [19.31988, 45.19252],
-        [19.40162, 45.19073],
-        [19.40389, 45.23548],
-        [19.40191, 45.23573],
-        [19.3658, 45.23519],
-        [19.32988, 45.23561],
-        [19.2979, 45.23909],
-        [19.26369, 45.24472],
-        [19.26415, 45.25153],
-        [19.26478, 45.25374],
-        [19.25226, 45.25438],
-        [19.22676, 45.2685],
-        [19.20077, 45.26891],
-        [19.18444, 45.27],
-        [19.18113, 45.27092],
-        [19.17598, 45.27395],
-        [19.16773, 45.27704],
-        [19.1532, 45.28096],
-        [19.11661, 45.29513],
-        [19.1079, 45.30137],
-        [19.10133, 45.31368],
-        [19.102, 45.32446],
-        [19.10003, 45.33149],
-        [19.09426, 45.33823],
-        [19.07738, 45.34462],
-        [19.06097, 45.34512],
-        [19.05687, 45.34571],
-        [19.05377, 45.34953],
-        [19.04665, 45.35233],
-        [19.02472, 45.35418],
-        [19.01739, 45.36021],
-        [19.00923, 45.36165],
-        [19.00579, 45.36083],
-        [18.98825, 45.36939],
-        [18.97736, 45.37577],
-        [18.9741, 45.38142],
-        [18.97435, 45.38718],
-        [18.97879, 45.39221],
-        [18.98678, 45.39609],
-        [19.01345, 45.39829],
-        [19.01538, 45.40732],
-        [19.01597, 45.42892],
-        [19.0145, 45.43459],
-        [19.00508, 45.43879],
-        [18.997, 45.44384],
-        [18.99336, 45.44854],
-        [18.99248, 45.45494],
-        [18.99419, 45.45823],
-        [18.99524, 45.47183],
-        [18.99537, 45.47391],
-        [18.99591, 45.48099],
-        [19.00073, 45.48768],
-        [19.00596, 45.49408],
-        [19.01404, 45.49226],
-        [19.01957, 45.48941],
-        [19.03141, 45.48422],
-        [19.04184, 45.48213],
-        [19.05088, 45.48204],
-        [19.05766, 45.48369],
-        [19.07831, 45.51814],
-        [18.99206, 45.54491],
-        [18.98431, 45.54081],
-        [18.97196, 45.5389],
-        [18.94705, 45.53685],
-        [18.9306, 45.54503],
-        [18.92825, 45.5489],
-        [18.93474, 45.55245],
-        [18.93692, 45.5567],
-        [18.93642, 45.56271],
-        [18.93056, 45.56409],
-        [18.93144, 45.56828],
-        [18.91385, 45.57112],
-        [18.91084, 45.56998],
-        [18.90808, 45.57012],
-        [18.90242, 45.57188],
-        [18.90117, 45.57833],
-        [18.90833, 45.59295],
-        [18.91427, 45.59755],
-        [18.92507, 45.595],
-        [18.93152, 45.59544],
-        [18.93139, 45.60889],
-        [18.94923, 45.60886],
-        [18.94676, 45.6141],
-        [18.94957, 45.62072],
-        [18.95593, 45.62403],
-        [18.95626, 45.62628],
-        [18.95191, 45.63325],
-        [18.94643, 45.6367],
-        [18.94404, 45.63679],
-        [18.93981, 45.63515],
-        [18.93684, 45.63869],
-        [18.93751, 45.64185],
-        [18.94709, 45.64071],
-        [18.95451, 45.64294],
-        [18.95936, 45.6454],
-        [18.96012, 45.68346],
-        [18.9507, 45.68846],
-        [18.93391, 45.69069],
-        [18.92968, 45.69402],
-        [18.92583, 45.69829],
-        [18.92202, 45.7023],
-        [18.92805, 45.70203],
-        [18.92985, 45.70311],
-        [18.93424, 45.70077],
-        [18.94391, 45.70162],
-        [18.94709, 45.70004],
-        [18.9494, 45.69604],
-        [18.95241, 45.69352],
-        [18.95919, 45.69186],
-        [18.96062, 45.70975],
-        [18.96016, 45.73185],
-        [18.93328, 45.73234],
-        [18.93345, 45.74777],
-        [18.91691, 45.74771],
-        [18.90561, 45.74766],
-        [18.87927, 45.74733],
-        [18.87902, 45.75969],
-        [18.86592, 45.76337],
-        [18.85943, 45.76673],
-        [18.85574, 45.7726],
-        [18.866, 45.77791],
-        [18.87328, 45.78159],
-        [18.88061, 45.78276],
-        [18.88115, 45.78419],
-        [18.88203, 45.82447],
-        [18.88007, 45.82348],
-        [18.87617, 45.8189],
-        [18.87307, 45.81026],
-        [18.86248, 45.80877],
-        [18.8565, 45.8114],
-        [18.85373, 45.81102],
-        [18.85289, 45.81577],
-        [18.85114, 45.81691],
-        [18.85784, 45.82581],
-        [18.86005, 45.83211],
-        [18.86165, 45.84448],
-        [18.86056, 45.85702],
-        [18.87458, 45.85609],
-        [18.88233, 45.85635],
-        [18.88266, 45.88468],
-        [18.87902, 45.88873],
-        [18.87429, 45.89488],
-        [18.87793, 45.89844],
-        [18.88354, 45.90118],
-        [18.8835, 45.92227],
-        [18.87998, 45.92087],
-        [18.8758, 45.91924],
-        [18.87161, 45.92017],
-        [18.86918, 45.9216],
-        [18.86617, 45.92296],
-        [18.86257, 45.92299],
-        [18.86001, 45.92116],
-        [18.85984, 45.91793],
-        [18.86248, 45.91303],
-        [18.83033, 45.90791],
-        [18.82623, 45.91743],
-        [18.82036, 45.91772],
-        [18.81521, 45.91536],
-        [18.80274, 45.90365],
-        [18.80374, 45.90144],
-        [18.80814, 45.89579],
-        [18.80831, 45.89101],
-        [18.80609, 45.88171],
-        [18.79801, 45.88151],
-        [18.79064, 45.88142],
-        [18.78557, 45.88378],
-        [18.78034, 45.88905],
-        [18.77427, 45.89136],
-        [18.76393, 45.89197],
-        [18.76439, 45.89447],
-        [18.75962, 45.89855],
-        [18.75765, 45.89951],
-        [18.75438, 45.89972],
-        [18.75422, 45.90211],
-        [18.75137, 45.90292],
-        [18.74852, 45.90272],
-        [18.73852, 45.90371],
-        [18.72265, 45.90788],
-        [18.71365, 45.91391],
-        [18.70883, 45.9183],
-        [18.70703, 45.92066],
-        [18.70502, 45.92093],
-        [18.69954, 45.92049],
-        [18.68869, 45.91895],
-        [18.67299, 45.91696],
-        [18.67027, 45.9149],
-        [18.66462, 45.91938],
-        [18.65729, 45.91935],
-        [18.65566, 45.91755],
-        [18.6552, 45.91536],
-        [18.65587, 45.90351],
-        [18.65801, 45.89963],
-        [18.65708, 45.89829],
-        [18.6521, 45.89812],
-        [18.64402, 45.89465],
-        [18.63628, 45.88972],
-        [18.6372, 45.88652],
-        [18.63829, 45.88288],
-        [18.64775, 45.87539],
-        [18.63904, 45.87186],
-        [18.6333, 45.87929],
-        [18.62736, 45.8792],
-        [18.62334, 45.87402],
-        [18.62229, 45.85938],
-        [18.60906, 45.85372],
-        [18.61392, 45.84696],
-        [18.61719, 45.84118],
-        [18.59617, 45.83576],
-        [18.59885, 45.82852],
-        [18.58704, 45.82129],
-        [18.56829, 45.8151],
-        [18.57021, 45.80425],
-        [18.55757, 45.80646],
-        [18.55539, 45.80442],
-        [18.55212, 45.79695],
-        [18.54861, 45.79683],
-        [18.54308, 45.79806],
-        [18.53756, 45.79567],
-        [18.53278, 45.79619],
-        [18.52893, 45.79561],
-        [18.51612, 45.78784],
-        [18.5095, 45.78854],
-        [18.50858, 45.7931],
-        [18.50314, 45.79736],
-        [18.49401, 45.79858],
-        [18.48413, 45.79491],
-        [18.48028, 45.78638],
-        [18.47743, 45.77003],
-        [18.46504, 45.76915],
-        [18.45742, 45.77248],
-        [18.44922, 45.77132],
-        [18.44051, 45.76033],
-        [18.44344, 45.75677],
-        [18.44336, 45.74187],
-        [18.43599, 45.7417],
-        [18.42728, 45.74479],
-        [18.41849, 45.74392],
-        [18.41036, 45.74222],
-        [18.403, 45.74766],
-        [18.40475, 45.75595],
-        [18.40057, 45.75952],
-        [18.39864, 45.75887],
-        [18.39521, 45.76466],
-        [18.38533, 45.76764],
-        [18.3803, 45.76781],
-        [18.36506, 45.77628],
-        [18.35987, 45.77511],
-        [18.35033, 45.76682],
-        [18.34028, 45.75291],
-        [18.33249, 45.75771],
-        [18.31491, 45.75952],
-        [18.30871, 45.75998],
-        [18.3, 45.76296],
-        [18.29531, 45.76372],
-        [18.29054, 45.76325],
-        [18.27706, 45.75852],
-        [18.25906, 45.76425],
-        [18.24993, 45.76547],
-        [18.24633, 45.76507],
-        [18.2362, 45.7792],
-        [18.22933, 45.78305],
-        [18.21652, 45.7837],
-        [18.2048, 45.78551],
-        [18.19576, 45.78977],
-        [18.18763, 45.79041],
-        [18.17826, 45.78767],
-        [18.17055, 45.77914],
-        [18.1631, 45.78183],
-        [18.15757, 45.78837],
-        [18.14501, 45.79175],
-        [18.13538, 45.79123],
-        [18.12374, 45.79257],
-        [18.1168, 45.79],
-        [18.10951, 45.78241],
-        [18.10507, 45.77435],
-        [18.09335, 45.76904],
-        [18.08054, 45.76834],
-        [18.06028, 45.77447],
-        [18.04763, 45.77762],
-        [18.03465, 45.77908],
-        [18.01983, 45.78422],
-        [18.00719, 45.79485],
-        [18.00359, 45.7973],
-        [17.98282, 45.79707],
-        [17.97369, 45.79269],
-        [17.96901, 45.79251],
-        [17.9598, 45.79461],
-        [17.95352, 45.7959],
-        [17.94556, 45.79485],
-        [17.93518, 45.79181],
-        [17.92873, 45.78948],
-        [17.9196, 45.7914],
-        [17.90763, 45.79537],
-        [17.89457, 45.79321],
-        [17.88276, 45.78755],
-        [17.86811, 45.77862],
-        [17.86526, 45.77067],
-        [17.85957, 45.77324],
-        [17.85831, 45.77762],
-        [17.85655, 45.78381],
-        [17.85262, 45.78702],
-        [17.84341, 45.78866],
-        [17.83713, 45.79339],
-        [17.83629, 45.80483],
-        [17.83202, 45.81131],
-        [17.82339, 45.81359],
-        [17.8146, 45.81172],
-        [17.81075, 45.80734],
-        [17.8043, 45.80833],
-        [17.79585, 45.81283],
-        [17.78756, 45.81971],
-        [17.77374, 45.82],
-        [17.76394, 45.81849],
-        [17.75473, 45.82438],
-        [17.74937, 45.83074],
-        [17.72744, 45.83477],
-        [17.7106, 45.83547],
-        [17.70081, 45.84072],
-        [17.68565, 45.84148],
-        [17.67025, 45.83833],
-        [17.66053, 45.84521],
-        [17.65316, 45.85507],
-        [17.65249, 45.86655],
-        [17.6401, 45.88701],
-        [17.62863, 45.90607],
-        [17.61306, 45.91586],
-        [17.59313, 45.92582],
-        [17.57404, 45.93991],
-        [17.55947, 45.9423],
-        [17.53301, 45.93793],
-        [17.51517, 45.94276],
-        [17.49198, 45.94556],
-        [17.46778, 45.94725],
-        [17.4594, 45.94905],
-        [17.44835, 45.95377],
-        [17.43638, 45.95377],
-        [17.42507, 45.95051],
-        [17.42156, 45.94498],
-        [17.42474, 45.93729],
-        [17.43219, 45.9324],
-        [17.42566, 45.93158],
-        [17.41704, 45.93403],
-        [17.41511, 45.9409],
-        [17.41117, 45.94306],
-        [17.40657, 45.94236],
-        [17.39426, 45.93514],
-        [17.39024, 45.93723],
-        [17.39351, 45.94428],
-        [17.39049, 45.9501],
-        [17.39317, 45.95522],
-        [17.39635, 45.96093],
-        [17.39694, 45.9643],
-        [17.38748, 45.96867],
-        [17.38162, 45.97146],
-        [17.37308, 45.97583],
-        [17.38053, 45.9838],
-        [17.37936, 45.99119],
-        [17.37366, 45.99398],
-        [17.36194, 45.99514],
-        [17.35825, 45.9927],
-        [17.35591, 45.98624],
-        [17.35532, 45.97792],
-        [17.35231, 45.97944],
-        [17.34829, 45.9863],
-        [17.34377, 45.99631],
-        [17.33816, 45.99951],
-        [17.32912, 45.99828],
-        [17.32267, 45.99439],
-        [17.3153, 45.99404],
-        [17.30843, 45.99154],
-        [17.31011, 45.99834],
-        [17.30902, 46.00335],
-        [17.30182, 46.00707],
-        [17.29612, 46.00643],
-        [17.28356, 46.00457],
-        [17.2767, 46.00759],
-        [17.27092, 46.01207],
-        [17.26272, 46.01265],
-        [17.2762, 46.01533],
-        [17.27795, 46.01771],
-        [17.29629, 46.02004],
-        [17.30173, 46.02643],
-        [17.29813, 46.03422],
-        [17.28817, 46.03556],
-        [17.26673, 46.03672],
-        [17.26255, 46.04282],
-        [17.27594, 46.05276],
-        [17.27561, 46.05758],
-        [17.26908, 46.06142],
-        [17.25434, 46.06183],
-        [17.25669, 46.06485],
-        [17.25526, 46.06764],
-        [17.24488, 46.06758],
-        [17.24429, 46.07071],
-        [17.24396, 46.07774],
-        [17.23785, 46.08181],
-        [17.22529, 46.08436],
-        [17.22813, 46.0904],
-        [17.23751, 46.09447],
-        [17.23885, 46.09946],
-        [17.23366, 46.10329],
-        [17.22194, 46.11398],
-        [17.21624, 46.11734],
-        [17.21005, 46.11699],
-        [17.18392, 46.11177],
-        [17.18643, 46.1199],
-        [17.18342, 46.12698],
-        [17.19062, 46.13092],
-        [17.19179, 46.13522],
-        [17.18375, 46.15227],
-        [17.17153, 46.16028],
-        [17.16366, 46.16167],
-        [17.16198, 46.17292],
-        [17.15294, 46.17617],
-        [17.1377, 46.17547],
-        [17.13084, 46.17234],
-        [17.12866, 46.17304],
-        [17.13017, 46.17918],
-        [17.1238, 46.18266],
-        [17.11208, 46.18185],
-        [17.10722, 46.18428],
-        [17.10705, 46.18857],
-        [17.09902, 46.1917],
-        [17.08646, 46.19344],
-        [17.08327, 46.19135],
-        [17.07808, 46.19286],
-        [17.0749, 46.19564],
-        [17.06921, 46.20492],
-        [17.05748, 46.20631],
-        [17.05363, 46.20631],
-        [17.00641, 46.22635],
-        [16.99569, 46.22612],
-        [16.98983, 46.22821],
-        [16.97844, 46.22821],
-        [16.97777, 46.2311],
-        [16.98012, 46.24049],
-        [16.97559, 46.24616],
-        [16.96638, 46.24547],
-        [16.96287, 46.24338],
-        [16.95399, 46.24442],
-        [16.94344, 46.25161],
-        [16.93858, 46.25774],
-        [16.92519, 46.26365],
-        [16.91732, 46.26434],
-        [16.91263, 46.26816],
-        [16.90509, 46.27789],
-        [16.89119, 46.28228],
-        [16.89119, 46.28633],
-        [16.89019, 46.30253],
-        [16.88365, 46.306],
-        [16.88047, 46.31364],
-        [16.88198, 46.32093],
-        [16.87897, 46.32544],
-        [16.88583, 46.33434],
-        [16.88148, 46.3407],
-        [16.87277, 46.34868],
-        [16.86959, 46.34775],
-        [16.87361, 46.35365],
-        [16.86808, 46.35769],
-        [16.86172, 46.35873],
-        [16.85234, 46.36451],
-        [16.84329, 46.36786],
-        [16.84329, 46.37399],
-        [16.83743, 46.37895],
-        [16.82873, 46.37768],
-        [16.82069, 46.37688],
-        [16.81231, 46.38011],
-        [16.80896, 46.3808],
-        [16.80444, 46.38739],
-        [16.79624, 46.39028],
-        [16.78502, 46.38947],
-        [16.77899, 46.38473],
-        [16.77296, 46.38877],
-        [16.76509, 46.38843],
-        [16.7609, 46.38566],
-        [16.75789, 46.39097],
-        [16.75052, 46.39224],
-        [16.74466, 46.38981],
-        [16.74466, 46.39848],
-        [16.74231, 46.40217],
-        [16.73511, 46.4046],
-        [16.7192, 46.40206],
-        [16.70966, 46.40541],
-        [16.69994, 46.42007],
-        [16.66846, 46.46184],
-        [16.64719, 46.46773],
-        [16.63262, 46.46934],
-        [16.62559, 46.47188],
-        [16.61939, 46.47165],
-        [16.60968, 46.47961],
-        [16.59578, 46.47995],
-        [16.58004, 46.47638],
-        [16.57032, 46.47695],
-        [16.55592, 46.4841],
-        [16.54437, 46.48076],
-        [16.53499, 46.48387],
-        [16.52243, 46.48295],
-        [16.52377, 46.49045],
-        [16.51992, 46.49517],
-        [16.50987, 46.49875],
-        [16.49815, 46.50001],
-        [16.49295, 46.5037],
-        [16.49228, 46.50981],
-        [16.48592, 46.51408],
-        [16.46867, 46.52237],
-        [16.46532, 46.52468],
-        [16.45929, 46.52422],
-        [16.45561, 46.52122],
-        [16.44338, 46.52018],
-        [16.4459, 46.52641],
-        [16.43786, 46.53274],
-        [16.43032, 46.53643],
-        [16.41826, 46.53597],
-        [16.41073, 46.53827],
-        [16.40353, 46.543],
-        [16.39817, 46.543],
-        [16.3913, 46.54012],
-        [16.38695, 46.5453],
-        [16.38092, 46.54461],
-        [16.37137, 46.53366],
-        [16.35161, 46.55198],
-        [16.34609, 46.55025],
-        [16.33369, 46.54622],
-        [16.33219, 46.54277],
-        [16.33604, 46.53297],
-        [16.32432, 46.5324],
-        [16.31393, 46.52952],
-        [16.3074, 46.52422],
-        [16.30204, 46.51661],
-        [16.29467, 46.51799],
-        [16.28965, 46.51938],
-        [16.28144, 46.51915],
-        [16.27558, 46.52122],
-        [16.26972, 46.52064],
-        [16.26553, 46.51707],
-        [16.27391, 46.51016],
-        [16.25917, 46.50428],
-        [16.26319, 46.49448],
-        [16.24326, 46.48837],
-        [16.2374, 46.48583],
-        [16.2364, 46.48318],
-        [16.24544, 46.47961],
-        [16.25197, 46.47026],
-        [16.25465, 46.46023],
-        [16.25917, 46.45377],
-        [16.25934, 46.44558],
-        [16.26336, 46.43415],
-        [16.26721, 46.42896],
-        [16.26955, 46.42122],
-        [16.26738, 46.41522],
-        [16.26989, 46.41129],
-        [16.28044, 46.41002],
-        [16.29132, 46.40425],
-        [16.30054, 46.39697],
-        [16.29869, 46.38762],
-        [16.29869, 46.38311],
-        [16.2997, 46.37942],
-        [16.30489, 46.3793],
-        [16.30898, 45.22981]
-      ],
-      [
-        [15.45776, 43.0729],
-        [15.43991, 43.09697],
-        [15.45639, 43.10499],
-        [16.30096, 43.2312],
-        [15.91713, 43.51022],
-        [15.8828, 43.53461],
-        [15.87353, 43.56225],
-        [15.86867, 43.56547],
-        [15.86851, 43.58153],
-        [15.87264, 43.58117],
-        [15.89619, 43.57691],
-        [15.91202, 43.57501],
-        [15.91561, 43.58212],
-        [15.90552, 43.59036],
-        [15.90545, 43.59499],
-        [15.91558, 43.60086],
-        [15.91328, 43.60843],
-        [16.12836, 43.60933],
-        [16.12499, 44.14937],
-        [16.3091, 44.14984],
-        [16.30916, 44.14974],
-        [16.31098, 44.1463],
-        [16.31266, 44.14387],
-        [16.31276, 44.14256],
-        [16.31157, 44.12793],
-        [16.31525, 44.12639],
-        [16.31598, 44.125],
-        [16.3168, 44.12172],
-        [16.32072, 44.11655],
-        [16.33606, 44.11467],
-        [16.3383, 44.11357],
-        [16.35283, 44.10791],
-        [16.36216, 44.10334],
-        [16.36388, 44.10159],
-        [16.36616, 44.09926],
-        [16.36664, 44.09827],
-        [16.36668, 44.09748],
-        [16.36514, 44.09516],
-        [16.37192, 44.08445],
-        [16.37753, 44.08405],
-        [16.37814, 44.08379],
-        [16.38276, 44.08597],
-        [16.38391, 44.08599],
-        [16.38536, 44.08569],
-        [16.38659, 44.08507],
-        [16.38961, 44.08289],
-        [16.39672, 44.08247],
-        [16.39834, 44.08239],
-        [16.40072, 44.08215],
-        [16.40256, 44.08211],
-        [16.42785, 44.0856],
-        [16.42923, 44.08519],
-        [16.4303, 44.08448],
-        [16.44441, 44.0688],
-        [16.44508, 44.06805],
-        [16.44565, 44.06696],
-        [16.44472, 44.06462],
-        [16.44389, 44.06191],
-        [16.43893, 44.05434],
-        [16.4396, 44.049],
-        [16.44177, 44.04244],
-        [16.44204, 44.03718],
-        [16.44144, 44.03546],
-        [16.43997, 44.03188],
-        [16.44156, 44.03107],
-        [16.44345, 44.0311],
-        [16.44897, 44.03042],
-        [16.45525, 44.03049],
-        [16.45923, 44.03076],
-        [16.46266, 44.03126],
-        [16.46731, 44.03221],
-        [16.46936, 44.03212],
-        [16.48295, 44.0317],
-        [16.50428, 44.02631],
-        [16.50539, 44.02518],
-        [16.5187, 44.00519],
-        [16.53769, 43.98917],
-        [16.53995, 43.98722],
-        [16.54742, 43.97499],
-        [16.54784, 43.97359],
-        [16.55289, 43.9553],
-        [16.58975, 43.94507],
-        [16.59094, 43.94383],
-        [16.59163, 43.94198],
-        [16.59304, 43.93928],
-        [16.60141, 43.93673],
-        [16.60252, 43.93566],
-        [16.6029, 43.93479],
-        [16.60614, 43.9266],
-        [16.61033, 43.92476],
-        [16.61114, 43.92396],
-        [16.61148, 43.92265],
-        [16.61232, 43.92],
-        [16.6123, 43.91601],
-        [16.61539, 43.91597],
-        [16.62603, 43.90769],
-        [16.62867, 43.90324],
-        [16.64786, 43.88983],
-        [16.64922, 43.88855],
-        [16.65117, 43.88764],
-        [16.65797, 43.88589],
-        [16.66067, 43.88414],
-        [16.66243, 43.88224],
-        [16.66266, 43.88149],
-        [16.66505, 43.87972],
-        [16.66869, 43.87984],
-        [16.67011, 43.87971],
-        [16.67173, 43.87885],
-        [16.67495, 43.87646],
-        [16.6753, 43.87581],
-        [16.68634, 43.86798],
-        [16.70704, 43.86016],
-        [16.70857, 43.85933],
-        [16.71315, 43.85609],
-        [16.7138, 43.85502],
-        [16.71809, 43.84742],
-        [16.71824, 43.8464],
-        [16.71843, 43.8444],
-        [16.72107, 43.84185],
-        [16.72161, 43.84086],
-        [16.72136, 43.83616],
-        [16.7236, 43.83248],
-        [16.72362, 43.83172],
-        [16.72335, 43.83075],
-        [16.72144, 43.8294],
-        [16.72347, 43.82627],
-        [16.72351, 43.82517],
-        [16.72268, 43.82325],
-        [16.72213, 43.82148],
-        [16.72148, 43.81899],
-        [16.72136, 43.81635],
-        [16.72215, 43.80778],
-        [16.72601, 43.8053],
-        [16.72799, 43.80221],
-        [16.72956, 43.80045],
-        [16.72977, 43.7994],
-        [16.72915, 43.79709],
-        [16.72868, 43.79633],
-        [16.7304, 43.79518],
-        [16.73067, 43.79396],
-        [16.7331, 43.79121],
-        [16.73685, 43.78775],
-        [16.74221, 43.78312],
-        [16.74761, 43.77845],
-        [16.7541, 43.77221],
-        [16.75707, 43.77269],
-        [16.76105, 43.77219],
-        [16.76113, 43.77177],
-        [16.76613, 43.7717],
-        [16.77987, 43.77006],
-        [16.80222, 43.76488],
-        [16.80474, 43.7634],
-        [16.81478, 43.75664],
-        [16.81822, 43.75048],
-        [16.81828, 43.74988],
-        [16.82743, 43.73415],
-        [16.83352, 43.73241],
-        [16.83664, 43.7307],
-        [16.85083, 43.72098],
-        [16.86975, 43.71255],
-        [16.87562, 43.70733],
-        [16.87926, 43.70099],
-        [16.87915, 43.69905],
-        [16.88031, 43.69583],
-        [16.88522, 43.69357],
-        [16.88617, 43.6923],
-        [16.88811, 43.68718],
-        [16.9022, 43.68081],
-        [16.91083, 43.67631],
-        [16.91177, 43.67521],
-        [16.91319, 43.67263],
-        [16.9151, 43.67026],
-        [16.91964, 43.66446],
-        [16.91987, 43.66365],
-        [16.9224, 43.66007],
-        [16.93025, 43.65648],
-        [16.93092, 43.65531],
-        [16.93161, 43.65321],
-        [16.9349, 43.64722],
-        [16.93502, 43.6448],
-        [16.96136, 43.6273],
-        [16.96701, 43.62375],
-        [16.97371, 43.61948],
-        [16.97438, 43.61853],
-        [16.98089, 43.60728],
-        [16.98424, 43.6034],
-        [16.98573, 43.60235],
-        [16.98596, 43.6015],
-        [16.98907, 43.59903],
-        [16.99, 43.59768],
-        [16.99288, 43.59344],
-        [16.99533, 43.59303],
-        [16.99672, 43.59205],
-        [16.99824, 43.59048],
-        [16.99849, 43.58974],
-        [17.00863, 43.58314],
-        [17.00982, 43.58233],
-        [17.01034, 43.58107],
-        [17.0107, 43.58011],
-        [17.01059, 43.5779],
-        [17.0165, 43.5733],
-        [17.02349, 43.56986],
-        [17.02745, 43.56859],
-        [17.0318, 43.5659],
-        [17.03477, 43.56426],
-        [17.03862, 43.56096],
-        [17.04442, 43.55911],
-        [17.05219, 43.5578],
-        [17.05378, 43.55721],
-        [17.05702, 43.55681],
-        [17.05702, 43.55466],
-        [17.06636, 43.55462],
-        [17.06808, 43.55331],
-        [17.06879, 43.55202],
-        [17.06852, 43.55117],
-        [17.07149, 43.54991],
-        [17.07346, 43.54927],
-        [17.07452, 43.54838],
-        [17.08097, 43.54524],
-        [17.08189, 43.54413],
-        [17.08518, 43.54105],
-        [17.08683, 43.53952],
-        [17.08861, 43.53847],
-        [17.09226, 43.5361],
-        [17.09602, 43.53387],
-        [17.09682, 43.53308],
-        [17.10538, 43.53055],
-        [17.10685, 43.52958],
-        [17.10814, 43.52757],
-        [17.10963, 43.5258],
-        [17.1252, 43.52018],
-        [17.12726, 43.51848],
-        [17.13247, 43.5127],
-        [17.13458, 43.51098],
-        [17.13502, 43.51009],
-        [17.13737, 43.50974],
-        [17.13969, 43.50972],
-        [17.14176, 43.50901],
-        [17.14208, 43.5086],
-        [17.14415, 43.50792],
-        [17.14524, 43.50711],
-        [17.14576, 43.5059],
-        [17.14771, 43.50368],
-        [17.15204, 43.49746],
-        [17.15583, 43.49647],
-        [17.16031, 43.49604],
-        [17.17436, 43.49275],
-        [17.17884, 43.4963],
-        [17.18005, 43.49774],
-        [17.18154, 43.4982],
-        [17.18405, 43.49902],
-        [17.18771, 43.49984],
-        [17.19003, 43.49967],
-        [17.19537, 43.49993],
-        [17.20701, 43.49982],
-        [17.2122, 43.49881],
-        [17.21509, 43.49966],
-        [17.21637, 43.49946],
-        [17.22093, 43.49976],
-        [17.22801, 43.49976],
-        [17.23196, 43.49837],
-        [17.23435, 43.4967],
-        [17.23701, 43.49603],
-        [17.23822, 43.49496],
-        [17.2404, 43.49427],
-        [17.24187, 43.49351],
-        [17.24561, 43.49263],
-        [17.24785, 43.49156],
-        [17.25275, 43.48933],
-        [17.25855, 43.4861],
-        [17.26052, 43.48547],
-        [17.26225, 43.48455],
-        [17.26728, 43.48271],
-        [17.26958, 43.48124],
-        [17.27243, 43.47973],
-        [17.27276, 43.47849],
-        [17.27632, 43.47642],
-        [17.27731, 43.47519],
-        [17.28139, 43.47296],
-        [17.28264, 43.47171],
-        [17.28532, 43.46933],
-        [17.28624, 43.46797],
-        [17.2866, 43.46536],
-        [17.28913, 43.46188],
-        [17.28899, 43.45998],
-        [17.28991, 43.45711],
-        [17.28926, 43.4541],
-        [17.28804, 43.45238],
-        [17.28972, 43.44916],
-        [17.28959, 43.44726],
-        [17.28865, 43.4458],
-        [17.28878, 43.44351],
-        [17.28788, 43.44156],
-        [17.28842, 43.43857],
-        [17.28733, 43.43422],
-        [17.28549, 43.43054],
-        [17.28216, 43.42595],
-        [17.27814, 43.42043],
-        [17.2745, 43.41634],
-        [17.27216, 43.413],
-        [17.26918, 43.41219],
-        [17.26382, 43.40792],
-        [17.26217, 43.40486],
-        [17.26075, 43.40301],
-        [17.25664, 43.40208],
-        [17.26104, 43.3989],
-        [17.26414, 43.39479],
-        [17.26516, 43.39138],
-        [17.26632, 43.386],
-        [17.26791, 43.37838],
-        [17.26885, 43.3732],
-        [17.27251, 43.36888],
-        [17.27391, 43.36757],
-        [17.27446, 43.3659],
-        [17.27438, 43.36444],
-        [17.27699, 43.36022],
-        [17.27712, 43.35861],
-        [17.27762, 43.35677],
-        [17.27756, 43.35555],
-        [17.27873, 43.35526],
-        [17.28313, 43.34764],
-        [17.29342, 43.33131],
-        [17.30111, 43.31927],
-        [17.30266, 43.31749],
-        [17.30441, 43.31584],
-        [17.30598, 43.31389],
-        [17.3095, 43.30684],
-        [17.31084, 43.30487],
-        [17.31178, 43.30308],
-        [17.31337, 43.30084],
-        [17.31383, 43.29974],
-        [17.31784, 43.296],
-        [17.32055, 43.29333],
-        [17.32438, 43.28912],
-        [17.32627, 43.28879],
-        [17.32901, 43.28795],
-        [17.33012, 43.2867],
-        [17.33138, 43.28491],
-        [17.33266, 43.28267],
-        [17.33254, 43.28088],
-        [17.3335, 43.27866],
-        [17.33408, 43.27704],
-        [17.33412, 43.2747],
-        [17.33478, 43.27417],
-        [17.33552, 43.27283],
-        [17.33602, 43.2714],
-        [17.33582, 43.27005],
-        [17.33559, 43.26978],
-        [17.33641, 43.26898],
-        [17.33653, 43.26762],
-        [17.33611, 43.26646],
-        [17.33564, 43.26588],
-        [17.3389, 43.26232],
-        [17.3407, 43.25991],
-        [17.341, 43.25936],
-        [17.34344, 43.25777],
-        [17.34447, 43.25629],
-        [17.34462, 43.25537],
-        [17.34752, 43.25508],
-        [17.35451, 43.25395],
-        [17.36082, 43.25189],
-        [17.36824, 43.25169],
-        [17.37011, 43.25216],
-        [17.37294, 43.25218],
-        [17.37646, 43.252],
-        [17.379, 43.25122],
-        [17.3817, 43.25009],
-        [17.38471, 43.25012],
-        [17.39222, 43.24854],
-        [17.39827, 43.24763],
-        [17.40078, 43.24631],
-        [17.40786, 43.24182],
-        [17.41663, 43.23641],
-        [17.42366, 43.23203],
-        [17.4234, 43.22816],
-        [17.42638, 43.22814],
-        [17.43036, 43.22016],
-        [17.43233, 43.21821],
-        [17.4327, 43.21716],
-        [17.43304, 43.21537],
-        [17.43274, 43.21455],
-        [17.43303, 43.21187],
-        [17.43455, 43.21052],
-        [17.43485, 43.20942],
-        [17.43455, 43.20771],
-        [17.43571, 43.20556],
-        [17.43552, 43.20439],
-        [17.43515, 43.20269],
-        [17.4345, 43.19824],
-        [17.43352, 43.19711],
-        [17.43303, 43.19456],
-        [17.43217, 43.19342],
-        [17.43154, 43.19119],
-        [17.43043, 43.18933],
-        [17.43053, 43.18794],
-        [17.43172, 43.18519],
-        [17.43346, 43.18123],
-        [17.43591, 43.18263],
-        [17.438, 43.18288],
-        [17.44028, 43.18232],
-        [17.44367, 43.18111],
-        [17.44761, 43.18015],
-        [17.45085, 43.17971],
-        [17.45279, 43.17889],
-        [17.4534, 43.17815],
-        [17.45524, 43.17755],
-        [17.45715, 43.17643],
-        [17.45855, 43.1755],
-        [17.45945, 43.17458],
-        [17.46034, 43.17377],
-        [17.46214, 43.17318],
-        [17.46327, 43.17248],
-        [17.46514, 43.17164],
-        [17.46668, 43.17045],
-        [17.46946, 43.16877],
-        [17.47561, 43.16536],
-        [17.47604, 43.16418],
-        [17.47869, 43.1628],
-        [17.48447, 43.16096],
-        [17.48814, 43.16012],
-        [17.49152, 43.15872],
-        [17.49323, 43.15725],
-        [17.49458, 43.15644],
-        [17.49585, 43.15634],
-        [17.49633, 43.15603],
-        [17.50096, 43.15453],
-        [17.50323, 43.15328],
-        [17.5041, 43.15307],
-        [17.5075, 43.15153],
-        [17.50916, 43.1501],
-        [17.51062, 43.14917],
-        [17.51568, 43.14763],
-        [17.52138, 43.1462],
-        [17.528, 43.14377],
-        [17.53268, 43.14149],
-        [17.53599, 43.1394],
-        [17.54105, 43.13789],
-        [17.54608, 43.13624],
-        [17.54735, 43.1356],
-        [17.54932, 43.13385],
-        [17.5514, 43.13349],
-        [17.55324, 43.13339],
-        [17.55662, 43.1323],
-        [17.55868, 43.13126],
-        [17.56014, 43.13017],
-        [17.56376, 43.12737],
-        [17.56486, 43.12661],
-        [17.5672, 43.12577],
-        [17.56843, 43.12491],
-        [17.5703, 43.12428],
-        [17.57361, 43.12358],
-        [17.57736, 43.12229],
-        [17.5818, 43.12095],
-        [17.58489, 43.11943],
-        [17.58694, 43.11874],
-        [17.58996, 43.11716],
-        [17.59436, 43.11478],
-        [17.59802, 43.1129],
-        [17.60069, 43.11105],
-        [17.60222, 43.11094],
-        [17.60363, 43.11035],
-        [17.60494, 43.10942],
-        [17.60589, 43.1083],
-        [17.61323, 43.1047],
-        [17.62194, 43.10018],
-        [17.62776, 43.09777],
-        [17.629, 43.09757],
-        [17.63049, 43.09706],
-        [17.63221, 43.09613],
-        [17.63334, 43.09557],
-        [17.63715, 43.09477],
-        [17.63904, 43.09354],
-        [17.64095, 43.09229],
-        [17.64304, 43.09121],
-        [17.64429, 43.09027],
-        [17.64522, 43.08805],
-        [17.65012, 43.07925],
-        [17.65267, 43.07481],
-        [17.65291, 43.07368],
-        [17.65295, 43.07287],
-        [17.65387, 43.07064],
-        [17.65413, 43.07026],
-        [17.65533, 43.06911],
-        [17.65625, 43.06685],
-        [17.65718, 43.06482],
-        [17.65969, 43.06062],
-        [17.66288, 43.05543],
-        [17.66398, 43.05285],
-        [17.66521, 43.05078],
-        [17.66695, 43.04723],
-        [17.669, 43.04299],
-        [17.67219, 43.0381],
-        [17.67612, 43.03219],
-        [17.67831, 43.02874],
-        [17.67986, 43.0277],
-        [17.68069, 43.02618],
-        [17.68167, 43.0252],
-        [17.68268, 43.02425],
-        [17.68431, 43.02197],
-        [17.68636, 43.02069],
-        [17.68689, 43.01954],
-        [17.68763, 43.01635],
-        [17.68846, 43.01132],
-        [17.69535, 43.00363],
-        [17.69763, 43.00099],
-        [17.69817, 42.99964],
-        [17.70499, 42.98764],
-        [17.70556, 42.98527],
-        [17.70669, 42.98351],
-        [17.7085, 42.98023],
-        [17.71408, 42.97496],
-        [17.71384, 42.9707],
-        [17.70105, 42.96614],
-        [17.68885, 42.9633],
-        [17.68698, 42.96293],
-        [17.68241, 42.96273],
-        [17.67891, 42.96188],
-        [17.67431, 42.96167],
-        [17.67178, 42.96069],
-        [17.67, 42.95984],
-        [17.66802, 42.95943],
-        [17.66662, 42.95952],
-        [17.66291, 42.9585],
-        [17.66149, 42.95834],
-        [17.66003, 42.95843],
-        [17.65517, 42.95706],
-        [17.65359, 42.95674],
-        [17.65131, 42.95563],
-        [17.64944, 42.95519],
-        [17.64297, 42.95113],
-        [17.64175, 42.95083],
-        [17.63991, 42.95074],
-        [17.63492, 42.94772],
-        [17.63317, 42.94633],
-        [17.63199, 42.9452],
-        [17.62938, 42.94451],
-        [17.62762, 42.94357],
-        [17.62611, 42.9432],
-        [17.62282, 42.94183],
-        [17.62121, 42.94083],
-        [17.61881, 42.94012],
-        [17.61537, 42.93951],
-        [17.60937, 42.93868],
-        [17.60543, 42.93831],
-        [17.6032, 42.93825],
-        [17.60213, 42.93792],
-        [17.59293, 42.93768],
-        [17.58964, 42.93703],
-        [17.58596, 42.93632],
-        [17.58424, 42.93625],
-        [17.58165, 42.93547],
-        [17.58002, 42.93553],
-        [17.57649, 42.93745],
-        [17.57444, 42.9389],
-        [17.56628, 42.93853],
-        [17.56426, 42.93879],
-        [17.56195, 42.93632],
-        [17.55993, 42.93579],
-        [17.55714, 42.93584],
-        [17.55358, 42.9384],
-        [17.54924, 42.93892],
-        [17.54776, 42.93718],
-        [17.54426, 42.93619],
-        [17.54064, 42.93645],
-        [17.53969, 42.93831],
-        [17.53589, 42.93792],
-        [17.5331, 42.93936],
-        [17.52978, 42.9424],
-        [17.52028, 42.92815],
-        [17.52748, 42.92702],
-        [17.53375, 42.92469],
-        [17.54671, 42.91709],
-        [17.548, 42.91583],
-        [17.55298, 42.91602],
-        [17.56242, 42.91338],
-        [17.56697, 42.91111],
-        [17.57452, 42.90822],
-        [17.58096, 42.90634],
-        [17.58714, 42.90407],
-        [17.59512, 42.90112],
-        [17.60087, 42.89785],
-        [17.60774, 42.89873],
-        [17.61263, 42.89772],
-        [17.62113, 42.89213],
-        [17.62671, 42.8871],
-        [17.63263, 42.88269],
-        [17.63752, 42.88137],
-        [17.64361, 42.88081],
-        [17.6467, 42.88452],
-        [17.64542, 42.88942],
-        [17.66215, 42.90753],
-        [17.6643, 42.91162],
-        [17.67305, 42.92048],
-        [17.67683, 42.92325],
-        [17.68764, 42.92563],
-        [17.70404, 42.92431],
-        [17.72558, 42.92174],
-        [17.75631, 42.91476],
-        [17.76858, 42.90992],
-        [17.7879, 42.89439],
-        [17.79974, 42.91174],
-        [17.80532, 42.91742],
-        [17.80648, 42.91838],
-        [17.81313, 42.91834],
-        [17.8145, 42.91781],
-        [17.81646, 42.91693],
-        [17.82294, 42.9144],
-        [17.83115, 42.91166],
-        [17.84137, 42.90642],
-        [17.84605, 42.90453],
-        [17.84684, 42.90398],
-        [17.84753, 42.90304],
-        [17.85276, 42.89772],
-        [17.85497, 42.89507],
-        [17.85905, 42.88991],
-        [17.85883, 42.88178],
-        [17.86074, 42.88175],
-        [17.8592, 42.87944],
-        [17.85757, 42.8779],
-        [17.8578, 42.87662],
-        [17.85961, 42.86939],
-        [17.86077, 42.86793],
-        [17.86188, 42.8654],
-        [17.86257, 42.86362],
-        [17.86613, 42.85892],
-        [17.86645, 42.85802],
-        [17.86733, 42.85673],
-        [17.87057, 42.85152],
-        [17.87315, 42.84772],
-        [17.87643, 42.84496],
-        [17.878, 42.84334],
-        [17.88046, 42.83977],
-        [17.88551, 42.8398],
-        [17.88933, 42.83823],
-        [17.89355, 42.83672],
-        [17.90126, 42.83463],
-        [17.90231, 42.83418],
-        [17.90334, 42.8331],
-        [17.90351, 42.8322],
-        [17.90241, 42.82987],
-        [17.90113, 42.82794],
-        [17.90003, 42.82717],
-        [17.8989, 42.82512],
-        [17.89754, 42.82419],
-        [17.89478, 42.82156],
-        [17.8933, 42.82071],
-        [17.89081, 42.815],
-        [17.89327, 42.81196],
-        [17.90171, 42.81198],
-        [17.90911, 42.8131],
-        [17.91046, 42.81308],
-        [17.91166, 42.81273],
-        [17.91362, 42.81155],
-        [17.91613, 42.81011],
-        [17.94119, 42.80308],
-        [17.95164, 42.8011],
-        [17.95338, 42.79982],
-        [17.96005, 42.7946],
-        [17.962, 42.79191],
-        [17.96683, 42.78819],
-        [17.96825, 42.78757],
-        [17.96921, 42.78682],
-        [17.96966, 42.78627],
-        [17.97529, 42.78378],
-        [17.97704, 42.78202],
-        [17.98146, 42.78038],
-        [17.98501, 42.78065],
-        [17.99464, 42.77921],
-        [17.99837, 42.77783],
-        [17.99975, 42.77641],
-        [17.99979, 42.77518],
-        [17.99975, 42.7739],
-        [18.00007, 42.77231],
-        [18.00018, 42.76573],
-        [18.00168, 42.76442],
-        [18.00219, 42.76363],
-        [18.00515, 42.75962],
-        [18.00663, 42.75855],
-        [18.01058, 42.75648],
-        [18.01161, 42.75539],
-        [18.0123, 42.75465],
-        [18.02601, 42.75448],
-        [18.02882, 42.75358],
-        [18.03268, 42.75248],
-        [18.03451, 42.75242],
-        [18.03698, 42.7518],
-        [18.04343, 42.75042],
-        [18.04496, 42.74908],
-        [18.05144, 42.74422],
-        [18.05339, 42.74396],
-        [18.05616, 42.74279],
-        [18.0588, 42.74176],
-        [18.06393, 42.73857],
-        [18.06562, 42.73715],
-        [18.06755, 42.7354],
-        [18.07105, 42.73316],
-        [18.07609, 42.7296],
-        [18.07667, 42.7287],
-        [18.07663, 42.72749],
-        [18.07691, 42.7266],
-        [18.07903, 42.72698],
-        [18.08019, 42.72679],
-        [18.08159, 42.72632],
-        [18.08416, 42.72504],
-        [18.0927, 42.72184],
-        [18.10032, 42.71919],
-        [18.10392, 42.71713],
-        [18.10843, 42.71355],
-        [18.10933, 42.71193],
-        [18.11045, 42.70962],
-        [18.11141, 42.70663],
-        [18.11131, 42.7027],
-        [18.11036, 42.70155],
-        [18.1107, 42.69967],
-        [18.11049, 42.69906],
-        [18.10873, 42.69663],
-        [18.10813, 42.69359],
-        [18.10592, 42.68963],
-        [18.1059, 42.68878],
-        [18.10976, 42.68843],
-        [18.1115, 42.68857],
-        [18.11246, 42.68857],
-        [18.11442, 42.68876],
-        [18.11626, 42.68833],
-        [18.11746, 42.68747],
-        [18.11948, 42.68633],
-        [18.12422, 42.68545],
-        [18.12667, 42.68494],
-        [18.12851, 42.68472],
-        [18.13373, 42.68444],
-        [18.13527, 42.68384],
-        [18.13813, 42.68226],
-        [18.14085, 42.68261],
-        [18.14253, 42.68248],
-        [18.14596, 42.68086],
-        [18.14686, 42.67969],
-        [18.14772, 42.67676],
-        [18.14931, 42.67204],
-        [18.15328, 42.66798],
-        [18.15613, 42.66443],
-        [18.15772, 42.66199],
-        [18.15828, 42.65994],
-        [18.15819, 42.65896],
-        [18.16598, 42.66117],
-        [18.17158, 42.66197],
-        [18.17261, 42.66182],
-        [18.17396, 42.66295],
-        [18.17501, 42.66333],
-        [18.17606, 42.66339],
-        [18.17913, 42.66322],
-        [18.18087, 42.66254],
-        [18.18338, 42.66011],
-        [18.18589, 42.65781],
-        [18.18772, 42.65804],
-        [18.19093, 42.65757],
-        [18.19327, 42.65669],
-        [18.1948, 42.65524],
-        [18.19497, 42.65473],
-        [18.19673, 42.65381],
-        [18.19782, 42.65206],
-        [18.19862, 42.6508],
-        [18.20424, 42.64569],
-        [18.20761, 42.64051],
-        [18.21389, 42.63647],
-        [18.21563, 42.63405],
-        [18.21844, 42.63086],
-        [18.22147, 42.62796],
-        [18.22422, 42.62502],
-        [18.22887, 42.62202],
-        [18.23381, 42.62163],
-        [18.23632, 42.62041],
-        [18.23728, 42.61894],
-        [18.23733, 42.61801],
-        [18.23911, 42.6185],
-        [18.24241, 42.61822],
-        [18.24368, 42.61763],
-        [18.24522, 42.61563],
-        [18.24619, 42.61395],
-        [18.2466, 42.61106],
-        [18.24679, 42.60541],
-        [18.24911, 42.60547],
-        [18.25844, 42.60781],
-        [18.26273, 42.60892],
-        [18.26477, 42.61117],
-        [18.27044, 42.61342],
-        [18.27312, 42.61307],
-        [18.2744, 42.61517],
-        [18.28073, 42.61969],
-        [18.28168, 42.61995],
-        [18.28503, 42.61967],
-        [18.28861, 42.61945],
-        [18.29249, 42.61817],
-        [18.31086, 42.61733],
-        [18.3235, 42.61934],
-        [18.33193, 42.62142],
-        [18.34811, 42.6216],
-        [18.36845, 42.61827],
-        [18.37062, 42.61669],
-        [18.37631, 42.60993],
-        [18.3824, 42.60094],
-        [18.38596, 42.59811],
-        [18.39259, 42.59094],
-        [18.40075, 42.58794],
-        [18.40066, 42.586],
-        [18.40545, 42.58592],
-        [18.41875, 42.57781],
-        [18.43351, 42.56805],
-        [18.43729, 42.56658],
-        [18.43954, 42.56497],
-        [18.44008, 42.5637],
-        [18.44096, 42.5567],
-        [18.44343, 42.55112],
-        [18.44341, 42.54918],
-        [18.44244, 42.53503],
-        [18.44201, 42.52551],
-        [18.44072, 42.52124],
-        [18.44021, 42.52064],
-        [18.446, 42.5169],
-        [18.45055, 42.51001],
-        [18.44931, 42.50814],
-        [18.44407, 42.50121],
-        [18.44394, 42.49871],
-        [18.44321, 42.49754],
-        [18.4433, 42.4959],
-        [18.44223, 42.49397],
-        [18.44171, 42.49318],
-        [18.44115, 42.49026],
-        [18.44175, 42.48786],
-        [18.44102, 42.48631],
-        [18.43987, 42.48498],
-        [18.44613, 42.48264],
-        [18.45077, 42.47909],
-        [18.45274, 42.4765],
-        [18.456, 42.47482],
-        [18.45815, 42.47529],
-        [18.46102, 42.47444],
-        [18.46634, 42.47203],
-        [18.47647, 42.46665],
-        [18.4787, 42.46409],
-        [18.48239, 42.45883],
-        [18.48673, 42.45316],
-        [18.49119, 42.45006],
-        [18.49437, 42.4474],
-        [18.49621, 42.44357],
-        [18.5069, 42.43435],
-        [18.48793, 42.4169],
-        [18.48287, 42.41931],
-        [18.47862, 42.42371],
-        [18.47561, 42.42659],
-        [18.47261, 42.42935],
-        [18.47124, 42.43261],
-        [18.46591, 42.43701],
-        [18.46385, 42.43961],
-        [18.45969, 42.4424],
-        [18.44974, 42.44683],
-        [18.44562, 42.44309],
-        [18.4306, 42.43708],
-        [18.42236, 42.44081],
-        [18.42253, 42.44582],
-        [18.40219, 42.45741],
-        [18.40716, 42.46456],
-        [18.37051, 42.48292],
-        [18.35026, 42.49159],
-        [18.30503, 42.5133],
-        [18.26941, 42.52582],
-        [18.26348, 42.53474],
-        [18.24091, 42.54979],
-        [18.22254, 42.56181],
-        [18.21945, 42.56775],
-        [18.19851, 42.56648],
-        [18.18718, 42.57255],
-        [18.18443, 42.57887],
-        [18.16795, 42.58532],
-        [18.16915, 42.5905],
-        [18.19868, 42.59998],
-        [18.21327, 42.59833],
-        [18.21568, 42.60453],
-        [18.2016, 42.61501],
-        [18.18237, 42.60983],
-        [18.16401, 42.61476],
-        [18.14461, 42.62524],
-        [18.13379, 42.62676],
-        [18.1307, 42.61792],
-        [18.12178, 42.61678],
-        [18.10822, 42.62171],
-        [18.10444, 42.6351],
-        [18.03989, 42.64873],
-        [17.94891, 42.64128],
-        [17.06039, 42.69152],
-        [16.34491, 42.37123],
-        [16.22612, 42.3834],
-        [16.39023, 42.73995],
-        [15.45776, 43.0729]
-      ]
-    ],
-    "terms_url": "https://dgu.gov.hr/",
-    "terms_text": "Sadrži podatke Državne geodetske uprave",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"
-  },
-  {
-    "id": "dgu-dof-2018",
-    "name": "dgu.hr: Croatia 2018 Aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [16.29963, 46.3815],
-        [16.30495, 46.38151],
-        [16.30862, 45.22967],
-        [16.49996, 45.22994],
-        [16.49997, 45.20987],
-        [16.49689, 45.20907],
-        [16.49491, 45.20698],
-        [16.49417, 45.20094],
-        [16.49086, 45.19326],
-        [16.48662, 45.1876],
-        [16.47863, 45.18198],
-        [16.47765, 45.18004],
-        [16.4782, 45.17638],
-        [16.48211, 45.1696],
-        [16.4831, 45.16561],
-        [16.48159, 45.15965],
-        [16.47876, 45.15632],
-        [16.47142, 45.14842],
-        [16.46679, 45.14146],
-        [16.46448, 45.13997],
-        [16.46184, 45.13997],
-        [16.46186, 45.13855],
-        [16.45391, 45.13501],
-        [16.45031, 45.13174],
-        [16.44722, 45.13101],
-        [16.44499, 45.12871],
-        [16.44087, 45.12514],
-        [16.43486, 45.12272],
-        [16.42988, 45.12175],
-        [16.42383, 45.1219],
-        [16.4237, 45.12057],
-        [16.41417, 45.11902],
-        [16.40499, 45.11581],
-        [16.39821, 45.11157],
-        [16.39752, 45.10909],
-        [16.39675, 45.1063],
-        [16.39744, 45.10509],
-        [16.40636, 45.0997],
-        [16.40645, 45.09831],
-        [16.40585, 45.09661],
-        [16.40233, 45.09449],
-        [16.39958, 45.09255],
-        [16.39915, 45.08807],
-        [16.39641, 45.08485],
-        [16.39057, 45.08037],
-        [16.3898, 45.0771],
-        [16.39152, 45.07207],
-        [16.39134, 45.06613],
-        [16.38817, 45.06067],
-        [16.38757, 45.05236],
-        [16.38165, 45.04794],
-        [16.37718, 45.04842],
-        [16.37315, 45.0426],
-        [16.3686, 45.03969],
-        [16.36362, 45.03508],
-        [16.3613, 45.03023],
-        [16.36311, 45.02392],
-        [16.36122, 45.01706],
-        [16.36268, 45.01172],
-        [16.35984, 45.00693],
-        [16.3583, 45.00232],
-        [16.35504, 44.99959],
-        [16.34706, 44.99704],
-        [16.3304, 44.99691],
-        [16.3062, 44.9957],
-        [16.28569, 44.9923],
-        [16.28191, 44.99588],
-        [16.27573, 45.00001],
-        [16.2541, 45.00608],
-        [16.22423, 45.01567],
-        [16.21599, 45.02088],
-        [16.17582, 45.03205],
-        [16.16707, 45.05861],
-        [16.16192, 45.07231],
-        [16.14407, 45.08007],
-        [16.10407, 45.08891],
-        [16.08175, 45.10321],
-        [16.08021, 45.12308],
-        [16.06441, 45.14427],
-        [16.04622, 45.16074],
-        [16.04158, 45.17562],
-        [16.01326, 45.17683],
-        [16.00914, 45.18458],
-        [16.02064, 45.19631],
-        [16.01395, 45.20418],
-        [16.00794, 45.213],
-        [15.99318, 45.21651],
-        [15.97876, 45.2257],
-        [15.97395, 45.22316],
-        [15.96605, 45.21736],
-        [15.9561, 45.21445],
-        [15.94429, 45.2106],
-        [15.91799, 45.21049],
-        [15.91619, 45.21291],
-        [15.92176, 45.22222],
-        [15.91837, 45.22313],
-        [15.90816, 45.22098],
-        [15.90099, 45.22244],
-        [15.89653, 45.21288],
-        [15.88537, 45.21276],
-        [15.85396, 45.21397],
-        [15.84108, 45.21869],
-        [15.83645, 45.21615],
-        [15.83611, 45.20986],
-        [15.82804, 45.20345],
-        [15.81842, 45.20248],
-        [15.80658, 45.1968],
-        [15.79216, 45.18784],
-        [15.77896, 45.1736],
-        [15.77476, 45.17354],
-        [15.77482, 45.17128],
-        [15.77087, 45.16404],
-        [15.77349, 45.1522],
-        [15.78109, 45.14609],
-        [15.7871, 45.13525],
-        [15.78564, 45.12889],
-        [15.79482, 45.12108],
-        [15.79516, 45.11278],
-        [15.78486, 45.10321],
-        [15.78341, 45.09297],
-        [15.77534, 45.09164],
-        [15.77785, 45.08373],
-        [15.77597, 45.08369],
-        [15.776, 45.08188],
-        [15.77439, 45.08001],
-        [15.77534, 45.07382],
-        [15.75122, 45.06121],
-        [15.75929, 45.05309],
-        [15.76032, 45.04691],
-        [15.77165, 45.02161],
-        [15.77654, 45.01075],
-        [15.78186, 45.0096],
-        [15.78701, 45.00456],
-        [15.79001, 44.99352],
-        [15.78572, 44.98271],
-        [15.78847, 44.97482],
-        [15.7871, 44.96984],
-        [15.781, 44.96504],
-        [15.77371, 44.96583],
-        [15.77182, 44.96765],
-        [15.75336, 44.96619],
-        [15.75113, 44.95836],
-        [15.75371, 44.95083],
-        [15.75113, 44.94488],
-        [15.74281, 44.93655],
-        [15.76487, 44.88762],
-        [15.76401, 44.87071],
-        [15.79834, 44.84699],
-        [15.79628, 44.84419],
-        [15.76143, 44.82617],
-        [15.73551, 44.82288],
-        [15.7477, 44.80863],
-        [15.74547, 44.80121],
-        [15.75972, 44.78829],
-        [15.76744, 44.77794],
-        [15.77465, 44.77196],
-        [15.77568, 44.76758],
-        [15.78289, 44.75844],
-        [15.7877, 44.75051],
-        [15.81242, 44.74332],
-        [15.81911, 44.73686],
-        [15.82615, 44.72649],
-        [15.8325, 44.72393],
-        [15.84726, 44.7393],
-        [15.85894, 44.74003],
-        [15.87147, 44.73613],
-        [15.87696, 44.73564],
-        [15.88005, 44.74698],
-        [15.89481, 44.75271],
-        [15.90631, 44.74978],
-        [15.93292, 44.71734],
-        [15.95884, 44.71466],
-        [15.96502, 44.70807],
-        [15.96605, 44.69624],
-        [15.97206, 44.68525],
-        [15.9767, 44.6772],
-        [15.99215, 44.66902],
-        [16.0251, 44.66023],
-        [16.0397, 44.654],
-        [16.0445, 44.64081],
-        [16.04828, 44.63251],
-        [16.05823, 44.62811],
-        [16.06167, 44.622],
-        [16.0651, 44.60538],
-        [16.0548, 44.60122],
-        [16.05617, 44.59291],
-        [16.04176, 44.58387],
-        [16.02562, 44.58313],
-        [16.02493, 44.57506],
-        [16.0294, 44.56185],
-        [16.05926, 44.54253],
-        [16.10287, 44.53567],
-        [16.12724, 44.51585],
-        [16.13377, 44.49871],
-        [16.1475, 44.48132],
-        [16.14269, 44.45829],
-        [16.15059, 44.44432],
-        [16.14716, 44.43648],
-        [16.14819, 44.42716],
-        [16.15711, 44.42593],
-        [16.17187, 44.41318],
-        [16.17977, 44.4019],
-        [16.16398, 44.39135],
-        [16.14578, 44.38816],
-        [16.13651, 44.38816],
-        [16.13754, 44.38031],
-        [16.15643, 44.38399],
-        [16.17634, 44.37639],
-        [16.20998, 44.36191],
-        [16.22406, 44.3489],
-        [16.22406, 44.33809],
-        [16.2038, 44.3236],
-        [16.19556, 44.30592],
-        [16.19797, 44.272],
-        [16.2244, 44.24422],
-        [16.22852, 44.22355],
-        [16.2347, 44.20633],
-        [16.23713, 44.20428],
-        [16.23721, 44.20365],
-        [16.23912, 44.20362],
-        [16.27178, 44.17753],
-        [16.29719, 44.163],
-        [16.30577, 44.15084],
-        [16.30509, 44.14984],
-        [16.12495, 44.1494],
-        [16.12815, 43.60943],
-        [15.92174, 43.60849],
-        [15.52195, 43.61231],
-        [14.78331, 44.11942],
-        [14.28198, 44.49521],
-        [13.88603, 44.75271],
-        [13.82578, 44.82532],
-        [13.81273, 44.84467],
-        [13.80363, 44.85648],
-        [13.78029, 44.86633],
-        [13.76638, 44.87777],
-        [13.73428, 44.88604],
-        [13.72673, 44.90471],
-        [13.72647, 44.90823],
-        [13.71858, 44.90817],
-        [13.70853, 44.9134],
-        [13.70544, 44.92835],
-        [13.70905, 44.94646],
-        [13.72398, 44.94888],
-        [13.74596, 44.94366],
-        [13.76862, 44.94342],
-        [13.76673, 44.96128],
-        [13.74956, 44.98156],
-        [13.72261, 44.98289],
-        [13.69926, 44.98714],
-        [13.69017, 44.99661],
-        [13.68347, 45.00984],
-        [13.68334, 45.01524],
-        [13.6745, 45.01506],
-        [13.64605, 45.03605],
-        [13.60777, 45.03763],
-        [13.60451, 45.08431],
-        [13.60193, 45.12296],
-        [13.57035, 45.13967],
-        [13.56262, 45.20309],
-        [13.56571, 45.27271],
-        [13.55421, 45.3116],
-        [13.55397, 45.31264],
-        [13.55372, 45.31784],
-        [13.54998, 45.31787],
-        [13.52898, 45.32753],
-        [13.52383, 45.39773],
-        [13.51044, 45.4146],
-        [13.50975, 45.42779],
-        [13.50357, 45.44261],
-        [13.50872, 45.44279],
-        [13.5076, 45.46073],
-        [13.5052, 45.46085],
-        [13.48331, 45.48595],
-        [13.48555, 45.496],
-        [13.49894, 45.50731],
-        [13.51439, 45.51032],
-        [13.5443, 45.4977],
-        [13.56091, 45.49377],
-        [13.58344, 45.48213],
-        [13.58341, 45.48066],
-        [13.58734, 45.48071],
-        [13.62264, 45.46586],
-        [13.62274, 45.46366],
-        [13.63102, 45.46387],
-        [13.64511, 45.46236],
-        [13.65952, 45.45616],
-        [13.66785, 45.45194],
-        [13.67463, 45.44773],
-        [13.68073, 45.44797],
-        [13.68596, 45.4511],
-        [13.69643, 45.45802],
-        [13.70399, 45.46013],
-        [13.71042, 45.46013],
-        [13.71317, 45.45688],
-        [13.71969, 45.45869],
-        [13.72184, 45.46133],
-        [13.72699, 45.46278],
-        [13.74175, 45.46453],
-        [13.75248, 45.46362],
-        [13.76432, 45.47054],
-        [13.77308, 45.46934],
-        [13.77602, 45.46747],
-        [13.78933, 45.46771],
-        [13.80501, 45.46386],
-        [13.81119, 45.4586],
-        [13.81187, 45.45483],
-        [13.80913, 45.45047],
-        [13.80969, 45.44577],
-        [13.81865, 45.4421],
-        [13.819, 45.43779],
-        [13.83243, 45.43803],
-        [13.84217, 45.43677],
-        [13.85427, 45.43439],
-        [13.85827, 45.42999],
-        [13.86286, 45.4305],
-        [13.88238, 45.429],
-        [13.8859, 45.43439],
-        [13.89204, 45.44297],
-        [13.90762, 45.45432],
-        [13.91371, 45.45664],
-        [13.94096, 45.45718],
-        [13.94573, 45.45938],
-        [13.9595, 45.45844],
-        [13.9701, 45.45233],
-        [13.98027, 45.45832],
-        [13.98186, 45.47094],
-        [13.98663, 45.47319],
-        [13.99019, 45.47328],
-        [13.98087, 45.48255],
-        [13.98281, 45.48451],
-        [13.97113, 45.49161],
-        [13.96633, 45.49335],
-        [13.96186, 45.49444],
-        [13.95822, 45.5071],
-        [13.96337, 45.5105],
-        [13.96688, 45.51465],
-        [13.97414, 45.51768],
-        [13.97804, 45.51738],
-        [13.9816, 45.51654],
-        [13.98396, 45.51432],
-        [13.98937, 45.51185],
-        [13.99542, 45.51104],
-        [13.99336, 45.51483],
-        [13.99435, 45.51756],
-        [13.99804, 45.52147],
-        [14.00195, 45.52298],
-        [14.01465, 45.52213],
-        [14.03173, 45.51173],
-        [14.04495, 45.50078],
-        [14.04941, 45.50117],
-        [14.05375, 45.50006],
-        [14.07602, 45.48728],
-        [14.09147, 45.48502],
-        [14.10915, 45.48586],
-        [14.1267, 45.48135],
-        [14.14189, 45.47795],
-        [14.14872, 45.48306],
-        [14.15481, 45.48385],
-        [14.17172, 45.48258],
-        [14.18854, 45.47864],
-        [14.20335, 45.47325],
-        [14.20288, 45.483],
-        [14.21043, 45.49459],
-        [14.217, 45.49654],
-        [14.22047, 45.50397],
-        [14.23137, 45.50845],
-        [14.24884, 45.50803],
-        [14.26656, 45.48715],
-        [14.27695, 45.49305],
-        [14.28914, 45.49296],
-        [14.29467, 45.48676],
-        [14.30622, 45.48345],
-        [14.31733, 45.48607],
-        [14.31982, 45.4846],
-        [14.32179, 45.4827],
-        [14.32381, 45.47413],
-        [14.33656, 45.48195],
-        [14.34862, 45.48791],
-        [14.35282, 45.48857],
-        [14.36578, 45.48821],
-        [14.3869, 45.49693],
-        [14.39243, 45.4975],
-        [14.39462, 45.50553],
-        [14.41007, 45.5099],
-        [14.4138, 45.51251],
-        [14.42913, 45.51215],
-        [14.43346, 45.51353],
-        [14.43998, 45.51931],
-        [14.45299, 45.52283],
-        [14.47341, 45.53756],
-        [14.48749, 45.54141],
-        [14.49376, 45.54991],
-        [14.49238, 45.56596],
-        [14.49577, 45.58008],
-        [14.50058, 45.58455],
-        [14.50178, 45.58852],
-        [14.49311, 45.59638],
-        [14.49324, 45.60041],
-        [14.4953, 45.60824],
-        [14.49998, 45.6084],
-        [14.49993, 45.61037],
-        [14.50305, 45.61087],
-        [14.5112, 45.61024],
-        [14.51311, 45.6103],
-        [14.51569, 45.61242],
-        [14.52614, 45.61357],
-        [14.53247, 45.61654],
-        [14.54144, 45.62448],
-        [14.54242, 45.62709],
-        [14.54453, 45.62895],
-        [14.54779, 45.63655],
-        [14.56186, 45.65401],
-        [14.56487, 45.6756],
-        [14.56821, 45.67686],
-        [14.57954, 45.67464],
-        [14.58418, 45.66912],
-        [14.59748, 45.67254],
-        [14.61164, 45.66673],
-        [14.61345, 45.65737],
-        [14.61027, 45.65065],
-        [14.60522, 45.62774],
-        [14.62551, 45.61817],
-        [14.63212, 45.61512],
-        [14.63507, 45.60761],
-        [14.64061, 45.60736],
-        [14.6471, 45.60249],
-        [14.65359, 45.59515],
-        [14.6544, 45.59372],
-        [14.65441, 45.59304],
-        [14.66074, 45.59309],
-        [14.67618, 45.59236],
-        [14.68164, 45.59083],
-        [14.68697, 45.58689],
-        [14.6881, 45.5847],
-        [14.69134, 45.58365],
-        [14.69391, 45.58134],
-        [14.69629, 45.57799],
-        [14.70107, 45.56974],
-        [14.70367, 45.56282],
-        [14.70119, 45.55836],
-        [14.69821, 45.55431],
-        [14.6947, 45.55291],
-        [14.69452, 45.54617],
-        [14.69276, 45.54485],
-        [14.69175, 45.54122],
-        [14.69211, 45.53837],
-        [14.68957, 45.53456],
-        [14.69169, 45.53064],
-        [14.69859, 45.52874],
-        [14.69724, 45.53345],
-        [14.69989, 45.53651],
-        [14.70526, 45.53816],
-        [14.72508, 45.53642],
-        [14.73145, 45.53258],
-        [14.73729, 45.53237],
-        [14.74024, 45.5301],
-        [14.74343, 45.52568],
-        [14.75239, 45.52068],
-        [14.76183, 45.51444],
-        [14.76891, 45.51502],
-        [14.77298, 45.51369],
-        [14.77363, 45.51026],
-        [14.7882, 45.50911],
-        [14.79239, 45.50555],
-        [14.79516, 45.50609],
-        [14.79864, 45.50514],
-        [14.80766, 45.49592],
-        [14.80725, 45.49385],
-        [14.80389, 45.4912],
-        [14.80796, 45.48889],
-        [14.80949, 45.48475],
-        [14.80996, 45.47995],
-        [14.82011, 45.47205],
-        [14.82058, 45.46316],
-        [14.83309, 45.46353],
-        [14.84553, 45.46519],
-        [14.86034, 45.46974],
-        [14.86689, 45.46895],
-        [14.87249, 45.47437],
-        [14.87904, 45.4752],
-        [14.88895, 45.47917],
-        [14.90252, 45.47822],
-        [14.90782, 45.4814],
-        [14.90776, 45.48314],
-        [14.90664, 45.48736],
-        [14.90735, 45.4922],
-        [14.91083, 45.49401],
-        [14.90718, 45.49848],
-        [14.90859, 45.50377],
-        [14.91184, 45.50514],
-        [14.90894, 45.51097],
-        [14.9093, 45.51593],
-        [14.91001, 45.52055],
-        [14.9162, 45.52444],
-        [14.91667, 45.52845],
-        [14.92157, 45.53097],
-        [14.93136, 45.53217],
-        [14.93561, 45.53072],
-        [14.94953, 45.52378],
-        [14.97395, 45.51006],
-        [14.98516, 45.50063],
-        [14.99253, 45.49927],
-        [15.00798, 45.50055],
-        [15.0143, 45.5003],
-        [15.01872, 45.49811],
-        [15.03046, 45.48897],
-        [15.04119, 45.49067],
-        [15.04639, 45.49654],
-        [15.057, 45.49707],
-        [15.06078, 45.49352],
-        [15.06255, 45.49033],
-        [15.07258, 45.49062],
-        [15.0793, 45.48541],
-        [15.08738, 45.48583],
-        [15.09116, 45.48368],
-        [15.09181, 45.47995],
-        [15.08809, 45.47689],
-        [15.0888, 45.46924],
-        [15.09558, 45.46622],
-        [15.10443, 45.46618],
-        [15.11499, 45.45819],
-        [15.12679, 45.44959],
-        [15.14018, 45.44719],
-        [15.14525, 45.44164],
-        [15.15085, 45.43249],
-        [15.15846, 45.42765],
-        [15.16778, 45.42529],
-        [15.17427, 45.42633],
-        [15.17775, 45.42479],
-        [15.18566, 45.42951],
-        [15.18453, 45.43552],
-        [15.18772, 45.43759],
-        [15.19142, 45.43844],
-        [15.19617, 45.4385],
-        [15.19971, 45.43634],
-        [15.2043, 45.4303],
-        [15.2073, 45.42827],
-        [15.22158, 45.42864],
-        [15.22412, 45.43067],
-        [15.22417, 45.43742],
-        [15.22972, 45.44363],
-        [15.23562, 45.45042],
-        [15.24152, 45.45633],
-        [15.25385, 45.46101],
-        [15.26429, 45.46469],
-        [15.26912, 45.46833],
-        [15.2749, 45.46903],
-        [15.27968, 45.46845],
-        [15.29767, 45.46241],
-        [15.32298, 45.45819],
-        [15.32782, 45.45555],
-        [15.33832, 45.46006],
-        [15.3438, 45.45993],
-        [15.34575, 45.46585],
-        [15.34976, 45.46949],
-        [15.35548, 45.47822],
-        [15.36156, 45.48157],
-        [15.37766, 45.48781],
-        [15.37459, 45.48996],
-        [15.36881, 45.49261],
-        [15.36144, 45.49186],
-        [15.35707, 45.49472],
-        [15.34622, 45.50154],
-        [15.33082, 45.50724],
-        [15.32298, 45.51402],
-        [15.32227, 45.51824],
-        [15.31484, 45.51915],
-        [15.31177, 45.52105],
-        [15.30941, 45.52576],
-        [15.30938, 45.52971],
-        [15.30487, 45.52969],
-        [15.29879, 45.53386],
-        [15.29661, 45.53841],
-        [15.29691, 45.5425],
-        [15.29431, 45.54807],
-        [15.29372, 45.56947],
-        [15.29396, 45.58243],
-        [15.27414, 45.59903],
-        [15.27225, 45.6053],
-        [15.28122, 45.61198],
-        [15.29372, 45.61578],
-        [15.30233, 45.61603],
-        [15.29738, 45.62139],
-        [15.2975, 45.63162],
-        [15.30363, 45.63575],
-        [15.33112, 45.63806],
-        [15.34044, 45.63682],
-        [15.34669, 45.63806],
-        [15.34103, 45.63888],
-        [15.33702, 45.64309],
-        [15.33702, 45.6468],
-        [15.34292, 45.64903],
-        [15.3553, 45.6501],
-        [15.37335, 45.64845],
-        [15.37831, 45.64408],
-        [15.38657, 45.64292],
-        [15.38916, 45.64086],
-        [15.39836, 45.64787],
-        [15.39176, 45.65183],
-        [15.38904, 45.65604],
-        [15.3881, 45.659],
-        [15.38338, 45.66667],
-        [15.37276, 45.67566],
-        [15.37005, 45.67912],
-        [15.36734, 45.68233],
-        [15.36639, 45.67516],
-        [15.352, 45.66585],
-        [15.34575, 45.66692],
-        [15.34327, 45.67129],
-        [15.34598, 45.6858],
-        [15.35778, 45.69124],
-        [15.35896, 45.69321],
-        [15.35212, 45.69791],
-        [15.35424, 45.7101],
-        [15.34315, 45.7087],
-        [15.33808, 45.70195],
-        [15.329, 45.69445],
-        [15.32392, 45.69404],
-        [15.33136, 45.67368],
-        [15.32451, 45.67005],
-        [15.31413, 45.67211],
-        [15.31071, 45.67714],
-        [15.30387, 45.6844],
-        [15.29938, 45.6825],
-        [15.28287, 45.69041],
-        [15.28263, 45.70409],
-        [15.28004, 45.70483],
-        [15.27296, 45.70112],
-        [15.27308, 45.69297],
-        [15.26859, 45.69132],
-        [15.26437, 45.69142],
-        [15.25461, 45.69799],
-        [15.25213, 45.70458],
-        [15.25042, 45.70792],
-        [15.24647, 45.71076],
-        [15.24724, 45.71377],
-        [15.24541, 45.71525],
-        [15.24087, 45.71579],
-        [15.2401, 45.71772],
-        [15.23532, 45.719],
-        [15.23367, 45.72238],
-        [15.23656, 45.72608],
-        [15.25379, 45.73028],
-        [15.25904, 45.72921],
-        [15.2703, 45.73807],
-        [15.27042, 45.74132],
-        [15.27933, 45.74696],
-        [15.29059, 45.74963],
-        [15.29278, 45.75428],
-        [15.29903, 45.7577],
-        [15.30723, 45.7584],
-        [15.31643, 45.76297],
-        [15.3228, 45.76309],
-        [15.32982, 45.76597],
-        [15.3533, 45.77655],
-        [15.36197, 45.77959],
-        [15.36775, 45.77963],
-        [15.3725, 45.78229],
-        [15.37772, 45.78234],
-        [15.3804, 45.78186],
-        [15.38204, 45.78291],
-        [15.38291, 45.7856],
-        [15.39323, 45.79224],
-        [15.39851, 45.79415],
-        [15.40482, 45.79528],
-        [15.41276, 45.79759],
-        [15.4168, 45.7975],
-        [15.42025, 45.79874],
-        [15.44906, 45.79833],
-        [15.46384, 45.79761],
-        [15.47062, 45.79902],
-        [15.46703, 45.80238],
-        [15.4662, 45.81097],
-        [15.4626, 45.81716],
-        [15.46272, 45.82041],
-        [15.4662, 45.82215],
-        [15.47278, 45.82067],
-        [15.47455, 45.82141],
-        [15.47387, 45.82458],
-        [15.47602, 45.82937],
-        [15.48071, 45.83111],
-        [15.49316, 45.83504],
-        [15.49738, 45.83374],
-        [15.49897, 45.83202],
-        [15.50569, 45.83101],
-        [15.50729, 45.8291],
-        [15.50661, 45.82499],
-        [15.51015, 45.82458],
-        [15.5131, 45.82577],
-        [15.51914, 45.82501],
-        [15.52513, 45.82641],
-        [15.53144, 45.83115],
-        [15.5315, 45.83329],
-        [15.53536, 45.83666],
-        [15.53445, 45.84085],
-        [15.53438, 45.84594],
-        [15.53477, 45.8477],
-        [15.5364, 45.85015],
-        [15.53989, 45.85055],
-        [15.54429, 45.84863],
-        [15.55131, 45.84846],
-        [15.55369, 45.84675],
-        [15.55563, 45.84103],
-        [15.55871, 45.83936],
-        [15.55824, 45.84189],
-        [15.5599, 45.8459],
-        [15.56453, 45.8489],
-        [15.56666, 45.85054],
-        [15.56722, 45.85191],
-        [15.56902, 45.85535],
-        [15.57099, 45.85595],
-        [15.57316, 45.85585],
-        [15.57674, 45.85445],
-        [15.58208, 45.8507],
-        [15.58645, 45.84938],
-        [15.59155, 45.84904],
-        [15.5936, 45.84878],
-        [15.59706, 45.84726],
-        [15.60159, 45.84556],
-        [15.6061, 45.84455],
-        [15.61125, 45.84251],
-        [15.61172, 45.84169],
-        [15.61175, 45.8384],
-        [15.61794, 45.83844],
-        [15.62135, 45.83665],
-        [15.62662, 45.83504],
-        [15.6301, 45.83508],
-        [15.6328, 45.8345],
-        [15.63617, 45.83193],
-        [15.63715, 45.8304],
-        [15.63749, 45.82716],
-        [15.63986, 45.82649],
-        [15.64191, 45.82462],
-        [15.64389, 45.82588],
-        [15.64679, 45.83072],
-        [15.64819, 45.83258],
-        [15.65461, 45.83693],
-        [15.65905, 45.83958],
-        [15.66213, 45.84285],
-        [15.66478, 45.84397],
-        [15.66841, 45.84418],
-        [15.67124, 45.84315],
-        [15.67615, 45.84369],
-        [15.67829, 45.84494],
-        [15.68003, 45.84534],
-        [15.68771, 45.84555],
-        [15.69097, 45.84555],
-        [15.69081, 45.84835],
-        [15.69212, 45.84996],
-        [15.69403, 45.85136],
-        [15.69633, 45.85186],
-        [15.69817, 45.85137],
-        [15.69404, 45.8549],
-        [15.68885, 45.85909],
-        [15.68248, 45.86067],
-        [15.67953, 45.86276],
-        [15.67553, 45.86715],
-        [15.67431, 45.86884],
-        [15.67484, 45.87033],
-        [15.67659, 45.87161],
-        [15.67733, 45.87335],
-        [15.67618, 45.87521],
-        [15.67599, 45.87739],
-        [15.6773, 45.87991],
-        [15.67782, 45.88346],
-        [15.67984, 45.88498],
-        [15.68217, 45.88501],
-        [15.67997, 45.8865],
-        [15.67935, 45.88766],
-        [15.6767, 45.88933],
-        [15.67639, 45.89149],
-        [15.67723, 45.89276],
-        [15.67885, 45.89367],
-        [15.67887, 45.8942],
-        [15.67718, 45.89569],
-        [15.67698, 45.89707],
-        [15.67789, 45.89907],
-        [15.67649, 45.90062],
-        [15.67639, 45.90182],
-        [15.67547, 45.90472],
-        [15.6763, 45.90599],
-        [15.67991, 45.90833],
-        [15.68067, 45.9085],
-        [15.68251, 45.91063],
-        [15.68561, 45.91093],
-        [15.68793, 45.91095],
-        [15.68787, 45.91501],
-        [15.68927, 45.91582],
-        [15.69103, 45.9161],
-        [15.69245, 45.91687],
-        [15.69442, 45.9174],
-        [15.69554, 45.91715],
-        [15.69563, 45.91873],
-        [15.69681, 45.92187],
-        [15.7023, 45.92368],
-        [15.70256, 45.92448],
-        [15.70003, 45.92579],
-        [15.69988, 45.92749],
-        [15.70156, 45.92934],
-        [15.70171, 45.93176],
-        [15.7041, 45.93322],
-        [15.70463, 45.93664],
-        [15.70401, 45.93896],
-        [15.70548, 45.94101],
-        [15.70531, 45.94214],
-        [15.70501, 45.94349],
-        [15.70525, 45.94534],
-        [15.70404, 45.94866],
-        [15.70534, 45.95092],
-        [15.70563, 45.95752],
-        [15.70575, 45.96322],
-        [15.69991, 45.98064],
-        [15.69625, 45.98753],
-        [15.69643, 45.99138],
-        [15.69779, 45.99196],
-        [15.69619, 45.994],
-        [15.69584, 45.99749],
-        [15.6982, 46.00261],
-        [15.70327, 46.00413],
-        [15.70817, 46.00667],
-        [15.7074, 46.00974],
-        [15.70663, 46.01093],
-        [15.70374, 46.01162],
-        [15.70233, 46.01339],
-        [15.70209, 46.01601],
-        [15.70292, 46.01818],
-        [15.70793, 46.02027],
-        [15.70947, 46.02232],
-        [15.70947, 46.02498],
-        [15.71247, 46.03038],
-        [15.71194, 46.03599],
-        [15.71584, 46.04017],
-        [15.71902, 46.04083],
-        [15.71991, 46.04345],
-        [15.72315, 46.04492],
-        [15.72545, 46.04492],
-        [15.72026, 46.04635],
-        [15.7189, 46.04844],
-        [15.7189, 46.04992],
-        [15.71265, 46.05536],
-        [15.70274, 46.05675],
-        [15.68923, 46.06003],
-        [15.68103, 46.06428],
-        [15.67354, 46.06772],
-        [15.66812, 46.06903],
-        [15.66015, 46.06719],
-        [15.65596, 46.06903],
-        [15.65343, 46.07112],
-        [15.65213, 46.07496],
-        [15.65408, 46.07852],
-        [15.64594, 46.08053],
-        [15.64417, 46.08213],
-        [15.63726, 46.07996],
-        [15.63054, 46.08057],
-        [15.62323, 46.08368],
-        [15.61497, 46.08994],
-        [15.61432, 46.09235],
-        [15.61556, 46.09423],
-        [15.61886, 46.09522],
-        [15.61951, 46.09677],
-        [15.61373, 46.09653],
-        [15.6106, 46.09845],
-        [15.60748, 46.10508],
-        [15.60743, 46.10826],
-        [15.60466, 46.10824],
-        [15.6009, 46.1108],
-        [15.60143, 46.11691],
-        [15.60352, 46.12515],
-        [15.60677, 46.13378],
-        [15.60069, 46.13729],
-        [15.5922, 46.14346],
-        [15.59179, 46.14731],
-        [15.5945, 46.15025],
-        [15.60181, 46.15303],
-        [15.60789, 46.15495],
-        [15.6073, 46.15666],
-        [15.59928, 46.15907],
-        [15.59963, 46.1632],
-        [15.60317, 46.1659],
-        [15.60411, 46.1688],
-        [15.61432, 46.1746],
-        [15.62305, 46.17615],
-        [15.62671, 46.17872],
-        [15.63284, 46.18252],
-        [15.63178, 46.18599],
-        [15.63349, 46.18791],
-        [15.64192, 46.19008],
-        [15.6444, 46.19281],
-        [15.64251, 46.19967],
-        [15.64263, 46.20351],
-        [15.63833, 46.20478],
-        [15.63709, 46.20743],
-        [15.63844, 46.21388],
-        [15.64198, 46.2158],
-        [15.64329, 46.21654],
-        [15.64456, 46.21655],
-        [15.64451, 46.21888],
-        [15.64602, 46.21958],
-        [15.64847, 46.21976],
-        [15.65007, 46.22006],
-        [15.65216, 46.22133],
-        [15.65511, 46.22198],
-        [15.65664, 46.22198],
-        [15.66065, 46.22327],
-        [15.66505, 46.22522],
-        [15.66756, 46.22561],
-        [15.67045, 46.22835],
-        [15.67652, 46.22955],
-        [15.68242, 46.22937],
-        [15.68587, 46.22845],
-        [15.68917, 46.22678],
-        [15.69602, 46.22614],
-        [15.70286, 46.225],
-        [15.70846, 46.22578],
-        [15.71359, 46.22578],
-        [15.71787, 46.22496],
-        [15.72642, 46.2259],
-        [15.73032, 46.22504],
-        [15.73229, 46.2238],
-        [15.73321, 46.222],
-        [15.74094, 46.22431],
-        [15.74742, 46.2238],
-        [15.75185, 46.22261],
-        [15.75592, 46.2221],
-        [15.75798, 46.22027],
-        [15.75916, 46.21765],
-        [15.75792, 46.21445],
-        [15.75497, 46.21186],
-        [15.75601, 46.21035],
-        [15.75778, 46.2098],
-        [15.76893, 46.21269],
-        [15.77774, 46.21586],
-        [15.7832, 46.21908],
-        [15.78556, 46.22143],
-        [15.78491, 46.22365],
-        [15.78957, 46.22906],
-        [15.78925, 46.23608],
-        [15.79181, 46.23891],
-        [15.79529, 46.24004],
-        [15.79694, 46.24269],
-        [15.79223, 46.25019],
-        [15.78916, 46.25376],
-        [15.78742, 46.2588],
-        [15.78813, 46.26088],
-        [15.79102, 46.2621],
-        [15.79715, 46.26272],
-        [15.80205, 46.263],
-        [15.81013, 46.26465],
-        [15.81974, 46.26461],
-        [15.82313, 46.26416],
-        [15.82974, 46.26549],
-        [15.83874, 46.26855],
-        [15.84753, 46.26877],
-        [15.85219, 46.26902],
-        [15.86154, 46.27034],
-        [15.86384, 46.27207],
-        [15.86392, 46.27348],
-        [15.86221, 46.27554],
-        [15.86336, 46.27735],
-        [15.86652, 46.27874],
-        [15.8703, 46.2811],
-        [15.87487, 46.28251],
-        [15.87755, 46.2832],
-        [15.88327, 46.28261],
-        [15.89486, 46.28614],
-        [15.89537, 46.28936],
-        [15.89668, 46.29014],
-        [15.91594, 46.29024],
-        [15.91596, 46.29077],
-        [15.91918, 46.28974],
-        [15.92608, 46.29051],
-        [15.92855, 46.29127],
-        [15.93006, 46.29121],
-        [15.93211, 46.29242],
-        [15.93459, 46.29274],
-        [15.93863, 46.2925],
-        [15.94279, 46.29335],
-        [15.94636, 46.29647],
-        [15.95326, 46.29747],
-        [15.95595, 46.29896],
-        [15.96043, 46.29937],
-        [15.96264, 46.3004],
-        [15.96668, 46.30778],
-        [15.9727, 46.31224],
-        [15.97386, 46.31387],
-        [15.97615, 46.31511],
-        [15.97807, 46.31491],
-        [15.9847, 46.31391],
-        [15.98618, 46.31693],
-        [15.98913, 46.31725],
-        [15.99284, 46.31713],
-        [16.00352, 46.31114],
-        [16.01013, 46.3131],
-        [16.01284, 46.3133],
-        [16.0165, 46.31522],
-        [16.01709, 46.31636],
-        [16.01614, 46.31852],
-        [16.01361, 46.32063],
-        [16.01408, 46.32292],
-        [16.02222, 46.3285],
-        [16.02405, 46.33265],
-        [16.02812, 46.33546],
-        [16.03525, 46.33998],
-        [16.03962, 46.34051],
-        [16.04546, 46.34006],
-        [16.04758, 46.33868],
-        [16.05189, 46.33795],
-        [16.05484, 46.34104],
-        [16.05879, 46.3441],
-        [16.06357, 46.34499],
-        [16.07131, 46.3449],
-        [16.0713, 46.34703],
-        [16.07116, 46.36293],
-        [16.0691, 46.3629],
-        [16.06271, 46.36942],
-        [16.05136, 46.37687],
-        [16.04534, 46.38216],
-        [16.0467, 46.38488],
-        [16.05625, 46.39644],
-        [16.08799, 46.39139],
-        [16.13842, 46.40811],
-        [16.1501, 46.40762],
-        [16.15883, 46.40457],
-        [16.17045, 46.3957],
-        [16.17765, 46.392],
-        [16.17818, 46.38838],
-        [16.17989, 46.38822],
-        [16.18679, 46.39066],
-        [16.19181, 46.38907],
-        [16.1947, 46.38728],
-        [16.19405, 46.38224],
-        [16.20266, 46.38378],
-        [16.20827, 46.38732],
-        [16.21788, 46.38793],
-        [16.22042, 46.38598],
-        [16.22484, 46.39005],
-        [16.23204, 46.3905],
-        [16.23888, 46.38769],
-        [16.24106, 46.38236],
-        [16.24985, 46.38289],
-        [16.26507, 46.37886],
-        [16.27191, 46.3813],
-        [16.29863, 46.38102],
-        [16.29963, 46.3815]
-      ]
-    ],
-    "terms_url": "https://dgu.gov.hr/",
-    "terms_text": "Sadrži podatke Državne geodetske uprave",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"
-  },
-  {
-    "id": "dgu-hok",
-    "name": "dgu.hr: HOK",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2009-01-01T00:00:00.000Z",
-    "startDate": "1954-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://dgu.gov.hr/",
-    "terms_text": "Sadrži podatke Državne geodetske uprave",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"
-  },
-  {
-    "id": "dgu-topo-25",
-    "name": "dgu.hr: Topo 25",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "1996-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://dgu.gov.hr/",
-    "terms_text": "Sadrži podatke Državne geodetske uprave",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"
-  },
-  {
-    "id": "dgu-topo-25-new",
-    "name": "dgu.hr: Topo 25 new",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://dgu.gov.hr/",
-    "terms_text": "Sadrži podatke Državne geodetske uprave",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"
-  },
-  {
-    "id": "drone-imagery-2016",
-    "name": "Drone Imagery Matthew(Haiti) October 2016",
-    "type": "tms",
-    "template": "https://imagery.openstreetmap.fr/tms/1.0.0/haiti_uav_201610/{zoom}/{x}/{y}",
-    "endDate": "2016-10-01T00:00:00.000Z",
-    "startDate": "2016-10-01T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "Erlangen-2011",
-    "name": "Erlangen Luftbild (2011 5,0 cm)",
-    "type": "wms",
-    "template": "https://secure.erlangen.de/arcgiser/services/Luftbilder2011/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Erlangen_ratio10_5cm_gk4.jp2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [10.92791, 49.53196],
-        [10.97194, 49.52969],
-        [10.97821, 49.53568],
-        [10.99934, 49.53589],
-        [11.03214, 49.53089],
-        [11.04425, 49.54317],
-        [11.03842, 49.55239],
-        [11.03663, 49.57167],
-        [11.04029, 49.58572],
-        [11.07287, 49.58587],
-        [11.07243, 49.63486],
-        [11.0054, 49.6344],
-        [11.00397, 49.62599],
-        [10.9748, 49.62541],
-        [10.94293, 49.64563],
-        [10.92532, 49.64876],
-        [10.91002, 49.63793],
-        [10.92235, 49.60463],
-        [10.91949, 49.57823],
-        [10.91135, 49.57095],
-        [10.91256, 49.5606],
-        [10.92907, 49.55674],
-        [10.92791, 49.53196]
-      ]
-    ],
-    "terms_text": "© Stadt Erlangen | © Aerowest GmbH"
-  },
-  {
-    "id": "Erlangen-2013",
-    "name": "Erlangen Luftbild (2013 6,25 cm)",
-    "type": "wms",
-    "template": "https://secure.erlangen.de/arcgiser/services/Luftbilder2013/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Erlangen_ratio5_6.25cm.jp2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [10.92791, 49.53196],
-        [10.9726, 49.52939],
-        [10.97909, 49.53475],
-        [10.99934, 49.53589],
-        [11.03214, 49.53089],
-        [11.04425, 49.54317],
-        [11.03842, 49.55239],
-        [11.03743, 49.57873],
-        [11.0568, 49.592],
-        [11.05748, 49.61358],
-        [11.04681, 49.61447],
-        [11.04788, 49.6187],
-        [11.00308, 49.62367],
-        [10.98107, 49.62339],
-        [10.98069, 49.62617],
-        [10.96737, 49.62781],
-        [10.96539, 49.63415],
-        [10.94293, 49.64563],
-        [10.92532, 49.64876],
-        [10.91002, 49.63793],
-        [10.92235, 49.60463],
-        [10.91949, 49.57823],
-        [10.91135, 49.57095],
-        [10.91256, 49.5606],
-        [10.92907, 49.55674],
-        [10.92791, 49.53196]
-      ]
-    ],
-    "terms_text": "© Stadt Erlangen | © Aerowest GmbH"
-  },
-  {
-    "id": "Erlangen-2016",
-    "name": "Erlangen Luftbild (2016 5,0 cm)",
-    "type": "tms",
-    "template": "https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2016/{zoom}/{x}/{y}.jpg",
-    "endDate": "2016-03-18T00:00:00.000Z",
-    "startDate": "2016-03-18T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© Stadt Erlangen | © GEOCART GmbH"
-  },
-  {
-    "id": "Erlangen-2018",
-    "name": "Erlangen Luftbild (2018 5,0 cm)",
-    "type": "tms",
-    "template": "https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2018/{zoom}/{x}/{y}.jpg",
-    "endDate": "2018-04-09T00:00:00.000Z",
-    "startDate": "2018-04-09T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© Stadt Erlangen | © Hansa Luftbild AG",
-    "best": true
-  },
-  {
-    "id": "EsriWorldImagery",
-    "name": "Esri World Imagery",
-    "type": "tms",
-    "template": "https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}",
-    "zoomExtent": [0, 22],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Esri",
-    "terms_text": "Terms & Feedback",
-    "default": true,
-    "description": "Esri world imagery.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png"
-  },
-  {
-    "id": "EsriWorldImageryClarity",
-    "name": "Esri World Imagery (Clarity) Beta",
-    "type": "tms",
-    "template": "https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}",
-    "zoomExtent": [0, 22],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Esri",
-    "terms_text": "Terms & Feedback",
-    "default": true,
-    "description": "Esri archive imagery that may be clearer and more accurate than the default layer.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png"
-  },
-  {
-    "id": "maaamet.ee-pohi_vr2",
-    "name": "Estonia Basemap (Maaamet)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Maa-Ameti põhikaart"
-  },
-  {
-    "id": "Maaamet-Estonia_Cadastre",
-    "name": "Estonia Cadastre (Maaamet)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Maa-Ameti katastrikaart ortofoto alusel"
-  },
-  {
-    "id": "maaamet.ee-cir_ngr",
-    "name": "Estonia Forestry (Maaamet)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Maa-Ameti metsanduslik ortofoto"
-  },
-  {
-    "id": "maaamet.ee-reljeef",
-    "name": "Estonia Hillshading (Maaamet)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Maa-Ameti reljeefikaart"
-  },
-  {
-    "id": "maaamet.ee-orto",
-    "name": "Estonia Ortho (Maaamet)",
-    "type": "tms",
-    "template": "https://tiles.maaamet.ee/tm/tms/1.0.0/foto@GMC/{zoom}/{x}/{-y}.png",
-    "zoomExtent": [6, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Maa-Ameti ortofoto"
-  },
-  {
-    "id": "estrela_de_alagoas",
-    "name": "Estrela de Alagoas",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-36.71382, -9.43476],
-        [-36.71477, -9.34443],
-        [-36.80586, -9.34498],
-        [-36.80525, -9.43542],
-        [-36.71382, -9.43476]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "eufar-balaton",
-    "name": "EUFAR Balaton orthophotos",
-    "type": "tms",
-    "template": "http://e.tile.openstreetmap.hu/balaton/0/{zoom}/{x}/{y}.jpg",
-    "endDate": "2010-08-31T00:00:00.000Z",
-    "startDate": "2010-08-01T00:00:00.000Z",
-    "zoomExtent": [12, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://www.bli.okologia.mta.hu/",
-    "terms_text": "EUFAR Balaton ortofotó 2010",
-    "best": true,
-    "description": "1940 geo-tagged photography from Balaton Limnological Institute."
-  },
-  {
-    "id": "Fiez-2013",
-    "name": "Fiez Orthophoto 2013",
-    "type": "tms",
-    "template": "https://osmdata.asitvd.ch/tiles/fiez2013/{zoom}/{x}/{y}.png",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [14, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://osmdata.asitvd.ch/",
-    "terms_text": "Fiez - Orthophoto technique 2013"
-  },
-  {
-    "id": "fiskeridir-akvakultur",
-    "name": "Fiskeridirektoratet Aquaculture overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [3, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.fiskeridir.no/Kart",
-    "terms_text": "© Fiskeridirektoratet",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "FOMI_2005",
-    "name": "FÖMI orthophoto 2005",
-    "type": "tms",
-    "template": "http://e.tile.openstreetmap.hu/ortofoto2005/{zoom}/{x}/{y}.jpg",
-    "endDate": "2005-01-01T00:00:00.000Z",
-    "startDate": "2005-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 17],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.fomi.hu",
-    "terms_text": "Földmérési és Távérzékelési Intézet"
-  },
-  {
-    "id": "Freemap.sk-Car",
-    "name": "Freemap.sk Car",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.freemap.sk/A/{zoom}/{x}/{y}.jpeg",
-    "zoomExtent": [8, 16],
-    "polygon": [
-      [
-        [19.83682, 49.25529],
-        [19.80075, 49.42385],
-        [19.60437, 49.48058],
-        [19.49179, 49.63961],
-        [19.21831, 49.52604],
-        [19.16778, 49.42521],
-        [19.00308, 49.42236],
-        [18.97611, 49.5308],
-        [18.54685, 49.51425],
-        [18.31432, 49.33818],
-        [18.15913, 49.2961],
-        [18.05564, 49.11134],
-        [17.56396, 48.84938],
-        [17.17929, 48.88816],
-        [17.058, 48.81105],
-        [16.90426, 48.61947],
-        [16.79685, 48.38561],
-        [17.06762, 48.01116],
-        [17.32787, 47.97749],
-        [17.51699, 47.82535],
-        [17.74776, 47.73093],
-        [18.29515, 47.72075],
-        [18.67959, 47.75541],
-        [18.89755, 47.81203],
-        [18.79463, 47.88245],
-        [18.84318, 48.04046],
-        [19.46212, 48.05333],
-        [19.62064, 48.22938],
-        [19.89585, 48.09387],
-        [20.33766, 48.2643],
-        [20.55395, 48.52358],
-        [20.82335, 48.55714],
-        [21.10271, 48.47096],
-        [21.45863, 48.55513],
-        [21.74536, 48.31435],
-        [22.15293, 48.37179],
-        [22.61255, 49.08914],
-        [22.09997, 49.23814],
-        [21.9686, 49.36363],
-        [21.6244, 49.46989],
-        [21.06873, 49.46402],
-        [20.94336, 49.31088],
-        [20.73052, 49.44006],
-        [20.22804, 49.41714],
-        [20.05234, 49.23052],
-        [19.83682, 49.25529]
-      ]
-    ],
-    "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
-    "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
-  },
-  {
-    "id": "Freemap.sk-Cyclo",
-    "name": "Freemap.sk Cyclo",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.freemap.sk/C/{zoom}/{x}/{y}.jpeg",
-    "zoomExtent": [8, 16],
-    "polygon": [
-      [
-        [19.83682, 49.25529],
-        [19.80075, 49.42385],
-        [19.60437, 49.48058],
-        [19.49179, 49.63961],
-        [19.21831, 49.52604],
-        [19.16778, 49.42521],
-        [19.00308, 49.42236],
-        [18.97611, 49.5308],
-        [18.54685, 49.51425],
-        [18.31432, 49.33818],
-        [18.15913, 49.2961],
-        [18.05564, 49.11134],
-        [17.56396, 48.84938],
-        [17.17929, 48.88816],
-        [17.058, 48.81105],
-        [16.90426, 48.61947],
-        [16.79685, 48.38561],
-        [17.06762, 48.01116],
-        [17.32787, 47.97749],
-        [17.51699, 47.82535],
-        [17.74776, 47.73093],
-        [18.29515, 47.72075],
-        [18.67959, 47.75541],
-        [18.89755, 47.81203],
-        [18.79463, 47.88245],
-        [18.84318, 48.04046],
-        [19.46212, 48.05333],
-        [19.62064, 48.22938],
-        [19.89585, 48.09387],
-        [20.33766, 48.2643],
-        [20.55395, 48.52358],
-        [20.82335, 48.55714],
-        [21.10271, 48.47096],
-        [21.45863, 48.55513],
-        [21.74536, 48.31435],
-        [22.15293, 48.37179],
-        [22.61255, 49.08914],
-        [22.09997, 49.23814],
-        [21.9686, 49.36363],
-        [21.6244, 49.46989],
-        [21.06873, 49.46402],
-        [20.94336, 49.31088],
-        [20.73052, 49.44006],
-        [20.22804, 49.41714],
-        [20.05234, 49.23052],
-        [19.83682, 49.25529]
-      ]
-    ],
-    "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
-    "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
-  },
-  {
-    "id": "Freemap.sk-Hiking",
-    "name": "Freemap.sk Hiking",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.freemap.sk/T/{zoom}/{x}/{y}.jpeg",
-    "zoomExtent": [8, 16],
-    "polygon": [
-      [
-        [19.83682, 49.25529],
-        [19.80075, 49.42385],
-        [19.60437, 49.48058],
-        [19.49179, 49.63961],
-        [19.21831, 49.52604],
-        [19.16778, 49.42521],
-        [19.00308, 49.42236],
-        [18.97611, 49.5308],
-        [18.54685, 49.51425],
-        [18.31432, 49.33818],
-        [18.15913, 49.2961],
-        [18.05564, 49.11134],
-        [17.56396, 48.84938],
-        [17.17929, 48.88816],
-        [17.058, 48.81105],
-        [16.90426, 48.61947],
-        [16.79685, 48.38561],
-        [17.06762, 48.01116],
-        [17.32787, 47.97749],
-        [17.51699, 47.82535],
-        [17.74776, 47.73093],
-        [18.29515, 47.72075],
-        [18.67959, 47.75541],
-        [18.89755, 47.81203],
-        [18.79463, 47.88245],
-        [18.84318, 48.04046],
-        [19.46212, 48.05333],
-        [19.62064, 48.22938],
-        [19.89585, 48.09387],
-        [20.33766, 48.2643],
-        [20.55395, 48.52358],
-        [20.82335, 48.55714],
-        [21.10271, 48.47096],
-        [21.45863, 48.55513],
-        [21.74536, 48.31435],
-        [22.15293, 48.37179],
-        [22.61255, 49.08914],
-        [22.09997, 49.23814],
-        [21.9686, 49.36363],
-        [21.6244, 49.46989],
-        [21.06873, 49.46402],
-        [20.94336, 49.31088],
-        [20.73052, 49.44006],
-        [20.22804, 49.41714],
-        [20.05234, 49.23052],
-        [19.83682, 49.25529]
-      ]
-    ],
-    "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
-    "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
-  },
-  {
-    "id": "Freemap.sk-Ski",
-    "name": "Freemap.sk Ski",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.freemap.sk/K/{zoom}/{x}/{y}.jpeg",
-    "zoomExtent": [8, 16],
-    "polygon": [
-      [
-        [19.83682, 49.25529],
-        [19.80075, 49.42385],
-        [19.60437, 49.48058],
-        [19.49179, 49.63961],
-        [19.21831, 49.52604],
-        [19.16778, 49.42521],
-        [19.00308, 49.42236],
-        [18.97611, 49.5308],
-        [18.54685, 49.51425],
-        [18.31432, 49.33818],
-        [18.15913, 49.2961],
-        [18.05564, 49.11134],
-        [17.56396, 48.84938],
-        [17.17929, 48.88816],
-        [17.058, 48.81105],
-        [16.90426, 48.61947],
-        [16.79685, 48.38561],
-        [17.06762, 48.01116],
-        [17.32787, 47.97749],
-        [17.51699, 47.82535],
-        [17.74776, 47.73093],
-        [18.29515, 47.72075],
-        [18.67959, 47.75541],
-        [18.89755, 47.81203],
-        [18.79463, 47.88245],
-        [18.84318, 48.04046],
-        [19.46212, 48.05333],
-        [19.62064, 48.22938],
-        [19.89585, 48.09387],
-        [20.33766, 48.2643],
-        [20.55395, 48.52358],
-        [20.82335, 48.55714],
-        [21.10271, 48.47096],
-        [21.45863, 48.55513],
-        [21.74536, 48.31435],
-        [22.15293, 48.37179],
-        [22.61255, 49.08914],
-        [22.09997, 49.23814],
-        [21.9686, 49.36363],
-        [21.6244, 49.46989],
-        [21.06873, 49.46402],
-        [20.94336, 49.31088],
-        [20.73052, 49.44006],
-        [20.22804, 49.41714],
-        [20.05234, 49.23052],
-        [19.83682, 49.25529]
-      ]
-    ],
-    "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
-    "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
-  },
-  {
-    "id": "fta-digiroad-functional",
-    "name": "FTA Road Network",
-    "type": "wms",
-    "template": "https://extranet.liikennevirasto.fi/inspirepalvelu/beta/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=dr_tielinkki_toim_lk&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [3, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.liikennevirasto.fi/web/en/open-data/digiroad/",
-    "terms_text": "© Liikennevirasto",
-    "description": "Digiroad national road network from the Finnish Transport Agency, functional road classes.",
-    "icon": "https://www.liikennevirasto.fi/livi-theme/images/general/liikennevirasto_logo_2x.png",
-    "overlay": true
-  },
-  {
-    "id": "gaza_pleiades_20140706",
-    "name": "Gaza Strip - Pléiades - 2014/07/06",
-    "type": "tms",
-    "template": "https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706/{zoom}/{x}/{y}",
-    "endDate": "2014-07-06T00:00:00.000Z",
-    "startDate": "2014-07-06T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip",
-    "terms_text": "Copyright CNES 2014, Distribution Airbus Defence and Space"
-  },
-  {
-    "id": "gaza_pleiades_20140706_nir",
-    "name": "Gaza Strip - Pléiades - 2014/07/06 (NIR)",
-    "type": "tms",
-    "template": "https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706_nir/{zoom}/{x}/{y}",
-    "endDate": "2014-07-06T00:00:00.000Z",
-    "startDate": "2014-07-06T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip",
-    "terms_text": "Copyright CNES 2014, Distribution Airbus Defence and Space"
-  },
-  {
-    "id": "Geobase_Hydrography",
-    "name": "Geobase Hydrography - English",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "overlay": true
-  },
-  {
-    "id": "Geobase_Hydrography_French",
-    "name": "Geobase Hydrography - French",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "overlay": true
-  },
-  {
-    "id": "Geobase_Roads",
-    "name": "Geobase Roads - English",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [4, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "Geobase_Roads_French",
-    "name": "Geobase Roads - French",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [4, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "geoimage.at",
-    "name": "Geoimage.at MaxRes",
-    "type": "wms",
-    "template": "https://gis.bmlfuw.gv.at/wmsgw/?key=4d80de696cd562a63ce463a58a61488d&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Luftbild_MR,Luftbild_1m,Luftbild_8m,Satellitenbild_30m&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://geoimage.at",
-    "terms_text": "geoimage.at",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/GeoimageatMaxRes.png"
-  },
-  {
-    "id": "Geolittoral-Sentiers",
-    "name": "Géolittoral - Sentiers",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral",
-    "terms_text": "Ortho littorale 2000"
-  },
-  {
-    "id": "GeolittoralV2-Orthophotos",
-    "name": "Géolittoral V2 - Orthophotos 2011-2014",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral",
-    "terms_text": "Ortho Littorale V2 - MEDDE"
-  },
-  {
-    "id": "lu.geoportail.opendata.ortho_10cm_proto_lidar",
-    "name": "geoportail.lu LIDAR prototype Nordstad 2017",
-    "type": "tms",
-    "template": "https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_10cm_proto_lidar/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
-    "endDate": "2017-04-09T00:00:00.000Z",
-    "startDate": "2017-04-09T00:00:00.000Z",
-    "zoomExtent": [6, 21],
-    "polygon": [
-      [
-        [6.05001, 49.82175],
-        [6.04979, 49.91166],
-        [6.18901, 49.91172],
-        [6.18897, 49.82181],
-        [6.05001, 49.82175]
-      ]
-    ],
-    "terms_url": "https://act.public.lu/fr/cartographie/lidar",
-    "terms_text": "Administration du Cadastre et de la Topographie",
-    "icon": "https://www.geoportail.lu/static/img/lion.png"
-  },
-  {
-    "id": "Geoportal2-PL-aerial_image",
-    "name": "Geoportal 2: Orthophotomap (aerial image)",
-    "type": "wms",
-    "template": "http://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)}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.gov.pl/web/guest/regulamin",
-    "terms_text": "Główny Urząd Geodezji i Kartografii",
-    "best": true,
-    "icon": "https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png"
-  },
-  {
-    "id": "Geoportal2-PL-prng",
-    "name": "Geoportal 2: PRNG (geo names)",
-    "type": "wms",
-    "template": "http://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)}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://www.codgik.gov.pl/index.php/darmowe-dane/prng.html",
-    "terms_text": "Centralny Ośrodek Dokumentacji Geodezyjnej i Kartograficznej",
-    "icon": "https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png",
-    "overlay": true
-  },
-  {
-    "id": "girau_do_pnciano",
-    "name": "Girau do Ponciano",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "Gliwice-buildings",
-    "name": "Gliwice: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Gliwice"
-  },
-  {
-    "id": "gothenburg-citymap",
-    "name": "Gothenburg City map",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [5, 21],
-    "polygon": [
-      [
-        [10.8078, 58.34266],
-        [13.0258, 58.34266],
-        [13.0258, 57.0896],
-        [11.70328, 57.0896],
-        [10.8078, 58.34266]
-      ]
-    ],
-    "terms_url": "https://catalog.goteborg.se/catalog/6/datasets/718",
-    "terms_text": "© Gothenburg municipality, CC0",
-    "best": true,
-    "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.",
-    "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": "GRAFCAN_Express-Canary_Islands",
-    "name": "GRAFCAN OrtoExpress - Canary Islands",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOWMS_20160101",
-    "terms_text": "GRAFCAN OrtoExpress",
-    "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-Canary_Islands",
-    "name": "GRAFCAN OrtoExpress Urbana - Canary Islands",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOURBANAWMS_20160101",
-    "terms_text": "GRAFCAN OrtoExpress Urbana",
-    "best": true,
-    "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": "GrandNancy_Orthophotographie_2012",
-    "name": "GrandNancy - Orthophoto - 2012",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.fr/tms/1.0.0/nancy_2012/{zoom}/{x}/{y}",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [6.06066, 48.60554],
-        [6.29717, 48.59923],
-        [6.30611, 48.74077],
-        [6.06896, 48.7471],
-        [6.06066, 48.60554]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie",
-    "terms_text": "GrandNancy Orthophotographie 2012"
-  },
-  {
-    "id": "GURS-buildings",
-    "name": "GURS: Building outlines",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.de/tms/GURS-building-outlines/{zoom}/{x}/{y}.png",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/",
-    "terms_text": "CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png",
-    "overlay": true
-  },
-  {
-    "id": "GURS-roads",
-    "name": "GURS: Road lines",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.de/tms/GURS-road-lines/{zoom}/{x}/{y}.png",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/",
-    "terms_text": "CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png",
-    "overlay": true
-  },
-  {
-    "id": "hamburg-20cm",
-    "name": "Hamburg (20 cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung",
-    "terms_text": "Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung"
-  },
-  {
-    "id": "Hamburg-DK5",
-    "name": "Hamburg (DK5)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung",
-    "terms_text": "Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung"
-  },
-  {
-    "id": "Hampshire-Aerial-FCIR",
-    "name": "Hampshire Aerial FCIR",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_fcir/{zoom}/{x}/{y}.png",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "Hampshire-Aerial-RGB",
-    "name": "Hampshire Aerial RGB",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_rgb/{zoom}/{x}/{y}.png",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "helsingborg-orto",
-    "name": "Helsingborg Orthophoto",
-    "type": "tms",
-    "template": "https://mapproxy.openstreetmap.se/tiles/1.0.0/hborg2016_EPSG3857/{zoom}/{x}/{y}.jpeg",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [12.74345, 55.94997],
-        [12.93777, 55.90804],
-        [13.00369, 55.96842],
-        [12.79083, 56.25022],
-        [12.56698, 56.1356],
-        [12.74345, 55.94997]
-      ]
-    ],
-    "terms_url": "https://helsingborg.opendatasoft.com/",
-    "terms_text": "© Helsingborg municipality",
-    "best": true,
-    "description": "Orthophotos from the municipality of Helsingborg 2016, public domain",
-    "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Helsingborg_vapen.svg/198px-Helsingborg_vapen.svg.png"
-  },
-  {
-    "id": "hri-orto",
-    "name": "Helsinki region orthophoto",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://hri.fi/data/en_GB/dataset/paakaupunkiseudun-ortokuva-2017",
-    "terms_text": "© Espoon, Helsingin ja Vantaan kaupungit, Kirkkonummen ja Nurmijärven kunnat sekä HSL ja HSY",
-    "best": true,
-    "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": "hu-hillshade",
-    "name": "Hillshade Hungary",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.map.turistautak.hu/tiles/shading/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 18],
-    "polygon": [[[15, 45], [24, 45], [24, 49], [15, 49], [15, 45]]],
-    "terms_text": "SRTM",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_DF_Addresses",
-    "name": "IBGE Distrito Federal",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/wille/cirnnxni1000jg8nfppc8g7pm/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-48.2444, -16.0508],
-        [-48.2444, -15.5005],
-        [-47.5695, -15.5005],
-        [-47.5695, -16.0508],
-        [-48.2444, -16.0508]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "description": "Addresses data from IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_Setores_Rurais",
-    "name": "IBGE Mapa de Setores Rurais",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.i00mo1kj/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png"
-  },
-  {
-    "id": "IBGE_Setores_Urbanos",
-    "name": "IBGE Mapa de Setores Urbanos",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.hgda0m6h/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png"
-  },
-  {
-    "id": "IBGE_Nomes_Ruas",
-    "name": "IBGE Nomes de Ruas",
-    "type": "tms",
-    "template": "https://api.maptiler.com/maps/b2037b15-5614-4fed-9608-9830b8dc574a/256/{zoom}/{x}/{y}.png?key=YmPoUxbTlEHlrASzv56Z",
-    "zoomExtent": [4, 22],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE, OSM Brasil",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BC250_Aglomerado_Rural",
-    "name": "IBGE-BC250-Aglomerado Rural Isolado",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BC250_Pista_Pouso",
-    "name": "IBGE-BC250-Pista de Pouso",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BC250_Rios_Drenagem",
-    "name": "IBGE-BC250-Rios Drenagem",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BC250_Terra_Indegina",
-    "name": "IBGE-BC250-Terra Indigena",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BC250_Rodoviario",
-    "name": "IBGE-BC250-Trecho Rodoviario",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BC250_Uso_Sustentavel",
-    "name": "IBGE-BC250-Unidade de Uso Sistentável - APA",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BC250_Villa",
-    "name": "IBGE-BC250-Villa",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BCIM_Gerador_Eletrica",
-    "name": "IBGE-BCIM-Estações Geradora de Energia Elétrica",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "IBGE_BCIM_Municipio",
-    "name": "IBGE-BCIM-Município",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "IBGE",
-    "overlay": true
-  },
-  {
-    "id": "ign-topografico-tms",
-    "name": "IGN topographical map (TMS)",
-    "type": "tms",
-    "template": "https://ide.ign.gob.ar/geoservicios/rest/services/Mapas_IGN/mapa_topografico/MapServer/tile/{zoom}/{y}/{x}",
-    "zoomExtent": [1, 19],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://www.ign.gob.ar/",
-    "terms_text": "Instituto Geográfico Nacional de la República Argentina",
-    "icon": "https://www.ign.gob.ar/sites/default/files/favicon.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R119_N09_20160327T050917",
-    "name": "imagico.de: Adams Bridge",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R119_N09_20160327T050917&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-03-27T00:00:00.000Z",
-    "startDate": "2016-03-27T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [79.01779, 8.82757],
-        [79.01402, 9.64678],
-        [80.17642, 9.65042],
-        [80.17728, 8.8313],
-        [79.01779, 8.82757]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Supplementing incomplete coverage in other sources (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC80700162014211LGN00",
-    "name": "imagico.de: Alaska Range",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80700162014211LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2014-07-31T00:00:00.000Z",
-    "startDate": "2014-07-31T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [-152.70873, 62.30357],
-        [-152.70839, 62.58153],
-        [-152.00835, 63.54646],
-        [-148.99432, 63.5333],
-        [-148.99432, 62.30357],
-        [-152.70873, 62.30357]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Recent summer image of the Alaska Range for mapping natural features (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-aral2",
-    "name": "imagico.de: Aral Sea (high water level)",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=aral2&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-03-03T00:00:00.000Z",
-    "startDate": "2016-03-03T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Water and wetland extents, dams etc. - some remaining winter ice in the north (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-aral1",
-    "name": "imagico.de: Aral Sea (low water level)",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=aral1&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-09-09T00:00:00.000Z",
-    "startDate": "2016-09-09T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Water and wetland extents, dams etc. (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R067_S40_20170417T140051",
-    "name": "imagico.de: Bahía Blanca (high tide)",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170417T140051&z={zoom}&x={x}&y={-y}",
-    "endDate": "2017-04-17T00:00:00.000Z",
-    "startDate": "2017-04-17T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-62.9988, -40.7327],
-        [-62.9988, -37.9476],
-        [-61.7505, -37.9474],
-        [-61.7501, -40.7322],
-        [-62.9988, -40.7327]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Tidal flats and islands at the coast (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R067_S40_20170127T140051",
-    "name": "imagico.de: Bahía Blanca (low tide)",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170127T140051&z={zoom}&x={x}&y={-y}",
-    "endDate": "2017-01-27T00:00:00.000Z",
-    "startDate": "2017-01-27T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-62.9988, -40.7327],
-        [-62.9988, -37.9476],
-        [-61.7505, -37.9474],
-        [-61.7501, -40.7322],
-        [-62.9988, -40.7327]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Tidal flats and islands at the coast (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81190582014075LGN00",
-    "name": "imagico.de: Bakun Reservoir",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81190582014075LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2014-03-16T00:00:00.000Z",
-    "startDate": "2014-03-16T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [114.36, 2.02846],
-        [113.53448, 2.03],
-        [113.53619, 3.07077],
-        [114.76512, 3.06751],
-        [114.76254, 2.08816],
-        [114.36, 2.02846]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing in older pre-2011 images (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81250592016107LGN00",
-    "name": "imagico.de: Batam",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81250592016107LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [104.00155, -0.00008],
-        [104.00137, 1.45099],
-        [104.91015, 1.45116],
-        [104.91015, -0.00008],
-        [104.00155, -0.00008]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing Islands in OSM (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC80770232017156LGN00",
-    "name": "imagico.de: Bogoslof Island",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80770232017156LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2017-06-05T00:00:00.000Z",
-    "startDate": "2017-06-05T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-168.2544, 53.8749],
-        [-168.2544, 54.0213],
-        [-167.8591, 54.0213],
-        [-167.8591, 53.8749],
-        [-168.2544, 53.8749]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Recent image from after the eruption (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81800982013291LGN00",
-    "name": "imagico.de: Bouvet Island",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81800982013291LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2013-10-18T00:00:00.000Z",
-    "startDate": "2013-10-18T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [3.24653, -54.47047],
-        [3.24653, -54.37539],
-        [3.46385, -54.37539],
-        [3.46385, -54.47047],
-        [3.24653, -54.47047]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "best": true,
-    "description": "For more accurate coastline and glacier mapping (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R017_S67_20170223T022551",
-    "name": "imagico.de: Bunger Hills",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R017_S67_20170223T022551&z={zoom}&x={x}&y={-y}",
-    "endDate": "2017-02-23T00:00:00.000Z",
-    "startDate": "2017-02-23T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Largest ice free area at the East Antarctic coast - shows considerable amounts of non-permanent ice. (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R065_N47_20160929T102022",
-    "name": "imagico.de: Central Alps in late September 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R065_N47_20160929T102022&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-09-29T00:00:00.000Z",
-    "startDate": "2016-09-29T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date image for glacier mapping - beware of some fresh snow at higher altitudes (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC82050982015344LGN00",
-    "name": "imagico.de: Clerke Rocks",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82050982015344LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-12-10T00:00:00.000Z",
-    "startDate": "2015-12-10T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-34.17701, -55.29693],
-        [-35.19599, -55.28285],
-        [-35.16664, -54.72097],
-        [-34.12517, -54.73465],
-        [-34.1401, -55.29693],
-        [-34.17701, -55.29693]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing in other image sources (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R086_N60_20160831T213532",
-    "name": "imagico.de: Cook Inlet",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R086_N60_20160831T213532&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-08-31T00:00:00.000Z",
-    "startDate": "2016-08-31T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Tidal flats and glaciers in surrounding mountains (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-EO1A0040712016264110KF",
-    "name": "imagico.de: Coropuna",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A0040712016264110KF&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-09-21T00:00:00.000Z",
-    "startDate": "2016-09-21T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date image for glacier mapping (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R022_N06_20151221T103009",
-    "name": "imagico.de: Cotonou",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R022_N06_20151221T103009&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-12-21T00:00:00.000Z",
-    "startDate": "2015-12-21T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [1.83975, 6.2578],
-        [1.83975, 7.11427],
-        [2.5494, 7.11427],
-        [2.5494, 6.48905],
-        [2.49781, 6.25806],
-        [1.83975, 6.2578]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Patchy and partly cloudy coverage in usual sources (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R040_N01_20160311T164128",
-    "name": "imagico.de: Darwin and Wolf islands, Galapagos",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R040_N01_20160311T164128&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-03-11T00:00:00.000Z",
-    "startDate": "2016-03-11T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-92.05216, 1.3213],
-        [-92.05216, 1.72181],
-        [-91.74849, 1.72181],
-        [-91.74849, 1.3213],
-        [-92.05216, 1.3213]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Recent image, only old and poor images in other sources currently (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC80360072014245LGN00",
-    "name": "imagico.de: Eastern Devon Island coast",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80360072014245LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2014-09-02T00:00:00.000Z",
-    "startDate": "2014-09-02T00:00:00.000Z",
-    "zoomExtent": [0, 11],
-    "polygon": [
-      [
-        [-84.34799, 74.38946],
-        [-84.34799, 75.8903],
-        [-79.14871, 75.8903],
-        [-79.14871, 74.38946],
-        [-84.34799, 74.38946]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Coastline mostly mapped meanwhile (false color IR)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC82160152013239LGN00",
-    "name": "imagico.de: Eastern Iceland",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82160152013239LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2013-08-27T00:00:00.000Z",
-    "startDate": "2013-08-27T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [-13.04701, 64.21109],
-        [-15.16496, 64.22408],
-        [-15.16805, 64.81573],
-        [-13.04357, 64.8036],
-        [-13.04701, 64.21109]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing islets and inaccurate coast (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492",
-    "name": "imagico.de: El Altar",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00302052007154424_20150518041444_91492&z={zoom}&x={x}&y={-y}",
-    "endDate": "2012-02-05T00:00:00.000Z",
-    "startDate": "2012-02-05T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-78.532, -1.80509],
-        [-78.532, -1.60811],
-        [-78.33562, -1.60811],
-        [-78.33562, -1.80509],
-        [-78.532, -1.80509]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "2007 ASTER image offering better glacier coverage than common sources (true color with estimated blue)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R009_S61_20160109",
-    "name": "imagico.de: Elephant Island/Clarence Island",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R009_S61_20160109&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-01-09T00:00:00.000Z",
-    "startDate": "2016-01-09T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-56.13476, -61.63472],
-        [-56.13476, -61.19936],
-        [-55.83264, -60.84015],
-        [-53.72343, -60.83982],
-        [-53.72343, -61.63472],
-        [-56.13476, -61.63472]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Fairly clear up-to-date image for updating glacier edges (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-enderby",
-    "name": "imagico.de: Enderby Land and Kemp Coast",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=enderby&z={zoom}&x={x}&y={-y}",
-    "endDate": "2017-03-27T00:00:00.000Z",
-    "startDate": "2017-01-25T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Sentinel-2 images of Enderby Land and Kemp Coast (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC82100502015347LGN00",
-    "name": "imagico.de: Fogo, Cape Verde",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82100502015347LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-12-13T00:00:00.000Z",
-    "startDate": "2015-12-13T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-24.75878, 14.74814],
-        [-24.75878, 15.09249],
-        [-24.26706, 15.09249],
-        [-24.26706, 14.74814],
-        [-24.75878, 14.74814]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Image from after the 2014/2015 eruption (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-greenland",
-    "name": "imagico.de: Greenland mosaic",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=greenland&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Landsat mosaic of Greenland (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R047_S54_20160411T044330",
-    "name": "imagico.de: Heard Island coast",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R047_S54_20160411T044330&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-04-12T00:00:00.000Z",
-    "startDate": "2016-04-12T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [73.06897, -53.27059],
-        [73.06897, -52.87549],
-        [73.67338, -52.87673],
-        [74.08863, -52.9495],
-        [74.08863, -53.27059],
-        [73.06897, -53.27059]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Recent image of Heard island with interior mostly cloud covered but mostly well visible coast (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC82280982013259LGN00",
-    "name": "imagico.de: Isla Londonderry",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82280982013259LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2013-09-16T00:00:00.000Z",
-    "startDate": "2013-09-16T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping (false color IR)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-dms_kangerlussuaq_20151008",
-    "name": "imagico.de: Kangerlussuaq Autumn",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20151008&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-10-08T00:00:00.000Z",
-    "startDate": "2015-10-08T00:00:00.000Z",
-    "zoomExtent": [0, 17],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Icebridge DMS image of the airport and settlement - alignment might be poor",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-dms_kangerlussuaq_20160518",
-    "name": "imagico.de: Kangerlussuaq Spring",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20160518&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-05-18T00:00:00.000Z",
-    "startDate": "2016-05-18T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Icebridge DMS image of the airport and roads - alignment might be poor",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R021_N44_20160807T083013",
-    "name": "imagico.de: Kerch Strait",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20160807T083013&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-08-07T00:00:00.000Z",
-    "startDate": "2016-08-07T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [35.93259, 44.96237],
-        [35.93259, 45.55926],
-        [37.36991, 45.55926],
-        [37.36991, 44.96237],
-        [35.93259, 44.96237]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "State of bridge construction in August 2016 (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R021_N44_20180429T082601",
-    "name": "imagico.de: Kerch Strait 2018",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20180429T082601&z={zoom}&x={x}&y={-y}",
-    "endDate": "2018-04-29T00:00:00.000Z",
-    "startDate": "2018-04-29T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [35.8787, 45.0348],
-        [35.8787, 45.6095],
-        [36.9208, 45.6095],
-        [36.9208, 45.0348],
-        [35.8787, 45.0348]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Bridge and surrounding after completion in April 2018 (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-ls_polar2",
-    "name": "imagico.de: Landsat off-nadir July 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar2&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-07-17T00:00:00.000Z",
-    "startDate": "2016-07-17T00:00:00.000Z",
-    "zoomExtent": [0, 10],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Latest images north of the regular Landsat limit (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-larsen_2018",
-    "name": "imagico.de: Larsen C ice shelf after calving",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=larsen_2018&z={zoom}&x={x}&y={-y}",
-    "endDate": "2018-01-06T00:00:00.000Z",
-    "startDate": "2018-01-06T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "For updating the ice edge after the 2017 iceberg calving (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190",
-    "name": "imagico.de: Leskov Island ASTER",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00311162013112731_20150618142416_109190&z={zoom}&x={x}&y={-y}",
-    "endDate": "2013-11-16T00:00:00.000Z",
-    "startDate": "2013-11-16T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-28.21075, -56.72108],
-        [-28.21075, -56.62498],
-        [-27.96956, -56.62498],
-        [-27.96956, -56.72108],
-        [-28.21075, -56.72108]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing in other image sources (true color with estimated blue)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81991002015286LGN00",
-    "name": "imagico.de: Leskov Island Landsat",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81991002015286LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-10-13T00:00:00.000Z",
-    "startDate": "2015-10-13T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-27.99293, -56.73479],
-        [-28.22776, -56.73262],
-        [-28.22416, -56.60075],
-        [-27.96975, -56.60283],
-        [-27.97319, -56.73479],
-        [-27.99293, -56.73479]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing in other image sources (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-ls_polar",
-    "name": "imagico.de: May 2013 off-nadir Landsat",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar&z={zoom}&x={x}&y={-y}",
-    "endDate": "2013-05-17T00:00:00.000Z",
-    "startDate": "2013-05-17T00:00:00.000Z",
-    "zoomExtent": [0, 10],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "First available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R042_S78_20170214T202521",
-    "name": "imagico.de: McMurdo Sound and Dry Valleys",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R042_S78_20170214T202521&z={zoom}&x={x}&y={-y}",
-    "endDate": "2017-02-14T00:00:00.000Z",
-    "startDate": "2017-02-14T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date late season image - not ice minimum, be careful with distinguishing sea ice from ice shelves. (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R092_S02_20160613T075613",
-    "name": "imagico.de: Mount Kenya 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S02_20160613T075613&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-06-13T00:00:00.000Z",
-    "startDate": "2016-06-13T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [37.20666, -0.26685],
-        [37.20666, -0.01193],
-        [37.56552, -0.01193],
-        [37.56552, -0.26685],
-        [37.20666, -0.26685]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date image for glacier mapping (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R092_S05_20160802T075556",
-    "name": "imagico.de: Mount Kilimanjaro 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S05_20160802T075556&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-08-02T00:00:00.000Z",
-    "startDate": "2016-08-02T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [37.24769, -3.22921],
-        [37.24769, -2.96816],
-        [37.61581, -2.96816],
-        [37.61581, -3.22921],
-        [37.24769, -3.22921]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date image for glacier mapping (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC80940622015159LGN00",
-    "name": "imagico.de: New Ireland",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80940622015159LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-06-08T00:00:00.000Z",
-    "startDate": "2015-06-08T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [150.38853, -2.80053],
-        [150.38853, -2.3834],
-        [150.83348, -2.3834],
-        [150.83348, -2.80053],
-        [150.38853, -2.80053]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Many missing islands in OSM (mostly mapped meanwhile) (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-northsea_s2_2016",
-    "name": "imagico.de: North Sea Coast 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2016&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-09-25T00:00:00.000Z",
-    "startDate": "2016-09-25T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-northsea_s2_2017",
-    "name": "imagico.de: North Sea Coast 2017",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2017&z={zoom}&x={x}&y={-y}",
-    "endDate": "2017-06-02T00:00:00.000Z",
-    "startDate": "2017-06-02T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [5.1713, 53.0918],
-        [6.477, 55.8973],
-        [9.8813, 55.8973],
-        [9.8813, 53.2761],
-        [9.7789, 53.0918],
-        [5.1713, 53.0918]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-northsea_s2_2018",
-    "name": "imagico.de: North Sea Coast spring 2018",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2018&z={zoom}&x={x}&y={-y}",
-    "endDate": "2018-05-08T00:00:00.000Z",
-    "startDate": "2018-05-08T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-caspian_2018",
-    "name": "imagico.de: Northeast Caspian Sea 2018",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=caspian_2018&z={zoom}&x={x}&y={-y}",
-    "endDate": "2018-05-16T00:00:00.000Z",
-    "startDate": "2018-05-16T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [51.0243, 45.0729],
-        [51.0243, 46.569],
-        [52.4259, 46.5687],
-        [53.6471, 46.3177],
-        [53.6474, 45.0729],
-        [51.0243, 45.0729]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Coastal contruction and Kashagan oil field in Kazakhstan in May 2018 (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-ural_s2_2016",
-    "name": "imagico.de: Northern and Polar Ural mountains August 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=ural_s2_2016&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-08-12T00:00:00.000Z",
-    "startDate": "2016-08-12T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date late summer imagery with few clouds - caution: not all visible snow is glaciers (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-ndvina",
-    "name": "imagico.de: Northern Dvina delta at low tide",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=ndvina&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-09-13T00:00:00.000Z",
-    "startDate": "2015-09-13T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Beaches, tidal flats and other costal forms (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-nellesmere_ast",
-    "name": "imagico.de: Northern Ellesmere Island",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast&z={zoom}&x={x}&y={-y}",
-    "endDate": "2012-07-09T00:00:00.000Z",
-    "startDate": "2012-07-09T00:00:00.000Z",
-    "zoomExtent": [0, 10],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Assembled from July 2012 ASTER imagery (true color with estimated blue)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-nellesmere_ast_2016",
-    "name": "imagico.de: Northern Ellesmere Island July 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast_2016&z={zoom}&x={x}&y={-y}",
-    "endDate": "2012-07-15T00:00:00.000Z",
-    "startDate": "2012-07-08T00:00:00.000Z",
-    "zoomExtent": [0, 10],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Assembled from July 2016 ASTER imagery (true color with estimated blue)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81960222015233LGN00vis",
-    "name": "imagico.de: Northern German west coast tidalflats",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00vis&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-08-21T00:00:00.000Z",
-    "startDate": "2015-08-21T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [7.63568, 53.28027],
-        [7.63568, 53.6677],
-        [8.49433, 55.50246],
-        [9.20775, 55.48106],
-        [9.20775, 53.28027],
-        [7.63568, 53.28027]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81960222015233LGN00ir",
-    "name": "imagico.de: Northern German west coast tidalflats (infrared)",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00ir&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-08-21T00:00:00.000Z",
-    "startDate": "2015-08-21T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [7.63568, 53.28027],
-        [7.63568, 53.66811],
-        [8.49433, 55.50246],
-        [9.20775, 55.48106],
-        [9.20775, 53.28027],
-        [7.63568, 53.28027]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (false color IR)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-ngreenland_ast",
-    "name": "imagico.de: Northern Greenland ASTER",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=ngreenland_ast&z={zoom}&x={x}&y={-y}",
-    "endDate": "2012-08-13T00:00:00.000Z",
-    "startDate": "2005-06-21T00:00:00.000Z",
-    "zoomExtent": [0, 10],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast (true color with estimated blue)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-EO1A1350972013086110KF",
-    "name": "imagico.de: Northwest Heard Island",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A1350972013086110KF&z={zoom}&x={x}&y={-y}",
-    "endDate": "2013-03-13T00:00:00.000Z",
-    "startDate": "2013-03-13T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Glaciers of Northwest Heard Island (mapped meanwhile) (false color IR)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R111_N09_20160604T154554",
-    "name": "imagico.de: Panama Canal",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R111_N09_20160604T154554&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-06-07T00:00:00.000Z",
-    "startDate": "2016-06-07T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-80.01654, 8.84898],
-        [-80.01654, 9.41481],
-        [-79.46859, 9.41481],
-        [-79.46859, 8.84898],
-        [-80.01654, 8.84898]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Images of the new locks (but partly cloudy) (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-EO1A0120532016364110KF",
-    "name": "imagico.de: Panama Canal - Pacific side",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A0120532016364110KF&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-12-30T00:00:00.000Z",
-    "startDate": "2016-12-30T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "New locks with less clouds than in the Sentinel-2 image - make sure to check image alignment (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R078_N68_20160930T081002",
-    "name": "imagico.de: Pechora Sea Coast",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N68_20160930T081002&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-09-30T00:00:00.000Z",
-    "startDate": "2016-09-30T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Sentinel-2 image of the Pechora Sea coast in autumn 2016 (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81511242016033LGN00",
-    "name": "imagico.de: Pensacola Mountains",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81511242016033LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-02-02T00:00:00.000Z",
-    "startDate": "2016-02-02T00:00:00.000Z",
-    "zoomExtent": [0, 10],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R136_N41_20150831T093006",
-    "name": "imagico.de: Prokletije Mountains",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R136_N41_20150831T093006&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-08-31T00:00:00.000Z",
-    "startDate": "2015-08-31T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [19.11233, 42.15316],
-        [19.08426, 43.08074],
-        [20.63299, 43.09603],
-        [20.63788, 42.16779],
-        [19.11233, 42.15316]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Late summer imagery where usual sources are severely limited by clouds and snow (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-DMS_1142622_03746_20110415_17533956",
-    "name": "imagico.de: Qasigiannguit",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142622_03746_20110415_17533956&z={zoom}&x={x}&y={-y}",
-    "endDate": "2011-04-15T00:00:00.000Z",
-    "startDate": "2011-04-15T00:00:00.000Z",
-    "zoomExtent": [0, 15],
-    "polygon": [
-      [
-        [-51.23857, 68.79972],
-        [-51.24334, 68.85303],
-        [-51.15167, 68.85303],
-        [-51.14038, 68.80116],
-        [-51.23857, 68.79972]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Icebridge DMS image of the settlement - alignment might be poor",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81510432015030LGN00",
-    "name": "imagico.de: Rann of Kutch",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81510432015030LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [67.9684, 22.36265],
-        [67.86231, 22.38392],
-        [67.86231, 24.88693],
-        [71.48986, 24.88693],
-        [71.48986, 22.36265],
-        [67.9684, 22.36265]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Land/water distinction difficult to properly map based on Bing/Mapbox images (false color IR)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R093_N41_20150828T092005",
-    "name": "imagico.de: Rila and Pirin Mountains",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N41_20150828T092005&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-08-28T00:00:00.000Z",
-    "startDate": "2015-08-28T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [23.80811, 41.58488],
-        [22.99238, 41.60195],
-        [23.01186, 42.29984],
-        [23.99402, 42.28339],
-        [23.96561, 41.58488],
-        [23.80811, 41.58488]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Late summer imagery where usual sources are severely limited by clouds and snow (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81730602015040LGN00",
-    "name": "imagico.de: Rwenzori Mountains",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81730602015040LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-02-09T00:00:00.000Z",
-    "startDate": "2015-02-09T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [29.7663, 0.20689],
-        [29.7663, 0.50918],
-        [30.0346, 0.50918],
-        [30.0346, 0.20689],
-        [29.7663, 0.20689]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Recent image of most of the remaining Rwenzori Mountains glaciers (false color IR)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R078_N01_20160702T082522",
-    "name": "imagico.de: Rwenzori Mountains 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N01_20160702T082522&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-07-02T00:00:00.000Z",
-    "startDate": "2016-07-02T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [29.80514, 0.23586],
-        [29.80514, 0.46709],
-        [30.02503, 0.46709],
-        [30.02503, 0.23586],
-        [29.80514, 0.23586]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date image for glacier mapping (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC80611072014036LGN00",
-    "name": "imagico.de: Scott Island",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80611072014036LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2014-02-05T00:00:00.000Z",
-    "startDate": "2014-02-05T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-180, -67.42635],
-        [-180, -67.32544],
-        [-179.82473, -67.32538],
-        [-179.82473, -67.42635],
-        [-180, -67.42635]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing in other image sources (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC82100972015347LGN00",
-    "name": "imagico.de: Shag Rocks",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82100972015347LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-12-13T00:00:00.000Z",
-    "startDate": "2015-12-13T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-42.12875, -53.7205],
-        [-42.14626, -53.45782],
-        [-41.67573, -53.44586],
-        [-41.65582, -53.70872],
-        [-42.12875, -53.7205]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing in other image sources (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81130622013270LGN00",
-    "name": "imagico.de: Southeastern Sulawesi",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81130622013270LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2013-09-27T00:00:00.000Z",
-    "startDate": "2013-09-27T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC80281222016035LGN00",
-    "name": "imagico.de: Southern Transantarctic Mountains",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80281222016035LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-02-04T00:00:00.000Z",
-    "startDate": "2016-02-04T00:00:00.000Z",
-    "zoomExtent": [0, 10],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81030632015286LGN00",
-    "name": "imagico.de: Sudirman Range 2015",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81030632015286LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-10-13T00:00:00.000Z",
-    "startDate": "2015-10-13T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [136.4226, -4.2853],
-        [136.4226, -3.6447],
-        [137.7971, -3.6447],
-        [137.7971, -4.2853],
-        [136.4226, -4.2853]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Older image of the Sudirman Range with no fresh snow showing glacier extent (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R088_S05_20160812T011732",
-    "name": "imagico.de: Sudirman Range 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R088_S05_20160812T011732&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-08-12T00:00:00.000Z",
-    "startDate": "2016-08-12T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [136.8044, -4.2585],
-        [136.8044, -3.7836],
-        [137.7701, -3.7836],
-        [137.7701, -4.2585],
-        [136.8044, -4.2585]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Cloud free image of the Sudirman Range but with fresh snow (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-s2sval",
-    "name": "imagico.de: Svalbard mosaic",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=s2sval&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Sentinel-2 mosaic of Svalbard (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx",
-    "name": "imagico.de: Thule Air Base",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142636_160xx_20110507_1822xxxx&z={zoom}&x={x}&y={-y}",
-    "endDate": "2011-05-07T00:00:00.000Z",
-    "startDate": "2011-05-07T00:00:00.000Z",
-    "zoomExtent": [0, 15],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Icebridge DMS image - alignment might be poor",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-dms_thule2_2015.09.25",
-    "name": "imagico.de: Thule Airbase DMS low altitude overflight September 2015",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule2_2015.09.25&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-09-25T00:00:00.000Z",
-    "startDate": "2015-09-25T00:00:00.000Z",
-    "zoomExtent": [0, 17],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-dms_thule_2015.10.06",
-    "name": "imagico.de: Thule Airbase DMS overflight October 2015",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.10.06&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-10-06T00:00:00.000Z",
-    "startDate": "2015-10-06T00:00:00.000Z",
-    "zoomExtent": [0, 16],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-dms_thule_2015.09.25",
-    "name": "imagico.de: Thule Airbase DMS overflight September 2015",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.09.25&z={zoom}&x={x}&y={-y}",
-    "endDate": "2015-09-25T00:00:00.000Z",
-    "startDate": "2015-09-25T00:00:00.000Z",
-    "zoomExtent": [0, 16],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R094_N79_20160812T105622",
-    "name": "imagico.de: Ushakov Island August 2016",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R094_N79_20160812T105622&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-08-12T00:00:00.000Z",
-    "startDate": "2016-08-12T00:00:00.000Z",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [78.45886, 80.72643],
-        [78.45886, 80.9099],
-        [80.48892, 80.9099],
-        [80.48892, 80.72643],
-        [78.45886, 80.72643]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Up-to-date late summer imagery with few clouds (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC80910682014358LGN00",
-    "name": "imagico.de: Vanatinai",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80910682014358LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2014-12-24T00:00:00.000Z",
-    "startDate": "2014-12-24T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [153.06138, -11.78923],
-        [153.06138, -11.28869],
-        [153.10927, -11.07229],
-        [154.41201, -11.07229],
-        [154.41201, -11.78923],
-        [153.06138, -11.78923]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Coarse coastline due to cloud cover in Bing/Mapbox (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC82330892016031LGN00",
-    "name": "imagico.de: Volcán Calbuco",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82330892016031LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-01-31T00:00:00.000Z",
-    "startDate": "2016-01-31T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-72.86696, -41.51741],
-        [-72.86696, -41.04527],
-        [-72.23181, -41.04527],
-        [-71.8751, -41.10829],
-        [-72.00007, -41.51741],
-        [-72.86696, -41.51741]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Image from after the 2015 eruption (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R089_N52_20160623T024048",
-    "name": "imagico.de: Vostochny Cosmodrome",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20160623T024048&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-06-23T00:00:00.000Z",
-    "startDate": "2016-06-23T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [126.36143, 51.37553],
-        [126.34804, 52.33932],
-        [128.60762, 52.3409],
-        [128.61174, 51.37553],
-        [126.36143, 51.37553]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Recent image showing newest features (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-walps_autumn_2017",
-    "name": "imagico.de: Western Alps autumn colors 2017",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=walps_autumn_2017&z={zoom}&x={x}&y={-y}",
-    "endDate": "2017-10-17T00:00:00.000Z",
-    "startDate": "2017-10-17T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Autumn colors in the Alps, Jura and southwestern Germany  (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-LC81490352013282LGN00",
-    "name": "imagico.de: Western Karakoram",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81490352013282LGN00&z={zoom}&x={x}&y={-y}",
-    "endDate": "2013-10-09T00:00:00.000Z",
-    "startDate": "2013-10-09T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [75.98364, 34.97851],
-        [73.96164, 35.36957],
-        [74.44281, 37.09391],
-        [76.50601, 36.70267],
-        [75.98364, 34.97851]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Represents approximately minimum snow cover so can be well used for glacier mapping (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "osmim-imagicode-S2A_R039_S15_20160510T145731",
-    "name": "imagico.de: Willkanuta Mountains and Quelccaya Ice Cap",
-    "type": "tms",
-    "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R039_S15_20160510T145731&z={zoom}&x={x}&y={-y}",
-    "endDate": "2016-05-10T00:00:00.000Z",
-    "startDate": "2016-05-10T00:00:00.000Z",
-    "zoomExtent": [0, 14],
-    "polygon": [
-      [
-        [-71.18071, -14.49785],
-        [-71.17976, -13.71029],
-        [-70.55637, -13.71263],
-        [-70.55637, -14.49785],
-        [-71.18071, -14.49785]
-      ]
-    ],
-    "terms_url": "http://maps.imagico.de/#osmim",
-    "terms_text": "imagico.de OSM images for mapping",
-    "description": "Poor and outdated imagery in other sources (true color)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode-LC81800982013291LGN00.png"
-  },
-  {
-    "id": "IndianaMap2016",
-    "name": "IndianaMap Orthoimagery 2016",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [4, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.",
-    "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.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"
-  },
-  {
-    "id": "IndianaMap2017",
-    "name": "IndianaMap Orthoimagery 2017",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [4, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.",
-    "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.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"
-  },
-  {
-    "id": "IndianaMap2018",
-    "name": "IndianaMap Orthoimagery 2018",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [4, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.",
-    "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.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"
-  },
-  {
-    "id": "IPR-orotofoto-last-tms",
-    "name": "IPR ortofoto LAST (tmsproxy)",
-    "type": "tms",
-    "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_last.php/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [1, 20],
-    "polygon": [
-      [
-        [14.81232, 49.93089],
-        [14.18755, 49.87687],
-        [14.12025, 50.19882],
-        [14.74502, 50.25247],
-        [14.81232, 49.93089]
-      ]
-    ]
-  },
-  {
-    "id": "IPR-orotofoto-vege-tms",
-    "name": "IPR ortofoto Low-Vegetation (tmsproxy)",
-    "type": "tms",
-    "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_vege.php/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [2, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "GSGS3906",
-    "name": "Ireland British War Office 1:25k GSGS 3906",
-    "type": "tms",
-    "template": "https://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Ireland/Background_Imagery#Trinity_College_Dublin",
-    "terms_text": "Glucksman Map Library, Trinity College Dublin",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ie/IrelandBritishWarOffice-GSGS3906.png"
-  },
-  {
-    "id": "Israel_Hiking",
-    "name": "Israel Hiking",
-    "type": "tms",
-    "template": "https://israelhiking.osm.org.il/Tiles/{zoom}/{x}/{y}.png",
-    "zoomExtent": [7, 16],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://israelhiking.osm.org.il/",
-    "terms_text": "Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.",
-    "description": "Israel Hiking map",
-    "icon": "https://israelhiking.osm.org.il/content/favicons/favicon.ico"
-  },
-  {
-    "id": "Israel_MTB",
-    "name": "Israel MTB",
-    "type": "tms",
-    "template": "https://israelhiking.osm.org.il/MTBTiles/{zoom}/{x}/{y}.png",
-    "zoomExtent": [7, 16],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://israelhiking.osm.org.il/",
-    "terms_text": "Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.",
-    "description": "Israel MTB map",
-    "icon": "https://israelhiking.osm.org.il/content/favicons/favicon.ico"
-  },
-  {
-    "id": "ITACyL-Castile-and-Leon",
-    "name": "ITACyL - Castile and León",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "ITACyL"
-  },
-  {
-    "id": "gsi.go.jp_airphoto",
-    "name": "Japan GSI airphoto Imagery",
-    "type": "tms",
-    "template": "https://cyberjapandata.gsi.go.jp/xyz/airphoto/{zoom}/{x}/{y}.png",
-    "zoomExtent": [14, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html",
-    "terms_text": "GSI Japan",
-    "description": "Japan GSI airphoto Imagery. Not fully orthorectified, but a bit newer and/or differently covered than GSI ortho Imagery."
-  },
-  {
-    "id": "finds.jp_KBN_2500",
-    "name": "Japan GSI KIBAN 2500",
-    "type": "tms",
-    "template": "https://www.finds.jp/ws/tmc/1.0.0/KBN2500FN-900913-L/{zoom}/{x}/{y}.png",
-    "zoomExtent": [15, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.finds.jp/siteinfo/c_tou.html.ja",
-    "terms_text": "GSI KIBAN 2500",
-    "description": "GSI Kiban 2500 via finds.jp. Good for tracing, but a bit older."
-  },
-  {
-    "id": "gsi.go.jp_seamlessphoto",
-    "name": "Japan GSI seamlessphoto Imagery",
-    "type": "tms",
-    "template": "https://cyberjapandata.gsi.go.jp/xyz/seamlessphoto/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [14, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html",
-    "terms_text": "GSI Japan seamless photo",
-    "description": "Japan GSI seamlessphoto Imagery. The collection of latest imageries of GSI ortho, airphoto, post disaster and others."
-  },
-  {
-    "id": "gsi.go.jp_std_map",
-    "name": "Japan GSI Standard Map",
-    "type": "tms",
-    "template": "https://cyberjapandata.gsi.go.jp/xyz/std/{zoom}/{x}/{y}.png",
-    "zoomExtent": [5, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://maps.gsi.go.jp/help/use.html",
-    "terms_text": "GSI Japan",
-    "description": "Japan GSI Standard Map. Widely covered."
-  },
-  {
-    "id": "kalmar-orto-2014",
-    "name": "Kalmar North Orthophoto 2014",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [9, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://data-kalmar.opendata.arcgis.com/",
-    "terms_text": "© Kalmar municipality",
-    "best": true,
-    "description": "Orthophotos for the north coast of the municipality of Kalmar 2014",
-    "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png"
-  },
-  {
-    "id": "kalmar-orto-2016",
-    "name": "Kalmar South Orthophoto 2016",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [9, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://data-kalmar.opendata.arcgis.com/",
-    "terms_text": "© Kalmar municipality",
-    "best": true,
-    "description": "Orthophotos for the south coast of the municipality of Kalmar 2016",
-    "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png"
-  },
-  {
-    "id": "kalmar-orto-2018",
-    "name": "Kalmar Urban Orthophoto 2018",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [9, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://data-kalmar.opendata.arcgis.com/",
-    "terms_text": "© Kalmar municipality",
-    "best": true,
-    "description": "Orthophotos for urban areas of the municipality of Kalmar 2018",
-    "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png"
-  },
-  {
-    "id": "Aargau-AGIS-2014",
-    "name": "Kanton Aargau 25cm (AGIS 2014)",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/AGIS2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "AGIS OF2014",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Aargau-AGIS-2016",
-    "name": "Kanton Aargau 25cm (AGIS 2016)",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/AGIS2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "AGIS OF2016",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Aargau-AGIS-2017",
-    "name": "Kanton Aargau 25cm (AGIS 2017)",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/AGIS2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "AGIS OF2017",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Aargau-AGIS-2019",
-    "name": "Kanton Aargau 25cm (AGIS 2019)",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/AGIS2019/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2019-01-01T00:00:00.000Z",
-    "startDate": "2019-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "AGIS OF2019",
-    "best": true,
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Aargau-AGIS-2014-Hillshade",
-    "name": "Kanton Aargau 50cm DTM/Hillshade",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/AGIS2014HILLSHADE/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "AGIS 2014 50cm DTM/Hillshade",
-    "best": true,
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Basel-Landschaft-2015",
-    "name": "Kanton Basel-Landschaft 10cm (2015)",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/KTBASELLANDSCHAFT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [18, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.geo.bl.ch/fileadmin/user_upload/Geodaten/Nutzungsbedingungen_GBD_BL_V3p2.pdf",
-    "terms_text": "Geodaten des Kantons Basel-Landschaft 2015",
-    "best": true,
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "KTBASELSTADT2015",
-    "name": "Kanton Basel-Stadt 2015",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/KTBASELSTADT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 21],
-    "polygon": [
-      [
-        [7.492, 47.4817],
-        [7.492, 47.6342],
-        [7.784, 47.6342],
-        [7.784, 47.4817],
-        [7.492, 47.4817]
-      ]
-    ],
-    "terms_text": "Kanton Basel-Stadt OF 2015",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Bern-dsm-hillshade-2015",
-    "name": "Kanton Bern, Digitales Oberflaechenmodell 50cm, Relief",
-    "type": "wms",
-    "template": "https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WmsServer?LAYERS=GEODB.LDOM50CM_LORELIEF&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Digitales Oberflächenmodell LIDAR 50cm © Amt für Wald des Kantons Bern"
-  },
-  {
-    "id": "Bern-dtm-hillshade-2015",
-    "name": "Kanton Bern, Digitales Terrainmodell 50cm, Relief",
-    "type": "wms",
-    "template": "https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WmsServer?LAYERS=GEODB.LDTM50CM_LTRELIEF&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Digitales Terrainmodell LIDAR 50cm © Amt für Wald des Kantons Bern"
-  },
-  {
-    "id": "KTGL_ORTHO_2013",
-    "name": "Kanton Glarus Orthophoto 2013",
-    "type": "wms",
-    "template": "https://wms.geo.gl.ch?LAYERS=ch.gl.imagery.orthofoto2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [8.99094, 47.18505],
-        [8.94836, 47.13462],
-        [8.93738, 47.05609],
-        [8.87421, 47.03363],
-        [8.9415, 46.93807],
-        [8.86597, 46.84423],
-        [8.86459, 46.80852],
-        [8.91815, 46.78596],
-        [9.04587, 46.80758],
-        [9.245, 46.8968],
-        [9.26147, 46.92213],
-        [9.25186, 47.01865],
-        [9.2189, 47.04673],
-        [9.19693, 47.12154],
-        [9.06235, 47.1505],
-        [8.99094, 47.18505]
-      ]
-    ],
-    "terms_text": "Kanton Glarus, Luftbild Orthofoto 2013"
-  },
-  {
-    "id": "KTGL_ORTHO_2015",
-    "name": "Kanton Glarus Orthophoto 2015",
-    "type": "wms",
-    "template": "https://wms.geo.gl.ch?LAYERS=ch.gl.imagery.orthofoto2015&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [8.99094, 47.18505],
-        [8.94836, 47.13462],
-        [8.93738, 47.05609],
-        [8.87421, 47.03363],
-        [8.9415, 46.93807],
-        [8.86597, 46.84423],
-        [8.86459, 46.80852],
-        [8.91815, 46.78596],
-        [9.04587, 46.80758],
-        [9.245, 46.8968],
-        [9.26147, 46.92213],
-        [9.25186, 47.01865],
-        [9.2189, 47.04673],
-        [9.19693, 47.12154],
-        [9.06235, 47.1505],
-        [8.99094, 47.18505]
-      ]
-    ],
-    "terms_text": "Kanton Glarus, Luftbild Orthofoto 2015"
-  },
-  {
-    "id": "KTGL_ORTHO_2017",
-    "name": "Kanton Glarus Orthophoto 2017",
-    "type": "wms",
-    "template": "https://wms.geo.gl.ch?LAYERS=ch.gl.imagery.orthofoto2017&STYLES=default&FORMAT=image/jpeg&CRS={proj}&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [8.99094, 47.18505],
-        [8.94836, 47.13462],
-        [8.93738, 47.05609],
-        [8.87421, 47.03363],
-        [8.9415, 46.93807],
-        [8.86597, 46.84423],
-        [8.86459, 46.80852],
-        [8.91815, 46.78596],
-        [9.04587, 46.80758],
-        [9.245, 46.8968],
-        [9.26147, 46.92213],
-        [9.25186, 47.01865],
-        [9.2189, 47.04673],
-        [9.19693, 47.12154],
-        [9.06235, 47.1505],
-        [8.99094, 47.18505]
-      ]
-    ],
-    "terms_text": "Kanton Glarus, Luftbild Orthofoto 2017",
-    "best": true
-  },
-  {
-    "id": "Solothurn-sogis2014-wms",
-    "name": "Kanton Solothurn (SOGIS)",
-    "type": "wms",
-    "template": "https://geoweb.so.ch/wms/sogis_orthofoto.wms?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orthofoto_SO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [15, 20],
-    "polygon": [
-      [
-        [7.95595, 47.47162],
-        [7.98239, 47.47155],
-        [7.98239, 47.45353],
-        [7.99553, 47.45353],
-        [7.99521, 47.41747],
-        [8.0218, 47.41743],
-        [8.02155, 47.39935],
-        [8.03456, 47.39926],
-        [8.03468, 47.39028],
-        [8.04788, 47.39022],
-        [8.04769, 47.37224],
-        [8.03456, 47.37232],
-        [8.03437, 47.3544],
-        [8.02117, 47.35427],
-        [8.02072, 47.32739],
-        [7.99445, 47.32747],
-        [7.99426, 47.31857],
-        [7.96773, 47.31866],
-        [7.96767, 47.30966],
-        [7.94122, 47.30978],
-        [7.94133, 47.32778],
-        [7.91486, 47.32786],
-        [7.91467, 47.30988],
-        [7.9016, 47.31005],
-        [7.9014, 47.30097],
-        [7.87501, 47.3011],
-        [7.87501, 47.29223],
-        [7.86165, 47.29212],
-        [7.86154, 47.27409],
-        [7.84832, 47.27416],
-        [7.8483, 47.26523],
-        [7.83502, 47.2652],
-        [7.83502, 47.25624],
-        [7.79535, 47.25636],
-        [7.7953, 47.24741],
-        [7.72924, 47.24756],
-        [7.72929, 47.25652],
-        [7.71623, 47.25667],
-        [7.71618, 47.26559],
-        [7.70304, 47.26559],
-        [7.70304, 47.27461],
-        [7.68975, 47.27467],
-        [7.68989, 47.28368],
-        [7.66341, 47.28371],
-        [7.66332, 47.2747],
-        [7.61055, 47.27476],
-        [7.61041, 47.24787],
-        [7.62352, 47.24777],
-        [7.62356, 47.23879],
-        [7.64986, 47.23876],
-        [7.64999, 47.22977],
-        [7.6499, 47.22083],
-        [7.66308, 47.22073],
-        [7.6631, 47.21178],
-        [7.66297, 47.20273],
-        [7.67617, 47.2027],
-        [7.67623, 47.19372],
-        [7.68938, 47.19369],
-        [7.68924, 47.17572],
-        [7.70243, 47.1756],
-        [7.70234, 47.14869],
-        [7.66267, 47.14881],
-        [7.66281, 47.13978],
-        [7.63633, 47.1399],
-        [7.63647, 47.14869],
-        [7.5968, 47.14893],
-        [7.59684, 47.13996],
-        [7.57041, 47.13999],
-        [7.57042, 47.15792],
-        [7.55736, 47.15795],
-        [7.55732, 47.14888],
-        [7.54421, 47.14895],
-        [7.54417, 47.13991],
-        [7.53098, 47.13991],
-        [7.53095, 47.13097],
-        [7.51767, 47.13097],
-        [7.51765, 47.12196],
-        [7.51769, 47.11292],
-        [7.49131, 47.11301],
-        [7.49135, 47.10403],
-        [7.4782, 47.104],
-        [7.47813, 47.07705],
-        [7.46493, 47.07708],
-        [7.46498, 47.06807],
-        [7.42552, 47.06801],
-        [7.42543, 47.08601],
-        [7.37279, 47.08598],
-        [7.37288, 47.10403],
-        [7.3596, 47.10403],
-        [7.35955, 47.131],
-        [7.41228, 47.131],
-        [7.41223, 47.14901],
-        [7.42538, 47.14901],
-        [7.42552, 47.15801],
-        [7.3727, 47.15796],
-        [7.3727, 47.18498],
-        [7.34627, 47.18492],
-        [7.34636, 47.20287],
-        [7.33307, 47.2029],
-        [7.33307, 47.22096],
-        [7.34614, 47.22096],
-        [7.34614, 47.22991],
-        [7.37256, 47.22991],
-        [7.3727, 47.2389],
-        [7.399, 47.23896],
-        [7.39913, 47.24792],
-        [7.41228, 47.24792],
-        [7.41228, 47.26592],
-        [7.45186, 47.26589],
-        [7.45195, 47.2749],
-        [7.46505, 47.27493],
-        [7.4651, 47.28385],
-        [7.47829, 47.28385],
-        [7.47834, 47.29293],
-        [7.5046, 47.29288],
-        [7.50473, 47.30183],
-        [7.5312, 47.30181],
-        [7.53129, 47.31979],
-        [7.54448, 47.31985],
-        [7.54453, 47.3288],
-        [7.55768, 47.32883],
-        [7.55768, 47.33786],
-        [7.53125, 47.33786],
-        [7.53133, 47.35586],
-        [7.51801, 47.35583],
-        [7.5181, 47.36483],
-        [7.3988, 47.36484],
-        [7.39889, 47.39182],
-        [7.38564, 47.39181],
-        [7.38564, 47.4008],
-        [7.37234, 47.4008],
-        [7.37234, 47.40978],
-        [7.34584, 47.40978],
-        [7.34584, 47.41878],
-        [7.31925, 47.41878],
-        [7.31925, 47.44578],
-        [7.4121, 47.44578],
-        [7.4121, 47.49078],
-        [7.42535, 47.49078],
-        [7.42535, 47.49981],
-        [7.43856, 47.49981],
-        [7.43856, 47.50876],
-        [7.49177, 47.50876],
-        [7.49178, 47.63468],
-        [7.7845, 47.63428],
-        [7.78415, 47.57123],
-        [7.81074, 47.57114],
-        [7.81074, 47.56216],
-        [7.82395, 47.56206],
-        [7.82387, 47.54414],
-        [7.86368, 47.54397],
-        [7.86363, 47.53498],
-        [7.87679, 47.53495],
-        [7.87675, 47.52599],
-        [7.8901, 47.52596],
-        [7.89006, 47.51695],
-        [7.90319, 47.51692],
-        [7.9031, 47.49886],
-        [7.91649, 47.49883],
-        [7.91645, 47.48976],
-        [7.95612, 47.48967],
-        [7.95595, 47.47162]
-      ]
-    ],
-    "terms_text": "Orthofoto WMS Solothurn",
-    "best": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png"
-  },
-  {
-    "id": "Solothurn-infrared-SOGIS",
-    "name": "Kanton Solothurn Infrarot (SOGIS)",
-    "type": "wms",
-    "template": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2015.cir&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:3857",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [15, 19],
-    "polygon": [
-      [
-        [7.57042, 47.15792],
-        [7.55736, 47.15795],
-        [7.55732, 47.14888],
-        [7.54421, 47.14895],
-        [7.54417, 47.13991],
-        [7.53098, 47.13991],
-        [7.53093, 47.12196],
-        [7.51765, 47.12196],
-        [7.51769, 47.11292],
-        [7.49131, 47.11301],
-        [7.49135, 47.10403],
-        [7.4782, 47.104],
-        [7.47816, 47.09496],
-        [7.49144, 47.09499],
-        [7.4914, 47.07702],
-        [7.47816, 47.07705],
-        [7.4782, 47.06804],
-        [7.42552, 47.06801],
-        [7.42543, 47.08601],
-        [7.37279, 47.08598],
-        [7.37288, 47.10403],
-        [7.3596, 47.10403],
-        [7.35955, 47.131],
-        [7.41228, 47.131],
-        [7.41223, 47.14901],
-        [7.42538, 47.14901],
-        [7.42552, 47.15801],
-        [7.39913, 47.15804],
-        [7.39913, 47.14901],
-        [7.3727, 47.14898],
-        [7.3727, 47.18498],
-        [7.34627, 47.18492],
-        [7.34636, 47.19391],
-        [7.33307, 47.19394],
-        [7.33307, 47.22991],
-        [7.37256, 47.22991],
-        [7.3727, 47.2389],
-        [7.399, 47.23896],
-        [7.39913, 47.24792],
-        [7.41228, 47.24792],
-        [7.41228, 47.26592],
-        [7.45186, 47.26589],
-        [7.45195, 47.2749],
-        [7.46505, 47.27493],
-        [7.4651, 47.28385],
-        [7.47829, 47.28385],
-        [7.47834, 47.29293],
-        [7.49149, 47.29289],
-        [7.49162, 47.30184],
-        [7.5312, 47.30181],
-        [7.53129, 47.31979],
-        [7.54448, 47.31985],
-        [7.54453, 47.3288],
-        [7.55768, 47.32883],
-        [7.55768, 47.33786],
-        [7.53125, 47.33786],
-        [7.53133, 47.35586],
-        [7.51801, 47.35583],
-        [7.5181, 47.36483],
-        [7.43862, 47.36492],
-        [7.43867, 47.37389],
-        [7.42538, 47.37395],
-        [7.42543, 47.40081],
-        [7.38558, 47.4009],
-        [7.38567, 47.4098],
-        [7.35915, 47.4098],
-        [7.35915, 47.41878],
-        [7.37239, 47.41884],
-        [7.37247, 47.43682],
-        [7.38571, 47.43682],
-        [7.38571, 47.44104],
-        [7.39563, 47.44016],
-        [7.3963, 47.44258],
-        [7.40761, 47.4411],
-        [7.40793, 47.44225],
-        [7.40313, 47.44246],
-        [7.39738, 47.44331],
-        [7.39832, 47.44583],
-        [7.41214, 47.44583],
-        [7.41228, 47.45478],
-        [7.43867, 47.45488],
-        [7.4388, 47.47053],
-        [7.45007, 47.46941],
-        [7.45007, 47.47223],
-        [7.44647, 47.47223],
-        [7.44647, 47.47381],
-        [7.44293, 47.4739],
-        [7.44288, 47.47553],
-        [7.43921, 47.4756],
-        [7.43921, 47.4772],
-        [7.43557, 47.47729],
-        [7.43548, 47.47899],
-        [7.4174, 47.47896],
-        [7.41744, 47.48573],
-        [7.42099, 47.48573],
-        [7.42108, 47.49082],
-        [7.42763, 47.49073],
-        [7.42852, 47.49349],
-        [7.43099, 47.49643],
-        [7.43485, 47.49889],
-        [7.4419, 47.49552],
-        [7.44665, 47.49455],
-        [7.45011, 47.49176],
-        [7.45087, 47.4907],
-        [7.46451, 47.49073],
-        [7.46456, 47.48903],
-        [7.46819, 47.489],
-        [7.46819, 47.48566],
-        [7.47187, 47.48573],
-        [7.47192, 47.48233],
-        [7.48269, 47.48239],
-        [7.48264, 47.48388],
-        [7.48623, 47.48397],
-        [7.48637, 47.48566],
-        [7.48991, 47.48566],
-        [7.49, 47.4907],
-        [7.4997, 47.49073],
-        [7.49965, 47.4914],
-        [7.49175, 47.49194],
-        [7.49175, 47.49513],
-        [7.49822, 47.49479],
-        [7.49889, 47.49585],
-        [7.49566, 47.49628],
-        [7.49171, 47.49625],
-        [7.4918, 47.49973],
-        [7.50504, 47.4997],
-        [7.50504, 47.50874],
-        [7.5448, 47.50871],
-        [7.54474, 47.45482],
-        [7.49169, 47.45469],
-        [7.49175, 47.44581],
-        [7.46529, 47.44577],
-        [7.46522, 47.40983],
-        [7.49156, 47.40979],
-        [7.49175, 47.39192],
-        [7.50489, 47.39183],
-        [7.50489, 47.40068],
-        [7.51821, 47.40077],
-        [7.51834, 47.41876],
-        [7.55794, 47.41872],
-        [7.55813, 47.44581],
-        [7.58453, 47.44572],
-        [7.58441, 47.43667],
-        [7.61094, 47.43662],
-        [7.611, 47.4637],
-        [7.59767, 47.4637],
-        [7.59793, 47.49964],
-        [7.62433, 47.49969],
-        [7.62445, 47.4906],
-        [7.63778, 47.49055],
-        [7.63784, 47.4996],
-        [7.67757, 47.49947],
-        [7.67745, 47.49047],
-        [7.70385, 47.49043],
-        [7.70391, 47.48146],
-        [7.71711, 47.48129],
-        [7.71711, 47.45452],
-        [7.70397, 47.45452],
-        [7.70385, 47.44559],
-        [7.69046, 47.44551],
-        [7.69033, 47.40957],
-        [7.67713, 47.40949],
-        [7.67713, 47.40068],
-        [7.65066, 47.40068],
-        [7.65047, 47.37365],
-        [7.67706, 47.37357],
-        [7.67706, 47.38251],
-        [7.71667, 47.38251],
-        [7.71679, 47.37344],
-        [7.74307, 47.3734],
-        [7.74307, 47.35538],
-        [7.7562, 47.35534],
-        [7.75633, 47.3464],
-        [7.78261, 47.34627],
-        [7.78292, 47.36433],
-        [7.79612, 47.36428],
-        [7.79619, 47.37327],
-        [7.82265, 47.37314],
-        [7.82271, 47.38229],
-        [7.84912, 47.38212],
-        [7.84924, 47.39106],
-        [7.86251, 47.39097],
-        [7.86263, 47.40906],
-        [7.8759, 47.40897],
-        [7.87602, 47.41803],
-        [7.90242, 47.41795],
-        [7.90242, 47.40897],
-        [7.92889, 47.4088],
-        [7.92914, 47.41782],
-        [7.94215, 47.41769],
-        [7.94266, 47.46276],
-        [7.95592, 47.46259],
-        [7.95612, 47.47164],
-        [7.98239, 47.47155],
-        [7.98239, 47.45353],
-        [7.99553, 47.45353],
-        [7.99521, 47.41747],
-        [8.0218, 47.41743],
-        [8.02155, 47.39935],
-        [8.03456, 47.39926],
-        [8.03468, 47.39028],
-        [8.04788, 47.39015],
-        [8.04769, 47.37224],
-        [8.03456, 47.37232],
-        [8.03437, 47.3544],
-        [8.02117, 47.35427],
-        [8.02072, 47.32739],
-        [7.99445, 47.32747],
-        [7.99426, 47.31857],
-        [7.96773, 47.31866],
-        [7.96767, 47.30966],
-        [7.9412, 47.30992],
-        [7.94133, 47.32778],
-        [7.91486, 47.32786],
-        [7.91467, 47.30988],
-        [7.9016, 47.31005],
-        [7.9014, 47.30097],
-        [7.87501, 47.3011],
-        [7.87501, 47.29223],
-        [7.86165, 47.29212],
-        [7.86154, 47.27409],
-        [7.84843, 47.27415],
-        [7.8483, 47.26523],
-        [7.83502, 47.2652],
-        [7.83502, 47.25624],
-        [7.79535, 47.25636],
-        [7.7953, 47.24741],
-        [7.72924, 47.24756],
-        [7.72929, 47.25652],
-        [7.71623, 47.25667],
-        [7.71618, 47.26559],
-        [7.70304, 47.26559],
-        [7.70304, 47.27461],
-        [7.68975, 47.27467],
-        [7.68989, 47.28368],
-        [7.66341, 47.28371],
-        [7.66332, 47.2747],
-        [7.61055, 47.27476],
-        [7.61041, 47.24787],
-        [7.62352, 47.24765],
-        [7.62356, 47.23879],
-        [7.64986, 47.23876],
-        [7.64999, 47.22977],
-        [7.66305, 47.22971],
-        [7.6631, 47.21178],
-        [7.67621, 47.21169],
-        [7.67623, 47.19372],
-        [7.68938, 47.19369],
-        [7.68924, 47.17572],
-        [7.70243, 47.1756],
-        [7.70248, 47.16663],
-        [7.71567, 47.16663],
-        [7.71558, 47.15769],
-        [7.70239, 47.15766],
-        [7.70234, 47.14869],
-        [7.66267, 47.14881],
-        [7.66281, 47.13978],
-        [7.63633, 47.1399],
-        [7.63647, 47.14869],
-        [7.5968, 47.14893],
-        [7.59684, 47.13996],
-        [7.57041, 47.13999],
-        [7.57042, 47.15792]
-      ]
-    ],
-    "terms_text": "Orthofoto WMS Solothurn",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png"
-  },
-  {
-    "id": "Solothurn-sogis2014-dom-wms",
-    "name": "Kanton Solothurn, DOM Relief 2014 50cm",
-    "type": "wms",
-    "template": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dom_relief&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [7.95595, 47.47162],
-        [7.98239, 47.47155],
-        [7.98239, 47.45353],
-        [7.99553, 47.45353],
-        [7.99521, 47.41747],
-        [8.0218, 47.41743],
-        [8.02155, 47.39935],
-        [8.03456, 47.39926],
-        [8.03468, 47.39028],
-        [8.04788, 47.39022],
-        [8.04769, 47.37224],
-        [8.03456, 47.37232],
-        [8.03437, 47.3544],
-        [8.02117, 47.35427],
-        [8.02072, 47.32739],
-        [7.99445, 47.32747],
-        [7.99426, 47.31857],
-        [7.96773, 47.31866],
-        [7.96767, 47.30966],
-        [7.94122, 47.30978],
-        [7.94133, 47.32778],
-        [7.91486, 47.32786],
-        [7.91467, 47.30988],
-        [7.9016, 47.31005],
-        [7.9014, 47.30097],
-        [7.87501, 47.3011],
-        [7.87501, 47.29223],
-        [7.86165, 47.29212],
-        [7.86154, 47.27409],
-        [7.84832, 47.27416],
-        [7.8483, 47.26523],
-        [7.83502, 47.2652],
-        [7.83502, 47.25624],
-        [7.79535, 47.25636],
-        [7.7953, 47.24741],
-        [7.72924, 47.24756],
-        [7.72929, 47.25652],
-        [7.71623, 47.25667],
-        [7.71618, 47.26559],
-        [7.70304, 47.26559],
-        [7.70304, 47.27461],
-        [7.68975, 47.27467],
-        [7.68989, 47.28368],
-        [7.66341, 47.28371],
-        [7.66332, 47.2747],
-        [7.61055, 47.27476],
-        [7.61041, 47.24787],
-        [7.62352, 47.24777],
-        [7.62356, 47.23879],
-        [7.64986, 47.23876],
-        [7.64999, 47.22977],
-        [7.6499, 47.22083],
-        [7.66308, 47.22073],
-        [7.6631, 47.21178],
-        [7.66297, 47.20273],
-        [7.67617, 47.2027],
-        [7.67623, 47.19372],
-        [7.68938, 47.19369],
-        [7.68924, 47.17572],
-        [7.70243, 47.1756],
-        [7.70234, 47.14869],
-        [7.66267, 47.14881],
-        [7.66281, 47.13978],
-        [7.63633, 47.1399],
-        [7.63647, 47.14869],
-        [7.5968, 47.14893],
-        [7.59684, 47.13996],
-        [7.57041, 47.13999],
-        [7.57042, 47.15792],
-        [7.55736, 47.15795],
-        [7.55732, 47.14888],
-        [7.54421, 47.14895],
-        [7.54417, 47.13991],
-        [7.53098, 47.13991],
-        [7.53095, 47.13097],
-        [7.51767, 47.13097],
-        [7.51765, 47.12196],
-        [7.51769, 47.11292],
-        [7.49131, 47.11301],
-        [7.49135, 47.10403],
-        [7.4782, 47.104],
-        [7.47813, 47.07705],
-        [7.46493, 47.07708],
-        [7.46498, 47.06807],
-        [7.42552, 47.06801],
-        [7.42543, 47.08601],
-        [7.37279, 47.08598],
-        [7.37288, 47.10403],
-        [7.3596, 47.10403],
-        [7.35955, 47.131],
-        [7.41228, 47.131],
-        [7.41223, 47.14901],
-        [7.42538, 47.14901],
-        [7.42552, 47.15801],
-        [7.3727, 47.15796],
-        [7.3727, 47.18498],
-        [7.34627, 47.18492],
-        [7.34636, 47.20287],
-        [7.33307, 47.2029],
-        [7.33307, 47.22096],
-        [7.34614, 47.22096],
-        [7.34614, 47.22991],
-        [7.37256, 47.22991],
-        [7.3727, 47.2389],
-        [7.399, 47.23896],
-        [7.39913, 47.24792],
-        [7.41228, 47.24792],
-        [7.41228, 47.26592],
-        [7.45186, 47.26589],
-        [7.45195, 47.2749],
-        [7.46505, 47.27493],
-        [7.4651, 47.28385],
-        [7.47829, 47.28385],
-        [7.47834, 47.29293],
-        [7.5046, 47.29288],
-        [7.50473, 47.30183],
-        [7.5312, 47.30181],
-        [7.53129, 47.31979],
-        [7.54448, 47.31985],
-        [7.54453, 47.3288],
-        [7.55768, 47.32883],
-        [7.55768, 47.33786],
-        [7.53125, 47.33786],
-        [7.53133, 47.35586],
-        [7.51801, 47.35583],
-        [7.5181, 47.36483],
-        [7.3988, 47.36484],
-        [7.39889, 47.39182],
-        [7.38564, 47.39181],
-        [7.38564, 47.4008],
-        [7.37234, 47.4008],
-        [7.37234, 47.40978],
-        [7.34584, 47.40978],
-        [7.34584, 47.41878],
-        [7.31925, 47.41878],
-        [7.31925, 47.44578],
-        [7.4121, 47.44578],
-        [7.4121, 47.49078],
-        [7.42535, 47.49078],
-        [7.42535, 47.49981],
-        [7.43856, 47.49981],
-        [7.43856, 47.50876],
-        [7.49177, 47.50876],
-        [7.49178, 47.63468],
-        [7.7845, 47.63428],
-        [7.78415, 47.57123],
-        [7.81074, 47.57114],
-        [7.81074, 47.56216],
-        [7.82395, 47.56206],
-        [7.82387, 47.54414],
-        [7.86368, 47.54397],
-        [7.86363, 47.53498],
-        [7.87679, 47.53495],
-        [7.87675, 47.52599],
-        [7.8901, 47.52596],
-        [7.89006, 47.51695],
-        [7.90319, 47.51692],
-        [7.9031, 47.49886],
-        [7.91649, 47.49883],
-        [7.91645, 47.48976],
-        [7.95612, 47.48967],
-        [7.95595, 47.47162]
-      ]
-    ],
-    "terms_text": "DOM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"
-  },
-  {
-    "id": "Solothurn-sogis2014-dtm-wms",
-    "name": "Kanton Solothurn, DTM Relief 2014 50cm",
-    "type": "wms",
-    "template": "https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dtm_relief&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [7.95595, 47.47162],
-        [7.98239, 47.47155],
-        [7.98239, 47.45353],
-        [7.99553, 47.45353],
-        [7.99521, 47.41747],
-        [8.0218, 47.41743],
-        [8.02155, 47.39935],
-        [8.03456, 47.39926],
-        [8.03468, 47.39028],
-        [8.04788, 47.39022],
-        [8.04769, 47.37224],
-        [8.03456, 47.37232],
-        [8.03437, 47.3544],
-        [8.02117, 47.35427],
-        [8.02072, 47.32739],
-        [7.99445, 47.32747],
-        [7.99426, 47.31857],
-        [7.96773, 47.31866],
-        [7.96767, 47.30966],
-        [7.94122, 47.30978],
-        [7.94133, 47.32778],
-        [7.91486, 47.32786],
-        [7.91467, 47.30988],
-        [7.9016, 47.31005],
-        [7.9014, 47.30097],
-        [7.87501, 47.3011],
-        [7.87501, 47.29223],
-        [7.86165, 47.29212],
-        [7.86154, 47.27409],
-        [7.84832, 47.27416],
-        [7.8483, 47.26523],
-        [7.83502, 47.2652],
-        [7.83502, 47.25624],
-        [7.79535, 47.25636],
-        [7.7953, 47.24741],
-        [7.72924, 47.24756],
-        [7.72929, 47.25652],
-        [7.71623, 47.25667],
-        [7.71618, 47.26559],
-        [7.70304, 47.26559],
-        [7.70304, 47.27461],
-        [7.68975, 47.27467],
-        [7.68989, 47.28368],
-        [7.66341, 47.28371],
-        [7.66332, 47.2747],
-        [7.61055, 47.27476],
-        [7.61041, 47.24787],
-        [7.62352, 47.24777],
-        [7.62356, 47.23879],
-        [7.64986, 47.23876],
-        [7.64999, 47.22977],
-        [7.6499, 47.22083],
-        [7.66308, 47.22073],
-        [7.6631, 47.21178],
-        [7.66297, 47.20273],
-        [7.67617, 47.2027],
-        [7.67623, 47.19372],
-        [7.68938, 47.19369],
-        [7.68924, 47.17572],
-        [7.70243, 47.1756],
-        [7.70234, 47.14869],
-        [7.66267, 47.14881],
-        [7.66281, 47.13978],
-        [7.63633, 47.1399],
-        [7.63647, 47.14869],
-        [7.5968, 47.14893],
-        [7.59684, 47.13996],
-        [7.57041, 47.13999],
-        [7.57042, 47.15792],
-        [7.55736, 47.15795],
-        [7.55732, 47.14888],
-        [7.54421, 47.14895],
-        [7.54417, 47.13991],
-        [7.53098, 47.13991],
-        [7.53095, 47.13097],
-        [7.51767, 47.13097],
-        [7.51765, 47.12196],
-        [7.51769, 47.11292],
-        [7.49131, 47.11301],
-        [7.49135, 47.10403],
-        [7.4782, 47.104],
-        [7.47813, 47.07705],
-        [7.46493, 47.07708],
-        [7.46498, 47.06807],
-        [7.42552, 47.06801],
-        [7.42543, 47.08601],
-        [7.37279, 47.08598],
-        [7.37288, 47.10403],
-        [7.3596, 47.10403],
-        [7.35955, 47.131],
-        [7.41228, 47.131],
-        [7.41223, 47.14901],
-        [7.42538, 47.14901],
-        [7.42552, 47.15801],
-        [7.3727, 47.15796],
-        [7.3727, 47.18498],
-        [7.34627, 47.18492],
-        [7.34636, 47.20287],
-        [7.33307, 47.2029],
-        [7.33307, 47.22096],
-        [7.34614, 47.22096],
-        [7.34614, 47.22991],
-        [7.37256, 47.22991],
-        [7.3727, 47.2389],
-        [7.399, 47.23896],
-        [7.39913, 47.24792],
-        [7.41228, 47.24792],
-        [7.41228, 47.26592],
-        [7.45186, 47.26589],
-        [7.45195, 47.2749],
-        [7.46505, 47.27493],
-        [7.4651, 47.28385],
-        [7.47829, 47.28385],
-        [7.47834, 47.29293],
-        [7.5046, 47.29288],
-        [7.50473, 47.30183],
-        [7.5312, 47.30181],
-        [7.53129, 47.31979],
-        [7.54448, 47.31985],
-        [7.54453, 47.3288],
-        [7.55768, 47.32883],
-        [7.55768, 47.33786],
-        [7.53125, 47.33786],
-        [7.53133, 47.35586],
-        [7.51801, 47.35583],
-        [7.5181, 47.36483],
-        [7.3988, 47.36484],
-        [7.39889, 47.39182],
-        [7.38564, 47.39181],
-        [7.38564, 47.4008],
-        [7.37234, 47.4008],
-        [7.37234, 47.40978],
-        [7.34584, 47.40978],
-        [7.34584, 47.41878],
-        [7.31925, 47.41878],
-        [7.31925, 47.44578],
-        [7.4121, 47.44578],
-        [7.4121, 47.49078],
-        [7.42535, 47.49078],
-        [7.42535, 47.49981],
-        [7.43856, 47.49981],
-        [7.43856, 47.50876],
-        [7.49177, 47.50876],
-        [7.49178, 47.63468],
-        [7.7845, 47.63428],
-        [7.78415, 47.57123],
-        [7.81074, 47.57114],
-        [7.81074, 47.56216],
-        [7.82395, 47.56206],
-        [7.82387, 47.54414],
-        [7.86368, 47.54397],
-        [7.86363, 47.53498],
-        [7.87679, 47.53495],
-        [7.87675, 47.52599],
-        [7.8901, 47.52596],
-        [7.89006, 47.51695],
-        [7.90319, 47.51692],
-        [7.9031, 47.49886],
-        [7.91649, 47.49883],
-        [7.91645, 47.48976],
-        [7.95612, 47.48967],
-        [7.95595, 47.47162]
-      ]
-    ],
-    "terms_text": "DTM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"
-  },
-  {
-    "id": "kt_tg_dtm_hillshade",
-    "name": "Kanton Thurgau Relief DTM",
-    "type": "wms",
-    "template": "https://ows-raster.geo.tg.ch/geofy_access_proxy/reliefschattierung?LAYERS=DTMRelief&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://opendata.swiss/dataset/reliefschattierung",
-    "terms_text": "Kanton Thurgau, DTM Relief 2014",
-    "description": "Digitale Repräsentation des Geländes"
-  },
-  {
-    "id": "kt_tg_av",
-    "name": "Kanton Thurgau, Basisplan-AV",
-    "type": "wms",
-    "template": "https://ows.geo.tg.ch/geofy_access_proxy/basisplanf?LAYERS=Basisplan_farbig&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "zoomExtent": [8, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://opendata.swiss/dataset/basisplan-av",
-    "terms_text": "Kanton Thurgau, Basisplan-AV",
-    "description": "Basisplan-AV des Kantons Thurgau farbig & schwarzweiss mit Liegenschaften, Nomenklatur, Landes-, Kantons- und Gemeindegrenzen, Einzelobjekten, Bodenbedeckung, Strassennamen, Höhenkurven und Geländemodell"
-  },
-  {
-    "id": "kt_tg_ortho_2017",
-    "name": "Kanton Thurgau, Orthofoto2017 RGB",
-    "type": "wms",
-    "template": "https://ows-raster.geo.tg.ch/geofy_access_proxy/orthofoto2017?LAYERS=Orthofoto2017_RGB&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://opendata.swiss/en/dataset/orthofoto-2017-dop17",
-    "terms_text": "Kanton Thurgau, Orthofoto2017 RGB",
-    "best": true,
-    "description": "Digitales multispektrales Orthofotomosaik des Kantons Thurgau"
-  },
-  {
-    "id": "kt_tg_radrouten",
-    "name": "Kanton Thurgau, Rad-Routen",
-    "type": "wms",
-    "template": "https://ows.geo.tg.ch/geofy_access_proxy/radwege?LAYERS=Radwege&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "zoomExtent": [8, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://opendata.swiss/dataset/rad-routen",
-    "terms_text": "Kanton Thurgau, Rad-Routen",
-    "description": "Langsamverkehr: Radweg-Netz (Routen) signalisiert durch Wegweiser"
-  },
-  {
-    "id": "kt_tg_ww",
-    "name": "Kanton Thurgau, Wanderwege",
-    "type": "wms",
-    "template": "https://ows.geo.tg.ch/geofy_access_proxy/wanderwege?LAYERS=Wanderwege&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap",
-    "projection": "EPSG:4326",
-    "zoomExtent": [8, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://opendata.swiss/dataset/wanderwege",
-    "terms_text": "Kanton Thurgau, Wanderwege",
-    "description": "Langsamverkehr: Verlauf der Wanderwege mit symbolischer Darstellung der Wegweiser, Unterführungen, Treppen und Brücken. Informationen über die Wegoberfläche und Rollstuhlgängigkeit."
-  },
-  {
-    "id": "Zug-2011",
-    "name": "Kanton Zug 2011",
-    "type": "wms",
-    "template": "https://services.geo.zg.ch:443/ows/Orthofotos?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=zg.orthofoto_2011_kt_zg&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "zoomExtent": [10, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "GIS Kanton Zug",
-    "best": true
-  },
-  {
-    "id": "Zug-2018",
-    "name": "Kanton Zug Gemeinde Zug Süd 2018",
-    "type": "wms",
-    "template": "https://services.geo.zg.ch:443/ows/Orthofotos?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=zg.orthofoto_2018_kt_zg&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [10, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "GIS Kanton Zug",
-    "best": true
-  },
-  {
-    "id": "Zug-2016",
-    "name": "Kanton Zug Nord 2016",
-    "type": "wms",
-    "template": "https://services.geo.zg.ch:443/ows/Orthofotos?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=zg.orthofoto_2016_kt_zg&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [10, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "GIS Kanton Zug",
-    "best": true
-  },
-  {
-    "id": "OGDLidarZH-DOM",
-    "name": "Kanton Zurich, Oberflächenschummerung 50cm",
-    "type": "wms",
-    "template": "https://wms.zh.ch/OGDLidarZH?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=dom2014hillshade&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Oberflächenschummerung"
-  },
-  {
-    "id": "OGDOrthoZH2016",
-    "name": "Kanton Zurich, Orthofoto ZH Frühjahr 2015/16 RGB 10cm",
-    "type": "wms",
-    "template": "https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&LAYERS=ortho_w_15&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Frühjahr 2015/16 RGB"
-  },
-  {
-    "id": "OGDOrthoZH2015",
-    "name": "Kanton Zurich, Orthofoto ZH Sommer 2014/15 RGB 10cm",
-    "type": "wms",
-    "template": "https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&LAYERS=ortho_s_14&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2014/15 RGB"
-  },
-  {
-    "id": "OGDOrthoZH2018",
-    "name": "Kanton Zurich, Orthofoto ZH Sommer 2018 RGB 10cm",
-    "type": "wms",
-    "template": "https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&LAYERS=ortho&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2018 RGB",
-    "best": true
-  },
-  {
-    "id": "OGDLidarZH-DTM",
-    "name": "Kanton Zurich, Terrainschummerung 50cm",
-    "type": "wms",
-    "template": "https://wms.zh.ch/OGDLidarZH?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=dtm2014hillshade&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Terrainschummerung"
-  },
-  {
-    "id": "kartverket-abas",
-    "name": "Kartverket Administrative Boundaries overlay",
-    "type": "wms",
-    "template": "https://openwms.statkart.no/skwms1/wms.adm_enheter?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=avtaltavgrensningslinje,territorialgrense,riksgrense,fylker,kommuner&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.kartverket.no/data/Kartdata/Grenser/",
-    "terms_text": "© Kartverket",
-    "description": "Official administrative boundaries at the national, county and municipality levels",
-    "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
-    "overlay": true
-  },
-  {
-    "id": "kartverket-luftfartshindre",
-    "name": "Kartverket Aviation Obstructions overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [7, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://kartverket.no/kart/Nasjonalt-register-over-luftfartshindre/",
-    "terms_text": "© Kartverket",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "kartverket-matrikkel",
-    "name": "Kartverket Cadastral overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [14, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://seeiendom.kartverket.no",
-    "terms_text": "© Kartverket",
-    "description": "Real estate boundaries from the official land register (`matrikkelen´). Monthly update.",
-    "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
-    "overlay": true
-  },
-  {
-    "id": "kartverket-hoydekurver",
-    "name": "Kartverket Contour Lines overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [9, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.kartverket.no/Prosjekter/Nasjonal-detaljert-hoydemodell/",
-    "terms_text": "© Kartverket",
-    "description": "Contours for Norway",
-    "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
-    "overlay": true
-  },
-  {
-    "id": "kartverket-dom-skygge",
-    "name": "Kartverket DOM Digital Surface Model",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 24],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://hoydedata.no/",
-    "terms_text": "© Kartverket",
-    "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-dtm-skygge",
-    "name": "Kartverket DTM Digital Terrain Model",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 24],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://hoydedata.no/",
-    "terms_text": "© Kartverket",
-    "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-ok-1st",
-    "name": "Kartverket Economic Maps (historic)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [11, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.kartverket.no/kunnskap/historie/kartverkets-historiske-arkiv/",
-    "terms_text": "© Kartverket",
-    "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-friluft",
-    "name": "Kartverket Hiking Trails",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [6, 24],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://kartverket.no/geodataarbeid/temadata/nasjonal-database-for-tur--og-friluftsruter/",
-    "terms_text": "© Kartverket",
-    "description": "Hiking trails from the Norwegian database `Tur- og Friluftsruter´, including DNT routes.",
-    "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
-    "overlay": true
-  },
-  {
-    "id": "kartverket-fjellskygge",
-    "name": "Kartverket Hillshade overlay",
-    "type": "tms",
-    "template": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=fjellskygge&zoom={zoom}&x={x}&y={y}",
-    "zoomExtent": [9, 15],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://kartkatalog.geonorge.no/metadata/kartverket/fjellskygge-cache/cca7c129-fe66-4c96-9091-40d92290dd81",
-    "terms_text": "© Kartverket",
-    "description": "Hillshade for Norway",
-    "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
-    "overlay": true
-  },
-  {
-    "id": "kartverket-historic",
-    "name": "Kartverket Historic maps",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [5, 15],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.kartverket.no/kart/historiske-kart/",
-    "terms_text": "© Kartverket",
-    "description": "Historic maps - for the time being `Amtskartserien´ 1826-1917.",
-    "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png"
-  },
-  {
-    "id": "kartverket-topo4",
-    "name": "Kartverket N50 topo",
-    "type": "tms",
-    "template": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={zoom}&x={x}&y={y}",
-    "zoomExtent": [3, 15],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/No:Kartverket_import",
-    "terms_text": "© Kartverket",
-    "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-sjokart",
-    "name": "Kartverket Nautical Charts",
-    "type": "tms",
-    "template": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=sjokartraster&zoom={zoom}&x={x}&y={y}",
-    "zoomExtent": [3, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://www.kartverket.no/Kart/Sjokart/",
-    "terms_text": "© Kartverket",
-    "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-vegnett",
-    "name": "Kartverket Road Network",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [3, 24],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.kartverket.no/data/kartdata/vegdata/",
-    "terms_text": "© Kartverket",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "Katowice-buildings",
-    "name": "Katowice: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Katowic"
-  },
-  {
-    "id": "Katowice-aerial_image",
-    "name": "Katowice: Orthophotomap (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Katowic"
-  },
-  {
-    "id": "kystverket-navigasjon",
-    "name": "Kystverket Navigational Aid overlay",
-    "type": "wms",
-    "template": "https://nfs.kystverket.no/arcgis/services/nfs/NFSSistOperativ/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=17,16,15,14,12,10,9,8,7,4&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [12, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://kystverket.no/Maritim-infrastruktur/Fyr-og-merker-/",
-    "terms_text": "© Kystverket",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "osmse-ekonomiska",
-    "name": "Lantmäteriet Economic Map 1950–1980",
-    "type": "tms",
-    "template": "https://mapproxy.openstreetmap.se/tms/1.0.0/ek_EPSG3857/{zoom}/{x}/{-y}.jpeg",
-    "zoomExtent": [3, 17],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.lantmateriet.se",
-    "terms_text": "© Lantmäteriet",
-    "description": "Scan of \"Economic maps\" ca. 1950–1980",
-    "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"
-  },
-  {
-    "id": "lantmateriet-orto1960",
-    "name": "Lantmäteriet Historic Orthophoto 1960",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [5, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.lantmateriet.se/",
-    "terms_text": "© Lantmäteriet, CC0",
-    "description": "Mosaic of Swedish orthophotos from the period 1955–1965. Older and younger pictures may occur.",
-    "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"
-  },
-  {
-    "id": "lantmateriet-orto1975",
-    "name": "Lantmäteriet Historic Orthophoto 1975",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [5, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.lantmateriet.se/",
-    "terms_text": "© Lantmäteriet, CC0",
-    "description": "Mosaic of Swedish orthophotos from the period 1970–1980. Is under construction.",
-    "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"
-  },
-  {
-    "id": "lantmateriet-topowebb",
-    "name": "Lantmäteriet Topographic Map",
-    "type": "tms",
-    "template": "https://api.lantmateriet.se/open/topowebb-ccby/v1/wmts/token/9b342b7d9f12d4ddb92277be9869d860/1.0.0/topowebb/default/3857/{zoom}/{y}/{x}.png",
-    "zoomExtent": [3, 15],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.lantmateriet.se/",
-    "terms_text": "© Lantmäteriet, CC0",
-    "description": "Topographic map of Sweden 1:50 000",
-    "icon": "https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"
-  },
-  {
-    "id": "lu.geoportail.opendata.ortholatest",
-    "name": "Latest available ortho geoportail.lu",
-    "type": "tms",
-    "template": "https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_latest/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
-    "endDate": "2019-08-22T00:00:00.000Z",
-    "startDate": "2019-07-04T00:00:00.000Z",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
-    "terms_text": "Administration du Cadastre et de la Topographie",
-    "best": true,
-    "icon": "https://www.geoportail.lu/static/img/lion.png"
-  },
-  {
-    "id": "CityOfLaunceston_2011",
-    "name": "Launceston OrthoPhoto 2011",
-    "type": "tms",
-    "template": "https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Dec2011_10cm/MapServer/tile/{zoom}/{y}/{x}",
-    "endDate": "2011-12-01T00:00:00.000Z",
-    "startDate": "2011-12-01T00:00:00.000Z",
-    "zoomExtent": [10, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "© City of Launceston",
-    "icon": "https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png"
-  },
-  {
-    "id": "CityOfLaunceston_2013",
-    "name": "Launceston OrthoPhoto 2013",
-    "type": "tms",
-    "template": "https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Feb2013_10cm/MapServer/tile/{zoom}/{y}/{x}",
-    "endDate": "2013-02-15T00:00:00.000Z",
-    "startDate": "2013-02-15T00:00:00.000Z",
-    "zoomExtent": [12, 20],
-    "polygon": [
-      [
-        [147.06561, -41.5081],
-        [147.06547, -41.36487],
-        [147.23734, -41.36464],
-        [147.23786, -41.50787],
-        [147.06561, -41.5081]
-      ]
-    ],
-    "terms_text": "© City of Launceston",
-    "icon": "https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png"
-  },
-  {
-    "id": "Lausanne-2016",
-    "name": "Lausanne - Orthophoto 2016",
-    "type": "tms",
-    "template": "https://osmdata.asitvd.ch/tiles/lausanne2016/{zoom}/{x}/{y}.png",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [10, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://carto.lausanne.ch/lausanne-gc/",
-    "terms_text": "Ville de Lausanne - Orthophoto 2016"
-  },
-  {
-    "id": "linkoping-orto",
-    "name": "Linköping Orthophoto",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [13, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.linkoping.se/open/",
-    "terms_text": "© Linköping municipality",
-    "best": true,
-    "description": "Orthophotos from the municipality of Linköping 2010, open data",
-    "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Linköping_vapen.svg/198px-Linköping_vapen.svg.png"
-  },
-  {
-    "id": "LINZ_NZ_Aerial_Imagery",
-    "name": "LINZ NZ Aerial Imagery",
-    "type": "tms",
-    "template": "https://map.cazzaserver.com/linz_aerial/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data",
-    "terms_text": "Sourced from LINZ CC-BY 4.0",
-    "best": true,
-    "icon": "https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico"
-  },
-  {
-    "id": "LINZ_NZ_Topo50_Gridless_Maps",
-    "name": "LINZ NZ Topo50 Gridless Maps",
-    "type": "tms",
-    "template": "https://map.cazzaserver.com/linz_topo/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.linz.govt.nz/layer/2343-nz-mainland-topo50-gridless-maps",
-    "terms_text": "CC BY 4.0 Land Information New Zealand",
-    "icon": "https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico"
-  },
-  {
-    "id": "ORT10LT",
-    "name": "Lithuania - NŽT ORT10LT",
-    "type": "tms",
-    "template": "https://ort10lt.openmap.lt/g16/{zoom}/{x}/{y}.jpeg",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2010-01-01T00:00:00.000Z",
-    "zoomExtent": [4, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.geoportal.lt",
-    "terms_text": "NŽT ORT10LT",
-    "best": true
-  },
-  {
-    "id": "mapbox_locator_overlay",
-    "name": "Locator Overlay",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmap.map-inh76ba2/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ",
-    "zoomExtent": [0, 16],
-    "overzoom": false,
-    "terms_url": "https://www.mapbox.com/about/maps",
-    "terms_text": "Terms & Feedback",
-    "default": true,
-    "description": "Shows major features to help orient you.",
-    "overlay": true
-  },
-  {
-    "id": "Lodz-buildings",
-    "name": "Łódź: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Łodzi",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"
-  },
-  {
-    "id": "Lodz-2015",
-    "name": "Łódź: Orthophotomap 2015 (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Łodzi",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"
-  },
-  {
-    "id": "Lodz-2017",
-    "name": "Łódź: Orthophotomap 2017 (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Łodzi",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"
-  },
-  {
-    "id": "Loire_Atlantique-Orthophotos-2016",
-    "name": "Loire-Atlantique - Orthophotos 2016 - 10 cm",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://data2.loire-atlantique.fr/licences/",
-    "terms_text": "© Loire-Atlantique ouverture des données publiques"
-  },
-  {
-    "id": "Lombardia-Italy-CTR-DBT",
-    "name": "Lombardia - Italy (CTR DBT)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.dati.gov.it/content/italian-open-data-license-v20",
-    "terms_text": "CTR DBT 10000 Regione Lombardia"
-  },
-  {
-    "id": "Lombardia-Italy-CTR",
-    "name": "Lombardia - Italy (CTR)",
-    "type": "wms",
-    "template": "https://www.cartografia.regione.lombardia.it/ArcGIS10/services/wms/ctr_wms/MapServer/WMSServer?STYLES=&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.dati.gov.it/content/italian-open-data-license-v20",
-    "terms_text": "Regione Lombardia - Infrastruttura per l'informazione territoriale"
-  },
-  {
-    "id": "londrina2011",
-    "name": "Londrina Ortofoto 2011",
-    "type": "tms",
-    "template": "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}",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://siglon.londrina.pr.gov.br",
-    "terms_text": "Prefeitura do Londrinas, PR"
-  },
-  {
-    "id": "LPI_NSW_Administrative_Boundaries_County",
-    "name": "LPI NSW Administrative Boundaries County",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
-    "overlay": true
-  },
-  {
-    "id": "LPI_NSW_Administrative_Boundaries_LGA",
-    "name": "LPI NSW Administrative Boundaries LGA",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
-    "overlay": true
-  },
-  {
-    "id": "LPI_NSW_Administrative_Boundaries_NPWS_Reserve",
-    "name": "LPI NSW Administrative Boundaries NPWS Reserve",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
-    "overlay": true
-  },
-  {
-    "id": "LPI_NSW_Administrative_Boundaries_Parish",
-    "name": "LPI NSW Administrative Boundaries Parish",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
-    "overlay": true
-  },
-  {
-    "id": "LPI_NSW_Administrative_Boundaries_StateForest",
-    "name": "LPI NSW Administrative Boundaries State Forest",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
-    "overlay": true
-  },
-  {
-    "id": "LPI_NSW_Administrative_Boundaries_Suburb",
-    "name": "LPI NSW Administrative Boundaries Suburb",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
-    "overlay": true
-  },
-  {
-    "id": "NSW_LPI_BaseMap",
-    "name": "LPI NSW Base Map",
-    "type": "tms",
-    "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Base_Map/MapServer/tile/{zoom}/{y}/{x}",
-    "zoomExtent": [1, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"
-  },
-  {
-    "id": "NSW_LPI_Imagery",
-    "name": "LPI NSW Imagery",
-    "type": "tms",
-    "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/tile/{zoom}/{y}/{x}",
-    "zoomExtent": [1, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "best": true,
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"
-  },
-  {
-    "id": "NSW_LPI_Imagery_Dates",
-    "name": "LPI NSW Imagery Dates",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico",
-    "overlay": true
-  },
-  {
-    "id": "NSW_LPI_TopographicMap",
-    "name": "LPI NSW Topographic Map",
-    "type": "tms",
-    "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/tile/{zoom}/{y}/{x}",
-    "zoomExtent": [1, 16],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.spatial.nsw.gov.au/mapping_and_imagery/lpi_web_services",
-    "terms_text": "© Department of Customer Service 2019",
-    "icon": "https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"
-  },
-  {
-    "id": "Arenda_OAM",
-    "name": "Lupang Arenda, Taytay Drone Imagery",
-    "type": "tms",
-    "template": "https://tiles.openaerialmap.org/5d25d7bf161a790005c03e6e/0/5d25d7bf161a790005c03e6f/{zoom}/{x}/{y}.png",
-    "zoomExtent": [16, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "best": true
-  },
-  {
-    "id": "orthophoto_lyon_2012",
-    "name": "Lyon Orthophoto 2012-03 10cm",
-    "type": "wms",
-    "template": "https://download.data.grandlyon.com/wms/grandlyon?language=fre&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1830_5150_10cm_CC46,1830_5155_10cm_CC46,1830_5160_10cm_CC46,1830_5165_10cm_CC46,1830_5170_10cm_CC46,1830_5175_10cm_CC46,1830_5180_10cm_CC46,1830_5185_10cm_CC46,1830_5190_10cm_CC46,1835_5150_10cm_CC46,1835_5155_10cm_CC46,1835_5160_10cm_CC46,1835_5165_10cm_CC46,1835_5170_10cm_CC46,1835_5175_10cm_CC46,1835_5180_10cm_CC46,1835_5185_10cm_CC46,1835_5190_10cm_CC46,1840_5150_10cm_CC46,1840_5155_10cm_CC46,1840_5160_10cm_CC46,1840_5165_10cm_CC46,1840_5170_10cm_CC46,1840_5175_10cm_CC46,1840_5180_10cm_CC46,1840_5185_10cm_CC46,1840_5190_10cm_CC46,1845_5150_10cm_CC46,1845_5155_10cm_CC46,1845_5160_10cm_CC46,1845_5165_10cm_CC46,1845_5170_10cm_CC46,1845_5175_10cm_CC46,1845_5180_10cm_CC46,1845_5185_10cm_CC46,1845_5190_10cm_CC46,1850_5155_10cm_CC46,1850_5160_10cm_CC46,1850_5165_10cm_CC46,1850_5170_10cm_CC46,1850_5175_10cm_CC46,1850_5180_10cm_CC46,1850_5185_10cm_CC46,1855_5155_10cm_CC46,1855_5165_10cm_CC46,1855_5170_10cm_CC46,1855_5175_10cm_CC46,1855_5180_10cm_CC46,1855_5185_10cm_CC46,1860_5155_10cm_CC46,1860_5160_10cm_CC46,1860_5165_10cm_CC46,1860_5170_10cm_CC46,1860_5175_10cm_CC46,1860_5180_10cm_CC46,1860_5185_10cm_CC46,1865_5155_10cm_CC46,1865_5160_10cm_CC46,1865_5165_10cm_CC46,1865_5170_10cm_CC46&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2012-03-01T00:00:00.000Z",
-    "startDate": "2012-03-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.grandlyon.com/imagerie/orthophotographie-2012-du-grand-lyon",
-    "terms_text": "Grand Lyon Smart Data DSIT"
-  },
-  {
-    "id": "orthophoto_lyon",
-    "name": "Lyon Orthophoto 8cm",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.fr/tms/1.0.0/lyon/{zoom}/{x}/{y}",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2015-05-01T00:00:00.000Z",
-    "zoomExtent": [2, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.grandlyon.com/imagerie/orthophotographie-2015-du-grand-lyon/",
-    "terms_text": "Métropole de Lyon DINSI"
-  },
-  {
-    "id": "MainRoadsWA_Road_Hierarchy",
-    "name": "Main Roads WA Road Hierarchy",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://catalogue.data.wa.gov.au/dataset/clss-road-hierarchy",
-    "terms_text": "Main Roads Western Australia",
-    "overlay": true
-  },
-  {
-    "id": "mainzlatestaerialimagery",
-    "name": "Mainz latest aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [12, 22],
-    "polygon": [
-      [
-        [8.10355, 49.865],
-        [8.38356, 49.865],
-        [8.38356, 50.0466],
-        [8.10355, 50.0466],
-        [8.10355, 49.865]
-      ]
-    ],
-    "terms_url": "https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos",
-    "terms_text": "Vermessung und Geoinformation Mainz",
-    "icon": "https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png"
-  },
-  {
-    "id": "major_isidoro",
-    "name": "Major Isidoro AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-36.94048, -9.57588],
-        [-36.94106, -9.48536],
-        [-37.03215, -9.48606],
-        [-37.03164, -9.57639],
-        [-36.94048, -9.57588]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "Mapbox",
-    "name": "Mapbox Satellite",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/mapbox.satellite/{zoom}/{x}/{y}@2x.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ",
-    "tileSize": 512,
-    "zoomExtent": [0, 22],
-    "terms_url": "https://www.mapbox.com/about/maps",
-    "terms_text": "Terms & Feedback",
-    "default": true,
-    "description": "Satellite and aerial imagery.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/MapBoxSatellite.png"
-  },
-  {
-    "id": "Maps4BW-LGL_BW",
-    "name": "Maps4BW (LGL-BW, www.lgl-bw.de)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.lgl-bw.de/",
-    "terms_text": "Datengrundlage: LGL, www.lgl-bw.de"
-  },
-  {
-    "id": "mar_vermelho_al",
-    "name": "Mar Vermelho AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "MassGIS-L3-Parcels",
-    "name": "MassGIS L3 Parcels",
-    "type": "tms",
-    "template": "https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/MassGIS_Level3_Parcels/MapServer/tile/{zoom}/{y}/{x}",
-    "zoomExtent": [15, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "overlay": true
-  },
-  {
-    "id": "Maxar_19-20_Australian_Bushfires_PreEvent",
-    "name": "Maxar 2019-2020 Australian Bushfires Pre-event",
-    "type": "tms",
-    "template": "https://cogeoxyz.b-cdn.net/6b6f479fbacd9a42e9e38bc5c0c6889f009beae13b07742ec4a1648f/{zoom}/{x}/{y}.jpg",
-    "endDate": "2019-10-18T00:00:00.000Z",
-    "startDate": "2018-01-20T00:00:00.000Z",
-    "zoomExtent": [11, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.digitalglobe.com/ecosystem/open-data/australia-wildfires",
-    "terms_text": "©2020 DigitalGlobe"
-  },
-  {
-    "id": "Maxar-Premium",
-    "name": "Maxar Premium Imagery (Beta)",
-    "type": "tms",
-    "template": "7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f041cc9f8df06b0345600376663e7dc1cdbc7df16876d8b5d006ed5782e6af4bfe2ff5a292",
-    "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
-    "terms_text": "Terms & Feedback",
-    "default": true,
-    "description": "Maxar Premium is a mosaic composed of Maxar basemap with select regions filled with +Vivid or custom area of interest imagery, 50cm resolution or better, and refreshed more frequently with ongoing updates.",
-    "encrypted": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/Maxar.png"
-  },
-  {
-    "id": "Maxar-Standard",
-    "name": "Maxar Standard Imagery (Beta)",
-    "type": "tms",
-    "template": "7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f010c8c9d7fb6b534560012461377dc1cdb672f16827dfe0d005bf5685b7ac4ea97cf5f795",
-    "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
-    "terms_text": "Terms & Feedback",
-    "default": true,
-    "description": "Maxar Standard is a curated set of imagery covering 86% of the earth’s landmass, with 30-60cm resolution where available, backfilled by Landsat. Average age is 2.31 years, with some areas updated 2x per year.",
-    "encrypted": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/Maxar.png"
-  },
-  {
-    "id": "geodata.md.gov-MD_SixInchImagery",
-    "name": "MD Latest 6 Inch Aerial Imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
-    "terms_text": "DoIT, MD iMap, MDP",
-    "description": "Six Inch resolution aerial imagery for the State of Maryland"
-  },
-  {
-    "id": "geodata.md.gov-MD_ThreeInchImagery",
-    "name": "MD Three Inch Aerial Imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
-    "terms_text": "DoIT, MD iMap, MDP",
-    "description": "Three Inch Resolution Imagery for the cities of Rockville, Gaithersburg and Annapolis"
-  },
-  {
-    "id": "geodata.md.gov-MD_ColorBasemap",
-    "name": "MD Transportation Basemap",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
-    "terms_text": "DoIT, MD iMap, MDP",
-    "description": "Maryland State Highway Administration road features and additional Maryland focused landmarks"
-  },
-  {
-    "id": "MCGIS-County-NAIP-Imagery-2015",
-    "name": "Mesa County GIS NAIP 2015",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://gis.mesacounty.us/",
-    "terms_text": "Mesa County GIS",
-    "icon": "https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"
-  },
-  {
-    "id": "MCGIS-County-NAIP-Imagery-2017",
-    "name": "Mesa County GIS NAIP 2017",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2017-10-24T00:00:00.000Z",
-    "startDate": "2017-08-26T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://gis.mesacounty.us/",
-    "terms_text": "Mesa County GIS",
-    "icon": "https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"
-  },
-  {
-    "id": "MCGIS-County-Valleywide-Imagery-2018",
-    "name": "Mesa County GIS Valleywide 2018",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://gis.mesacounty.us/",
-    "terms_text": "Mesa County GIS",
-    "icon": "https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"
-  },
-  {
-    "id": "Metropole_Ruhr_RVR-DOP10",
-    "name": "Metropole Ruhr: Luftbilder (10 cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.metropoleruhr.de/regionalverband-ruhr.html",
-    "terms_text": "Datengrundlage: Regionalverband Ruhr"
-  },
-  {
-    "id": "miljodirektoratet-vern",
-    "name": "Miljødirektoratet Protected Areas overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://kart.naturbase.no",
-    "terms_text": "© Miljødirektoratet",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "miljodirektoratet-friluftsomrader",
-    "name": "Miljødirektoratet Public Recreation Areas overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://kartkatalog.miljodirektoratet.no/Dataset/Details/30",
-    "terms_text": "© Miljødirektoratet",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "minador_do_negrao",
-    "name": "Minador do Negrão",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "mml-tausta",
-    "name": "MML Background Map",
-    "type": "tms",
-    "template": "https://tiles.kartat.kapsi.fi/taustakartta/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [2, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.maanmittauslaitos.fi/en",
-    "terms_text": "© Maanmittauslaitos",
-    "description": "Background map from the National Land Survey of Finland",
-    "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
-  },
-  {
-    "id": "mml-orto",
-    "name": "MML Orthophoto",
-    "type": "tms",
-    "template": "https://tiles.kartat.kapsi.fi/ortokuva/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [2, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.maanmittauslaitos.fi/en",
-    "terms_text": "© Maanmittauslaitos",
-    "best": true,
-    "description": "Ortophotos from the National Land Survey of Finland",
-    "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
-  },
-  {
-    "id": "mml-topo",
-    "name": "MML Topographic Map",
-    "type": "tms",
-    "template": "https://tiles.kartat.kapsi.fi/peruskartta/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [2, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.maanmittauslaitos.fi/en",
-    "terms_text": "© Maanmittauslaitos",
-    "description": "Topographic map from the National Land Survey of Finland",
-    "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
-  },
-  {
-    "id": "mtbmap-no",
-    "name": "MTBmap.no",
-    "type": "tms",
-    "template": "https://mtbmap.no/tiles/osm/mtbmap/{zoom}/{x}/{y}.jpg",
-    "tileSize": 512,
-    "zoomExtent": [3, 14],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.mtbmap.no/",
-    "terms_text": "© MTBmap.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": "Mulhouse_2018",
-    "name": "Mulhouse - 2018",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.fr/tms/1.0.0/mulhouse_2018/{zoom}/{x}/{y}",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.mulhouse-alsace.fr/explore/dataset/m2a_orthophotographie-2018/information/",
-    "terms_text": "Mulhouse Alsace Agglomération 2018"
-  },
-  {
-    "id": "MunichLatestAerialImagery",
-    "name": "Munich latest aerial imagery 60cm",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [11, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.muenchen.de/rathaus/Stadtverwaltung/Kommunalreferat/geodatenservice.html",
-    "terms_text": "Datenquelle: dl-de/by-2-0: Landeshauptstadt München – Kommunalreferat – GeodatenService – www.geodatenservice-muenchen.de",
-    "icon": "https://www.muenchen.de/media/css/images/favicon_114x114.png"
-  },
-  {
-    "id": "openlabs-geoportal-public-transport",
-    "name": "Municipality of Tirana - Public Transport (Open Labs GeoPortal) (overlay)",
-    "type": "tms",
-    "template": "https://geoportal.openlabs.cc/mapcache/tms/1.0.0/public-transport@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [19.73762, 41.30154],
-        [19.88628, 41.27213],
-        [19.86877, 41.38582],
-        [19.68338, 41.3732],
-        [19.73762, 41.30154]
-      ]
-    ],
-    "terms_url": "https://geoportal.openlabs.cc/",
-    "terms_text": "Data provided by the Muncipality of Tirana hosted by Open Labs",
-    "description": "Bus stops & lines provided by the Muncipality of Tirana hosted by Open Labs",
-    "overlay": true
-  },
-  {
-    "id": "openlabs-geoportal-tirana",
-    "name": "Municipality of Tirana (Open Labs GeoPortal)",
-    "type": "tms",
-    "template": "https://geoportal.openlabs.cc/mapcache/tms/1.0.0/tirana@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.openlabs.cc",
-    "terms_text": "Data provided by the Muncipality of Tirana hosted by Open Labs",
-    "description": "Streets & Builings provided by the Muncipality of Tirana hosted by Open Labs"
-  },
-  {
-    "id": "USDA-NAIP",
-    "name": "National Agriculture Imagery Program",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [12, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "description": "The most recent year of DOQQs from the National Agriculture Imagery Program (NAIP) for each state in the contiguous United States.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/USDA.png"
-  },
-  {
-    "id": "NC-US",
-    "name": "NC Latest Orthoimagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2010-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "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"
-  },
-  {
-    "id": "img.nj.gov-Infrared2015",
-    "name": "NJ 2015 Aerial Imagery (Infrared)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2015-05-03T00:00:00.000Z",
-    "startDate": "2015-03-29T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D",
-    "terms_text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)",
-    "description": "Digital orthophotography of New Jersey, Near Infrared, 1 foot resolution"
-  },
-  {
-    "id": "img.nj.gov-Natural2015",
-    "name": "NJ 2015 Aerial Imagery (Natural Color)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2015-05-03T00:00:00.000Z",
-    "startDate": "2015-03-29T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D",
-    "terms_text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)",
-    "description": "Digital orthophotography of New Jersey, Natural Color, 1 foot resolution"
-  },
-  {
-    "id": "NLSC-EMAP5",
-    "name": "NLSC General Map with Contour line",
-    "type": "tms",
-    "template": "https://wmts.nlsc.gov.tw/wmts/EMAP5_OPENDATA/default/EPSG:3857/{zoom}/{y}/{x}",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 15],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://maps.nlsc.gov.tw",
-    "terms_text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
-    "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": "IBGE_Salvador_Streets",
-    "name": "Nomes de Ruas IBGE Salvador-BA",
-    "type": "tms",
-    "template": "https://api.mapbox.com/styles/v1/wille/cj8lp78dn62wl2rquim47qo0g/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "description": "Streets geometry and names of Salvador, Bahia. Source: Faces de Logradouro - IBGE.",
-    "overlay": true
-  },
-  {
-    "id": "kelkkareitit",
-    "name": "Nordic snowmobile overlay",
-    "type": "tms",
-    "template": "https://tiles.kelkkareitit.fi/kelkkareitit/{zoom}/{x}/{y}.png",
-    "zoomExtent": [3, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://kelkkareitit.fi/",
-    "terms_text": "© Kelkkareitit.fi",
-    "description": "Kelkkareitit.fi snowmobile trails from OSM (Nordic coverage)",
-    "icon": "https://kelkkareitit.fi/img/favicon.png",
-    "overlay": true
-  },
-  {
-    "id": "geovekst-nib",
-    "name": "Norway Orthophoto",
-    "type": "tms",
-    "template": "https://waapi.webatlas.no/maptiles/tiles/webatlas-orto-newup/wa_grid/{zoom}/{x}/{y}.jpeg?api_key=b8e36d51-119a-423b-b156-d744d54123d5",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.norgeibilder.no",
-    "terms_text": "© Geovekst",
-    "best": true,
-    "description": "Norwegian orthophotos (max zoom 21), courtesy of Geovekst and Norkart.",
-    "icon": "https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png"
-  },
-  {
-    "id": "geovekst-nib2",
-    "name": "Norway Orthophoto (more recent, less zoom)",
-    "type": "tms",
-    "template": "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}",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.norgeibilder.no",
-    "terms_text": "© Geovekst",
-    "best": true,
-    "description": "Most recent Norwegian orthophotos (max zoom 19), courtesy of Geovekst and Kartverket.",
-    "icon": "https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png"
-  },
-  {
-    "id": "npd-offshore",
-    "name": "NPD Offshore Installations overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [6, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.npd.no/no/Kart/Faktakart/",
-    "terms_text": "© Oljedirektoratet",
-    "description": "Production platforms and oil/natural gas fields on the Norwegian continental shelf",
-    "icon": "https://register.geonorge.no/data/organizations/870917732_od_liten.png",
-    "overlay": true
-  },
-  {
-    "id": "nve-snoskred",
-    "name": "NVE Avalanche Danger Areas overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [5, 13],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.nve.no/flaum-og-skred/kartlegging/aktsemdkart/aktsomhetskart-for-snoskred/",
-    "terms_text": "© NVE",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "nve-nettanlegg",
-    "name": "NVE Electricity Network overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [6, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.nve.no/karttjenester/",
-    "terms_text": "© NVE",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "nve-vannkraft",
-    "name": "NVE Hydropower Plants overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [6, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.nve.no/karttjenester/",
-    "terms_text": "© NVE",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "nve-vindkraft",
-    "name": "NVE Wind Power Plants overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [6, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.nve.no/karttjenester/",
-    "terms_text": "© NVE",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "orthos.dhses.ny.gov_latest",
-    "name": "NYS Orthos Online",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://gis.ny.gov/gateway/orthoprogram/index.cfm",
-    "terms_text": "New York State Statewide Digital Orthoimagery Program",
-    "description": "New York State High Resolution Digital Orthoimagery, 1 foot resolution",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/ny/NYS_Orthos_Online.png"
-  },
-  {
-    "id": "olho_dagua_do_casado",
-    "name": "Olho d'Agua do Casado AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "osmbe-nl",
-    "name": "OpenStreetMap (Belgian Style - Dutch)",
-    "type": "tms",
-    "template": "https://tile.openstreetmap.be/osmbe-nl/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://openstreetmap.org/",
-    "terms_text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"
-  },
-  {
-    "id": "osmbe-fr",
-    "name": "OpenStreetMap (Belgian Style - French)",
-    "type": "tms",
-    "template": "https://tile.openstreetmap.be/osmbe-fr/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://openstreetmap.org/",
-    "terms_text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"
-  },
-  {
-    "id": "MAPNIK",
-    "name": "OpenStreetMap (Standard)",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 19],
-    "terms_url": "https://www.openstreetmap.org",
-    "terms_text": "© OpenStreetMap contributors, CC-BY-SA 2.0",
-    "default": true,
-    "description": "The default OpenStreetMap layer.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"
-  },
-  {
-    "id": "osm-gps",
-    "name": "OpenStreetMap GPS traces",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 20],
-    "terms_url": "https://www.openstreetmap.org/copyright",
-    "terms_text": "© OpenStreetMap contributors",
-    "terms_html": "GPS Direction:       © OpenStreetMap contributors.",
-    "description": "Public GPS traces uploaded to OpenStreetMap.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png",
-    "overlay": true
-  },
-  {
-    "id": "osm-hu-ortho",
-    "name": "openstreetmap.hu orthophotos",
-    "type": "tms",
-    "template": "http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/openstreetmap.hu.orthophotos/mercator/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "openstreetmap.hu"
-  },
-  {
-    "id": "OpenTopoMap",
-    "name": "OpenTopoMap",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.tile.opentopomap.org/{zoom}/{x}/{y}.png",
-    "zoomExtent": [3, 17],
-    "terms_url": "https://tile.opentopomap.org/about#verwendung",
-    "terms_text": "Kartendaten: © OpenStreetMap-Mitwirkende, SRTM | Kartendarstellung: © OpenTopoMap (CC-BY-SA)",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/world/OpenTopoMap.png"
-  },
-  {
-    "id": "lu.geoportail.opendata.ortho2017",
-    "name": "Ortho 2017 geoportail.lu",
-    "type": "tms",
-    "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2017/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
-    "endDate": "2017-06-22T00:00:00.000Z",
-    "startDate": "2017-06-14T00:00:00.000Z",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
-    "terms_text": "Administration du Cadastre et de la Topographie",
-    "icon": "https://www.geoportail.lu/static/img/lion.png"
-  },
-  {
-    "id": "lu.geoportail.opendata.ortho2018",
-    "name": "Ortho 2018 geoportail.lu",
-    "type": "tms",
-    "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2018/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
-    "endDate": "2018-08-05T00:00:00.000Z",
-    "startDate": "2018-07-02T00:00:00.000Z",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
-    "terms_text": "Administration du Cadastre et de la Topographie",
-    "icon": "https://www.geoportail.lu/static/img/lion.png"
-  },
-  {
-    "id": "ORTOFOTO_V1",
-    "name": "Orthophoto 1st cycle (1994-1999) - Latvia",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Latvijas Ģeotelpiskās informācijas aģentūras brīvais WMS serviss 1994 - 1999.gada Latvijas ortofotokarte"
-  },
-  {
-    "id": "ORTOS_DGRF_2004_06",
-    "name": "Ortofotos DGRF 2004-2006 (WMS)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2006-01-01T00:00:00.000Z",
-    "startDate": "2004-01-01T00:00:00.000Z",
-    "zoomExtent": [14, 19],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.dgterritorio.pt/dados_abertos/ortofotos/",
-    "terms_text": "Direcção-Geral do Território",
-    "icon": "http://www.igeo.pt/favicon.ico"
-  },
-  {
-    "id": "ORTOS_DGT_2014_15",
-    "name": "Ortofotos Litoral DGT 2014-2015 (WMS)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [1, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.dgterritorio.pt/",
-    "terms_text": "Direcção-Geral do Território",
-    "icon": "http://www.igeo.pt/favicon.ico"
-  },
-  {
-    "id": "OS-OpenData_Locator",
-    "name": "OS OpenData Locator",
-    "type": "tms",
-    "template": "https://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "overlay": true
-  },
-  {
-    "id": "OS-OpenData_StreetView",
-    "name": "OS OpenData StreetView",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
-    "zoomExtent": [1, 18],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "OSIP_1ft",
-    "name": "OSIP 1ft Imagery Most Current Available",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx",
-    "terms_text": "Ohio Statewide Imagery Program",
-    "description": "Most recent available 1-foot orthoimagery from the Ohio Statewide Imagery Program."
-  },
-  {
-    "id": "OSIP_6in",
-    "name": "OSIP 6in Imagery Most Current Available",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2010-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx",
-    "terms_text": "Ohio Statewide Imagery Program",
-    "description": "Most recent available 6-inch orthoimagery from the Ohio Statewide Imagery Program."
-  },
-  {
-    "id": "osm-hr-knin-2007",
-    "name": "osm-hr: Knin 2007 Aerial imagery",
-    "type": "tms",
-    "template": "https://tms.osm-hr.org/knin-2007/{zoom}/{x}/{-y}.png",
-    "endDate": "2007-01-01T00:00:00.000Z",
-    "startDate": "2007-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"
-  },
-  {
-    "id": "osm-hr-orbview",
-    "name": "osm-hr: Orbview",
-    "type": "tms",
-    "template": "https://tms.osm-hr.org/orbview/{zoom}/{x}/{-y}.png",
-    "endDate": "2007-01-01T00:00:00.000Z",
-    "startDate": "2003-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 17],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"
-  },
-  {
-    "id": "osm-hr-ustopo50",
-    "name": "osm-hr: US Topo 50",
-    "type": "tms",
-    "template": "https://tms.osm-hr.org/ustopo/{zoom}/{x}/{y}.png",
-    "endDate": "2002-01-01T00:00:00.000Z",
-    "startDate": "1992-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 15],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"
-  },
-  {
-    "id": "osm-hr-zagreb-2012",
-    "name": "osm-hr: Zagreb 2012 Aerial imagery",
-    "type": "tms",
-    "template": "https://tms.osm-hr.org/zagreb-2012/{zoom}/{x}/{-y}.png",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.zagreb.hr/",
-    "terms_text": "Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"
-  },
-  {
-    "id": "osm-hr-zagreb-2018",
-    "name": "osm-hr: Zagreb 2018 Aerial imagery",
-    "type": "tms",
-    "template": "https://tms.osm-hr.org/zagreb-2018/{zoom}/{x}/{-y}.png",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.zagreb.hr/",
-    "terms_text": "Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada",
-    "best": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"
-  },
-  {
-    "id": "osmie_tie_not_counties",
-    "name": "OSMIE T.ie Land not in Counties",
-    "type": "tms",
-    "template": "https://www.townlands.ie/tiles/not_counties/{zoom}/{x}/{y}.png",
-    "zoomExtent": [2, 19],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "icon": "https://www.townlands.ie/static/logo_small.png"
-  },
-  {
-    "id": "al_palestina",
-    "name": "Palestina AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "palmeira_dos_indios",
-    "name": "Palmeira dos Indios AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "Pangasinan_Bulacan_HiRes",
-    "name": "Pangasinán/Bulacan (Philippines HiRes)",
-    "type": "tms",
-    "template": "https://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png",
-    "zoomExtent": [12, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "pao_de_acucar",
-    "name": "Pão de Açucar AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "PCN-Italy-2006",
-    "name": "PCN 2006 - Italy",
-    "type": "wms",
-    "template": "http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_06.map&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OI.ORTOIMMAGINI.2006.33,OI.ORTOIMMAGINI.2006.32&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2006-01-01T00:00:00.000Z",
-    "startDate": "2006-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "PCN-Lazio_Umbria-2008",
-    "name": "PCN 2008 - IT Lazio+Umbria",
-    "type": "wms",
-    "template": "http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_08.map&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OI.ORTOIMMAGINI.2008.33&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2008-01-01T00:00:00.000Z",
-    "startDate": "2008-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "PCN-Italy-2012",
-    "name": "PCN 2012 - Italy",
-    "type": "wms",
-    "template": "http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_12.map&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.ORTOIMMAGINI.2012&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:4326",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "Actueel_ortho25_WMS",
-    "name": "PDOK aerial imagery Beeldmateriaal.nl 25cm latest",
-    "type": "tms",
-    "template": "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}",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_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",
-    "terms_text": "Kadaster / Beeldmateriaal.nl, CC BY 4.0",
-    "best": true,
-    "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": "al_piranhas",
-    "name": "Piranhas AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "PNOA-Spain-TMS",
-    "name": "PNOA Spain",
-    "type": "tms",
-    "template": "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}",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_text": "PNOA",
-    "best": true
-  },
-  {
-    "id": "poco_das_trincheiras",
-    "name": "Poço das Trincheiras AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "e-mapa.net-buildings",
-    "name": "polska.e-mapa.net: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://polska.e-mapa.net/",
-    "terms_text": "polska.e-mapa.net - Geoportal otwartych danych przestrzennych",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/polskae-mapanetBuildings.png"
-  },
-  {
-    "id": "debicki-buildings",
-    "name": "Powiat dębicki: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Powiat dębicki",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "lancucki-buildings",
-    "name": "Powiat łańcucki: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Powiat łańcucki",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "lubaczowski-buildings",
-    "name": "Powiat lubaczowski: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Powiat lubaczowski",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "poznanski-buildings",
-    "name": "Powiat poznański: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "PODGIK Poznań",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatpoznaskiOrthophotomap(aerialimage).png"
-  },
-  {
-    "id": "sropczyce-buildings",
-    "name": "Powiat ropczycko-sędziszowski: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Powiat ropczycko-sędziszowski",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "rzeszowski-buildings",
-    "name": "Powiat rzeszowski: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Powiat rzeszowski",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "rzeszowski-aerial",
-    "name": "Powiat rzeszowski: Orthophotomap (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Powiat rzeszowski",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "stalowowolski-buildings",
-    "name": "Powiat stalowowolski: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Powiat stalowowolski",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "poznan-buildings",
-    "name": "Poznań: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Zarząd Geodezji i Katastru Miejskiego GEOPOZ"
-  },
-  {
-    "id": "poznan-ortofotomapa2014",
-    "name": "Poznań: Orthophotomap 2014 (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Zarząd Geodezji i Katastru Miejskiego GEOPOZ"
-  },
-  {
-    "id": "poznan-ortofotomapa2016",
-    "name": "Poznań: Orthophotomap 2016 (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Zarząd Geodezji i Katastru Miejskiego GEOPOZ"
-  },
-  {
-    "id": "PrahaIPRlatestorthophoto",
-    "name": "Praha IPR latest orthophoto",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [1, 20],
-    "polygon": [
-      [
-        [14.81232, 49.93089],
-        [14.18755, 49.87687],
-        [14.12025, 50.19882],
-        [14.74502, 50.25247],
-        [14.81232, 49.93089]
-      ]
-    ]
-  },
-  {
-    "id": "PrahaIPRlow-vegetationorthophoto",
-    "name": "Praha IPR low-vegetation orthophoto",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [1, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "przemysl-buildings",
-    "name": "Przemyśl: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Miasto Przemyśl",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "przemysl-aerial",
-    "name": "Przemyśl: Ortophotomap (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Miasto Przemyśl",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"
-  },
-  {
-    "id": "RABA-KGZ-3000",
-    "name": "RABA-KGZ: Slovenia built-up areas",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.de/tms/RABA3000/{zoom}/{x}/{y}.png",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ",
-    "terms_text": "Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png"
-  },
-  {
-    "id": "RABA-KGZ",
-    "name": "RABA-KGZ: Slovenia farmland use",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.de/tms/RABA/{zoom}/{x}/{y}.png",
-    "zoomExtent": [8, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ",
-    "terms_text": "Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png"
-  },
-  {
-    "id": "riksantikvaren-kulturminner",
-    "name": "Riksantikvaren Heritage Sites overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [13, 22],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://www.riksantikvaren.no/Veiledning/Data-og-tjenester/Karttjenester",
-    "terms_text": "© Riksantikvaren",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "rio2013",
-    "name": "Rio Mosaic 2013",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2013_UTM/MapServer",
-    "terms_text": "Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."
-  },
-  {
-    "id": "rio2015",
-    "name": "Rio Mosaic 2015",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 13],
-    "polygon": [
-      [
-        [-42.30363, -22.43698],
-        [-44.10842, -22.06579],
-        [-44.5313, -23.7863],
-        [-42.70469, -24.16178],
-        [-42.30363, -22.43698]
-      ]
-    ],
-    "terms_url": "https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2015_UTM/MapServer",
-    "terms_text": "Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."
-  },
-  {
-    "id": "route500",
-    "name": "Route 500",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.tile.openstreetmap.fr/route500/{zoom}/{x}/{y}.png",
-    "zoomExtent": [12, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE",
-    "terms_text": "Tiles © cquest@Openstreetmap France, data © IGN, LO/OL",
-    "description": "Routes du réseau classé (autoroutes, nationales, départementales)",
-    "overlay": true
-  },
-  {
-    "id": "Ruda_Slaska-aerial_image",
-    "name": "Ruda Śląska: Orthophotomap (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Ruda Śląska"
-  },
-  {
-    "id": "Rzeszow-buildings",
-    "name": "Rzeszów: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Rzeszowa"
-  },
-  {
-    "id": "Rzeszow-aerial_image",
-    "name": "Rzeszów: Orthophotomap (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Rzeszowa"
-  },
-  {
-    "id": "SanJuanMetroAreaUSACEOrthophotos",
-    "name": "San Juan Metro Area: 2013 USACE Orthophotos",
-    "type": "tms",
-    "template": "http://imagery-pr-usace-2013.s3-website-us-east-1.amazonaws.com/tiles/{zoom}/{x}/{y}.jpg",
-    "endDate": "2013-03-15T00:00:00.000Z",
-    "startDate": "2013-03-13T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "santana_do_ipanema",
-    "name": "Santana do Ipanema AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "Sao_miguel_dos_campos",
-    "name": "São Miguel dos Campos AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-36.1415, -9.83171],
-        [-36.05047, -9.83246],
-        [-36.04959, -9.74246],
-        [-36.14059, -9.74166],
-        [-36.1415, -9.83171]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "GEOSN-DOP-2005",
-    "name": "Saxony historical aerial imagery 2005",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2005-01-01T00:00:00.000Z",
-    "startDate": "2005-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=3f38c3f3-03db-4a2a-b6da-2704b9a1d5f0",
-    "terms_text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"
-  },
-  {
-    "id": "GEOSN-DOP-2012_2014",
-    "name": "Saxony historical aerial imagery 2012-2014",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=8c276e3c-88af-462f-8128-6900bc7dd4f8",
-    "terms_text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"
-  },
-  {
-    "id": "GEOSN-DOP-RGB",
-    "name": "Saxony latest aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=cd01c334-7e32-482f-bd43-af286707178a",
-    "terms_text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
-    "best": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"
-  },
-  {
-    "id": "GEOSN-DOP-CIR",
-    "name": "Saxony latest aerial imagery infrared",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=ba87bbed-4cb5-4539-a9f5-f863de752f52",
-    "terms_text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"
-  },
-  {
-    "id": "GEOSN-DTK",
-    "name": "Saxony topographic map",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=d6d24c6d-94ea-447d-8a0c-40afdedeb5c6",
-    "terms_text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"
-  },
-  {
-    "id": "GEOSN-WebAtlas",
-    "name": "Saxony WebAtlasSN",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=475a9197-620f-4dcb-b8aa-7f71b626443f",
-    "terms_text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"
-  },
-  {
-    "id": "Geodatastyrelsen_Denmark",
-    "name": "SDFE aerial imagery",
-    "type": "tms",
-    "template": "https://osmtools.septima.dk/mapproxy/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://download.kortforsyningen.dk/content/vilkaar-og-betingelser",
-    "terms_text": "Geodatastyrelsen og Danske Kommuner",
-    "best": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"
-  },
-  {
-    "id": "Geodatastyrelsen_Cadastral_Parcels_INSPIRE_View",
-    "name": "SDFE Cadastral Parcels INSPIRE View",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geodatastyrelsen og Danske Kommuner",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"
-  },
-  {
-    "id": "Geodatastyrelsen_DTK_Kort25",
-    "name": "SDFE DTK Kort25",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geodatastyrelsen og Danske Kommuner",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"
-  },
-  {
-    "id": "Geodatastyrelsen_Skaermkort",
-    "name": "SDFE Skærmkort",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geodatastyrelsen og Danske Kommuner",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"
-  },
-  {
-    "id": "SDFE_Overflade_Skyggekort_40cm",
-    "name": "SDFE Surface Shadow Map (40 cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geodatastyrelsen og Danske Kommuner",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"
-  },
-  {
-    "id": "SDFE_Terraen_Skyggekort_40cm",
-    "name": "SDFE Terrain Shadow Map (40 cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Geodatastyrelsen og Danske Kommuner",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"
-  },
-  {
-    "id": "Sicily-ATA2007",
-    "name": "Sicily - Italy",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "Siemianowice_Slaskie-buildings",
-    "name": "Siemianowice Śląskie: Buildings",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Siemianowice Śląskie"
-  },
-  {
-    "id": "Siemianowice_Slaskie-aerial_image",
-    "name": "Siemianowice Śląskie: Orthophotomap (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Siemianowice Śląskie"
-  },
-  {
-    "id": "sc2012",
-    "name": "SIG Santa Catarina OrtoRGB 2012",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://sigsc.sds.sc.gov.br/download/termo_sigsc.pdf",
-    "terms_text": "Sistema de Informações Geográficas - Governo de Santa Catarina"
-  },
-  {
-    "id": "SIGIP-2012",
-    "name": "SIGIP - Orthophoto 2012",
-    "type": "tms",
-    "template": "https://osmdata.asitvd.ch/tiles/sigip2012/{zoom}/{x}/{y}.png",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [14, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.sigip.ch/",
-    "terms_text": "SIGIP"
-  },
-  {
-    "id": "Singapore-Landlot",
-    "name": "Singapore Landlot",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.onemap.sg/legal/opendatalicence.html",
-    "terms_text": "©OneMap Singapore ODL v1.0",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png"
-  },
-  {
-    "id": "Singapore-OneMap",
-    "name": "Singapore OneMap",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.onemap.sg/legal/opendatalicence.html",
-    "terms_text": "©OneMap Singapore ODL v1.0",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png"
-  },
-  {
-    "id": "Slovakia-Historic-Maps",
-    "name": "Slovakia Historic Maps",
-    "type": "tms",
-    "template": "https://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 12],
-    "polygon": [
-      [
-        [16.81969, 47.49272],
-        [16.81969, 49.50303],
-        [22.83883, 49.50303],
-        [22.83883, 47.49272],
-        [16.81969, 47.49272]
-      ]
-    ],
-    "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
-  },
-  {
-    "id": "skoterleder",
-    "name": "Snowmobile map Sweden",
-    "type": "tms",
-    "template": "https://tiles.skoterleder.org/tiles/{zoom}/{x}/{y}.png",
-    "zoomExtent": [5, 14],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://skoterleder.org/",
-    "terms_text": "© Skoterleder.org",
-    "description": "Snowmobile trails",
-    "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Sweden_road_sign_D9.svg/200px-Sweden_road_sign_D9.svg.png"
-  },
-  {
-    "id": "Soskut_Pusztazamor_Tarnok_Diosd_orto_2017",
-    "name": "Sóskút, Pusztazámor, Tárnok, Diósd ortophoto 2017",
-    "type": "tms",
-    "template": "http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/Soskut-Tarnok-Pusztazamor-Diosd/mercator/{zoom}/{x}/{y}.png",
-    "endDate": "2017-03-01T00:00:00.000Z",
-    "startDate": "2017-03-01T00:00:00.000Z",
-    "zoomExtent": [11, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://fototerkep.hu",
-    "terms_text": "Fototerkep.hu",
-    "best": true,
-    "description": "5 cm resolution bald image of 4 settlement"
-  },
-  {
-    "id": "South_Africa-CD_NGI-Aerial",
-    "name": "South Africa CD:NGI Aerial",
-    "type": "tms",
-    "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [1, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "best": true
-  },
-  {
-    "id": "South-Tyrol-Orthofoto2011-20cm",
-    "name": "South Tyrol Orthofoto 2011 (highres)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
-    "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0",
-    "description": "Orthophoto of South Tyrol from 2011 with up to 20cm resolution (larger valleys)"
-  },
-  {
-    "id": "South-Tyrol-Orthofoto2014",
-    "name": "South Tyrol Orthofoto 2014",
-    "type": "tms",
-    "template": "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",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog/",
-    "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0"
-  },
-  {
-    "id": "South-Tyrol-Orthofoto-2014-2015",
-    "name": "South Tyrol Orthofoto 2014/2015",
-    "type": "tms",
-    "template": "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",
-    "endDate": "2015-11-01T00:00:00.000Z",
-    "startDate": "2014-07-01T00:00:00.000Z",
-    "zoomExtent": [0, 18],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
-    "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0",
-    "best": true
-  },
-  {
-    "id": "South-Tyrol-Orthofoto-2017",
-    "name": "South Tyrol Orthofoto 2017",
-    "type": "tms",
-    "template": "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",
-    "endDate": "2017-10-01T00:00:00.000Z",
-    "startDate": "2017-07-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
-    "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0",
-    "best": true
-  },
-  {
-    "id": "South-Tyrol-Topomap",
-    "name": "South Tyrol Topomap",
-    "type": "tms",
-    "template": "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",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
-    "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano",
-    "description": "Topographical basemap of South Tyrol"
-  },
-  {
-    "id": "SPW2009",
-    "name": "SPW(allonie) 2009-2010 aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2010-01-01T00:00:00.000Z",
-    "startDate": "2009-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"
-  },
-  {
-    "id": "SPW2012",
-    "name": "SPW(allonie) 2012-2013 aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"
-  },
-  {
-    "id": "SPW2015",
-    "name": "SPW(allonie) 2015 aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"
-  },
-  {
-    "id": "SPW2016",
-    "name": "SPW(allonie) 2016 aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"
-  },
-  {
-    "id": "SPW_ORTHO_LAST",
-    "name": "SPW(allonie) most recent aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "best": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"
-  },
-  {
-    "id": "SPW_PICC",
-    "name": "SPW(allonie) PICC numerical imagery",
-    "type": "wms",
-    "template": "https://geoservices.wallonie.be/arcgis/services/TOPOGRAPHIE/PICC_VDIFF/MapServer/WmsServer?SERVICE=WMS&VERSION=1.1.1&FORMAT=image/png8&TRANSPARENT=FALSE&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&LAYERS=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"
-  },
-  {
-    "id": "SPWrelief2014",
-    "name": "SPW(allonie) shaded relief",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"
-  },
-  {
-    "id": "ssb-sentrum",
-    "name": "SSB City Centres overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.ssb.no/arealsentrum/",
-    "terms_text": "© SSB",
-    "description": "Downtown areas with significant commercial and service activities.",
-    "icon": "https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png",
-    "overlay": true
-  },
-  {
-    "id": "ssb-tettsteder",
-    "name": "SSB Urban Areas overlay",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.ssb.no/beftett",
-    "terms_text": "© SSB",
-    "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",
-    "overlay": true
-  },
-  {
-    "id": "Bern-bern2016-tms",
-    "name": "Stadt Bern 10cm (2016)",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/bern2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Orthophoto 2016, Vermessungsamt Stadt Bern",
-    "best": true,
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Bern-2012",
-    "name": "Stadt Bern 10cm/25cm (2012)",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/bern2012/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [14, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Orthophoto 2012, Vermessungsamt Stadt Bern",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Uster-2008",
-    "name": "Stadt Uster Orthophoto 2008 10cm",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2008-01-01T00:00:00.000Z",
-    "startDate": "2008-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [8.68, 47.32],
-        [8.74, 47.32],
-        [8.74, 47.365],
-        [8.68, 47.365],
-        [8.68, 47.32]
-      ]
-    ],
-    "terms_text": "Stadt Uster Vermessung Orthophoto 2008",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Zuerich-zh_luftbild2011-tms",
-    "name": "Stadt Zürich Luftbild 2011",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/zh_luftbild2011/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [8.44624, 47.44143],
-        [8.63178, 47.43968],
-        [8.62895, 47.31377],
-        [8.44381, 47.31555],
-        [8.44624, 47.44143]
-      ]
-    ],
-    "terms_text": "Stadt Zürich Luftbild 2011",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "Zuerich-city_map",
-    "name": "Stadtplan Zürich",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/zh_stadtplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Stadt Zürich Open Government Data",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "stamen-terrain-background",
-    "name": "Stamen Terrain",
-    "type": "tms",
-    "template": "https://stamen-tiles-{switch:a,b,c,d}.a.ssl.fastly.net/terrain-background/{zoom}/{x}/{y}.jpg",
-    "zoomExtent": [4, 18],
-    "terms_url": "http://maps.stamen.com/#terrain",
-    "terms_text": "Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL",
-    "icon": "https://stamen.com/wp-content/uploads/2016/07/stamen_compass_rose_small-01.png"
-  },
-  {
-    "id": "stockholm-orto",
-    "name": "Stockholm Orthophoto",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [5, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://dataportalen.stockholm.se/dataportalen/",
-    "terms_text": "© Stockholm municipality, CC0",
-    "best": true,
-    "description": "Orthophotos from the municipality of Stockholm 2016, CC0 license",
-    "icon": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Stockholm_vapen_bra.svg/196px-Stockholm_vapen_bra.svg.png"
-  },
-  {
-    "id": "Surrey-Air_Survey",
-    "name": "Surrey Air Survey",
-    "type": "tms",
-    "template": "https://{switch:a,b,c}.surrey.aerial.openstreetmap.org.uk/layer/gb_surrey_aerial/{zoom}/{x}/{y}.png",
-    "endDate": "2009-01-01T00:00:00.000Z",
-    "startDate": "2007-01-01T00:00:00.000Z",
-    "zoomExtent": [8, 21],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "Swietochlowice-2008",
-    "name": "Świętochłowice: Orthophotomap 2008 (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2008-01-01T00:00:00.000Z",
-    "startDate": "2008-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Świętochłowice"
-  },
-  {
-    "id": "Swietochlowice-2009",
-    "name": "Świętochłowice: Orthophotomap 2009 (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2009-01-01T00:00:00.000Z",
-    "startDate": "2009-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Świętochłowice"
-  },
-  {
-    "id": "Swietochlowice-2012",
-    "name": "Świętochłowice: Orthophotomap 2012 (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Świętochłowice"
-  },
-  {
-    "id": "Szeged_2011",
-    "name": "Szeged orthophoto 2011",
-    "type": "tms",
-    "template": "http://e.tile.openstreetmap.hu/szeged-2011-10cm/{zoom}/{x}/{y}.png",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "zoomExtent": [10, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://www.geo.u-szeged.hu",
-    "terms_text": "SZTE TFGT - University of Szeged",
-    "best": true,
-    "description": "Inner part of Szeged"
-  },
-  {
-    "id": "TW_NLSC_WMS_EMAP6",
-    "name": "Taiwan e-Map Open Data",
-    "type": "tms",
-    "template": "https://wmts.nlsc.gov.tw/wmts/EMAP6_OPENDATA/default/GoogleMapsCompatible/{zoom}/{y}/{x}",
-    "zoomExtent": [0, 15],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://maps.nlsc.gov.tw/",
-    "terms_text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"
-  },
-  {
-    "id": "TW_NLSC_WMS_LANDSECT",
-    "name": "Taiwan Land-Section Data",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://maps.nlsc.gov.tw/",
-    "terms_text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"
-  },
-  {
-    "id": "TW_NLSC_WMS_Village",
-    "name": "Taiwan Village Boundaries",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://maps.nlsc.gov.tw/",
-    "terms_text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"
-  },
-  {
-    "id": "TEClines",
-    "name": "TEC bus lines",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png",
-    "overlay": true
-  },
-  {
-    "id": "TECstops",
-    "name": "TEC bus stops",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png",
-    "overlay": true
-  },
-  {
-    "id": "teotonio_vilela",
-    "name": "Teotonio Vilela AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "tnris.org",
-    "name": "Texas Orthophoto",
-    "type": "tms",
-    "template": "https://txgi.tnris.org/login/path/ecology-fiona-poem-romeo/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=texas&STYLE=&FORMAT=image/png&tileMatrixSet=0to20&tileMatrix=0to20:{zoom}&tileRow={y}&tileCol={x}",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://tnris.org/maps-and-data/online-mapping-services",
-    "terms_text": "Texas Natural Resources Information System"
-  },
-  {
-    "id": "US-TIGER-Roads-2017",
-    "name": "TIGER Roads 2017",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cj8dftc3q1ecn2tnx9qhwyj0c/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [-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]]
-    ],
-    "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png",
-    "overlay": true
-  },
-  {
-    "id": "US-TIGER-Roads-2018",
-    "name": "TIGER Roads 2018",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cjo1wbulo3ub82ro1c9onlzmh/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [-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]]
-    ],
-    "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png",
-    "overlay": true
-  },
-  {
-    "id": "US-TIGER-Roads-2019",
-    "name": "TIGER Roads 2019",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/ck0dxfa7602e61cmjk7p86749/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw",
-    "endDate": "2019-01-01T00:00:00.000Z",
-    "startDate": "2019-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [-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]]
-    ],
-    "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png",
-    "overlay": true
-  },
-  {
-    "id": "tirol.gv.at-contourlines",
-    "name": "Tiris: contour lines",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [15, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://tiris.tirol.gv.at",
-    "terms_text": "tiris.tirol.gv.at",
-    "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif",
-    "overlay": true
-  },
-  {
-    "id": "tirol.gv.at-DGM",
-    "name": "Tiris: DGM (Terrain model)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://tiris.tirol.gv.at",
-    "terms_text": "tiris.tirol.gv.at",
-    "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
-  },
-  {
-    "id": "tirol.gv.at-DOM",
-    "name": "Tiris: DOM (Surface model)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://tiris.tirol.gv.at",
-    "terms_text": "tiris.tirol.gv.at",
-    "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
-  },
-  {
-    "id": "tirol.gv.at-orthofoto",
-    "name": "Tiris: orthophoto",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://tiris.tirol.gv.at",
-    "terms_text": "tiris.tirol.gv.at",
-    "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
-  },
-  {
-    "id": "tirol.gv.at-orthofoto-cir",
-    "name": "Tiris: orthophoto infrared",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://tiris.tirol.gv.at",
-    "terms_text": "tiris.tirol.gv.at",
-    "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
-  },
-  {
-    "id": "lu.geoportail.opendata.topo",
-    "name": "Topographical Map geoportail.lu",
-    "type": "tms",
-    "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/topo/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
-    "endDate": "2010-07-20T00:00:00.000Z",
-    "startDate": "2013-07-19T00:00:00.000Z",
-    "zoomExtent": [5, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts",
-    "terms_text": "Administration du Cadastre et de la Topographie",
-    "icon": "https://www.geoportail.lu/static/img/lion.png"
-  },
-  {
-    "id": "Torokbalint-orthophoto-2013",
-    "name": "Törökbálint orthophoto 2013",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:4326",
-    "endDate": "2013-09-01T00:00:00.000Z",
-    "startDate": "2013-09-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://www.torokbalint.hu",
-    "terms_text": "Törökbálint",
-    "description": "5 cm resolution bald image"
-  },
-  {
-    "id": "Torokbalint-orthophoto-2015",
-    "name": "Törökbálint orthophoto 2015",
-    "type": "wms",
-    "template": "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",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "http://www.torokbalint.hu/",
-    "terms_text": "Törökbálint",
-    "best": true,
-    "description": "5 cm resolution bald image"
-  },
-  {
-    "id": "Toulouse-Orthophotoplan-2007",
-    "name": "Toulouse - Orthophotoplan 2007",
-    "type": "wms",
-    "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2007&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "endDate": "2007-01-01T00:00:00.000Z",
-    "startDate": "2007-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
-    "terms_text": "ToulouseMetropole"
-  },
-  {
-    "id": "Toulouse-Orthophotoplan-2011",
-    "name": "Toulouse - Orthophotoplan 2011",
-    "type": "wms",
-    "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2011&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
-    "terms_text": "ToulouseMetropole"
-  },
-  {
-    "id": "Toulouse-Orthophotoplan-2013",
-    "name": "Toulouse - Orthophotoplan 2013",
-    "type": "wms",
-    "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
-    "terms_text": "ToulouseMetropole"
-  },
-  {
-    "id": "Toulouse-Orthophotoplan-2015",
-    "name": "Toulouse - Orthophotoplan 2015",
-    "type": "wms",
-    "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2015&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
-    "terms_text": "ToulouseMetropole"
-  },
-  {
-    "id": "Toulouse-Orthophotoplan-2017",
-    "name": "Toulouse - Orthophotoplan 2017",
-    "type": "wms",
-    "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
-    "projection": "EPSG:3857",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
-    "terms_text": "ToulouseMetropole",
-    "best": true
-  },
-  {
-    "id": "Tours-Orthophoto-2008_2010",
-    "name": "Tours - Orthophotos 2008-2010",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2008-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
-    "terms_text": "Orthophoto Tour(s) Plus 2008"
-  },
-  {
-    "id": "Tours-Orthophoto-2013",
-    "name": "Tours - Orthophotos 2013",
-    "type": "tms",
-    "template": "https://wms.openstreetmap.fr/tms/1.0.0/tours_2013/{zoom}/{x}/{y}",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 22],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
-    "terms_text": "Orthophoto Tour(s)plus 2013"
-  },
-  {
-    "id": "trafikverket-baninfo",
-    "name": "Trafikverket Railway Network",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [7, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.trafikverket.se",
-    "terms_text": "© Trafikverket, CC0",
-    "description": "Swedish railway network, including sidings",
-    "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
-    "overlay": true
-  },
-  {
-    "id": "trafikverket-vagnat",
-    "name": "Trafikverket Road Network",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [13, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.trafikverket.se",
-    "terms_text": "© Trafikverket, CC0",
-    "description": "Swedish NVDB road network",
-    "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
-    "overlay": true
-  },
-  {
-    "id": "trafikverket-vagnat-extra",
-    "name": "Trafikverket Road Network extra",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "zoomExtent": [3, 20],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.trafikverket.se",
-    "terms_text": "© Trafikverket, CC0",
-    "description": "Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera",
-    "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
-    "overlay": true
-  },
-  {
-    "id": "trafikverket-vagnat-navn",
-    "name": "Trafikverket Street Names",
-    "type": "tms",
-    "template": "https://mapproxy.openstreetmap.se/tiles/1.0.0/nvdb_names/EPSG3857/{zoom}/{x}/{y}.png",
-    "zoomExtent": [15, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.trafikverket.se",
-    "terms_text": "© Trafikverket, CC0",
-    "description": "Swedish NVDB street names",
-    "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
-    "overlay": true
-  },
-  {
-    "id": "US_Forest_Service_roads_overlay",
-    "name": "U.S. Forest Roads Overlay",
-    "type": "tms",
-    "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/glassman/cjf4qjmps0tgv2qpahj977mvz/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1IjoiZ2xhc3NtYW4iLCJhIjoiRjk3dWdwYyJ9.Tg_fMJWxygeKBgVTrZHmGA",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "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",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/USForestService-overlay.png",
-    "overlay": true
-  },
-  {
-    "id": "US_Forest_Service_roads",
-    "name": "U.S. Forest Service roads",
-    "type": "tms",
-    "template": "https://osm.cycle.travel/forest/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 19],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ]
-  },
-  {
-    "id": "Zuerich-zh_uebersichtsplan-tms",
-    "name": "Übersichtsplan Zürich",
-    "type": "tms",
-    "template": "https://mapproxy.osm.ch/tiles/zh_uebersichtsplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-    "zoomExtent": [0, 21],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Stadt Zürich Open Government Data",
-    "description": "This imagery is provided via a proxy operated by https://sosm.ch/"
-  },
-  {
-    "id": "UkraineKyiv2014DZK",
-    "name": "Ukraine - Kyiv 2014 (DZK)",
-    "type": "tms",
-    "template": "https://map.land.gov.ua/map/ortho_kiev/{zoom}/{x}/{-y}.jpg",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 16],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "description": "Works only from within Ukraine or with an Ukrainian proxy server."
-  },
-  {
-    "id": "Ukraine-orto10000-2012",
-    "name": "Ukraine - Orthophotomaps 2012",
-    "type": "tms",
-    "template": "http://212.26.144.110/tile2/orto_10000/{zoom}/{x}/{-y}.jpg",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 16],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "description": "Works only from within Ukraine or with an Ukrainian proxy server."
-  },
-  {
-    "id": "uniao_dos_palmares",
-    "name": "União dos Palmares AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "URBIS2009",
-    "name": "URBIS 2009 aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2009-01-01T00:00:00.000Z",
-    "startDate": "2009-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "URBIS2012",
-    "name": "URBIS 2012 aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "URBIS2014",
-    "name": "URBIS 2014 aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2014-01-01T00:00:00.000Z",
-    "startDate": "2014-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "URBIS2015",
-    "name": "URBIS 2015 aerial imagery",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "UrbISOrtho2016",
-    "name": "UrbIS-Ortho 2016",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2016-01-01T00:00:00.000Z",
-    "startDate": "2016-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "UrbISOrtho2017",
-    "name": "UrbIS-Ortho 2017",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2017-01-01T00:00:00.000Z",
-    "startDate": "2017-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "UrbISOrtho2018",
-    "name": "UrbIS-Ortho 2018",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "UrbISOrtho2019",
-    "name": "UrbIS-Ortho 2019",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2019-01-01T00:00:00.000Z",
-    "startDate": "2019-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "best": true,
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "UrbisAdmFR",
-    "name": "UrbisAdm FR",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "UrbisAdmNL",
-    "name": "UrbisAdm NL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "URBISfr2013",
-    "name": "URBISfr numerical imagery (2013)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "URBISnl2013",
-    "name": "URBISnl numerical imagery (2013)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "endDate": "2013-01-01T00:00:00.000Z",
-    "startDate": "2013-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"
-  },
-  {
-    "id": "USGS-Imagery",
-    "name": "USGS Imagery",
-    "type": "tms",
-    "template": "https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{zoom}/{y}/{x}",
-    "zoomExtent": [12, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "description": "Public domain aerial imagery, mostly NAIP",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png"
-  },
-  {
-    "id": "USGS-Scanned_Topographic",
-    "name": "USGS Topographic Maps",
-    "type": "tms",
-    "template": "https://caltopo.s3.amazonaws.com/topo/{zoom}/{x}/{y}.png",
-    "zoomExtent": [0, 16],
-    "polygon": [
-      [
-        [-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],
-        [-59.9984, 44],
-        [-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]
-      ]
-    ],
-    "terms_url": "https://caltopo.com",
-    "terms_text": "© Caltopo",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png"
-  },
-  {
-    "id": "USSR-Latvia",
-    "name": "USSR - Latvia",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [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]
-      ]
-    ]
-  },
-  {
-    "id": "vicosa_al",
-    "name": "Viçosa AL",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:3857",
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "http://www.seplag.al.gov.br",
-    "terms_text": "Secretaria de Estado do Planejamento, Gestão e Patrimônio"
-  },
-  {
-    "id": "wien.gv.at-labels",
-    "name": "Vienna: Beschriftungen (annotations)",
-    "type": "tms",
-    "template": "https://maps.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
-    "zoomExtent": [12, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.wien.gv.at",
-    "terms_text": "Stadt Wien",
-    "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif",
-    "overlay": true
-  },
-  {
-    "id": "wien.gv.at-gp",
-    "name": "Vienna: Mehrzweckkarte (general purpose)",
-    "type": "tms",
-    "template": "https://maps.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg",
-    "zoomExtent": [10, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.wien.gv.at",
-    "terms_text": "Stadt Wien",
-    "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"
-  },
-  {
-    "id": "wien.gv.at-aerial_image",
-    "name": "Vienna: Orthofoto (aerial image)",
-    "type": "tms",
-    "template": "https://maps.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg",
-    "zoomExtent": [10, 19],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://data.wien.gv.at",
-    "terms_text": "Stadt Wien",
-    "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"
-  },
-  {
-    "id": "Ville_de_Nyon-HD-2016",
-    "name": "Ville de Nyon - Orthophoto 2016 HD 5cm/pi",
-    "type": "tms",
-    "template": "http://osmdata.asitvd.ch/tiles/nyon2016/{zoom}/{x}/{y}.png",
-    "endDate": "2016-03-10T00:00:00.000Z",
-    "startDate": "2016-03-10T00:00:00.000Z",
-    "zoomExtent": [10, 20],
-    "polygon": [
-      [
-        [6.18068, 46.38878],
-        [6.21445, 46.41522],
-        [6.25774, 46.3887],
-        [6.22398, 46.36228],
-        [6.18068, 46.38878]
-      ]
-    ],
-    "terms_url": "http://www.nyon.ch/fr/officiel/services-offices/informatique-et-population-776-3911",
-    "terms_text": "Ville de Nyon"
-  },
-  {
-    "id": "VGIN-BuildingFootprints_WM",
-    "name": "Virginia Building Footprints",
-    "type": "tms",
-    "template": "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",
-    "endDate": "2018-06-01T00:00:00.000Z",
-    "startDate": "2015-05-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://vgin.maps.arcgis.com/home/item.html?id=bcd049dfcdc342a7a08ec81644eeb339",
-    "terms_text": "Virginia Geographic Information Network (VGIN)",
-    "description": "Virginia Building Footprint Map Service",
-    "overlay": true
-  },
-  {
-    "id": "VGIN-Imagery_WM",
-    "name": "Virginia Imagery Service - Most Recent",
-    "type": "tms",
-    "template": "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",
-    "endDate": "2018-08-01T00:00:00.000Z",
-    "startDate": "2013-04-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://vgin.maps.arcgis.com/home/item.html?id=36386a7e7dae4032a33cb0b83a1711f1",
-    "terms_text": "Virginia Geographic Information Network (VGIN)",
-    "description": "The most recently available VBMP orthoimagery for all of Virginia."
-  },
-  {
-    "id": "VGIN-PropertyLines_WM",
-    "name": "Virginia Property Lines",
-    "type": "tms",
-    "template": "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",
-    "endDate": "2018-06-01T00:00:00.000Z",
-    "startDate": "2015-05-01T00:00:00.000Z",
-    "zoomExtent": [0, 20],
-    "polygon": [
-      [
-        [-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]
-      ]
-    ],
-    "terms_url": "https://vgin.maps.arcgis.com/home/item.html?id=f1dccaf1f42e40cbba791feae2e23690",
-    "terms_text": "Virginia Geographic Information Network (VGIN)",
-    "description": "A statewide Parcel service showing property ownership outlines where available",
-    "overlay": true
-  },
-  {
-    "id": "vogis.cnv.at-DGM",
-    "name": "VoGIS: DGM (Terrain model)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm",
-    "terms_text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"
-  },
-  {
-    "id": "vogis.cnv.at-DOM",
-    "name": "VoGIS: DOM (Surface model)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm",
-    "terms_text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"
-  },
-  {
-    "id": "vogis.cnv.at-ef2012_12cm",
-    "name": "VoGIS: Echtfarbenbild 2012 (12cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2012-01-01T00:00:00.000Z",
-    "startDate": "2012-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm",
-    "terms_text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"
-  },
-  {
-    "id": "vogis.cnv.at-ef2015_10cm",
-    "name": "VoGIS: Echtfarbenbild 2015 (10cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm",
-    "terms_text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"
-  },
-  {
-    "id": "vogis.cnv.at-ef2018_10cm",
-    "name": "VoGIS: Echtfarbenbild 2018 (10cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2018-01-01T00:00:00.000Z",
-    "startDate": "2018-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm",
-    "terms_text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"
-  },
-  {
-    "id": "vogis.cnv.at-wi2015_20cm",
-    "name": "VoGIS: Echtfarbenbild Winter 2015 (20cm)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_url": "https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm",
-    "terms_text": "Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at",
-    "icon": "https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"
-  },
-  {
-    "id": "wroclaw-orto2015",
-    "name": "Wrocław: Orthophotomap 2015 (aerial image)",
-    "type": "wms",
-    "template": "http://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}",
-    "projection": "EPSG:4326",
-    "endDate": "2015-01-01T00:00:00.000Z",
-    "startDate": "2015-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Wrocław",
-    "icon": "https://i.imgur.com/PRqROXB.png"
-  },
-  {
-    "id": "Zabrze-2011",
-    "name": "Zabrze: Orthophotomap 2011 (aerial image)",
-    "type": "wms",
-    "template": "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}",
-    "projection": "EPSG:4326",
-    "endDate": "2011-01-01T00:00:00.000Z",
-    "startDate": "2011-01-01T00:00:00.000Z",
-    "zoomExtent": [0, 23],
-    "polygon": [
-      [
-        [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]
-      ]
-    ],
-    "terms_text": "Urząd Miasta Zabrza"
-  }
-]
\ No newline at end of file
diff --git a/dist/locales/en.json b/dist/locales/en.json
index daefc58d72..492e1857f9 100644
--- a/dist/locales/en.json
+++ b/dist/locales/en.json
@@ -10085,115 +10085,153 @@
         },
         "imagery": {
             "AGIV": {
+                "name": "AIV Flanders most recent aerial imagery",
                 "attribution": {
                     "text": "© agentschap Informatie Vlaanderen"
-                },
-                "name": "AIV Flanders most recent aerial imagery"
+                }
             },
             "AGIV10cm": {
+                "name": "AIV Flanders 2013-2015 aerial imagery 10cm",
                 "attribution": {
                     "text": "© agentschap Informatie Vlaanderen"
-                },
-                "name": "AIV Flanders 2013-2015 aerial imagery 10cm"
+                }
             },
             "AGIVFlandersGRB": {
+                "name": "AIV Flanders GRB",
                 "attribution": {
                     "text": "© agentschap Informatie Vlaanderen"
-                },
-                "name": "AIV Flanders GRB"
+                }
             },
             "AIV_DHMV_II_HILL_25cm": {
+                "name": "AIV Digitaal Hoogtemodel Vlaanderen II, multidirectionale hillshade 0,25 m",
                 "attribution": {
                     "text": "© agentschap Informatie Vlaanderen"
-                },
-                "name": "AIV Digitaal Hoogtemodel Vlaanderen II, multidirectionale hillshade 0,25 m"
+                }
             },
             "AIV_DHMV_II_SVF_25cm": {
+                "name": "AIV Digitaal Hoogtemodel Vlaanderen II, Skyview factor 0,25 m",
                 "attribution": {
                     "text": "© agentschap Informatie Vlaanderen"
-                },
-                "name": "AIV Digitaal Hoogtemodel Vlaanderen II, Skyview factor 0,25 m"
+                }
             },
             "Bing": {
-                "description": "Satellite and aerial imagery.",
-                "name": "Bing aerial imagery"
+                "name": "Bing aerial imagery",
+                "description": "Satellite and aerial imagery."
             },
             "EOXAT2018CLOUDLESS": {
+                "name": "eox.at 2018 cloudless",
+                "description": "Post-processed Sentinel Satellite imagery.",
                 "attribution": {
                     "text": "Sentinel-2 cloudless - https://s2maps.eu by EOX IT Services GmbH (Contains modified Copernicus Sentinel data 2017 & 2018)"
-                },
-                "description": "Post-processed Sentinel Satellite imagery.",
-                "name": "eox.at 2018 cloudless"
+                }
             },
             "EsriWorldImagery": {
+                "name": "Esri World Imagery",
+                "description": "Esri world imagery.",
                 "attribution": {
                     "text": "Terms & Feedback"
-                },
-                "description": "Esri world imagery.",
-                "name": "Esri World Imagery"
+                }
             },
             "EsriWorldImageryClarity": {
+                "name": "Esri World Imagery (Clarity) Beta",
+                "description": "Esri archive imagery that may be clearer and more accurate than the default layer.",
                 "attribution": {
                     "text": "Terms & Feedback"
-                },
-                "description": "Esri archive imagery that may be clearer and more accurate than the default layer.",
-                "name": "Esri World Imagery (Clarity) Beta"
+                }
+            },
+            "HDM_HOT": {
+                "name": "OpenStreetMap (HOT Style)",
+                "attribution": {
+                    "text": "© OpenStreetMap contributors, tiles courtesy of Humanitarian OpenStreetMap Team"
+                }
             },
             "MAPNIK": {
+                "name": "OpenStreetMap (Standard)",
+                "description": "The default OpenStreetMap layer.",
                 "attribution": {
                     "text": "© OpenStreetMap contributors, CC-BY-SA 2.0"
-                },
-                "description": "The default OpenStreetMap layer.",
-                "name": "OpenStreetMap (Standard)"
+                }
             },
             "Mapbox": {
+                "name": "Mapbox Satellite",
+                "description": "Satellite and aerial imagery.",
                 "attribution": {
                     "text": "Terms & Feedback"
-                },
-                "description": "Satellite and aerial imagery.",
-                "name": "Mapbox Satellite"
+                }
+            },
+            "Maxar-Premium": {
+                "name": "Maxar Premium Imagery (Beta)",
+                "description": "Maxar Premium is a mosaic composed of Maxar basemap with select regions filled with +Vivid or custom area of interest imagery, 50cm resolution or better, and refreshed more frequently with ongoing updates.",
+                "attribution": {
+                    "text": "Terms & Feedback"
+                }
+            },
+            "Maxar-Standard": {
+                "name": "Maxar Standard Imagery (Beta)",
+                "description": "Maxar Standard is a curated set of imagery covering 86% of the earth’s landmass, with 30-60cm resolution where available, backfilled by Landsat. Average age is 2.31 years, with some areas updated 2x per year.",
+                "attribution": {
+                    "text": "Terms & Feedback"
+                }
             },
             "OSM_Inspector-Addresses": {
+                "name": "OSM Inspector: Addresses",
                 "attribution": {
                     "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OSM Inspector: Addresses"
+                }
             },
             "OSM_Inspector-Geometry": {
+                "name": "OSM Inspector: Geometry",
                 "attribution": {
                     "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OSM Inspector: Geometry"
+                }
             },
             "OSM_Inspector-Highways": {
+                "name": "OSM Inspector: Highways",
                 "attribution": {
                     "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OSM Inspector: Highways"
+                }
             },
             "OSM_Inspector-Multipolygon": {
+                "name": "OSM Inspector: Area",
                 "attribution": {
                     "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OSM Inspector: Area"
+                }
             },
             "OSM_Inspector-Places": {
+                "name": "OSM Inspector: Places",
                 "attribution": {
                     "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OSM Inspector: Places"
+                }
             },
             "OSM_Inspector-Routing": {
+                "name": "OSM Inspector: Routing",
                 "attribution": {
                     "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OSM Inspector: Routing"
+                }
             },
             "OSM_Inspector-Tagging": {
+                "name": "OSM Inspector: Tagging",
                 "attribution": {
                     "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OSM Inspector: Tagging"
+                }
+            },
+            "OpenTopoMap": {
+                "name": "OpenTopoMap",
+                "attribution": {
+                    "text": "Kartendaten: © OpenStreetMap-Mitwirkende, SRTM | Kartendarstellung: © OpenTopoMap (CC-BY-SA)"
+                }
+            },
+            "SPW2009": {
+                "name": "SPW(allonie) 2009-2010 aerial imagery"
+            },
+            "SPW2012": {
+                "name": "SPW(allonie) 2012-2013 aerial imagery"
+            },
+            "SPW2015": {
+                "name": "SPW(allonie) 2015 aerial imagery"
+            },
+            "SPW2016": {
+                "name": "SPW(allonie) 2016 aerial imagery"
             },
             "SPW_ORTHO_LAST": {
                 "name": "SPW(allonie) most recent aerial imagery"
@@ -10201,346 +10239,441 @@
             "SPW_PICC": {
                 "name": "SPW(allonie) PICC numerical imagery"
             },
-            "US-TIGER-Roads-2014": {
-                "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",
-                "name": "TIGER Roads 2014"
+            "SPWrelief2014": {
+                "name": "SPW(allonie) shaded relief"
             },
-            "US-TIGER-Roads-2017": {
-                "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
-                "name": "TIGER Roads 2017"
+            "TEClines": {
+                "name": "TEC bus lines"
+            },
+            "TECstops": {
+                "name": "TEC bus stops"
+            },
+            "URBIS2009": {
+                "name": "URBIS 2009 aerial imagery",
+                "attribution": {
+                    "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
+                }
+            },
+            "URBIS2012": {
+                "name": "URBIS 2012 aerial imagery",
+                "attribution": {
+                    "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
+                }
             },
-            "US-TIGER-Roads-2018": {
-                "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
-                "name": "TIGER Roads 2018"
+            "URBIS2014": {
+                "name": "URBIS 2014 aerial imagery",
+                "attribution": {
+                    "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
+                }
             },
-            "US-TIGER-Roads-2019": {
-                "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
-                "name": "TIGER Roads 2019"
+            "URBIS2015": {
+                "name": "URBIS 2015 aerial imagery",
+                "attribution": {
+                    "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
+                }
             },
-            "USDA-NAIP": {
-                "description": "The most recent year of DOQQs from the National Agriculture Imagery Program (NAIP) for each state in the contiguous United States.",
-                "name": "National Agriculture Imagery Program"
+            "URBISfr2013": {
+                "name": "URBISfr numerical imagery (2013)",
+                "attribution": {
+                    "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
+                }
             },
-            "US_Forest_Service_roads_overlay": {
-                "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",
-                "name": "U.S. Forest Roads Overlay"
+            "URBISnl2013": {
+                "name": "URBISnl numerical imagery (2013)",
+                "attribution": {
+                    "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
+                }
             },
             "UrbISOrtho2016": {
+                "name": "UrbIS-Ortho 2016",
                 "attribution": {
                     "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
-                },
-                "name": "UrbIS-Ortho 2016"
+                }
             },
             "UrbISOrtho2017": {
+                "name": "UrbIS-Ortho 2017",
                 "attribution": {
                     "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
-                },
-                "name": "UrbIS-Ortho 2017"
+                }
             },
             "UrbISOrtho2018": {
+                "name": "UrbIS-Ortho 2018",
                 "attribution": {
                     "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
-                },
-                "name": "UrbIS-Ortho 2018"
+                }
             },
             "UrbISOrtho2019": {
+                "name": "UrbIS-Ortho 2019",
                 "attribution": {
                     "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
-                },
-                "name": "UrbIS-Ortho 2019"
+                }
             },
             "UrbisAdmFR": {
+                "name": "UrbisAdm FR",
                 "attribution": {
                     "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
-                },
-                "name": "UrbisAdm FR"
+                }
             },
             "UrbisAdmNL": {
+                "name": "UrbisAdm NL",
                 "attribution": {
                     "text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB"
-                },
-                "name": "UrbisAdm NL"
+                }
             },
             "Waymarked_Trails-Cycling": {
+                "name": "Waymarked Trails: Cycling",
                 "attribution": {
                     "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0"
-                },
-                "name": "Waymarked Trails: Cycling"
+                }
             },
             "Waymarked_Trails-Hiking": {
+                "name": "Waymarked Trails: Hiking",
                 "attribution": {
                     "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0"
-                },
-                "name": "Waymarked Trails: Hiking"
+                }
+            },
+            "Waymarked_Trails-Horse_Riding": {
+                "name": "Waymarked Trails: Horse Riding",
+                "attribution": {
+                    "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0"
+                }
             },
             "Waymarked_Trails-MTB": {
+                "name": "Waymarked Trails: MTB",
                 "attribution": {
                     "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0"
-                },
-                "name": "Waymarked Trails: MTB"
+                }
             },
             "Waymarked_Trails-Skating": {
+                "name": "Waymarked Trails: Skating",
                 "attribution": {
                     "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0"
-                },
-                "name": "Waymarked Trails: Skating"
+                }
             },
             "Waymarked_Trails-Winter_Sports": {
+                "name": "Waymarked Trails: Winter Sports",
                 "attribution": {
                     "text": "© waymarkedtrails.org, OpenStreetMap contributors, CC by-SA 3.0"
-                },
-                "name": "Waymarked Trails: Winter Sports"
+                }
             },
             "basemap.at": {
+                "name": "basemap.at",
+                "description": "Basemap of Austria, based on government data.",
                 "attribution": {
                     "text": "basemap.at"
-                },
-                "description": "Basemap of Austria, based on government data.",
-                "name": "basemap.at"
+                }
             },
             "basemap.at-orthofoto": {
+                "name": "basemap.at Orthofoto",
+                "description": "Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.",
                 "attribution": {
                     "text": "basemap.at"
-                },
-                "description": "Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.",
-                "name": "basemap.at Orthofoto"
+                }
             },
             "basemap.at-overlay": {
-                "attribution": {
-                    "text": "basemap.at"
-                },
+                "name": "basemap.at Overlay",
                 "description": "Annotation overlay provided by basemap.at.",
-                "name": "basemap.at Overlay"
-            },
-            "eufar-balaton": {
                 "attribution": {
-                    "text": "EUFAR Balaton ortofotó 2010"
-                },
-                "description": "1940 geo-tagged photography from Balaton Limnological Institute.",
-                "name": "EUFAR Balaton orthophotos"
+                    "text": "basemap.at"
+                }
             },
             "finds.jp_KBN_2500": {
+                "name": "Japan GSI KIBAN 2500",
+                "description": "GSI Kiban 2500 via finds.jp. Good for tracing, but a bit older.",
                 "attribution": {
                     "text": "GSI KIBAN 2500"
-                },
-                "description": "GSI Kiban 2500 via finds.jp. Good for tracing, but a bit older.",
-                "name": "Japan GSI KIBAN 2500"
+                }
             },
             "gothenburg-citymap": {
+                "name": "Gothenburg City map",
+                "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.",
                 "attribution": {
                     "text": "© Gothenburg municipality, CC0"
-                },
-                "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.",
-                "name": "Gothenburg City map"
+                }
+            },
+            "gothenburg-ortho": {
+                "name": "Gothenburg Orthophoto",
+                "description": "Orthophoto for Gothenburg municipality",
+                "attribution": {
+                    "text": "© Gothenburg municipality, CC0"
+                }
             },
             "gsi.go.jp_airphoto": {
+                "name": "Japan GSI airphoto Imagery",
+                "description": "Japan GSI airphoto Imagery. Not fully orthorectified, but a bit newer and/or differently covered than GSI ortho Imagery.",
                 "attribution": {
                     "text": "GSI Japan"
-                },
-                "description": "Japan GSI airphoto Imagery. Not fully orthorectified, but a bit newer and/or differently covered than GSI ortho Imagery.",
-                "name": "Japan GSI airphoto Imagery"
+                }
             },
             "gsi.go.jp_seamlessphoto": {
+                "name": "Japan GSI seamlessphoto Imagery",
+                "description": "Japan GSI seamlessphoto Imagery. The collection of latest imageries of GSI ortho, airphoto, post disaster and others.",
                 "attribution": {
                     "text": "GSI Japan seamless photo"
-                },
-                "description": "Japan GSI seamlessphoto Imagery. The collection of latest imageries of GSI ortho, airphoto, post disaster and others.",
-                "name": "Japan GSI seamlessphoto Imagery"
+                }
             },
             "gsi.go.jp_std_map": {
+                "name": "Japan GSI Standard Map",
+                "description": "Japan GSI Standard Map. Widely covered.",
                 "attribution": {
                     "text": "GSI Japan"
-                },
-                "description": "Japan GSI Standard Map. Widely covered.",
-                "name": "Japan GSI Standard Map"
+                }
             },
             "helsingborg-orto": {
+                "name": "Helsingborg Orthophoto",
+                "description": "Orthophotos from the municipality of Helsingborg 2016, public domain",
                 "attribution": {
                     "text": "© Helsingborg municipality"
-                },
-                "description": "Orthophotos from the municipality of Helsingborg 2016, public domain",
-                "name": "Helsingborg Orthophoto"
+                }
             },
             "kalmar-orto-2014": {
+                "name": "Kalmar North Orthophoto 2014",
+                "description": "Orthophotos for the north coast of the municipality of Kalmar 2014",
                 "attribution": {
                     "text": "© Kalmar municipality"
-                },
-                "description": "Orthophotos for the north coast of the municipality of Kalmar 2014",
-                "name": "Kalmar North Orthophoto 2014"
+                }
             },
             "kalmar-orto-2016": {
+                "name": "Kalmar South Orthophoto 2016",
+                "description": "Orthophotos for the south coast of the municipality of Kalmar 2016",
                 "attribution": {
                     "text": "© Kalmar municipality"
-                },
-                "description": "Orthophotos for the south coast of the municipality of Kalmar 2016",
-                "name": "Kalmar South Orthophoto 2016"
+                }
             },
             "kalmar-orto-2018": {
+                "name": "Kalmar Urban Orthophoto 2018",
+                "description": "Orthophotos for urban areas of the municipality of Kalmar 2018",
                 "attribution": {
                     "text": "© Kalmar municipality"
-                },
-                "description": "Orthophotos for urban areas of the municipality of Kalmar 2018",
-                "name": "Kalmar Urban Orthophoto 2018"
+                }
             },
             "kelkkareitit": {
+                "name": "Nordic snowmobile overlay",
+                "description": "Kelkkareitit.fi snowmobile trails from OSM (Nordic coverage)",
                 "attribution": {
                     "text": "© Kelkkareitit.fi"
-                },
-                "description": "Kelkkareitit.fi snowmobile trails from OSM (Nordic coverage)",
-                "name": "Nordic snowmobile overlay"
+                }
             },
             "lantmateriet-orto1960": {
+                "name": "Lantmäteriet Historic Orthophoto 1960",
+                "description": "Mosaic of Swedish orthophotos from the period 1955–1965. Older and younger pictures may occur.",
                 "attribution": {
                     "text": "© Lantmäteriet, CC0"
-                },
-                "description": "Mosaic of Swedish orthophotos from the period 1955–1965. Older and younger pictures may occur.",
-                "name": "Lantmäteriet Historic Orthophoto 1960"
+                }
             },
             "lantmateriet-orto1975": {
+                "name": "Lantmäteriet Historic Orthophoto 1975",
+                "description": "Mosaic of Swedish orthophotos from the period 1970–1980. Is under construction.",
                 "attribution": {
                     "text": "© Lantmäteriet, CC0"
-                },
-                "description": "Mosaic of Swedish orthophotos from the period 1970–1980. Is under construction.",
-                "name": "Lantmäteriet Historic Orthophoto 1975"
+                }
             },
             "lantmateriet-topowebb": {
+                "name": "Lantmäteriet Topographic Map",
+                "description": "Topographic map of Sweden 1:50 000",
                 "attribution": {
                     "text": "© Lantmäteriet, CC0"
-                },
-                "description": "Topographic map of Sweden 1:50 000",
-                "name": "Lantmäteriet Topographic Map"
+                }
             },
             "linkoping-orto": {
+                "name": "Linköping Orthophoto",
+                "description": "Orthophotos from the municipality of Linköping 2010, open data",
                 "attribution": {
                     "text": "© Linköping municipality"
-                },
-                "description": "Orthophotos from the municipality of Linköping 2010, open data",
-                "name": "Linköping Orthophoto"
+                }
             },
             "mapbox_locator_overlay": {
+                "name": "Locator Overlay",
+                "description": "Shows major features to help orient you.",
                 "attribution": {
                     "text": "Terms & Feedback"
-                },
-                "description": "Shows major features to help orient you.",
-                "name": "Locator Overlay"
+                }
             },
             "openpt_map": {
+                "name": "OpenPT Map (overlay)",
                 "attribution": {
                     "text": "© OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OpenPT Map (overlay)"
+                }
+            },
+            "openrailwaymap": {
+                "name": "OpenRailwayMap",
+                "description": "Overlay imagery for railway mapping in OSM",
+                "attribution": {
+                    "text": "© OpenRailwayMap.org"
+                }
+            },
+            "openrailwaymap-maxspeeds": {
+                "name": "OpenRailwayMap Maxspeeds",
+                "description": "Overlay imagery showing railway speed limits based on OpenStreetMap data",
+                "attribution": {
+                    "text": "Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors"
+                }
+            },
+            "openrailwaymap-signalling": {
+                "name": "OpenRailwayMap Signalling",
+                "description": "Overlay imagery showing railway signals based on OpenStreetMap data",
+                "attribution": {
+                    "text": "Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors"
+                }
+            },
+            "openseamap": {
+                "name": "OpenSeaMap",
+                "attribution": {
+                    "text": "© OpenStreetMap contributors, CC-BY-SA"
+                }
+            },
+            "opensnowmap-overlay": {
+                "name": "OpenSnowMap overlay",
+                "description": "Overlay imagery for piste mapping in OSM. Updated daily.",
+                "attribution": {
+                    "text": "© OpenSnowMap.org"
+                }
             },
             "osm-gps": {
+                "name": "OpenStreetMap GPS traces",
+                "description": "Public GPS traces uploaded to OpenStreetMap.",
                 "attribution": {
                     "text": "© OpenStreetMap contributors"
-                },
-                "description": "Public GPS traces uploaded to OpenStreetMap.",
-                "name": "OpenStreetMap GPS traces"
+                }
             },
             "osm-mapnik-black_and_white": {
+                "name": "OpenStreetMap (Standard Black & White)",
                 "attribution": {
                     "text": "© OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OpenStreetMap (Standard Black & White)"
+                }
             },
             "osm-mapnik-german_style": {
+                "name": "OpenStreetMap (German Style)",
                 "attribution": {
                     "text": "© OpenStreetMap contributors, CC-BY-SA"
-                },
-                "name": "OpenStreetMap (German Style)"
+                }
+            },
+            "osm-mapnik-no_labels": {
+                "name": "OpenStreetMap (Mapnik, no labels)",
+                "attribution": {
+                    "text": "© OpenStreetMap contributors, CC-BY-SA"
+                }
+            },
+            "osmbe": {
+                "name": "OpenStreetMap (Belgian Style)",
+                "attribution": {
+                    "text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6"
+                }
+            },
+            "osmbe-fr": {
+                "name": "OpenStreetMap (Belgian Style - French)",
+                "attribution": {
+                    "text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6"
+                }
+            },
+            "osmbe-nl": {
+                "name": "OpenStreetMap (Belgian Style - Dutch)",
+                "attribution": {
+                    "text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6"
+                }
+            },
+            "osmfr": {
+                "name": "OpenStreetMap (French Style)",
+                "attribution": {
+                    "text": "Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL"
+                }
             },
             "osmse-ekonomiska": {
+                "name": "Lantmäteriet Economic Map 1950–1980",
+                "description": "Scan of \"Economic maps\" ca. 1950–1980",
                 "attribution": {
                     "text": "© Lantmäteriet"
-                },
-                "description": "Scan of \"Economic maps\" ca. 1950–1980",
-                "name": "Lantmäteriet Economic Map 1950–1980"
+                }
+            },
+            "public_transport_oepnv": {
+                "name": "Public Transport (ÖPNV)",
+                "attribution": {
+                    "text": "© OpenStreetMap contributors, CC-BY-SA"
+                }
             },
             "qa_no_address": {
+                "name": "QA No Address",
                 "attribution": {
                     "text": "Simon Poole, Data ©OpenStreetMap contributors"
-                },
-                "name": "QA No Address"
+                }
             },
             "skobbler": {
+                "name": "skobbler",
                 "attribution": {
                     "text": "© Tiles: skobbler Map data: OpenStreetMap contributors"
-                },
-                "name": "skobbler"
+                }
             },
             "skoterleder": {
+                "name": "Snowmobile map Sweden",
+                "description": "Snowmobile trails",
                 "attribution": {
                     "text": "© Skoterleder.org"
-                },
-                "description": "Snowmobile trails",
-                "name": "Snowmobile map Sweden"
+                }
             },
             "stamen-terrain-background": {
+                "name": "Stamen Terrain",
                 "attribution": {
                     "text": "Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL"
-                },
-                "name": "Stamen Terrain"
+                }
             },
             "stockholm-orto": {
+                "name": "Stockholm Orthophoto",
+                "description": "Orthophotos from the municipality of Stockholm 2016, CC0 license",
                 "attribution": {
                     "text": "© Stockholm municipality, CC0"
-                },
-                "description": "Orthophotos from the municipality of Stockholm 2016, CC0 license",
-                "name": "Stockholm Orthophoto"
+                }
             },
             "tf-cycle": {
+                "name": "Thunderforest OpenCycleMap",
                 "attribution": {
                     "text": "Maps © Thunderforest, Data © OpenStreetMap contributors"
-                },
-                "name": "Thunderforest OpenCycleMap"
+                }
             },
             "tf-landscape": {
+                "name": "Thunderforest Landscape",
                 "attribution": {
                     "text": "Maps © Thunderforest, Data © OpenStreetMap contributors"
-                },
-                "name": "Thunderforest Landscape"
+                }
             },
-            "trafikverket-baninfo": {
+            "tf-outdoors": {
+                "name": "Thunderforest Outdoors",
                 "attribution": {
-                    "text": "© Trafikverket, CC0"
-                },
-                "description": "Swedish railway network, including sidings",
-                "name": "Trafikverket Railway Network"
+                    "text": "Maps © Thunderforest, Data © OpenStreetMap contributors"
+                }
             },
-            "trafikverket-baninfo-option": {
+            "trafikverket-baninfo": {
+                "name": "Trafikverket Railway Network",
+                "description": "Swedish railway network, including sidings",
                 "attribution": {
                     "text": "© Trafikverket, CC0"
-                },
-                "description": "Swedish railway network with several options for map layers",
-                "name": "Trafikverket Railway Network options"
+                }
             },
             "trafikverket-vagnat": {
+                "name": "Trafikverket Road Network",
+                "description": "Swedish NVDB road network",
                 "attribution": {
                     "text": "© Trafikverket, CC0"
-                },
-                "description": "Swedish NVDB road network",
-                "name": "Trafikverket Road Network"
+                }
             },
             "trafikverket-vagnat-extra": {
+                "name": "Trafikverket Road Network extra",
+                "description": "Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera",
                 "attribution": {
                     "text": "© Trafikverket, CC0"
-                },
-                "description": "Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera",
-                "name": "Trafikverket Road Network extra"
+                }
             },
             "trafikverket-vagnat-navn": {
+                "name": "Trafikverket Street Names",
+                "description": "Swedish NVDB street names",
                 "attribution": {
                     "text": "© Trafikverket, CC0"
-                },
-                "description": "Swedish NVDB street names",
-                "name": "Trafikverket Street Names"
+                }
             },
-            "trafikverket-vagnat-option": {
+            "wikimedia-map": {
+                "name": "Wikimedia Map",
                 "attribution": {
-                    "text": "© Trafikverket, CC0"
-                },
-                "description": "Swedish NVDB road network with several options for map layers",
-                "name": "Trafikverket Road Network options"
+                    "text": "© OpenStreetMap contributors, CC-BY-SA"
+                }
             }
         },
         "community": {
diff --git a/modules/core/context.js b/modules/core/context.js
index 255fa87bac..1dcf42e9a0 100644
--- a/modules/core/context.js
+++ b/modules/core/context.js
@@ -27,7 +27,7 @@ export function coreContext() {
   let _deferred = new Set();
 
   context.version = '2.17.2';
-  context.privacyVersion = '20191217';
+  context.privacyVersion = '20200312';
 
 
   // https://github.com/openstreetmap/iD/issues/772
diff --git a/package.json b/package.json
index d3153fe153..8944c68de6 100644
--- a/package.json
+++ b/package.json
@@ -30,7 +30,6 @@
     "dist:svg:mapillary:signs": "svg-sprite --symbol --symbol-dest . --symbol-sprite dist/img/mapillary-sprite.svg node_modules/mapillary_sprite_source/package_signs/*.svg",
     "dist:svg:mapillary:objects": "svg-sprite --symbol --symbol-dest . --symbol-sprite dist/img/mapillary-object-sprite.svg node_modules/mapillary_sprite_source/package_objects/*.svg",
     "dist:svg:temaki": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"temaki-%s\" --symbol-sprite dist/img/temaki-sprite.svg node_modules/@ideditor/temaki/icons/*.svg",
-    "imagery": "node scripts/update_imagery.js",
     "lint": "eslint scripts test/spec modules",
     "start": "npm-run-all -s build start:server",
     "start:server": "node scripts/server.js",
@@ -68,6 +67,7 @@
     "@fortawesome/free-regular-svg-icons": "~5.12.0",
     "@fortawesome/free-solid-svg-icons": "~5.12.0",
     "@ideditor/temaki": "~3.19.0",
+    "@ideditor/imagery-index": "~0.1.0",
     "@mapbox/maki": "^6.0.0",
     "@rollup/plugin-buble": "^0.21.0",
     "@rollup/plugin-commonjs": "^11.0.1",
@@ -79,7 +79,6 @@
     "colors": "^1.1.2",
     "concat-files": "^0.1.1",
     "d3": "~5.15.0",
-    "editor-layer-index": "github:osmlab/editor-layer-index#gh-pages",
     "eslint": "^6.3.0",
     "gaze": "^1.1.3",
     "glob": "^7.1.0",
diff --git a/scripts/build_data.js b/scripts/build_data.js
index 4d31be886e..0985577c44 100644
--- a/scripts/build_data.js
+++ b/scripts/build_data.js
@@ -122,7 +122,6 @@ function buildData() {
     minifyJSON('data/address_formats.json', 'dist/data/address_formats.min.json'),
     minifyJSON('data/deprecated.json', 'dist/data/deprecated.min.json'),
     minifyJSON('data/discarded.json', 'dist/data/discarded.min.json'),
-    minifyJSON('data/imagery.json', 'dist/data/imagery.min.json'),
     minifyJSON('data/intro_graph.json', 'dist/data/intro_graph.min.json'),
     minifyJSON('data/keepRight.json', 'dist/data/keepRight.min.json'),
     minifyJSON('data/languages.json', 'dist/data/languages.min.json'),
@@ -772,16 +771,16 @@ function translationsToYAML(translations) {
 
 function writeEnJson(tstrings) {
   const readCoreYaml = readFileProm('data/core.yaml', 'utf8');
-  const readImagery = readFileProm('node_modules/editor-layer-index/i18n/en.yaml', 'utf8');
+  const readImagery = readFileProm('node_modules/@ideditor/imagery-index/i18n/en.yaml', 'utf8');
   const readCommunity = readFileProm('node_modules/osm-community-index/i18n/en.yaml', 'utf8');
 
   return Promise.all([readCoreYaml, readImagery, readCommunity])
     .then(data => {
-      let core = YAML.load(data[0]);
-      let imagery = YAML.load(data[1]);
-      let community = YAML.load(data[2]);
+      const core = YAML.load(data[0]);
+      const imagery = YAML.load(data[1]);
+      const community = YAML.load(data[2]);
 
-      let enjson = core;
+      const enjson = core;
       enjson.en.presets = tstrings;
       enjson.en.imagery = imagery.en.imagery;
       enjson.en.community = community.en;
diff --git a/scripts/deploy.sh b/scripts/deploy.sh
index f95ae09e91..e643a909a3 100755
--- a/scripts/deploy.sh
+++ b/scripts/deploy.sh
@@ -29,13 +29,7 @@ if [[ "${rev}" != "${orig}" ]] ; then
   npm install > /dev/null 2>&1
 fi
 
-# pull latest imagery
-rm -rf node_modules/editor-layer-index/
-git clone https://github.com/osmlab/editor-layer-index.git node_modules/editor-layer-index > /dev/null 2>&1
-rm -rf node_modules/editor-layer-index/.git/
-
 # build everything
-npm run imagery
 npm run all
 
 # pull latest translations
diff --git a/scripts/update_imagery.js b/scripts/update_imagery.js
deleted file mode 100644
index b2f8bafa59..0000000000
--- a/scripts/update_imagery.js
+++ /dev/null
@@ -1,203 +0,0 @@
-/* eslint-disable no-console */
-const fs = require('fs');
-const sources = require('editor-layer-index/imagery.json');
-const prettyStringify = require('json-stringify-pretty-compact');
-
-let imagery = [];
-
-// ignore imagery more than 20 years old..
-let cutoffDate = new Date();
-cutoffDate.setFullYear(cutoffDate.getFullYear() - 20);
-
-
-const keep = [
-  // Add custom sources here if needed.
-  {
-    id: 'Maxar-Premium',
-    name: 'Maxar Premium Imagery (Beta)',
-    type: 'tms',
-    default: true,
-    attribution: {
-      required: true,
-      text: 'Terms & Feedback',
-      url: 'https://wiki.openstreetmap.org/wiki/DigitalGlobe'
-    },
-    description: 'Maxar Premium is a mosaic composed of Maxar basemap with select regions filled with +Vivid or custom area of interest imagery, 50cm resolution or better, and refreshed more frequently with ongoing updates.',
-    icon: 'https://osmlab.github.io/editor-layer-index/sources/world/Maxar.png',
-    max_zoom: 22,
-    url: '7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f041cc9f8df06b0345600376663e7dc1cdbc7df16876d8b5d006ed5782e6af4bfe2ff5a292',
-    encrypted: true
-  }, {
-    id: 'Maxar-Standard',
-    name: 'Maxar Standard Imagery (Beta)',
-    type: 'tms',
-    default: true,
-    attribution: {
-      required: true,
-      text: 'Terms & Feedback',
-      url: 'https://wiki.openstreetmap.org/wiki/DigitalGlobe'
-    },
-    description: 'Maxar Standard is a curated set of imagery covering 86% of the earth’s landmass, with 30-60cm resolution where available, backfilled by Landsat. Average age is 2.31 years, with some areas updated 2x per year.',
-    icon: 'https://osmlab.github.io/editor-layer-index/sources/world/Maxar.png',
-    max_zoom: 22,
-    url: '7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f010c8c9d7fb6b534560012461377dc1cdb672f16827dfe0d005bf5685b7ac4ea97cf5f795',
-    encrypted: true
-  }
-];
-
-const discard = {
-  'osmbe': true,                        // 'OpenStreetMap (Belgian Style)'
-  'osmfr': true,                        // 'OpenStreetMap (French Style)'
-  'osm-mapnik-german_style': true,      // 'OpenStreetMap (German Style)'
-  'HDM_HOT': true,                      // 'OpenStreetMap (HOT Style)'
-  'osm-mapnik-black_and_white': true,   // 'OpenStreetMap (Standard Black & White)'
-  'osm-mapnik-no_labels': true,         // 'OpenStreetMap (Mapnik, no labels)'
-  'OpenStreetMap-turistautak': true,    // 'OpenStreetMap (turistautak)'
-
-  'hike_n_bike': true,                  // 'Hike & Bike'
-  'landsat': true,                      // 'Landsat'
-  'skobbler': true,                     // 'Skobbler'
-  'public_transport_oepnv': true,       // 'Public Transport (ÖPNV)'
-  'tf-cycle': true,                     // 'Thunderforest OpenCycleMap'
-  'tf-landscape': true,                 // 'Thunderforest Landscape'
-  'qa_no_address': true,                // 'QA No Address'
-  'wikimedia-map': true,                // 'Wikimedia Map'
-
-  'openinframap-petroleum': true,
-  'openinframap-power': true,
-  'openinframap-telecoms': true,
-  'openpt_map': true,
-  'openrailwaymap': true,
-  'openseamap': true,
-  'opensnowmap-overlay': true,
-
-  'US-TIGER-Roads-2012': true,
-  'US-TIGER-Roads-2014': true,
-
-  'Waymarked_Trails-Cycling': true,
-  'Waymarked_Trails-Hiking': true,
-  'Waymarked_Trails-Horse_Riding': true,
-  'Waymarked_Trails-MTB': true,
-  'Waymarked_Trails-Skating': true,
-  'Waymarked_Trails-Winter_Sports': true,
-
-  'OSM_Inspector-Addresses': true,
-  'OSM_Inspector-Geometry': true,
-  'OSM_Inspector-Highways': true,
-  'OSM_Inspector-Multipolygon': true,
-  'OSM_Inspector-Places': true,
-  'OSM_Inspector-Routing': true,
-  'OSM_Inspector-Tagging': true,
-
-  'EOXAT2018CLOUDLESS': true
-};
-
-const supportedWMSProjections = {
-  'EPSG:4326': true,
-  'EPSG:3857': true,
-  'EPSG:900913': true,
-  'EPSG:3587': true,
-  'EPSG:54004': true,
-  'EPSG:41001': true,
-  'EPSG:102113': true,
-  'EPSG:102100': true,
-  'EPSG:3785': true
-};
-
-
-sources.concat(keep).forEach(source => {
-  if (source.type !== 'tms' && source.type !== 'wms' && source.type !== 'bing') return;
-  if (source.id in discard) return;
-
-  let im = {
-    id: source.id,
-    name: source.name,
-    type: source.type,
-    template: source.url
-  };
-
-  // Some sources support 512px tiles
-  if (source.id === 'Mapbox') {
-    im.template = im.template.replace('.jpg', '@2x.jpg');
-    im.tileSize = 512;
-  } else if (source.id === 'mtbmap-no') {
-    im.tileSize = 512;
-  }
-
-  // Some WMS sources are supported, check projection
-  if (source.type === 'wms') {
-    const projection = (source.available_projections || []).find(p => supportedWMSProjections[p]);
-    if (!projection) return;
-    if (sources.some(other => other.name === source.name && other.type !== source.type)) return;
-    im.projection = projection;
-  }
-
-
-  let startDate, endDate, isValid;
-
-  if (source.end_date) {
-    endDate = new Date(source.end_date);
-    isValid = !isNaN(endDate.getTime());
-    if (isValid) {
-      if (endDate <= cutoffDate) return;  // too old
-      im.endDate = endDate;
-    }
-  }
-
-  if (source.start_date) {
-    startDate = new Date(source.start_date);
-    isValid = !isNaN(startDate.getTime());
-    if (isValid) {
-      im.startDate = startDate;
-    }
-  }
-
-  let extent = source.extent || {};
-  if (extent.min_zoom || extent.max_zoom) {
-    im.zoomExtent = [
-      extent.min_zoom || 0,
-      extent.max_zoom || 22
-    ];
-  }
-
-  if (extent.polygon) {
-    im.polygon = extent.polygon;
-  } else if (extent.bbox) {
-    im.polygon = [[
-      [extent.bbox.min_lon, extent.bbox.min_lat],
-      [extent.bbox.min_lon, extent.bbox.max_lat],
-      [extent.bbox.max_lon, extent.bbox.max_lat],
-      [extent.bbox.max_lon, extent.bbox.min_lat],
-      [extent.bbox.min_lon, extent.bbox.min_lat]
-    ]];
-  }
-
-  if (source.id === 'mapbox_locator_overlay') {
-    im.overzoom = false;
-  }
-
-  const attribution = source.attribution || {};
-  if (attribution.url) {
-    im.terms_url = attribution.url;
-  }
-  if (attribution.text) {
-    im.terms_text = attribution.text;
-  }
-  if (attribution.html) {
-    im.terms_html = attribution.html;
-  }
-
-  ['best', 'default', 'description', 'encrypted', 'icon', 'overlay', 'tileSize'].forEach(prop => {
-    if (source[prop]) {
-      im[prop] = source[prop];
-    }
-  });
-
-  imagery.push(im);
-});
-
-
-imagery.sort((a, b) => a.name.localeCompare(b.name));
-
-fs.writeFileSync('data/imagery.json', prettyStringify(imagery));
-fs.writeFileSync('dist/data/imagery.min.json', JSON.stringify(imagery));

From 1aa5e89a384795c08247dcf11abef4585d46cc1d Mon Sep 17 00:00:00 2001
From: Bryan Housel 
Date: Thu, 12 Mar 2020 17:15:42 -0400
Subject: [PATCH 3/8] Support {apikey} token replacement

---
 modules/renderer/background.js        | 19 +++++----
 modules/renderer/background_source.js | 58 +++++++++++++++++----------
 2 files changed, 45 insertions(+), 32 deletions(-)

diff --git a/modules/renderer/background.js b/modules/renderer/background.js
index d1bd4722e7..67b4034e2e 100644
--- a/modules/renderer/background.js
+++ b/modules/renderer/background.js
@@ -8,9 +8,7 @@ import whichPolygon from 'which-polygon';
 import { geoExtent, geoMetersToOffset, geoOffsetToMeters} from '../geo';
 import { rendererBackgroundSource } from './background_source';
 import { rendererTileLayer } from './tile_layer';
-import { utilQsString, utilStringQs } from '../util';
-import { utilDetect } from '../util/detect';
-import { utilRebind } from '../util/rebind';
+import { utilAesDecrypt, utilDetect, utilQsString, utilStringQs, utilRebind } from '../util';
 
 
 let _imageryIndex = null;
@@ -589,6 +587,11 @@ function preprocessSources(sources) {
     'EPSG:3785': true
   };
 
+  const apikeys = {
+    'Maxar-Premium': '2ac35d3bc99b64243066ef6888846358386da6cadbe0de9dbaf6ce8c17dae8d532d0d46f',
+    'Maxar-Standard': '7bc70b61c29b34243064bd6f818463583262a6ca8ae78b9db9a4cf8b46d9ed8261d08168'
+  };
+
 
   let keepImagery = [];
   sources.forEach(source => {
@@ -603,13 +606,9 @@ function preprocessSources(sources) {
       locationSet: source.locationSet
     };
 
-    // Maxar sources
-    if (source.id === 'Maxar-Premium') {
-      im.template = '7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f041cc9f8df06b0345600376663e7dc1cdbc7df16876d8b5d006ed5782e6af4bfe2ff5a292';
-      im.encrypted = true;
-    } else if (source.id === 'Maxar-Standard') {
-      im.template = '7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f010c8c9d7fb6b534560012461377dc1cdb672f16827dfe0d005bf5685b7ac4ea97cf5f795';
-      im.encrypted = true;
+    // decrypt api keys
+    if (apikeys[source.id]) {
+      im.apikey = utilAesDecrypt(apikeys[source.id]);
     }
 
     // A few sources support 512px tiles
diff --git a/modules/renderer/background_source.js b/modules/renderer/background_source.js
index 581f52493d..aa93a6f185 100644
--- a/modules/renderer/background_source.js
+++ b/modules/renderer/background_source.js
@@ -3,7 +3,6 @@ import { json as d3_json } from 'd3-fetch';
 
 import { t } from '../util/locale';
 import { geoExtent, geoSphericalDistance } from '../geo';
-import { utilAesDecrypt } from '../util/aes';
 import { utilDetect } from '../util/detect';
 
 
@@ -34,7 +33,7 @@ export function rendererBackgroundSource(data) {
     var name = source.name;
     var description = source.description;
     var best = !!source.best;
-    var template = source.encrypted ? utilAesDecrypt(source.template) : source.template;
+    var template = source.template;
 
     source.tileSize = data.tileSize || 256;
     source.zoomExtent = data.zoomExtent || [0, 22];
@@ -81,14 +80,16 @@ export function rendererBackgroundSource(data) {
     };
 
 
-    source.template = function(_) {
+    source.template = function(val) {
         if (!arguments.length) return template;
-        if (source.id === 'custom') template = _;
+        if (source.id === 'custom') template = val;
         return source;
     };
 
 
     source.url = function(coord) {
+        var result = template;
+
         if (this.type === 'wms') {
             var tileToProjectedCoords = (function(x, y, z) {
                 //polyfill for IE11, PhantomJS
@@ -120,7 +121,8 @@ export function rendererBackgroundSource(data) {
             var projection = this.projection;
             var minXmaxY = tileToProjectedCoords(coord[0], coord[1], coord[2]);
             var maxXminY = tileToProjectedCoords(coord[0]+1, coord[1]+1, coord[2]);
-            return template.replace(/\{(\w+)\}/g, function (token, key) {
+
+            result = result.replace(/\{(\w+)\}/g, function (token, key) {
               switch (key) {
                 case 'width':
                 case 'height':
@@ -143,28 +145,40 @@ export function rendererBackgroundSource(data) {
                   return token;
               }
             });
+
+        } else if (this.type === 'tms') {
+            result = result
+                .replace('{x}', coord[0])
+                .replace('{y}', coord[1])
+                // TMS-flipped y coordinate
+                .replace(/\{[t-]y\}/, Math.pow(2, coord[2]) - coord[1] - 1)
+                .replace(/\{z(oom)?\}/, coord[2]);
+
+        } else if (this.type === 'bing') {
+            result = result
+                .replace('{u}', function() {
+                    var u = '';
+                    for (var zoom = coord[2]; zoom > 0; zoom--) {
+                        var b = 0;
+                        var mask = 1 << (zoom - 1);
+                        if ((coord[0] & mask) !== 0) b++;
+                        if ((coord[1] & mask) !== 0) b += 2;
+                        u += b.toString();
+                    }
+                    return u;
+                });
+
         }
-        return template
-            .replace('{x}', coord[0])
-            .replace('{y}', coord[1])
-            // TMS-flipped y coordinate
-            .replace(/\{[t-]y\}/, Math.pow(2, coord[2]) - coord[1] - 1)
-            .replace(/\{z(oom)?\}/, coord[2])
+
+        result = result
+            .replace('{apikey}', (this.apikey || ''))
             .replace(/\{switch:([^}]+)\}/, function(s, r) {
                 var subdomains = r.split(',');
                 return subdomains[(coord[0] + coord[1]) % subdomains.length];
-            })
-            .replace('{u}', function() {
-                var u = '';
-                for (var zoom = coord[2]; zoom > 0; zoom--) {
-                    var b = 0;
-                    var mask = 1 << (zoom - 1);
-                    if ((coord[0] & mask) !== 0) b++;
-                    if ((coord[1] & mask) !== 0) b += 2;
-                    u += b.toString();
-                }
-                return u;
             });
+
+
+        return result;
     };
 
 

From bdd02e5943c42b051c2b0b51aff3bfcaf535c63f Mon Sep 17 00:00:00 2001
From: Bryan Housel 
Date: Fri, 13 Mar 2020 12:43:11 -0400
Subject: [PATCH 4/8] Fix source filtering at low zooms to include global
 sources

---
 modules/renderer/background.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/modules/renderer/background.js b/modules/renderer/background.js
index 67b4034e2e..90b53692eb 100644
--- a/modules/renderer/background.js
+++ b/modules/renderer/background.js
@@ -51,6 +51,8 @@ export function rendererBackground(context) {
           // Features resolved from loco should have area precalculated.
           source.area = feature.properties.area || Infinity;
 
+          // Flag if this is a "global" source
+          source.isGlobal = feature.id === 'Q2';
 
           // Instantiate a `rendererBackgroundSource`
           let background;
@@ -283,7 +285,7 @@ export function rendererBackground(context) {
 
     return _imageryIndex.backgrounds.filter(source => {
       if (includeCurrent && currSource === source) return true;  // optionally include the current imagery
-      if (zoom && zoom < 6) return false;                        // optionally exclude local imagery at low zooms
+      if (zoom && zoom < 6) return source.isGlobal;              // optionally exclude local imagery at low zooms
       return visible[source.id];                                 // include imagery visible in given extent
     });
   };

From b96eccc67cf310f79d7d02efb6de8b859d69a01b Mon Sep 17 00:00:00 2001
From: Bryan Housel 
Date: Fri, 13 Mar 2020 13:11:56 -0400
Subject: [PATCH 5/8] Fix the domain switch test

---
 test/spec/renderer/background_source.js | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/test/spec/renderer/background_source.js b/test/spec/renderer/background_source.js
index 96d4161bf2..7d265bdac6 100644
--- a/test/spec/renderer/background_source.js
+++ b/test/spec/renderer/background_source.js
@@ -5,10 +5,7 @@ describe('iD.rendererBackgroundSource', function() {
     });
 
     it('supports tms replacement tokens', function() {
-        var source = iD.rendererBackgroundSource({
-            type: 'tms',
-            template: '{z}/{x}/{y}'
-        });
+        var source = iD.rendererBackgroundSource({ type: 'tms', template: '{z}/{x}/{y}' });
         expect(source.url([0,1,2])).to.equal('2/0/1');
     });
 
@@ -35,12 +32,12 @@ describe('iD.rendererBackgroundSource', function() {
     });
 
     it('supports subdomains', function() {
-        var source = iD.rendererBackgroundSource({ template: '{switch:a,b}/{z}/{x}/{y}'});
+        var source = iD.rendererBackgroundSource({ type: 'tms', template: '{switch:a,b}/{z}/{x}/{y}' });
         expect(source.url([0,1,2])).to.equal('b/2/0/1');
     });
 
     it('distributes requests between subdomains', function() {
-        var source = iD.rendererBackgroundSource({ template: '{switch:a,b}/{z}/{x}/{y}' });
+        var source = iD.rendererBackgroundSource({ type: 'tms', template: '{switch:a,b}/{z}/{x}/{y}' });
         expect(source.url([0,1,1])).to.equal('b/1/0/1');
         expect(source.url([0,2,1])).to.equal('a/1/0/2');
     });

From 5db95d8a89d30a073378d1dfc48afa6f87f23b36 Mon Sep 17 00:00:00 2001
From: Bryan Housel 
Date: Fri, 13 Mar 2020 14:57:40 -0400
Subject: [PATCH 6/8] Fix source filtering for 'custom' and 'none'

---
 modules/renderer/background.js        | 3 ++-
 modules/renderer/background_source.js | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/modules/renderer/background.js b/modules/renderer/background.js
index 90b53692eb..9413a30792 100644
--- a/modules/renderer/background.js
+++ b/modules/renderer/background.js
@@ -284,8 +284,9 @@ export function rendererBackground(context) {
     const currSource = baseLayer.source();
 
     return _imageryIndex.backgrounds.filter(source => {
+      if (source.isGlobal) return true;                          // always include imagery with worldwide coverage
       if (includeCurrent && currSource === source) return true;  // optionally include the current imagery
-      if (zoom && zoom < 6) return source.isGlobal;              // optionally exclude local imagery at low zooms
+      if (zoom && zoom < 6) return false;                        // optionally exclude local imagery at low zooms
       return visible[source.id];                                 // include imagery visible in given extent
     });
   };
diff --git a/modules/renderer/background_source.js b/modules/renderer/background_source.js
index aa93a6f185..e760588e48 100644
--- a/modules/renderer/background_source.js
+++ b/modules/renderer/background_source.js
@@ -490,7 +490,7 @@ rendererBackgroundSource.Esri = function(data) {
 
 
 rendererBackgroundSource.None = function() {
-    var source = rendererBackgroundSource({ id: 'none', template: '' });
+    var source = rendererBackgroundSource({ id: 'none', template: '', isGlobal: true });
 
 
     source.name = function() {
@@ -513,7 +513,7 @@ rendererBackgroundSource.None = function() {
 
 
 rendererBackgroundSource.Custom = function(template) {
-    var source = rendererBackgroundSource({ id: 'custom', template: template });
+    var source = rendererBackgroundSource({ id: 'custom', template: template, isGlobal: true });
 
 
     source.name = function() {

From 2a28a03ca13f68f0d94ae0ca7aedb2b9b4530a3d Mon Sep 17 00:00:00 2001
From: Bryan Housel 
Date: Fri, 13 Mar 2020 15:56:13 -0400
Subject: [PATCH 7/8] Add template type detection for custom sources (closes
 #4977)

Before custom sources were assumed tms, now we detect wms
and guess 'EPSG:3857' projection

This commit also delays selecting the custom source in background_list.js,
because creating the background sources is promisified now might not happen
until after the UI control is created
---
 modules/renderer/background_source.js  | 60 +++++++++++++++++---------
 modules/ui/sections/background_list.js | 11 ++---
 2 files changed, 45 insertions(+), 26 deletions(-)

diff --git a/modules/renderer/background_source.js b/modules/renderer/background_source.js
index e760588e48..c0087beabf 100644
--- a/modules/renderer/background_source.js
+++ b/modules/renderer/background_source.js
@@ -29,44 +29,44 @@ function vintageRange(vintage) {
 
 export function rendererBackgroundSource(data) {
     var source = Object.assign({}, data);   // shallow copy
-    var offset = [0, 0];
-    var name = source.name;
-    var description = source.description;
-    var best = !!source.best;
-    var template = source.template;
+    var _offset = [0, 0];
+    var _name = source.name;
+    var _description = source.description;
+    var _best = !!source.best;
+    var _template = source.template;
 
     source.tileSize = data.tileSize || 256;
     source.zoomExtent = data.zoomExtent || [0, 22];
     source.overzoom = data.overzoom !== false;
 
     source.offset = function(val) {
-        if (!arguments.length) return offset;
-        offset = val;
+        if (!arguments.length) return _offset;
+        _offset = val;
         return source;
     };
 
 
     source.nudge = function(val, zoomlevel) {
-        offset[0] += val[0] / Math.pow(2, zoomlevel);
-        offset[1] += val[1] / Math.pow(2, zoomlevel);
+        _offset[0] += val[0] / Math.pow(2, zoomlevel);
+        _offset[1] += val[1] / Math.pow(2, zoomlevel);
         return source;
     };
 
 
     source.name = function() {
         var id_safe = source.id.replace(/\./g, '');
-        return t('imagery.' + id_safe + '.name', { default: name });
+        return t('imagery.' + id_safe + '.name', { default: _name });
     };
 
 
     source.description = function() {
         var id_safe = source.id.replace(/\./g, '');
-        return t('imagery.' + id_safe + '.description', { default: description });
+        return t('imagery.' + id_safe + '.description', { default: _description });
     };
 
 
     source.best = function() {
-        return best;
+        return _best;
     };
 
 
@@ -81,16 +81,34 @@ export function rendererBackgroundSource(data) {
 
 
     source.template = function(val) {
-        if (!arguments.length) return template;
-        if (source.id === 'custom') template = val;
+        if (!arguments.length) return _template;
+        if (source.id === 'custom') {
+            _template = val;
+        }
         return source;
     };
 
 
     source.url = function(coord) {
-        var result = template;
+        var result = _template;
+        if (result === '') return result;   // source 'none'
+
+
+        // Guess a type based on the tokens present in the template
+        // (This is for 'custom' source, where we don't know)
+        if (!source.type) {
+            if (/\{(proj|wkid|bbox)\}/.test(_template)) {
+                source.type = 'wms';
+                source.projection = 'EPSG:3857';  // guess
+            } else if (/\{(x|y)\}/.test(_template)) {
+                source.type = 'tms';
+            } else if (/\{u\}/.test(_template)) {
+                source.type = 'bing';
+            }
+        }
+
 
-        if (this.type === 'wms') {
+        if (source.type === 'wms') {
             var tileToProjectedCoords = (function(x, y, z) {
                 //polyfill for IE11, PhantomJS
                 var sinh = Math.sinh || function(x) {
@@ -102,7 +120,7 @@ export function rendererBackgroundSource(data) {
                 var lon = x / zoomSize * Math.PI * 2 - Math.PI;
                 var lat = Math.atan(sinh(Math.PI * (1 - 2 * y / zoomSize)));
 
-                switch (this.projection) {
+                switch (source.projection) {
                     case 'EPSG:4326':
                         return {
                             x: lon * 180 / Math.PI,
@@ -115,7 +133,7 @@ export function rendererBackgroundSource(data) {
                             y: 20037508.34 / Math.PI * mercCoords[1]
                         };
                 }
-            }).bind(this);
+            });
 
             var tileSize = this.tileSize;
             var projection = this.projection;
@@ -146,7 +164,7 @@ export function rendererBackgroundSource(data) {
               }
             });
 
-        } else if (this.type === 'tms') {
+        } else if (source.type === 'tms') {
             result = result
                 .replace('{x}', coord[0])
                 .replace('{y}', coord[1])
@@ -154,7 +172,7 @@ export function rendererBackgroundSource(data) {
                 .replace(/\{[t-]y\}/, Math.pow(2, coord[2]) - coord[1] - 1)
                 .replace(/\{z(oom)?\}/, coord[2]);
 
-        } else if (this.type === 'bing') {
+        } else if (source.type === 'bing') {
             result = result
                 .replace('{u}', function() {
                     var u = '';
@@ -167,9 +185,9 @@ export function rendererBackgroundSource(data) {
                     }
                     return u;
                 });
-
         }
 
+        // these apply to any type..
         result = result
             .replace('{apikey}', (this.apikey || ''))
             .replace(/\{switch:([^}]+)\}/, function(s, r) {
diff --git a/modules/ui/sections/background_list.js b/modules/ui/sections/background_list.js
index 1d8a946ecd..99b0f62808 100644
--- a/modules/ui/sections/background_list.js
+++ b/modules/ui/sections/background_list.js
@@ -18,8 +18,6 @@ export function uiSectionBackgroundList(context) {
 
     var _backgroundList = d3_select(null);
 
-    var _customSource = context.background().findSource('custom');
-
     var _settingsCustomBackground = uiSettingsCustomBackground(context)
         .on('change', customChanged);
 
@@ -235,11 +233,14 @@ export function uiSectionBackgroundList(context) {
 
 
     function customChanged(d) {
+        var customSource = context.background().findSource('custom');
+        if (!customSource) return;
+
         if (d && d.template) {
-            _customSource.template(d.template);
-            chooseBackground(_customSource);
+            customSource.template(d.template);
+            chooseBackground(customSource);
         } else {
-            _customSource.template('');
+            customSource.template('');
             chooseBackground(context.background().findSource('none'));
         }
     }

From 2805c55ff37ba715fdb8f28f0b381556dda8ca82 Mon Sep 17 00:00:00 2001
From: Bryan Housel 
Date: Fri, 13 Mar 2020 16:43:04 -0400
Subject: [PATCH 8/8] Update the custom background instructions pane to include
 wms

---
 data/core.yaml                        | 2 +-
 dist/locales/en.json                  | 2 +-
 modules/renderer/background_source.js | 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/data/core.yaml b/data/core.yaml
index 153f2b7914..1539f0d7a1 100644
--- a/data/core.yaml
+++ b/data/core.yaml
@@ -733,7 +733,7 @@ en:
     custom_background:
       tooltip: Edit custom background
       header: Custom Background Settings
-      instructions: "Enter a tile URL template. Valid tokens are:\n   {zoom} or {z}, {x}, {y} for Z/X/Y tile scheme\n   {-y} or {ty} for flipped TMS-style Y coordinates\n   {u} for quadtile scheme\n   {switch:a,b,c} for DNS server multiplexing\n\nExample:\n{example}"
+      instructions: "Enter a tile URL template below.\n\nSupported WMS tokens:\n  `{proj}`: requested projection (`EPSG:3857` only)\n  `{wkid}`: same as proj, but without the EPSG (`3857` only)\n  `{width}`, `{height}`: requested image dimensions (`256` only)\n  `{bbox}`: requested bounding box (e.g. `minX,minY,maxX,maxY`)\n\nSupported TMS tokens:\n  `{zoom}` or `{z}, `{x}`, `{y}`: Z/X/Y tile coordinates\n  `{-y}` or `{ty}`: flipped TMS-style Y coordinates\n  `{switch:a,b,c}`: DNS server multiplexing\n  `{u}`: quadtile (Bing) scheme\n\nExample:\n{example}"
       template:
         placeholder: Enter a url template
     custom_data:
diff --git a/dist/locales/en.json b/dist/locales/en.json
index 492e1857f9..712998647a 100644
--- a/dist/locales/en.json
+++ b/dist/locales/en.json
@@ -924,7 +924,7 @@
             "custom_background": {
                 "tooltip": "Edit custom background",
                 "header": "Custom Background Settings",
-                "instructions": "Enter a tile URL template. Valid tokens are:\n   {zoom} or {z}, {x}, {y} for Z/X/Y tile scheme\n   {-y} or {ty} for flipped TMS-style Y coordinates\n   {u} for quadtile scheme\n   {switch:a,b,c} for DNS server multiplexing\n\nExample:\n{example}",
+                "instructions": "Enter a tile URL template below.\n\nSupported WMS tokens:\n  `{proj}`: requested projection (`EPSG:3857` only)\n  `{wkid}`: same as proj, but without the EPSG (`3857` only)\n  `{width}`, `{height}`: requested image dimensions (`256` only)\n  `{bbox}`: requested bounding box (e.g. `minX,minY,maxX,maxY`)\n\nSupported TMS tokens:\n  `{zoom}` or `{z}, `{x}`, `{y}`: Z/X/Y tile coordinates\n  `{-y}` or `{ty}`: flipped TMS-style Y coordinates\n  `{switch:a,b,c}`: DNS server multiplexing\n  `{u}`: quadtile (Bing) scheme\n\nExample:\n{example}",
                 "template": {
                     "placeholder": "Enter a url template"
                 }
diff --git a/modules/renderer/background_source.js b/modules/renderer/background_source.js
index c0087beabf..236f050603 100644
--- a/modules/renderer/background_source.js
+++ b/modules/renderer/background_source.js
@@ -135,8 +135,8 @@ export function rendererBackgroundSource(data) {
                 }
             });
 
-            var tileSize = this.tileSize;
-            var projection = this.projection;
+            var tileSize = source.tileSize;
+            var projection = source.projection;
             var minXmaxY = tileToProjectedCoords(coord[0], coord[1], coord[2]);
             var maxXminY = tileToProjectedCoords(coord[0]+1, coord[1]+1, coord[2]);
 
@@ -189,7 +189,7 @@ export function rendererBackgroundSource(data) {
 
         // these apply to any type..
         result = result
-            .replace('{apikey}', (this.apikey || ''))
+            .replace('{apikey}', (source.apikey || ''))
             .replace(/\{switch:([^}]+)\}/, function(s, r) {
                 var subdomains = r.split(',');
                 return subdomains[(coord[0] + coord[1]) % subdomains.length];