diff --git a/scripts/downloadEli.ts b/scripts/downloadEli.ts index 97758888b..c3c1281c5 100644 --- a/scripts/downloadEli.ts +++ b/scripts/downloadEli.ts @@ -2,11 +2,13 @@ import Script from "./Script" import { Utils } from "../src/Utils" import { Eli, EliEntry } from "./@types/eli" import fs from "fs" +import { BingRasterLayer } from "../src/UI/Map/BingRasterLayer" class DownloadEli extends Script { constructor() { super("Downloads a fresh copy of the editor layer index, removes all unnecessary data.") } + async main(args: string[]): Promise { const url = "https://osmlab.github.io/editor-layer-index/imagery.geojson" // Target should use '.json' instead of '.geojson', as the latter cannot be imported by the build systems @@ -20,7 +22,18 @@ class DownloadEli extends Script { if (props.type === "bing") { // A lot of work to implement - see https://github.com/pietervdvn/MapComplete/issues/648 - continue + try { + const bing = await BingRasterLayer.get() + if (bing === "error") { + continue + } + delete props.default + props.category = "photo" + props.url = bing.properties.url.replace("%7Bquadkey%7D", "{quadkey}") + } catch (e) { + console.error("Could not fetch URL for bing", e) + continue + } } if (props.id === "MAPNIK") { diff --git a/src/Logic/Actors/BackgroundLayerResetter.ts b/src/Logic/Actors/BackgroundLayerResetter.ts index a80730e44..770cde3ec 100644 --- a/src/Logic/Actors/BackgroundLayerResetter.ts +++ b/src/Logic/Actors/BackgroundLayerResetter.ts @@ -8,7 +8,7 @@ import { RasterLayerPolygon, RasterLayerUtils } from "../../Models/RasterLayers" */ export default class BackgroundLayerResetter { constructor( - currentBackgroundLayer: UIEventSource, + currentBackgroundLayer: UIEventSource, availableLayers: Store ) { if (Utils.runningFromConsole) { diff --git a/src/Models/RasterLayers.ts b/src/Models/RasterLayers.ts index 7a20ad017..f5c8d90b6 100644 --- a/src/Models/RasterLayers.ts +++ b/src/Models/RasterLayers.ts @@ -8,9 +8,14 @@ import { RasterLayerProperties } from "./RasterLayerProperties" export class AvailableRasterLayers { public static EditorLayerIndex: (Feature & - RasterLayerPolygon)[] = editorlayerindex.features + RasterLayerPolygon)[] = (editorlayerindex.features).filter( + (l) => l.properties.id !== "Bing" + ) public static globalLayers: RasterLayerPolygon[] = globallayers.layers - .filter((properties) => properties.id !== "osm.carto" /*Added separately*/) + .filter( + (properties) => + properties.id !== "osm.carto" && properties.id !== "Bing" /*Added separately*/ + ) .map( (properties) => { @@ -19,6 +24,9 @@ export class AvailableRasterLayers { geometry: BBox.global.asGeometry(), } ) + public static bing: RasterLayerPolygon = (editorlayerindex.features).find( + (l) => l.properties.id === "Bing" + ) public static readonly osmCartoProperties: RasterLayerProperties = { id: "osm", name: "OpenStreetMap", @@ -56,7 +64,8 @@ export class AvailableRasterLayers { } public static layersAvailableAt( - location: Store<{ lon: number; lat: number }> + location: Store<{ lon: number; lat: number }>, + enableBing?: Store ): Store { const availableLayersBboxes = Stores.ListStabilized( location.mapD((loc) => { @@ -67,20 +76,26 @@ export class AvailableRasterLayers { }) ) return Stores.ListStabilized( - availableLayersBboxes.map((eliPolygons) => { - const loc = location.data - const lonlat: [number, number] = [loc.lon, loc.lat] - const matching: RasterLayerPolygon[] = eliPolygons.filter((eliPolygon) => { - if (eliPolygon.geometry === null) { - return true // global ELI-layer + availableLayersBboxes.map( + (eliPolygons) => { + const loc = location.data + const lonlat: [number, number] = [loc.lon, loc.lat] + const matching: RasterLayerPolygon[] = eliPolygons.filter((eliPolygon) => { + if (eliPolygon.geometry === null) { + return true // global ELI-layer + } + return GeoOperations.inside(lonlat, eliPolygon) + }) + matching.unshift(AvailableRasterLayers.osmCarto) + matching.push(AvailableRasterLayers.maptilerDefaultLayer) + if (enableBing?.data) { + matching.push(AvailableRasterLayers.bing) } - return GeoOperations.inside(lonlat, eliPolygon) - }) - matching.unshift(AvailableRasterLayers.osmCarto) - matching.push(AvailableRasterLayers.maptilerDefaultLayer) - matching.push(...AvailableRasterLayers.globalLayers) - return matching - }) + matching.push(...AvailableRasterLayers.globalLayers) + return matching + }, + [enableBing] + ) ) } diff --git a/src/Models/ThemeViewState.ts b/src/Models/ThemeViewState.ts index 538c98c50..be24e39e7 100644 --- a/src/Models/ThemeViewState.ts +++ b/src/Models/ThemeViewState.ts @@ -201,7 +201,10 @@ export default class ThemeViewState implements SpecialVisualizationState { ) this.geolocationControl = new GeolocationControlState(this.geolocation, this.mapProperties) - this.availableLayers = AvailableRasterLayers.layersAvailableAt(this.mapProperties.location) + this.availableLayers = AvailableRasterLayers.layersAvailableAt( + this.mapProperties.location, + this.osmConnection.isLoggedIn + ) const self = this this.layerState = new LayerState(this.osmConnection, layout.layers, layout.id) diff --git a/src/UI/Map/BingRasterLayer.ts b/src/UI/Map/BingRasterLayer.ts new file mode 100644 index 000000000..8f138fa52 --- /dev/null +++ b/src/UI/Map/BingRasterLayer.ts @@ -0,0 +1,89 @@ +import { RasterLayerPolygon } from "../../Models/RasterLayers" +import { Polygon } from "geojson" +import { RasterLayerProperties } from "../../Models/RasterLayerProperties" +import { BBox } from "../../Logic/BBox" +import { Utils } from "../../Utils" + +export class BingRasterLayerProperties implements Partial { + private static singleton: BingRasterLayerProperties | "error" + name = "Bing Maps Aerial" + id = "Bing" + type = "bing" + category = "photo" + min_zoom = 1 + max_zoom = 22 + best = false + attribution = { + url: "https://www.bing.com/maps", + } + url: string + + private constructor(url: string) { + this.url = url + } + + public static async get(): Promise { + if (BingRasterLayerProperties.singleton === undefined) { + try { + const url = await this.getEndpoint() + BingRasterLayerProperties.singleton = new BingRasterLayerProperties(url) + } catch (e) { + BingRasterLayerProperties.singleton = "error" + console.error(e) + } + } + return BingRasterLayerProperties.singleton + } + + private static async getEndpoint() { + console.log("Getting bing endpoint") + // Key by 'pietervdvn@outlook.com' from https://www.bingmapsportal.com/Application + // Inspired by https://github.com/zlant/parking-lanes/pull/159 + const key = "An0vKZ4r_PZx820sn3seuPKjd1Vyc5WE3s1b-qN4HCgI-Nr6QR83aLOQ-3fbFl08" + const url = `https://dev.virtualearth.net/REST/v1/Imagery/Metadata/AerialOSM?include=ImageryProviders&uriScheme=https&key=${key}` + + // Get the image tiles template: + const metadata = await Utils.downloadJson(url) + // FYI: + // "imageHeight": 256, "imageWidth": 256, + // "imageUrlSubdomains": ["t0","t1","t2","t3"], + // "zoomMax": 21, + const imageryResource = metadata.resourceSets[0].resources[0] + const template = new URL(imageryResource.imageUrl) + // Add tile image strictness param (n=) + // • n=f -> (Fail) returns a 404 + // • n=z -> (Empty) returns a 200 with 0 bytes (no content) + // • n=t -> (Transparent) returns a 200 with a transparent (png) tile + if (!template.searchParams.has("n")) template.searchParams.append("n", "f") + + // FYI: `template` looks like this but partly encoded + // https://ecn.{subdomain}.tiles.virtualearth.net/tiles/a{quadkey}.jpeg?g=14107&pr=odbl&n=z + const subdomains = ["t0", "t1", "t2", "t3"] + const index = Math.floor(Math.random() * subdomains.length) + return template.toString().replace("{subdomain}", subdomains[index]) + } +} + +export class BingRasterLayer implements RasterLayerPolygon { + private static singleton: RasterLayerPolygon | "error" + readonly type: "Feature" = "Feature" + readonly geometry: Polygon = BBox.global.asGeometry() + readonly id = "bing" + readonly properties: RasterLayerProperties + + constructor(properties: RasterLayerProperties) { + this.properties = properties + } + + public static async get(): Promise { + if (BingRasterLayer.singleton === undefined) { + const properties = await BingRasterLayerProperties.get() + if (properties === "error") { + BingRasterLayer.singleton = "error" + } else { + BingRasterLayer.singleton = new BingRasterLayer(properties) + } + } + return BingRasterLayer.singleton + } +} diff --git a/src/assets/editor-layer-index.json b/src/assets/editor-layer-index.json index 2eab9d05d..afa007ebc 100644 --- a/src/assets/editor-layer-index.json +++ b/src/assets/editor-layer-index.json @@ -12,8 +12,8 @@ {"properties":{"name":"Pangasinán/Bulacan (Philippines HiRes)","id":"Pangasinan_Bulacan_HiRes","url":"https://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png","type":"tms","category":"photo","min_zoom":14,"max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[[121.2699,14.7025],[121.2684,15.2602],[120.8268,15.3658],[120.695,14.8423],[121.2699,14.7025]]],[[[120.36854,16.21853],[120.34758,16.04231],[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]]]],"type":"MultiPolygon"}}, {"properties":{"name":"Gaza Strip - Pléiades - 2014/07/06 (NIR)","id":"gaza_pleiades_20140706_nir","url":"https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706_nir/{zoom}/{x}/{y}","attribution":{"required":true,"text":"Copyright CNES 2014, Distribution Airbus Defence and Space","url":"https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip"},"type":"tms","category":"photo","max_zoom":22},"type":"Feature","geometry":{"coordinates":[[[34.49022,31.59487],[34.44463,31.54193],[34.42619,31.52686],[34.41099,31.50162],[34.36439,31.45715],[34.34172,31.43251],[34.29954,31.39629],[34.2434,31.34554],[34.21113,31.32157],[34.231,31.26295],[34.25915,31.22131],[34.26762,31.21894],[34.29093,31.24009],[34.31931,31.25317],[34.33119,31.26149],[34.34339,31.27846],[34.36708,31.29074],[34.37438,31.30609],[34.36497,31.36137],[34.36685,31.36914],[34.36827,31.36992],[34.3704,31.36909],[34.37158,31.36972],[34.37214,31.37093],[34.37159,31.37209],[34.37338,31.37422],[34.37407,31.37915],[34.38074,31.38791],[34.38037,31.38951],[34.38824,31.39599],[34.39351,31.40113],[34.39492,31.40391],[34.40134,31.40986],[34.40197,31.4112],[34.40506,31.41295],[34.4067,31.41295],[34.40918,31.41542],[34.41174,31.41604],[34.41329,31.41758],[34.41326,31.41862],[34.42211,31.42437],[34.4268,31.42804],[34.43164,31.43265],[34.43226,31.43458],[34.43798,31.44112],[34.44216,31.44327],[34.44585,31.4441],[34.45308,31.45139],[34.46576,31.46275],[34.4674,31.46448],[34.47471,31.47207],[34.47962,31.47778],[34.48532,31.48028],[34.4887,31.48263],[34.505,31.49543],[34.51369,31.50067],[34.5255,31.50251],[34.53011,31.5066],[34.54729,31.5121],[34.55613,31.52552],[34.5653,31.53226],[34.5678,31.5401],[34.49339,31.59263],[34.49022,31.59487]]],"type":"Polygon"}}, {"properties":{"name":"Gaza Strip - Pléiades - 2014/07/06","id":"gaza_pleiades_20140706","url":"https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706/{zoom}/{x}/{y}","attribution":{"required":true,"text":"Copyright CNES 2014, Distribution Airbus Defence and Space","url":"https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip"},"type":"tms","category":"photo","max_zoom":22},"type":"Feature","geometry":{"coordinates":[[[34.49022,31.59487],[34.44463,31.54193],[34.42619,31.52686],[34.41099,31.50162],[34.36439,31.45715],[34.34172,31.43251],[34.29954,31.39629],[34.2434,31.34554],[34.21113,31.32157],[34.231,31.26295],[34.25915,31.22131],[34.26762,31.21894],[34.29093,31.24009],[34.31931,31.25317],[34.33119,31.26149],[34.34339,31.27846],[34.36708,31.29074],[34.37438,31.30609],[34.36497,31.36137],[34.36685,31.36914],[34.36827,31.36992],[34.3704,31.36909],[34.37158,31.36972],[34.37214,31.37093],[34.37159,31.37209],[34.37338,31.37422],[34.37407,31.37915],[34.38074,31.38791],[34.38037,31.38951],[34.38824,31.39599],[34.39351,31.40113],[34.39492,31.40391],[34.40134,31.40986],[34.40197,31.4112],[34.40506,31.41295],[34.4067,31.41295],[34.40918,31.41542],[34.41174,31.41604],[34.41329,31.41758],[34.41326,31.41862],[34.42211,31.42437],[34.4268,31.42804],[34.43164,31.43265],[34.43226,31.43458],[34.43798,31.44112],[34.44216,31.44327],[34.44585,31.4441],[34.45308,31.45139],[34.46576,31.46275],[34.4674,31.46448],[34.47471,31.47207],[34.47962,31.47778],[34.48532,31.48028],[34.4887,31.48263],[34.505,31.49543],[34.51369,31.50067],[34.5255,31.50251],[34.53011,31.5066],[34.54729,31.5121],[34.55613,31.52552],[34.5653,31.53226],[34.5678,31.5401],[34.49339,31.59263],[34.49022,31.59487]]],"type":"Polygon"}}, -{"properties":{"name":"Singapore Landlot","id":"Singapore-Landlot","url":"https://mapservices.onemap.sg/mapproxy/service?LAYERS=singapore_landlot_wmts&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"©OneMap Singapore ODL v1.0","url":"https://www.onemap.sg/legal/opendatalicence.html"},"type":"wms","category":"map","min_zoom":9},"type":"Feature","geometry":{"coordinates":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"type":"Polygon"}}, -{"properties":{"name":"Singapore OneMap","id":"Singapore-OneMap","url":"https://mapservices.onemap.sg/mapproxy/service?LAYERS=singapore_3414_wms&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"©OneMap Singapore ODL v1.0","url":"https://www.onemap.sg/legal/opendatalicence.html"},"type":"wms","category":"map","min_zoom":10},"type":"Feature","geometry":{"coordinates":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"type":"Polygon"}}, +{"properties":{"name":"Singapore Landlot","id":"Singapore-Landlot","url":"https://www.onemap.gov.sg/maps/service?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=LandLot&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":true,"text":"©OneMap Singapore ODL v1.0","url":"https://www.onemap.sg/legal/opendatalicence.html"},"type":"wms","category":"map","min_zoom":9},"type":"Feature","geometry":{"coordinates":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"type":"Polygon"}}, +{"properties":{"name":"Singapore OneMap","id":"Singapore-OneMap","url":"https://www.onemap.gov.sg/maps/service?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=Default&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":true,"text":"©OneMap Singapore ODL v1.0","url":"https://www.onemap.sg/legal/opendatalicence.html"},"type":"wms","category":"map","min_zoom":10},"type":"Feature","geometry":{"coordinates":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"type":"Polygon"}}, {"properties":{"name":"Taiwan Land-Section Data","id":"TW_NLSC_WMS_LANDSECT","url":"https://wms.nlsc.gov.tw/wms?LAYERS=LANDSECT&STYLES=&FORMAT=image/jpeg&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","url":"https://maps.nlsc.gov.tw/"},"type":"wms","category":"other","min_zoom":7},"type":"Feature","geometry":{"coordinates":[[[121.2237,25.76997],[120.4578,26.53253],[119.787,26.2048],[119.8935,25.78169],[120.0474,25.38843],[118.6024,24.46068],[118.4416,24.55302],[118.2283,24.49486],[118.1036,24.36172],[118.1978,24.34453],[118.3036,23.30751],[118.2509,23.26265],[120.6771,20.72799],[122.9312,22.57058],[122.2251,26.60305],[121.2237,25.76997]]],"type":"Polygon"}}, {"properties":{"name":"Taiwan Village Boundaries","id":"TW_NLSC_WMS_Village","url":"https://wms.nlsc.gov.tw/wms?LAYERS=Village&STYLES=&FORMAT=image/jpeg&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","url":"https://maps.nlsc.gov.tw/"},"type":"wms","category":"other","min_zoom":6},"type":"Feature","geometry":{"coordinates":[[[121.2237,25.76997],[120.4578,26.53253],[119.787,26.2048],[119.8935,25.78169],[120.0474,25.38843],[118.6024,24.46068],[118.4416,24.55302],[118.2283,24.49486],[118.1036,24.36172],[118.1978,24.34453],[118.3036,23.30751],[118.2509,23.26265],[120.6771,20.72799],[122.9312,22.57058],[122.2251,26.60305],[121.2237,25.76997]]],"type":"Polygon"}}, {"properties":{"name":"Municipality of Tirana (Open Labs GeoPortal)","id":"openlabs-geoportal-tirana","url":"https://geoportal.openlabs.cc/mapcache/tms/1.0.0/tirana@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png","attribution":{"required":false,"text":"Data provided by the Muncipality of Tirana hosted by Open Labs","url":"https://geoportal.openlabs.cc"},"type":"tms","category":"map","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[19.70226,41.1404],[19.77573,41.11868],[19.86431,41.12126],[20.24986,41.3495],[20.03082,41.41184],[19.92577,41.5204],[19.88869,41.50755],[19.88937,41.42265],[19.81659,41.46177],[19.7335,41.43037],[19.74174,41.37887],[19.65797,41.37475],[19.57214,41.24322],[19.61815,41.22567],[19.67171,41.22722],[19.70226,41.1404]]],"type":"Polygon"}}, @@ -376,7 +376,7 @@ {"properties":{"name":"Budapest district XI orthophoto 2015","id":"Budapest_XI_2015","url":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto2015_20160304&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"https://terinfo.ujbuda.hu"},"type":"wms","category":"historicphoto"},"type":"Feature","geometry":{"coordinates":[[[19.04767,47.48789],[19.04695,47.4881],[19.04542,47.48817],[19.04387,47.4881],[19.04181,47.48737],[19.04105,47.48649],[19.03918,47.48679],[19.03847,47.48737],[19.03748,47.48774],[19.03665,47.48767],[19.03616,47.48751],[19.03585,47.48729],[19.03514,47.48725],[19.03364,47.48702],[19.03286,47.48712],[19.03189,47.48759],[19.03135,47.48855],[19.02995,47.48904],[19.02637,47.48885],[19.02301,47.48741],[19.02124,47.48612],[19.02108,47.48492],[19.01808,47.48605],[19.01689,47.48595],[19.0163,47.48539],[19.01674,47.48465],[19.0138,47.48351],[19.01237,47.48404],[19.01027,47.48535],[19.00416,47.48399],[19.004,47.48189],[18.99902,47.483],[18.99836,47.48238],[18.99288,47.48182],[18.99177,47.48102],[18.99117,47.47898],[18.98907,47.47838],[18.98565,47.4782],[18.98035,47.48169],[18.97745,47.48194],[18.96867,47.47643],[18.97793,47.46857],[18.98162,47.46067],[18.98017,47.45605],[18.97763,47.45597],[18.97658,47.45594],[18.97625,47.45584],[18.97586,47.45556],[18.97568,47.45506],[18.96861,47.45142],[18.97004,47.44988],[18.97733,47.44657],[18.97823,47.43817],[18.97719,47.43402],[18.97548,47.43067],[18.97361,47.42998],[18.97343,47.42904],[18.97545,47.42818],[18.99534,47.42821],[19.00046,47.43097],[19.0057,47.43111],[19.0098,47.43944],[19.0119,47.44188],[19.01178,47.44247],[19.01266,47.44271],[19.01347,47.44361],[19.01545,47.44759],[19.01915,47.44658],[19.0207,47.44576],[19.0252,47.442],[19.03221,47.43779],[19.03509,47.43818],[19.04023,47.42932],[19.04384,47.42968],[19.04863,47.429],[19.05176,47.43499],[19.0549,47.44906],[19.05683,47.45259],[19.06722,47.46501],[19.06846,47.46876],[19.06837,47.47077],[19.06766,47.47343],[19.0665,47.47632],[19.06434,47.4792],[19.05157,47.4899],[19.04767,47.48789]]],"type":"Polygon"}}, {"properties":{"name":"Budapest district XI orthophoto 2017","id":"Budapest_XI_2017","url":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2017&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"https://terinfo.ujbuda.hu"},"type":"wms","category":"historicphoto"},"type":"Feature","geometry":{"coordinates":[[[19.04767,47.48789],[19.04695,47.4881],[19.04542,47.48817],[19.04387,47.4881],[19.04181,47.48737],[19.04105,47.48649],[19.03918,47.48679],[19.03847,47.48737],[19.03748,47.48774],[19.03665,47.48767],[19.03616,47.48751],[19.03585,47.48729],[19.03514,47.48725],[19.03364,47.48702],[19.03286,47.48712],[19.03189,47.48759],[19.03135,47.48855],[19.02995,47.48904],[19.02637,47.48885],[19.02301,47.48741],[19.02124,47.48612],[19.02108,47.48492],[19.01808,47.48605],[19.01689,47.48595],[19.0163,47.48539],[19.01674,47.48465],[19.0138,47.48351],[19.01237,47.48404],[19.01027,47.48535],[19.00416,47.48399],[19.004,47.48189],[18.99902,47.483],[18.99836,47.48238],[18.99288,47.48182],[18.99177,47.48102],[18.99117,47.47898],[18.98907,47.47838],[18.98565,47.4782],[18.98035,47.48169],[18.97745,47.48194],[18.96867,47.47643],[18.97793,47.46857],[18.98162,47.46067],[18.98017,47.45605],[18.97763,47.45597],[18.97658,47.45594],[18.97625,47.45584],[18.97586,47.45556],[18.97568,47.45506],[18.96861,47.45142],[18.97004,47.44988],[18.97733,47.44657],[18.97823,47.43817],[18.97719,47.43402],[18.97548,47.43067],[18.97361,47.42998],[18.97343,47.42904],[18.97545,47.42818],[18.99534,47.42821],[19.00046,47.43097],[19.0057,47.43111],[19.0098,47.43944],[19.0119,47.44188],[19.01178,47.44247],[19.01266,47.44271],[19.01347,47.44361],[19.01545,47.44759],[19.01915,47.44658],[19.0207,47.44576],[19.0252,47.442],[19.03221,47.43779],[19.03509,47.43818],[19.04023,47.42932],[19.04384,47.42968],[19.04863,47.429],[19.05176,47.43499],[19.0549,47.44906],[19.05683,47.45259],[19.06722,47.46501],[19.06846,47.46876],[19.06837,47.47077],[19.06766,47.47343],[19.0665,47.47632],[19.06434,47.4792],[19.05157,47.4899],[19.04767,47.48789]]],"type":"Polygon"}}, {"properties":{"name":"Budapest district XI orthophoto 2019","id":"Budapest_XI_2019","url":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2019&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"https://terinfo.ujbuda.hu"},"type":"wms","category":"historicphoto"},"type":"Feature","geometry":{"coordinates":[[[19.04767,47.48789],[19.04695,47.4881],[19.04542,47.48817],[19.04387,47.4881],[19.04181,47.48737],[19.04105,47.48649],[19.03918,47.48679],[19.03847,47.48737],[19.03748,47.48774],[19.03665,47.48767],[19.03616,47.48751],[19.03585,47.48729],[19.03514,47.48725],[19.03364,47.48702],[19.03286,47.48712],[19.03189,47.48759],[19.03135,47.48855],[19.02995,47.48904],[19.02637,47.48885],[19.02301,47.48741],[19.02124,47.48612],[19.02108,47.48492],[19.01808,47.48605],[19.01689,47.48595],[19.0163,47.48539],[19.01674,47.48465],[19.0138,47.48351],[19.01237,47.48404],[19.01027,47.48535],[19.00416,47.48399],[19.004,47.48189],[18.99902,47.483],[18.99836,47.48238],[18.99288,47.48182],[18.99177,47.48102],[18.99117,47.47898],[18.98907,47.47838],[18.98565,47.4782],[18.98035,47.48169],[18.97745,47.48194],[18.96867,47.47643],[18.97793,47.46857],[18.98162,47.46067],[18.98017,47.45605],[18.97763,47.45597],[18.97658,47.45594],[18.97625,47.45584],[18.97586,47.45556],[18.97568,47.45506],[18.96861,47.45142],[18.97004,47.44988],[18.97733,47.44657],[18.97823,47.43817],[18.97719,47.43402],[18.97548,47.43067],[18.97361,47.42998],[18.97343,47.42904],[18.97545,47.42818],[18.99534,47.42821],[19.00046,47.43097],[19.0057,47.43111],[19.0098,47.43944],[19.0119,47.44188],[19.01178,47.44247],[19.01266,47.44271],[19.01347,47.44361],[19.01545,47.44759],[19.01915,47.44658],[19.0207,47.44576],[19.0252,47.442],[19.03221,47.43779],[19.03509,47.43818],[19.04023,47.42932],[19.04384,47.42968],[19.04863,47.429],[19.05176,47.43499],[19.0549,47.44906],[19.05683,47.45259],[19.06722,47.46501],[19.06846,47.46876],[19.06837,47.47077],[19.06766,47.47343],[19.0665,47.47632],[19.06434,47.4792],[19.05157,47.4899],[19.04767,47.48789]]],"type":"Polygon"}}, -{"properties":{"name":"Budapest district XI orthophoto 2021","id":"Budapest_XI_2021","url":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2021&STYLES=&CRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"https://terinfo.ujbuda.hu"},"type":"wms","category":"photo","best":true},"type":"Feature","geometry":{"coordinates":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"type":"Polygon"}}, +{"properties":{"name":"Budapest district XI orthophoto 2021","id":"Budapest_XI_2021","url":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2021&STYLES=&CRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"https://terinfo.ujbuda.hu"},"type":"wms","category":"historicphoto"},"type":"Feature","geometry":{"coordinates":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"type":"Polygon"}}, {"properties":{"name":"Budapest district XI orthophoto 2023","id":"Budapest_XI_2023","url":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2023&STYLES=&CRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Budapest XI. kerület önkormányzata","url":"https://terinfo.ujbuda.hu"},"type":"wms","category":"photo","best":true},"type":"Feature","geometry":{"coordinates":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"type":"Polygon"}}, {"properties":{"name":"OpenStreetMap (turistautak)","id":"OpenStreetMap-turistautak","url":"https://{switch:a,b,c}.tile.openstreetmap.hu/tt/{zoom}/{x}/{y}.png","attribution":{"required":true,"text":"© OpenStreetMap contributors","url":"https://www.openstreetmap.org"},"type":"tms","category":"osmbasedmap"},"type":"Feature","geometry":{"coordinates":[[[16.11391,46.8691],[16.12657,46.85691],[16.15609,46.85371],[16.23323,46.87667],[16.29139,46.87283],[16.3015,46.85951],[16.34033,46.84688],[16.35084,46.83006],[16.34064,46.80519],[16.31277,46.79731],[16.31216,46.778],[16.33054,46.77521],[16.3186,46.75414],[16.35706,46.71424],[16.37109,46.72229],[16.37983,46.71539],[16.36892,46.70401],[16.42863,46.69397],[16.41985,46.65848],[16.39154,46.66373],[16.38594,46.64425],[16.42486,46.61316],[16.44557,46.61095],[16.4834,46.5786],[16.483,46.56604],[16.50841,46.56527],[16.51767,46.53635],[16.53258,46.5314],[16.5236,46.50538],[16.60447,46.47608],[16.61879,46.46199],[16.66637,46.4583],[16.66318,46.4487],[16.67729,46.44945],[16.71821,46.38987],[16.72987,46.40149],[16.75921,46.37766],[16.79334,46.38739],[16.82617,46.3671],[16.83765,46.3748],[16.83529,46.36382],[16.84986,46.36262],[16.8522,46.35172],[16.86562,46.35565],[16.86154,46.34524],[16.88021,46.3357],[16.87137,46.32528],[16.88624,46.28146],[16.95041,46.24153],[16.97395,46.24311],[16.97354,46.2252],[17.06616,46.2023],[17.07525,46.18895],[17.12274,46.17898],[17.1261,46.16845],[17.15929,46.16968],[17.15623,46.15858],[17.1811,46.15055],[17.18652,46.13323],[17.17434,46.12876],[17.17593,46.10846],[17.21297,46.11386],[17.2104,46.10017],[17.23313,46.09896],[17.20199,46.07655],[17.23131,46.07903],[17.25251,46.06647],[17.23248,46.0592],[17.27096,46.05671],[17.25415,46.03001],[17.29632,46.02852],[17.25797,46.01103],[17.3042,46.00211],[17.29877,45.98387],[17.32365,45.98878],[17.313,45.96653],[17.33198,45.97289],[17.33396,45.99608],[17.35672,45.97358],[17.36357,45.99154],[17.37519,45.98811],[17.37549,45.96869],[17.35835,45.96427],[17.38742,45.96618],[17.39054,45.95819],[17.35377,45.9525],[17.34388,45.96053],[17.34762,45.94234],[17.38287,45.94757],[17.39215,45.93021],[17.41081,45.93997],[17.4259,45.92727],[17.43783,45.95038],[17.57007,45.93582],[17.62762,45.89794],[17.66329,45.83818],[17.74086,45.8296],[17.76034,45.81192],[17.78091,45.81749],[17.80898,45.8041],[17.82627,45.81],[17.86531,45.76701],[17.90668,45.79257],[17.93021,45.78633],[17.99588,45.79573],[18.08189,45.76452],[18.10681,45.77083],[18.12465,45.78963],[18.16819,45.77627],[18.19087,45.78788],[18.23073,45.77903],[18.24405,45.76123],[18.29682,45.76122],[18.33942,45.74716],[18.36423,45.77294],[18.39189,45.7617],[18.40763,45.73971],[18.44685,45.73713],[18.44508,45.76052],[18.45628,45.76952],[18.48219,45.7655],[18.49067,45.79472],[18.52235,45.78269],[18.55972,45.8038],[18.57498,45.80043],[18.57324,45.81376],[18.62367,45.83985],[18.61484,45.85314],[18.62777,45.87338],[18.65502,45.87424],[18.64128,45.88904],[18.66513,45.89928],[18.65966,45.91689],[18.67002,45.91084],[18.70489,45.91819],[18.79562,45.87845],[18.80925,45.87962],[18.80751,45.90361],[18.822,45.91459],[18.82768,45.90517],[18.86856,45.91134],[18.86471,45.92085],[18.87946,45.91668],[18.90613,45.93538],[19.00927,45.92366],[19.00598,45.95907],[19.07968,45.96364],[19.06604,46.0002],[19.10487,46.04017],[19.13384,46.0371],[19.14799,45.99634],[19.28565,45.9969],[19.29653,45.98812],[19.2819,46.0148],[19.36409,46.0523],[19.3804,46.03587],[19.416,46.04605],[19.46658,46.08204],[19.4645,46.09538],[19.52712,46.12103],[19.50266,46.14245],[19.5604,46.16658],[19.56765,46.17911],[19.63174,46.1693],[19.66151,46.19044],[19.68277,46.18004],[19.69821,46.18793],[19.75854,46.14798],[19.81797,46.12817],[19.85335,46.15],[19.93541,46.17642],[20.01581,46.17684],[20.03461,46.14589],[20.06362,46.14373],[20.10097,46.17728],[20.1365,46.14495],[20.18174,46.16011],[20.23301,46.12417],[20.24848,46.1301],[20.2549,46.11585],[20.29681,46.15215],[20.35571,46.16963],[20.36853,46.15286],[20.39751,46.15747],[20.45923,46.14288],[20.49494,46.17099],[20.50148,46.19033],[20.54505,46.17909],[20.63945,46.12676],[20.65492,46.14977],[20.68436,46.14478],[20.71405,46.16605],[20.73411,46.19394],[20.7274,46.20775],[20.76186,46.20456],[20.74905,46.25085],[20.77565,46.27596],[20.87327,46.28776],[20.92181,46.26181],[20.92507,46.27662],[20.94658,46.2793],[20.96082,46.2623],[21.02467,46.26653],[21.03662,46.24804],[21.06608,46.24294],[21.07088,46.2539],[21.10305,46.26246],[21.11554,46.30185],[21.1805,46.30445],[21.17623,46.33577],[21.19926,46.3479],[21.20642,46.40338],[21.22501,46.41369],[21.29633,46.40696],[21.28952,46.41548],[21.31743,46.45073],[21.29645,46.4763],[21.27442,46.47673],[21.26003,46.50216],[21.2743,46.54074],[21.32079,46.58286],[21.30124,46.59087],[21.31397,46.61767],[21.33005,46.63182],[21.3657,46.63795],[21.4098,46.62181],[21.41624,46.64262],[21.45467,46.66086],[21.43096,46.67814],[21.4299,46.69394],[21.47284,46.69591],[21.49233,46.68597],[21.52937,46.72097],[21.52634,46.73932],[21.48318,46.76502],[21.51861,46.80007],[21.52033,46.83737],[21.60167,46.86682],[21.61429,46.88673],[21.59845,46.92747],[21.6382,46.93305],[21.68149,46.96521],[21.66787,46.97123],[21.68887,47.002],[21.65042,47.04083],[21.6976,47.05792],[21.72683,47.09839],[21.79241,47.10598],[21.81248,47.16675],[21.85807,47.18736],[21.85349,47.23976],[21.88728,47.27305],[21.87779,47.28578],[21.93825,47.37253],[21.96274,47.38105],[22.01198,47.3758],[22.02388,47.39086],[22.03279,47.45084],[22.00719,47.48362],[22.03672,47.53267],[22.04513,47.53989],[22.06179,47.5288],[22.07122,47.53807],[22.05345,47.54748],[22.07826,47.56213],[22.09428,47.55836],[22.12892,47.5979],[22.17965,47.59161],[22.23068,47.6932],[22.259,47.69791],[22.26432,47.73107],[22.28514,47.72928],[22.31762,47.74337],[22.31777,47.76609],[22.35662,47.74862],[22.43133,47.73981],[22.45131,47.80339],[22.48121,47.81089],[22.549,47.77222],[22.61112,47.77175],[22.68019,47.78775],[22.71363,47.83609],[22.77775,47.84225],[22.75869,47.89414],[22.79281,47.89086],[22.84733,47.90776],[22.89744,47.95406],[22.89157,47.96724],[22.86973,47.96596],[22.87257,47.97527],[22.84076,47.98136],[22.83556,47.9906],[22.86597,48.01132],[22.88204,48.05481],[22.8678,48.05243],[22.86113,48.07503],[22.83644,48.08025],[22.82543,48.11751],[22.80253,48.10708],[22.80277,48.12211],[22.77232,48.12187],[22.77039,48.10902],[22.75762,48.12006],[22.73472,48.11985],[22.67545,48.092],[22.59028,48.10734],[22.59824,48.14476],[22.56164,48.18161],[22.57114,48.19614],[22.53111,48.20943],[22.51615,48.23797],[22.49722,48.23955],[22.4899,48.25342],[22.45639,48.24231],[22.43284,48.25252],[22.40064,48.2492],[22.38475,48.23396],[22.33843,48.27921],[22.33729,48.30791],[22.31329,48.32507],[22.31781,48.35454],[22.26757,48.36116],[22.23988,48.38701],[22.26549,48.40987],[22.23714,48.41004],[22.21257,48.42565],[22.15619,48.40931],[22.15277,48.39624],[22.13106,48.39123],[22.13591,48.38052],[22.08674,48.37156],[22.07649,48.38724],[22.0546,48.37753],[22.02133,48.39275],[21.99446,48.37732],[21.9492,48.37873],[21.92681,48.3709],[21.92819,48.3616],[21.8998,48.37022],[21.89788,48.36256],[21.88484,48.36754],[21.8843,48.35605],[21.83721,48.36325],[21.8352,48.33464],[21.81741,48.33279],[21.71187,48.35762],[21.70174,48.3807],[21.66456,48.39216],[21.66355,48.41796],[21.62019,48.46983],[21.61393,48.50942],[21.54202,48.5084],[21.51409,48.55107],[21.44061,48.5851],[21.42266,48.57882],[21.41545,48.55895],[21.31938,48.5612],[21.32688,48.55413],[21.31338,48.55084],[21.30549,48.52225],[21.22106,48.5375],[21.17963,48.51823],[21.16087,48.5215],[21.11745,48.49105],[21.06632,48.52589],[21.01511,48.53231],[20.98158,48.51777],[20.9562,48.52167],[20.95588,48.53396],[20.93463,48.53834],[20.92232,48.55945],[20.86815,48.55182],[20.84533,48.5665],[20.85044,48.58163],[20.8378,48.57421],[20.83636,48.58284],[20.65387,48.56141],[20.58659,48.53576],[20.54649,48.54429],[20.53747,48.52788],[20.50651,48.53442],[20.50793,48.48936],[20.41623,48.41854],[20.42053,48.40386],[20.40253,48.38256],[20.40983,48.36586],[20.38408,48.35118],[20.36566,48.31661],[20.33746,48.30167],[20.32571,48.27279],[20.28686,48.26164],[20.23495,48.27993],[20.22847,48.26278],[20.20383,48.26191],[20.20616,48.25098],[20.13319,48.25398],[20.13409,48.22518],[20.07004,48.1917],[20.07299,48.17961],[20.04945,48.1672],[20.02904,48.17768],[19.98871,48.16217],[19.97439,48.166],[19.93738,48.13112],[19.8983,48.1249],[19.91454,48.14686],[19.89875,48.16631],[19.86013,48.16941],[19.85517,48.17843],[19.84528,48.16274],[19.82133,48.16908],[19.79481,48.15353],[19.78242,48.16504],[19.80528,48.18373],[19.79873,48.19482],[19.78716,48.19253],[19.74618,48.21651],[19.72113,48.20147],[19.69122,48.20389],[19.66986,48.23921],[19.64452,48.23917],[19.63083,48.25007],[19.5775,48.21601],[19.52604,48.20313],[19.52897,48.19036],[19.50452,48.17344],[19.51282,48.15466],[19.49238,48.13966],[19.49442,48.10991],[19.46735,48.08393],[19.45405,48.10144],[19.40002,48.0823],[19.3866,48.09191],[19.30311,48.08871],[19.25578,48.07156],[19.24137,48.05365],[19.13529,48.07415],[19.1074,48.0656],[19.08436,48.07278],[19.05852,48.05735],[19.01486,48.07818],[18.98161,48.0536],[18.9439,48.05886],[18.90898,48.05114],[18.88667,48.05868],[18.87494,48.04707],[18.83327,48.04824],[18.82,48.03968],[18.81574,47.99344],[18.75525,47.97635],[18.77675,47.95509],[18.75686,47.89684],[18.76353,47.8716],[18.81357,47.85555],[18.82801,47.83429],[18.85588,47.82608],[18.84854,47.81672],[18.792,47.82309],[18.74118,47.81382],[18.72607,47.78904],[18.64609,47.75909],[18.55908,47.766],[18.49316,47.75276],[18.45407,47.76512],[18.29588,47.73146],[18.03806,47.75768],[18.00441,47.74634],[17.97087,47.75784],[17.94687,47.74467],[17.90013,47.73926],[17.8661,47.74575],[17.77987,47.73949],[17.70858,47.75668],[17.6084,47.82189],[17.56758,47.81513],[17.52674,47.86551],[17.45392,47.88526],[17.40299,47.94785],[17.33465,47.99312],[17.25795,47.99865],[17.24177,48.02247],[17.20103,48.01999],[17.09466,47.97088],[17.11838,47.96011],[17.09171,47.93429],[17.11317,47.92716],[17.08575,47.87462],[17.01639,47.86733],[17.01055,47.85818],[17.05195,47.83777],[17.04714,47.82856],[17.07495,47.8085],[17.0516,47.79385],[17.07066,47.72854],[17.09374,47.70777],[16.87668,47.68765],[16.86689,47.72115],[16.83943,47.70451],[16.83016,47.68106],[16.75341,47.68282],[16.72094,47.73536],[16.65729,47.74149],[16.63441,47.75908],[16.60952,47.76037],[16.54798,47.75154],[16.53638,47.73678],[16.55217,47.72255],[16.48722,47.69798],[16.4747,47.68116],[16.44805,47.69647],[16.44374,47.67421],[16.42546,47.66217],[16.49675,47.63931],[16.51474,47.6462],[16.57391,47.61967],[16.63142,47.62832],[16.65276,47.62285],[16.65953,47.6061],[16.6732,47.60495],[16.66354,47.56773],[16.71478,47.5402],[16.68956,47.51016],[16.65234,47.50034],[16.67064,47.47422],[16.66185,47.4556],[16.58073,47.41917],[16.57491,47.40542],[16.51709,47.41002],[16.49638,47.38927],[16.48317,47.40936],[16.44546,47.40702],[16.45851,47.36705],[16.4337,47.35281],[16.46463,47.33385],[16.48923,47.27989],[16.46715,47.25317],[16.43131,47.25276],[16.44263,47.23371],[16.43713,47.2097],[16.41892,47.21071],[16.4195,47.19491],[16.43056,47.1847],[16.45556,47.18756],[16.46487,47.16833],[16.45495,47.14259],[16.51716,47.14969],[16.52953,47.12874],[16.50004,47.12329],[16.5008,47.11006],[16.46372,47.09392],[16.47321,47.07362],[16.52032,47.0561],[16.44567,47.03887],[16.43912,47.02966],[16.44786,47.02275],[16.46356,47.03227],[16.5122,47.00117],[16.48,46.99412],[16.44781,47.00389],[16.43327,46.99274],[16.41277,47.00475],[16.3734,46.99859],[16.35052,47.01063],[16.34146,46.99652],[16.30162,46.99923],[16.29058,47.01398],[16.27647,46.96261],[16.25532,46.96421],[16.24628,46.94639],[16.22175,46.93554],[16.20004,46.94151],[16.17897,46.90662],[16.11391,46.8691]]],"type":"Polygon"}}, {"properties":{"name":"Törökbálint orthophoto 2013","id":"Torokbalint-orthophoto-2013","url":"https://terkep.torokbalint.hu/mapproxy/service?LAYERS=ORTO_2013_5CM_2013SZEPT_TAKARASSAL_512_512&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Törökbálint","url":"http://www.torokbalint.hu"},"type":"wms","category":"historicphoto"},"type":"Feature","geometry":{"coordinates":[[[18.91731,47.40854],[18.91927,47.40961],[18.91957,47.40987],[18.92123,47.41091],[18.93114,47.41612],[18.93149,47.4164],[18.93201,47.41674],[18.93257,47.41696],[18.9327,47.41703],[18.95131,47.41664],[18.95144,47.41665],[18.95385,47.41739],[18.95606,47.41813],[18.95676,47.4184],[18.95735,47.41842],[18.96695,47.4246],[18.97009,47.42679],[18.9701,47.42704],[18.96899,47.4297],[18.96598,47.43288],[18.96368,47.4358],[18.96145,47.4393],[18.95877,47.44666],[18.95844,47.44708],[18.95802,47.44715],[18.95749,47.44692],[18.9547,47.44722],[18.95003,47.44824],[18.94826,47.4487],[18.94549,47.4489],[18.94229,47.44903],[18.93921,47.44935],[18.93347,47.44932],[18.93221,47.44922],[18.92972,47.44951],[18.92756,47.44989],[18.92418,47.45025],[18.92246,47.45069],[18.92173,47.4508],[18.91903,47.45161],[18.91846,47.453],[18.91807,47.45317],[18.91598,47.453],[18.91431,47.45294],[18.91386,47.45307],[18.91372,47.45317],[18.91353,47.4532],[18.91326,47.45317],[18.90954,47.4537],[18.9089,47.45384],[18.90837,47.45395],[18.90811,47.45399],[18.90678,47.45439],[18.9066,47.45447],[18.90648,47.45453],[18.90629,47.45477],[18.90567,47.45505],[18.90542,47.4551],[18.90493,47.45506],[18.90427,47.4552],[18.90371,47.45534],[18.89024,47.45988],[18.88943,47.45987],[18.87687,47.45927],[18.87536,47.46113],[18.87268,47.46333],[18.8708,47.46457],[18.86997,47.46524],[18.86794,47.46656],[18.86617,47.46785],[18.86277,47.46929],[18.86146,47.46973],[18.8589,47.47036],[18.85873,47.47038],[18.85862,47.47036],[18.85852,47.47033],[18.85844,47.47027],[18.85838,47.47019],[18.85827,47.46991],[18.85826,47.4698],[18.85836,47.46953],[18.85693,47.46656],[18.85653,47.4658],[18.85663,47.46551],[18.85719,47.46528],[18.85628,47.46403],[18.85634,47.4636],[18.85713,47.46333],[18.85859,47.46272],[18.85929,47.46236],[18.85979,47.46201],[18.86099,47.46071],[18.86194,47.4595],[18.86015,47.45839],[18.8572,47.45636],[18.85718,47.456],[18.85777,47.45568],[18.85839,47.45512],[18.8593,47.45387],[18.85217,47.44847],[18.85195,47.44715],[18.863,47.43798],[18.8634,47.43784],[18.86378,47.43791],[18.86404,47.43809],[18.86466,47.43774],[18.86561,47.4375],[18.86891,47.43712],[18.87206,47.43526],[18.87244,47.43482],[18.87274,47.43324],[18.87273,47.43278],[18.87259,47.4323],[18.8714,47.43001],[18.87164,47.42968],[18.87281,47.42934],[18.87508,47.42836],[18.87602,47.42789],[18.87741,47.42738],[18.87956,47.42649],[18.8801,47.42629],[18.88085,47.42598],[18.88189,47.42553],[18.88436,47.42476],[18.88554,47.42424],[18.88743,47.42332],[18.89055,47.42209],[18.89421,47.4205],[18.8958,47.41954],[18.89666,47.41901],[18.89752,47.41855],[18.89814,47.41835],[18.89888,47.41818],[18.89968,47.41797],[18.90042,47.41755],[18.90062,47.41742],[18.90317,47.41616],[18.90362,47.41597],[18.90481,47.41568],[18.90676,47.41443],[18.90841,47.41317],[18.90932,47.41258],[18.91041,47.41175],[18.9122,47.41098],[18.91314,47.41038],[18.91376,47.40976],[18.91385,47.4097],[18.91458,47.40938],[18.91565,47.40905],[18.91606,47.40885],[18.91691,47.40849],[18.91731,47.40854]]],"type":"Polygon"}}, @@ -456,9 +456,9 @@ {"properties":{"name":"Łódź: Orthophotomap 2015 (aerial image)","id":"Lodz-2015","url":"https://gis.mapa.lodz.pl/awiskts/services/Ortofotomapa/Ortofotomapa/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"text":"Urząd Miasta Łodzi"},"type":"wms","max_zoom":22},"type":"Feature","geometry":{"coordinates":[[[19.55046,51.68509],[19.55032,51.68942],[19.62044,51.68868],[19.62059,51.70167],[19.63322,51.70167],[19.63337,51.7152],[19.64421,51.7152],[19.64496,51.74695],[19.65714,51.74676],[19.65759,51.7647],[19.63411,51.76488],[19.63649,51.82342],[19.57825,51.82397],[19.57944,51.85105],[19.56785,51.85105],[19.568,51.85582],[19.52238,51.85619],[19.52194,51.86509],[19.47529,51.86601],[19.47499,51.86133],[19.4634,51.86133],[19.4634,51.85701],[19.42834,51.85738],[19.42789,51.83985],[19.39342,51.84022],[19.39342,51.84444],[19.33473,51.84481],[19.33488,51.82718],[19.32389,51.82709],[19.323,51.81359],[19.31141,51.81387],[19.31052,51.79126],[19.32225,51.79108],[19.32107,51.75532],[19.33251,51.75513],[19.33206,51.74612],[19.32077,51.74612],[19.31988,51.71493],[19.33176,51.71474],[19.33132,51.70572],[19.34291,51.70544],[19.34216,51.692],[19.37723,51.69172],[19.37723,51.68739],[19.41214,51.68703],[19.41155,51.67791],[19.43517,51.67754],[19.43517,51.68168],[19.48063,51.6815],[19.48084,51.68589],[19.50351,51.68564],[19.50381,51.68085],[19.53858,51.68067],[19.53843,51.68518],[19.55046,51.68509]]],"type":"Polygon"}}, {"properties":{"name":"Łódź: Orthophotomap 2017 (aerial image)","id":"Lodz-2017","url":"https://mapa.lodz.pl/3/services/OGC/Ortofotomapa/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"text":"Urząd Miasta Łodzi"},"type":"wms","max_zoom":22},"type":"Feature","geometry":{"coordinates":[[[19.55046,51.68509],[19.55032,51.68942],[19.62044,51.68868],[19.62059,51.70167],[19.63322,51.70167],[19.63337,51.7152],[19.64421,51.7152],[19.64496,51.74695],[19.65714,51.74676],[19.65759,51.7647],[19.63411,51.76488],[19.63649,51.82342],[19.57825,51.82397],[19.57944,51.85105],[19.56785,51.85105],[19.568,51.85582],[19.52238,51.85619],[19.52194,51.86509],[19.47529,51.86601],[19.47499,51.86133],[19.4634,51.86133],[19.4634,51.85701],[19.42834,51.85738],[19.42789,51.83985],[19.39342,51.84022],[19.39342,51.84444],[19.33473,51.84481],[19.33488,51.82718],[19.32389,51.82709],[19.323,51.81359],[19.31141,51.81387],[19.31052,51.79126],[19.32225,51.79108],[19.32107,51.75532],[19.33251,51.75513],[19.33206,51.74612],[19.32077,51.74612],[19.31988,51.71493],[19.33176,51.71474],[19.33132,51.70572],[19.34291,51.70544],[19.34216,51.692],[19.37723,51.69172],[19.37723,51.68739],[19.41214,51.68703],[19.41155,51.67791],[19.43517,51.67754],[19.43517,51.68168],[19.48063,51.6815],[19.48084,51.68589],[19.50351,51.68564],[19.50381,51.68085],[19.53858,51.68067],[19.53843,51.68518],[19.55046,51.68509]]],"type":"Polygon"}}, {"properties":{"name":"Elevation hillshade of the coastal areas of mainland Portugal - 2m - 2014-2015 (DGT)","id":"MDT2M_LITORAL_2014_15","url":"https://ortos.dgterritorio.gov.pt/wms-inspire/mdt2014-2015-litoral?LAYERS=MDT2M-2014-2015-litoral&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Informação geográfica cedida pela Direção-Geral do Território","url":"https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e803532f-7760-4714-bfbf-914546309d86"},"type":"wms","category":"elevation","min_zoom":1,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-7.38968,37.19205],[-7.52426,37.18002],[-7.89505,36.98171],[-8.15186,37.10886],[-8.65036,37.14062],[-8.95111,37.03545],[-8.78632,37.34833],[-8.76434,37.55111],[-8.7561,38.38258],[-8.47664,38.33466],[-8.47183,38.40141],[-8.66066,38.46596],[-8.66959,38.60882],[-9.142,38.53689],[-8.81104,38.67372],[-8.79318,38.85468],[-8.95935,38.9829],[-9.18732,38.84934],[-9.2395,38.72838],[-9.37821,38.74659],[-9.38233,39.07891],[-9.29169,39.2514],[-9.31915,39.33642],[-9.17084,39.38526],[-9.06372,39.48815],[-9.02252,39.69662],[-8.78632,40.14529],[-8.86322,40.2093],[-8.72589,40.53155],[-8.64075,40.50858],[-8.62427,40.63063],[-8.53089,40.6004],[-8.535,40.71292],[-8.61466,40.89275],[-8.61878,41.10419],[-8.53089,41.16728],[-8.66959,41.21689],[-8.72315,41.41081],[-8.76984,41.65958],[-8.66547,41.73955],[-8.81104,41.72316],[-8.81104,41.85217],[-8.74649,41.9125],[-8.83576,41.93089],[-8.91815,41.84501],[-8.89343,41.70778],[-8.82065,41.50755],[-8.73139,41.16315],[-8.67508,41.069],[-8.68469,40.90729],[-8.93326,40.17573],[-8.88107,40.12219],[-9.11453,39.64694],[-9.11865,39.5623],[-9.3013,39.40543],[-9.43039,39.37571],[-9.34799,39.23864],[-9.45099,39.04799],[-9.45786,38.89317],[-9.53201,38.78835],[-9.50043,38.68551],[-9.28894,38.663],[-9.19418,38.54172],[-9.25324,38.38473],[-9.03488,38.42347],[-8.92502,38.46757],[-8.81241,38.35997],[-8.7973,38.14968],[-8.91953,37.95286],[-8.84262,37.8651],[-8.83988,37.40617],[-9.02664,37.01023],[-8.92914,36.97513],[-8.61466,37.099],[-8.15048,37.05956],[-7.8923,36.93672],[-7.48993,37.15156],[-7.39105,37.15813],[-7.38968,37.19205]]],"type":"Polygon"}}, -{"properties":{"name":"Orthophotos of the coastal areas of mainland Portugal - 10cm - 2014-2015 (DGT)","id":"ORTOS_DGT_2014_15","url":"https://ortos.dgterritorio.gov.pt/wms-inspire/ortos2014-2015-litoral?LAYERS=Ortoimagens_2014-2015_Litoral&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Informação geográfica cedida pela Direção-Geral do Território","url":"https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/66425725-0ab4-4d7a-ad1c-b0d923881a61"},"type":"wms","category":"historicphoto","min_zoom":14,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-7.38968,37.19205],[-7.52426,37.18002],[-7.89505,36.98171],[-8.15186,37.10886],[-8.65036,37.14062],[-8.95111,37.03545],[-8.78632,37.34833],[-8.76434,37.55111],[-8.7561,38.38258],[-8.47664,38.33466],[-8.47183,38.40141],[-8.66066,38.46596],[-8.66959,38.60882],[-9.142,38.53689],[-8.81104,38.67372],[-8.79318,38.85468],[-8.95935,38.9829],[-9.18732,38.84934],[-9.2395,38.72838],[-9.37821,38.74659],[-9.38233,39.07891],[-9.29169,39.2514],[-9.31915,39.33642],[-9.17084,39.38526],[-9.06372,39.48815],[-9.02252,39.69662],[-8.78632,40.14529],[-8.86322,40.2093],[-8.72589,40.53155],[-8.64075,40.50858],[-8.62427,40.63063],[-8.53089,40.6004],[-8.535,40.71292],[-8.61466,40.89275],[-8.61878,41.10419],[-8.53089,41.16728],[-8.66959,41.21689],[-8.72315,41.41081],[-8.76984,41.65958],[-8.66547,41.73955],[-8.81104,41.72316],[-8.81104,41.85217],[-8.74649,41.9125],[-8.83576,41.93089],[-8.91815,41.84501],[-8.89343,41.70778],[-8.82065,41.50755],[-8.73139,41.16315],[-8.67508,41.069],[-8.68469,40.90729],[-8.93326,40.17573],[-8.88107,40.12219],[-9.11453,39.64694],[-9.11865,39.5623],[-9.3013,39.40543],[-9.43039,39.37571],[-9.34799,39.23864],[-9.45099,39.04799],[-9.45786,38.89317],[-9.53201,38.78835],[-9.50043,38.68551],[-9.28894,38.663],[-9.19418,38.54172],[-9.25324,38.38473],[-9.03488,38.42347],[-8.92502,38.46757],[-8.81241,38.35997],[-8.7973,38.14968],[-8.91953,37.95286],[-8.84262,37.8651],[-8.83988,37.40617],[-9.02664,37.01023],[-8.92914,36.97513],[-8.61466,37.099],[-8.15048,37.05956],[-7.8923,36.93672],[-7.48993,37.15156],[-7.39105,37.15813],[-7.38968,37.19205]]],"type":"Polygon"}}, +{"properties":{"name":"Orthophotos of the coastal areas of mainland Portugal - 10cm - 2014-2015 (DGT)","id":"ORTOS_DGT_2014_15","url":"https://cartografia.dgterritorio.gov.pt/wms/ortos2014-2015-litoral?LAYERS=Ortoimagens_2014-2015_Litoral&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Informação geográfica cedida pela Direção-Geral do Território","url":"https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/66425725-0ab4-4d7a-ad1c-b0d923881a61"},"type":"wms","category":"historicphoto","min_zoom":14,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-7.38968,37.19205],[-7.52426,37.18002],[-7.89505,36.98171],[-8.15186,37.10886],[-8.65036,37.14062],[-8.95111,37.03545],[-8.78632,37.34833],[-8.76434,37.55111],[-8.7561,38.38258],[-8.47664,38.33466],[-8.47183,38.40141],[-8.66066,38.46596],[-8.66959,38.60882],[-9.142,38.53689],[-8.81104,38.67372],[-8.79318,38.85468],[-8.95935,38.9829],[-9.18732,38.84934],[-9.2395,38.72838],[-9.37821,38.74659],[-9.38233,39.07891],[-9.29169,39.2514],[-9.31915,39.33642],[-9.17084,39.38526],[-9.06372,39.48815],[-9.02252,39.69662],[-8.78632,40.14529],[-8.86322,40.2093],[-8.72589,40.53155],[-8.64075,40.50858],[-8.62427,40.63063],[-8.53089,40.6004],[-8.535,40.71292],[-8.61466,40.89275],[-8.61878,41.10419],[-8.53089,41.16728],[-8.66959,41.21689],[-8.72315,41.41081],[-8.76984,41.65958],[-8.66547,41.73955],[-8.81104,41.72316],[-8.81104,41.85217],[-8.74649,41.9125],[-8.83576,41.93089],[-8.91815,41.84501],[-8.89343,41.70778],[-8.82065,41.50755],[-8.73139,41.16315],[-8.67508,41.069],[-8.68469,40.90729],[-8.93326,40.17573],[-8.88107,40.12219],[-9.11453,39.64694],[-9.11865,39.5623],[-9.3013,39.40543],[-9.43039,39.37571],[-9.34799,39.23864],[-9.45099,39.04799],[-9.45786,38.89317],[-9.53201,38.78835],[-9.50043,38.68551],[-9.28894,38.663],[-9.19418,38.54172],[-9.25324,38.38473],[-9.03488,38.42347],[-8.92502,38.46757],[-8.81241,38.35997],[-8.7973,38.14968],[-8.91953,37.95286],[-8.84262,37.8651],[-8.83988,37.40617],[-9.02664,37.01023],[-8.92914,36.97513],[-8.61466,37.099],[-8.15048,37.05956],[-7.8923,36.93672],[-7.48993,37.15156],[-7.39105,37.15813],[-7.38968,37.19205]]],"type":"Polygon"}}, {"properties":{"name":"Orthophotos of mainland Portugal - 25cm - 2018 (DGT)","id":"ORTOS_DGT_2018_WMS","url":"https://cartografia.dgterritorio.gov.pt/wms/ortos2018?LAYERS=Ortos2018-RGB&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Informação geográfica cedida pela Direção-Geral do Território","url":"https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/daf5479d-29c8-4e0c-b7b8-0e1791891186"},"type":"wms","category":"photo","min_zoom":14,"max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"type":"Polygon"}}, -{"properties":{"name":"Orthophotos of mainland Portugal - 50cm - 2004-2006 (DGT)","id":"ORTOS_DGRF_2004_06","url":"https://ortos.dgterritorio.gov.pt/wms-inspire/ortos2004-2006?LAYERS=Ortos2004-2006-RGB&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Informação geográfica cedida pela Direção-Geral do Território","url":"https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/5fd2c1e18f5f4c3f814a3e7212937ce7"},"type":"wms","category":"historicphoto","min_zoom":14,"max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"type":"Polygon"}}, +{"properties":{"name":"Orthophotos of mainland Portugal - 50cm - 2004-2006 (DGT)","id":"ORTOS_DGRF_2004_06","url":"https://cartografia.dgterritorio.gov.pt/wms/ortos2004-2006?LAYERS=Ortos2004-2006-RGB&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":true,"text":"Informação geográfica cedida pela Direção-Geral do Território","url":"https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/5fd2c1e18f5f4c3f814a3e7212937ce7"},"type":"wms","category":"historicphoto","min_zoom":14,"max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"type":"Polygon"}}, {"properties":{"name":"Orthophotos of the northern portion of mainland Portugal - 25cm - 2021 (DGT)","id":"ORTOS_DGT_2021_RGB","url":"https://cartografia.dgterritorio.gov.pt/wms/ortos2021?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ortos2021-RGB&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":true,"text":"Informação geográfica cedida pela Direção-Geral do Território","url":"https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/d70dd232-aaee-4e6b-a804-5a0b70c537be"},"type":"wms","category":"photo","min_zoom":14,"max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[-9.11255,39.5798],[-7.45699,39.57307],[-7.43462,39.57298],[-7.43451,39.59878],[-7.48083,39.59897],[-7.48065,39.64353],[-7.38786,39.64315],[-7.38795,39.6204],[-7.29431,39.62002],[-7.29422,39.64173],[-7.01442,39.64059],[-7.01433,39.66258],[-6.96642,39.66239],[-6.96579,39.81936],[-6.91818,39.81916],[-6.91808,39.84182],[-6.86968,39.84163],[-6.86904,39.99862],[-6.82135,39.99843],[-6.82125,40.02143],[-6.86727,40.02162],[-6.867,40.08937],[-6.91297,40.08956],[-6.91278,40.13524],[-7.00586,40.13561],[-7.00549,40.22502],[-6.91081,40.22464],[-6.91072,40.24651],[-6.86321,40.24631],[-6.86312,40.26875],[-6.81582,40.26856],[-6.81564,40.31306],[-6.76754,40.31286],[-6.76717,40.40355],[-6.81263,40.40373],[-6.81226,40.49298],[-6.76365,40.49279],[-6.76337,40.56108],[-6.81011,40.56127],[-6.80993,40.60589],[-6.76061,40.60568],[-6.76015,40.7189],[-6.80624,40.71909],[-6.80579,40.83099],[-6.75719,40.83079],[-6.757,40.87643],[-6.80358,40.87662],[-6.8033,40.94453],[-6.84977,40.94472],[-6.84958,40.98963],[-6.89681,40.98983],[-6.89672,41.01194],[-6.8011,41.01155],[-6.80101,41.03342],[-6.75254,41.03322],[-6.75218,41.12294],[-6.70339,41.12274],[-6.70321,41.1674],[-6.65491,41.16721],[-6.65473,41.21165],[-6.60639,41.21145],[-6.6063,41.23362],[-6.5101,41.23322],[-6.51001,41.25459],[-6.46206,41.25439],[-6.46197,41.27667],[-6.41316,41.27648],[-6.41289,41.34352],[-6.36416,41.34332],[-6.36407,41.3649],[-6.2671,41.36451],[-6.26664,41.47627],[-6.21642,41.47606],[-6.21615,41.54282],[-6.16634,41.54262],[-6.16606,41.61057],[-6.21266,41.61076],[-6.21247,41.65649],[-6.25985,41.65668],[-6.25975,41.68035],[-6.40324,41.68093],[-6.40314,41.7046],[-6.45147,41.70479],[-6.45156,41.68265],[-6.49863,41.68285],[-6.49844,41.72822],[-6.54572,41.72841],[-6.54554,41.77317],[-6.49563,41.77297],[-6.49517,41.88615],[-6.54147,41.88634],[-6.54111,41.97691],[-6.63787,41.97731],[-6.63796,41.9557],[-6.73334,41.95609],[-6.73315,42.00147],[-6.83034,42.00187],[-6.83052,41.95767],[-6.92674,41.95806],[-6.92664,41.98115],[-7.02342,41.98154],[-7.02351,41.9595],[-7.07128,41.95969],[-7.07109,42.0051],[-7.16778,42.00549],[-7.16787,41.98319],[-7.21668,41.98339],[-7.21704,41.8936],[-7.26597,41.8938],[-7.26606,41.87203],[-7.55419,41.8732],[-7.5541,41.89643],[-7.6507,41.89683],[-7.65061,41.919],[-7.79589,41.9196],[-7.79599,41.8969],[-7.84363,41.89709],[-7.84345,41.94185],[-7.94025,41.94224],[-7.94044,41.89719],[-7.98892,41.89738],[-7.98901,41.87474],[-8.03711,41.87493],[-8.0372,41.85229],[-8.08485,41.85248],[-8.08494,41.82969],[-8.13286,41.82988],[-8.13258,41.89755],[-8.18092,41.89775],[-8.18074,41.94156],[-8.13296,41.94136],[-8.13277,41.98668],[-8.08429,41.98648],[-8.0842,42.00928],[-8.03615,42.00908],[-8.03597,42.05501],[-8.08419,42.0552],[-8.08401,42.09981],[-8.18111,42.10021],[-8.18084,42.16741],[-8.23028,42.16761],[-8.23038,42.14464],[-8.32733,42.14504],[-8.32752,42.09905],[-8.56837,42.10003],[-8.56846,42.07629],[-8.61652,42.07649],[-8.61661,42.05355],[-8.66462,42.05375],[-8.66481,42.00835],[-8.71278,42.00855],[-8.71287,41.98568],[-8.76055,41.98588],[-8.76074,41.94056],[-8.80856,41.94076],[-8.80866,41.91796],[-8.85675,41.91816],[-8.85684,41.89493],[-8.9034,41.89512],[-8.90423,41.69139],[-8.85368,41.69118],[-8.85423,41.55703],[-8.80363,41.55683],[-8.80455,41.33208],[-8.75386,41.33188],[-8.7546,41.1521],[-8.70487,41.1519],[-8.70533,41.04027],[-8.65649,41.04008],[-8.65676,40.97279],[-8.70317,40.97298],[-8.70381,40.8152],[-8.74907,40.81538],[-8.74962,40.6802],[-8.79454,40.68038],[-8.79527,40.49956],[-8.84056,40.49974],[-8.84111,40.3647],[-8.88653,40.36489],[-8.88699,40.25186],[-8.9322,40.25204],[-8.93257,40.16071],[-8.88429,40.16051],[-8.88456,40.09374],[-8.9299,40.09393],[-8.93036,39.9809],[-8.97558,39.98109],[-8.97595,39.89051],[-9.02121,39.89069],[-9.02158,39.80027],[-9.06658,39.80045],[-9.06704,39.68684],[-9.11211,39.68702],[-9.11255,39.5798]]],"type":"Polygon"}}, {"properties":{"name":"Lantmäteriet Historic Orthophoto 1960","id":"lantmateriet-orto1960","url":"https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?LAYERS=OI.Histortho_60&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"text":"© Lantmäteriet, CC0","url":"https://www.lantmateriet.se/"},"type":"wms","category":"historicphoto","min_zoom":5,"max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"}}, {"properties":{"name":"Lantmäteriet Historic Orthophoto 1975","id":"lantmateriet-orto1975","url":"https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?LAYERS=OI.Histortho_75&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"text":"© Lantmäteriet, CC0","url":"https://www.lantmateriet.se/"},"type":"wms","category":"historicphoto","min_zoom":5,"max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[17.85131,60.87407],[14.74558,60.53889],[11.60239,59.56416],[10.51799,58.66559],[12.64251,56.03062],[12.80182,55.19612]]],"type":"Polygon"}}, @@ -507,6 +507,8 @@ {"properties":{"name":"Orange County Orthoimagery (2022)","id":"Orange_CA_2022","url":"https://www.ocgis.com/arcpub/rest/services/Aerial_Imagery_Countywide/22_OC_3IN_SP6/ImageServer/exportImage?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Orange County","url":"https://data-ocpw.opendata.arcgis.com/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-117.40675,33.65258],[-117.41167,33.65807],[-117.41071,33.65966],[-117.47392,33.70357],[-117.53261,33.71172],[-117.53453,33.7571],[-117.57703,33.76797],[-117.62354,33.81771],[-117.62326,33.82939],[-117.63365,33.82934],[-117.66137,33.86069],[-117.64525,33.86007],[-117.64502,33.86822],[-117.65849,33.87161],[-117.65928,33.87733],[-117.65249,33.88055],[-117.64208,33.88355],[-117.6457,33.88785],[-117.64609,33.89798],[-117.64819,33.908],[-117.65334,33.92379],[-117.67207,33.94484],[-117.68871,33.9677],[-117.6968,33.96046],[-117.70433,33.95814],[-117.71066,33.95831],[-117.71491,33.95995],[-117.71542,33.96594],[-117.72062,33.96538],[-117.72656,33.96306],[-117.72985,33.96153],[-117.73154,33.96527],[-117.73222,33.9694],[-117.72939,33.97319],[-117.72968,33.97585],[-117.73205,33.97964],[-117.73188,33.9832],[-117.73777,33.98185],[-117.74252,33.98202],[-117.75146,33.98881],[-117.75791,33.99582],[-117.76182,33.99339],[-117.7711,33.99356],[-117.77636,33.99679],[-117.78253,33.99848],[-117.79181,33.99447],[-117.80347,33.99696],[-117.80675,33.99922],[-117.81105,34.00075],[-117.81428,33.99486],[-117.81773,33.99124],[-117.82758,33.98456],[-117.83788,33.97387],[-117.8415,33.96954],[-117.84642,33.96756],[-117.84999,33.96892],[-117.85055,33.9722],[-117.85389,33.97474],[-117.85819,33.97537],[-117.86204,33.97469],[-117.86538,33.97146],[-117.86979,33.97237],[-117.88241,33.97605],[-117.89147,33.97457],[-117.89809,33.96999],[-117.91516,33.96788],[-117.91481,33.96184],[-117.92166,33.95748],[-117.93064,33.94779],[-117.97806,33.94711],[-117.97789,33.90411],[-117.98542,33.90405],[-117.98536,33.90484],[-117.98779,33.90473],[-117.98779,33.90264],[-117.99034,33.90264],[-117.99017,33.89692],[-117.99577,33.89698],[-117.99566,33.88956],[-118.00437,33.88962],[-118.00426,33.88238],[-118.01167,33.88232],[-118.0299,33.8744],[-118.03938,33.86656],[-118.03932,33.8637],[-118.04356,33.86365],[-118.04353,33.86002],[-118.04798,33.85994],[-118.04784,33.85485],[-118.05214,33.85485],[-118.05202,33.8512],[-118.05644,33.85122],[-118.05644,33.8476],[-118.06065,33.84746],[-118.06085,33.83538],[-118.06481,33.83187],[-118.06504,33.82021],[-118.07364,33.81614],[-118.08615,33.80363],[-118.08762,33.79718],[-118.10092,33.77641],[-118.09534,33.76801],[-118.0941,33.76484],[-118.09376,33.75941],[-118.1001,33.75896],[-118.10021,33.75567],[-118.11379,33.74809],[-118.13275,33.72455],[-117.58794,33.37667],[-117.58298,33.38562],[-117.58252,33.38548],[-117.58188,33.38662],[-117.58143,33.38677],[-117.57949,33.38567],[-117.57754,33.38518],[-117.57541,33.38534],[-117.56044,33.38835],[-117.55375,33.38867],[-117.55202,33.38847],[-117.55089,33.38819],[-117.54911,33.38836],[-117.54356,33.39068],[-117.54215,33.39156],[-117.53804,33.39501],[-117.53595,33.39645],[-117.53389,33.39691],[-117.53063,33.39685],[-117.52915,33.39663],[-117.52884,33.39748],[-117.52956,33.39927],[-117.52808,33.40189],[-117.52796,33.40478],[-117.53062,33.40817],[-117.53159,33.41485],[-117.53362,33.41751],[-117.53555,33.41813],[-117.53674,33.41949],[-117.53102,33.42187],[-117.527,33.4247],[-117.52451,33.43013],[-117.50352,33.44756],[-117.50069,33.45243],[-117.47754,33.46754],[-117.47664,33.47331],[-117.47658,33.47897],[-117.47398,33.48321],[-117.47285,33.48712],[-117.46945,33.49232],[-117.46509,33.49481],[-117.46215,33.49979],[-117.46317,33.54359],[-117.45513,33.55672],[-117.45513,33.57777],[-117.43001,33.60222],[-117.41428,33.63249],[-117.40675,33.65258]]],"type":"Polygon"}}, {"properties":{"name":"Sacramento County Orthoimagery (2022)","id":"Sacramento_CA_2022","url":"https://mapservices.gis.saccounty.gov/ArcGIS/rest/services/Cache/IMAGERY_2022_WEB_MERCATOR/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Sacramento County","url":"https://data.saccounty.gov/"},"type":"tms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-121.75804,38.01591],[-121.75781,38.02314],[-121.7213,38.02314],[-121.72144,38.03025],[-121.71207,38.03018],[-121.71189,38.0375],[-121.69383,38.03729],[-121.69366,38.04475],[-121.68463,38.04461],[-121.68453,38.05184],[-121.67533,38.0519],[-121.67523,38.08822],[-121.64787,38.08803],[-121.64794,38.08077],[-121.62941,38.08082],[-121.62917,38.09531],[-121.61115,38.09522],[-121.61086,38.10237],[-121.60185,38.10231],[-121.60192,38.09511],[-121.55578,38.09499],[-121.55534,38.10975],[-121.57424,38.10981],[-121.57417,38.12409],[-121.565,38.12406],[-121.56504,38.13124],[-121.55574,38.13117],[-121.55564,38.13856],[-121.54658,38.13846],[-121.54638,38.14585],[-121.52807,38.14571],[-121.52807,38.16742],[-121.51883,38.16737],[-121.51854,38.19639],[-121.50942,38.19636],[-121.50936,38.20356],[-121.50025,38.20347],[-121.49997,38.22534],[-121.48173,38.22522],[-121.4815,38.23975],[-121.47245,38.23962],[-121.472,38.25419],[-121.43551,38.25395],[-121.4357,38.24681],[-121.42641,38.24673],[-121.4265,38.23222],[-121.41731,38.23214],[-121.41743,38.22497],[-121.32543,38.22452],[-121.32525,38.23162],[-121.28873,38.23146],[-121.28833,38.23866],[-121.27935,38.23862],[-121.2793,38.24591],[-121.25161,38.24558],[-121.25182,38.23844],[-121.21501,38.23835],[-121.21483,38.24549],[-121.19655,38.2453],[-121.19656,38.25257],[-121.15971,38.25237],[-121.15949,38.2596],[-121.14113,38.25951],[-121.14105,38.26674],[-121.12275,38.26644],[-121.12237,38.27384],[-121.10423,38.27365],[-121.10381,38.28096],[-121.07668,38.2807],[-121.07661,38.28798],[-121.06727,38.28775],[-121.06705,38.29508],[-121.05814,38.29503],[-121.05821,38.28775],[-121.03989,38.28753],[-121.03946,38.29486],[-121.0212,38.2948],[-121.01731,38.51237],[-121.02709,38.51257],[-121.02709,38.53387],[-121.03638,38.53387],[-121.03602,38.55582],[-121.04536,38.55597],[-121.04499,38.57043],[-121.05433,38.57029],[-121.05399,38.59949],[-121.06325,38.59957],[-121.06267,38.63581],[-121.07196,38.63595],[-121.07124,38.67941],[-121.08067,38.67952],[-121.08021,38.70128],[-121.08962,38.70137],[-121.08939,38.72305],[-121.19117,38.72378],[-121.19099,38.73101],[-121.3021,38.73177],[-121.30198,38.74628],[-121.48707,38.74711],[-121.48724,38.73998],[-121.58899,38.7404],[-121.58889,38.74754],[-121.60729,38.74776],[-121.6075,38.73318],[-121.62607,38.73343],[-121.62616,38.71877],[-121.64463,38.71884],[-121.64508,38.65355],[-121.62647,38.65338],[-121.62659,38.64629],[-121.60801,38.64596],[-121.6081,38.63174],[-121.5711,38.63142],[-121.57135,38.60255],[-121.58059,38.60271],[-121.58068,38.58084],[-121.59,38.5809],[-121.59057,38.49389],[-121.56268,38.49364],[-121.56299,38.47926],[-121.55367,38.47909],[-121.55388,38.47213],[-121.54449,38.47179],[-121.54447,38.46466],[-121.50752,38.46449],[-121.5078,38.44289],[-121.5261,38.44294],[-121.52632,38.43572],[-121.5354,38.43561],[-121.53582,38.4137],[-121.52637,38.41354],[-121.52644,38.38498],[-121.53575,38.38502],[-121.53599,38.35598],[-121.54511,38.35602],[-121.54528,38.34873],[-121.5636,38.34882],[-121.5636,38.34173],[-121.57293,38.34168],[-121.57293,38.3343],[-121.59123,38.33441],[-121.59157,38.32004],[-121.60047,38.31997],[-121.60056,38.30549],[-121.60992,38.30542],[-121.61041,38.21136],[-121.61954,38.21124],[-121.61975,38.19682],[-121.64709,38.19699],[-121.64725,38.18961],[-121.66551,38.18986],[-121.66565,38.18242],[-121.67471,38.18257],[-121.67478,38.17529],[-121.68418,38.17519],[-121.68418,38.16806],[-121.69318,38.16832],[-121.69348,38.13197],[-121.70278,38.13183],[-121.70287,38.11726],[-121.71191,38.11754],[-121.71203,38.08844],[-121.75762,38.08852],[-121.758,38.08133],[-121.77605,38.08119],[-121.77637,38.07387],[-121.78527,38.07412],[-121.78551,38.06673],[-121.82204,38.06696],[-121.82164,38.07396],[-121.83115,38.07436],[-121.83115,38.08153],[-121.84967,38.08161],[-121.84942,38.07412],[-121.86782,38.07407],[-121.86776,38.05961],[-121.84949,38.05955],[-121.84951,38.0379],[-121.84044,38.03783],[-121.84053,38.02338],[-121.82214,38.02322],[-121.82229,38.01604],[-121.75804,38.01591]]],"type":"Polygon"}}, {"properties":{"name":"San Bernardino County Orthoimagery (2023)","id":"San_Bernardino_CA_2023","url":"https://maps.sbcounty.gov/arcgis/rest/services/2023_PUA_Cache/ImageServer/exportImage?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"San Bernardino County","url":"https://open.sbcounty.gov/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-117.81374,33.9442],[-117.69709,33.86642],[-117.65711,33.86651],[-117.65702,33.87329],[-117.63812,33.87325],[-117.63785,33.91003],[-117.59357,33.90977],[-117.59357,33.96213],[-117.54077,33.9623],[-117.54037,34.01906],[-117.50421,34.01901],[-117.50385,34.00348],[-117.24117,34.00171],[-117.24259,33.98964],[-116.93838,33.9872],[-116.91388,34.02021],[-116.29299,34.01275],[-116.29303,34.01985],[-115.8132,34.01222],[-115.81142,34.25023],[-116.06097,34.25077],[-116.06043,34.31289],[-116.18796,34.31342],[-116.18947,34.2497],[-116.2507,34.25094],[-116.24973,34.31235],[-116.37583,34.3136],[-116.37459,34.37518],[-116.62529,34.37483],[-116.62493,34.43766],[-116.7513,34.43801],[-116.75024,34.49836],[-116.8759,34.50049],[-116.8759,34.56084],[-116.93696,34.56084],[-116.93909,34.62402],[-117.1258,34.62402],[-117.1258,34.75039],[-117.00156,34.75039],[-117.00085,34.81216],[-116.68705,34.81216],[-116.68847,34.7795],[-116.56281,34.78092],[-116.56281,35.001],[-116.93767,34.99958],[-116.93909,34.93711],[-117.12651,34.93711],[-117.12651,34.99887],[-117.18899,34.99887],[-117.1897,35.08194],[-117.37641,35.08336],[-117.37571,34.99958],[-117.50101,35.00029],[-117.50066,35.02807],[-117.65028,35.02878],[-117.65054,34.83647],[-117.6848,34.83665],[-117.68586,34.54664],[-117.67752,34.54628],[-117.6785,34.24242],[-117.74435,34.03893],[-117.78415,34.0388],[-117.82129,33.97903],[-117.82142,33.96381],[-117.81374,33.96377],[-117.81374,33.9442]]],"type":"Polygon"}}, +{"properties":{"name":"San Mateo County Orthoimagery (2022)","id":"San_Mateo_CA_2022","url":"https://gis.smcgov.org/image/rest/services/SanMateoCounty_Imagery2022/ImageServer/exportImage?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"San Mateo County","url":"https://www.smcgov.org/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-122.53756,37.6908],[-122.53704,37.12929],[-122.33985,37.13375],[-122.33933,37.11178],[-122.3187,37.11181],[-122.31847,37.10108],[-122.27737,37.10161],[-122.27826,37.13451],[-122.29889,37.13411],[-122.29974,37.17819],[-122.23801,37.17918],[-122.23867,37.21217],[-122.14608,37.21345],[-122.14785,37.30129],[-122.15835,37.30109],[-122.15861,37.31762],[-122.16904,37.31749],[-122.1693,37.33399],[-122.17976,37.33382],[-122.18003,37.35016],[-122.19059,37.35022],[-122.19095,37.37768],[-122.18058,37.37774],[-122.18189,37.43271],[-122.16123,37.43304],[-122.16156,37.44399],[-122.12023,37.44458],[-122.12036,37.45547],[-122.0791,37.4562],[-122.07923,37.47797],[-122.12095,37.47719],[-122.12187,37.5214],[-122.16333,37.52101],[-122.16372,37.54278],[-122.20453,37.542],[-122.20558,37.56378],[-122.24703,37.56299],[-122.2473,37.58529],[-122.28902,37.58503],[-122.28954,37.60654],[-122.331,37.60628],[-122.33205,37.64931],[-122.3735,37.64879],[-122.37511,37.71531],[-122.50244,37.71334],[-122.5019,37.6914],[-122.53756,37.6908]]],"type":"Polygon"}}, +{"properties":{"name":"Calaveras County Orthoimagery (2022)","id":"Solano_CA_2022","url":"https://tiles.arcgis.com/tiles/SCn6czzcqKAFwdGU/arcgis/rest/services/Aerial2022_WGS84_ESRI_Aux/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Solano County","url":"https://www.solanocounty.com/"},"type":"tms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[[-122.45268,38.11954],[-122.41595,38.11967],[-122.41593,38.12687],[-122.39765,38.12696],[-122.3976,38.13421],[-122.37922,38.13437],[-122.37926,38.12707],[-122.36091,38.12711],[-122.36083,38.11987],[-122.34248,38.11987],[-122.3426,38.11276],[-122.32411,38.11272],[-122.32413,38.1055],[-122.31495,38.10548],[-122.31492,38.09829],[-122.30569,38.09829],[-122.30563,38.09103],[-122.2965,38.09103],[-122.29655,38.06211],[-122.26887,38.06214],[-122.26892,38.0476],[-122.19545,38.04779],[-122.19545,38.04052],[-122.18628,38.04057],[-122.18635,38.03325],[-122.17725,38.03325],[-122.17706,38.02603],[-122.16794,38.02591],[-122.16818,38.01882],[-122.10373,38.0187],[-122.1038,38.03336],[-122.09475,38.03327],[-122.09469,38.04067],[-122.06719,38.04071],[-122.06713,38.04789],[-121.99386,38.04798],[-121.99373,38.04068],[-121.92978,38.04064],[-121.92972,38.0334],[-121.87467,38.03331],[-121.87473,38.04055],[-121.82886,38.04046],[-121.82892,38.04779],[-121.7739,38.04763],[-121.77376,38.06214],[-121.75541,38.06214],[-121.75532,38.06937],[-121.74623,38.0693],[-121.74629,38.07667],[-121.70036,38.07649],[-121.70028,38.09833],[-121.69131,38.09823],[-121.69131,38.11297],[-121.68181,38.11297],[-121.68155,38.14162],[-121.6727,38.14173],[-121.67257,38.14899],[-121.6636,38.14899],[-121.66333,38.17065],[-121.65401,38.17079],[-121.65393,38.17777],[-121.63555,38.17777],[-121.63565,38.18513],[-121.60821,38.18513],[-121.60779,38.20669],[-121.59882,38.20669],[-121.59853,38.29374],[-121.58924,38.29338],[-121.58879,38.31537],[-121.69029,38.31577],[-121.68907,38.54052],[-121.79074,38.54095],[-121.79098,38.53354],[-121.82763,38.53374],[-121.82763,38.54076],[-121.95676,38.54079],[-121.95702,38.53344],[-121.99391,38.53365],[-121.99352,38.52631],[-122.03993,38.5262],[-122.03993,38.51917],[-122.11355,38.51926],[-122.11355,38.48296],[-122.12313,38.48283],[-122.12297,38.46098],[-122.13205,38.46111],[-122.13196,38.41023],[-122.1688,38.41033],[-122.16857,38.3233],[-122.21471,38.32321],[-122.21438,38.27959],[-122.2236,38.27968],[-122.22384,38.25792],[-122.21454,38.25771],[-122.21431,38.23623],[-122.20531,38.23641],[-122.20509,38.21448],[-122.2142,38.21439],[-122.21431,38.2],[-122.22338,38.20005],[-122.22344,38.16373],[-122.44369,38.16306],[-122.44386,38.17034],[-122.47131,38.17028],[-122.47124,38.15572],[-122.46207,38.15573],[-122.46201,38.14853],[-122.45281,38.14852],[-122.45268,38.11954]]],[[[-122.06711,37.99717],[-122.04882,37.99717],[-122.04882,38.01166],[-122.06711,38.01166],[-122.06711,37.99717]]]],"type":"MultiPolygon"}}, {"properties":{"name":"Mesa County GIS NAIP 2015","id":"MCGIS-County-NAIP-Imagery-2015","url":"https://mcgis.mesacounty.us/imagery/rest/services/Mosaic_Datasets/MesaCounty_2015/ImageServer/exportImage?f=image&format=jpg&bbox={bbox}&imageSR={wkid}&bboxSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":true,"text":"Mesa County GIS","url":"https://gis.mesacounty.us/"},"type":"wms","category":"historicphoto","min_zoom":3,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-109.06765,39.37875],[-109.06685,38.43416],[-108.3711,38.43452],[-108.37142,38.808],[-108.18198,38.8081],[-108.18204,38.8712],[-108.05688,38.87126],[-108.05698,38.99759],[-107.86943,38.99769],[-107.86948,39.05856],[-107.81779,39.05859],[-107.81774,38.99645],[-107.68226,38.99652],[-107.68231,39.05971],[-107.62076,39.05974],[-107.62081,39.12126],[-107.49568,39.12133],[-107.49574,39.18416],[-107.36995,39.18422],[-107.37012,39.37962],[-109.06765,39.37875]]],"type":"Polygon"}}, {"properties":{"name":"Mesa County GIS Valleywide 2018","id":"MCGIS-County-Valleywide-Imagery-2018","url":"https://mcgis.mesacounty.us/imagery/rest/services/Mosaic_Datasets/City_Color_2018/ImageServer/WMTS/1.0.0/WMTSCapabilities.xml","attribution":{"required":true,"text":"Mesa County GIS","url":"https://gis.mesacounty.us/"},"type":"wmts","category":"historicphoto","min_zoom":5,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-108.93915,39.23931],[-108.93946,39.22429],[-108.90208,39.22384],[-108.90237,39.20965],[-108.86906,39.20925],[-108.86938,39.19325],[-108.85033,39.19302],[-108.85061,39.17868],[-108.83196,39.17845],[-108.83224,39.16432],[-108.79393,39.16386],[-108.79422,39.14972],[-108.75686,39.14927],[-108.75744,39.12056],[-108.73853,39.12033],[-108.7388,39.10648],[-108.71529,39.10619],[-108.71557,39.09225],[-108.69671,39.09203],[-108.69699,39.07816],[-108.67837,39.07793],[-108.67867,39.06313],[-108.65778,39.06287],[-108.65864,39.01991],[-108.54548,39.01855],[-108.5455,39.01735],[-108.54336,39.01733],[-108.54342,39.01401],[-108.53397,39.0139],[-108.53414,39.00536],[-108.51821,39.00517],[-108.51825,39.00291],[-108.51519,39.00287],[-108.51515,39.0053],[-108.47848,39.00485],[-108.47877,38.99047],[-108.46006,38.99024],[-108.46034,38.97618],[-108.44133,38.97595],[-108.44162,38.9615],[-108.42252,38.96127],[-108.42193,38.99077],[-108.44137,38.99101],[-108.44051,39.03399],[-108.42245,39.03377],[-108.42216,39.04843],[-108.38599,39.04799],[-108.38569,39.06291],[-108.36666,39.06268],[-108.36637,39.07738],[-108.34764,39.07715],[-108.34736,39.09142],[-108.32943,39.09121],[-108.32914,39.10581],[-108.32328,39.10574],[-108.32335,39.10218],[-108.3038,39.10194],[-108.30312,39.13591],[-108.28699,39.13571],[-108.2864,39.16505],[-108.26957,39.16484],[-108.26868,39.20916],[-108.28807,39.20939],[-108.28866,39.17979],[-108.3066,39.18],[-108.30718,39.15087],[-108.32416,39.15107],[-108.32446,39.13619],[-108.39798,39.13708],[-108.3984,39.11602],[-108.42201,39.1163],[-108.42192,39.12086],[-108.44104,39.12109],[-108.44076,39.13522],[-108.51489,39.13611],[-108.51461,39.14971],[-108.53361,39.14993],[-108.53332,39.16422],[-108.58943,39.1649],[-108.58915,39.17884],[-108.60791,39.17906],[-108.60764,39.19277],[-108.70123,39.1939],[-108.70096,39.20745],[-108.79432,39.20857],[-108.79405,39.22234],[-108.81274,39.22256],[-108.81245,39.23666],[-108.86843,39.23734],[-108.86841,39.23846],[-108.93915,39.23931]]],"type":"Polygon"}}, {"properties":{"name":"Mesa County GIS Valleywide 2020","id":"MCGIS-County-Valleywide-Imagery-2020","url":"https://mcgis.mesacounty.us/imagery/rest/services/Mosaic_Datasets/City_County_2020/ImageServer/WMTS/1.0.0/WMTSCapabilities.xml","attribution":{"required":true,"text":"Mesa County GIS","url":"https://gis.mesacounty.us/"},"type":"wmts","category":"historicphoto","min_zoom":5,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-108.93915,39.23931],[-108.93946,39.22429],[-108.90208,39.22384],[-108.90237,39.20965],[-108.86906,39.20925],[-108.86938,39.19325],[-108.85033,39.19302],[-108.85061,39.17868],[-108.83196,39.17845],[-108.83224,39.16432],[-108.79393,39.16386],[-108.79422,39.14972],[-108.75686,39.14927],[-108.75744,39.12056],[-108.73853,39.12033],[-108.7388,39.10648],[-108.71529,39.10619],[-108.71557,39.09225],[-108.69671,39.09203],[-108.69699,39.07816],[-108.67837,39.07793],[-108.67867,39.06313],[-108.65778,39.06287],[-108.65864,39.01991],[-108.54548,39.01855],[-108.5455,39.01735],[-108.54336,39.01733],[-108.54342,39.01401],[-108.53397,39.0139],[-108.53414,39.00536],[-108.51821,39.00517],[-108.51825,39.00291],[-108.51519,39.00287],[-108.51515,39.0053],[-108.47848,39.00485],[-108.47877,38.99047],[-108.46006,38.99024],[-108.46034,38.97618],[-108.44133,38.97595],[-108.44162,38.9615],[-108.42252,38.96127],[-108.42193,38.99077],[-108.44137,38.99101],[-108.44051,39.03399],[-108.42245,39.03377],[-108.42216,39.04843],[-108.38599,39.04799],[-108.38569,39.06291],[-108.36666,39.06268],[-108.36637,39.07738],[-108.34764,39.07715],[-108.34736,39.09142],[-108.32943,39.09121],[-108.32914,39.10581],[-108.32328,39.10574],[-108.32335,39.10218],[-108.3038,39.10194],[-108.30312,39.13591],[-108.28699,39.13571],[-108.2864,39.16505],[-108.26957,39.16484],[-108.26868,39.20916],[-108.28807,39.20939],[-108.28866,39.17979],[-108.3066,39.18],[-108.30718,39.15087],[-108.32416,39.15107],[-108.32446,39.13619],[-108.39798,39.13708],[-108.3984,39.11602],[-108.42201,39.1163],[-108.42192,39.12086],[-108.44104,39.12109],[-108.44076,39.13522],[-108.51489,39.13611],[-108.51461,39.14971],[-108.53361,39.14993],[-108.53332,39.16422],[-108.58943,39.1649],[-108.58915,39.17884],[-108.60791,39.17906],[-108.60764,39.19277],[-108.70123,39.1939],[-108.70096,39.20745],[-108.79432,39.20857],[-108.79405,39.22234],[-108.81274,39.22256],[-108.81245,39.23666],[-108.86843,39.23734],[-108.86841,39.23846],[-108.93915,39.23931]]],"type":"Polygon"}}, @@ -600,7 +602,8 @@ {"properties":{"name":"MD Latest 6 Inch Aerial Imagery","id":"geodata.md.gov-MD_SixInchImagery","url":"https://geodata.md.gov/imap/rest/services/Imagery/MD_SixInchImagery/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"DoIT, MD iMap, MDP","url":"https://imap.maryland.gov/Pages/imagery-products.aspx"},"type":"wms","category":"photo","max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[-76.68182,38.2309],[-76.23413,37.92037],[-75.86369,37.90953],[-75.77897,37.96538],[-75.73563,37.96247],[-75.65551,37.95295],[-75.64177,37.97654],[-75.63825,37.97935],[-75.6364,37.97962],[-75.63186,37.97539],[-75.62967,37.97583],[-75.62924,37.97712],[-75.63405,37.98334],[-75.63344,37.98581],[-75.63053,37.98801],[-75.62666,37.98882],[-75.62448,37.99413],[-75.23865,38.02692],[-75.187,38.09755],[-75.09773,38.30907],[-75.08151,38.32321],[-75.04984,38.40222],[-75.04844,38.4515],[-75.3717,38.45251],[-75.69099,38.46058],[-75.78644,39.6546],[-75.78839,39.72236],[-77.72441,39.72178],[-78.16762,39.72239],[-78.29428,39.72282],[-78.31703,39.723],[-78.35335,39.7227],[-78.38831,39.72287],[-78.61083,39.72298],[-78.71839,39.72311],[-78.82587,39.72306],[-79.04114,39.72298],[-79.4775,39.72141],[-79.48316,39.53264],[-79.48977,39.20526],[-79.47184,39.20113],[-79.42394,39.22334],[-79.35897,39.27313],[-79.28936,39.29711],[-79.21177,39.36217],[-79.16147,39.38739],[-79.11015,39.43129],[-79.08959,39.46048],[-79.06929,39.4734],[-79.03058,39.46323],[-78.9602,39.43526],[-78.87437,39.52238],[-78.81472,39.56223],[-78.77953,39.63716],[-78.77599,39.64415],[-78.76599,39.64681],[-78.76717,39.64291],[-78.7791,39.62509],[-78.77927,39.62103],[-78.76341,39.61814],[-78.74773,39.62526],[-78.73768,39.62156],[-78.73472,39.61494],[-78.7394,39.61025],[-78.74232,39.61002],[-78.74704,39.60774],[-78.75026,39.61048],[-78.76146,39.61131],[-78.7785,39.60582],[-78.77858,39.60053],[-78.76601,39.58509],[-78.75618,39.57999],[-78.74455,39.57897],[-78.74245,39.58022],[-78.73979,39.58581],[-78.73425,39.58552],[-78.73283,39.5751],[-78.72494,39.56229],[-78.70734,39.55538],[-78.68979,39.54548],[-78.67571,39.53992],[-78.65361,39.53344],[-78.60589,39.53158],[-78.56581,39.51881],[-78.52718,39.5202],[-78.47002,39.51411],[-78.46272,39.51854],[-78.45788,39.52344],[-78.45805,39.53463],[-78.45037,39.53767],[-78.43655,39.53807],[-78.41732,39.54562],[-78.39483,39.58241],[-78.39355,39.58568],[-78.39535,39.59101],[-78.42504,39.60913],[-78.43195,39.61835],[-78.42925,39.62225],[-78.42204,39.62341],[-78.38741,39.60823],[-78.37638,39.60595],[-78.37149,39.61005],[-78.37071,39.6129],[-78.382,39.62334],[-78.3805,39.62787],[-78.37423,39.62899],[-78.3593,39.62414],[-78.35277,39.62704],[-78.35119,39.63012],[-78.35621,39.63597],[-78.35651,39.63838],[-78.35282,39.63957],[-78.33887,39.63676],[-78.2842,39.61911],[-78.26566,39.61673],[-78.25201,39.63921],[-78.22283,39.66042],[-78.22235,39.6623],[-78.22575,39.66614],[-78.23201,39.67178],[-78.22793,39.67495],[-78.20236,39.67588],[-78.18283,39.69348],[-78.17674,39.69517],[-78.11331,39.68024],[-78.08979,39.67099],[-78.04816,39.64066],[-78.01177,39.60258],[-78.00688,39.6002],[-77.97375,39.59795],[-77.96474,39.60509],[-77.95753,39.60675],[-77.9528,39.60324],[-77.95289,39.58538],[-77.94336,39.58353],[-77.93624,39.58677],[-77.93384,39.60959],[-77.93946,39.61455],[-77.94281,39.61511],[-77.94259,39.61756],[-77.93834,39.61848],[-77.93405,39.61782],[-77.92937,39.61349],[-77.92641,39.60618],[-77.92336,39.6041],[-77.89564,39.59597],[-77.88337,39.59775],[-77.87938,39.6006],[-77.87981,39.60562],[-77.88487,39.61468],[-77.87397,39.61256],[-77.8662,39.60817],[-77.83822,39.60463],[-77.83058,39.59154],[-77.8371,39.56891],[-77.88423,39.56375],[-77.89092,39.55733],[-77.88774,39.55091],[-77.86714,39.5388],[-77.86697,39.51497],[-77.86131,39.51285],[-77.84303,39.51556],[-77.83848,39.52007],[-77.83702,39.53072],[-77.82637,39.5286],[-77.82432,39.52364],[-77.82749,39.51642],[-77.84629,39.50662],[-77.84912,39.50238],[-77.84706,39.49775],[-77.82749,39.49218],[-77.80088,39.48821],[-77.79003,39.4902],[-77.78479,39.49652],[-77.7814,39.49838],[-77.77406,39.49864],[-77.76943,39.49735],[-77.76698,39.49513],[-77.76707,39.49238],[-77.77033,39.49053],[-77.78827,39.48609],[-77.79797,39.48185],[-77.79951,39.47516],[-77.79719,39.47079],[-77.77908,39.46247],[-77.78067,39.46118],[-77.79844,39.46294],[-77.79998,39.45727],[-77.79616,39.45266],[-77.78595,39.44637],[-77.79028,39.44309],[-77.8011,39.4413],[-77.80535,39.43762],[-77.80088,39.43172],[-77.75454,39.42207],[-77.73668,39.38928],[-77.75316,39.384],[-77.75411,39.37896],[-77.74424,39.3631],[-77.74539,39.3564],[-77.74896,39.35089],[-77.7611,39.34518],[-77.76166,39.34014],[-77.75848,39.33476],[-77.75415,39.3329],[-77.72703,39.32155],[-77.71437,39.32268],[-77.70613,39.32198],[-77.69795,39.31914],[-77.69349,39.31883],[-77.68836,39.31986],[-77.68136,39.32553],[-77.67561,39.32573],[-77.67257,39.32304],[-77.66347,39.31723],[-77.64761,39.31194],[-77.63765,39.30885],[-77.63223,39.30873],[-77.62306,39.30581],[-77.60459,39.30403],[-77.59422,39.30277],[-77.58541,39.30425],[-77.57429,39.30721],[-77.56749,39.30742],[-77.56335,39.30571],[-77.55996,39.30166],[-77.55972,39.29601],[-77.56137,39.28841],[-77.55798,39.28401],[-77.55324,39.28145],[-77.54981,39.27628],[-77.54215,39.27059],[-77.53972,39.26808],[-77.53704,39.26485],[-77.53266,39.26256],[-77.52065,39.25866],[-77.52017,39.25774],[-77.51846,39.25689],[-77.51186,39.25385],[-77.50882,39.25272],[-77.50509,39.25208],[-77.50345,39.25206],[-77.49978,39.25145],[-77.49646,39.25146],[-77.48713,39.24748],[-77.48481,39.24616],[-77.48392,39.24494],[-77.48279,39.24408],[-77.4808,39.24154],[-77.47892,39.24023],[-77.4781,39.24045],[-77.47119,39.23518],[-77.45692,39.22745],[-77.45578,39.22369],[-77.45715,39.21977],[-77.47138,39.20891],[-77.47348,39.20363],[-77.47357,39.19332],[-77.4755,39.19049],[-77.47915,39.18743],[-77.48425,39.18523],[-77.50322,39.18141],[-77.50846,39.17925],[-77.51425,39.17242],[-77.52395,39.1487],[-77.52697,39.14666],[-77.52698,39.14344],[-77.52608,39.13532],[-77.52417,39.12883],[-77.5226,39.12525],[-77.52048,39.1218],[-77.5182,39.12019],[-77.51427,39.11871],[-77.50672,39.11764],[-77.48702,39.11223],[-77.48001,39.10757],[-77.47481,39.10147],[-77.47159,39.09476],[-77.46772,39.08884],[-77.46879,39.08658],[-77.46881,39.08574],[-77.46831,39.08497],[-77.46531,39.08156],[-77.46389,39.07957],[-77.46318,39.07854],[-77.46228,39.07631],[-77.46089,39.07513],[-77.45726,39.07359],[-77.45264,39.07255],[-77.44928,39.0724],[-77.44404,39.07149],[-77.44179,39.07144],[-77.43791,39.07096],[-77.43355,39.07014],[-77.42883,39.06885],[-77.42237,39.06758],[-77.41278,39.06656],[-77.40448,39.0655],[-77.3978,39.06546],[-77.3872,39.06383],[-77.33345,39.06458],[-77.33364,39.05958],[-77.32842,39.05798],[-77.32336,39.05607],[-77.32009,39.05545],[-77.31727,39.05403],[-77.31516,39.05251],[-77.31255,39.052],[-77.3058,39.05272],[-77.29118,39.04613],[-77.2739,39.03452],[-77.25103,39.02913],[-77.24582,39.02585],[-77.24286,39.02095],[-77.24519,39.0148],[-77.25346,39.00658],[-77.2535,38.99696],[-77.25236,38.99568],[-77.24987,38.99466],[-77.24822,38.99179],[-77.24536,38.98438],[-77.24438,38.98278],[-77.2391,38.98081],[-77.23511,38.97699],[-77.23191,38.98023],[-77.2293,38.98032],[-77.22419,38.97373],[-77.2193,38.9719],[-77.21133,38.97022],[-77.20535,38.9706],[-77.20028,38.96889],[-77.17394,38.96885],[-77.17025,38.96721],[-77.16608,38.96833],[-77.1595,38.96627],[-77.14899,38.96611],[-77.14273,38.96329],[-77.13647,38.95784],[-77.12904,38.94743],[-77.12718,38.94109],[-77.11953,38.93452],[-77.04097,38.99592],[-76.90966,38.89285],[-77.03944,38.79151],[-77.04128,38.70775],[-77.10995,38.68671],[-77.12488,38.67077],[-77.12042,38.63444],[-77.24024,38.58414],[-77.29912,38.46972],[-77.28762,38.39576],[-77.26152,38.35929],[-77.2229,38.34731],[-77.02635,38.42213],[-76.94,38.27053],[-76.74465,38.20527],[-76.68182,38.2309]]],"type":"Polygon"}}, {"properties":{"name":"MD Three Inch Aerial Imagery","id":"geodata.md.gov-MD_ThreeInchImagery","url":"https://geodata.md.gov/imap/rest/services/Imagery/MD_ThreeInchImagery/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"DoIT, MD iMap, MDP","url":"http://imap.maryland.gov/Pages/imagery-products.aspx"},"type":"wms","category":"photo","min_zoom":8,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[[-76.03878,38.8262],[-76.0508,38.8264],[-76.05062,38.8371],[-76.08856,38.8371],[-76.08873,38.79376],[-76.10856,38.79363],[-76.10873,38.78236],[-76.11822,38.78256],[-76.1189,38.7574],[-76.09805,38.75766],[-76.09856,38.72386],[-76.05333,38.72382],[-76.0529,38.73537],[-76.03166,38.73484],[-76.03148,38.77754],[-76.01951,38.77744],[-76.01947,38.79383],[-76.03869,38.79403],[-76.03878,38.8262]]],[[[-76.47343,38.99164],[-76.48381,38.9917],[-76.48364,39.00264],[-76.51558,39.00292],[-76.51555,38.99744],[-76.52615,38.99749],[-76.52617,38.99199],[-76.53668,38.992],[-76.53679,38.9865],[-76.54735,38.98658],[-76.54748,38.95909],[-76.53696,38.95906],[-76.53703,38.95355],[-76.52647,38.95352],[-76.52653,38.948],[-76.51598,38.94796],[-76.51602,38.937],[-76.4948,38.93691],[-76.49506,38.94239],[-76.4736,38.94212],[-76.47368,38.94759],[-76.46313,38.94753],[-76.46278,38.98063],[-76.47351,38.9807],[-76.47343,38.99164]]],[[[-77.20219,39.1685],[-77.21279,39.16848],[-77.21277,39.17399],[-77.22339,39.17397],[-77.22342,39.16843],[-77.23397,39.16838],[-77.23391,39.15739],[-77.24453,39.1574],[-77.24449,39.14644],[-77.255,39.14642],[-77.25496,39.12445],[-77.25981,39.12443],[-77.25981,39.11336],[-77.24436,39.11341],[-77.24429,39.10246],[-77.23374,39.10247],[-77.23376,39.09701],[-77.21256,39.09703],[-77.21256,39.10256],[-77.20198,39.10256],[-77.20194,39.06963],[-77.19144,39.06965],[-77.19136,39.0641],[-77.18078,39.06415],[-77.18071,39.05315],[-77.14904,39.05318],[-77.14898,39.04775],[-77.12784,39.04775],[-77.12791,39.05322],[-77.10679,39.05327],[-77.10686,39.09172],[-77.11743,39.09172],[-77.11744,39.10819],[-77.13863,39.10816],[-77.13861,39.10268],[-77.14915,39.10268],[-77.14917,39.11368],[-77.15973,39.11363],[-77.15975,39.12465],[-77.17037,39.1246],[-77.17039,39.1465],[-77.15984,39.14655],[-77.15986,39.15208],[-77.17037,39.15204],[-77.17041,39.16306],[-77.20215,39.16299],[-77.20219,39.1685]]],[[[-76.14918,39.62678],[-76.08528,39.62631],[-76.084,39.72513],[-76.02002,39.72462],[-76.02093,39.65874],[-75.78654,39.6566],[-75.789,39.51383],[-75.83152,39.51425],[-75.83044,39.58013],[-75.95814,39.58133],[-76.00651,39.54165],[-76.07938,39.54218],[-76.11457,39.59531],[-76.14918,39.62678]]],[[[-76.95004,39.60737],[-76.98225,39.6074],[-76.98232,39.62437],[-77.01193,39.62432],[-77.01182,39.60666],[-77.02251,39.60666],[-77.02249,39.59698],[-77.04854,39.59694],[-77.0486,39.59378],[-77.05444,39.59378],[-77.05437,39.54196],[-77.02246,39.542],[-77.02248,39.53651],[-77.01183,39.53652],[-77.0118,39.53102],[-77.0012,39.53104],[-77.00116,39.52002],[-76.97985,39.52],[-76.97985,39.53099],[-76.96923,39.53096],[-76.96923,39.53638],[-76.95858,39.53645],[-76.95854,39.5474],[-76.95009,39.5474],[-76.95004,39.60737]]]],"type":"MultiPolygon"}}, {"properties":{"name":"Maine Orthoimagery Program (2021)","id":"Maine_2021","url":"https://gis.maine.gov/arcgis/services/imageryBaseMapsEarthCover/orthoRegional2021/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"Maine Orthoimagery Program","url":"https://www.maine.gov/geolib/programs/ortho/index.html"},"type":"wms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[[-70.56336,43.87408],[-70.51849,43.87401],[-70.51831,43.86728],[-70.48103,43.86773],[-70.4797,43.81322],[-70.56373,43.81279],[-70.56336,43.87408]]],[[[-70.23821,43.63767],[-70.25188,43.62403],[-70.27497,43.61701],[-70.28376,43.59328],[-70.26504,43.58673],[-70.27868,43.57307],[-70.27825,43.5545],[-70.23358,43.53312],[-70.18908,43.56254],[-70.20641,43.62328],[-70.22201,43.63785],[-70.23821,43.63767]]],[[[-70.35347,43.80181],[-70.29399,43.85315],[-70.18056,43.78011],[-70.16251,43.72949],[-70.22989,43.685],[-70.27668,43.69803],[-70.28643,43.71818],[-70.319,43.71781],[-70.36631,43.75102],[-70.35347,43.80181]]]],"type":"MultiPolygon"}}, -{"properties":{"name":"Oakland County Orthoimagery (2020)","id":"Oakland_MI_2020","url":"https://gisservices.oakgov.com/arcgis/rest/services/ImageServices/EnterpriseOrthoTC2020ImageService/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Oakland County","url":"https://accessoakland-oakgov.opendata.arcgis.com/"},"type":"wms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-83.08825,42.89704],[-83.27543,42.89898],[-83.27556,42.89174],[-83.46273,42.89337],[-83.46284,42.88613],[-83.62046,42.88726],[-83.62053,42.88001],[-83.69934,42.8805],[-83.70153,42.67766],[-83.69169,42.67764],[-83.69302,42.55447],[-83.68325,42.55442],[-83.68459,42.43126],[-83.67481,42.43119],[-83.67488,42.42395],[-83.48911,42.42267],[-83.48901,42.42991],[-83.29345,42.42822],[-83.29333,42.43548],[-83.07819,42.43324],[-83.07804,42.44049],[-83.06826,42.44038],[-83.06663,42.52007],[-83.07639,42.52017],[-83.07339,42.66504],[-83.08319,42.66515],[-83.08005,42.81725],[-83.08988,42.81737],[-83.08825,42.89704]]],"type":"Polygon"}}, +{"properties":{"name":"Oakland County Orthoimagery (2020)","id":"Oakland_MI_2020","url":"https://gisservices.oakgov.com/arcgis/rest/services/ImageServices/EnterpriseOrthoTC2020ImageService/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Oakland County","url":"https://accessoakland-oakgov.opendata.arcgis.com/"},"type":"wms","category":"historicphoto","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-83.08825,42.89704],[-83.27543,42.89898],[-83.27556,42.89174],[-83.46273,42.89337],[-83.46284,42.88613],[-83.62046,42.88726],[-83.62053,42.88001],[-83.69934,42.8805],[-83.70153,42.67766],[-83.69169,42.67764],[-83.69302,42.55447],[-83.68325,42.55442],[-83.68459,42.43126],[-83.67481,42.43119],[-83.67488,42.42395],[-83.48911,42.42267],[-83.48901,42.42991],[-83.29345,42.42822],[-83.29333,42.43548],[-83.07819,42.43324],[-83.07804,42.44049],[-83.06826,42.44038],[-83.06663,42.52007],[-83.07639,42.52017],[-83.07339,42.66504],[-83.08319,42.66515],[-83.08005,42.81725],[-83.08988,42.81737],[-83.08825,42.89704]]],"type":"Polygon"}}, +{"properties":{"name":"Oakland County Orthoimagery (2023)","id":"Oakland_MI_2023","url":"https://gisservices.oakgov.com/arcgis/rest/services/ImageServices/EnterpriseOrthoTC2023ImageService/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Oakland County","url":"https://accessoakland-oakgov.opendata.arcgis.com/"},"type":"wms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-83.08825,42.89704],[-83.27543,42.89898],[-83.27556,42.89174],[-83.46273,42.89337],[-83.46284,42.88613],[-83.62046,42.88726],[-83.62053,42.88001],[-83.69934,42.8805],[-83.70153,42.67766],[-83.69169,42.67764],[-83.69302,42.55447],[-83.68325,42.55442],[-83.68459,42.43126],[-83.67481,42.43119],[-83.67488,42.42395],[-83.48911,42.42267],[-83.48901,42.42991],[-83.29345,42.42822],[-83.29333,42.43548],[-83.07819,42.43324],[-83.07804,42.44049],[-83.06826,42.44038],[-83.06663,42.52007],[-83.07639,42.52017],[-83.07339,42.66504],[-83.08319,42.66515],[-83.08005,42.81725],[-83.08988,42.81737],[-83.08825,42.89704]]],"type":"Polygon"}}, {"properties":{"name":"Dakota County GIS 2017 Fall Leaf-Off 6-Inch","id":"DCGIS-County-Imagery-2017-Fall-Leaf-Off-6-Inch","url":"https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2017AirPhotoLeafOff6Inch/ImageServer/WMSServer?LAYERS=2017AirPhotoLeafOff6Inch:None&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":false,"text":"Dakota County GIS","url":"https://dakotacounty.us"},"type":"wms","category":"photo","min_zoom":4,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-93.32967,44.79107],[-93.32964,44.63037],[-93.28189,44.63074],[-93.28169,44.47194],[-93.28176,44.47137],[-93.0395,44.47103],[-93.03924,44.51125],[-92.91932,44.51049],[-92.91899,44.54325],[-92.79268,44.54324],[-92.7926,44.62971],[-92.73207,44.62948],[-92.73122,44.71411],[-92.80342,44.74652],[-92.82767,44.75056],[-92.85209,44.74695],[-92.85959,44.75359],[-92.87724,44.77283],[-92.88149,44.77492],[-92.9049,44.77408],[-92.92808,44.78111],[-92.93969,44.77563],[-92.94843,44.76786],[-92.95859,44.76724],[-92.98604,44.77501],[-92.99291,44.77517],[-93.00306,44.77206],[-93.01685,44.77635],[-93.02153,44.79431],[-93.00523,44.81541],[-93.0119,44.83657],[-93.00859,44.85652],[-93.01041,44.86586],[-93.02074,44.89279],[-93.0309,44.8967],[-93.04083,44.90391],[-93.04445,44.91514],[-93.04725,44.9195],[-93.04724,44.92318],[-93.12863,44.92335],[-93.12882,44.91965],[-93.13257,44.91243],[-93.1641,44.89048],[-93.18289,44.8872],[-93.20075,44.86486],[-93.20325,44.85263],[-93.22179,44.83825],[-93.25188,44.81146],[-93.28177,44.80611],[-93.30453,44.7945],[-93.32645,44.79245],[-93.32961,44.79107],[-93.32967,44.79107]]],"type":"Polygon"}}, {"properties":{"name":"Dakota County GIS 2019 Spring Leaf-Off 6-Inch","id":"DCGIS-County-Imagery-2019-Spring-Leaf-Off-6-Inch","url":"https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2019AirPhotoLeafOff6Inch_Spring/ImageServer/WMSServer?LAYERS=2019AirPhotoLeafOff6Inch_Spring:default&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":false,"text":"Dakota County GIS","url":"https://dakotacounty.us"},"type":"wms","category":"photo","min_zoom":5,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-93.32967,44.79107],[-93.32964,44.63037],[-93.28189,44.63074],[-93.28169,44.47194],[-93.28176,44.47137],[-93.0395,44.47103],[-93.03924,44.51125],[-92.91932,44.51049],[-92.91899,44.54325],[-92.79268,44.54324],[-92.7926,44.62971],[-92.73207,44.62948],[-92.73122,44.71411],[-92.80342,44.74652],[-92.82767,44.75056],[-92.85209,44.74695],[-92.85959,44.75359],[-92.87724,44.77283],[-92.88149,44.77492],[-92.9049,44.77408],[-92.92808,44.78111],[-92.93969,44.77563],[-92.94843,44.76786],[-92.95859,44.76724],[-92.98604,44.77501],[-92.99291,44.77517],[-93.00306,44.77206],[-93.01685,44.77635],[-93.02153,44.79431],[-93.00523,44.81541],[-93.0119,44.83657],[-93.00859,44.85652],[-93.01041,44.86586],[-93.02074,44.89279],[-93.0309,44.8967],[-93.04083,44.90391],[-93.04445,44.91514],[-93.04725,44.9195],[-93.04724,44.92318],[-93.12863,44.92335],[-93.12882,44.91965],[-93.13257,44.91243],[-93.1641,44.89048],[-93.18289,44.8872],[-93.20075,44.86486],[-93.20325,44.85263],[-93.22179,44.83825],[-93.25188,44.81146],[-93.28177,44.80611],[-93.30453,44.7945],[-93.32645,44.79245],[-93.32961,44.79107],[-93.32967,44.79107]]],"type":"Polygon"}}, {"properties":{"name":"Hennepin County Orthoimagery (2020)","id":"Hennepin_Ortho_2020","url":"https://gis.hennepin.us/arcgis/services/Imagery/UTM_Aerial_2020/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"Hennepin County GIS","url":"https://gis-hennepin.hub.arcgis.com/"},"type":"wms","category":"historicphoto","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-93.20054,44.86147],[-93.1781,44.8865],[-93.17243,44.88651],[-93.17245,44.89458],[-93.18381,44.89456],[-93.18382,44.8986],[-93.18951,44.89859],[-93.18952,44.90666],[-93.19521,44.90665],[-93.19534,44.947],[-93.2018,44.94696],[-93.20189,44.95506],[-93.20673,44.95505],[-93.20702,45.03576],[-93.28101,45.03561],[-93.28115,45.06788],[-93.27548,45.06789],[-93.27566,45.10824],[-93.28136,45.10823],[-93.28137,45.10984],[-93.28426,45.10984],[-93.28427,45.11226],[-93.28708,45.11225],[-93.28711,45.11629],[-93.2928,45.11629],[-93.29289,45.13241],[-93.29858,45.1324],[-93.2986,45.13643],[-93.3043,45.13642],[-93.30491,45.14448],[-93.31005,45.14447],[-93.31007,45.14851],[-93.32147,45.14848],[-93.3215,45.15251],[-93.3272,45.1525],[-93.32723,45.15653],[-93.33863,45.1565],[-93.33866,45.16053],[-93.34436,45.16051],[-93.3444,45.16762],[-93.34599,45.16762],[-93.34599,45.16858],[-93.35011,45.16857],[-93.35014,45.1726],[-93.35585,45.17258],[-93.35586,45.17662],[-93.36158,45.17661],[-93.3616,45.18064],[-93.37301,45.18061],[-93.37304,45.18464],[-93.37874,45.18462],[-93.37877,45.18865],[-93.39018,45.18863],[-93.39021,45.19265],[-93.39591,45.19263],[-93.39594,45.19642],[-93.40762,45.1964],[-93.40767,45.20066],[-93.41309,45.20064],[-93.41315,45.20871],[-93.41886,45.20869],[-93.41892,45.21676],[-93.42463,45.21674],[-93.42466,45.22077],[-93.4532,45.22066],[-93.45323,45.2247],[-93.45894,45.22468],[-93.45898,45.22871],[-93.48753,45.22859],[-93.48756,45.23262],[-93.49327,45.2326],[-93.49334,45.24067],[-93.49905,45.24065],[-93.49909,45.24469],[-93.5048,45.24466],[-93.50484,45.24869],[-93.52768,45.24859],[-93.52761,45.24052],[-93.5219,45.24056],[-93.52187,45.23651],[-93.52757,45.23648],[-93.5275,45.22841],[-93.53321,45.22839],[-93.53325,45.23242],[-93.53896,45.2324],[-93.539,45.23643],[-93.54471,45.2364],[-93.54467,45.23237],[-93.55037,45.23234],[-93.55034,45.22831],[-93.56176,45.22825],[-93.56172,45.22422],[-93.57313,45.22417],[-93.5731,45.22012],[-93.59593,45.22001],[-93.59585,45.21194],[-93.60155,45.21191],[-93.6016,45.21594],[-93.61302,45.21588],[-93.61298,45.21185],[-93.64722,45.21166],[-93.64713,45.20359],[-93.65284,45.20355],[-93.65279,45.19952],[-93.6585,45.19949],[-93.65846,45.19545],[-93.66416,45.19542],[-93.66407,45.18735],[-93.65836,45.18739],[-93.65831,45.18335],[-93.65261,45.18338],[-93.65256,45.17935],[-93.64686,45.17938],[-93.64682,45.17535],[-93.64111,45.17538],[-93.64102,45.16731],[-93.64672,45.16728],[-93.64667,45.16324],[-93.65238,45.16321],[-93.65233,45.15917],[-93.65803,45.15914],[-93.65799,45.15511],[-93.6865,45.15494],[-93.68641,45.14687],[-93.69211,45.14683],[-93.69206,45.1428],[-93.69776,45.14276],[-93.69771,45.13873],[-93.70341,45.13869],[-93.70336,45.13466],[-93.70906,45.13462],[-93.70896,45.12655],[-93.71409,45.12652],[-93.71404,45.12245],[-93.72031,45.12241],[-93.72026,45.11841],[-93.72596,45.11838],[-93.72581,45.10627],[-93.7315,45.10623],[-93.7313,45.09009],[-93.73699,45.09006],[-93.73694,45.08602],[-93.74264,45.08599],[-93.74258,45.08195],[-93.75397,45.08188],[-93.75405,45.08591],[-93.76542,45.08584],[-93.7652,45.0697],[-93.7709,45.06966],[-93.76851,44.8903],[-93.60927,44.89126],[-93.60925,44.88905],[-93.52439,44.88947],[-93.52365,44.80364],[-93.43786,44.80979],[-93.34477,44.78525],[-93.24592,44.81373],[-93.20054,44.86147]]],"type":"Polygon"}}, @@ -633,13 +636,25 @@ {"properties":{"name":"Cattaraugus County Orthoimagery (2023)","id":"Cattaraugus_NY_2023","url":"https://maps2.cattco.org/arcgiswebadaptor/rest/services/AerialPhotos/MapServer/export?f=image&format=jpg&layers=show:44&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Cattaraugus County Real Property Services","url":"https://www.cattco.org/real-property-and-gis"},"type":"wms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-79.06186,42.5468],[-79.06174,41.99622],[-78.29557,41.99625],[-78.2955,42.53232],[-78.45273,42.53234],[-78.45271,42.5468],[-78.49202,42.54682],[-78.49204,42.53231],[-78.55096,42.53232],[-78.55097,42.51783],[-78.62955,42.51783],[-78.62954,42.50335],[-78.66885,42.50334],[-78.66883,42.48887],[-78.74745,42.48885],[-78.74741,42.4744],[-78.8064,42.47436],[-78.80635,42.45992],[-78.8457,42.45988],[-78.84564,42.44544],[-78.88487,42.44539],[-78.88494,42.45993],[-78.92416,42.45988],[-78.92423,42.47443],[-78.94379,42.47437],[-78.94387,42.50341],[-78.96343,42.50334],[-78.96352,42.51789],[-78.98307,42.51783],[-78.98316,42.54688],[-79.06186,42.5468]]],"type":"Polygon"}}, {"properties":{"name":"NYSDOP Latest Orthoimagery (Natural Color)","id":"NYSDOP_Latest","url":"https://orthos.its.ny.gov/arcgis/services/wms/Latest/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0,1,2,3&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"New York State Statewide Digital Orthoimagery Program","url":"http://gis.ny.gov/gateway/mg/index.html"},"type":"wms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-79.76188,42.27134],[-79.76182,41.99884],[-77.39903,42.00004],[-77.11364,41.99978],[-76.81641,42.00237],[-75.76266,41.9979],[-75.35964,41.99953],[-75.35186,41.9965],[-75.34686,41.99546],[-75.34119,41.99315],[-75.33767,41.98733],[-75.33748,41.98471],[-75.34211,41.97294],[-75.34065,41.9716],[-75.32975,41.96892],[-75.32784,41.96785],[-75.3259,41.96464],[-75.32276,41.96209],[-75.3198,41.96058],[-75.31845,41.957],[-75.31807,41.95395],[-75.31533,41.95269],[-75.31329,41.95017],[-75.3077,41.9492],[-75.30273,41.94796],[-75.30096,41.9482],[-75.30173,41.95123],[-75.30167,41.95289],[-75.29991,41.95418],[-75.29544,41.95491],[-75.29176,41.9534],[-75.2914,41.95201],[-75.29157,41.94545],[-75.28879,41.94256],[-75.28536,41.94216],[-75.27888,41.93887],[-75.27896,41.93686],[-75.27686,41.93367],[-75.2766,41.92224],[-75.26725,41.90668],[-75.26729,41.90279],[-75.273,41.89643],[-75.2715,41.88717],[-75.26034,41.88391],[-75.25703,41.87621],[-75.26321,41.8718],[-75.26433,41.86873],[-75.25918,41.86205],[-75.25055,41.86179],[-75.2439,41.86659],[-75.23991,41.86681],[-75.23236,41.85972],[-75.22695,41.85783],[-75.22313,41.85758],[-75.21541,41.86716],[-75.20536,41.8701],[-75.19408,41.86748],[-75.18949,41.86205],[-75.18588,41.85972],[-75.18223,41.86195],[-75.17914,41.87004],[-75.17592,41.87276],[-75.16996,41.8717],[-75.1676,41.8679],[-75.16927,41.8602],[-75.16425,41.85118],[-75.15532,41.84818],[-75.14099,41.85269],[-75.13091,41.84514],[-75.12692,41.84511],[-75.12249,41.8462],[-75.11666,41.84581],[-75.11361,41.84306],[-75.11301,41.83827],[-75.11511,41.8289],[-75.11331,41.82301],[-75.11172,41.82218],[-75.09979,41.81847],[-75.09756,41.81611],[-75.09014,41.81172],[-75.0855,41.81163],[-75.08078,41.8147],[-75.07576,41.81559],[-75.07233,41.81454],[-75.07138,41.81179],[-75.07306,41.80469],[-75.07743,41.79787],[-75.0825,41.79643],[-75.08868,41.79771],[-75.09172,41.79701],[-75.09988,41.78994],[-75.10323,41.78504],[-75.10451,41.77275],[-75.10181,41.76942],[-75.09597,41.76843],[-75.07494,41.7716],[-75.0707,41.76785],[-75.0658,41.76718],[-75.06078,41.76449],[-75.05332,41.753],[-75.05284,41.74529],[-75.05477,41.73629],[-75.05344,41.72626],[-75.04984,41.71669],[-75.04945,41.71399],[-75.05186,41.71137],[-75.06293,41.71313],[-75.06739,41.71281],[-75.06924,41.71002],[-75.06804,41.70637],[-75.06001,41.70022],[-75.05409,41.69173],[-75.05095,41.68003],[-75.0598,41.67339],[-75.05825,41.66935],[-75.05447,41.66826],[-75.04992,41.66227],[-75.04842,41.64668],[-75.0492,41.64322],[-75.04889,41.6362],[-75.0443,41.61965],[-75.04456,41.61669],[-75.04778,41.61547],[-75.05409,41.61865],[-75.06035,41.61762],[-75.06194,41.61554],[-75.05984,41.61172],[-75.06061,41.60989],[-75.07113,41.61005],[-75.07452,41.60829],[-75.07477,41.60633],[-75.06924,41.6019],[-75.05881,41.59028],[-75.05271,41.58794],[-75.04585,41.58223],[-75.04336,41.5734],[-75.03645,41.56617],[-75.02834,41.56431],[-75.01941,41.55336],[-75.01555,41.54337],[-75.02297,41.54161],[-75.02512,41.53939],[-75.02418,41.53345],[-75.01778,41.53229],[-75.0122,41.53004],[-75.00298,41.52336],[-75.00074,41.51876],[-75.00426,41.50919],[-75.0022,41.50752],[-74.9931,41.50851],[-74.98684,41.5088],[-74.98396,41.50623],[-74.98216,41.49832],[-74.98615,41.48569],[-74.98315,41.48019],[-74.96058,41.47621],[-74.95461,41.47717],[-74.94414,41.48354],[-74.93285,41.48244],[-74.92624,41.47759],[-74.91371,41.4763],[-74.90925,41.4728],[-74.90805,41.46498],[-74.90642,41.46032],[-74.89719,41.45865],[-74.89127,41.45659],[-74.88886,41.45144],[-74.89479,41.44655],[-74.89659,41.44202],[-74.89607,41.43954],[-74.88848,41.43771],[-74.86269,41.44427],[-74.85307,41.44314],[-74.84445,41.43613],[-74.83389,41.43044],[-74.82668,41.43098],[-74.82204,41.43768],[-74.81376,41.4425],[-74.80647,41.44253],[-74.80089,41.43819],[-74.79969,41.43127],[-74.79527,41.42358],[-74.78964,41.42172],[-74.77106,41.42641],[-74.76201,41.42307],[-74.75595,41.42403],[-74.75132,41.42796],[-74.74089,41.4314],[-74.73742,41.43008],[-74.73484,41.42612],[-74.73501,41.42172],[-74.73737,41.41641],[-74.74119,41.41116],[-74.74184,41.40659],[-74.73673,41.3989],[-74.73222,41.39629],[-74.7181,41.39429],[-74.71407,41.39114],[-74.70836,41.37903],[-74.69188,41.36863],[-74.68862,41.36264],[-74.69544,41.35748],[-74.6739,41.34846],[-74.45126,41.24529],[-74.36757,41.20371],[-74.28303,41.1647],[-73.99489,41.03877],[-73.91155,41.00125],[-73.90494,40.99755],[-73.89404,40.99674],[-73.89936,40.9729],[-73.9603,40.83226],[-74.01464,40.75616],[-74.02691,40.70576],[-74.05026,40.66189],[-74.04218,40.56446],[-73.94366,40.56452],[-73.94342,40.53747],[-73.75959,40.57708],[-73.55855,40.57192],[-73.35211,40.61855],[-73.26119,40.61741],[-73.05794,40.66052],[-72.85135,40.7317],[-72.4423,40.8402],[-71.85588,41.05298],[-71.84582,41.07466],[-71.85588,41.08062],[-71.88966,41.08766],[-72.13324,41.127],[-72.16656,41.05349],[-72.26839,41.04973],[-72.27917,41.08441],[-72.31582,41.09524],[-71.90594,41.29243],[-71.92343,41.30666],[-71.93924,41.30774],[-72.02651,41.27797],[-72.04848,41.25914],[-72.21449,41.18238],[-72.35866,41.13973],[-72.41859,41.09308],[-72.45811,41.08928],[-72.4768,41.06328],[-72.60842,40.99252],[-72.91642,40.96477],[-73.06681,40.9749],[-73.11979,40.9791],[-73.6314,40.95968],[-73.65976,40.98856],[-73.65726,40.99036],[-73.65788,40.99192],[-73.65932,40.99365],[-73.65966,40.99522],[-73.65932,40.99703],[-73.65992,41.0007],[-73.65551,41.0125],[-73.72826,41.1005],[-73.48283,41.21283],[-73.55132,41.29548],[-73.52141,41.61907],[-73.48717,42.0506],[-73.50863,42.08707],[-73.26493,42.74602],[-73.27641,42.74588],[-73.29083,42.80245],[-73.27881,42.83356],[-73.24069,43.5324],[-73.28097,43.64222],[-73.39586,43.82371],[-73.37769,43.83626],[-73.37872,43.87637],[-73.40858,43.91422],[-73.40687,44.00985],[-73.43376,44.04947],[-73.38014,44.14868],[-73.31932,44.26561],[-73.33271,44.33917],[-73.32098,44.42567],[-73.36556,44.4957],[-73.39739,44.64471],[-73.37008,44.67946],[-73.37296,44.73463],[-73.35801,44.77623],[-73.34852,44.9283],[-73.34035,45.02989],[-73.47931,45.03108],[-73.47948,45.02016],[-73.89722,45.02307],[-73.89748,45.0119],[-74.77896,45.01336],[-74.77942,45.03542],[-74.91712,45.03485],[-75.30905,44.84748],[-75.44646,44.75878],[-75.61785,44.63719],[-75.76409,44.53671],[-75.87758,44.43614],[-75.95502,44.39378],[-76.03687,44.36685],[-76.20939,44.32973],[-76.21051,44.21478],[-76.37002,44.2145],[-76.37067,44.15263],[-76.43992,44.10495],[-76.4186,43.93119],[-76.46675,43.90893],[-76.47178,43.88408],[-76.40064,43.86128],[-76.34602,43.8618],[-76.31152,43.8675],[-76.30649,43.82915],[-76.24038,43.74147],[-76.23616,43.53596],[-76.41596,43.52619],[-76.89738,43.29656],[-76.92975,43.28519],[-77.14282,43.29094],[-77.41604,43.27842],[-77.55144,43.23688],[-77.71369,43.32734],[-77.76124,43.34509],[-78.04606,43.37827],[-78.45869,43.37841],[-78.63091,43.36634],[-79.0652,43.26521],[-79.06358,43.0567],[-79.04118,43.05663],[-79.03953,42.98771],[-78.90857,42.92862],[-78.9053,42.8814],[-78.85521,42.78921],[-79.05085,42.69429],[-79.1519,42.56753],[-79.3541,42.49612],[-79.39533,42.47485],[-79.48628,42.40078],[-79.76188,42.27134]]],"type":"Polygon"}}, {"properties":{"name":"NYSDOP Latest Orthoimagery (Infrared)","id":"NYSDOP_Latest_CIR","url":"https://orthos.its.ny.gov/arcgis/services/wms/Latest_cir/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0,1,2,3&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"New York State Statewide Digital Orthoimagery Program","url":"http://gis.ny.gov/gateway/mg/index.html"},"type":"wms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-79.76188,42.27134],[-79.76182,41.99884],[-77.39903,42.00004],[-77.11364,41.99978],[-76.81641,42.00237],[-75.76266,41.9979],[-75.35964,41.99953],[-75.35186,41.9965],[-75.34686,41.99546],[-75.34119,41.99315],[-75.33767,41.98733],[-75.33748,41.98471],[-75.34211,41.97294],[-75.34065,41.9716],[-75.32975,41.96892],[-75.32784,41.96785],[-75.3259,41.96464],[-75.32276,41.96209],[-75.3198,41.96058],[-75.31845,41.957],[-75.31807,41.95395],[-75.31533,41.95269],[-75.31329,41.95017],[-75.3077,41.9492],[-75.30273,41.94796],[-75.30096,41.9482],[-75.30173,41.95123],[-75.30167,41.95289],[-75.29991,41.95418],[-75.29544,41.95491],[-75.29176,41.9534],[-75.2914,41.95201],[-75.29157,41.94545],[-75.28879,41.94256],[-75.28536,41.94216],[-75.27888,41.93887],[-75.27896,41.93686],[-75.27686,41.93367],[-75.2766,41.92224],[-75.26725,41.90668],[-75.26729,41.90279],[-75.273,41.89643],[-75.2715,41.88717],[-75.26034,41.88391],[-75.25703,41.87621],[-75.26321,41.8718],[-75.26433,41.86873],[-75.25918,41.86205],[-75.25055,41.86179],[-75.2439,41.86659],[-75.23991,41.86681],[-75.23236,41.85972],[-75.22695,41.85783],[-75.22313,41.85758],[-75.21541,41.86716],[-75.20536,41.8701],[-75.19408,41.86748],[-75.18949,41.86205],[-75.18588,41.85972],[-75.18223,41.86195],[-75.17914,41.87004],[-75.17592,41.87276],[-75.16996,41.8717],[-75.1676,41.8679],[-75.16927,41.8602],[-75.16425,41.85118],[-75.15532,41.84818],[-75.14099,41.85269],[-75.13091,41.84514],[-75.12692,41.84511],[-75.12249,41.8462],[-75.11666,41.84581],[-75.11361,41.84306],[-75.11301,41.83827],[-75.11511,41.8289],[-75.11331,41.82301],[-75.11172,41.82218],[-75.09979,41.81847],[-75.09756,41.81611],[-75.09014,41.81172],[-75.0855,41.81163],[-75.08078,41.8147],[-75.07576,41.81559],[-75.07233,41.81454],[-75.07138,41.81179],[-75.07306,41.80469],[-75.07743,41.79787],[-75.0825,41.79643],[-75.08868,41.79771],[-75.09172,41.79701],[-75.09988,41.78994],[-75.10323,41.78504],[-75.10451,41.77275],[-75.10181,41.76942],[-75.09597,41.76843],[-75.07494,41.7716],[-75.0707,41.76785],[-75.0658,41.76718],[-75.06078,41.76449],[-75.05332,41.753],[-75.05284,41.74529],[-75.05477,41.73629],[-75.05344,41.72626],[-75.04984,41.71669],[-75.04945,41.71399],[-75.05186,41.71137],[-75.06293,41.71313],[-75.06739,41.71281],[-75.06924,41.71002],[-75.06804,41.70637],[-75.06001,41.70022],[-75.05409,41.69173],[-75.05095,41.68003],[-75.0598,41.67339],[-75.05825,41.66935],[-75.05447,41.66826],[-75.04992,41.66227],[-75.04842,41.64668],[-75.0492,41.64322],[-75.04889,41.6362],[-75.0443,41.61965],[-75.04456,41.61669],[-75.04778,41.61547],[-75.05409,41.61865],[-75.06035,41.61762],[-75.06194,41.61554],[-75.05984,41.61172],[-75.06061,41.60989],[-75.07113,41.61005],[-75.07452,41.60829],[-75.07477,41.60633],[-75.06924,41.6019],[-75.05881,41.59028],[-75.05271,41.58794],[-75.04585,41.58223],[-75.04336,41.5734],[-75.03645,41.56617],[-75.02834,41.56431],[-75.01941,41.55336],[-75.01555,41.54337],[-75.02297,41.54161],[-75.02512,41.53939],[-75.02418,41.53345],[-75.01778,41.53229],[-75.0122,41.53004],[-75.00298,41.52336],[-75.00074,41.51876],[-75.00426,41.50919],[-75.0022,41.50752],[-74.9931,41.50851],[-74.98684,41.5088],[-74.98396,41.50623],[-74.98216,41.49832],[-74.98615,41.48569],[-74.98315,41.48019],[-74.96058,41.47621],[-74.95461,41.47717],[-74.94414,41.48354],[-74.93285,41.48244],[-74.92624,41.47759],[-74.91371,41.4763],[-74.90925,41.4728],[-74.90805,41.46498],[-74.90642,41.46032],[-74.89719,41.45865],[-74.89127,41.45659],[-74.88886,41.45144],[-74.89479,41.44655],[-74.89659,41.44202],[-74.89607,41.43954],[-74.88848,41.43771],[-74.86269,41.44427],[-74.85307,41.44314],[-74.84445,41.43613],[-74.83389,41.43044],[-74.82668,41.43098],[-74.82204,41.43768],[-74.81376,41.4425],[-74.80647,41.44253],[-74.80089,41.43819],[-74.79969,41.43127],[-74.79527,41.42358],[-74.78964,41.42172],[-74.77106,41.42641],[-74.76201,41.42307],[-74.75595,41.42403],[-74.75132,41.42796],[-74.74089,41.4314],[-74.73742,41.43008],[-74.73484,41.42612],[-74.73501,41.42172],[-74.73737,41.41641],[-74.74119,41.41116],[-74.74184,41.40659],[-74.73673,41.3989],[-74.73222,41.39629],[-74.7181,41.39429],[-74.71407,41.39114],[-74.70836,41.37903],[-74.69188,41.36863],[-74.68862,41.36264],[-74.69544,41.35748],[-74.6739,41.34846],[-74.45126,41.24529],[-74.36757,41.20371],[-74.28303,41.1647],[-73.99489,41.03877],[-73.91155,41.00125],[-73.90494,40.99755],[-73.89404,40.99674],[-73.89936,40.9729],[-73.9603,40.83226],[-74.01464,40.75616],[-74.02691,40.70576],[-74.05026,40.66189],[-74.04218,40.56446],[-73.94366,40.56452],[-73.94342,40.53747],[-73.75959,40.57708],[-73.55855,40.57192],[-73.35211,40.61855],[-73.26119,40.61741],[-73.05794,40.66052],[-72.85135,40.7317],[-72.4423,40.8402],[-71.85588,41.05298],[-71.84582,41.07466],[-71.85588,41.08062],[-71.88966,41.08766],[-72.13324,41.127],[-72.16656,41.05349],[-72.26839,41.04973],[-72.27917,41.08441],[-72.31582,41.09524],[-71.90594,41.29243],[-71.92343,41.30666],[-71.93924,41.30774],[-72.02651,41.27797],[-72.04848,41.25914],[-72.21449,41.18238],[-72.35866,41.13973],[-72.41859,41.09308],[-72.45811,41.08928],[-72.4768,41.06328],[-72.60842,40.99252],[-72.91642,40.96477],[-73.06681,40.9749],[-73.11979,40.9791],[-73.6314,40.95968],[-73.65976,40.98856],[-73.65726,40.99036],[-73.65788,40.99192],[-73.65932,40.99365],[-73.65966,40.99522],[-73.65932,40.99703],[-73.65992,41.0007],[-73.65551,41.0125],[-73.72826,41.1005],[-73.48283,41.21283],[-73.55132,41.29548],[-73.52141,41.61907],[-73.48717,42.0506],[-73.50863,42.08707],[-73.26493,42.74602],[-73.27641,42.74588],[-73.29083,42.80245],[-73.27881,42.83356],[-73.24069,43.5324],[-73.28097,43.64222],[-73.39586,43.82371],[-73.37769,43.83626],[-73.37872,43.87637],[-73.40858,43.91422],[-73.40687,44.00985],[-73.43376,44.04947],[-73.38014,44.14868],[-73.31932,44.26561],[-73.33271,44.33917],[-73.32098,44.42567],[-73.36556,44.4957],[-73.39739,44.64471],[-73.37008,44.67946],[-73.37296,44.73463],[-73.35801,44.77623],[-73.34852,44.9283],[-73.34035,45.02989],[-73.47931,45.03108],[-73.47948,45.02016],[-73.89722,45.02307],[-73.89748,45.0119],[-74.77896,45.01336],[-74.77942,45.03542],[-74.91712,45.03485],[-75.30905,44.84748],[-75.44646,44.75878],[-75.61785,44.63719],[-75.76409,44.53671],[-75.87758,44.43614],[-75.95502,44.39378],[-76.03687,44.36685],[-76.20939,44.32973],[-76.21051,44.21478],[-76.37002,44.2145],[-76.37067,44.15263],[-76.43992,44.10495],[-76.4186,43.93119],[-76.46675,43.90893],[-76.47178,43.88408],[-76.40064,43.86128],[-76.34602,43.8618],[-76.31152,43.8675],[-76.30649,43.82915],[-76.24038,43.74147],[-76.23616,43.53596],[-76.41596,43.52619],[-76.89738,43.29656],[-76.92975,43.28519],[-77.14282,43.29094],[-77.41604,43.27842],[-77.55144,43.23688],[-77.71369,43.32734],[-77.76124,43.34509],[-78.04606,43.37827],[-78.45869,43.37841],[-78.63091,43.36634],[-79.0652,43.26521],[-79.06358,43.0567],[-79.04118,43.05663],[-79.03953,42.98771],[-78.90857,42.92862],[-78.9053,42.8814],[-78.85521,42.78921],[-79.05085,42.69429],[-79.1519,42.56753],[-79.3541,42.49612],[-79.39533,42.47485],[-79.48628,42.40078],[-79.76188,42.27134]]],"type":"Polygon"}}, +{"properties":{"name":"Allen County Orthoimagery (2021)","id":"Allen_OH_2021","url":"https://gis.allencountyohio.com/arcgis/rest/services/Imagery/2021Aerial_20X/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Allen County, State of Ohio","url":"https://www.allencountyohio.com/"},"type":"tms","category":"photo","min_zoom":12,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-84.40567,40.68012],[-84.2254,40.68298],[-84.22435,40.64181],[-84.1613,40.64274],[-84.16123,40.63932],[-84.14769,40.6395],[-84.1478,40.64294],[-84.11627,40.64338],[-84.11594,40.62967],[-83.86378,40.63295],[-83.86999,40.93483],[-83.99663,40.93329],[-83.9964,40.9195],[-84.12298,40.9178],[-84.1216,40.86294],[-84.32045,40.85997],[-84.32052,40.86338],[-84.32505,40.86333],[-84.32512,40.86675],[-84.32968,40.86668],[-84.32975,40.87011],[-84.33427,40.87004],[-84.33396,40.85974],[-84.3385,40.85966],[-84.33859,40.8631],[-84.35217,40.8629],[-84.35207,40.85945],[-84.3566,40.85938],[-84.35609,40.84222],[-84.3606,40.84216],[-84.36051,40.83872],[-84.37408,40.83852],[-84.37389,40.83163],[-84.36033,40.83187],[-84.35993,40.81813],[-84.40961,40.81732],[-84.40567,40.68012]]],"type":"Polygon"}}, +{"properties":{"name":"Butler County Orthoimagery (2023)","id":"Butler_OH_2023","url":"https://gismaps.bceo.org/bcegis/rest/services/2023_Ortho/MapServer/export?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Butler County, State of Ohio","url":"https://www.bcohio.gov/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-84.82729,39.30147],[-84.67696,39.30431],[-84.67681,39.29751],[-84.456,39.30144],[-84.45587,39.29455],[-84.3851,39.29577],[-84.3851,39.28887],[-84.34972,39.28948],[-84.35051,39.31691],[-84.34167,39.31707],[-84.34344,39.38563],[-84.33453,39.38582],[-84.33644,39.45443],[-84.32756,39.45457],[-84.33009,39.55064],[-84.35665,39.55022],[-84.35781,39.59142],[-84.41988,39.5904],[-84.42005,39.59727],[-84.48191,39.59625],[-84.48144,39.57552],[-84.81846,39.56941],[-84.81619,39.50081],[-84.82503,39.50064],[-84.81935,39.32912],[-84.82819,39.32896],[-84.82729,39.30147]]],"type":"Polygon"}}, {"properties":{"name":"City of Fairfield Orthoimagery (2020)","id":"City_of_Fairfield_OH_2020","url":"https://gis.fairfield-city.org/cofgis/rest/services/Imagery_2020_WGS/MapServer/export?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"City of Fairfield, State of Ohio","url":"https://www.fairfield-city.org/"},"type":"wms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-84.57318,39.37495],[-84.57297,39.36807],[-84.59065,39.36774],[-84.59045,39.36088],[-84.59931,39.36071],[-84.59887,39.34702],[-84.60773,39.34684],[-84.6071,39.32626],[-84.64245,39.32563],[-84.6418,39.30501],[-84.60646,39.30568],[-84.60627,39.29882],[-84.53562,39.30008],[-84.53542,39.29323],[-84.4736,39.29429],[-84.47399,39.30801],[-84.46515,39.30815],[-84.46574,39.32875],[-84.47456,39.3286],[-84.47495,39.34231],[-84.4661,39.34246],[-84.46651,39.35619],[-84.47534,39.35604],[-84.47592,39.37663],[-84.51128,39.37603],[-84.51109,39.36916],[-84.52878,39.36886],[-84.52898,39.37572],[-84.57318,39.37495]]],"type":"Polygon"}}, -{"properties":{"name":"Franklin County Orthoimagery (2019)","id":"Franklin_OH_2019","url":"https://maps.columbus.gov/arcgis/rest/services/Imagery/Imagery2019/MapServer/WMTS/tile/1.0.0/Imagery_Imagery2019/default/default028mm/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Franklin County Auditor, State of Ohio","url":"https://auditor-fca.opendata.arcgis.com/"},"type":"tms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[[-83.10717,40.14337],[-83.13931,40.23587],[-83.13972,40.28046],[-83.1666,40.2803],[-83.16643,40.26315],[-83.15749,40.2632],[-83.15271,40.23233],[-83.15197,40.15342],[-83.16986,40.15333],[-83.16998,40.16705],[-83.22802,40.15641],[-83.22787,40.14269],[-83.23681,40.14263],[-83.21418,40.11417],[-83.21351,40.05013],[-83.25816,40.04985],[-83.2528,39.96753],[-83.2347,39.9436],[-83.23456,39.92991],[-83.24343,39.92297],[-83.25676,39.92287],[-83.24664,39.80971],[-83.02411,39.804],[-83.02381,39.76642],[-82.99263,39.75273],[-82.97482,39.75275],[-82.97494,39.76995],[-82.90824,39.77015],[-82.89947,39.79425],[-82.81943,39.79452],[-82.81953,39.82195],[-82.79728,39.82204],[-82.79321,39.91123],[-82.77992,39.93528],[-82.75778,39.93883],[-82.74878,39.94909],[-82.73096,39.94913],[-82.7311,39.99373],[-82.76681,39.99364],[-82.76698,40.04512],[-82.70894,40.08438],[-82.77625,40.12747],[-82.77629,40.13088],[-82.85189,40.13079],[-82.8529,40.25764],[-82.90664,40.25746],[-82.90622,40.18878],[-82.97781,40.18857],[-82.97763,40.16113],[-83.01337,40.16098],[-83.01334,40.15413],[-83.03113,40.1403],[-83.08476,40.14006],[-83.08481,40.14348],[-83.10717,40.14337]]],[[[-83.26182,40.38264],[-83.18552,40.38317],[-83.18612,40.43803],[-83.22208,40.43777],[-83.22174,40.41719],[-83.26216,40.41693],[-83.26182,40.38264]]]],"type":"MultiPolygon"}}, +{"properties":{"name":"City of Mansfield Orthoimagery (2022)","id":"City_of_Mansfield_OH_2022","url":"https://arcgis.mansfieldcity.com/server/rest/services/Imagery/Imagery_2022/MapServer/export?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"City of Mansfield, State of Ohio","url":"https://ci.mansfield.oh.us/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-82.45273,40.73493],[-82.45272,40.7514],[-82.48014,40.75142],[-82.48015,40.7536],[-82.48447,40.75361],[-82.48448,40.76898],[-82.47148,40.76898],[-82.47147,40.78106],[-82.49169,40.78106],[-82.49169,40.80522],[-82.48735,40.80522],[-82.48736,40.8151],[-82.48446,40.8151],[-82.48447,40.8173],[-82.48302,40.81729],[-82.48302,40.82059],[-82.48011,40.82058],[-82.48013,40.82387],[-82.48302,40.82388],[-82.48302,40.82711],[-82.4917,40.82714],[-82.49167,40.84035],[-82.51482,40.84034],[-82.51481,40.84584],[-82.54229,40.84583],[-82.54227,40.81619],[-82.54659,40.81618],[-82.54661,40.8096],[-82.59857,40.80954],[-82.59853,40.74918],[-82.66639,40.7491],[-82.66622,40.68319],[-82.53064,40.68332],[-82.53062,40.68661],[-82.50036,40.68664],[-82.50036,40.72507],[-82.4917,40.72507],[-82.4917,40.73495],[-82.45273,40.73493]]],"type":"Polygon"}}, +{"properties":{"name":"City of Wooster Orthoimagery (2022)","id":"City_of_Wooster_OH_2021","url":"https://utility.arcgis.com/usrsvcs/servers/a9c2a83a20ea4a4ea4a910b9766329b4/rest/services/Imagery/Ortho_2021/ImageServer/exportImage?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"City of Wooster, State of Ohio","url":"https://www.woosteroh.com/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-81.98432,40.80805],[-81.98477,40.74976],[-81.97129,40.74965],[-81.97127,40.74622],[-81.93967,40.74606],[-81.93958,40.75982],[-81.92605,40.75973],[-81.92605,40.76662],[-81.90792,40.76648],[-81.90776,40.79054],[-81.89418,40.79047],[-81.89408,40.8042],[-81.88503,40.8041],[-81.8845,40.85903],[-81.90259,40.85911],[-81.90247,40.86942],[-81.91604,40.86947],[-81.916,40.87289],[-81.92957,40.87297],[-81.92959,40.86956],[-81.97026,40.86973],[-81.9704,40.8457],[-81.97496,40.84572],[-81.97529,40.808],[-81.98432,40.80805]]],"type":"Polygon"}}, +{"properties":{"name":"Cuyahoga County Orthoimagery (2023)","id":"Cuyahoga_OH_2023","url":"https://gis.cuyahogacounty.us/server/rest/services/IMAGERY/2023_Spring_Ortho/MapServer/export?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Cuyahoga County, State of Ohio","url":"https://cuyahogacounty.gov/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-81.97428,41.5079],[-81.97553,41.35008],[-81.87988,41.34964],[-81.88061,41.27415],[-81.6487,41.27268],[-81.64866,41.27611],[-81.5577,41.27542],[-81.55756,41.28567],[-81.56211,41.28573],[-81.56196,41.29603],[-81.56647,41.29605],[-81.56643,41.3029],[-81.57094,41.30295],[-81.5709,41.30639],[-81.57543,41.30642],[-81.57543,41.30986],[-81.57996,41.30982],[-81.57982,41.3202],[-81.58435,41.3202],[-81.584,41.34768],[-81.38821,41.34596],[-81.38695,41.42141],[-81.37329,41.42129],[-81.37285,41.44873],[-81.38647,41.44886],[-81.38441,41.57236],[-81.48486,41.57323],[-81.48392,41.63504],[-81.97428,41.5079]]],"type":"Polygon"}}, +{"properties":{"name":"Delaware County Orthoimagery (2021)","id":"Delaware_OH_2021","url":"https://tiles.arcgis.com/tiles/ziXVKVy3BiopMCCU/arcgis/rest/services/Imagery_2021/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Delaware County, State of Ohio","url":"https://co.delaware.oh.us/"},"type":"tms","category":"historicphoto","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-83.17416,40.14156],[-83.15196,40.14171],[-83.15196,40.13826],[-83.08477,40.13862],[-83.08477,40.13527],[-82.99975,40.13556],[-82.99991,40.13221],[-82.9193,40.13253],[-82.91922,40.12912],[-82.85228,40.12924],[-82.8522,40.12588],[-82.77624,40.12608],[-82.77619,40.12268],[-82.75837,40.12268],[-82.7584,40.16384],[-82.75401,40.16389],[-82.75436,40.22218],[-82.74985,40.22229],[-82.74988,40.28049],[-82.74552,40.28055],[-82.74582,40.33201],[-82.74125,40.33206],[-82.74132,40.35262],[-82.80391,40.35237],[-82.80406,40.35584],[-82.87128,40.35578],[-82.87137,40.35907],[-82.9253,40.35903],[-82.92549,40.4],[-82.92089,40.40005],[-82.92111,40.41722],[-82.96578,40.41705],[-82.96578,40.42049],[-82.97501,40.42041],[-82.97496,40.41705],[-82.97949,40.41693],[-82.97964,40.42049],[-83.01985,40.42032],[-83.01995,40.43742],[-83.10525,40.43694],[-83.10542,40.44041],[-83.16814,40.43997],[-83.16814,40.44356],[-83.22661,40.44323],[-83.22673,40.44658],[-83.2492,40.44649],[-83.2492,40.443],[-83.25355,40.44318],[-83.2515,40.24384],[-83.22895,40.24427],[-83.22895,40.2407],[-83.1751,40.24107],[-83.17416,40.14156]]],"type":"Polygon"}}, +{"properties":{"name":"Delaware County Orthoimagery (2022)","id":"Delaware_OH_2022","url":"https://tiles.arcgis.com/tiles/ziXVKVy3BiopMCCU/arcgis/rest/services/Imagery_2022_/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Delaware County, State of Ohio","url":"https://co.delaware.oh.us/"},"type":"tms","category":"historicphoto","min_zoom":10,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-83.26485,40.24054],[-83.17521,40.2415],[-83.17393,40.13145],[-82.941,40.13239],[-82.94151,40.11893],[-82.74469,40.11893],[-82.74612,40.32488],[-82.72749,40.32488],[-82.72768,40.35244],[-82.78152,40.35258],[-82.78152,40.36621],[-82.92505,40.36588],[-82.92537,40.3932],[-82.90735,40.3932],[-82.90756,40.42096],[-83.01565,40.42032],[-83.01502,40.4479],[-83.26693,40.44682],[-83.26485,40.24054]]],"type":"Polygon"}}, +{"properties":{"name":"Delaware County Orthoimagery (2023)","id":"Delaware_OH_2023","url":"https://tiles.arcgis.com/tiles/ziXVKVy3BiopMCCU/arcgis/rest/services/Imagery_2023/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Delaware County, State of Ohio","url":"https://co.delaware.oh.us/"},"type":"tms","category":"photo","min_zoom":10,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-83.26485,40.24054],[-83.17521,40.2415],[-83.17393,40.13145],[-82.941,40.13239],[-82.94151,40.11893],[-82.74469,40.11893],[-82.74612,40.32488],[-82.72749,40.32488],[-82.72768,40.35244],[-82.78152,40.35258],[-82.78152,40.36621],[-82.92505,40.36588],[-82.92537,40.3932],[-82.90735,40.3932],[-82.90756,40.42096],[-83.01565,40.42032],[-83.01502,40.4479],[-83.26693,40.44682],[-83.26485,40.24054]]],"type":"Polygon"}}, +{"properties":{"name":"Franklin County Orthoimagery (2021)","id":"Franklin_OH_2021","url":"https://maps.columbus.gov/arcgis/rest/services/Imagery/Imagery2021/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Franklin County Auditor, State of Ohio","url":"https://auditor-fca.opendata.arcgis.com/"},"type":"tms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[[-83.10717,40.14337],[-83.13931,40.23587],[-83.13972,40.28046],[-83.1666,40.2803],[-83.16643,40.26315],[-83.15749,40.2632],[-83.15271,40.23233],[-83.15197,40.15342],[-83.16986,40.15333],[-83.16998,40.16705],[-83.22802,40.15641],[-83.22787,40.14269],[-83.23681,40.14263],[-83.21418,40.11417],[-83.21351,40.05013],[-83.25816,40.04985],[-83.2528,39.96753],[-83.2347,39.9436],[-83.23456,39.92991],[-83.24343,39.92297],[-83.25676,39.92287],[-83.24664,39.80971],[-83.02411,39.804],[-83.02381,39.76642],[-82.99263,39.75273],[-82.97482,39.75275],[-82.97494,39.76995],[-82.90824,39.77015],[-82.89947,39.79425],[-82.81943,39.79452],[-82.81953,39.82195],[-82.79728,39.82204],[-82.79321,39.91123],[-82.77992,39.93528],[-82.75778,39.93883],[-82.74878,39.94909],[-82.73096,39.94913],[-82.7311,39.99373],[-82.76681,39.99364],[-82.76698,40.04512],[-82.70894,40.08438],[-82.77625,40.12747],[-82.77629,40.13088],[-82.85189,40.13079],[-82.8529,40.25764],[-82.90664,40.25746],[-82.90622,40.18878],[-82.97781,40.18857],[-82.97763,40.16113],[-83.01337,40.16098],[-83.01334,40.15413],[-83.03113,40.1403],[-83.08476,40.14006],[-83.08481,40.14348],[-83.10717,40.14337]]],[[[-83.26182,40.38264],[-83.18552,40.38317],[-83.18612,40.43803],[-83.22208,40.43777],[-83.22174,40.41719],[-83.26216,40.41693],[-83.26182,40.38264]]]],"type":"MultiPolygon"}}, +{"properties":{"name":"Franklin County Orthoimagery (2023)","id":"Franklin_OH_2023","url":"https://maps.columbus.gov/arcgis/rest/services/Imagery/Imagery2023/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Franklin County Auditor, State of Ohio","url":"https://auditor-fca.opendata.arcgis.com/"},"type":"tms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[[-83.10717,40.14337],[-83.13931,40.23587],[-83.13972,40.28046],[-83.1666,40.2803],[-83.16643,40.26315],[-83.15749,40.2632],[-83.15271,40.23233],[-83.15197,40.15342],[-83.16986,40.15333],[-83.16998,40.16705],[-83.22802,40.15641],[-83.22787,40.14269],[-83.23681,40.14263],[-83.21418,40.11417],[-83.21351,40.05013],[-83.25816,40.04985],[-83.2528,39.96753],[-83.2347,39.9436],[-83.23456,39.92991],[-83.24343,39.92297],[-83.25676,39.92287],[-83.24664,39.80971],[-83.02411,39.804],[-83.02381,39.76642],[-82.99263,39.75273],[-82.97482,39.75275],[-82.97494,39.76995],[-82.90824,39.77015],[-82.89947,39.79425],[-82.81943,39.79452],[-82.81953,39.82195],[-82.79728,39.82204],[-82.79321,39.91123],[-82.77992,39.93528],[-82.75778,39.93883],[-82.74878,39.94909],[-82.73096,39.94913],[-82.7311,39.99373],[-82.76681,39.99364],[-82.76698,40.04512],[-82.70894,40.08438],[-82.77625,40.12747],[-82.77629,40.13088],[-82.85189,40.13079],[-82.8529,40.25764],[-82.90664,40.25746],[-82.90622,40.18878],[-82.97781,40.18857],[-82.97763,40.16113],[-83.01337,40.16098],[-83.01334,40.15413],[-83.03113,40.1403],[-83.08476,40.14006],[-83.08481,40.14348],[-83.10717,40.14337]]],[[[-83.26182,40.38264],[-83.18552,40.38317],[-83.18612,40.43803],[-83.22208,40.43777],[-83.22174,40.41719],[-83.26216,40.41693],[-83.26182,40.38264]]]],"type":"MultiPolygon"}}, +{"properties":{"name":"Putnam County Orthoimagery (2023)","id":"Licking_OH_2023","url":"https://apps.lickingcounty.gov/arcgis/rest/services/Basemaps/Imagery2023/MapServer/export?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Licking County, State of Ohio","url":"https://lickingcounty.gov/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-82.47752,40.24575],[-82.47607,40.2645],[-82.75072,40.27696],[-82.77362,39.97606],[-82.77941,39.97638],[-82.78238,39.93973],[-82.47333,39.92498],[-82.46314,39.93058],[-82.41846,39.92745],[-82.41897,39.92258],[-82.30121,39.91614],[-82.23414,39.9133],[-82.23164,39.95129],[-82.19885,39.95022],[-82.18284,40.23866],[-82.28095,40.24019],[-82.28094,40.2393],[-82.32857,40.23967],[-82.47752,40.24575]]],"type":"Polygon"}}, {"properties":{"name":"Mercer County Orthoimagery (2021)","id":"Mercer_OH_2021","url":"https://gis.mercercountyohio.org/arcgis/rest/services/aerials/2021Aerials/ImageServer/WMTS/tile/1.0.0/aerials_2021Aerials/default/default028mm/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Mercer County, State of Ohio","url":"https://www.mercercountyohio.org/"},"type":"tms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-84.80424,40.73458],[-84.80284,40.69342],[-84.81186,40.69324],[-84.804,40.46686],[-84.81308,40.46674],[-84.80896,40.34988],[-84.71927,40.35184],[-84.71892,40.34491],[-84.42307,40.35047],[-84.42324,40.35727],[-84.44126,40.35714],[-84.44143,40.36381],[-84.45019,40.36355],[-84.45482,40.50767],[-84.44538,40.50806],[-84.45259,40.73477],[-84.7681,40.72801],[-84.76828,40.73549],[-84.80424,40.73458]]],"type":"Polygon"}}, -{"properties":{"name":"Montgomery County Orthoimagery (2019)","id":"Montgomery_OH_2019","url":"https://portal.ketteringoh.org/arcgis/rest/services/GISData/MontCoAerial2019/MapServer/export?f=image&format=jpg&layers=&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Montgomery County, State of Ohio","url":"https://www.mcohio.org/"},"type":"wms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-84.48184,39.58592],[-84.36654,39.58782],[-84.3575,39.58113],[-84.35686,39.55709],[-84.34356,39.5573],[-84.33985,39.58481],[-84.25116,39.58618],[-84.10894,39.5745],[-84.10981,39.61224],[-84.07863,39.61276],[-84.07897,39.62969],[-84.09699,39.62962],[-84.09682,39.63286],[-84.10532,39.6328],[-84.10635,39.66049],[-84.10189,39.66042],[-84.10343,39.71531],[-84.09871,39.71537],[-84.09966,39.75313],[-84.09081,39.75313],[-84.0918,39.79436],[-84.08283,39.79452],[-84.08343,39.8151],[-84.08781,39.81506],[-84.08785,39.81839],[-84.09236,39.81846],[-84.09249,39.82864],[-84.08807,39.82868],[-84.08828,39.83563],[-84.07043,39.83593],[-84.07039,39.83237],[-84.0526,39.83263],[-84.05291,39.8464],[-84.04845,39.84647],[-84.04932,39.88417],[-84.07146,39.88379],[-84.12764,39.90026],[-84.16098,39.89976],[-84.16184,39.92725],[-84.49139,39.92218],[-84.48184,39.58592]]],"type":"Polygon"}}, +{"properties":{"name":"Montgomery County Orthoimagery (2022)","id":"Montgomery_OH_2022","url":"https://gis.mcohio.org/arcgis/rest/services/AUDGIS_MrSID/MapServer/export?f=image&format=jpg&layers=show:0&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Montgomery County, State of Ohio","url":"https://www.mcohio.org/"},"type":"wms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-84.48184,39.58592],[-84.36654,39.58782],[-84.3575,39.58113],[-84.35686,39.55709],[-84.34356,39.5573],[-84.33985,39.58481],[-84.25116,39.58618],[-84.10894,39.5745],[-84.10981,39.61224],[-84.07863,39.61276],[-84.07897,39.62969],[-84.09699,39.62962],[-84.09682,39.63286],[-84.10532,39.6328],[-84.10635,39.66049],[-84.10189,39.66042],[-84.10343,39.71531],[-84.09871,39.71537],[-84.09966,39.75313],[-84.09081,39.75313],[-84.0918,39.79436],[-84.08283,39.79452],[-84.08343,39.8151],[-84.08781,39.81506],[-84.08785,39.81839],[-84.09236,39.81846],[-84.09249,39.82864],[-84.08807,39.82868],[-84.08828,39.83563],[-84.07043,39.83593],[-84.07039,39.83237],[-84.0526,39.83263],[-84.05291,39.8464],[-84.04845,39.84647],[-84.04932,39.88417],[-84.07146,39.88379],[-84.12764,39.90026],[-84.16098,39.89976],[-84.16184,39.92725],[-84.49139,39.92218],[-84.48184,39.58592]]],"type":"Polygon"}}, {"properties":{"name":"Ohio Statewide Imagery Program","id":"OSIP","url":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/OSIPIII_MostCurrent/ImageServer/WMSServer?LAYERS=0&STYLES=&CRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":false,"text":"Ohio Statewide Imagery Program","url":"https://das.ohio.gov/technology-and-strategy/ogrip/projects/osip"},"type":"wms","category":"photo","min_zoom":8,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-83.1356,41.75081],[-83.13438,41.64959],[-83.44737,41.76038],[-84.82898,41.70637],[-84.84471,39.08477],[-84.74086,39.11164],[-84.64015,39.05545],[-84.49223,39.07255],[-84.34117,38.99922],[-84.22157,38.7812],[-84.08624,38.75421],[-83.9635,38.76403],[-83.74635,38.63385],[-83.65193,38.61172],[-83.54178,38.69283],[-83.46625,38.64614],[-83.39387,38.64368],[-83.30575,38.58466],[-83.14524,38.59942],[-83.00676,38.71002],[-82.91235,38.73212],[-82.8494,38.56006],[-82.73925,38.53545],[-82.57875,38.39745],[-82.29865,38.43198],[-82.26718,38.57236],[-82.16017,38.58712],[-82.16647,38.72475],[-82.19794,38.78856],[-82.12555,38.8278],[-82.11611,38.92336],[-82.02799,38.99922],[-81.9084,38.93315],[-81.95875,38.89397],[-81.9021,38.85477],[-81.73216,38.9258],[-81.72586,39.19461],[-81.54333,39.26288],[-81.515,39.35054],[-81.45521,39.38704],[-81.38912,39.31159],[-81.19399,39.37974],[-80.85095,39.625],[-80.58973,40.2812],[-80.58344,40.49933],[-80.6275,40.59021],[-80.51105,40.62127],[-80.50161,41.99939],[-81.10587,41.84484],[-81.39541,41.7369],[-81.72901,41.52048],[-82.0217,41.53462],[-82.49063,41.40492],[-82.68575,41.50634],[-82.64799,41.62408],[-82.75184,41.63584],[-82.76758,41.73925],[-82.8494,41.7463],[-82.89032,41.69462],[-82.89032,41.54404],[-82.95011,41.54404],[-83.0796,41.62936],[-83.08101,41.7511],[-83.1356,41.75081]]],"type":"Polygon"}}, {"properties":{"name":"Ohio Statewide Imagery Program 1-Foot","id":"OSIP_1ft","url":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/osip_best_avail_1ft/ImageServer/WMSServer?LAYERS=0&STYLES=&CRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":false,"text":"Ohio Statewide Imagery Program","url":"https://das.ohio.gov/technology-and-strategy/ogrip/projects/osip"},"type":"wms","category":"photo","min_zoom":8,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-83.1356,41.75081],[-83.13438,41.64959],[-83.44737,41.76038],[-84.82898,41.70637],[-84.84471,39.08477],[-84.74086,39.11164],[-84.64015,39.05545],[-84.49223,39.07255],[-84.34117,38.99922],[-84.22157,38.7812],[-84.08624,38.75421],[-83.9635,38.76403],[-83.74635,38.63385],[-83.65193,38.61172],[-83.54178,38.69283],[-83.46625,38.64614],[-83.39387,38.64368],[-83.30575,38.58466],[-83.14524,38.59942],[-83.00676,38.71002],[-82.91235,38.73212],[-82.8494,38.56006],[-82.73925,38.53545],[-82.57875,38.39745],[-82.29865,38.43198],[-82.26718,38.57236],[-82.16017,38.58712],[-82.16647,38.72475],[-82.19794,38.78856],[-82.12555,38.8278],[-82.11611,38.92336],[-82.02799,38.99922],[-81.9084,38.93315],[-81.95875,38.89397],[-81.9021,38.85477],[-81.73216,38.9258],[-81.72586,39.19461],[-81.54333,39.26288],[-81.515,39.35054],[-81.45521,39.38704],[-81.38912,39.31159],[-81.19399,39.37974],[-80.85095,39.625],[-80.58973,40.2812],[-80.58344,40.49933],[-80.6275,40.59021],[-80.51105,40.62127],[-80.50161,41.99939],[-81.10587,41.84484],[-81.39541,41.7369],[-81.72901,41.52048],[-82.0217,41.53462],[-82.49063,41.40492],[-82.68575,41.50634],[-82.64799,41.62408],[-82.75184,41.63584],[-82.76758,41.73925],[-82.8494,41.7463],[-82.89032,41.69462],[-82.89032,41.54404],[-82.95011,41.54404],[-83.0796,41.62936],[-83.08101,41.7511],[-83.1356,41.75081]]],"type":"Polygon"}}, {"properties":{"name":"Ohio Statewide Imagery Program 6-Inch","id":"OSIP_6in","url":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/OSIP_6in_best_avail/ImageServer/WMSServer?LAYERS=0&STYLES=&CRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":false,"text":"Ohio Statewide Imagery Program","url":"https://das.ohio.gov/technology-and-strategy/ogrip/projects/osip"},"type":"wms","category":"photo","min_zoom":8,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[[-82.76447,38.60466],[-82.82967,38.58054],[-82.82389,38.55757],[-82.71004,38.53207],[-82.62589,38.46333],[-82.60242,38.40637],[-82.54208,38.3889],[-82.31673,38.43442],[-82.28712,38.48991],[-82.26884,38.58221],[-82.28295,38.59689],[-82.34199,38.59912],[-82.34329,38.68764],[-82.45307,38.69579],[-82.4484,38.74265],[-82.47238,38.78367],[-82.5627,38.79213],[-82.56363,38.85551],[-82.65229,38.8632],[-82.66783,38.8528],[-82.67995,38.76321],[-82.71303,38.7535],[-82.72024,38.69223],[-82.78193,38.68361],[-82.78442,38.64167],[-82.76447,38.60466]]],[[[-82.63588,39.61218],[-82.638,39.57917],[-82.74519,39.57791],[-82.76731,39.36857],[-82.75362,39.35371],[-82.63757,39.34661],[-82.61744,39.36019],[-82.51118,39.35562],[-82.49729,39.3806],[-82.30984,39.37063],[-82.3169,39.29299],[-82.27994,39.27938],[-82.27719,39.19064],[-81.75373,39.16595],[-81.67732,39.21789],[-81.66931,39.26102],[-81.55664,39.258],[-81.53281,39.34333],[-81.44829,39.39578],[-81.42416,39.38179],[-81.40555,39.34019],[-81.37772,39.3277],[-81.26394,39.37175],[-81.20636,39.37585],[-81.16965,39.42313],[-81.1175,39.43727],[-81.02454,39.5304],[-81.0184,39.57424],[-81.03596,39.58651],[-81.24593,39.59347],[-81.26019,39.61943],[-81.34017,39.60755],[-81.37642,39.61557],[-81.40588,39.64389],[-81.476,39.65995],[-81.49136,39.64869],[-81.49245,39.59826],[-81.72641,39.59544],[-81.7424,39.5487],[-81.72498,39.49713],[-81.82702,39.50758],[-81.84272,39.46446],[-82.0366,39.4727],[-82.02894,39.54978],[-82.03937,39.56366],[-82.24415,39.57555],[-82.25403,39.60391],[-82.35985,39.61015],[-82.36638,39.66805],[-82.49233,39.6761],[-82.50821,39.66577],[-82.51339,39.61824],[-82.62001,39.62308],[-82.63588,39.61218]]],[[[-83.11112,41.97385],[-83.42404,41.7481],[-84.82004,41.70609],[-84.83855,39.12098],[-84.83509,39.09701],[-84.81276,39.0915],[-84.74492,39.13298],[-84.69755,39.08944],[-84.61907,39.0588],[-84.54439,39.08439],[-84.49955,39.08157],[-84.46247,39.1068],[-84.44095,39.04406],[-84.35509,39.02423],[-84.32374,39.00054],[-84.30555,38.94947],[-84.25178,38.88671],[-84.24952,38.82742],[-84.22491,38.79466],[-84.07407,38.75603],[-83.96347,38.77275],[-83.8753,38.74739],[-83.84975,38.70729],[-83.80082,38.68935],[-83.77254,38.63949],[-83.65504,38.61325],[-83.63005,38.62747],[-83.6152,38.66677],[-83.52167,38.68824],[-83.47446,38.66162],[-83.36862,38.64277],[-83.30763,38.58432],[-83.2803,38.58514],[-83.25174,38.6091],[-83.2526,39.01867],[-83.30649,39.06513],[-83.36374,39.06874],[-83.32528,39.23274],[-83.33174,39.26141],[-83.36552,39.27065],[-83.36579,39.3214],[-83.35484,39.37206],[-83.24886,39.51176],[-83.23468,39.70013],[-83.63315,39.73021],[-83.63046,39.75697],[-83.57063,39.76491],[-83.49343,40.00733],[-83.48637,40.09669],[-83.17068,40.09249],[-83.15159,40.10402],[-83.1549,40.24986],[-83.2302,40.25905],[-83.23062,40.51269],[-83.39659,40.51998],[-83.40203,40.69219],[-83.43299,40.7156],[-83.4766,40.71593],[-83.47717,40.81774],[-83.49647,40.83238],[-83.49563,40.89031],[-83.45897,40.8995],[-83.43864,40.9773],[-83.13191,40.97885],[-83.13009,40.70296],[-83.11858,40.6898],[-82.72745,40.69674],[-82.70796,40.71121],[-82.70531,40.98106],[-82.42903,40.97871],[-82.41388,40.99059],[-82.41684,41.05103],[-82.19101,41.04947],[-82.19118,40.98673],[-82.14816,40.9775],[-82.13948,40.65806],[-81.66816,40.65339],[-81.6874,40.6324],[-81.68815,40.45893],[-81.72823,40.44538],[-81.72832,40.36293],[-81.636,40.35419],[-81.64081,40.23623],[-81.68308,40.23087],[-81.68868,40.1662],[-81.73524,40.15288],[-81.74723,39.92999],[-81.71029,39.91717],[-81.71029,39.83468],[-81.57697,39.82495],[-81.56204,39.83602],[-81.56013,39.88221],[-81.45816,39.88045],[-81.44464,39.90858],[-81.37464,39.91047],[-81.36718,39.93563],[-81.22124,39.94064],[-81.20822,40.17534],[-81.32028,40.18562],[-81.31614,40.28984],[-81.2686,40.29011],[-81.25645,40.30312],[-81.24542,40.56737],[-81.30199,40.58064],[-81.2991,40.63714],[-81.22824,40.63995],[-81.21897,40.70858],[-81.18312,40.7145],[-80.93633,40.71253],[-80.93596,40.63836],[-80.88022,40.62854],[-80.87664,40.59016],[-80.76606,40.58299],[-80.75086,40.56897],[-80.66334,40.56846],[-80.62024,40.60579],[-80.56595,40.60166],[-80.50024,40.63618],[-80.5031,41.14139],[-80.98337,41.14867],[-80.9839,41.48689],[-80.50144,41.4936],[-80.50489,42.33137],[-81.25303,42.22098],[-82.40298,41.69103],[-82.67404,41.69103],[-83.05287,41.87301],[-83.11112,41.97385]],[[-83.5405,40.49627],[-83.56862,40.24514],[-83.99449,40.28677],[-83.99293,40.30123],[-83.97487,40.52076],[-83.5405,40.49627]]]],"type":"MultiPolygon"}}, +{"properties":{"name":"Putnam County Orthoimagery (2023)","id":"Putnam_OH_2023","url":"https://putnamcountygis.com/arcgis/services/Aerials/2023_Aerial/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"Putnam County, State of Ohio","url":"https://putnamcountyohio.gov/"},"type":"wms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-84.34708,41.16843],[-84.34678,40.99326],[-84.40102,40.99243],[-84.39922,40.93072],[-84.40381,40.9307],[-84.40294,40.8998],[-84.34412,40.90073],[-84.34287,40.85614],[-84.10792,40.85969],[-84.10891,40.9008],[-83.9914,40.90242],[-83.99174,40.91617],[-83.87865,40.91758],[-83.87946,41.17148],[-84.34708,41.16843]]],"type":"Polygon"}}, +{"properties":{"name":"Scioto County Orthoimagery (2023)","id":"Scioto_OH_2023","url":"https://www.sciotocountyengineer.org/arcgis/rest/services/Imagery/Imagery_2023/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Scioto County, State of Ohio","url":"https://www.sciotocountyoh.com/"},"type":"tms","category":"photo","max_zoom":23},"type":"Feature","geometry":{"coordinates":[[[-83.2646,38.60836],[-83.26466,38.61518],[-83.24716,38.61534],[-83.24723,38.62223],[-83.23846,38.62223],[-83.23841,38.61537],[-83.22093,38.61546],[-83.22085,38.60865],[-83.15087,38.60904],[-83.15095,38.61593],[-83.13344,38.61601],[-83.1335,38.62287],[-83.12476,38.62292],[-83.12488,38.63667],[-83.11612,38.63668],[-83.11629,38.6573],[-83.10755,38.65735],[-83.10761,38.66422],[-83.09885,38.66425],[-83.0989,38.67111],[-83.0814,38.67117],[-83.08143,38.67805],[-83.06394,38.67814],[-83.06397,38.68502],[-83.04644,38.68508],[-83.04654,38.69195],[-83.03774,38.692],[-83.03789,38.70574],[-83.02912,38.70575],[-83.02921,38.71951],[-82.95914,38.7198],[-82.9592,38.72666],[-82.94164,38.72674],[-82.94172,38.7336],[-82.93291,38.73366],[-82.933,38.74049],[-82.91541,38.74055],[-82.91548,38.74742],[-82.88917,38.74751],[-82.88917,38.7407],[-82.88038,38.74072],[-82.88014,38.70634],[-82.88894,38.70634],[-82.88886,38.67888],[-82.88002,38.6789],[-82.88005,38.67202],[-82.87123,38.67205],[-82.87108,38.63088],[-82.8623,38.63084],[-82.86211,38.59657],[-82.85339,38.59657],[-82.85332,38.58289],[-82.84455,38.58287],[-82.84449,38.57604],[-82.83576,38.57602],[-82.83574,38.56924],[-82.82695,38.5693],[-82.82698,38.5624],[-82.81816,38.56237],[-82.81826,38.5693],[-82.79202,38.56924],[-82.79206,38.57618],[-82.77459,38.57623],[-82.77462,38.5831],[-82.7571,38.58305],[-82.7571,38.59001],[-82.73963,38.59001],[-82.73966,38.61752],[-82.74849,38.61745],[-82.74833,38.63121],[-82.75729,38.63121],[-82.75743,38.6724],[-82.70487,38.67246],[-82.70492,38.67935],[-82.69613,38.67937],[-82.69634,38.73429],[-82.68753,38.7343],[-82.68758,38.74803],[-82.67005,38.74806],[-82.67005,38.74119],[-82.66126,38.74119],[-82.66131,38.75494],[-82.65255,38.75495],[-82.65267,38.81673],[-82.6439,38.81673],[-82.64396,38.85105],[-82.67031,38.85098],[-82.67031,38.85788],[-82.75812,38.85772],[-82.75821,38.88519],[-82.74943,38.88519],[-82.74961,38.94699],[-82.77601,38.94689],[-82.77603,38.95378],[-82.90788,38.95336],[-82.90792,38.96025],[-83.15412,38.95911],[-83.15412,38.966],[-83.20694,38.96568],[-83.20717,38.99314],[-83.216,38.99308],[-83.21605,38.99993],[-83.22487,38.99989],[-83.22493,39.00676],[-83.23373,39.0067],[-83.23381,39.01356],[-83.25139,39.01344],[-83.25147,39.02031],[-83.27787,39.02014],[-83.27337,38.6083],[-83.2646,38.60836]]],"type":"Polygon"}}, {"properties":{"name":"Wood County Orthoimagery (2020)","id":"Wood_OH_2020","url":"https://engineergis.co.wood.oh.us/arcgis/rest/services/Imagery/Wood_2020_rgb_20x/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Wood County, State of Ohio","url":"https://www.co.wood.oh.us/"},"type":"wms","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-83.41347,41.62215],[-83.58192,41.62083],[-83.61832,41.57565],[-83.64527,41.57539],[-83.71771,41.51989],[-83.71719,41.49225],[-83.7359,41.49212],[-83.78946,41.45019],[-83.85298,41.42213],[-83.8892,41.4184],[-83.88405,41.1647],[-83.41621,41.16581],[-83.41347,41.62215]]],"type":"Polygon"}}, {"properties":{"name":"Crook County Orthoimagery (2023)","id":"Crook-2023","url":"https://geo.co.crook.or.us/server/rest/services/Hosted/Crook_2023_3in9in/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"Crook County GIS","url":"https://co.crook.or.us/gis"},"type":"tms","category":"photo","min_zoom":11,"max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[[-120.56378,44.44371],[-120.61434,44.44367],[-120.61429,44.42919],[-120.64461,44.42914],[-120.64456,44.41465],[-120.74559,44.4145],[-120.74576,44.46522],[-120.86712,44.46488],[-120.86719,44.47947],[-120.99864,44.47884],[-120.99793,44.39197],[-121.10906,44.39145],[-121.10821,44.31177],[-121.11831,44.31175],[-121.11731,44.21744],[-121.10701,44.21762],[-121.1064,44.13059],[-120.99571,44.13134],[-120.99512,44.0517],[-120.89469,44.05203],[-120.89432,43.99413],[-120.78401,43.99444],[-120.78411,44.02336],[-120.61348,44.02368],[-120.61366,44.09611],[-120.0207,44.09508],[-120.02066,44.10241],[-120.00062,44.10231],[-120.00053,44.10954],[-119.98048,44.10946],[-119.98044,44.11668],[-119.89998,44.11633],[-119.89986,44.13079],[-119.87971,44.1307],[-119.8791,44.19588],[-119.9193,44.19608],[-119.91965,44.15987],[-120.04042,44.16043],[-120.04025,44.17486],[-120.44276,44.17583],[-120.44268,44.23375],[-120.56349,44.2337],[-120.56378,44.44371]]],[[[-120.38189,44.48711],[-120.44222,44.48711],[-120.44222,44.45803],[-120.38189,44.45803],[-120.38189,44.48711]]]],"type":"MultiPolygon"}}, {"properties":{"name":"Oregon DOGAMI Lidar","id":"DOGAMI-Lidar","url":"https://gis.dogami.oregon.gov/arcgis/services/lidar/DIGITAL_TERRAIN_MODEL_MOSAIC_HS/ImageServer/WMSServer?LAYERS=0&STYLES=&CRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":false,"text":"Oregon Department of Geology and Mineral Industries","url":"https://www.oregon.gov/dogami"},"type":"wms","category":"elevation","min_zoom":6,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[[-120.39105,43.30612],[-120.38575,43.26575],[-120.30501,43.25148],[-120.31683,43.32733],[-120.39105,43.30612]]],[[[-121.99035,46.41838],[-122.00891,46.41777],[-122.0087,46.43306],[-122.02909,46.43368],[-122.02909,46.44693],[-122.10494,46.44652],[-122.1082,46.38698],[-122.13063,46.38576],[-122.13022,46.36252],[-122.0715,46.35885],[-122.06497,46.34091],[-122.04703,46.33968],[-122.04948,46.32133],[-121.97934,46.28178],[-121.92388,46.2932],[-121.92429,46.34417],[-121.8725,46.38168],[-121.87169,46.39596],[-121.8411,46.41267],[-121.84274,46.43551],[-121.79788,46.42899],[-121.78687,46.48771],[-121.81664,46.49341],[-121.83662,46.47629],[-121.8986,46.46772],[-121.93041,46.48037],[-121.93041,46.49423],[-121.99198,46.49637],[-121.99035,46.41838]]],[[[-117.76384,42.82046],[-117.73448,42.75521],[-117.48818,42.71607],[-117.29081,42.72667],[-117.02168,42.82127],[-117.02168,43.26738],[-117.05757,43.27717],[-117.32915,43.14994],[-117.43109,42.95421],[-117.59665,42.94932],[-117.65985,42.91649],[-117.68381,42.99743],[-117.64303,43.174],[-117.46279,43.18134],[-117.45382,43.25026],[-117.65282,43.25148],[-117.69278,43.1479],[-117.7254,43.13975],[-117.74742,42.97827],[-117.77189,42.97093],[-117.76384,42.82046]]],[[[-118.19934,43.18746],[-118.28375,43.08103],[-118.10311,43.01905],[-118.0815,43.14954],[-118.19934,43.18746]]],[[[-120.11223,42.07688],[-120.0217,41.99512],[-119.83779,41.99634],[-119.84065,42.10522],[-119.86675,42.10562],[-119.89203,42.0783],[-119.9585,42.0783],[-119.95646,42.04201],[-119.99642,42.0416],[-119.99805,42.0783],[-119.9589,42.10644],[-119.89978,42.23815],[-119.94708,42.25569],[-120.01803,42.26343],[-120.0633,42.25446],[-120.08083,42.22551],[-120.08083,42.20471],[-120.11835,42.13743],[-120.13466,42.12112],[-120.11223,42.09584],[-120.11223,42.07688]]],[[[-120.12181,43.63805],[-120.21193,43.55691],[-120.01212,43.46393],[-119.88408,43.49819],[-119.88815,43.59116],[-119.99051,43.63642],[-120.12181,43.63805]]],[[[-122.80829,45.97428],[-122.82884,46.02948],[-122.77871,46.03025],[-122.77462,46.03857],[-122.77222,46.03363],[-122.76875,46.03128],[-122.76332,46.03064],[-122.75735,46.03272],[-122.75326,46.02987],[-122.74858,46.03006],[-122.74755,46.03142],[-122.74858,46.03623],[-122.75326,46.03986],[-122.7584,46.04076],[-122.7641,46.0387],[-122.77014,46.04986],[-122.84014,46.05882],[-122.86244,46.11272],[-122.87673,46.11817],[-122.88049,46.12609],[-122.81413,46.1183],[-122.81387,46.13337],[-122.89257,46.15259],[-122.88348,46.19128],[-122.87712,46.19362],[-122.87153,46.18518],[-122.85712,46.18973],[-122.85816,46.20843],[-122.8701,46.21245],[-122.87608,46.20453],[-122.88049,46.20414],[-122.86569,46.26868],[-122.89634,46.31777],[-122.88718,46.32628],[-122.8855,46.33196],[-122.8814,46.32725],[-122.8619,46.3286],[-122.86226,46.33316],[-122.87406,46.33402],[-122.88384,46.3419],[-122.89266,46.34102],[-122.89536,46.33892],[-122.89851,46.33066],[-122.90095,46.32952],[-122.90484,46.32881],[-122.90867,46.32602],[-122.90971,46.32394],[-122.91471,46.32037],[-122.91731,46.32368],[-122.92302,46.31985],[-122.9301,46.32037],[-122.95289,46.28479],[-122.94705,46.26615],[-122.92432,46.24798],[-122.92462,46.23514],[-122.92737,46.21699],[-122.93211,46.21557],[-122.93145,46.21037],[-122.92849,46.2094],[-122.9312,46.19232],[-122.93155,46.15603],[-122.94944,46.16006],[-122.99012,46.18585],[-123.0178,46.18784],[-123.00271,46.20145],[-123.0207,46.21332],[-123.02631,46.20924],[-123.02233,46.20343],[-123.02906,46.19314],[-123.03085,46.19288],[-123.03503,46.19095],[-123.04915,46.1991],[-123.05659,46.19293],[-123.11133,46.19515],[-123.10914,46.20845],[-123.11266,46.21386],[-123.11781,46.21365],[-123.11888,46.19948],[-123.12168,46.19989],[-123.1229,46.20509],[-123.13024,46.21666],[-123.13646,46.24296],[-123.1358,46.25153],[-123.14054,46.25219],[-123.14268,46.24169],[-123.13876,46.22594],[-123.13896,46.21462],[-123.13019,46.203],[-123.13203,46.19597],[-123.14905,46.19653],[-123.15089,46.19918],[-123.14141,46.21223],[-123.14706,46.23669],[-123.15415,46.23583],[-123.14956,46.21763],[-123.15792,46.20264],[-123.16903,46.19678],[-123.18381,46.19678],[-123.20767,46.22054],[-123.21633,46.2186],[-123.19722,46.19546],[-123.26705,46.15881],[-123.31762,46.16778],[-123.34453,46.19959],[-123.34453,46.2159],[-123.40427,46.30459],[-123.40488,46.31295],[-123.44158,46.33905],[-123.47176,46.34475],[-123.51855,46.38859],[-123.52997,47.38683],[-124.32269,47.37704],[-124.61955,41.96502],[-121.95431,42.00253],[-121.96125,41.79171],[-120.92631,41.77948],[-120.91407,42.1318],[-120.75096,42.13261],[-120.74933,42.23864],[-120.29751,42.23701],[-120.29751,42.635],[-120.75259,42.63989],[-120.75422,42.91555],[-120.60416,42.92044],[-120.59927,43.24911],[-120.5487,43.24911],[-120.55033,43.3323],[-120.59927,43.33067],[-120.6009,43.96802],[-120.06319,43.96287],[-120.06381,43.93841],[-120.00351,43.93744],[-120.00147,43.96272],[-119.78004,43.96027],[-119.77841,43.80043],[-119.83892,43.79772],[-119.84544,43.21379],[-119.36997,43.22031],[-119.35121,42.74321],[-118.52098,42.753],[-118.54381,43.56366],[-118.81621,43.55877],[-118.81132,43.74308],[-119.05924,43.74797],[-119.05272,43.79201],[-119.40993,43.79201],[-119.40749,43.95757],[-119.08045,43.95594],[-119.0829,43.91109],[-118.26326,43.90538],[-118.29752,43.71127],[-117.27644,43.68844],[-117.28541,43.57834],[-116.92983,43.56611],[-116.8915,44.24465],[-117.76659,44.27564],[-117.74824,44.68219],[-117.70746,44.67893],[-117.70094,44.81839],[-117.53701,44.82002],[-117.56066,44.2948],[-116.87886,44.27686],[-116.8446,44.81676],[-116.45477,45.60907],[-116.54155,45.75541],[-116.79029,45.86714],[-116.95993,46.08734],[-116.91018,46.16645],[-117.00155,46.33897],[-117.04992,46.34707],[-117.03397,46.39198],[-117.03172,46.39703],[-117.02912,46.40809],[-117.02061,46.4114],[-117.00216,46.40936],[-116.9886,46.41079],[-116.98717,46.41339],[-116.98024,46.41589],[-116.97387,46.41991],[-116.9493,46.42399],[-116.92264,46.42114],[-116.80171,46.42091],[-116.67813,46.50351],[-117.1983,46.43062],[-117.19759,46.44876],[-117.22899,46.47466],[-117.22328,46.49994],[-117.24693,46.49974],[-117.24621,46.46609],[-117.21991,46.44632],[-117.22501,46.40452],[-117.18647,46.40493],[-117.1459,46.42287],[-117.08868,46.4126],[-117.07304,46.41764],[-117.04301,46.41581],[-117.04684,46.39909],[-117.05418,46.38176],[-117.0658,46.37299],[-117.06977,46.36514],[-117.07028,46.35556],[-117.06814,46.34924],[-117.07314,46.33405],[-116.97395,46.153],[-117.02329,46.05676],[-116.92216,45.99519],[-117.06488,45.7073],[-117.05509,45.65347],[-117.11381,45.65021],[-117.11381,45.59312],[-117.15276,45.59873],[-117.15051,45.4928],[-117.27387,45.44887],[-117.72752,45.73054],[-117.71284,45.84227],[-117.6219,45.84961],[-117.58194,45.90507],[-117.49345,45.91771],[-117.49223,45.954],[-117.65942,45.98336],[-117.77971,45.9434],[-117.88696,45.86103],[-117.99094,45.86184],[-118.0515,45.823],[-118.12796,45.81852],[-118.12755,45.75898],[-118.16914,45.76143],[-118.16792,45.77203],[-118.1879,45.77122],[-118.19157,45.75123],[-118.17485,45.7443],[-118.13061,45.74104],[-118.1039,45.73941],[-118.09024,45.73533],[-118.09003,45.72697],[-118.1249,45.70332],[-118.17587,45.66152],[-118.20217,45.67274],[-118.23398,45.65622],[-118.26456,45.68048],[-118.29168,45.65745],[-118.28597,45.61993],[-118.26599,45.59709],[-118.29698,45.56529],[-118.34714,45.63176],[-118.34102,45.69659],[-118.31044,45.69537],[-118.30921,45.70434],[-118.2978,45.70393],[-118.29657,45.71576],[-118.26191,45.71698],[-118.26089,45.73594],[-118.27843,45.74104],[-118.43782,45.69608],[-118.71042,45.6864],[-118.68401,45.70016],[-118.5499,45.7493],[-118.45984,45.79721],[-118.41253,45.80781],[-118.37176,45.86735],[-118.36075,45.89793],[-118.29856,45.88876],[-118.2273,45.85675],[-118.21986,45.85053],[-118.16012,45.82209],[-118.15105,45.82219],[-118.1485,45.82412],[-118.14911,45.82769],[-118.15594,45.8283],[-118.21211,45.85563],[-118.21792,45.86164],[-118.29183,45.89763],[-118.29,45.90843],[-118.35524,45.91659],[-118.3634,45.9961],[-118.28979,45.99937],[-118.19886,46.05768],[-118.13117,46.23832],[-118.26818,46.26238],[-118.34444,46.10987],[-118.26696,46.09377],[-118.26308,46.0795],[-118.2694,46.06339],[-118.30672,46.0271],[-118.54037,46.02343],[-118.79075,46.04912],[-118.84009,45.97898],[-118.47554,45.89375],[-118.48777,45.83829],[-118.54894,45.78855],[-118.65822,45.86684],[-118.68432,45.85542],[-118.58401,45.77305],[-118.75527,45.69883],[-118.75446,45.72575],[-118.78219,45.72819],[-118.78055,45.78365],[-118.79768,45.82851],[-118.83927,45.84074],[-118.88005,45.87255],[-118.92572,45.89212],[-118.95386,45.91129],[-118.99872,45.91781],[-119.03705,45.90476],[-119.05947,45.91985],[-118.97017,45.95573],[-118.95508,45.98428],[-118.95671,46.00752],[-118.93021,46.02465],[-118.92939,46.02964],[-118.93388,46.03872],[-118.93113,46.0482],[-118.91614,46.05482],[-118.87027,46.04973],[-118.84315,46.06115],[-118.84743,46.07644],[-118.89392,46.07317],[-118.92613,46.13842],[-118.93327,46.20489],[-118.9939,46.20899],[-118.96943,46.23346],[-118.81784,46.24803],[-118.63016,46.38607],[-118.60488,46.50025],[-118.62445,46.49943],[-118.86708,46.26037],[-118.9837,46.24008],[-119.03427,46.21521],[-119.04854,46.21276],[-119.08198,46.22867],[-119.1095,46.22826],[-119.13519,46.23866],[-119.14743,46.23906],[-119.15579,46.25033],[-119.21762,46.25221],[-119.23617,46.27026],[-119.2363,46.27747],[-119.24935,46.27869],[-119.23263,46.31539],[-119.24975,46.36188],[-119.24812,46.4993],[-119.27422,46.4993],[-119.2681,46.46423],[-119.2889,46.40184],[-119.31418,46.36841],[-119.30694,46.31641],[-119.31979,46.3159],[-119.35353,46.34251],[-119.37504,46.35485],[-119.39161,46.36079],[-119.39518,46.37095],[-119.40277,46.37534],[-119.42209,46.37503],[-119.40463,46.36395],[-119.39612,46.33092],[-119.37377,46.31091],[-119.35725,46.30013],[-119.33577,46.28384],[-119.32384,46.27044],[-119.29219,46.25091],[-119.26349,46.23104],[-119.21879,46.21457],[-119.20059,46.21253],[-119.15818,46.20269],[-118.98982,46.12104],[-118.94496,46.05294],[-119.03366,45.97342],[-119.11113,45.93591],[-119.2664,45.9406],[-119.94473,45.83315],[-120.14516,45.77137],[-120.20795,45.72896],[-120.47199,45.69246],[-120.60768,45.7521],[-120.87355,45.66096],[-120.87304,45.75088],[-121.70413,45.76839],[-121.70608,45.7828],[-121.73738,45.78735],[-121.75984,45.82605],[-121.78945,45.85384],[-121.78173,45.86416],[-121.79643,45.99649],[-121.98301,46.01506],[-122.00188,45.98597],[-122.00201,45.97857],[-122.01356,45.97727],[-122.0146,45.96766],[-122.02006,45.96714],[-122.0211,45.95857],[-122.04424,45.9589],[-122.04463,45.95201],[-122.03859,45.9474],[-122.04184,45.93669],[-122.04859,45.93227],[-122.05908,45.93208],[-122.06427,45.91383],[-122.07281,45.91026],[-122.06255,45.905],[-122.06716,45.88909],[-122.08346,45.88474],[-122.08534,45.8726],[-122.09177,45.86793],[-122.09203,45.86293],[-122.08814,45.86059],[-122.08437,45.84786],[-122.09418,45.84169],[-122.08392,45.82663],[-122.08898,45.81351],[-122.0808,45.81222],[-122.07859,45.80533],[-122.04457,45.79209],[-122.03411,45.80027],[-122.0147,45.79404],[-121.986,45.79352],[-121.9636,45.77865],[-121.85822,45.78131],[-121.85796,45.77248],[-121.83796,45.77248],[-121.8377,45.75092],[-122.17066,45.75066],[-122.16833,45.72339],[-122.24495,45.72391],[-122.24131,46.0574],[-122.28313,46.05766],[-122.33767,45.96052],[-122.51194,45.98208],[-122.55921,45.95195],[-122.58259,45.95506],[-122.61298,45.93688],[-122.69609,45.9452],[-122.74388,45.93065],[-122.80829,45.97428]],[[-123.81087,42.32575],[-123.81934,42.48305],[-123.78722,42.48305],[-123.78784,42.50507],[-123.74762,42.51562],[-123.74701,42.51011],[-123.75526,42.50797],[-123.75266,42.50476],[-123.74273,42.50247],[-123.73064,42.51378],[-123.70144,42.51593],[-123.70404,42.53535],[-123.65312,42.57617],[-123.63752,42.59422],[-123.61122,42.59483],[-123.61909,42.56933],[-123.61879,42.56016],[-123.61022,42.54792],[-123.58637,42.54395],[-123.58392,42.47666],[-123.5249,42.47605],[-123.5249,42.44333],[-123.5197,42.42253],[-123.56343,42.37971],[-123.5827,42.37452],[-123.58606,42.34424],[-123.60564,42.332],[-123.71941,42.32833],[-123.74265,42.33873],[-123.74785,42.3476],[-123.74877,42.35861],[-123.75779,42.37306],[-123.77874,42.37421],[-123.78287,42.36672],[-123.78317,42.35647],[-123.77835,42.35624],[-123.77828,42.34944],[-123.77056,42.34279],[-123.77033,42.33277],[-123.77514,42.32948],[-123.77514,42.32688],[-123.81087,42.32575]],[[-123.91254,42.56054],[-123.91881,42.67599],[-123.86682,42.67905],[-123.8396,42.65856],[-123.83379,42.62522],[-123.81146,42.60167],[-123.83899,42.57996],[-123.84969,42.56344],[-123.91254,42.56054]],[[-122.20828,45.20248],[-122.1673,45.25753],[-122.14712,45.25753],[-122.13305,45.26976],[-122.1251,45.27221],[-122.12571,45.33093],[-122.06454,45.33215],[-122.06271,45.34622],[-122.00399,45.345],[-121.97034,45.32848],[-121.96545,45.3083],[-121.95261,45.3083],[-121.9471,45.30035],[-121.94771,45.26303],[-121.93487,45.26365],[-121.8633,45.21716],[-121.81682,45.19392],[-121.78562,45.15538],[-121.78746,45.14131],[-121.82538,45.14437],[-121.82477,45.11318],[-121.84679,45.11318],[-121.84618,45.09727],[-121.88716,45.09972],[-121.88777,45.09054],[-121.96851,45.09299],[-121.96851,45.09972],[-122.02906,45.10094],[-122.02845,45.11623],[-122.05047,45.1144],[-122.04925,45.14315],[-122.09941,45.17434],[-122.13488,45.17495],[-122.14773,45.18291],[-122.1465,45.20126],[-122.20828,45.20248]],[[-121.91896,45.34744],[-121.91958,45.35723],[-121.84189,45.35907],[-121.79785,45.33827],[-121.83455,45.31992],[-121.87982,45.31747],[-121.89756,45.33643],[-121.91896,45.34744]],[[-121.58071,45.29117],[-121.52872,45.34072],[-121.5434,45.40983],[-121.52872,45.42757],[-121.52016,45.51321],[-121.44798,45.50525],[-121.48529,45.4869],[-121.47918,45.4606],[-121.44309,45.45999],[-121.48285,45.43369],[-121.47734,45.34867],[-121.42963,45.34989],[-121.40883,45.36396],[-121.29017,45.34928],[-121.27916,45.33705],[-121.20087,45.35845],[-121.1868,45.33399],[-121.16539,45.32053],[-121.19903,45.30035],[-121.25714,45.30096],[-121.25714,45.26303],[-121.33176,45.27282],[-121.35562,45.25692],[-121.45593,45.28322],[-121.45777,45.2716],[-121.4859,45.28322],[-121.54218,45.27099],[-121.55441,45.28872],[-121.58071,45.29117]],[[-121.04336,45.31136],[-121.05927,45.36335],[-120.9455,45.42635],[-120.94611,45.44776],[-120.90268,45.47895],[-120.91063,45.51259],[-120.84641,45.51076],[-120.87699,45.40127],[-120.92898,45.35784],[-120.96874,45.33093],[-121.04336,45.31136]],[[-122.25141,45.13107],[-122.2251,45.17327],[-122.17128,45.17205],[-122.17128,45.14208],[-122.13335,45.14147],[-122.09115,45.11578],[-122.0887,45.08519],[-122.07219,45.08519],[-122.0728,45.0699],[-122.01591,45.06807],[-121.94863,45.05277],[-121.92478,45.05277],[-121.88746,45.06623],[-121.82691,45.06745],[-121.79694,45.09865],[-121.72782,45.09926],[-121.71926,45.14819],[-121.66849,45.13107],[-121.60916,45.13168],[-121.3963,45.08152],[-121.20362,45.08213],[-121.17181,45.10293],[-121.17059,45.14758],[-121.12563,45.15034],[-121.1501,45.1011],[-121.1241,45.02556],[-121.06691,45.0251],[-121.10484,44.91714],[-121.14612,44.85536],[-121.27977,44.8],[-121.29292,44.76789],[-121.26142,44.7159],[-121.24338,44.69388],[-121.29231,44.63149],[-121.29201,44.60243],[-121.31647,44.59479],[-121.35348,44.59509],[-121.36632,44.60121],[-121.40669,44.60672],[-121.44309,44.60335],[-121.46847,44.63271],[-121.48315,44.62751],[-121.55655,44.67706],[-121.61344,44.64831],[-121.59876,44.6214],[-121.62322,44.57552],[-121.64891,44.56879],[-121.68317,44.59815],[-121.68133,44.65626],[-121.69662,44.67155],[-121.69785,44.69113],[-121.71436,44.71926],[-121.80611,44.72844],[-121.83058,44.71376],[-121.89419,44.72049],[-121.93946,44.71376],[-122.0153,44.74923],[-122.11195,44.73578],[-122.14375,44.75535],[-122.15904,44.8],[-122.13886,44.82692],[-122.14069,44.85016],[-122.12907,44.86056],[-122.1358,44.86851],[-122.20553,44.86545],[-122.1988,44.88197],[-122.24651,44.89603],[-122.23183,44.95904],[-122.20186,44.98411],[-122.20064,45.00858],[-122.22877,45.01164],[-122.22877,45.05323],[-122.24162,45.05384],[-122.24162,45.08504],[-122.25018,45.08565],[-122.25141,45.13107]],[[-122.59669,44.31281],[-122.57712,44.35349],[-122.54653,44.37612],[-122.50831,44.36419],[-122.50616,44.37765],[-122.382,44.38896],[-122.35019,44.37612],[-122.34683,44.36358],[-122.28077,44.35532],[-122.27312,44.38682],[-122.22816,44.38743],[-122.21776,44.37826],[-122.18596,44.37948],[-122.17281,44.40242],[-122.13121,44.39691],[-122.12387,44.35043],[-122.20584,44.31679],[-122.25232,44.32902],[-122.29208,44.27336],[-122.35814,44.26602],[-122.4138,44.29599],[-122.45173,44.26663],[-122.59669,44.31281]],[[-122.4872,44.41221],[-122.45111,44.4379],[-122.36976,44.45502],[-122.33184,44.48744],[-122.3141,44.48499],[-122.2982,44.45013],[-122.28474,44.44952],[-122.26456,44.46787],[-122.23764,44.47398],[-122.21012,44.47215],[-122.19177,44.4434],[-122.17525,44.44157],[-122.16547,44.41526],[-122.17525,44.40548],[-122.19483,44.42199],[-122.27862,44.41955],[-122.27985,44.42994],[-122.31043,44.44034],[-122.38934,44.41526],[-122.4872,44.41221]],[[-122.35929,43.70504],[-122.18833,43.61329],[-122.08526,43.58944],[-122.129,43.55763],[-122.192,43.57751],[-122.22625,43.56528],[-122.27518,43.56925],[-122.33513,43.56253],[-122.34675,43.62644],[-122.37274,43.64449],[-122.37641,43.65642],[-122.3859,43.66651],[-122.38406,43.6766],[-122.36112,43.67446],[-122.35929,43.70504]],[[-122.9146,43.99352],[-122.88326,43.96691],[-122.86919,43.94398],[-122.88058,43.94841],[-122.90826,43.97938],[-122.9146,43.99352]],[[-122.87599,43.98144],[-122.81383,43.96959],[-122.80902,43.96554],[-122.81529,43.96064],[-122.8581,43.97395],[-122.86927,43.97486],[-122.87599,43.98144]],[[-122.84984,43.95315],[-122.84281,43.96095],[-122.81116,43.94642],[-122.75427,43.93954],[-122.75412,43.95025],[-122.73042,43.95682],[-122.72216,43.95254],[-122.6613,43.96951],[-122.65671,43.95407],[-122.67078,43.94734],[-122.67858,43.95009],[-122.6954,43.93939],[-122.69096,43.93388],[-122.69601,43.92807],[-122.69326,43.92119],[-122.72262,43.91905],[-122.80061,43.93664],[-122.80137,43.92517],[-122.81712,43.94229],[-122.84984,43.95315]],[[-122.41097,43.93411],[-122.36877,43.93105],[-122.21952,44.0277],[-122.17548,43.95919],[-122.04948,43.94451],[-122.03419,43.92616],[-122.01584,43.92188],[-122.01033,43.92983],[-122.03725,43.96286],[-122.14062,43.97142],[-122.20851,44.10905],[-122.10942,44.09987],[-122.05743,44.06746],[-122.05988,44.05828],[-122.03725,44.05767],[-121.97241,44.07785],[-121.93387,44.06929],[-121.88372,44.07296],[-121.83295,44.05706],[-121.82622,44.0014],[-121.83356,43.991],[-121.82683,43.97142],[-121.85925,43.96592],[-121.8721,43.90781],[-121.91614,43.91943],[-121.97608,43.85582],[-121.96507,43.76285],[-121.98831,43.68027],[-121.96996,43.62461],[-122.00605,43.62644],[-122.04764,43.61176],[-122.08129,43.59158],[-122.09474,43.69495],[-122.192,43.74021],[-122.23971,43.79221],[-122.30454,43.80383],[-122.36265,43.79893],[-122.4122,43.77324],[-122.41648,43.76162],[-122.444,43.76346],[-122.39691,43.79893],[-122.39935,43.82401],[-122.43299,43.82524],[-122.43055,43.90231],[-122.41097,43.93411]],[[-122.41954,43.25822],[-122.34491,43.27596],[-122.34705,43.29462],[-122.40088,43.31511],[-122.42198,43.34447],[-122.42871,43.37107],[-122.4125,43.38698],[-122.34614,43.35639],[-122.33696,43.36557],[-122.26693,43.37138],[-122.19995,43.40441],[-122.13297,43.38514],[-122.06141,43.39676],[-122.00727,43.33957],[-121.99504,43.27963],[-121.98403,43.25669],[-121.94366,43.25608],[-121.94366,43.26893],[-121.77973,43.27015],[-121.79197,43.23345],[-121.78463,43.21938],[-121.77056,43.21877],[-121.76444,43.19675],[-121.74732,43.1943],[-121.74426,43.13925],[-121.72774,43.13681],[-121.7253,43.10806],[-121.71062,43.10745],[-121.70878,43.07992],[-121.6574,43.07931],[-121.66107,43.04016],[-121.73325,42.96982],[-121.73814,42.95392],[-121.78769,42.95208],[-121.79258,42.9056],[-121.77423,42.88235],[-121.77912,42.86156],[-121.79503,42.86156],[-121.82194,42.84076],[-121.84396,42.80528],[-121.85619,42.70619],[-121.90268,42.6854],[-121.92959,42.65971],[-121.99565,42.80039],[-121.98954,42.84198],[-121.96507,42.84198],[-121.96262,42.9215],[-121.99443,43.00224],[-121.99443,43.06952],[-122.00177,43.08665],[-122.17304,43.08787],[-122.19506,43.11112],[-122.25255,43.12457],[-122.28314,43.13925],[-122.26968,43.18452],[-122.36143,43.21265],[-122.41954,43.25822]]]],"type":"MultiPolygon"}}, @@ -713,15 +728,14 @@ {"properties":{"name":"LINZ Hamilton 2016-2017","id":"LINZ_Hamilton_2016","url":"https://basemaps.linz.govt.nz/v1/tiles/hamilton-urban-2016-2017-0.1m/WebMercatorQuad/{zoom}/{x}/{y}.webp?api=d01egend5f8dv4zcbfj6z2t7rs3","attribution":{"required":true,"text":"Sourced from LINZ CC-BY 4.0","url":"https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data"},"type":"tms","category":"historicphoto","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[175.17048,-37.67214],[175.17494,-37.84531],[175.26798,-37.8388],[175.26695,-37.85507],[175.28275,-37.85507],[175.28343,-37.86835],[175.37956,-37.86699],[175.37819,-37.7604],[175.33115,-37.7604],[175.33047,-37.74167],[175.31536,-37.74167],[175.31502,-37.72022],[175.29957,-37.71995],[175.30025,-37.70637],[175.28206,-37.70664],[175.2824,-37.68382],[175.20721,-37.68273],[175.20653,-37.67023],[175.17048,-37.67214]]],"type":"Polygon"}}, {"properties":{"name":"LINZ NZ Topo50 Gridless Maps","id":"LINZ_NZ_Topo50_Gridless_Maps","url":"https://map.cazzaserver.com/linz_topo/{zoom}/{x}/{y}.png","attribution":{"required":true,"text":"CC BY 4.0 Land Information New Zealand","url":"https://data.linz.govt.nz/layer/2343-nz-mainland-topo50-gridless-maps"},"type":"tms","category":"map","min_zoom":6,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[167.25037,-47.21957],[167.24487,-47.28016],[167.50305,-47.37975],[168.25012,-47.1561],[168.74451,-46.7963],[169.32678,-46.75492],[169.78271,-46.60417],[170.42542,-46.11133],[170.80444,-45.95115],[170.95276,-45.44086],[171.30981,-44.91036],[171.40869,-44.39062],[172.56226,-43.92955],[172.90283,-43.9691],[173.16101,-43.90977],[173.25989,-43.69568],[172.97424,-43.5366],[172.76001,-43.37711],[173.15002,-43.17714],[173.70483,-42.63396],[174.36401,-41.7836],[174.32007,-41.40978],[174.84741,-41.52914],[175.07263,-41.70573],[175.50659,-41.67291],[176.2262,-41.10833],[176.83044,-40.42604],[177.17102,-39.67337],[177.03918,-39.39375],[177.44568,-39.18118],[177.60498,-39.33005],[177.97852,-39.36828],[178.33557,-38.65978],[178.70911,-37.74466],[178.62671,-37.54458],[178.3136,-37.43125],[177.62146,-37.37889],[177.03918,-37.39635],[176.56128,-37.37016],[176.33606,-37.05956],[176.00647,-36.29742],[175.67688,-36.05354],[174.67163,-35.1783],[173.19397,-34.28445],[172.67761,-34.23451],[172.38647,-34.40238],[172.47986,-34.71904],[172.98523,-35.32185],[173.56201,-36.14231],[174.30908,-37.07709],[174.55627,-38.05242],[174.47937,-38.65549],[174.32556,-38.86537],[173.79822,-38.95941],[173.60596,-39.23225],[173.69934,-39.56335],[174.58923,-39.95607],[174.98474,-40.21664],[174.98474,-40.49292],[174.72107,-40.80549],[174.14978,-40.65147],[173.28186,-40.4344],[172.58972,-40.35073],[172.08435,-40.53468],[171.76575,-40.82628],[171.57349,-41.39742],[171.28235,-41.65239],[170.87585,-42.53284],[170.354,-42.87194],[168.27759,-43.92955],[167.6239,-44.47691],[166.55273,-45.38688],[166.27258,-45.91677],[166.48132,-46.22545],[167.67883,-46.47192],[167.25037,-47.21957]]],"type":"Polygon"}}, {"properties":{"name":"LINZ Wellington 2017","id":"LINZ_Wellington_2017","url":"https://basemaps.linz.govt.nz/v1/tiles/wellington-urban-2017-0.1m/WebMercatorQuad/{zoom}/{x}/{y}.webp?api=d01egend5f8dv4zcbfj6z2t7rs3","attribution":{"required":true,"text":"Sourced from LINZ CC-BY 4.0","url":"https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data"},"type":"tms","category":"historicphoto","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[174.85574,-41.22625],[174.86398,-41.22631],[174.86398,-41.22328],[174.85514,-41.22328],[174.85514,-41.21999],[174.85205,-41.21999],[174.85205,-41.21372],[174.84913,-41.21359],[174.8487,-41.19416],[174.84561,-41.19403],[174.84561,-41.18789],[174.84269,-41.18783],[174.84261,-41.1813],[174.85771,-41.17194],[174.85677,-41.16799],[174.84535,-41.16806],[174.84501,-41.16173],[174.842,-41.16192],[174.84183,-41.14887],[174.83231,-41.14906],[174.81943,-41.16218],[174.81068,-41.1625],[174.81042,-41.15914],[174.80527,-41.15927],[174.80518,-41.16606],[174.80227,-41.16573],[174.80261,-41.17568],[174.80776,-41.17529],[174.80844,-41.18117],[174.79497,-41.19874],[174.79488,-41.21101],[174.78682,-41.21792],[174.78664,-41.23393],[174.77875,-41.23393],[174.7784,-41.23716],[174.7724,-41.23754],[174.7724,-41.24071],[174.7615,-41.24077],[174.76141,-41.24722],[174.753,-41.24755],[174.75308,-41.25432],[174.75592,-41.254],[174.756,-41.26381],[174.75051,-41.264],[174.75051,-41.27058],[174.72519,-41.27058],[174.72502,-41.28039],[174.71403,-41.28064],[174.71386,-41.29683],[174.71678,-41.2969],[174.71686,-41.30315],[174.7227,-41.30315],[174.72261,-41.29993],[174.73472,-41.29999],[174.73454,-41.30605],[174.73111,-41.30599],[174.73171,-41.32185],[174.70965,-41.33899],[174.70957,-41.34202],[174.6924,-41.34234],[174.69223,-41.34769],[174.70236,-41.35826],[174.70957,-41.35839],[174.71446,-41.3638],[174.71781,-41.36386],[174.72201,-41.35832],[174.72845,-41.35806],[174.7342,-41.35091],[174.79214,-41.35162],[174.82312,-41.3455],[174.83316,-41.33364],[174.84097,-41.33377],[174.84089,-41.32101],[174.83548,-41.32062],[174.83488,-41.30489],[174.8378,-41.30489],[174.83754,-41.29812],[174.84063,-41.29819],[174.84046,-41.292],[174.82784,-41.28219],[174.79119,-41.28271],[174.79076,-41.26974],[174.79566,-41.26955],[174.79609,-41.26019],[174.85574,-41.22625]]],"type":"Polygon"}}, -{"properties":{"name":"National Geographic Institute Argenmap gray","id":"ign-argenmap-gray","url":"https://wms.ign.gob.ar/geoserver/gwc/service/tms/1.0.0/mapabase_gris@EPSG%3A3857@png/{zoom}/{x}/{-y}.png","attribution":{"required":true,"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"tms","category":"map","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, -{"properties":{"name":"National Geographic Institute Argenmap (TMS)","id":"ign-argenmap","url":"https://wms.ign.gob.ar/geoserver/gwc/service/tms/1.0.0/capabaseargenmap@EPSG:3857@png/{zoom}/{x}/{-y}.png","attribution":{"required":true,"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"tms","category":"map","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, -{"properties":{"name":"National Geographic Institute UAV Orthophotos (WMS)","id":"ign-uav-orthophotos-wms","url":"https://imagenes.ign.gob.ar/geoserver/ortomosaicos_vant/ows?service=wms&version=1.3.0&request=GetCapabilities","attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"http://www.ign.gob.ar/"},"type":"wms_endpoint","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, +{"properties":{"name":"IGN Argenmap gris","id":"ign-argenmap-gray","url":"https://wms.ign.gob.ar/geoserver/gwc/service/tms/1.0.0/mapabase_gris@EPSG%3A3857@png/{zoom}/{x}/{-y}.png","attribution":{"required":true,"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"tms","category":"map","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, +{"properties":{"name":"IGN Argenmap","id":"ign-argenmap","url":"https://wms.ign.gob.ar/geoserver/gwc/service/tms/1.0.0/capabaseargenmap@EPSG:3857@png/{zoom}/{x}/{-y}.png","attribution":{"required":true,"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"tms","category":"map","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, +{"properties":{"name":"IGN ortofotos VANT","id":"ign-uav-orthophotos-wms","url":"https://imagenes.ign.gob.ar/geoserver/ortomosaicos_vant/ows?service=wms&version=1.3.0&request=GetCapabilities","attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"http://www.ign.gob.ar/"},"type":"wms_endpoint","category":"photo","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, {"properties":{"name":"National Geographic Institute UAV photos mosaic","id":"ign-uav-mosaic","url":"https://imagenes.ign.gob.ar/geoserver/gwc/service/tms/1.0.0/mosaicos_vuelos_vant@EPSG%3A3857@png/{zoom}/{x}/{-y}.png","attribution":{"required":true,"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"tms","category":"photo","max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, -{"properties":{"name":"National Geographic Institute Orthophotos Mosaic","id":"ign-orthophotos-mosaic","url":"https://imagenes.ign.gob.ar/geoserver/gwc/service/tms/1.0.0/mosaicos_vuelos@EPSG%3A3857@png/{zoom}/{x}/{-y}.png","attribution":{"required":true,"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"tms","category":"photo","max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, -{"properties":{"name":"National Geographic Institute Orthophotos (WMS)","id":"ign-orthophotos-wms","url":"https://imagenes.ign.gob.ar/geoserver/ortomosaicos_fotogrametria/ows?service=wms&version=1.3.0&request=GetCapabilities","attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"http://www.ign.gob.ar/"},"type":"wms_endpoint","category":"photo","max_zoom":22},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, -{"properties":{"name":"IGN (WMS)","id":"ign-wms","url":"https://wms.ign.gob.ar/geoserver/ows?service=wms&version=1.3.0&request=GetCapabilities","attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"wms_endpoint","category":"map","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, -{"properties":{"name":"Ministerio de Agricultura, Ganadería y Pesca (WMS)","id":"Agroindustria-wms","url":"https://geoadmin.agroindustria.gob.ar/geoserver/ows?service=wms&version=1.3.0&request=GetCapabilities","attribution":{"text":"Ministerio de Agricultura, Ganadería y Pesca","url":"https://www.argentina.gob.ar/agricultura"},"type":"wms_endpoint","category":"other","min_zoom":1,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, -{"properties":{"name":"Secretary of Energy (WMS)","id":"Secretaria-de-Energia-wms","url":"https://sig.se.gob.ar/cgi-bin/mapserv6?map=/var/www/html/visor/geofiles/map/mapase.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetCapabilities","attribution":{"text":"Secretaría de Energía","url":"https://www.argentina.gob.ar/economia/energia/informacion-geografica-energia"},"type":"wms_endpoint","category":"other","min_zoom":1,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, +{"properties":{"name":"IGN ortofotos","id":"ign-orthophotos-mosaic","url":"https://imagenes.ign.gob.ar/geoserver/gwc/service/tms/1.0.0/mosaicos_vuelos@EPSG%3A3857@png/{zoom}/{x}/{-y}.png","attribution":{"required":true,"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"tms","category":"photo","max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, +{"properties":{"name":"IGN ortofotos","id":"ign-orthophotos-wms","url":"https://imagenes.ign.gob.ar/geoserver/ortomosaicos_fotogrametria/ows?service=wms&version=1.3.0&request=GetCapabilities","attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"http://www.ign.gob.ar/"},"type":"wms_endpoint","category":"photo","max_zoom":22},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, +{"properties":{"name":"IGN capas vectoriales","id":"ign-wms","url":"https://wms.ign.gob.ar/geoserver/ows?service=wms&version=1.3.0&request=GetCapabilities","attribution":{"text":"Instituto Geográfico Nacional de la República Argentina","url":"https://www.ign.gob.ar/"},"type":"wms_endpoint","category":"map","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, +{"properties":{"name":"Secretaría de Energía","id":"Secretaria-de-Energia-wms","url":"https://sig.se.gob.ar/cgi-bin/mapserv6?map=/var/www/html/visor/geofiles/map/mapase.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetCapabilities","attribution":{"text":"Secretaría de Energía","url":"https://www.argentina.gob.ar/economia/energia/informacion-geografica-energia"},"type":"wms_endpoint","category":"other","min_zoom":1,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-55.5438,-35.77219],[-57.84696,-34.50017],[-58.241,-34.16246],[-58.33697,-34.00477],[-58.41858,-33.91742],[-58.42434,-33.86887],[-58.43016,-33.71813],[-58.44465,-33.5853],[-58.37567,-33.17644],[-58.35418,-33.1221],[-58.31012,-33.1048],[-58.2723,-33.1061],[-58.18964,-33.09402],[-58.0758,-33.00587],[-58.14327,-32.45845],[-58.04227,-32.29153],[-58.11905,-32.14059],[-58.12179,-31.89772],[-57.98622,-31.77449],[-57.92613,-31.57745],[-58.06637,-31.47395],[-58.00944,-31.41341],[-57.98203,-31.39213],[-57.97778,-31.38599],[-57.97736,-31.38022],[-57.98302,-31.3734],[-57.99,-31.36053],[-57.93419,-31.27388],[-57.75273,-30.91942],[-57.75241,-30.68756],[-57.82983,-30.53118],[-57.60863,-30.32424],[-57.61942,-30.20517],[-57.3045,-30.03966],[-57.24463,-29.86452],[-57.05958,-29.72263],[-56.76306,-29.48638],[-56.569,-29.13892],[-56.37343,-29.10817],[-56.13558,-28.7265],[-55.87339,-28.49468],[-55.83413,-28.42136],[-55.65957,-28.46539],[-55.61633,-28.32205],[-55.66542,-28.26547],[-55.41589,-28.14304],[-55.19076,-27.92946],[-55.0044,-27.90341],[-54.79439,-27.6397],[-54.26461,-27.49923],[-54.15393,-27.36033],[-53.76351,-27.18917],[-53.61669,-26.95395],[-53.67264,-26.61495],[-53.59024,-26.19274],[-53.766,-25.94301],[-53.80059,-25.65093],[-54.11451,-25.4396],[-54.44288,-25.5795],[-54.62995,-25.55106],[-54.71357,-25.66721],[-54.65309,-25.84138],[-54.73235,-25.98554],[-54.72264,-26.31238],[-54.8532,-26.59894],[-54.97304,-26.63717],[-55.20788,-26.89214],[-55.40826,-26.91763],[-55.59643,-27.06538],[-55.67524,-27.17004],[-55.65541,-27.30153],[-55.76168,-27.38106],[-56.09353,-27.25219],[-56.32355,-27.36897],[-56.40607,-27.52701],[-56.60886,-27.36586],[-56.99114,-27.41858],[-57.90834,-27.24265],[-58.56858,-27.20629],[-58.32384,-26.87074],[-58.3167,-26.86081],[-58.32056,-26.82169],[-58.28224,-26.80127],[-58.13896,-26.66834],[-58.08597,-26.14202],[-57.84986,-26.01142],[-57.77786,-25.77559],[-57.72537,-25.71924],[-57.71855,-25.64914],[-57.69808,-25.65933],[-57.68626,-25.66287],[-57.67513,-25.66052],[-57.67006,-25.65579],[-57.66569,-25.60273],[-57.6367,-25.61807],[-57.6122,-25.61963],[-57.60444,-25.59855],[-57.59952,-25.57438],[-57.58142,-25.57145],[-57.56809,-25.55797],[-57.5661,-25.54112],[-57.57566,-25.52264],[-57.57722,-25.50575],[-57.56806,-25.49501],[-57.56523,-25.48014],[-57.55763,-25.46897],[-57.55811,-25.45717],[-57.55285,-25.44705],[-57.55477,-25.43999],[-57.56698,-25.43147],[-57.57673,-25.42029],[-57.59954,-25.39704],[-57.61504,-25.38841],[-57.63902,-25.38287],[-57.64822,-25.3679],[-57.67993,-25.33318],[-57.69143,-25.32127],[-57.69763,-25.3199],[-57.69612,-25.30832],[-57.70246,-25.29847],[-57.69733,-25.29337],[-57.69281,-25.28588],[-57.69741,-25.28283],[-57.70175,-25.28459],[-57.70273,-25.28239],[-57.70438,-25.28159],[-57.70692,-25.2845],[-57.71008,-25.28146],[-57.71111,-25.27265],[-57.71837,-25.27146],[-57.71597,-25.26456],[-57.75374,-25.17277],[-57.76981,-25.15013],[-57.8565,-25.08005],[-58.2349,-24.91756],[-58.332,-24.98132],[-58.46645,-24.84584],[-59.12256,-24.59772],[-59.46607,-24.33428],[-60.03728,-24.00408],[-60.28746,-24.01906],[-60.95137,-23.75997],[-61.05842,-23.56621],[-61.45605,-23.36182],[-61.93761,-22.97376],[-62.18511,-22.50843],[-62.74618,-22.10033],[-62.79606,-21.98778],[-63.66566,-21.99839],[-63.67191,-22.01399],[-63.66821,-22.01634],[-63.67201,-22.02293],[-63.67659,-22.03287],[-63.68156,-22.05185],[-63.68507,-22.04019],[-63.68079,-22.03116],[-63.68839,-22.01037],[-63.70932,-21.99896],[-63.94118,-21.99823],[-63.97147,-22.07619],[-63.99022,-22.07925],[-64.0029,-22.10735],[-64.03654,-22.19469],[-64.04702,-22.23757],[-64.06522,-22.23093],[-64.10712,-22.32023],[-64.10381,-22.34114],[-64.33114,-22.68517],[-64.52643,-22.29504],[-64.59768,-22.19269],[-64.99026,-22.06739],[-65.47487,-22.08487],[-65.57523,-22.07312],[-65.58512,-22.08432],[-65.58691,-22.09645],[-65.59015,-22.09735],[-65.59229,-22.09511],[-65.60015,-22.09543],[-65.60256,-22.09658],[-65.60607,-22.09358],[-65.60973,-22.09505],[-65.61493,-22.09152],[-65.71368,-22.09054],[-65.89675,-21.88263],[-66.21845,-21.72575],[-66.28978,-21.76554],[-66.38248,-22.07602],[-66.73734,-22.22282],[-66.84345,-22.39746],[-67.03366,-22.53815],[-67.08088,-22.62433],[-67.18775,-22.81375],[-66.99882,-23.00044],[-67.32648,-24.02538],[-68.28078,-24.34935],[-68.55162,-24.58836],[-68.62011,-24.81717],[-68.44595,-25.0658],[-68.55582,-25.14476],[-68.63052,-25.43524],[-68.45177,-26.1377],[-68.60352,-26.25391],[-68.64137,-26.50722],[-68.3489,-26.92771],[-68.60693,-27.09636],[-68.76133,-27.08588],[-68.84844,-27.13115],[-69.20484,-27.90816],[-69.70118,-28.37779],[-69.85112,-29.06923],[-69.97565,-29.18743],[-70.03755,-29.35428],[-69.95038,-29.73744],[-70.01824,-30.10003],[-69.847,-30.16294],[-69.97775,-30.32288],[-70.20264,-30.32249],[-70.35748,-31.0002],[-70.5377,-31.08557],[-70.59941,-31.29869],[-70.62295,-31.59949],[-70.5117,-31.85844],[-70.29402,-31.95849],[-70.41077,-31.9809],[-70.44343,-32.05325],[-70.28486,-32.45564],[-70.19589,-32.50891],[-70.19517,-32.75732],[-70.00981,-32.90747],[-70.06223,-33.01233],[-70.14906,-33.04145],[-70.02502,-33.37388],[-69.83371,-33.34911],[-69.95948,-33.77235],[-69.87771,-34.20233],[-70.06901,-34.24694],[-70.07752,-34.38253],[-70.35687,-34.72532],[-70.32933,-34.83081],[-70.42629,-35.12462],[-70.63128,-35.23712],[-70.59764,-35.34459],[-70.50607,-35.38014],[-70.42788,-35.73781],[-70.44219,-36.14876],[-70.59553,-36.12118],[-70.77062,-36.35412],[-70.90086,-36.34336],[-70.96469,-36.43366],[-71.07654,-36.43571],[-71.2345,-36.83303],[-71.20495,-36.91075],[-71.27586,-36.9637],[-71.17697,-37.1077],[-71.27241,-37.28686],[-71.18031,-37.4828],[-71.26668,-37.68295],[-71.23505,-37.86541],[-71.08724,-38.09054],[-71.03346,-38.45451],[-70.89411,-38.57644],[-70.95844,-38.70272],[-71.25594,-38.74909],[-71.47673,-38.89162],[-71.45202,-39.31025],[-71.58545,-39.55159],[-71.68665,-39.50983],[-71.77001,-39.61946],[-71.74365,-39.86164],[-71.67779,-39.92156],[-71.8856,-40.10093],[-71.87961,-40.24227],[-71.76665,-40.35676],[-71.87117,-40.38959],[-71.91507,-40.61832],[-72.02097,-40.73647],[-71.9023,-41.06778],[-71.94135,-41.60926],[-71.83133,-41.78089],[-71.78041,-42.12128],[-72.06032,-42.10593],[-72.17802,-42.13207],[-72.20024,-42.17229],[-72.14365,-42.40333],[-72.0441,-42.41231],[-72.06314,-42.53751],[-72.18733,-42.66619],[-72.18001,-42.8948],[-71.94149,-43.11061],[-71.73869,-43.19234],[-71.80268,-43.29535],[-71.91512,-43.319],[-71.95542,-43.44292],[-71.87866,-43.56195],[-71.63263,-43.65888],[-71.78725,-43.80985],[-71.70007,-43.98287],[-71.9047,-44.10354],[-71.86374,-44.44274],[-71.40536,-44.44891],[-71.20209,-44.5359],[-71.28469,-44.60892],[-71.2897,-44.75036],[-71.47444,-44.68048],[-72.11766,-44.73884],[-72.07949,-44.93988],[-71.61593,-45.03146],[-71.40574,-45.27206],[-71.58236,-45.36316],[-71.58354,-45.45607],[-71.7885,-45.50505],[-71.8548,-45.61169],[-71.77408,-45.85187],[-71.66595,-45.89232],[-71.63332,-45.97063],[-71.97019,-46.14972],[-71.7985,-46.26925],[-71.71488,-46.64453],[-72.00759,-46.78833],[-72.00956,-47.08473],[-71.93566,-47.15037],[-72.04726,-47.14867],[-72.07162,-47.2755],[-72.38448,-47.41759],[-72.3839,-47.57888],[-72.5731,-47.72062],[-72.57678,-47.96054],[-72.37166,-48.15995],[-72.3428,-48.29046],[-72.42158,-48.31422],[-72.46698,-48.45706],[-72.63621,-48.45823],[-72.59462,-48.77255],[-72.80952,-48.90039],[-72.96385,-48.89084],[-73.16148,-49.13062],[-73.02788,-49.23743],[-73.02779,-49.70085],[-73.52684,-49.7716],[-73.61453,-49.91795],[-73.53993,-50.01443],[-73.57703,-50.15788],[-73.39438,-50.58008],[-73.22709,-50.66897],[-73.22154,-50.87193],[-72.76983,-50.68829],[-72.59646,-50.73916],[-72.49148,-50.66866],[-72.39293,-50.69005],[-72.31217,-50.90093],[-72.46252,-51.08654],[-72.3623,-51.25935],[-72.49598,-51.597],[-72.02273,-51.88832],[-72.09055,-51.93758],[-72.05562,-52.01749],[-70.01629,-52.05707],[-68.51023,-52.39432],[-68.66375,-52.66716],[-68.61804,-54.92151],[-68.18753,-54.89288],[-67.96138,-54.88571],[-67.71808,-54.91261],[-67.47633,-54.92785],[-67.23387,-54.9245],[-66.86233,-55.04496],[-66.6896,-55.17191],[-66.04226,-55.24192],[-61.52546,-55.68296],[-64.31743,-49.44788],[-55.5438,-35.77219]]],"type":"Polygon"}}, {"properties":{"name":"Cartas Topográficas do Exército Brasileiro","id":"BDGEx_ctm_multi","url":"https://bdgex.eb.mil.br/mapcache?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ctmmultiescalas_mercator&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"text":"BDGEx","url":"https://bdgex.eb.mil.br/"},"type":"wms","category":"map","min_zoom":1},"type":"Feature","geometry":{"coordinates":[[[-69.45659,-1.49119],[-69.94793,-4.23168],[-69.99182,-4.37482],[-70.02826,-4.3703],[-70.07948,-4.31428],[-70.04189,-4.29409],[-70.10881,-4.25454],[-70.11749,-4.28585],[-70.15508,-4.27308],[-70.19194,-4.36179],[-70.21457,-4.29749],[-70.29141,-4.28709],[-70.28769,-4.16555],[-70.32281,-4.14206],[-70.33892,-4.17997],[-70.43146,-4.13217],[-70.43435,-4.16266],[-70.48535,-4.16132],[-70.50417,-4.20098],[-70.51036,-4.14824],[-70.54796,-4.13671],[-70.56195,-4.17766],[-70.62521,-4.19151],[-70.64256,-4.12805],[-70.68147,-4.20791],[-70.75901,-4.15944],[-70.8458,-4.21872],[-70.81677,-4.23005],[-70.86447,-4.25245],[-70.84483,-4.27905],[-70.9357,-4.38432],[-70.99595,-4.34632],[-70.99389,-4.38654],[-71.10616,-4.37764],[-71.11491,-4.41119],[-71.14478,-4.38158],[-71.19422,-4.42471],[-71.20263,-4.37987],[-71.26975,-4.385],[-71.27782,-4.44217],[-71.32091,-4.42009],[-71.30752,-4.46288],[-71.35026,-4.42728],[-71.42562,-4.47058],[-71.43438,-4.42882],[-71.50716,-4.43909],[-71.49428,-4.48701],[-71.53703,-4.46442],[-71.59625,-4.52928],[-71.6335,-4.51524],[-71.61548,-4.4687],[-71.65032,-4.50395],[-71.65479,-4.47246],[-71.70817,-4.51165],[-71.75109,-4.46887],[-71.76637,-4.50446],[-71.9073,-4.51644],[-71.88549,-4.53803],[-71.91909,-4.5298],[-71.94743,-4.60877],[-71.99464,-4.60996],[-72.00689,-4.64622],[-72.04335,-4.62384],[-72.12601,-4.73454],[-72.36895,-4.80387],[-72.38202,-4.87296],[-72.598,-4.98386],[-72.6212,-5.0518],[-72.72765,-5.05199],[-72.73986,-5.08859],[-72.88725,-5.16307],[-72.86052,-5.27117],[-72.95888,-5.46613],[-72.95912,-5.65689],[-73.05303,-5.79517],[-73.15207,-5.86796],[-73.1868,-6.00512],[-73.23821,-6.04399],[-73.24664,-6.14963],[-73.10473,-6.40666],[-73.13523,-6.51046],[-73.18797,-6.52302],[-73.22741,-6.58884],[-73.35281,-6.59327],[-73.39115,-6.64193],[-73.53639,-6.6834],[-73.71046,-6.84019],[-73.79842,-7.11306],[-73.7003,-7.30429],[-73.87014,-7.37882],[-73.96394,-7.34764],[-73.91981,-7.46568],[-73.948,-7.52661],[-73.99094,-7.53635],[-73.82217,-7.71788],[-73.6843,-7.77644],[-73.69706,-7.86527],[-73.76164,-7.85803],[-73.7725,-7.90237],[-73.73175,-7.9684],[-73.62739,-8.02187],[-73.53744,-8.34587],[-73.41286,-8.41099],[-73.38956,-8.46878],[-73.3055,-8.47197],[-73.28745,-8.61948],[-73.20907,-8.6857],[-73.14992,-8.6839],[-73.05901,-8.90561],[-72.99931,-8.91778],[-72.94091,-8.98494],[-72.9582,-9.14302],[-73.02612,-9.17786],[-73.0093,-9.22236],[-73.07352,-9.23461],[-73.2038,-9.40715],[-72.71676,-9.4122],[-72.51954,-9.49128],[-72.35688,-9.4946],[-72.2829,-9.53995],[-72.28821,-9.60316],[-72.25282,-9.61633],[-72.26296,-9.75085],[-72.15136,-9.79742],[-72.1804,-9.99967],[-71.22052,-9.96968],[-71.13974,-9.85702],[-70.99391,-9.81721],[-70.96337,-9.74891],[-70.79332,-9.63846],[-70.75067,-9.56043],[-70.6632,-9.52601],[-70.59581,-9.4425],[-70.49665,-9.42489],[-70.50506,-9.50557],[-70.56894,-9.53127],[-70.55282,-9.57093],[-70.59972,-9.56264],[-70.53663,-9.76584],[-70.62338,-9.82054],[-70.62103,-10.99982],[-70.53033,-10.93465],[-70.43675,-11.03923],[-70.30672,-11.06983],[-70.15869,-11.04096],[-69.93442,-10.9219],[-69.76903,-10.92972],[-69.73653,-10.97445],[-69.41453,-10.92575],[-68.9118,-11.02192],[-68.75767,-11.00079],[-68.71576,-11.14483],[-68.27819,-10.98926],[-68.10333,-10.77541],[-68.10456,-10.71426],[-68.03289,-10.65486],[-67.86386,-10.64067],[-67.70825,-10.71083],[-67.67631,-10.60484],[-67.64028,-10.59807],[-67.57925,-10.5028],[-67.44361,-10.45492],[-67.40717,-10.37386],[-67.31155,-10.37716],[-67.31545,-10.31932],[-67.17745,-10.33923],[-67.01537,-10.25919],[-66.99683,-10.20017],[-66.9528,-10.18886],[-66.8751,-10.08268],[-66.63701,-9.94983],[-66.61995,-9.89353],[-66.435,-9.866],[-66.426,-9.899],[-66.151,-9.785],[-65.98222,-9.81011],[-65.91976,-9.75314],[-65.87184,-9.75307],[-65.86532,-9.79533],[-65.79962,-9.75663],[-65.79437,-9.79295],[-65.77013,-9.73442],[-65.7432,-9.78296],[-65.68395,-9.74992],[-65.71023,-9.80857],[-65.66963,-9.78129],[-65.627,-9.83804],[-65.55611,-9.84498],[-65.4883,-9.71015],[-65.44394,-9.66957],[-65.39313,-9.68683],[-65.28588,-9.84413],[-65.333,-9.965],[-65.288,-10.219],[-65.43011,-10.48505],[-65.40569,-10.63935],[-65.34667,-10.68155],[-65.35376,-10.78881],[-65.27476,-10.87302],[-65.25053,-10.98506],[-65.30071,-11.03142],[-65.28269,-11.09009],[-65.36177,-11.14031],[-65.35387,-11.18419],[-65.31294,-11.19578],[-65.35938,-11.22067],[-65.35834,-11.26834],[-65.34347,-11.3082],[-65.29053,-11.32275],[-65.33276,-11.33986],[-65.3074,-11.49957],[-65.21178,-11.52857],[-65.2593,-11.71053],[-65.18216,-11.75609],[-65.18953,-11.72353],[-65.08672,-11.7082],[-65.0727,-11.86587],[-65.01398,-11.90303],[-65.03548,-11.99408],[-64.84077,-12.01027],[-64.80954,-12.05633],[-64.83747,-12.11786],[-64.7688,-12.09356],[-64.75486,-12.15762],[-64.70719,-12.08684],[-64.70406,-12.1827],[-64.51256,-12.22562],[-64.51217,-12.3551],[-64.41057,-12.44436],[-64.29452,-12.4582],[-64.29018,-12.50313],[-64.22945,-12.45419],[-64.17504,-12.46675],[-64.16781,-12.51503],[-64.13464,-12.47732],[-63.95144,-12.53179],[-63.89949,-12.50204],[-63.88957,-12.44745],[-63.7848,-12.42871],[-63.55295,-12.50598],[-63.50641,-12.56562],[-63.43627,-12.56526],[-63.44052,-12.608],[-63.30125,-12.68138],[-63.23713,-12.69043],[-63.24621,-12.66222],[-63.15726,-12.6138],[-63.06163,-12.68584],[-63.08186,-12.72323],[-63.01134,-12.83602],[-62.89672,-12.8539],[-62.779,-13.009],[-62.729,-13.02],[-62.65,-12.965],[-62.612,-13.041],[-62.453,-13.064],[-62.39178,-13.13471],[-62.27269,-13.15687],[-62.214,-13.111],[-62.19,-13.153],[-62.16703,-13.11346],[-62.15254,-13.15993],[-62.115,-13.163],[-62.11498,-13.25932],[-61.97592,-13.36695],[-61.96968,-13.40759],[-61.892,-13.431],[-61.852,-13.538],[-61.57927,-13.48711],[-61.46527,-13.55427],[-61.29954,-13.47718],[-61.19236,-13.53695],[-61.18155,-13.50557],[-61.10314,-13.53056],[-61.0938,-13.49081],[-61.0129,-13.48925],[-61.0056,-13.552],[-60.91857,-13.54334],[-60.87678,-13.62149],[-60.76755,-13.68329],[-60.46776,-13.79446],[-60.49068,-13.85782],[-60.45599,-13.85422],[-60.45062,-13.9364],[-60.38066,-13.9888],[-60.479,-14.097],[-60.492,-14.188],[-60.321,-14.608],[-60.272,-14.62],[-60.244,-15.096],[-60.57543,-15.09677],[-60.238,-15.473],[-60.17335,-16.26672],[-58.43059,-16.32264],[-58.388,-16.261],[-58.32227,-16.26559],[-58.333,-16.49],[-58.436,-16.592],[-58.47,-16.703],[-58.474,-16.935],[-58.423,-16.989],[-58.396,-17.181],[-58.263,-17.344],[-58.151,-17.384],[-58.116,-17.451],[-58.06,-17.45],[-57.996,-17.515],[-57.883,-17.449],[-57.73696,-17.5583],[-57.783,-17.639],[-57.70991,-17.72702],[-57.68472,-17.8306],[-57.72302,-17.83074],[-57.574,-18.131],[-57.453,-18.231],[-57.557,-18.24],[-57.766,-18.899],[-57.719,-18.899],[-57.694,-19.011],[-57.784,-19.033],[-58.131,-19.758],[-57.85796,-19.9703],[-57.90248,-20.04207],[-57.95347,-20.02094],[-58.16932,-20.1694],[-58.12152,-20.19246],[-58.16216,-20.25953],[-58.09596,-20.25445],[-58.09339,-20.35554],[-57.99847,-20.43551],[-57.98848,-20.69879],[-57.92414,-20.66392],[-57.86732,-20.73265],[-57.93478,-20.74565],[-57.96183,-20.7916],[-57.89863,-20.78872],[-57.8552,-20.83403],[-57.92836,-20.90036],[-57.81919,-20.94066],[-57.86834,-21.04417],[-57.85066,-21.22407],[-57.92019,-21.27655],[-57.8535,-21.33109],[-57.96795,-21.52432],[-57.91387,-21.59021],[-57.93436,-21.65037],[-57.88329,-21.68903],[-57.94714,-21.74413],[-57.90866,-21.77355],[-57.96603,-21.85045],[-57.91281,-21.88266],[-58.00946,-22.04038],[-57.99384,-22.09023],[-57.80183,-22.15072],[-57.70751,-22.09111],[-57.6106,-22.09462],[-57.5804,-22.17534],[-57.3744,-22.23204],[-56.9967,-22.22246],[-56.88343,-22.24755],[-56.84285,-22.30155],[-56.79344,-22.24238],[-56.72026,-22.26479],[-56.70344,-22.21693],[-56.63705,-22.26341],[-56.50711,-22.09561],[-56.39404,-22.07434],[-56.36485,-22.16949],[-56.20983,-22.27805],[-55.84304,-22.28725],[-55.78939,-22.3846],[-55.74302,-22.39266],[-55.72364,-22.55166],[-55.61432,-22.65521],[-55.66578,-22.85274],[-55.59635,-23.14993],[-55.54199,-23.1561],[-55.52356,-23.19733],[-55.53989,-23.625],[-55.47306,-23.64834],[-55.44167,-23.70084],[-55.41423,-23.9645],[-55.34542,-23.99458],[-55.30415,-23.96504],[-55.22907,-24.01383],[-55.107,-23.961],[-55.06223,-23.99335],[-54.924,-23.959],[-54.89,-23.898],[-54.70533,-23.86452],[-54.66978,-23.81262],[-54.43984,-23.90446],[-54.28223,-24.07336],[-54.34537,-24.14705],[-54.25877,-24.36377],[-54.32714,-24.47073],[-54.32437,-24.66059],[-54.43548,-24.94769],[-54.4295,-25.15915],[-54.61941,-25.45312],[-54.59354,-25.59275],[-54.4927,-25.6181],[-54.43288,-25.69756],[-54.38395,-25.59747],[-54.28,-25.556],[-54.25,-25.597],[-54.23,-25.562],[-54.178,-25.584],[-54.206,-25.541],[-54.099,-25.495],[-54.098,-25.619],[-54.07592,-25.55766],[-54.01,-25.567],[-53.95638,-25.64628],[-53.94895,-25.6117],[-53.89113,-25.62286],[-53.82214,-25.79377],[-53.83619,-25.97166],[-53.73409,-26.04333],[-53.742,-26.108],[-53.63739,-26.24968],[-53.75864,-26.64113],[-53.7205,-26.65099],[-53.75814,-26.72045],[-53.66059,-26.85814],[-53.69684,-26.86015],[-53.67125,-26.94222],[-53.7092,-26.93414],[-53.7473,-27.03218],[-53.78585,-27.02674],[-53.76087,-27.06543],[-53.80233,-27.04028],[-53.79879,-27.14629],[-53.95195,-27.15169],[-53.96219,-27.19698],[-54.01026,-27.19978],[-54.08872,-27.30149],[-54.15619,-27.29619],[-54.172,-27.254],[-54.21736,-27.38603],[-54.261,-27.397],[-54.28484,-27.44819],[-54.34067,-27.40311],[-54.35466,-27.46528],[-54.41,-27.405],[-54.47081,-27.42674],[-54.444,-27.472],[-54.5246,-27.5059],[-54.574,-27.453],[-54.621,-27.541],[-54.67709,-27.508],[-54.67926,-27.57394],[-54.775,-27.586],[-54.814,-27.533],[-54.85,-27.624],[-54.90617,-27.63871],[-54.936,-27.772],[-55.081,-27.779],[-55.035,-27.858],[-55.106,-27.846],[-55.133,-27.897],[-55.196,-27.856],[-55.26574,-27.92969],[-55.32706,-27.92664],[-55.343,-27.972],[-55.38299,-27.97948],[-55.368,-28.029],[-55.44611,-28.09787],[-55.4952,-28.07682],[-55.55957,-28.16523],[-55.60747,-28.11604],[-55.63167,-28.17719],[-55.7757,-28.24481],[-55.77415,-28.27414],[-55.67047,-28.33218],[-55.69433,-28.42204],[-55.75157,-28.37095],[-55.87739,-28.36159],[-55.88357,-28.47923],[-56.01249,-28.50873],[-56.00984,-28.60718],[-56.17858,-28.75922],[-56.29652,-28.8027],[-56.29995,-28.89614],[-56.40775,-28.9748],[-56.418,-29.075],[-56.59315,-29.12516],[-56.70164,-29.35913],[-56.76618,-29.37768],[-56.81905,-29.48816],[-56.89888,-29.53179],[-57.121,-29.765],[-57.294,-29.831],[-57.33713,-29.99284],[-57.48047,-30.12315],[-57.64744,-30.19483],[-57.56087,-30.21134],[-57.52431,-30.28569],[-57.46574,-30.26589],[-57.39229,-30.30474],[-57.31303,-30.25785],[-57.22081,-30.28928],[-57.07113,-30.08671],[-56.80777,-30.10301],[-56.77662,-30.1633],[-56.64628,-30.20346],[-56.6187,-30.30054],[-56.54115,-30.31291],[-56.54706,-30.35946],[-56.46126,-30.38486],[-56.38177,-30.49956],[-56.29193,-30.51967],[-56.26095,-30.58509],[-56.17074,-30.61517],[-56.12508,-30.73871],[-56.02241,-30.78565],[-56.00989,-31.08267],[-55.882,-31.077],[-55.727,-30.979],[-55.723,-30.943],[-55.66621,-30.95395],[-55.65834,-30.864],[-55.57742,-30.83309],[-55.42306,-31.01823],[-55.34981,-31.03922],[-55.34037,-31.13144],[-55.29118,-31.14226],[-55.24003,-31.26062],[-55.07446,-31.33216],[-55.00723,-31.26692],[-54.94087,-31.38068],[-54.88623,-31.3773],[-54.8367,-31.442],[-54.58676,-31.45656],[-54.4528,-31.59959],[-54.4549,-31.65295],[-54.10019,-31.92825],[-53.96972,-31.91765],[-53.96073,-31.95532],[-53.84978,-32.00064],[-53.83375,-32.05524],[-53.74599,-32.07848],[-53.58321,-32.45192],[-53.46423,-32.48446],[-53.39137,-32.58573],[-53.24992,-32.6041],[-53.07558,-32.74088],[-53.0858,-32.78835],[-53.14569,-32.79202],[-53.18496,-32.85043],[-53.29454,-32.89931],[-53.31008,-32.91875],[-53.24468,-32.93489],[-53.44438,-33.05296],[-53.51819,-33.15342],[-53.53228,-33.6888],[-53.43951,-33.69347],[-53.43053,-33.73947],[-53.18109,-33.86891],[-52.61505,-33.42291],[-52.45986,-33.25369],[-52.27087,-32.92102],[-52.06117,-32.38504],[-51.89236,-32.29596],[-51.74211,-32.10539],[-51.18785,-31.77646],[-50.60441,-31.24135],[-50.17344,-30.64282],[-49.82565,-29.86559],[-49.52748,-29.42005],[-49.1579,-29.02871],[-48.9156,-28.86305],[-48.68615,-28.76016],[-48.40713,-28.43255],[-48.21148,-27.85592],[-48.11076,-27.28208],[-48.34897,-26.75081],[-48.2801,-26.23036],[-47.85376,-25.47012],[-46.61368,-24.67512],[-45.13508,-24.12014],[-44.07735,-23.40501],[-43.19603,-23.26703],[-41.91484,-23.18527],[-41.79292,-23.08823],[-41.59666,-22.83627],[-41.5086,-22.52638],[-40.81442,-22.09702],[-40.76948,-21.87786],[-40.81442,-21.67672],[-40.17827,-20.75426],[-39.86353,-19.88681],[-39.63477,-19.74403],[-39.49227,-19.40134],[-39.54529,-18.78548],[-39.4675,-18.30359],[-39.35288,-18.10892],[-38.67053,-18.16855],[-38.53661,-18.09683],[-38.49171,-18.0046],[-38.53193,-17.80026],[-38.92933,-16.80775],[-38.8013,-16.24838],[-38.64697,-15.88327],[-38.66456,-15.74741],[-38.74388,-15.60089],[-38.85337,-14.65508],[-38.61146,-13.26537],[-38.22146,-13.09717],[-37.89668,-12.75844],[-37.46002,-12.10275],[-37.11368,-11.41261],[-36.99511,-11.29602],[-36.78725,-10.95151],[-36.61764,-10.81082],[-36.26639,-10.64593],[-36.06155,-10.37447],[-35.96401,-10.31281],[-35.69663,-9.90026],[-35.55848,-9.81261],[-35.0253,-9.13761],[-34.81497,-8.62472],[-34.64374,-7.98735],[-34.59953,-7.11133],[-34.62306,-6.90323],[-34.71587,-6.74615],[-34.79469,-6.33583],[-35.17659,-5.12497],[-35.33677,-4.99239],[-35.56471,-4.90758],[-35.93627,-4.83327],[-36.18969,-4.88505],[-36.62299,-4.85815],[-36.91716,-4.71372],[-37.07874,-4.71355],[-37.22122,-4.51045],[-37.51218,-4.41535],[-37.63401,-4.24454],[-37.77934,-4.18046],[-37.90182,-4.07265],[-38.12555,-3.80544],[-38.21421,-3.74103],[-38.34306,-3.54434],[-38.57151,-3.48047],[-39.15187,-3.04444],[-39.8907,-2.65328],[-40.50396,-2.57531],[-40.66365,-2.63829],[-41.5085,-2.68486],[-41.78084,-2.51859],[-42.78189,-2.33053],[-43.24389,-2.12403],[-43.54602,-2.04705],[-44.84728,-1.07246],[-48.23746,-0.07449],[-49.73896,1.79143],[-50.29908,2.33079],[-50.75331,2.94057],[-50.85507,3.45573],[-50.85475,3.92491],[-50.94232,4.20165],[-51.11466,4.42286],[-51.49427,4.67426],[-51.63716,4.50834],[-51.61325,4.17437],[-51.65867,4.05276],[-51.77783,3.97406],[-51.79731,3.88888],[-51.922,3.7792],[-51.92148,3.72422],[-51.97104,3.70696],[-52.21472,3.26833],[-52.33187,3.16938],[-52.39583,2.90222],[-52.43944,2.87778],[-52.56417,2.63944],[-52.54028,2.57028],[-52.59444,2.47389],[-52.67528,2.37389],[-52.84722,2.28556],[-52.90972,2.19583],[-52.99472,2.17528],[-53.11861,2.2225],[-53.27899,2.18603],[-53.21667,2.25333],[-53.32833,2.35333],[-53.45861,2.2575],[-53.52972,2.24917],[-53.73389,2.31222],[-53.745,2.37389],[-53.88667,2.26778],[-53.93194,2.27194],[-53.94083,2.21917],[-54.06139,2.19167],[-54.11083,2.11222],[-54.18056,2.1725],[-54.24917,2.14667],[-54.46861,2.21306],[-54.53778,2.26556],[-54.54667,2.31833],[-54.68861,2.32472],[-54.68917,2.45389],[-54.86846,2.43989],[-54.95424,2.58359],[-55.10302,2.52564],[-55.1234,2.56762],[-55.23474,2.50338],[-55.32019,2.51537],[-55.38533,2.41836],[-55.49971,2.44324],[-55.71028,2.39917],[-55.76663,2.45524],[-55.97052,2.52931],[-56.02181,2.34247],[-56.09012,2.37228],[-56.13887,2.26574],[-56.04288,2.22778],[-56.05505,2.18464],[-56.00307,2.1676],[-55.9031,2.04108],[-55.93635,1.98647],[-55.90385,1.88803],[-55.95638,1.84509],[-56.11762,1.85097],[-56.1709,1.90048],[-56.24404,1.87808],[-56.45126,1.95614],[-56.57976,1.90588],[-56.62145,1.94588],[-56.72096,1.92582],[-56.79793,1.85336],[-56.91971,1.93036],[-57.01421,1.91489],[-57.08668,2.02644],[-57.22923,1.93759],[-57.30712,1.99665],[-57.36912,1.95638],[-57.36768,1.92372],[-57.43343,1.90598],[-57.43776,1.82681],[-57.50187,1.78609],[-57.5376,1.7005],[-57.65042,1.68237],[-57.70509,1.73093],[-57.77431,1.72973],[-57.85206,1.66782],[-57.99009,1.65844],[-58.00423,1.50303],[-58.12942,1.4989],[-58.16064,1.56011],[-58.236,1.54669],[-58.32237,1.59702],[-58.39472,1.52651],[-58.38559,1.46999],[-58.50873,1.46295],[-58.50511,1.40317],[-58.45787,1.37145],[-58.49622,1.26796],[-58.69456,1.29732],[-58.73956,1.1999],[-58.82512,1.17127],[-58.912,1.239],[-58.886,1.261],[-58.918,1.317],[-58.978,1.302],[-59.253,1.389],[-59.284,1.45],[-59.327,1.464],[-59.329,1.514],[-59.381,1.507],[-59.539,1.723],[-59.69,1.757],[-59.663,1.871],[-59.677,1.839],[-59.751,1.859],[-59.72315,2.27614],[-59.89872,2.36245],[-59.895,2.482],[-59.99,2.686],[-59.98944,2.88185],[-59.907,3.212],[-59.80488,3.35695],[-59.8408,3.43174],[-59.80205,3.50156],[-59.86728,3.57776],[-59.66842,3.70277],[-59.66555,3.78126],[-59.59631,3.79386],[-59.59279,3.88538],[-59.5153,3.94493],[-59.58417,3.96851],[-59.65406,4.06943],[-59.61818,4.13166],[-59.73069,4.18076],[-59.7319,4.28587],[-59.66948,4.37629],[-59.79503,4.46554],[-60.16114,4.51773],[-60.15725,4.57247],[-60.0705,4.61688],[-60.02524,4.7065],[-59.96984,5.06334],[-60.094,5.14],[-60.135,5.249],[-60.172,5.227],[-60.20825,5.28346],[-60.434,5.182],[-60.73197,5.21203],[-60.661,5.164],[-60.591,4.927],[-60.751,4.756],[-60.899,4.717],[-60.949,4.653],[-60.932,4.587],[-60.994,4.519],[-61.095,4.522],[-61.14559,4.48016],[-61.217,4.536],[-61.323,4.535],[-61.288,4.458],[-61.513,4.406],[-61.508,4.322],[-61.56,4.252],[-61.724,4.27],[-61.802,4.229],[-61.824,4.164],[-61.92213,4.16126],[-61.93175,4.12009],[-61.982,4.181],[-62.076,4.154],[-62.071,4.126],[-62.14308,4.07768],[-62.437,4.183],[-62.552,4.109],[-62.555,4.019],[-62.753,4.032],[-62.788,3.894],[-62.729,3.805],[-62.743,3.674],[-62.835,3.739],[-62.96,3.608],[-63.081,3.694],[-63.059,3.748],[-63.103,3.794],[-63.226,3.836],[-63.204,3.952],[-63.428,3.977],[-63.434,3.865],[-63.489,3.874],[-63.497,3.84],[-63.591,3.886],[-63.676,4.019],[-63.682,3.908],[-63.85,3.95],[-63.928,3.925],[-63.964,3.868],[-64.164,4.127],[-64.5565,4.10529],[-64.623,4.135],[-64.69522,4.25323],[-64.81123,4.27048],[-64.80203,4.17422],[-64.72239,4.11775],[-64.54357,3.85713],[-64.281,3.70928],[-64.17437,3.56841],[-64.2444,3.43036],[-64.19795,3.20121],[-64.22642,3.12356],[-64.14592,3.03459],[-64.15754,2.98243],[-64.12349,2.99048],[-64.07156,2.92142],[-64.07709,2.87262],[-63.98033,2.7237],[-64.0573,2.49752],[-64.01914,2.46135],[-63.84358,2.4916],[-63.76805,2.43994],[-63.56398,2.44573],[-63.46036,2.39684],[-63.42123,2.45102],[-63.37088,2.41121],[-63.36742,2.26864],[-63.44059,2.126],[-63.56474,2.13571],[-63.6268,2.11222],[-63.66501,2.01861],[-63.71155,2.04645],[-63.83555,1.96644],[-63.97219,1.99194],[-64.05781,1.92899],[-64.0735,1.64902],[-64.19707,1.52071],[-64.3136,1.45617],[-64.33791,1.36134],[-64.41019,1.40301],[-64.34777,1.49508],[-64.35111,1.52921],[-64.3939,1.52901],[-64.43586,1.47006],[-64.52608,1.44322],[-64.5789,1.34041],[-64.74446,1.22569],[-64.80053,1.31527],[-64.86966,1.22713],[-64.90439,1.25153],[-64.97445,1.20288],[-65.01361,1.10905],[-65.06317,1.11205],[-65.07232,1.15303],[-65.15831,1.1246],[-65.1749,0.94131],[-65.21302,0.90282],[-65.32734,0.93596],[-65.41198,0.82415],[-65.39213,0.75692],[-65.44499,0.68921],[-65.54116,0.64881],[-65.60623,0.70748],[-65.49624,0.87415],[-65.58894,1.00471],[-65.7421,1.00125],[-65.77261,0.95859],[-65.88369,0.94159],[-65.96712,0.81511],[-66.07024,0.8123],[-66.07783,0.76174],[-66.19737,0.78161],[-66.31032,0.74494],[-66.85119,1.22896],[-67.08675,1.16704],[-67.13923,1.32002],[-67.08017,1.38546],[-67.15922,1.67504],[-67.15384,1.8315],[-67.22831,1.84127],[-67.33083,1.94158],[-67.32672,2.06387],[-67.39404,2.22894],[-67.49519,2.16312],[-67.55095,2.04769],[-67.76942,2.00924],[-67.90162,1.81165],[-68.09043,1.89774],[-68.14417,1.97854],[-68.18033,1.9767],[-68.19583,2.03479],[-68.28555,1.83084],[-68.22688,1.82918],[-68.23954,1.77044],[-68.19207,1.7797],[-68.1645,1.72945],[-69.39109,1.72935],[-69.53464,1.77691],[-69.78236,1.69244],[-69.83972,1.71893],[-69.84266,1.07272],[-69.70963,1.11817],[-69.67718,1.06994],[-69.60989,1.09826],[-69.42312,1.04265],[-69.37641,1.08794],[-69.24494,1.05655],[-69.19773,0.99974],[-69.21679,0.97245],[-69.1646,0.94156],[-69.18846,0.91324],[-69.13576,0.87204],[-69.14881,0.76751],[-69.19001,0.74056],[-69.11563,0.64484],[-69.19425,0.64982],[-69.19975,0.60591],[-69.29484,0.60389],[-69.28914,0.64997],[-69.35277,0.61416],[-69.48002,0.73577],[-69.59701,0.6542],[-69.60529,0.61328],[-69.6711,0.66759],[-69.80272,0.57162],[-70.04302,0.56359],[-70.04323,-0.18998],[-69.92054,-0.32573],[-69.8446,-0.33732],[-69.60783,-0.5008],[-69.56179,-0.63692],[-69.62491,-0.74667],[-69.52577,-0.86807],[-69.528,-0.92514],[-69.41861,-0.99827],[-69.44292,-1.03351],[-69.39523,-1.12555],[-69.42989,-1.22173],[-69.3973,-1.36508],[-69.45659,-1.49119]],[[-70.57357,-4.21169],[-70.56195,-4.17766],[-70.56118,-4.1775],[-70.57357,-4.21169]]],"type":"Polygon"}}, {"properties":{"name":"Dourados Ortofotos","id":"Dourados_Ortofotos","url":"https://geodourados.dourados.ms.gov.br/geoserver/dourados/ows?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofoto_2018,ortofoto_2020_distritos&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"text":"Prefeitura Municipal de Dourados - GeoDourados","url":"https://geodourados.dourados.ms.gov.br"},"type":"wms","category":"photo","best":true},"type":"Feature","geometry":{"coordinates":[[[-55.56292,-21.9842],[-55.48417,-22.17638],[-54.70714,-22.48961],[-54.274,-22.3173],[-54.17162,-22.05478],[-54.17949,-21.94038],[-54.48925,-21.86],[-54.60738,-22.04991],[-54.694,-22.072],[-54.87777,-22.14477],[-54.9854,-21.87218],[-55.40017,-21.85269],[-55.56292,-21.9842]]],"type":"Polygon"}}, {"properties":{"name":"Fortaleza Ortofoto 2010","id":"Fortaleza_Ortofoto_2010","url":"https://geoserver.sefin.fortaleza.ce.gov.br/geoserver/IMAGEAMENTO/wms?LAYERS=ortofoto_2010&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","attribution":{"text":"Prefeitura Municipal de Fortaleza","url":"https://ide.sefin.fortaleza.ce.gov.br/"},"type":"wms","category":"historicphoto"},"type":"Feature","geometry":{"coordinates":[[[-38.58818,-3.68552],[-38.62283,-3.7142],[-38.6585,-3.80814],[-38.50982,-3.90782],[-38.39913,-3.81768],[-38.46391,-3.69671],[-38.50177,-3.71227],[-38.58818,-3.68552]]],"type":"Polygon"}}, @@ -733,6 +747,7 @@ {"properties":{"name":"Rio Mosaico 2019","id":"rio2019","url":"https://pgeo3.rio.rj.gov.br/arcgis/services/Imagens/Mosaico_2019/ImageServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"text":"Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro","url":"https://www.rio.rj.gov.br/web/ipp"},"type":"wms","category":"photo","min_zoom":4,"best":true},"type":"Feature","geometry":{"coordinates":[[[-43.59375,-23.09163],[-43.49213,-23.09163],[-43.49043,-23.05158],[-43.42965,-23.04994],[-43.42958,-23.03186],[-43.42655,-23.02912],[-43.35517,-23.02925],[-43.35275,-23.0322],[-43.35273,-23.04931],[-43.32336,-23.05052],[-43.32046,-23.07079],[-43.27378,-23.07079],[-43.27156,-23.05116],[-43.24219,-23.04994],[-43.24219,-23.02902],[-43.23053,-23.02917],[-43.22783,-23.03186],[-43.22776,-23.09163],[-43.11654,-23.09163],[-43.11722,-23.03416],[-43.14502,-23.03414],[-43.1481,-23.03106],[-43.14754,-22.98957],[-43.11653,-22.98732],[-43.11722,-22.90906],[-43.14502,-22.90904],[-43.14805,-22.90629],[-43.14923,-22.86457],[-43.14741,-22.82414],[-43.14433,-22.82106],[-43.08564,-22.82104],[-43.08564,-22.72164],[-43.16528,-22.72227],[-43.1653,-22.73907],[-43.16696,-22.7417],[-43.19618,-22.74253],[-43.1962,-22.76033],[-43.19771,-22.76284],[-43.25866,-22.76343],[-43.25873,-22.78092],[-43.26176,-22.78367],[-43.41453,-22.78622],[-43.41511,-22.80369],[-43.42776,-22.80537],[-43.45873,-22.80481],[-43.46052,-22.80212],[-43.46123,-22.78622],[-43.55392,-22.78749],[-43.5541,-22.79474],[-43.55793,-22.8019],[-43.5704,-22.80269],[-43.57864,-22.81028],[-43.58017,-22.81603],[-43.59306,-22.81851],[-43.59375,-22.84646],[-43.72215,-22.84891],[-43.73108,-22.85144],[-43.73374,-22.85711],[-43.75373,-22.85651],[-43.75466,-22.86261],[-43.75861,-22.86767],[-43.78738,-22.87297],[-43.78944,-22.87424],[-43.78951,-22.8854],[-43.79156,-22.8879],[-43.8121,-22.88817],[-43.8121,-22.93182],[-43.80039,-22.93188],[-43.78897,-22.93578],[-43.78326,-22.94066],[-43.77767,-22.94095],[-43.76014,-22.95055],[-43.75786,-22.98804],[-43.72977,-22.98767],[-43.72766,-22.99051],[-43.72696,-23.00888],[-43.69775,-23.00989],[-43.69606,-23.04994],[-43.68379,-23.0512],[-43.68033,-23.06129],[-43.68026,-23.07079],[-43.60544,-23.07086],[-43.60269,-23.07389],[-43.60267,-23.091],[-43.59375,-23.09163]]],"type":"Polygon"}}, {"properties":{"name":"Rio Mosaico 2022","id":"rio2022","url":"https://pgeo3.rio.rj.gov.br/arcgis/services/Imagens/Mosaico_2022/ImageServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"text":"Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro","url":"https://www.rio.rj.gov.br/web/ipp"},"type":"wms","category":"photo","min_zoom":4},"type":"Feature","geometry":{"coordinates":[[[-43.59375,-23.09163],[-43.49213,-23.09163],[-43.49043,-23.05158],[-43.42965,-23.04994],[-43.42958,-23.03186],[-43.42655,-23.02912],[-43.35517,-23.02925],[-43.35275,-23.0322],[-43.35273,-23.04931],[-43.32336,-23.05052],[-43.32046,-23.07079],[-43.27378,-23.07079],[-43.27156,-23.05116],[-43.24219,-23.04994],[-43.24219,-23.02902],[-43.23053,-23.02917],[-43.22783,-23.03186],[-43.22776,-23.09163],[-43.11654,-23.09163],[-43.11722,-23.03416],[-43.14502,-23.03414],[-43.1481,-23.03106],[-43.14754,-22.98957],[-43.11653,-22.98732],[-43.11722,-22.90906],[-43.14502,-22.90904],[-43.14805,-22.90629],[-43.14923,-22.86457],[-43.14741,-22.82414],[-43.14433,-22.82106],[-43.08564,-22.82104],[-43.08564,-22.72164],[-43.16528,-22.72227],[-43.1653,-22.73907],[-43.16696,-22.7417],[-43.19618,-22.74253],[-43.1962,-22.76033],[-43.19771,-22.76284],[-43.25866,-22.76343],[-43.25873,-22.78092],[-43.26176,-22.78367],[-43.41453,-22.78622],[-43.41511,-22.80369],[-43.42776,-22.80537],[-43.45873,-22.80481],[-43.46052,-22.80212],[-43.46123,-22.78622],[-43.55392,-22.78749],[-43.5541,-22.79474],[-43.55793,-22.8019],[-43.5704,-22.80269],[-43.57864,-22.81028],[-43.58017,-22.81603],[-43.59306,-22.81851],[-43.59375,-22.84646],[-43.72215,-22.84891],[-43.73108,-22.85144],[-43.73374,-22.85711],[-43.75373,-22.85651],[-43.75466,-22.86261],[-43.75861,-22.86767],[-43.78738,-22.87297],[-43.78944,-22.87424],[-43.78951,-22.8854],[-43.79156,-22.8879],[-43.8121,-22.88817],[-43.8121,-22.93182],[-43.80039,-22.93188],[-43.78897,-22.93578],[-43.78326,-22.94066],[-43.77767,-22.94095],[-43.76014,-22.95055],[-43.75786,-22.98804],[-43.72977,-22.98767],[-43.72766,-22.99051],[-43.72696,-23.00888],[-43.69775,-23.00989],[-43.69606,-23.04994],[-43.68379,-23.0512],[-43.68033,-23.06129],[-43.68026,-23.07079],[-43.60544,-23.07086],[-43.60269,-23.07389],[-43.60267,-23.091],[-43.59375,-23.09163]]],"type":"Polygon"}}, {"properties":{"name":"Jaraguá do Sul Ortomosaico 2020","id":"jaragua-do-sul-2020","url":"https://www.jaraguadosul.sc.gov.br/geo/ortomosaico2020/{zoom}/{x}/{y}.png","attribution":{"text":"Prefeitura de Jaraguá do Sul, SC","url":"https://sistemas.jaraguadosul.sc.gov.br/index.php?class=GeoWelcomeView"},"type":"tms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-49.25368,-26.26563],[-49.17549,-26.31065],[-49.16931,-26.35804],[-49.19403,-26.38449],[-49.19266,-26.42016],[-49.21051,-26.43676],[-49.21806,-26.47733],[-49.22562,-26.48471],[-49.24621,-26.48901],[-49.29634,-26.54185],[-49.30595,-26.58054],[-49.28106,-26.61953],[-49.23798,-26.61922],[-49.20433,-26.62966],[-49.17824,-26.61615],[-49.1645,-26.65237],[-49.13292,-26.64316],[-49.10408,-26.61063],[-49.10133,-26.58177],[-49.0876,-26.57993],[-49.08554,-26.55168],[-49.0567,-26.54615],[-49.05121,-26.51912],[-49.03404,-26.52219],[-49.01756,-26.51298],[-49.01138,-26.48287],[-49.02511,-26.45643],[-49.09515,-26.39863],[-49.10545,-26.39371],[-49.10477,-26.36972],[-49.13635,-26.33219],[-49.13841,-26.30265],[-49.16725,-26.26571],[-49.16725,-26.21336],[-49.19128,-26.21274],[-49.23454,-26.23061],[-49.23386,-26.25524],[-49.25368,-26.26563]]],"type":"Polygon"}}, +{"properties":{"name":"Bing Maps Aerial","id":"Bing","url":"https://ecn.t2.tiles.virtualearth.net/tiles/a{quadkey}.jpeg?g=14206&pr=odbl&n=f","type":"bing","category":"photo","min_zoom":1,"max_zoom":22},"type":"Feature","geometry":null}, {"properties":{"name":"CyclOSM","id":"cyclosm","url":"https://{switch:a,b,c}.tile-cyclosm.openstreetmap.fr/cyclosm/{zoom}/{x}/{y}.png","attribution":{"text":"Rendering: CyclOSM (hosted by OpenStreetMap France) © Map data OpenStreetMap contributors","url":"https://www.cyclosm.org/"},"type":"tms","category":"osmbasedmap","max_zoom":20},"type":"Feature","geometry":null}, {"properties":{"name":"Esri World Imagery","id":"EsriWorldImagery","url":"https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":true,"text":"Terms & Feedback","url":"https://wiki.openstreetmap.org/wiki/Esri"},"type":"tms","category":"photo","max_zoom":22,"default":true},"type":"Feature","geometry":null}, {"properties":{"name":"Esri World Imagery (Clarity) Beta","id":"EsriWorldImageryClarity","url":"https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}","attribution":{"required":true,"text":"Terms & Feedback","url":"https://wiki.openstreetmap.org/wiki/Esri"},"type":"tms","category":"photo","max_zoom":22,"default":true},"type":"Feature","geometry":null},