diff --git a/assets/themes/grb/grb.json b/assets/themes/grb/grb.json index f240ee15a..591ebc3b3 100644 --- a/assets/themes/grb/grb.json +++ b/assets/themes/grb/grb.json @@ -22,7 +22,8 @@ "startZoom": 9, "startLat": 51.0249, "startLon": 4.026489, - "defaultBackgroundId": "AGIVFlandersGRB", + + "defaultBackgroundId": "osm", "credits": [ "Pieter Vander Vennet" ], diff --git a/assets/themes/trees/trees.json b/assets/themes/trees/trees.json index 9d0820ac7..256df236d 100644 --- a/assets/themes/trees/trees.json +++ b/assets/themes/trees/trees.json @@ -63,7 +63,7 @@ "startZoom": 8, "startLat": 50.642, "startLon": 4.482, - "defaultBackgroundId": "AGIV", + "defaultBackgroundId": "photo", "credits": [ "Midgard" ], @@ -76,4 +76,4 @@ "maxZoom": 19, "minNeededElements": 25 } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 5e6796a1c..a244bbc6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mapcomplete", - "version": "0.36.10", + "version": "0.36.11", "repository": "https://github.com/pietervdvn/MapComplete", "description": "A small website to edit OSM easily", "bugs": "https://github.com/pietervdvn/MapComplete/issues", diff --git a/src/Models/RasterLayers.ts b/src/Models/RasterLayers.ts index 3b1ce0115..7a20ad017 100644 --- a/src/Models/RasterLayers.ts +++ b/src/Models/RasterLayers.ts @@ -83,6 +83,15 @@ export class AvailableRasterLayers { }) ) } + + public static allIds(): Set { + const all: string[] = [] + all.push(...AvailableRasterLayers.globalLayers.map((l) => l.properties.id)) + all.push(...AvailableRasterLayers.EditorLayerIndex.map((l) => l.properties.id)) + all.push(this.osmCarto.properties.id) + all.push(this.maptilerDefaultLayer.properties.id) + return new Set(all) + } } export class RasterLayerUtils { diff --git a/src/Models/ThemeConfig/Conversion/Validation.ts b/src/Models/ThemeConfig/Conversion/Validation.ts index 0a267fc08..2f46cc3c1 100644 --- a/src/Models/ThemeConfig/Conversion/Validation.ts +++ b/src/Models/ThemeConfig/Conversion/Validation.ts @@ -21,6 +21,9 @@ import PresetConfig from "../PresetConfig" import { TagsFilter } from "../../../Logic/Tags/TagsFilter" import { Translatable } from "../Json/Translatable" import { ConversionContext } from "./ConversionContext" +import * as eli from "../../../assets/editor-layer-index.json" +import { AvailableRasterLayers } from "../../RasterLayers" +import Back from "../../../assets/svg/Back.svelte" class ValidateLanguageCompleteness extends DesugaringStep { private readonly _languages: string[] @@ -124,6 +127,7 @@ export class DoesImageExist extends DesugaringStep { } export class ValidateTheme extends DesugaringStep { + private static readonly _availableLayers = AvailableRasterLayers.allIds() /** * The paths where this layer is originally saved. Triggers some extra checks * @private @@ -260,6 +264,19 @@ export class ValidateTheme extends DesugaringStep { .err("The overpassURL is a string, use a list of strings instead. Wrap it with [ ]") } + if (json.defaultBackgroundId) { + const backgroundId = json.defaultBackgroundId + + const isCategory = + backgroundId === "photo" || backgroundId === "map" || backgroundId === "osmbasedmap" + + if (!isCategory && !ValidateTheme._availableLayers.has(backgroundId)) { + context + .enter("defaultBackgroundId") + .err("This layer ID is not known: " + backgroundId) + } + } + return json } } @@ -1465,7 +1482,7 @@ export class ValidateLayer extends Conversion< } } - for (let i = 0; i < json.presets.length; i++) { + for (let i = 0; i < json.presets?.length; i++) { const preset = json.presets[i] if ( preset.snapToLayer === undefined && diff --git a/src/Models/ThemeConfig/Json/LayerConfigJson.ts b/src/Models/ThemeConfig/Json/LayerConfigJson.ts index bfcf551a3..b161e8727 100644 --- a/src/Models/ThemeConfig/Json/LayerConfigJson.ts +++ b/src/Models/ThemeConfig/Json/LayerConfigJson.ts @@ -145,7 +145,7 @@ export interface LayerConfigJson { * There are a few extra functions available. Refer to Docs/CalculatedTags.md for more information * The functions will be run in order, e.g. * [ - Not found... * "_max_overlap_m2=Math.max(...feat.overlapsWith("someOtherLayer").map(o => o.overlap)) + * "_max_overlap_m2=Math.max(...feat.overlapsWith("someOtherLayer").map(o => o.overlap)) * "_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area * ] * diff --git a/src/Models/ThemeConfig/LayoutConfig.ts b/src/Models/ThemeConfig/LayoutConfig.ts index 17e7a0c53..c9859b2c5 100644 --- a/src/Models/ThemeConfig/LayoutConfig.ts +++ b/src/Models/ThemeConfig/LayoutConfig.ts @@ -314,6 +314,7 @@ export default class LayoutConfig implements LayoutInformation { return layer } } + console.log("Fallthrough", this, tags) return undefined } } diff --git a/src/UI/ThemeViewGUI.svelte b/src/UI/ThemeViewGUI.svelte index 3e6796020..07627a055 100644 --- a/src/UI/ThemeViewGUI.svelte +++ b/src/UI/ThemeViewGUI.svelte @@ -13,13 +13,7 @@ import type { MapProperties } from "../Models/MapProperties" import Geosearch from "./BigComponents/Geosearch.svelte" import Translations from "./i18n/Translations" - import { - CogIcon, - EyeIcon, - HeartIcon, - MenuIcon, - XCircleIcon, - } from "@rgossiaux/svelte-heroicons/solid" + import { CogIcon, EyeIcon, HeartIcon, MenuIcon, XCircleIcon } from "@rgossiaux/svelte-heroicons/solid" import Tr from "./Base/Tr.svelte" import CommunityIndexView from "./BigComponents/CommunityIndexView.svelte" import FloatOver from "./Base/FloatOver.svelte" @@ -72,8 +66,6 @@ import FilterPanel from "./BigComponents/FilterPanel.svelte" import PrivacyPolicy from "./BigComponents/PrivacyPolicy.svelte" import { BBox } from "../Logic/BBox" - import { MapLibreAdaptor } from "./Map/MapLibreAdaptor.js" - import { QueryParameters } from "../Logic/Web/QueryParameters" export let state: ThemeViewState let layout = state.layout @@ -100,8 +92,12 @@ }) }) - let selectedLayer: Store = state.selectedElement.mapD((element) => - state.layout.getMatchingLayer(element.properties) + let selectedLayer: Store = state.selectedElement.mapD((element) => { + if (element.properties.id.startsWith("current_view")) { + return currentViewLayer + } + return state.layout.getMatchingLayer(element.properties) + }, ) let currentZoom = state.mapProperties.zoom let showCrosshair = state.userRelatedState.showCrosshair @@ -109,6 +105,7 @@ let viewport: UIEventSource = new UIEventSource(undefined) let mapproperties: MapProperties = state.mapProperties state.mapProperties.installCustomKeyboardHandler(viewport) + function updateViewport() { const rect = viewport.data?.getBoundingClientRect() if (!rect) { @@ -142,7 +139,7 @@ onDestroy( rasterLayer.addCallbackAndRunD((l) => { rasterLayerName = l.properties.name - }) + }), ) let previewedImage = state.previewedImage @@ -189,10 +186,10 @@
- {#if $selectedElement === undefined} -
- -
+ {#if $selectedElement === undefined} +
+ +
{/if}
@@ -228,7 +225,7 @@ {#if currentViewLayer?.tagRenderings && currentViewLayer.defaultIcon()} { - selectedElement.setData(state.currentView.features?.data?.[0]) + state.selectedElement.setData(state.currentView.features?.data?.[0]) }} on:keydown={forwardEventToMap} > diff --git a/src/assets/editor-layer-index.json b/src/assets/editor-layer-index.json index fbb974cf3..2eab9d05d 100644 --- a/src/assets/editor-layer-index.json +++ b/src/assets/editor-layer-index.json @@ -141,8 +141,8 @@ {"properties":{"name":"Czechia CUZK orthophoto","id":"CzechCUZKorthophoto","url":"https://geoportal.cuzk.cz/WMS_ORTOFOTO_PUB/service.svc/get?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=GR_ORTFOTORGB&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"text":"CUZK","url":"https://www.cuzk.cz/"},"type":"wms","category":"photo","min_zoom":1,"max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"type":"Polygon"}}, {"properties":{"name":"Praha IPR latest orthophoto (TMS mirror)","id":"IPR-orotofoto-last-tms","url":"https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_last.php/{zoom}/{x}/{y}.jpg","attribution":{"text":"IPR Praha; OSM CZ","url":"https://iprpraha.cz/"},"type":"tms","category":"photo","min_zoom":2,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]],"type":"Polygon"}}, {"properties":{"name":"Praha IPR low-vegetation orthophoto (TMS mirror)","id":"IPR-orotofoto-vege-tms","url":"https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_vege.php/{zoom}/{x}/{y}.jpg","attribution":{"text":"IPR Praha; OSM CZ","url":"https://iprpraha.cz/"},"type":"tms","category":"photo","min_zoom":2,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]],"type":"Polygon"}}, -{"properties":{"name":"Praha IPR latest orthophoto","id":"PrahaIPRlatestorthophoto","url":"https://gs-pub.praha.eu/imgs/services/ort/letecke_snimkovani/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","type":"wms","category":"photo","min_zoom":1,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]],"type":"Polygon"}}, -{"properties":{"name":"Praha IPR low-vegetation orthophoto","id":"PrahaIPRlow-vegetationorthophoto","url":"https://gs-pub.praha.eu/imgs/services/ort/mimovegetacni_letecke_snimkovani/ImageServer/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":"IPR Praha","url":"https://iprpraha.cz/"},"type":"wms","category":"photo","min_zoom":1,"max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]],"type":"Polygon"}}, +{"properties":{"name":"Praha IPR latest orthophoto","id":"PrahaIPRlatestorthophoto","url":"https://gs-pub.praha.eu/imgs/services/ort/letecke_snimkovani/ImageServer/WMSServer?LAYERS=0&STYLES=&CRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","type":"wms","category":"photo","min_zoom":1,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]],"type":"Polygon"}}, +{"properties":{"name":"Praha IPR low-vegetation orthophoto","id":"PrahaIPRlow-vegetationorthophoto","url":"https://gs-pub.praha.eu/imgs/services/ort/mimovegetacni_letecke_snimkovani/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":{"text":"IPR Praha","url":"https://iprpraha.cz/"},"type":"wms","category":"photo","min_zoom":1,"max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]],"type":"Polygon"}}, {"properties":{"name":"Berlin/Geoportal TrueDOP20RGB (2020)","id":"Berlin-2020-TrueDOP","url":"https://tiles.codefor.de/berlin-2020-truedop20rgb/{zoom}/{x}/{y}.png","attribution":{"required":true,"text":"Geoportal Berlin/Digitale farbige TrueOrthophotos 2020 (TrueDOP20RGB) (codefor.de mirror)"},"type":"tms","category":"photo","max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[13.05872,52.42427],[13.05951,52.4063],[13.0889,52.40677],[13.08967,52.3888],[13.11905,52.38927],[13.11981,52.3713],[13.14917,52.37177],[13.14842,52.38974],[13.17779,52.3902],[13.20717,52.39064],[13.23654,52.39109],[13.26592,52.39152],[13.2953,52.39195],[13.32467,52.39237],[13.35405,52.39278],[13.35472,52.37481],[13.38409,52.37521],[13.38474,52.35724],[13.4141,52.35764],[13.41474,52.33966],[13.41539,52.32169],[13.44472,52.32208],[13.47405,52.32246],[13.50339,52.32284],[13.53272,52.32321],[13.56206,52.32357],[13.59139,52.32392],[13.62073,52.32427],[13.65007,52.3246],[13.67941,52.32494],[13.67887,52.34291],[13.67833,52.36089],[13.7077,52.36121],[13.70717,52.37919],[13.73655,52.37951],[13.73603,52.39748],[13.76542,52.39779],[13.76492,52.41577],[13.76442,52.43375],[13.76391,52.45172],[13.76341,52.4697],[13.73397,52.46939],[13.73346,52.48736],[13.70401,52.48705],[13.67456,52.48672],[13.67402,52.50469],[13.67348,52.52267],[13.67294,52.54065],[13.64346,52.54031],[13.64291,52.55829],[13.61341,52.55795],[13.61285,52.57592],[13.58334,52.57557],[13.58276,52.59355],[13.55325,52.59319],[13.55265,52.61116],[13.55206,52.62914],[13.55147,52.64711],[13.55087,52.66509],[13.52131,52.66472],[13.5207,52.68269],[13.49113,52.68232],[13.46155,52.68194],[13.43198,52.68155],[13.43262,52.66358],[13.40306,52.66319],[13.3735,52.66278],[13.34394,52.66237],[13.31438,52.66196],[13.31369,52.67993],[13.28412,52.6795],[13.25455,52.67907],[13.25527,52.6611],[13.25598,52.64313],[13.22644,52.64269],[13.19689,52.64225],[13.19763,52.62427],[13.1681,52.62382],[13.16885,52.60585],[13.13933,52.60539],[13.10982,52.60492],[13.11059,52.58695],[13.11136,52.56898],[13.11214,52.55101],[13.11291,52.53304],[13.11368,52.51507],[13.11445,52.4971],[13.11521,52.47913],[13.08578,52.47866],[13.08656,52.46069],[13.08734,52.44272],[13.08812,52.42474],[13.05872,52.42427]]],"type":"Polygon"}}, {"properties":{"name":"Berlin/Geoportal ALKIS","id":"Berlin-Alkis","url":"https://mapproxy.codefor.de/tiles/1.0.0/alkis_30/mercator/{zoom}/{x}/{y}.png","attribution":{"required":true,"text":"Geoportal Berlin/ALKIS Berlin (Amtliches Liegenschaftskatasterinformationssystem) (codefor.de proxy)"},"type":"tms","category":"other","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[13.29535,52.392],[13.35417,52.39279],[13.38418,52.36617],[13.42861,52.36674],[13.44254,52.38473],[13.53103,52.38581],[13.5313,52.37719],[13.58956,52.37786],[13.61959,52.36012],[13.62038,52.33319],[13.66454,52.33367],[13.66428,52.34287],[13.67876,52.34302],[13.67826,52.36081],[13.70772,52.36111],[13.70722,52.37923],[13.75097,52.39814],[13.75027,52.42468],[13.76454,52.42482],[13.7636,52.46069],[13.73406,52.4604],[13.7188,52.47807],[13.68929,52.48692],[13.65989,52.48661],[13.65912,52.51344],[13.67365,52.51359],[13.67314,52.53139],[13.65822,52.53124],[13.62826,52.55788],[13.5988,52.55755],[13.59798,52.58464],[13.56782,52.59313],[13.53842,52.59279],[13.52345,52.6017],[13.52288,52.61946],[13.53757,52.61964],[13.53643,52.6558],[13.50681,52.65545],[13.50593,52.68261],[13.44682,52.68189],[13.43254,52.67251],[13.43315,52.65458],[13.32953,52.65323],[13.31405,52.67086],[13.26973,52.67025],[13.27041,52.65222],[13.21212,52.63346],[13.18403,52.60593],[13.13972,52.60527],[13.11055,52.59579],[13.11534,52.47934],[13.10073,52.47912],[13.10259,52.43394],[13.07356,52.42447],[13.07431,52.4067],[13.08906,52.40693],[13.11888,52.38921],[13.11926,52.38001],[13.14877,52.38046],[13.14839,52.3897],[13.19241,52.39035],[13.19206,52.39937],[13.29502,52.40083],[13.29535,52.392]]],"type":"Polygon"}}, {"properties":{"name":"Berlin/Geoportal Baumbestand","id":"Berlin-Baumbestand","url":"https://mapproxy.codefor.de/tiles/1.0.0/baumbestand_0_1_3_4_merged/mercator/{zoom}/{x}/{y}.png","attribution":{"required":true,"text":"Geoportal Berlin/Straßen- und Anlagenbaumbestand Berlin (codefor.de proxy)"},"type":"tms","category":"other","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[13.29535,52.392],[13.35417,52.39279],[13.38418,52.36617],[13.42861,52.36674],[13.44254,52.38473],[13.53103,52.38581],[13.5313,52.37719],[13.58956,52.37786],[13.61959,52.36012],[13.62038,52.33319],[13.66454,52.33367],[13.66428,52.34287],[13.67876,52.34302],[13.67826,52.36081],[13.70772,52.36111],[13.70722,52.37923],[13.75097,52.39814],[13.75027,52.42468],[13.76454,52.42482],[13.7636,52.46069],[13.73406,52.4604],[13.7188,52.47807],[13.68929,52.48692],[13.65989,52.48661],[13.65912,52.51344],[13.67365,52.51359],[13.67314,52.53139],[13.65822,52.53124],[13.62826,52.55788],[13.5988,52.55755],[13.59798,52.58464],[13.56782,52.59313],[13.53842,52.59279],[13.52345,52.6017],[13.52288,52.61946],[13.53757,52.61964],[13.53643,52.6558],[13.50681,52.65545],[13.50593,52.68261],[13.44682,52.68189],[13.43254,52.67251],[13.43315,52.65458],[13.32953,52.65323],[13.31405,52.67086],[13.26973,52.67025],[13.27041,52.65222],[13.21212,52.63346],[13.18403,52.60593],[13.13972,52.60527],[13.11055,52.59579],[13.11534,52.47934],[13.10073,52.47912],[13.10259,52.43394],[13.07356,52.42447],[13.07431,52.4067],[13.08906,52.40693],[13.11888,52.38921],[13.11926,52.38001],[13.14877,52.38046],[13.14839,52.3897],[13.19241,52.39035],[13.19206,52.39937],[13.29502,52.40083],[13.29535,52.392]]],"type":"Polygon"}}, @@ -490,6 +490,10 @@ {"properties":{"name":"Geobase Roads - English","id":"Geobase_Roads","url":"https://maps.geogratis.gc.ca/wms/roads_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=roads&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","type":"wms","category":"other","min_zoom":4,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"type":"Polygon"}}, {"properties":{"name":"Canaan - American Red Cross, Dec-2017","id":"canaan_drone_red_cross_201712","url":"https://tiles.openaerialmap.org/5ac65a9f91b5310010e0d489/0/5ac65a9f91b5310010e0d48a/{zoom}/{x}/{y}.png","attribution":{"required":false,"text":"American Red Cross","url":"http://americanredcross.github.io/"},"type":"tms","category":"photo","min_zoom":12,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[-72.26734,18.63561],[-72.2636,18.6373],[-72.26116,18.64141],[-72.25983,18.64588],[-72.25811,18.64742],[-72.24502,18.64795],[-72.23433,18.64807],[-72.22734,18.6482],[-72.21953,18.65438],[-72.2161,18.65446],[-72.21584,18.66222],[-72.21725,18.66739],[-72.21889,18.67019],[-72.22309,18.66958],[-72.22343,18.67312],[-72.22502,18.6732],[-72.22545,18.67609],[-72.23288,18.67597],[-72.23339,18.67877],[-72.23674,18.67857],[-72.23854,18.67975],[-72.24,18.68129],[-72.24463,18.68207],[-72.24682,18.6817],[-72.24605,18.67698],[-72.25094,18.67698],[-72.25511,18.67902],[-72.25961,18.67898],[-72.26081,18.67743],[-72.27038,18.67711],[-72.27901,18.67682],[-72.28373,18.67893],[-72.28613,18.68154],[-72.29665,18.68178],[-72.30184,18.68568],[-72.3012,18.68824],[-72.30802,18.69324],[-72.30948,18.69308],[-72.31699,18.69682],[-72.32806,18.70528],[-72.3384,18.69902],[-72.34012,18.69666],[-72.33961,18.69426],[-72.33377,18.68357],[-72.33135,18.68192],[-72.32551,18.68093],[-72.32027,18.67741],[-72.31626,18.67477],[-72.31167,18.672],[-72.308,18.66995],[-72.30534,18.66926],[-72.30068,18.66499],[-72.29796,18.66479],[-72.29609,18.66129],[-72.29315,18.65999],[-72.29519,18.65497],[-72.28414,18.64962],[-72.27804,18.64523],[-72.27487,18.64212],[-72.27352,18.64057],[-72.2706,18.63901],[-72.26734,18.63561]]],"type":"Polygon"}}, {"properties":{"name":"INEGI Digital Map of Mexico (WMS)","id":"inegi-wms","url":"https://gaia.inegi.org.mx/NLB/mdm5.wms?Request=GetCapabilities&Version=1.1.1&Service=WMS","attribution":{"text":"Instituto Nacional de Estadísticas y Geografía","url":"https://www.inegi.org.mx/"},"type":"wms_endpoint","category":"other","min_zoom":1,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-86.19429,21.60805],[-89.19655,24.82478],[-97.24,26.09441],[-98.87131,26.41991],[-99.47745,27.49254],[-99.49722,27.50443],[-99.52402,27.50016],[-99.51866,27.52629],[-99.50848,27.56098],[-99.51223,27.5738],[-99.53849,27.60752],[-99.55563,27.61654],[-99.56903,27.61037],[-99.59582,27.64408],[-99.62529,27.64835],[-99.63548,27.63886],[-99.68799,27.67778],[-99.70889,27.66402],[-99.7464,27.71905],[-99.81327,27.78663],[-99.82999,27.77739],[-99.92212,27.98603],[-99.98003,28.00519],[-100.0079,28.06999],[-100.0781,28.14823],[-100.1113,28.1716],[-100.1767,28.19521],[-100.2418,28.2724],[-100.3316,28.40045],[-100.3232,28.50342],[-100.4408,28.64945],[-100.4773,28.66691],[-100.4958,28.66159],[-100.5093,28.70499],[-100.5044,28.71461],[-100.5051,28.74135],[-100.5326,28.80577],[-100.5883,28.88822],[-100.5999,28.90333],[-100.6259,28.91125],[-100.6695,29.11044],[-100.7315,29.13796],[-100.7762,29.22867],[-100.8122,29.26489],[-100.8846,29.30892],[-100.9458,29.34719],[-101.0076,29.37923],[-101.0597,29.45929],[-101.0885,29.47267],[-101.1447,29.48246],[-101.1708,29.51804],[-101.2495,29.53141],[-101.2279,29.57771],[-101.2508,29.63169],[-101.304,29.6604],[-101.3609,29.67596],[-101.3977,29.7746],[-101.4579,29.79249],[-101.5432,29.81422],[-101.677,29.76841],[-101.8169,29.81307],[-101.8512,29.80936],[-101.925,29.79794],[-101.9741,29.81889],[-102.0795,29.79603],[-102.1472,29.81151],[-102.1867,29.85054],[-102.2463,29.86696],[-102.3294,29.88456],[-102.3643,29.85102],[-102.3947,29.77389],[-102.497,29.78913],[-102.5717,29.77405],[-102.6761,29.74924],[-102.7464,29.63694],[-102.7759,29.59792],[-102.8141,29.52451],[-102.8542,29.38162],[-102.8891,29.34776],[-102.9252,29.20344],[-103.0003,29.18766],[-103.1094,29.06478],[-103.157,28.9822],[-103.3301,29.05125],[-103.3914,29.04546],[-103.5468,29.16426],[-103.6855,29.18883],[-103.7799,29.273],[-104.0405,29.33141],[-104.2073,29.49012],[-104.3118,29.53733],[-104.3366,29.52377],[-104.3691,29.54458],[-104.3906,29.55432],[-104.3958,29.57227],[-104.4108,29.58162],[-104.5227,29.66538],[-104.5256,29.69205],[-104.5575,29.78165],[-104.6577,29.92348],[-104.674,30.21007],[-104.8151,30.39009],[-104.8969,30.59322],[-104.9913,30.67752],[-105.2063,30.80763],[-105.2974,30.83294],[-105.4541,30.93583],[-105.5968,31.08854],[-105.7837,31.20434],[-105.8614,31.28737],[-105.9471,31.36233],[-106.002,31.40007],[-106.1233,31.43151],[-106.1949,31.47893],[-106.2438,31.54518],[-106.278,31.56629],[-106.2975,31.61314],[-106.3082,31.6365],[-106.3318,31.66628],[-106.347,31.6984],[-106.3709,31.71389],[-106.3788,31.73279],[-106.4137,31.75192],[-106.4347,31.75541],[-106.4486,31.76352],[-106.4527,31.76549],[-106.4687,31.75958],[-106.4712,31.75321],[-106.4743,31.75082],[-106.4829,31.7488],[-106.4885,31.74838],[-106.4937,31.75147],[-106.5054,31.76037],[-106.507,31.76171],[-106.5098,31.76152],[-106.5125,31.77015],[-106.5192,31.77455],[-106.5279,31.78465],[-107.4606,31.78624],[-108.2112,31.78584],[-108.2159,31.34054],[-109.5437,31.33466],[-111.0753,31.3357],[-111.7104,31.5435],[-113.5061,32.09818],[-114.7475,32.47765],[-114.8002,32.49255],[-114.8053,32.49885],[-114.7976,32.52018],[-114.7877,32.55741],[-114.79,32.57192],[-114.8036,32.61809],[-114.789,32.61736],[-114.7641,32.64011],[-114.7466,32.66068],[-114.7174,32.72067],[-115.4673,32.66952],[-116.3541,32.60111],[-117.0921,32.53754],[-117.4735,32.62548],[-117.4801,32.40539],[-121.2843,30.98696],[-101.1689,9.83098],[-99.37488,9.66464],[-92.34289,14.47696],[-92.34211,14.47641],[-92.34124,14.47602],[-92.34031,14.47581],[-92.33936,14.47577],[-92.33841,14.47592],[-92.33752,14.47624],[-92.3367,14.47672],[-92.24479,14.54372],[-92.2438,14.54404],[-92.23935,14.54602],[-92.23755,14.54635],[-92.2354,14.54615],[-92.23315,14.54574],[-92.22939,14.54397],[-92.22737,14.5427],[-92.22632,14.5422],[-92.22517,14.54196],[-92.22212,14.54169],[-92.22077,14.54175],[-92.21687,14.54254],[-92.21607,14.54291],[-92.21536,14.54343],[-92.21341,14.54509],[-92.21266,14.5459],[-92.2121,14.54686],[-92.21176,14.54791],[-92.21121,14.55069],[-92.21113,14.55208],[-92.21162,14.55779],[-92.21132,14.55931],[-92.21073,14.56063],[-92.20993,14.56156],[-92.20889,14.5623],[-92.20624,14.56354],[-92.20402,14.56493],[-92.20182,14.56649],[-92.20092,14.5673],[-92.19899,14.56959],[-92.1976,14.57154],[-92.19636,14.57388],[-92.19545,14.57494],[-92.19367,14.57628],[-92.19176,14.57812],[-92.18783,14.581],[-92.18563,14.58287],[-92.18369,14.5848],[-92.18297,14.5857],[-92.18248,14.58675],[-92.18065,14.59263],[-92.1801,14.59541],[-92.17977,14.59873],[-92.17939,14.60059],[-92.17831,14.60286],[-92.17621,14.60874],[-92.17556,14.6125],[-92.17556,14.61534],[-92.17477,14.61807],[-92.17434,14.6211],[-92.17378,14.62246],[-92.17183,14.62523],[-92.17098,14.62678],[-92.16927,14.62926],[-92.1679,14.63192],[-92.16693,14.63468],[-92.16575,14.63635],[-92.1635,14.63701],[-92.16263,14.63753],[-92.16188,14.63823],[-92.15999,14.64039],[-92.15941,14.64122],[-92.159,14.64215],[-92.15814,14.6448],[-92.15781,14.64629],[-92.15756,14.64651],[-92.15473,14.64738],[-92.15373,14.64781],[-92.15054,14.64964],[-92.14624,14.65246],[-92.14532,14.65324],[-92.14462,14.65422],[-92.14354,14.65617],[-92.14241,14.65738],[-92.14175,14.65828],[-92.1413,14.6593],[-92.14109,14.66039],[-92.14093,14.66348],[-92.14111,14.66439],[-92.14146,14.66524],[-92.1426,14.66744],[-92.14298,14.67051],[-92.14312,14.67375],[-92.14262,14.67706],[-92.14262,14.67958],[-92.14197,14.6812],[-92.13873,14.68621],[-92.13845,14.68707],[-92.13833,14.68796],[-92.13837,14.68886],[-92.13858,14.68974],[-92.13995,14.69371],[-92.14196,14.69637],[-92.14428,14.70553],[-92.14331,14.71094],[-92.1436,14.71355],[-92.14319,14.71615],[-92.14315,14.71736],[-92.14341,14.71854],[-92.14477,14.72228],[-92.1483,14.72695],[-92.15077,14.7292],[-92.15124,14.73111],[-92.15349,14.73647],[-92.154,14.73738],[-92.15468,14.73817],[-92.15551,14.7388],[-92.15765,14.74008],[-92.15942,14.74418],[-92.16184,14.74877],[-92.16298,14.75154],[-92.16696,14.75791],[-92.1674,14.7589],[-92.16729,14.76016],[-92.16669,14.76215],[-92.16576,14.76426],[-92.16515,14.76547],[-92.16334,14.76713],[-92.16284,14.76787],[-92.16164,14.7712],[-92.16139,14.77278],[-92.16139,14.77611],[-92.1616,14.77755],[-92.16243,14.78032],[-92.16376,14.78342],[-92.16454,14.78464],[-92.16606,14.78642],[-92.16854,14.7899],[-92.16944,14.79152],[-92.16984,14.79331],[-92.17035,14.79465],[-92.17136,14.79647],[-92.1723,14.80145],[-92.17275,14.80279],[-92.17488,14.80731],[-92.17677,14.81013],[-92.17802,14.81162],[-92.17827,14.81247],[-92.1778,14.81788],[-92.17786,14.81923],[-92.17833,14.82184],[-92.17833,14.82472],[-92.17854,14.82616],[-92.18,14.83101],[-92.18002,14.83403],[-92.18078,14.84307],[-92.17954,14.84697],[-92.17858,14.84887],[-92.17767,14.85146],[-92.17659,14.85318],[-92.17609,14.85425],[-92.17557,14.85582],[-92.17454,14.85702],[-92.17338,14.85901],[-92.17033,14.86091],[-92.16568,14.86326],[-92.16124,14.86604],[-92.15898,14.8679],[-92.15707,14.86909],[-92.15618,14.8698],[-92.14924,14.87674],[-92.14831,14.87804],[-92.14756,14.87954],[-92.14427,14.88257],[-92.14254,14.88523],[-92.13954,14.88931],[-92.13904,14.89019],[-92.13793,14.89269],[-92.13688,14.89606],[-92.13669,14.89698],[-92.13668,14.89791],[-92.13724,14.90434],[-92.13743,14.90533],[-92.13827,14.90811],[-92.13905,14.90996],[-92.13837,14.9131],[-92.13794,14.91641],[-92.13792,14.9175],[-92.13826,14.92132],[-92.13847,14.92235],[-92.13941,14.92539],[-92.13978,14.92742],[-92.14041,14.92961],[-92.14038,14.92999],[-92.13794,14.93649],[-92.13764,14.9381],[-92.13769,14.93891],[-92.13812,14.9419],[-92.13839,14.94295],[-92.13888,14.94392],[-92.13957,14.94477],[-92.14043,14.94544],[-92.14233,14.94661],[-92.14312,14.94742],[-92.14361,14.94832],[-92.1439,14.94999],[-92.1439,14.95145],[-92.14343,14.9526],[-92.1427,14.95512],[-92.14202,14.95927],[-92.14202,14.96109],[-92.14238,14.96403],[-92.14254,14.96762],[-92.14287,14.96961],[-92.14095,14.97296],[-92.14071,14.9739],[-92.14065,14.97486],[-92.14077,14.97582],[-92.14108,14.97674],[-92.14331,14.98171],[-92.14514,14.98452],[-92.14536,14.98673],[-92.14575,14.98889],[-92.145,14.99265],[-92.14312,14.996],[-92.14176,14.99758],[-92.14034,14.99953],[-92.13731,15.00256],[-92.13313,15.00538],[-92.13132,15.0074],[-92.12924,15.00896],[-92.12758,15.01063],[-92.1259,15.01257],[-92.12425,15.01398],[-92.12328,15.01503],[-92.12283,15.01516],[-92.11543,15.01371],[-92.11444,15.01361],[-92.10994,15.01369],[-92.10712,15.0142],[-92.10403,15.01446],[-92.10286,15.0147],[-92.10076,15.0154],[-92.09757,15.01589],[-92.0963,15.01626],[-92.0938,15.01737],[-92.09098,15.01927],[-92.08909,15.02106],[-92.08735,15.02215],[-92.0862,15.02313],[-92.08466,15.02493],[-92.08313,15.02647],[-92.08219,15.02776],[-92.08077,15.03078],[-92.07993,15.03356],[-92.07935,15.03636],[-92.07822,15.03923],[-92.07727,15.0421],[-92.07215,15.05061],[-92.06955,15.05431],[-92.06904,15.05519],[-92.06793,15.05769],[-92.06758,15.05883],[-92.06703,15.06188],[-92.06694,15.06281],[-92.06704,15.06374],[-92.06841,15.06741],[-92.06927,15.06917],[-92.06937,15.07022],[-92.06706,15.0717],[-92.06374,15.07324],[-92.06288,15.07375],[-92.06213,15.07442],[-92.06154,15.07522],[-92.06111,15.07612],[-92.06088,15.0771],[-92.06084,15.0781],[-92.06101,15.07908],[-92.06136,15.08002],[-92.0619,15.08086],[-92.09608,15.12449],[-92.20534,15.26263],[-92.14514,15.3644],[-92.11847,15.40996],[-92.08888,15.45995],[-91.98452,15.63592],[-91.9546,15.68605],[-91.93209,15.72468],[-91.91024,15.76105],[-91.84071,15.87827],[-91.8218,15.90969],[-91.80125,15.94468],[-91.77849,15.98298],[-91.74266,16.04243],[-91.729,16.06784],[-91.68134,16.06878],[-91.32089,16.06878],[-90.95679,16.06911],[-90.43956,16.07307],[-90.42128,16.09755],[-90.42128,16.17085],[-90.4217,16.25853],[-90.36597,16.37167],[-90.38612,16.41403],[-90.47572,16.46254],[-90.54388,16.48269],[-90.55331,16.48474],[-90.58075,16.47693],[-90.60904,16.51845],[-90.61633,16.52708],[-90.62018,16.57474],[-90.65191,16.63554],[-90.66902,16.68137],[-90.70356,16.72347],[-90.7988,16.80564],[-90.87311,16.83169],[-90.93067,16.85673],[-90.95912,16.90405],[-91.05379,16.9136],[-91.11805,17.00606],[-91.14732,17.01192],[-91.22254,17.09838],[-91.2593,17.11198],[-91.26217,17.18693],[-91.34037,17.18369],[-91.37701,17.20939],[-91.4179,17.21305],[-91.43341,17.24601],[-90.9879,17.24613],[-90.98697,17.24621],[-90.98606,17.24648],[-90.98523,17.2469],[-90.98448,17.24748],[-90.98386,17.24819],[-90.98338,17.24899],[-90.98306,17.24988],[-90.98292,17.25081],[-90.98238,17.25917],[-90.98231,17.277],[-90.98265,17.79505],[-90.98253,17.80936],[-89.84645,17.81083],[-89.1391,17.81344],[-89.13973,17.95423],[-89.02484,17.9995],[-88.99783,17.95056],[-88.98711,17.94322],[-88.94982,17.94975],[-88.93739,17.92976],[-88.9241,17.91508],[-88.91209,17.90611],[-88.88123,17.89264],[-88.85808,17.89101],[-88.84036,17.9289],[-88.78258,17.9735],[-88.75998,18.02208],[-88.70053,18.07303],[-88.66034,18.13192],[-88.64108,18.18045],[-88.6009,18.23771],[-88.56227,18.32867],[-88.5426,18.35952],[-88.54595,18.38234],[-88.52891,18.40783],[-88.5161,18.46097],[-88.47518,18.48961],[-88.44756,18.47362],[-88.40121,18.49327],[-88.38969,18.48],[-88.37981,18.47636],[-88.32686,18.48703],[-88.30162,18.48182],[-88.28955,18.46881],[-88.28926,18.41987],[-88.03266,18.41814],[-88.03614,18.16812],[-87.88512,18.16671],[-87.74311,18.1696],[-85.49087,18.19755],[-86.19429,21.60805]]],"type":"Polygon"}}, +{"properties":{"name":"NOAA NGS East Coast Imagery (2023)","id":"NOAA_East_2023","url":"https://stormscdn.ngs.noaa.gov/ec2301a-ob-n/{zoom}/{x}/{y}","attribution":{"required":false,"text":"NOAA National Geodetic Survey","url":"https://www.ngs.noaa.gov/"},"type":"tms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[[-80.8084,32.0873],[-70.45967,37.19669],[-75.14638,38.83242],[-75.08983,38.46561],[-75.18754,38.1862],[-75.37292,37.93282],[-75.3809,37.93526],[-75.40505,37.95034],[-75.68154,37.56827],[-75.65735,37.5608],[-75.90054,37.13537],[-75.93505,37.16392],[-76.18096,36.96001],[-76.35289,36.99072],[-76.36584,36.94303],[-76.04722,36.88674],[-75.92763,36.58971],[-75.79701,36.16301],[-75.78925,36.1657],[-75.49187,35.61865],[-75.55796,35.25482],[-75.76482,35.22317],[-75.77214,35.23679],[-76.04435,35.0893],[-76.04846,35.09468],[-76.36748,34.87007],[-76.3738,34.8745],[-76.51661,34.68552],[-76.73392,34.74592],[-76.73388,34.74751],[-76.73765,34.74692],[-76.74679,34.74956],[-76.74769,34.7454],[-77.04066,34.69971],[-77.04837,34.71544],[-77.10286,34.68995],[-77.11116,34.68882],[-77.11009,34.68639],[-77.59549,34.44684],[-77.59713,34.4485],[-77.60308,34.44309],[-77.63516,34.42691],[-77.62846,34.42014],[-77.8269,34.24019],[-77.84176,34.24694],[-77.85579,34.2148],[-77.86951,34.20236],[-77.86294,34.19872],[-77.99321,33.8985],[-78.22579,33.96528],[-78.22893,33.95108],[-78.49298,33.91177],[-78.4934,33.91309],[-78.49896,33.91085],[-78.54027,33.90456],[-78.53679,33.896],[-78.89307,33.75332],[-78.88661,33.74533],[-79.17111,33.45306],[-79.15967,33.44742],[-79.23247,33.21198],[-79.2197,33.21092],[-79.36689,33.04703],[-79.52839,33.04938],[-79.55,33.05834],[-79.57113,33.07519],[-79.72586,32.88787],[-79.70254,32.87818],[-79.96055,32.71749],[-79.93967,32.69989],[-79.93354,32.69016],[-80.10743,32.60576],[-80.10973,32.60784],[-80.12279,32.63019],[-80.48645,32.41555],[-80.46633,32.39767],[-80.45508,32.37845],[-80.62148,32.28275],[-80.63145,32.29491],[-80.93619,32.0486],[-80.9132,32.03341],[-80.89652,32.01325],[-80.8084,32.0873]]],[[[-80.19008,25.64818],[-79.76694,25.59755],[-80.83889,32.05969],[-81.19367,31.72038],[-81.16888,31.70664],[-81.15447,31.69189],[-81.35805,31.28939],[-81.33014,31.2832],[-81.3142,31.27456],[-81.48674,31.00557],[-81.45945,30.99696],[-81.44121,30.98525],[-81.49885,30.69743],[-81.47758,30.69709],[-81.45251,30.37929],[-81.4464,30.38045],[-81.33361,29.89256],[-81.32908,29.89401],[-81.13658,29.39372],[-81.14859,29.39011],[-80.82111,28.8385],[-80.81774,28.84068],[-80.56622,28.48867],[-80.61691,28.434],[-80.63539,28.43741],[-80.63701,28.4121],[-80.64059,28.40838],[-80.63733,28.40663],[-80.6485,28.2291],[-80.65499,28.22777],[-80.46482,27.80222],[-80.4623,27.80351],[-80.22818,27.21234],[-80.22502,27.21384],[-80.08445,26.85127],[-80.08065,26.61338],[-80.08374,26.61412],[-80.19008,25.64818]]],[[[-82.94911,24.61802],[-82.78343,24.61001],[-82.78001,24.65904],[-82.94634,24.66699],[-82.94911,24.61802]]],[[[-82.18884,24.52613],[-82.0686,24.55609],[-82.08318,24.60321],[-82.20551,24.57156],[-82.18884,24.52613]]],[[[-82.03459,24.50707],[-81.67633,24.5574],[-81.4951,24.62513],[-81.48782,24.59139],[-81.02734,24.69725],[-80.57058,24.91485],[-80.30765,25.21176],[-80.13433,25.5366],[-80.18496,25.55868],[-80.36012,25.23115],[-80.60408,24.95425],[-81.04425,24.74493],[-81.29059,24.68766],[-81.29329,24.71216],[-81.46027,24.68199],[-81.4623,24.69118],[-81.69185,24.60414],[-82.04222,24.55524],[-82.03459,24.50707]]],[[[-80.37751,25.50173],[-80.35191,25.49451],[-80.329,25.48062],[-80.17755,25.76589],[-80.20357,25.77316],[-80.22618,25.78708],[-80.37751,25.50173]]],[[[-74.97892,38.88659],[-73.50282,39.49468],[-74.14912,39.71127],[-74.17411,39.72675],[-74.39466,39.43188],[-74.3918,39.43097],[-74.55683,39.32622],[-74.57407,39.33837],[-74.85661,39.00456],[-74.84029,38.9987],[-75.0083,38.93015],[-74.97892,38.88659]]]],"type":"MultiPolygon"}}, +{"properties":{"name":"NOAA NGS Gulf Coast Imagery, East (2023)","id":"NOAA_Gulf_East_2023","url":"https://stormscdn.ngs.noaa.gov/gc2301b-ob-n/{zoom}/{x}/{y}","attribution":{"required":false,"text":"NOAA National Geodetic Survey","url":"https://www.ngs.noaa.gov/"},"type":"tms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-89.58523,30.14068],[-89.38783,30.18917],[-88.87071,30.17048],[-80.9951,25.05374],[-80.96416,25.14701],[-81.13386,25.16838],[-81.11218,25.31687],[-81.08914,25.33088],[-81.06334,25.33793],[-81.06937,25.35506],[-81.33274,25.85138],[-81.32715,25.86031],[-81.70978,25.98455],[-81.75503,26.11073],[-81.75256,26.11065],[-81.78775,26.27396],[-81.78575,26.27575],[-81.76202,26.28748],[-81.80033,26.33187],[-81.80615,26.35868],[-81.81988,26.35429],[-81.95269,26.50665],[-81.96213,26.5283],[-82.11643,26.44638],[-82.26357,26.79853],[-82.24261,26.80475],[-82.53933,27.32436],[-82.55407,27.31485],[-82.7285,27.59172],[-82.67995,27.60821],[-82.80551,27.88375],[-82.7487,28.14102],[-82.76027,28.14144],[-82.61692,28.4804],[-82.61721,28.47699],[-82.58951,28.47904],[-82.56273,28.47369],[-82.53082,28.87255],[-82.54857,28.87133],[-82.65777,28.94512],[-82.77501,29.20596],[-82.79925,29.19351],[-82.81273,29.19078],[-82.95287,29.21578],[-82.9604,29.22043],[-82.97782,29.23941],[-83.0337,29.18625],[-83.16857,29.40488],[-83.16392,29.40885],[-83.17558,29.41622],[-83.18874,29.43738],[-83.19855,29.43092],[-83.35071,29.5284],[-83.37293,29.66452],[-83.3584,29.68117],[-83.53008,29.75774],[-83.66032,29.95794],[-83.68267,29.94261],[-83.68731,29.94105],[-83.99707,30.1293],[-83.99689,30.1353],[-84.00539,30.13427],[-84.02025,30.14326],[-84.02671,30.13173],[-84.18158,30.11306],[-84.18649,30.12816],[-84.42584,30.0338],[-84.41039,30.01303],[-84.40317,29.9899],[-84.91602,29.76308],[-84.91391,29.76019],[-85.26886,29.71667],[-85.30483,29.91208],[-85.32343,29.90696],[-85.7974,30.2173],[-85.79494,30.2203],[-85.8112,30.22643],[-85.82719,30.23686],[-85.82927,30.23339],[-86.24721,30.39149],[-86.24575,30.39523],[-86.26152,30.39682],[-86.27267,30.4011],[-86.27359,30.39821],[-86.64257,30.43671],[-86.6425,30.43879],[-86.65103,30.43769],[-86.67596,30.44021],[-86.67576,30.43434],[-87.23197,30.3586],[-87.23256,30.36891],[-87.69022,30.2897],[-87.88308,30.44253],[-87.89301,30.63455],[-87.8886,30.63322],[-87.88415,30.65711],[-87.87195,30.67866],[-88.06529,30.73223],[-88.06974,30.70813],[-88.08218,30.68608],[-88.07094,30.68298],[-88.16792,30.35575],[-88.23735,30.40398],[-88.24028,30.40925],[-88.2447,30.4331],[-88.26981,30.42646],[-88.28621,30.43786],[-88.29935,30.41866],[-88.50276,30.36385],[-88.49825,30.35571],[-89.03375,30.43468],[-89.03428,30.41263],[-89.30698,30.33525],[-89.32213,30.3558],[-89.49565,30.22604],[-89.48268,30.21646],[-89.60068,30.18707],[-89.58894,30.16489],[-89.58523,30.14068]]],"type":"Polygon"}}, +{"properties":{"name":"NOAA NGS Gulf Coast Imagery, West (2023)","id":"NOAA_Gulf_West_2023","url":"https://stormscdn.ngs.noaa.gov/gc2301a-ob-n/{zoom}/{x}/{y}","attribution":{"required":false,"text":"NOAA National Geodetic Survey","url":"https://www.ngs.noaa.gov/"},"type":"tms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[[-97.34884,25.9418],[-89.50436,29.19867],[-89.47812,29.24122],[-89.59073,29.29565],[-89.58425,29.32633],[-89.86389,29.34886],[-90.33062,29.07066],[-90.55711,29.12303],[-90.56366,29.09],[-90.82027,29.08843],[-90.93984,29.20748],[-90.95107,29.19554],[-91.23947,29.25772],[-91.36848,29.37672],[-91.38491,29.35806],[-91.40819,29.34374],[-91.73821,29.47947],[-92.00639,29.59385],[-91.98142,29.59994],[-91.99286,29.6224],[-91.99624,29.64669],[-92.29904,29.57291],[-92.63343,29.62731],[-93.19978,29.82695],[-93.20522,29.8067],[-93.52865,29.80418],[-93.52963,29.81365],[-93.88093,29.73226],[-93.87462,29.71908],[-94.19851,29.67594],[-94.82189,29.39237],[-94.79608,29.34958],[-94.7456,29.37259],[-95.34417,28.9563],[-95.32794,28.94245],[-96.49401,28.37551],[-96.47726,28.35614],[-96.47489,28.35041],[-96.84058,28.1314],[-96.93577,28.02131],[-97.02106,28.05517],[-97.041,28.0714],[-97.23587,27.80588],[-97.27213,27.72268],[-97.45424,27.29669],[-97.49096,27.04034],[-97.48802,27.04026],[-97.48663,26.57795],[-97.46643,26.58075],[-97.30312,26.16493],[-97.32519,26.18192],[-97.33922,26.16116],[-97.36009,26.14493],[-97.2376,26.05074],[-97.37417,25.98459],[-97.35788,25.96481],[-97.34884,25.9418]]],[[[-90.01681,29.69132],[-89.47976,29.30049],[-89.46478,29.32088],[-89.45427,29.32913],[-89.27012,29.15124],[-89.47173,28.89367],[-89.09185,28.96035],[-89.21957,29.1228],[-88.98236,29.17352],[-88.99386,29.22086],[-89.07165,29.20413],[-89.20067,29.41871],[-88.88907,29.66076],[-88.78779,29.94613],[-88.86365,30.08899],[-88.91471,30.06853],[-88.85721,29.96073],[-88.92526,29.6991],[-89.28866,29.42122],[-89.1277,29.19254],[-89.21737,29.17252],[-89.45335,29.39954],[-89.46963,29.38187],[-89.48878,29.36967],[-89.93948,29.69302],[-89.98159,29.72912],[-89.99587,29.70797],[-90.01681,29.69132]]],[[[-89.69567,29.84974],[-89.37131,29.64959],[-89.35906,29.67079],[-89.33906,29.68862],[-89.6639,29.88883],[-89.67669,29.86666],[-89.69567,29.84974]]]],"type":"MultiPolygon"}}, +{"properties":{"name":"NOAA NGS West Coast Imagery (2023)","id":"NOAA_West_2023","url":"https://stormscdn.ngs.noaa.gov/wc2301a-ob-n/{zoom}/{x}/{y}","attribution":{"required":false,"text":"NOAA National Geodetic Survey","url":"https://www.ngs.noaa.gov/"},"type":"tms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[[-117.16033,32.52547],[-117.12444,32.52969],[-117.12339,32.53009],[-117.10747,32.53242],[-117.10608,32.5332],[-117.10087,32.53394],[-117.09806,32.53351],[-117.09676,32.53371],[-117.09594,32.53437],[-117.09407,32.5349],[-117.09175,32.53519],[-117.09093,32.53502],[-117.08985,32.53509],[-117.08959,32.53535],[-117.0884,32.53547],[-117.0871,32.53535],[-117.09476,32.55807],[-117.09459,32.58256],[-117.099,32.58185],[-117.0994,32.58413],[-117.09755,32.58434],[-117.10078,32.6063],[-117.1017,32.60607],[-117.10248,32.61195],[-117.10333,32.61185],[-117.10403,32.61785],[-117.10484,32.61767],[-117.10562,32.62359],[-117.10623,32.62347],[-117.10705,32.62941],[-117.10745,32.6293],[-117.10783,32.63216],[-117.10149,32.64853],[-117.08544,32.66837],[-117.22711,32.72768],[-117.22853,32.74167],[-117.22817,32.74464],[-117.23058,32.80172],[-117.23303,32.82137],[-117.2326,32.82265],[-117.23188,32.82325],[-117.23242,32.83991],[-117.23359,32.84416],[-117.23288,32.84739],[-117.23413,32.85903],[-117.23413,32.85916],[-117.21322,32.86114],[-117.21927,32.87834],[-117.21757,32.87852],[-117.21858,32.8816],[-117.21846,32.88181],[-117.21868,32.88195],[-117.21886,32.8825],[-117.21885,32.8829],[-117.21866,32.88346],[-117.22241,32.89386],[-117.22241,32.89725],[-117.23937,32.9443],[-117.24207,32.94976],[-117.24478,32.95845],[-117.25187,32.9819],[-117.25211,32.98196],[-117.25385,32.9856],[-117.25682,32.99529],[-117.25988,33.0019],[-117.27524,33.04811],[-117.27485,33.0487],[-117.28166,33.06939],[-117.286,33.08687],[-117.29147,33.10436],[-117.27033,33.11336],[-117.27468,33.11922],[-117.29424,33.14236],[-117.29607,33.14425],[-117.29597,33.14524],[-117.30178,33.15237],[-117.3057,33.15615],[-117.30563,33.15698],[-117.30653,33.15768],[-117.31669,33.16936],[-117.31684,33.16931],[-117.31799,33.17073],[-117.31818,33.17134],[-117.32248,33.17678],[-117.32434,33.17958],[-117.33043,33.18645],[-117.32824,33.18766],[-117.3331,33.1921],[-117.33239,33.19251],[-117.33652,33.19705],[-117.33594,33.19739],[-117.33795,33.19993],[-117.34029,33.20203],[-117.3395,33.20238],[-117.34274,33.20511],[-117.34301,33.20505],[-117.3447,33.20624],[-117.34512,33.20662],[-117.34444,33.20697],[-117.34733,33.20958],[-117.34839,33.21159],[-117.34782,33.2119],[-117.35239,33.21634],[-117.35208,33.21652],[-117.35672,33.2209],[-117.35655,33.22103],[-117.35949,33.22314],[-117.3675,33.23144],[-117.36834,33.23162],[-117.4467,33.30885],[-117.52847,33.37972],[-117.52805,33.38174],[-117.54484,33.39921],[-117.55167,33.40289],[-117.561,33.4159],[-117.58925,33.43996],[-117.58932,33.44108],[-117.59749,33.44911],[-117.59768,33.44992],[-117.60363,33.45698],[-117.61533,33.46574],[-117.61917,33.47112],[-117.63049,33.45939],[-117.63261,33.46136],[-117.63808,33.46567],[-117.64633,33.46883],[-117.64866,33.47137],[-117.65359,33.47387],[-117.65658,33.47689],[-117.65921,33.47774],[-117.66526,33.48382],[-117.68481,33.49575],[-117.68846,33.49668],[-117.69831,33.50327],[-117.70801,33.51077],[-117.71144,33.51187],[-117.71525,33.51509],[-117.72138,33.51843],[-117.72544,33.51999],[-117.75291,33.53745],[-117.75644,33.5413],[-117.75847,33.54211],[-117.75971,33.54385],[-117.76148,33.54407],[-117.76389,33.54523],[-117.76501,33.54711],[-117.76995,33.54899],[-117.77139,33.55252],[-117.81739,33.58144],[-117.82105,33.58216],[-117.82706,33.58649],[-117.83758,33.59252],[-117.84681,33.59964],[-117.85006,33.60168],[-117.85316,33.60501],[-117.85461,33.60537],[-117.88231,33.62448],[-117.92682,33.65367],[-117.92752,33.65262],[-117.95244,33.6702],[-117.95182,33.67063],[-118.12797,33.79169],[-118.12935,33.79844],[-118.13529,33.79673],[-118.15731,33.81171],[-118.17235,33.79083],[-118.18113,33.78417],[-118.25623,33.76208],[-118.25653,33.7635],[-118.29474,33.75247],[-118.3159,33.74452],[-118.31979,33.74306],[-118.33358,33.73788],[-118.34776,33.73614],[-118.37885,33.78213],[-118.36433,33.78962],[-118.33626,33.79585],[-118.46028,34.02479],[-118.465,34.04501],[-118.46244,34.06775],[-118.80643,34.05228],[-119.15596,34.14266],[-119.25271,34.27409],[-119.2428,34.28471],[-119.27375,34.29749],[-119.28921,34.32416],[-119.30205,34.31518],[-119.61472,34.46141],[-119.62445,34.44337],[-119.63324,34.43457],[-119.83727,34.4368],[-119.83567,34.43917],[-120.00119,34.48497],[-120.00012,34.50024],[-120.44112,34.48446],[-120.59645,34.58812],[-120.58745,34.89884],[-120.61064,34.89698],[-120.62216,34.89898],[-120.59438,35.158],[-120.62279,35.15589],[-120.64926,35.1603],[-120.65089,35.15692],[-120.8228,35.23477],[-120.82199,35.23919],[-120.86179,35.25555],[-120.84717,35.29866],[-120.83986,35.28916],[-120.81874,35.30087],[-120.78949,35.30904],[-120.90314,35.4908],[-120.92627,35.47684],[-120.94834,35.47143],[-121.22586,35.70394],[-121.24251,35.68674],[-121.35886,35.85141],[-121.38001,35.8418],[-121.53141,36.04948],[-121.54542,36.04083],[-121.61837,36.14204],[-121.61247,36.14796],[-121.63157,36.16034],[-121.63541,36.16283],[-121.75668,36.24138],[-121.75685,36.2466],[-121.86192,36.31039],[-121.91851,36.51049],[-121.89613,36.51401],[-121.92774,36.58474],[-121.93132,36.59719],[-121.91951,36.59671],[-121.88396,36.58723],[-121.88575,36.58071],[-121.85605,36.57799],[-121.82957,36.56865],[-121.7966,36.66491],[-121.77969,36.66031],[-121.78153,36.68821],[-121.78852,36.68775],[-121.75139,36.7969],[-121.75098,36.79718],[-121.72319,36.80652],[-121.88447,37.0187],[-121.90304,37.006],[-122.09836,36.97646],[-122.36717,37.18642],[-122.36657,37.35886],[-122.36155,37.36007],[-122.36715,37.37018],[-122.36727,37.38345],[-122.37241,37.38298],[-122.45439,37.53904],[-122.46798,37.53338],[-122.47794,37.56151],[-122.47354,37.56622],[-122.47486,37.5943],[-122.44934,37.59377],[-122.46665,37.82069],[-122.49259,37.81534],[-122.48247,37.8237],[-122.73805,37.96295],[-122.87996,38.04585],[-122.88143,38.05448],[-122.89173,38.05228],[-122.89763,38.05572],[-122.90118,38.0502],[-122.96783,38.03617],[-122.90855,38.17568],[-122.73381,37.96309],[-122.71137,37.97933],[-122.70342,37.98212],[-122.70123,37.98076],[-122.69314,37.98522],[-122.68697,37.98802],[-122.68167,37.9894],[-122.68223,37.99097],[-122.68423,37.99156],[-122.6793,37.99519],[-122.67114,37.99873],[-122.65342,38.00706],[-122.64835,38.01059],[-122.64337,38.01232],[-122.64112,38.00967],[-122.63071,38.01698],[-122.62232,38.02061],[-122.62337,38.02254],[-122.61757,38.02722],[-122.60996,38.02975],[-122.60814,38.02744],[-122.59956,38.03266],[-122.58707,38.0368],[-122.58989,38.03941],[-122.58618,38.04241],[-122.57916,38.04485],[-122.57684,38.04307],[-122.5681,38.04931],[-122.55759,38.0525],[-122.56,38.05454],[-122.55378,38.05847],[-122.5494,38.05957],[-122.54642,38.05722],[-122.53706,38.06372],[-122.52302,38.06855],[-122.52554,38.07164],[-122.52251,38.07348],[-122.49172,38.08457],[-122.75888,38.41367],[-122.78358,38.39639],[-122.78774,38.39472],[-122.79016,38.39763],[-122.8009,38.39008],[-122.8143,38.38528],[-122.81177,38.38228],[-122.81518,38.38022],[-122.81972,38.37856],[-122.82212,38.38128],[-122.83261,38.37379],[-122.8446,38.36953],[-122.84233,38.36694],[-122.84668,38.36397],[-122.85157,38.36239],[-122.85364,38.36513],[-122.86378,38.35778],[-122.87502,38.35372],[-122.87228,38.35143],[-122.87781,38.34794],[-122.88293,38.3464],[-122.88572,38.34859],[-122.89588,38.34187],[-122.9074,38.33763],[-122.9054,38.33487],[-122.90956,38.33225],[-122.91428,38.33067],[-122.91685,38.3333],[-122.92668,38.32652],[-122.94009,38.32168],[-122.93798,38.31869],[-122.94092,38.31664],[-122.94455,38.31525],[-122.94693,38.31828],[-122.95802,38.31048],[-122.97096,38.30575],[-122.96847,38.30294],[-122.97218,38.30069],[-122.98351,38.33071],[-123.0094,38.32116],[-123.02624,38.31896],[-123.08626,38.42191],[-123.09324,38.4407],[-123.10955,38.46368],[-123.13051,38.49923],[-123.1496,38.4903],[-123.361,38.61778],[-123.35206,38.62237],[-123.7047,38.94996],[-123.6582,39.02427],[-123.65756,39.03061],[-123.64765,39.03645],[-123.64445,39.04937],[-123.66732,39.0567],[-123.80258,39.36822],[-123.75694,39.5928],[-123.75646,39.60856],[-123.73637,39.61156],[-123.74937,39.63659],[-123.74451,39.66201],[-123.75953,39.66268],[-123.86214,39.86911],[-123.86333,39.88059],[-123.87501,39.87505],[-123.90767,39.91305],[-123.96709,39.96763],[-123.98266,39.99052],[-123.98648,39.98954],[-123.99855,39.99709],[-124.0987,40.10734],[-124.10445,40.10881],[-124.11113,40.11982],[-124.11833,40.12087],[-124.12432,40.12467],[-124.13015,40.13777],[-124.13992,40.14157],[-124.14523,40.15388],[-124.15517,40.15637],[-124.1586,40.16331],[-124.16613,40.16946],[-124.18824,40.15362],[-124.31896,40.25978],[-124.39016,40.46051],[-124.05364,41.02637],[-124.08292,41.0327],[-124.10273,41.04239],[-124.12156,41.08919],[-124.13432,41.14439],[-124.11431,41.13892],[-124.00842,41.52401],[-124.0305,41.52465],[-124.17653,41.80523],[-124.19984,41.79497],[-124.16338,42.06947],[-124.19324,42.06865],[-124.22272,42.07456],[-124.22571,42.04923],[-124.32659,42.11253],[-124.41018,42.35228],[-124.3737,42.59734],[-124.3488,42.60407],[-124.51214,42.81972],[-124.50129,42.81638],[-124.32894,43.33849],[-124.29943,43.32941],[-124.14999,43.72519],[-123.96792,45.15942],[-123.95073,45.33827],[-123.92906,45.33563],[-123.93291,45.96498],[-123.91168,45.97194],[-123.88169,45.97573],[-124.00443,46.27937],[-124.02319,46.2731],[-124.03581,46.77081],[-124.06488,46.76757],[-124.1215,46.98134],[-124.13084,46.97911],[-124.19331,47.31969],[-124.22485,47.31353],[-124.24909,47.31405],[-124.44229,47.83779],[-124.47446,47.8286],[-124.48546,47.82762],[-124.62672,47.94914],[-124.68299,48.22379],[-124.64755,48.22345],[-124.65144,48.29495],[-124.65976,48.35204],[-124.66898,48.37013],[-124.66826,48.37686],[-123.91224,48.12033],[-123.90407,48.13439],[-123.16238,48.10451],[-123.1656,48.12838],[-123.16445,48.1339],[-122.98682,48.05065],[-122.97705,48.06441],[-122.6963,48.12785],[-122.7135,48.14984],[-122.71983,48.17449],[-122.99122,48.11077],[-123.16085,48.19136],[-124.79395,48.45881],[-124.76356,39.57719],[-122.8263,37.65479],[-121.71363,34.40769],[-117.16033,32.52547]],[[-119.8604,34.03607],[-119.63634,34.01608],[-119.81767,33.97124],[-119.8604,34.03607]]],[[[-122.55505,38.3755],[-122.53461,38.3945],[-122.53138,38.39163],[-122.5216,38.40148],[-122.51009,38.40781],[-122.51317,38.40983],[-122.51154,38.4118],[-122.5079,38.41377],[-122.50701,38.4132],[-122.50561,38.41141],[-122.4982,38.41864],[-122.49342,38.4216],[-122.4868,38.42414],[-122.49118,38.42535],[-122.48772,38.42855],[-122.48521,38.42959],[-122.48234,38.42707],[-122.47589,38.43367],[-122.46836,38.44137],[-122.46823,38.4415],[-122.46442,38.44459],[-122.46098,38.44596],[-122.4581,38.44391],[-122.44966,38.45081],[-122.43547,38.4578],[-122.42587,38.46672],[-122.41166,38.47407],[-122.40182,38.48335],[-122.39286,38.4877],[-122.38908,38.49],[-122.39268,38.49234],[-122.39084,38.49381],[-122.38843,38.49045],[-122.37833,38.49975],[-122.36581,38.50636],[-122.36819,38.50838],[-122.36834,38.50928],[-122.36735,38.50986],[-122.36377,38.50795],[-122.35725,38.51288],[-122.35445,38.51675],[-122.34862,38.519],[-122.3436,38.52217],[-122.34552,38.52489],[-122.31992,38.53853],[-122.34644,38.56251],[-122.35191,38.56441],[-122.36848,38.5801],[-122.382,38.59803],[-122.48732,38.69027],[-122.50093,38.69662],[-122.51767,38.71671],[-122.52781,38.7257],[-122.52988,38.72647],[-122.53075,38.72851],[-122.5511,38.7445],[-122.55621,38.75033],[-122.56818,38.75947],[-122.57354,38.76677],[-122.62183,38.80994],[-122.63032,38.81499],[-122.6373,38.82223],[-122.64393,38.82497],[-122.64729,38.83078],[-122.66249,38.84149],[-122.66892,38.849],[-122.68556,38.85945],[-122.68844,38.85945],[-122.69044,38.86179],[-122.70319,38.85064],[-122.70596,38.84745],[-122.73229,38.83017],[-122.73525,38.83359],[-122.75256,38.81508],[-122.77605,38.80473],[-122.77423,38.80135],[-122.77837,38.7982],[-122.78231,38.79647],[-122.78316,38.79867],[-122.78917,38.7935],[-122.79781,38.78911],[-122.79673,38.78773],[-122.79496,38.78821],[-122.79465,38.78761],[-122.79943,38.78328],[-122.80637,38.77859],[-122.8093,38.77745],[-122.81015,38.77841],[-122.81338,38.77541],[-122.81924,38.77294],[-122.81847,38.77168],[-122.82438,38.76684],[-122.82923,38.76409],[-122.8327,38.76466],[-122.8394,38.75844],[-122.84416,38.75636],[-122.84346,38.75466],[-122.84755,38.75087],[-122.85218,38.74889],[-122.85516,38.75081],[-122.86218,38.74304],[-122.87258,38.73895],[-122.87078,38.73627],[-122.87348,38.73461],[-122.87708,38.73582],[-122.88666,38.72813],[-122.90178,38.721],[-122.89855,38.71835],[-122.9241,38.70503],[-122.55505,38.3755]]]],"type":"MultiPolygon"}}, {"properties":{"name":"National Agriculture Imagery Program","id":"USDA-NAIP","url":"https://gis.apfo.usda.gov/arcgis/rest/services/NAIP/USDA_CONUS_PRIME/ImageServer/tile/{zoom}/{y}/{x}","attribution":{"required":false,"text":"U.S. Department of Agriculture","url":"https://naip-usdaonline.hub.arcgis.com/"},"type":"tms","category":"photo","min_zoom":12,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[[-82.94071,24.55949],[-82.8088,24.55949],[-82.8088,24.62146],[-82.74462,24.62146],[-82.74462,24.69057],[-82.87194,24.69057],[-82.87194,24.75359],[-82.94071,24.75359],[-82.94071,24.55949]]],[[[-92.49772,48.44114],[-92.49772,48.50178],[-92.56794,48.50178],[-92.56794,48.43958],[-92.62105,48.43958],[-92.62105,48.56508],[-92.80868,48.56508],[-92.80868,48.62674],[-92.93318,48.62674],[-92.93318,48.69221],[-93.00517,48.69221],[-93.00517,48.6283],[-93.12259,48.6283],[-93.12259,48.69221],[-93.31908,48.69221],[-93.31908,48.62674],[-93.50495,48.62674],[-93.50495,48.56352],[-93.74746,48.56352],[-93.74746,48.62674],[-93.81355,48.62674],[-93.81355,48.68988],[-94.24531,48.68988],[-94.24531,48.75543],[-94.61832,48.75543],[-94.61832,48.94104],[-94.6809,48.94104],[-94.6809,49.00297],[-94.74415,49.00297],[-94.74415,49.25361],[-94.80841,49.25361],[-94.80841,49.37841],[-95.11924,49.37841],[-95.11924,49.44253],[-95.19343,49.44253],[-95.19343,49.00353],[-96.87069,49.00353],[-96.87069,49.06561],[-99.00493,49.06561],[-99.00493,49.00507],[-109.36993,49.00507],[-109.36993,49.06682],[-109.50587,49.06682],[-109.50587,49.00507],[-114.183,49.00507],[-114.183,49.06873],[-114.75787,49.06873],[-114.75787,49.00507],[-115.43373,49.00507],[-115.43373,49.06714],[-116.50627,49.06714],[-116.50627,49.00507],[-117.30895,49.00507],[-117.30895,49.06598],[-119.88295,49.06598],[-119.88295,49.00507],[-120.12086,49.00507],[-120.12086,49.06784],[-121.44516,49.06784],[-121.44516,49.00507],[-121.93118,49.00507],[-121.93118,49.06561],[-122.81748,49.06561],[-122.81748,49.00291],[-122.87952,49.00291],[-122.87952,48.9347],[-122.81746,48.9347],[-122.81746,48.8102],[-122.75389,48.8102],[-122.75389,48.75338],[-122.87129,48.75338],[-122.87129,48.81539],[-123.00554,48.81539],[-123.00554,48.75295],[-123.12969,48.75295],[-123.12969,48.69022],[-123.18382,48.69022],[-123.18382,48.7529],[-123.25493,48.7529],[-123.25493,48.55923],[-123.19222,48.55923],[-123.19222,48.43484],[-122.94196,48.43484],[-122.94196,48.37208],[-122.88062,48.37208],[-122.88062,48.30948],[-122.81676,48.30948],[-122.81676,48.19046],[-123.00411,48.19046],[-123.00411,48.12759],[-123.05842,48.12759],[-123.05842,48.19051],[-123.25411,48.19051],[-123.25411,48.1275],[-123.37066,48.1275],[-123.37066,48.19084],[-124.05826,48.19084],[-124.05826,48.25344],[-124.18152,48.25344],[-124.18152,48.31647],[-124.43191,48.31647],[-124.43191,48.37826],[-124.55646,48.37826],[-124.55646,48.44083],[-124.75551,48.44083],[-124.75551,48.1915],[-124.81853,48.1915],[-124.81853,48.12284],[-124.7553,48.12284],[-124.7553,47.55353],[-124.38121,47.55353],[-124.38121,47.12187],[-124.19289,47.12187],[-124.19289,43.75694],[-124.44434,43.75694],[-124.44434,43.14256],[-124.63989,43.14256],[-124.63989,42.61945],[-124.44385,42.61945],[-124.44385,39.80807],[-123.88157,39.80807],[-123.88157,39.11028],[-123.75805,39.11028],[-123.75805,38.49688],[-123.27028,38.49688],[-123.27028,37.93319],[-122.81481,37.93319],[-122.81481,37.80196],[-122.56643,37.80196],[-122.56643,36.93196],[-121.8784,36.93196],[-121.8784,36.68976],[-122.00347,36.68976],[-122.00347,36.43411],[-121.94142,36.43411],[-121.94142,35.92976],[-121.5041,35.92976],[-121.5041,35.81003],[-121.37903,35.81003],[-121.37903,35.42392],[-120.94265,35.42392],[-120.94265,35.18497],[-120.8172,35.18497],[-120.8172,35.12199],[-120.69184,35.12199],[-120.69184,34.49668],[-120.50459,34.49668],[-120.50459,34.43397],[-120.00788,34.43397],[-120.00788,34.36826],[-119.52835,34.36826],[-119.52835,34.05764],[-119.0061,34.05764],[-119.0061,33.99753],[-118.50463,33.99753],[-118.50463,33.86946],[-118.44132,33.86946],[-118.44132,33.68653],[-118.06691,33.68653],[-118.06691,33.30638],[-117.503,33.30638],[-117.503,33.05003],[-117.31882,33.05003],[-117.31882,32.62059],[-117.1917,32.62059],[-117.1917,32.49746],[-116.7465,32.49746],[-116.7465,32.56092],[-115.99701,32.56092],[-115.99701,32.62649],[-114.88081,32.62649],[-114.88081,32.43408],[-114.62945,32.43408],[-114.62945,32.37316],[-114.44474,32.37316],[-114.44474,32.30754],[-114.25576,32.30754],[-114.25576,32.24446],[-114.06803,32.24446],[-114.06803,32.18291],[-113.81665,32.18291],[-113.81665,32.12076],[-113.63074,32.12076],[-113.63074,32.05651],[-113.44175,32.05651],[-113.44175,31.99844],[-113.2546,31.99844],[-113.2546,31.93254],[-113.06807,31.93254],[-113.06807,31.87181],[-112.81611,31.87181],[-112.81611,31.81042],[-112.63088,31.81042],[-112.63088,31.74647],[-112.44189,31.74647],[-112.44189,31.6856],[-112.25719,31.6856],[-112.25719,31.62104],[-112.00338,31.62104],[-112.00338,31.55958],[-111.81562,31.55958],[-111.81562,31.49702],[-111.62786,31.49702],[-111.62786,31.43399],[-111.4419,31.43399],[-111.4419,31.37339],[-111.25597,31.37339],[-111.25597,31.31132],[-108.18458,31.31132],[-108.18458,31.74595],[-106.50651,31.74595],[-106.50651,31.68423],[-106.37973,31.68423],[-106.37973,31.62175],[-106.31743,31.62175],[-106.31743,31.49682],[-106.25518,31.49682],[-106.25518,31.43449],[-106.19247,31.43449],[-106.19247,31.37213],[-106.00392,31.37213],[-106.00392,31.30933],[-105.94166,31.30933],[-105.94166,31.24575],[-105.87982,31.24575],[-105.87982,31.18362],[-105.81623,31.18362],[-105.81623,31.12072],[-105.69212,31.12072],[-105.69212,31.05848],[-105.63029,31.05848],[-105.63029,30.93283],[-105.50444,30.93283],[-105.50444,30.87159],[-105.4413,30.87159],[-105.4413,30.80846],[-105.37815,30.80846],[-105.37815,30.74718],[-105.19047,30.74718],[-105.19047,30.68432],[-105.12862,30.68432],[-105.12862,30.61997],[-105.00365,30.61997],[-105.00365,30.55891],[-104.9418,30.55891],[-104.9418,30.49632],[-104.8782,30.49632],[-104.8782,30.30983],[-104.81553,30.30983],[-104.81553,30.24783],[-104.75361,30.24783],[-104.75361,29.93539],[-104.69095,29.93539],[-104.69095,29.80902],[-104.62913,29.80902],[-104.62913,29.68436],[-104.56599,29.68436],[-104.56599,29.62235],[-104.50372,29.62235],[-104.50372,29.55954],[-104.44101,29.55954],[-104.44101,29.49748],[-104.25376,29.49748],[-104.25376,29.37167],[-104.1292,29.37167],[-104.1292,29.30916],[-104.06887,29.30916],[-104.06887,29.24673],[-103.81873,29.24673],[-103.81873,29.18431],[-103.75574,29.18431],[-103.75574,29.12232],[-103.56675,29.12232],[-103.56675,29.05981],[-103.50498,29.05981],[-103.50498,28.99675],[-103.31658,28.99675],[-103.31658,28.93469],[-103.05976,28.93469],[-103.05976,29.0593],[-102.99797,29.0593],[-102.99797,29.12129],[-102.93314,29.12129],[-102.93314,29.18486],[-102.8096,29.18486],[-102.8096,29.25262],[-102.87013,29.25262],[-102.87013,29.3081],[-102.80967,29.3081],[-102.80967,29.37155],[-102.74757,29.37155],[-102.74757,29.55819],[-102.68455,29.55819],[-102.68455,29.68477],[-102.49678,29.68477],[-102.49678,29.74577],[-102.30866,29.74577],[-102.30866,29.80866],[-102.19093,29.80866],[-102.19093,29.74601],[-101.50499,29.74601],[-101.50499,29.68468],[-101.38058,29.68468],[-101.38058,29.55945],[-101.31751,29.55945],[-101.31751,29.49589],[-101.19101,29.49589],[-101.19101,29.43261],[-101.0675,29.43261],[-101.0675,29.30881],[-100.94189,29.30881],[-100.94189,29.24562],[-100.81673,29.24562],[-100.81673,29.11904],[-100.75227,29.11904],[-100.75227,29.05782],[-100.69254,29.05782],[-100.69254,28.87204],[-100.62902,28.87204],[-100.62902,28.80954],[-100.56799,28.80954],[-100.56799,28.62255],[-100.50404,28.62255],[-100.50404,28.55838],[-100.44218,28.55838],[-100.44218,28.49683],[-100.37943,28.49683],[-100.37943,28.30929],[-100.31719,28.30929],[-100.31719,28.18357],[-100.25448,28.18357],[-100.25448,28.12139],[-100.12823,28.12139],[-100.12823,28.05921],[-100.06595,28.05921],[-100.06595,27.99661],[-100.00239,27.99661],[-100.00239,27.93322],[-99.94265,27.93322],[-99.94265,27.74547],[-99.81685,27.74547],[-99.81685,27.68343],[-99.75413,27.68343],[-99.75413,27.62215],[-99.62916,27.62215],[-99.62916,27.5589],[-99.56728,27.5589],[-99.56728,27.43538],[-99.50418,27.43538],[-99.50418,27.3774],[-99.56718,27.3774],[-99.56718,27.24637],[-99.50498,27.24637],[-99.50498,26.99656],[-99.44274,26.99656],[-99.44274,26.8728],[-99.38006,26.8728],[-99.38006,26.80682],[-99.31907,26.80682],[-99.31907,26.74736],[-99.25375,26.74736],[-99.25375,26.62101],[-99.19106,26.62101],[-99.19106,26.49567],[-99.13006,26.49567],[-99.13006,26.37138],[-99.00295,26.37138],[-99.00295,26.30938],[-98.81657,26.30938],[-98.81657,26.24578],[-98.69201,26.24578],[-98.69201,26.18371],[-98.44409,26.18371],[-98.44409,26.12172],[-98.38232,26.12172],[-98.38232,26.05965],[-98.25327,26.05965],[-98.25327,25.99869],[-98.01091,25.99869],[-98.01091,25.99323],[-97.69323,25.99323],[-97.69323,25.93341],[-97.63139,25.93341],[-97.63139,25.86959],[-97.50468,25.86959],[-97.50468,25.80735],[-97.30834,25.80735],[-97.30834,25.87312],[-97.24563,25.87312],[-97.24563,25.93537],[-97.11389,25.93537],[-97.11389,27.68092],[-97.0571,27.68092],[-97.0571,27.81082],[-95.58108,27.81082],[-95.58108,28.74688],[-94.27104,28.74688],[-94.27104,29.55941],[-92.50299,29.55941],[-92.50299,29.49748],[-91.87762,29.49748],[-91.87762,29.3727],[-91.37842,29.3727],[-91.37842,29.24683],[-91.3154,29.24683],[-91.3154,29.18443],[-91.12947,29.18443],[-91.12947,29.12326],[-91.00526,29.12326],[-91.00526,28.99684],[-89.45002,28.99684],[-89.45002,28.86774],[-88.81043,28.86774],[-88.81043,30.18419],[-85.87915,30.18419],[-85.87915,29.5455],[-84.83681,29.5455],[-84.83681,29.62252],[-84.74828,29.62252],[-84.74828,29.68362],[-84.68589,29.68362],[-84.68589,29.74684],[-83.6297,29.74684],[-83.6297,29.43244],[-83.31749,29.43244],[-83.31749,29.05794],[-82.87966,29.05794],[-82.87966,27.74535],[-82.81828,27.74535],[-82.81828,26.92909],[-82.37968,26.92909],[-82.37968,26.36942],[-81.87771,26.36942],[-81.87771,25.80597],[-81.50369,25.80597],[-81.50369,25.74748],[-81.44055,25.74748],[-81.44055,25.68515],[-81.31559,25.68515],[-81.31559,25.5601],[-81.25385,25.5601],[-81.25385,25.43424],[-81.1902,25.43424],[-81.1902,25.12343],[-81.12881,25.12343],[-81.12881,25.06194],[-81.06492,25.06194],[-81.06492,24.81578],[-81.62895,24.81578],[-81.62895,24.75384],[-81.69072,24.75384],[-81.69072,24.68994],[-81.81732,24.68994],[-81.81732,24.62792],[-82.191,24.62792],[-82.191,24.49629],[-81.62166,24.49629],[-81.62166,24.55948],[-81.37201,24.55948],[-81.37201,24.62207],[-81.05933,24.62207],[-81.05933,24.68483],[-80.93471,24.68483],[-80.93471,24.74748],[-80.74711,24.74748],[-80.74711,24.81006],[-80.36299,24.81006],[-80.36299,25.11759],[-80.12234,25.11759],[-80.12234,25.74724],[-80.05885,25.74724],[-80.05885,26.37083],[-79.99584,26.37083],[-79.99584,26.9398],[-80.05873,26.9398],[-80.05873,27.12775],[-80.12263,27.12775],[-80.12263,27.25343],[-80.1847,27.25343],[-80.1847,27.37812],[-80.24617,27.37812],[-80.24617,27.56587],[-80.30948,27.56587],[-80.30948,27.75303],[-80.37215,27.75303],[-80.37215,27.87745],[-80.43515,27.87745],[-80.43515,28.00334],[-80.49661,28.00334],[-80.49661,28.12773],[-80.55872,28.12773],[-80.55872,28.37235],[-80.49663,28.37235],[-80.49663,29.51603],[-81.12136,29.51603],[-81.12136,31.6847],[-80.60187,31.6847],[-80.60187,32.24753],[-79.4921,32.24753],[-79.4921,32.99703],[-79.11165,32.99703],[-79.11165,33.37295],[-78.61536,33.37295],[-78.61536,33.80976],[-77.9317,33.80976],[-77.9317,33.87182],[-77.86923,33.87182],[-77.86923,34.05525],[-77.68264,34.05525],[-77.68264,34.29746],[-77.24535,34.29746],[-77.24535,34.55986],[-76.49733,34.55986],[-76.49733,34.6228],[-76.43376,34.6228],[-76.43376,34.68493],[-76.37321,34.68493],[-76.37321,34.74677],[-76.30594,34.74677],[-76.30594,34.80855],[-76.2468,34.80855],[-76.2468,34.87284],[-76.18259,34.87284],[-76.18259,34.93353],[-76.12081,34.93353],[-76.12081,34.99524],[-75.9979,34.99524],[-75.9979,35.05782],[-75.87034,35.05782],[-75.87034,35.12191],[-75.74622,35.12191],[-75.74622,35.18189],[-75.49297,35.18189],[-75.49297,35.3083],[-75.43257,35.3083],[-75.43257,35.75425],[-75.49699,35.75425],[-75.49699,37.81056],[-75.3083,37.81056],[-75.3083,37.87201],[-75.2456,37.87201],[-75.2456,37.99548],[-75.18288,37.99548],[-75.18288,38.05851],[-75.11848,38.05851],[-75.11848,38.24691],[-75.05921,38.24691],[-75.05921,38.37043],[-74.99481,38.37043],[-74.99481,38.87184],[-74.48783,38.87184],[-74.48783,39.30894],[-74.17663,39.30894],[-74.17663,39.62247],[-74.0567,39.62247],[-74.0567,39.93318],[-73.9959,39.93318],[-73.9959,40.18549],[-73.93416,40.18549],[-73.93416,40.49595],[-73.8723,40.49595],[-73.8723,40.55271],[-71.80745,40.55271],[-71.80745,41.3088],[-70.88251,41.3088],[-70.88251,41.18498],[-70.74619,41.18498],[-70.74619,41.30919],[-70.43376,41.30919],[-70.43376,41.49639],[-69.93343,41.49639],[-69.93343,41.62308],[-69.86986,41.62308],[-69.86986,41.87769],[-69.93579,41.87769],[-69.93579,42.00323],[-69.99758,42.00323],[-69.99758,42.06502],[-70.06061,42.06502],[-70.06061,42.12943],[-70.55729,42.12943],[-70.55729,43.24871],[-70.49741,43.24871],[-70.49741,43.30922],[-70.37042,43.30922],[-70.37042,43.37196],[-70.30857,43.37196],[-70.30857,43.49699],[-70.18392,43.49699],[-70.18392,43.62235],[-70.05758,43.62235],[-70.05758,43.68502],[-69.74552,43.68502],[-69.74552,43.74766],[-69.24728,43.74766],[-69.24728,43.8107],[-69.05607,43.8107],[-69.05607,43.87172],[-68.99505,43.87172],[-68.99505,43.9982],[-68.49637,43.9982],[-68.49637,44.05974],[-68.3081,44.05974],[-68.3081,44.12214],[-68.18518,44.12214],[-68.18518,44.30814],[-67.9956,44.30814],[-67.9956,44.37275],[-67.8103,44.37275],[-67.8103,44.43518],[-67.49653,44.43518],[-67.49653,44.49688],[-67.37102,44.49688],[-67.37102,44.56006],[-67.18488,44.56006],[-67.18488,44.62133],[-67.12212,44.62133],[-67.12212,44.68679],[-67.05936,44.68679],[-67.05936,44.74737],[-66.93111,44.74737],[-66.93111,44.94066],[-66.99468,44.94066],[-66.99468,45.00245],[-67.05958,45.00245],[-67.05958,45.12734],[-67.1202,45.12734],[-67.1202,45.19101],[-67.24698,45.19101],[-67.24698,45.25344],[-67.31775,45.25344],[-67.31775,45.18984],[-67.37075,45.18984],[-67.37075,45.2534],[-67.43269,45.2534],[-67.43269,45.30834],[-67.37086,45.30834],[-67.37086,45.4397],[-67.43056,45.4397],[-67.43056,45.49501],[-67.37099,45.49501],[-67.37099,45.62645],[-67.6215,45.62645],[-67.6215,45.68961],[-67.68383,45.68961],[-67.68383,45.75326],[-67.74621,45.75326],[-67.74621,47.12682],[-67.87001,47.12682],[-67.87001,47.19003],[-67.93238,47.19003],[-67.93238,47.25397],[-67.99594,47.25397],[-67.99594,47.31497],[-68.12067,47.31497],[-68.12067,47.37808],[-68.44232,47.37808],[-68.44232,47.31661],[-68.63143,47.31661],[-68.63143,47.25447],[-68.9978,47.25447],[-68.9978,47.43989],[-69.06072,47.43989],[-69.06072,47.50476],[-69.25381,47.50476],[-69.25381,47.43981],[-69.31793,47.43981],[-69.31793,47.3786],[-69.44385,47.3786],[-69.44385,47.31563],[-69.50382,47.31563],[-69.50382,47.25258],[-69.56678,47.25258],[-69.56678,47.19109],[-69.63035,47.19109],[-69.63035,47.1287],[-69.69331,47.1287],[-69.69331,47.06543],[-69.75571,47.06543],[-69.75571,47.00428],[-69.81804,47.00428],[-69.81804,46.94153],[-69.8804,46.94153],[-69.8804,46.87925],[-69.94217,46.87925],[-69.94217,46.81774],[-70.00631,46.81774],[-70.00631,46.69203],[-70.07043,46.69203],[-70.07043,46.44259],[-70.19459,46.44259],[-70.19459,46.37859],[-70.2562,46.37859],[-70.2562,46.31526],[-70.32037,46.31526],[-70.32037,46.06512],[-70.3815,46.06512],[-70.3815,45.93552],[-70.32016,45.93552],[-70.32016,45.87948],[-70.44931,45.87948],[-70.44931,45.75387],[-70.507,45.75387],[-70.507,45.69169],[-70.63166,45.69169],[-70.63166,45.62916],[-70.75755,45.62916],[-70.75755,45.44147],[-70.88099,45.44147],[-70.88099,45.37806],[-71.13328,45.37806],[-71.13328,45.31515],[-71.38303,45.31515],[-71.38303,45.25342],[-71.50764,45.25342],[-71.50764,45.06557],[-73.94189,45.06557],[-73.94189,45.00312],[-74.74697,45.00312],[-74.74697,45.0649],[-74.8801,45.0649],[-74.8801,45.0029],[-75.06625,45.0029],[-75.06625,44.94152],[-75.25394,44.94152],[-75.25394,44.8776],[-75.37896,44.8776],[-75.37896,44.81535],[-75.44313,44.81535],[-75.44313,44.75361],[-75.56666,44.75361],[-75.56666,44.69099],[-75.62902,44.69099],[-75.62902,44.6285],[-75.75405,44.6285],[-75.75405,44.56638],[-75.81731,44.56638],[-75.81731,44.50289],[-75.87995,44.50289],[-75.87995,44.37849],[-76.13003,44.37849],[-76.13003,44.31592],[-76.1927,44.31592],[-76.1927,44.25344],[-76.31826,44.25344],[-76.31826,44.19167],[-76.3793,44.19167],[-76.3793,44.06537],[-76.44276,44.06537],[-76.44276,43.99638],[-76.31703,43.99638],[-76.31703,43.94146],[-76.50766,43.94146],[-76.50766,43.87233],[-76.383,43.87233],[-76.383,43.80919],[-76.25341,43.80919],[-76.25341,43.56652],[-76.50648,43.56652],[-76.50648,43.50339],[-76.63312,43.50339],[-76.63312,43.44323],[-76.69511,43.44323],[-76.69511,43.37869],[-76.81778,43.37869],[-76.81778,43.31807],[-77.682,43.31807],[-77.682,43.37894],[-78.05659,43.37894],[-78.05659,43.43969],[-78.43897,43.43969],[-78.43897,43.37944],[-78.88034,43.37944],[-78.88034,43.31497],[-79.12989,43.31497],[-79.12989,43.24293],[-79.06696,43.24293],[-79.06696,43.12999],[-79.12989,43.12999],[-79.12989,43.05773],[-79.07126,43.05773],[-79.07126,42.92949],[-78.94326,42.92949],[-78.94326,42.75422],[-79.06944,42.75422],[-79.06944,42.69416],[-79.13344,42.69416],[-79.13344,42.6297],[-79.19475,42.6297],[-79.19475,42.56635],[-79.37868,42.56635],[-79.37868,42.50334],[-79.4443,42.50334],[-79.4443,42.44106],[-79.56799,42.44106],[-79.56799,42.37753],[-79.69062,42.37753],[-79.69062,42.31711],[-79.81646,42.31711],[-79.81646,42.25345],[-80.00524,42.25345],[-80.00524,42.19092],[-80.19168,42.19092],[-80.19168,42.12726],[-80.3168,42.12726],[-80.3168,42.06699],[-80.50632,42.06699],[-80.50632,42.00343],[-80.69305,42.00343],[-80.69305,41.94151],[-80.94404,41.94151],[-80.94404,41.87812],[-81.19427,41.87812],[-81.19427,41.81665],[-81.31901,41.81665],[-81.31901,41.75455],[-81.44184,41.75455],[-81.44184,41.69096],[-81.50535,41.69096],[-81.50535,41.63016],[-82.74701,41.63016],[-82.74701,41.75369],[-82.88391,41.75369],[-82.88391,41.56561],[-82.99572,41.56561],[-82.99572,41.62704],[-83.12578,41.62704],[-83.12578,41.68784],[-83.24747,41.68784],[-83.24747,41.75369],[-83.37373,41.75369],[-83.37373,41.80928],[-83.3106,41.80928],[-83.3106,41.87161],[-83.24747,41.87161],[-83.24747,41.93614],[-83.18434,41.93614],[-83.18434,41.99609],[-83.12077,41.99609],[-83.12077,42.24648],[-83.05892,42.24648],[-83.05892,42.30896],[-82.86853,42.30896],[-82.86853,42.37177],[-82.80722,42.37177],[-82.80722,42.55855],[-82.75537,42.55855],[-82.75537,42.49549],[-82.5599,42.49549],[-82.5599,42.55855],[-82.49678,42.55855],[-82.49678,42.68336],[-82.43289,42.68336],[-82.43289,42.93422],[-82.37006,42.93422],[-82.37006,43.06481],[-82.43289,43.06481],[-82.43289,43.19176],[-82.49475,43.19176],[-82.49475,43.50346],[-82.55713,43.50346],[-82.55713,43.81609],[-82.61979,43.81609],[-82.61979,43.94221],[-82.68395,43.94221],[-82.68395,44.00226],[-82.74653,44.00226],[-82.74653,44.06705],[-82.87087,44.06705],[-82.87087,44.12919],[-83.00852,44.12919],[-83.00852,44.06648],[-83.13361,44.06648],[-83.13361,44.00539],[-83.24145,44.00539],[-83.24145,44.9962],[-83.18061,44.9962],[-83.18061,45.0673],[-83.24552,45.0673],[-83.24552,45.12874],[-83.30659,45.12874],[-83.30659,45.25515],[-83.37061,45.25515],[-83.37061,45.31659],[-83.43256,45.31659],[-83.43256,45.37921],[-83.61784,45.37921],[-83.61784,45.44197],[-83.80843,45.44197],[-83.80843,45.50362],[-84.05507,45.50362],[-84.05507,45.56479],[-84.12352,45.56479],[-84.12352,45.62878],[-84.18075,45.62878],[-84.18075,45.69147],[-84.31116,45.69147],[-84.31116,45.93371],[-83.821,45.93371],[-83.821,45.87251],[-83.49681,45.87251],[-83.49681,45.93371],[-83.43381,45.93371],[-83.43381,46.00169],[-83.49627,46.00169],[-83.49627,46.06682],[-83.56,46.06682],[-83.56,46.12616],[-83.99546,46.12616],[-83.99546,46.19317],[-84.05918,46.19317],[-84.05918,46.3815],[-84.11526,46.3815],[-84.11526,46.49536],[-84.05918,46.49536],[-84.05918,46.56827],[-84.25795,46.56827],[-84.25795,46.50512],[-84.30719,46.50512],[-84.30719,46.56827],[-84.44154,46.56827],[-84.44154,46.50453],[-84.99657,46.50453],[-84.99657,46.68429],[-84.92982,46.68429],[-84.92982,46.81808],[-85.31659,46.81808],[-85.31659,46.75358],[-87.55626,46.75358],[-87.55626,47.44074],[-87.68254,47.44074],[-87.68254,47.50356],[-88.25607,47.50356],[-88.25607,47.44337],[-88.44174,47.44337],[-88.44174,47.37899],[-88.50683,47.37899],[-88.50683,47.31539],[-88.63128,47.31539],[-88.63128,47.25398],[-88.75696,47.25398],[-88.75696,47.19347],[-88.88383,47.19347],[-88.88383,47.12847],[-88.94342,47.12847],[-88.94342,47.06621],[-89.07087,47.06621],[-89.07087,47.00268],[-89.25656,47.00268],[-89.25656,46.94108],[-90.36777,46.94108],[-90.36777,47.68448],[-90.307,47.68448],[-90.307,47.74602],[-89.99486,47.74602],[-89.99486,47.80827],[-89.80486,47.80827],[-89.80486,47.87006],[-89.67977,47.87006],[-89.67977,47.93396],[-89.49338,47.93396],[-89.49338,47.9958],[-89.42847,47.9958],[-89.42847,48.06564],[-89.99327,48.06564],[-89.99327,48.1283],[-90.74559,48.1283],[-90.74559,48.18931],[-90.80873,48.18931],[-90.80873,48.25221],[-91.06776,48.25221],[-91.06776,48.19167],[-91.19462,48.19167],[-91.19462,48.1279],[-91.68142,48.1279],[-91.68142,48.2526],[-91.93219,48.2526],[-91.93219,48.31425],[-91.99297,48.31425],[-91.99297,48.37808],[-92.31894,48.37808],[-92.31894,48.25291],[-92.37322,48.25291],[-92.37322,48.31534],[-92.43223,48.31534],[-92.43223,48.44114],[-92.49772,48.44114]],[[-115.44983,36.4478],[-115.56793,36.52026],[-115.99022,36.5295],[-115.98988,36.62455],[-116.40375,36.63041],[-116.79909,37.10968],[-117.10464,37.39444],[-117.11426,37.92037],[-116.23535,37.92037],[-116.23672,37.8304],[-115.80826,37.82714],[-115.25757,37.42253],[-115.25208,36.4478],[-115.44983,36.4478]]],[[[-123.05959,37.75281],[-123.05907,37.81532],[-123.12869,37.81569],[-123.12926,37.74785],[-123.06737,37.74753],[-123.0679,37.6849],[-122.93475,37.6842],[-122.93417,37.75215],[-123.05959,37.75281]]],[[[-123.12915,48.93432],[-122.99542,48.93432],[-122.99542,49.06451],[-123.12915,49.06451],[-123.12915,48.93432]]],[[[-71.49665,41.25414],[-71.62995,41.25409],[-71.62986,41.12291],[-71.49656,41.12297],[-71.49665,41.25414]]],[[[-69.93373,41.37919],[-69.99507,41.37917],[-69.99511,41.44316],[-70.07078,41.44313],[-70.0707,41.31449],[-70.24617,41.31443],[-70.24621,41.37755],[-70.31843,41.37752],[-70.31834,41.24482],[-70.19066,41.24487],[-70.19062,41.1886],[-69.9336,41.1887],[-69.93373,41.37919]]],[[[-68.87731,43.7467],[-68.80903,43.74673],[-68.80908,43.81023],[-68.7465,43.81025],[-68.74654,43.87216],[-68.68565,43.87218],[-68.68569,43.9405],[-68.94034,43.94041],[-68.94025,43.81176],[-68.87735,43.81178],[-68.87731,43.7467]]]],"type":"MultiPolygon"}}, {"properties":{"name":"U.S. Forest Service roads","id":"US_Forest_Service_roads","url":"https://osm.cycle.travel/forest/{zoom}/{x}/{y}.png","type":"tms","category":"map","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985]]],[[[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605]]],[[[-160.41363,70.73977],[-163.02183,69.97074],[-164.9717,68.99469],[-167.15715,68.72197],[-164.8554,67.02551],[-168.0022,66.00175],[-169.00874,66.00155],[-169.00754,64.99877],[-172.51433,63.87673],[-173.8197,59.74014],[-162.50181,58.00058],[-160.0159,58.00124],[-160.01497,57.00003],[-160.50548,56.9999],[-165.80926,54.82485],[-178.0001,52.24465],[-177.9993,51.25543],[-171.46891,51.82153],[-162.40251,53.95666],[-159.00757,55.0025],[-158.01907,55.00278],[-151.99632,55.99919],[-151.50034,57.99879],[-151.50129,58.99198],[-138.516,58.99532],[-138.51505,57.99864],[-133.99482,54.00317],[-130.00444,54.00434],[-130.00708,57.00005],[-131.97588,56.99952],[-135.12299,59.7566],[-138.00718,59.9918],[-139.17159,60.41272],[-140.9874,61.01186],[-140.9684,69.95351],[-156.17689,71.56333],[-160.41363,70.73977]]]],"type":"MultiPolygon"}}, {"properties":{"name":"USGS 3D Elevation Program","id":"USGS-3DEP","url":"https://elevation.nationalmap.gov/arcgis/services/3DEPElevation/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=3DEPElevation:Hillshade%20Gray&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","type":"wms","category":"elevation","min_zoom":9,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[[-79.12989,43.31497],[-79.12989,43.24293],[-79.06696,43.24293],[-79.06696,43.13],[-79.12989,43.13],[-79.12989,43.05773],[-79.07126,43.05773],[-79.07126,42.92949],[-78.94326,42.92949],[-78.94326,42.75422],[-82.67886,41.67159],[-82.88391,41.75369],[-83.12077,41.99609],[-83.12077,42.24648],[-83.05892,42.24648],[-83.05892,42.30896],[-82.86853,42.30896],[-82.86853,42.37177],[-82.5599,42.49549],[-82.5599,42.55855],[-82.49678,42.55855],[-82.49678,42.68336],[-82.43289,42.68336],[-82.43289,42.93422],[-82.37006,42.93422],[-82.37006,43.06481],[-82.51953,45.33698],[-83.49681,45.87251],[-83.49681,45.93371],[-83.43381,45.93371],[-83.43381,46.00169],[-83.56,46.12616],[-83.99546,46.12616],[-83.99546,46.19317],[-84.05918,46.19317],[-84.05918,46.3815],[-84.11526,46.3815],[-84.11526,46.49536],[-84.05918,46.49536],[-84.05918,46.56827],[-84.25795,46.56827],[-84.25795,46.50512],[-84.30719,46.50512],[-84.30719,46.56827],[-84.44154,46.56827],[-84.44154,46.50453],[-84.60983,46.50453],[-84.76227,46.63341],[-84.86115,46.88929],[-88.3882,48.30154],[-89.42847,48.06564],[-89.99327,48.06564],[-89.99327,48.1283],[-90.74559,48.1283],[-90.74559,48.18931],[-90.80873,48.18931],[-90.80873,48.25221],[-91.06776,48.25221],[-91.06776,48.19167],[-91.19462,48.19167],[-91.19462,48.1279],[-91.68142,48.1279],[-91.68142,48.2526],[-91.93219,48.2526],[-91.93219,48.31425],[-91.99297,48.31425],[-91.99297,48.37808],[-92.31894,48.37808],[-92.31894,48.25291],[-92.37322,48.25291],[-92.37322,48.31534],[-92.43223,48.31534],[-92.43223,48.44114],[-92.49772,48.44114],[-92.49772,48.50178],[-92.56794,48.50178],[-92.56794,48.43958],[-92.62105,48.43958],[-92.62105,48.56508],[-92.80868,48.56508],[-92.80868,48.62674],[-92.93318,48.62674],[-92.93318,48.69221],[-93.00517,48.69221],[-93.00517,48.6283],[-93.12259,48.6283],[-93.12259,48.69221],[-93.31908,48.69221],[-93.31908,48.62674],[-93.50495,48.62674],[-93.50495,48.56352],[-93.74746,48.56352],[-93.74746,48.62674],[-93.81355,48.62674],[-93.81355,48.68988],[-94.24531,48.68988],[-94.24531,48.75543],[-94.61832,48.75543],[-94.61832,48.94104],[-94.6809,48.94104],[-94.6809,49.00297],[-94.74415,49.00297],[-94.74415,49.25361],[-94.80841,49.25361],[-94.80841,49.37841],[-95.11924,49.37841],[-95.11924,49.44253],[-95.19343,49.44253],[-95.19343,49.00353],[-96.87069,49.00353],[-96.87069,49.06561],[-99.00493,49.06561],[-99.00493,49.00507],[-109.36993,49.00507],[-109.36993,49.06682],[-109.50587,49.06682],[-109.50587,49.00507],[-114.183,49.00507],[-114.183,49.06873],[-114.75787,49.06873],[-114.75787,49.00507],[-115.43373,49.00507],[-115.43373,49.06714],[-116.50627,49.06714],[-116.50627,49.00507],[-117.30895,49.00507],[-117.30895,49.06598],[-119.88295,49.06598],[-119.88295,49.00507],[-120.12086,49.00507],[-120.12086,49.06784],[-121.44516,49.06784],[-121.44516,49.00507],[-121.93118,49.00507],[-121.93118,49.06561],[-123.12915,49.06451],[-123.12915,48.93432],[-123.00554,48.75295],[-123.12969,48.75295],[-123.12969,48.69022],[-123.18382,48.69022],[-123.18382,48.7529],[-123.25493,48.7529],[-123.25493,48.55923],[-123.19222,48.55923],[-123.19222,48.43484],[-123.25411,48.19051],[-124.05826,48.19084],[-124.05826,48.25344],[-124.18152,48.25344],[-124.18152,48.31647],[-124.43191,48.31647],[-124.43191,48.37826],[-124.55646,48.37826],[-124.55646,48.44083],[-124.75551,48.44083],[-139,48.45],[-139,32.5],[-117.18748,32.5],[-116.7465,32.49746],[-116.7465,32.56092],[-115.99701,32.56092],[-115.99701,32.62649],[-115.12495,32.62474],[-115.12495,32.68749],[-114.81241,32.68749],[-114.81261,32.62524],[-114.87531,32.62557],[-114.88081,32.43408],[-114.62945,32.43408],[-114.62945,32.37316],[-114.44474,32.37316],[-114.44474,32.30754],[-114.25576,32.30754],[-114.25576,32.24446],[-114.06803,32.24446],[-114.06803,32.18291],[-113.81665,32.18291],[-113.81665,32.12076],[-113.63074,32.12076],[-113.63074,32.05651],[-113.44175,32.05651],[-113.44175,31.99844],[-113.2546,31.99844],[-113.2546,31.93254],[-113.06807,31.93254],[-113.06807,31.87181],[-112.81611,31.87181],[-112.81611,31.81042],[-112.63088,31.81042],[-112.63088,31.74647],[-112.44189,31.74647],[-112.44189,31.6856],[-112.25719,31.6856],[-112.25719,31.62104],[-112.00338,31.62104],[-112.00338,31.55958],[-111.81562,31.55958],[-111.81562,31.49702],[-111.62786,31.49702],[-111.62786,31.434],[-111.4419,31.434],[-111.4419,31.37339],[-111.25597,31.37339],[-111.25597,31.31132],[-108.18458,31.31132],[-108.18458,31.74595],[-106.50651,31.74595],[-106.50651,31.68423],[-106.37973,31.68423],[-106.37973,31.62175],[-106.31743,31.62175],[-106.31743,31.49682],[-106.25518,31.49682],[-106.25518,31.43449],[-106.19247,31.43449],[-106.19247,31.37213],[-106.00392,31.37213],[-106.00392,31.30933],[-105.94166,31.30933],[-105.94166,31.24575],[-105.87982,31.24575],[-105.87982,31.18362],[-105.81623,31.18362],[-105.81623,31.12072],[-105.69212,31.12072],[-105.69212,31.05848],[-105.63029,31.05848],[-105.63029,30.93283],[-105.50444,30.93283],[-105.50444,30.87159],[-105.4413,30.87159],[-105.4413,30.80846],[-105.37815,30.80846],[-105.37815,30.74718],[-105.19047,30.74718],[-105.19047,30.68432],[-105.12862,30.68432],[-105.12862,30.61997],[-105.00365,30.61997],[-105.00365,30.55891],[-104.9418,30.55891],[-104.9418,30.49632],[-104.8782,30.49632],[-104.8782,30.30983],[-104.81553,30.30983],[-104.81553,30.24783],[-104.75361,30.24783],[-104.75361,29.93539],[-104.69095,29.93539],[-104.69095,29.80902],[-104.62913,29.80902],[-104.62913,29.68436],[-104.56599,29.68436],[-104.56599,29.62235],[-104.50372,29.62235],[-104.50372,29.55954],[-104.44101,29.55954],[-104.44101,29.49748],[-104.25376,29.49748],[-104.25376,29.37167],[-104.1292,29.37167],[-104.1292,29.30916],[-104.06887,29.30916],[-104.06887,29.24673],[-103.81873,29.24673],[-103.81873,29.18431],[-103.75574,29.18431],[-103.75574,29.12232],[-103.56675,29.12232],[-103.56675,29.05981],[-103.50498,29.05981],[-103.50498,28.99675],[-103.31658,28.99675],[-103.31658,28.93469],[-103.05976,28.93469],[-103.05976,29.0593],[-102.99797,29.0593],[-102.99797,29.12129],[-102.93314,29.12129],[-102.93314,29.18486],[-102.8096,29.18486],[-102.8096,29.25262],[-102.87013,29.25262],[-102.87013,29.3081],[-102.80967,29.3081],[-102.80967,29.37155],[-102.74757,29.37155],[-102.74757,29.55819],[-102.68455,29.55819],[-102.68455,29.68477],[-102.49678,29.68477],[-102.49678,29.74577],[-102.30866,29.74577],[-102.30866,29.80866],[-102.19093,29.80866],[-102.19093,29.74601],[-101.50499,29.74601],[-101.50499,29.68468],[-101.38058,29.68468],[-101.38058,29.55945],[-101.31751,29.55945],[-101.31751,29.49589],[-101.19101,29.49589],[-101.19101,29.43261],[-101.0675,29.43261],[-101.0675,29.30881],[-100.94189,29.30881],[-100.94189,29.24562],[-100.81673,29.24562],[-100.81673,29.11904],[-100.75227,29.11904],[-100.75227,29.05782],[-100.69254,29.05782],[-100.69254,28.87204],[-100.62902,28.87204],[-100.62902,28.80954],[-100.56799,28.80954],[-100.56799,28.62255],[-100.50404,28.62255],[-100.50404,28.55838],[-100.44218,28.55838],[-100.44218,28.49683],[-100.37943,28.49683],[-100.37943,28.30929],[-100.31719,28.30929],[-100.31719,28.18357],[-100.25448,28.18357],[-100.25448,28.12139],[-100.12823,28.12139],[-100.12823,28.05921],[-100.06595,28.05921],[-100.06595,27.99661],[-100.00239,27.99661],[-100.00239,27.93322],[-99.94265,27.93322],[-99.94265,27.74547],[-99.81685,27.74547],[-99.81685,27.68343],[-99.75413,27.68343],[-99.75413,27.62215],[-99.62916,27.62215],[-99.62916,27.5589],[-99.56728,27.5589],[-99.56728,27.43538],[-99.50418,27.43538],[-99.50418,27.3774],[-99.56718,27.3774],[-99.56718,27.24637],[-99.50498,27.24637],[-99.50498,26.99656],[-99.44274,26.99656],[-99.44274,26.8728],[-99.38006,26.8728],[-99.38006,26.80682],[-99.31907,26.80682],[-99.31907,26.74736],[-99.25375,26.74736],[-99.25375,26.62101],[-99.19106,26.62101],[-99.19106,26.49567],[-99.13006,26.49567],[-99.13006,26.37138],[-99.00295,26.37138],[-99.00295,26.30938],[-98.81657,26.30938],[-98.81657,26.24578],[-98.69201,26.24578],[-98.69201,26.18371],[-98.44409,26.18371],[-98.44409,26.12172],[-98.38232,26.12172],[-98.38232,26.05965],[-98.25327,26.05965],[-98.25327,25.99869],[-98.01091,25.99869],[-98.01091,25.99323],[-97.69323,25.99323],[-97.69323,25.93341],[-97.63139,25.93341],[-97.63139,25.86959],[-97.50468,25.86959],[-97.50468,25.80735],[-97.30834,25.80735],[-97.30834,25.87312],[-97.24563,25.87312],[-97.24563,25.93537],[-97.11389,25.93537],[-80.7,24],[-79.314,27.108],[-66.93111,44.74737],[-66.93111,44.94066],[-66.99468,44.94066],[-66.99468,45.00245],[-67.05958,45.00245],[-67.05958,45.12734],[-67.1202,45.12734],[-67.1202,45.19101],[-67.24698,45.19101],[-67.24698,45.25344],[-67.31775,45.25344],[-67.31775,45.18984],[-67.37075,45.18984],[-67.37075,45.2534],[-67.43269,45.2534],[-67.43269,45.30834],[-67.37086,45.30834],[-67.37086,45.4397],[-67.43056,45.4397],[-67.43056,45.49501],[-67.37099,45.49501],[-67.37099,45.62645],[-67.6215,45.62645],[-67.6215,45.68961],[-67.68383,45.68961],[-67.68383,45.75326],[-67.74621,45.75326],[-67.74621,47.12682],[-67.87001,47.12682],[-67.87001,47.19003],[-67.93238,47.19003],[-67.93238,47.25397],[-67.99594,47.25397],[-67.99594,47.31497],[-68.12067,47.31497],[-68.12067,47.37808],[-68.44232,47.37808],[-68.44232,47.31661],[-68.63143,47.31661],[-68.63143,47.25447],[-68.9978,47.25447],[-68.9978,47.43989],[-69.06072,47.43989],[-69.06072,47.50476],[-69.25381,47.50476],[-69.25381,47.43981],[-69.31793,47.43981],[-69.31793,47.3786],[-69.44385,47.3786],[-69.44385,47.31563],[-69.50382,47.31563],[-69.50382,47.25258],[-69.56678,47.25258],[-69.56678,47.19109],[-69.63035,47.19109],[-69.63035,47.1287],[-69.69331,47.1287],[-69.69331,47.06543],[-69.75571,47.06543],[-69.75571,47.00428],[-69.81804,47.00428],[-69.81804,46.94153],[-69.8804,46.94153],[-69.8804,46.87925],[-69.94217,46.87925],[-69.94217,46.81774],[-70.00631,46.81774],[-70.00631,46.69203],[-70.07043,46.69203],[-70.07043,46.44259],[-70.19459,46.44259],[-70.19459,46.37859],[-70.2562,46.37859],[-70.2562,46.31526],[-70.32037,46.31526],[-70.32037,46.06512],[-70.3815,46.06512],[-70.3815,45.93552],[-70.32016,45.93552],[-70.32016,45.87948],[-70.44931,45.87948],[-70.44931,45.75387],[-70.507,45.75387],[-70.507,45.69169],[-70.63166,45.69169],[-70.63166,45.62916],[-70.75755,45.62916],[-70.75755,45.44147],[-70.88099,45.44147],[-70.88099,45.37806],[-71.13328,45.37806],[-71.13328,45.31515],[-71.38303,45.31515],[-71.38303,45.25342],[-71.50764,45.25342],[-71.50764,45.06557],[-73.94189,45.06557],[-73.94189,45.00312],[-74.74697,45.00312],[-74.74697,45.0649],[-74.8801,45.0649],[-74.8801,45.0029],[-75.06625,45.0029],[-75.06625,44.94152],[-75.25394,44.94152],[-75.25394,44.8776],[-75.37896,44.8776],[-75.37896,44.81535],[-75.44313,44.81535],[-75.44313,44.75361],[-75.56666,44.75361],[-75.56666,44.691],[-75.62902,44.691],[-75.62902,44.6285],[-75.75405,44.6285],[-75.75405,44.56638],[-75.81731,44.56638],[-75.81731,44.50289],[-75.87995,44.50289],[-75.87995,44.37849],[-76.13003,44.37849],[-76.13003,44.31592],[-76.1927,44.31592],[-76.1927,44.25344],[-76.31826,44.25344],[-76.31826,44.19167],[-76.3793,44.19167],[-76.3793,44.06537],[-76.80375,43.64253],[-79.12989,43.31497]]],[[[-179.9341,50.83371],[-179.56389,50.86369],[-130.578,54.66271],[-129.97925,55.27755],[-129.95728,56.02295],[-132.01721,57.04073],[-135.46143,59.81168],[-136.37329,59.59553],[-136.59302,59.18437],[-137.44446,58.91599],[-137.58179,59.24903],[-139.19678,60.0895],[-139.04297,60.35956],[-141.02052,60.2943],[-140.99787,69.90649],[-163.30086,71.97901],[-169.03565,65.70804],[-172.22169,63.79219],[-179.9341,50.83371]]],[[[-64.62535,18.46935],[-64.62327,18.27536],[-64.53781,17.62308],[-68.02734,18.00485],[-67.79388,18.54342],[-64.62535,18.46935]]]],"type":"MultiPolygon"}}, @@ -500,6 +504,9 @@ {"properties":{"name":"MSB Aerial Imagery - Core Area (2022)","id":"MSB_Aerial_2022","url":"https://maps.matsugov.us/imagery/rest/services/Imagery/AerialMosaic_2022_SP_Dyn/ImageServer/exportImage?f=image&format=jpg&bbox={bbox}&imageSR={wkid}&bboxSR={wkid}&size={width},{height}&f={proj}","attribution":{"required":false,"text":"Matanuska-Susitna Borough GIS Division","url":"https://data1-msb.opendata.arcgis.com/pages/msb-aerial-imagery"},"type":"wms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-150.57351,61.40648],[-150.57308,61.43812],[-150.4693,61.43873],[-150.46884,61.51299],[-150.26741,61.51355],[-150.2674,61.528],[-150.21452,61.52772],[-150.22224,61.96671],[-150.28152,61.9666],[-150.28216,62.02425],[-150.18667,62.02443],[-150.18726,62.13459],[-150.2512,62.19819],[-150.36433,62.19821],[-150.35707,62.56092],[-151.09513,62.55967],[-151.09217,62.44059],[-150.75765,62.44115],[-150.74873,62.00333],[-150.56629,62.00334],[-150.56129,61.78838],[-150.77665,61.78752],[-150.62831,61.40625],[-150.57351,61.40648]]],"type":"Polygon"}}, {"properties":{"name":"PAgis 2018 Orthophotography","id":"PAgis_Ortho_2018","url":"https://www.pagis.org/arcgis/services/MAPS/AerialPhotos2018/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":"Pulaski Area Geographic Information System","url":"https://www.pagis.org/"},"type":"wms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-92.75493,34.84636],[-92.65777,34.84694],[-92.65707,34.75991],[-92.55161,34.76045],[-92.55115,34.6879],[-92.50721,34.6881],[-92.50707,34.66635],[-92.44561,34.66661],[-92.44535,34.6231],[-92.34887,34.62341],[-92.34865,34.5799],[-92.25224,34.58011],[-92.25195,34.49308],[-92.22567,34.49312],[-92.22565,34.48587],[-92.02421,34.48609],[-92.02425,34.62388],[-92.1032,34.62385],[-92.10322,34.66013],[-92.09447,34.66013],[-92.0945,34.69639],[-92.08575,34.69641],[-92.08574,34.71815],[-92.07696,34.71816],[-92.077,34.76893],[-92.06823,34.76896],[-92.06844,35.01555],[-92.23593,35.01534],[-92.23569,34.9283],[-92.26211,34.92825],[-92.26214,34.93548],[-92.42063,34.93503],[-92.42055,34.91331],[-92.45575,34.91313],[-92.47042,34.94247],[-92.48118,34.95006],[-92.49286,34.95245],[-92.52334,34.95063],[-92.55292,34.95626],[-92.55283,34.94176],[-92.64972,34.94127],[-92.64951,34.91225],[-92.75512,34.9116],[-92.75493,34.84636]]],"type":"Polygon"}}, {"properties":{"name":"PAgis 2021 Orthophotography","id":"PAgis_Ortho_2021","url":"https://www.pagis.org/arcgis/rest/services/MAPS/AerialPhotos2021/MapServer/export?f=image&format=jpg&bbox={bbox}&bboxSR={wkid}&imageSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Pulaski Area Geographic Information System","url":"https://www.pagis.org/"},"type":"wms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-92.75493,34.84636],[-92.65777,34.84694],[-92.65707,34.75991],[-92.55161,34.76045],[-92.55115,34.6879],[-92.50721,34.6881],[-92.50707,34.66635],[-92.44561,34.66661],[-92.44535,34.6231],[-92.34887,34.62341],[-92.34865,34.5799],[-92.25224,34.58011],[-92.25195,34.49308],[-92.22567,34.49312],[-92.22565,34.48587],[-92.02421,34.48609],[-92.02425,34.62388],[-92.1032,34.62385],[-92.10322,34.66013],[-92.09447,34.66013],[-92.0945,34.69639],[-92.08575,34.69641],[-92.08574,34.71815],[-92.07696,34.71816],[-92.077,34.76893],[-92.06823,34.76896],[-92.06844,35.01555],[-92.23593,35.01534],[-92.23569,34.9283],[-92.26211,34.92825],[-92.26214,34.93548],[-92.42063,34.93503],[-92.42055,34.91331],[-92.45575,34.91313],[-92.47042,34.94247],[-92.48118,34.95006],[-92.49286,34.95245],[-92.52334,34.95063],[-92.55292,34.95626],[-92.55283,34.94176],[-92.64972,34.94127],[-92.64951,34.91225],[-92.75512,34.9116],[-92.75493,34.84636]]],"type":"Polygon"}}, +{"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":"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"}}, @@ -617,9 +624,9 @@ {"properties":{"name":"NJ 2015 Aerial Imagery (Natural Color)","id":"img.nj.gov-Natural2015","url":"https://img.nj.gov/imagerywms/Natural2015?LAYERS=Natural2015&STYLES=&FORMAT=image/png&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":false,"text":"NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)","url":"https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D"},"type":"wms","category":"historicphoto","min_zoom":3,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-74.86599,40.08543],[-74.93534,40.07256],[-75.05653,40.00868],[-75.14236,39.95791],[-75.14456,39.88322],[-75.18515,39.88042],[-75.24499,39.85486],[-75.33339,39.8495],[-75.41531,39.80156],[-75.45131,39.78304],[-75.57744,39.62346],[-75.54245,39.56827],[-75.57847,39.48183],[-74.91678,38.84647],[-74.31702,39.38739],[-74.06708,39.75155],[-73.92141,40.49222],[-74.2382,40.49378],[-74.23859,40.54916],[-74.20211,40.54924],[-74.20228,40.57648],[-74.18406,40.57609],[-74.18436,40.63146],[-74.07587,40.63078],[-74.07532,40.64457],[-74.02124,40.65811],[-74.02081,40.69919],[-74.00265,40.69929],[-74.00247,40.74037],[-73.98434,40.74026],[-73.98402,40.78145],[-73.96591,40.78158],[-73.96597,40.80868],[-73.94777,40.80861],[-73.94769,40.82232],[-73.92966,40.82225],[-73.92906,40.86355],[-73.91104,40.86329],[-73.91061,40.91838],[-73.8923,40.91831],[-73.89215,40.95961],[-73.87413,40.95942],[-73.87386,40.99251],[-74.70601,41.36513],[-74.75716,41.34769],[-74.79801,41.32268],[-74.84024,41.27864],[-74.90547,41.17038],[-74.98152,41.1126],[-75.03902,41.03819],[-75.13515,40.99441],[-75.13773,40.97309],[-75.05705,40.86757],[-75.06846,40.85037],[-75.09687,40.85096],[-75.10099,40.83927],[-75.09018,40.82238],[-75.1367,40.77729],[-75.1724,40.78067],[-75.19833,40.75389],[-75.20506,40.69131],[-75.20373,40.61832],[-75.19764,40.57367],[-75.16777,40.55907],[-75.10237,40.56702],[-75.06906,40.5365],[-75.07421,40.45505],[-75.06134,40.4165],[-75.02684,40.40252],[-74.9671,40.3952],[-74.94461,40.33817],[-74.86839,40.29157],[-74.84402,40.24796],[-74.77552,40.21428],[-74.76334,40.19172],[-74.72918,40.16392],[-74.72609,40.14949],[-74.78805,40.12468],[-74.8229,40.13033],[-74.86599,40.08543]]],"type":"Polygon"}}, {"properties":{"name":"NJGIN Orthoimagery 2020 - Natural (1ft leaf off)","id":"NJ_Natural_2020","url":"https://img.nj.gov/imagerywms/Natural2020?LAYERS=Natural2020&STYLES=&SRS={proj}&BBOX={bbox}&FORMAT=image/jpeg&WIDTH={width}&HEIGHT={height}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","attribution":{"required":false,"text":"NJGIN, NJOGIS","url":"https://njgin.nj.gov/njgin/edata/imagery/"},"type":"wms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-74.83878,40.10066],[-74.85483,40.09285],[-74.86024,40.08477],[-74.90865,40.07052],[-74.92925,40.0694],[-74.96907,40.05239],[-75.01422,40.01966],[-75.04512,40.01052],[-75.06907,39.98179],[-75.0925,39.97442],[-75.12056,39.96462],[-75.13309,39.95561],[-75.1361,39.93047],[-75.12829,39.91066],[-75.13567,39.89117],[-75.14674,39.8834],[-75.18515,39.88042],[-75.25497,39.85092],[-75.33608,39.84868],[-75.41908,39.79996],[-75.4723,39.75946],[-75.57735,39.62473],[-75.54245,39.56827],[-75.54817,39.46694],[-75.14374,39.17319],[-74.99062,39.18543],[-74.89243,39.16201],[-74.98444,38.93912],[-74.9192,38.88034],[-74.78565,38.99597],[-74.408,39.36005],[-74.32011,39.43884],[-74.09454,39.72435],[-73.9349,40.48352],[-74.26363,40.49461],[-74.25505,40.5151],[-74.24629,40.52065],[-74.25161,40.54714],[-74.23127,40.55907],[-74.21728,40.55672],[-74.20475,40.59095],[-74.19943,40.59864],[-74.20372,40.60604],[-74.20183,40.63252],[-74.18698,40.64483],[-74.18003,40.64659],[-74.14827,40.64209],[-74.0627,40.6518],[-74.0379,40.66632],[-74.01043,40.76273],[-73.96374,40.8242],[-73.9246,40.89898],[-73.89464,40.99383],[-73.99959,41.04086],[-74.10491,41.08768],[-74.23299,41.14286],[-74.35942,41.2001],[-74.44782,41.244],[-74.50782,41.27239],[-74.69538,41.3579],[-74.70038,41.35489],[-74.71235,41.35157],[-74.72089,41.3474],[-74.72857,41.34611],[-74.74819,41.34669],[-74.75359,41.34637],[-74.75533,41.34577],[-74.76059,41.33983],[-74.76342,41.33123],[-74.77256,41.32481],[-74.786,41.32397],[-74.79381,41.32207],[-74.79604,41.31866],[-74.792,41.31353],[-74.79222,41.31089],[-74.80548,41.30405],[-74.81385,41.29712],[-74.82239,41.29374],[-74.82994,41.28742],[-74.83754,41.27806],[-74.84625,41.26216],[-74.84483,41.25761],[-74.84848,41.25148],[-74.85539,41.25035],[-74.85741,41.24877],[-74.86191,41.24222],[-74.86208,41.23748],[-74.86693,41.23206],[-74.86771,41.22715],[-74.85893,41.22028],[-74.87723,41.19299],[-74.88185,41.18083],[-74.89165,41.17194],[-74.89921,41.16748],[-74.94006,41.13019],[-74.94598,41.12841],[-74.94903,41.12269],[-74.96418,41.11438],[-74.97109,41.11383],[-74.98027,41.11066],[-74.98281,41.10665],[-74.99177,41.09145],[-74.9916,41.08893],[-74.98817,41.08812],[-74.98328,41.08909],[-74.97448,41.09446],[-74.96821,41.09591],[-74.96671,41.09213],[-74.96946,41.08601],[-74.9822,41.07932],[-74.99212,41.07777],[-74.9998,41.07411],[-75.00684,41.06751],[-75.01194,41.06761],[-75.01332,41.06631],[-75.0174,41.05625],[-75.02718,41.04483],[-75.02675,41.03981],[-75.03357,41.03757],[-75.04169,41.03181],[-75.04958,41.02861],[-75.07258,41.01847],[-75.08424,41.01554],[-75.09402,41.00926],[-75.10777,41.00429],[-75.12773,40.99354],[-75.13134,40.99026],[-75.13258,40.98061],[-75.13593,40.9764],[-75.1352,40.97235],[-75.13088,40.96875],[-75.1238,40.96993],[-75.11992,40.96922],[-75.12069,40.96345],[-75.11825,40.95367],[-75.11138,40.94791],[-75.10477,40.93493],[-75.09683,40.9254],[-75.07784,40.91257],[-75.07516,40.90088],[-75.07527,40.8942],[-75.05183,40.8716],[-75.05087,40.86495],[-75.05825,40.86102],[-75.06346,40.8562],[-75.06434,40.85462],[-75.06366,40.84937],[-75.06919,40.84693],[-75.07591,40.84977],[-75.09155,40.8494],[-75.09692,40.84565],[-75.09756,40.83946],[-75.08288,40.82717],[-75.08941,40.81683],[-75.09911,40.80978],[-75.10205,40.79766],[-75.1099,40.79032],[-75.12245,40.78737],[-75.13387,40.77386],[-75.15114,40.77505],[-75.16075,40.7777],[-75.16786,40.77872],[-75.17148,40.77767],[-75.17479,40.77474],[-75.17734,40.76402],[-75.1814,40.75994],[-75.19041,40.75678],[-75.19562,40.75282],[-75.1967,40.74934],[-75.19513,40.74532],[-75.18395,40.73552],[-75.18167,40.7308],[-75.18588,40.72573],[-75.18642,40.71965],[-75.19086,40.71695],[-75.19517,40.71231],[-75.20434,40.69145],[-75.19798,40.6822],[-75.19155,40.67942],[-75.18326,40.67997],[-75.17968,40.67922],[-75.1773,40.67693],[-75.17698,40.67335],[-75.18266,40.66583],[-75.18813,40.66352],[-75.19783,40.65487],[-75.19762,40.65248],[-75.20049,40.64791],[-75.19041,40.63587],[-75.1882,40.62483],[-75.19017,40.62001],[-75.20013,40.61822],[-75.2018,40.61656],[-75.19266,40.60307],[-75.18914,40.58942],[-75.19601,40.57931],[-75.1882,40.57006],[-75.17296,40.56442],[-75.1603,40.56422],[-75.14464,40.5741],[-75.13606,40.57596],[-75.11597,40.57306],[-75.09992,40.56729],[-75.06726,40.54003],[-75.06374,40.49675],[-75.06267,40.4872],[-75.06306,40.47999],[-75.06447,40.47676],[-75.06793,40.4734],[-75.06731,40.4652],[-75.07057,40.45648],[-75.06602,40.44492],[-75.0601,40.41987],[-75.05559,40.41637],[-75.04559,40.41402],[-75.04113,40.41007],[-75.02808,40.40392],[-75.00246,40.4082],[-74.99624,40.41036],[-74.99177,40.40925],[-74.97967,40.40346],[-74.9683,40.39928],[-74.96457,40.39598],[-74.94796,40.36401],[-74.94435,40.34465],[-74.94062,40.33811],[-74.90809,40.31661],[-74.89865,40.31546],[-74.89191,40.31347],[-74.86919,40.29625],[-74.86037,40.28576],[-74.85154,40.2667],[-74.84187,40.24976],[-74.82415,40.2416],[-74.81913,40.23826],[-74.79818,40.23033],[-74.77441,40.21755],[-74.7611,40.20005],[-74.75458,40.18537],[-74.74111,40.17973],[-74.73218,40.17382],[-74.72042,40.15815],[-74.72257,40.14726],[-74.74085,40.1344],[-74.75381,40.1342],[-74.76162,40.13276],[-74.7817,40.12121],[-74.78823,40.12035],[-74.81578,40.12777],[-74.82393,40.12633],[-74.83878,40.10066]]],"type":"Polygon"}}, {"properties":{"name":"Los Alamos County Orthoimagery 2018 (1in)","id":"Los_Alamos_1in_2018","url":"https://gis.losalamosnm.us/securegis/rest/services/imagery/Orthoimagery_drone_1_inch/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Los Alamos County GIS Services","url":"https://www.losalamosnm.us/Services/Property-and-Taxes/GIS-and-Maps/Geographic-Information-System-Services"},"type":"wms","category":"historicphoto","max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[[-106.18705,35.8287],[-106.19015,35.8278],[-106.19076,35.82822],[-106.19184,35.82801],[-106.19192,35.82696],[-106.18814,35.8186],[-106.18558,35.81949],[-106.18222,35.82429],[-106.17905,35.82645],[-106.17873,35.82765],[-106.17955,35.82822],[-106.18219,35.82801],[-106.18705,35.8287]]],[[[-106.22187,35.8284],[-106.22187,35.82393],[-106.22125,35.82326],[-106.21169,35.82695],[-106.21285,35.82832],[-106.21629,35.82794],[-106.21867,35.82791],[-106.22164,35.82866],[-106.22187,35.8284]]],[[[-106.27908,35.87515],[-106.2792,35.87841],[-106.28147,35.87971],[-106.28389,35.88049],[-106.29238,35.88041],[-106.29322,35.87988],[-106.29283,35.87772],[-106.29191,35.87687],[-106.28662,35.87553],[-106.28426,35.87504],[-106.27908,35.87515]]],[[[-106.27373,35.8913],[-106.27383,35.89635],[-106.28825,35.89618],[-106.28893,35.89533],[-106.29547,35.89633],[-106.29593,35.89596],[-106.2954,35.89265],[-106.28659,35.89114],[-106.27902,35.89062],[-106.27373,35.8913]]],[[[-106.31251,35.87858],[-106.31276,35.87892],[-106.31639,35.87915],[-106.318,35.87909],[-106.31931,35.8787],[-106.31962,35.87641],[-106.31942,35.87576],[-106.31212,35.87246],[-106.30776,35.87244],[-106.30588,35.87667],[-106.30633,35.8777],[-106.30771,35.8783],[-106.31005,35.87873],[-106.31126,35.87841],[-106.31251,35.87858]]],[[[-106.3035,35.88083],[-106.30382,35.88121],[-106.31125,35.88364],[-106.3127,35.88395],[-106.3189,35.88386],[-106.31947,35.88342],[-106.31946,35.88267],[-106.31918,35.8823],[-106.31742,35.88197],[-106.31505,35.88217],[-106.31112,35.88188],[-106.3046,35.88015],[-106.30378,35.88017],[-106.3035,35.88083]]],[[[-106.31858,35.89846],[-106.31812,35.89974],[-106.31907,35.90056],[-106.32097,35.90154],[-106.32225,35.9017],[-106.3234,35.89977],[-106.32302,35.89868],[-106.32185,35.89804],[-106.32044,35.89805],[-106.31858,35.89846]]],[[[-106.30151,35.90533],[-106.30082,35.90545],[-106.30014,35.9061],[-106.29995,35.90747],[-106.3001,35.90804],[-106.3011,35.90822],[-106.30201,35.90796],[-106.30421,35.90616],[-106.30391,35.90586],[-106.3027,35.90577],[-106.30151,35.90533]]]],"type":"MultiPolygon"}}, -{"properties":{"name":"Los Alamos County Orthoimagery 2018 (3in)","id":"Los_Alamos_3in_2018","url":"https://gis.losalamosnm.us/securegis/rest/services/imagery/Orthoimagery_pictometry_3in_2018/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Los Alamos County GIS Services","url":"https://www.losalamosnm.us/government/departments/administrative_services/information_management/geographic_information_system_services"},"type":"wms","category":"historicphoto","max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[[-106.15419,35.77479],[-106.15411,35.84007],[-106.25208,35.8401],[-106.25209,35.77482],[-106.15419,35.77479]]],[[[-106.18972,35.86185],[-106.18967,35.92712],[-106.40369,35.92704],[-106.40355,35.86176],[-106.18972,35.86185]]]],"type":"MultiPolygon"}}, -{"properties":{"name":"Los Alamos County Orthoimagery 2022 (3in)","id":"Los_Alamos_3in_2022","url":"https://gis.losalamosnm.us/securegis/rest/services/imagery/Orthoimagery_pictometry_3in_2022/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Los Alamos County GIS Services","url":"https://www.losalamosnm.us/government/departments/administrative_services/information_management/geographic_information_system_services"},"type":"wms","category":"photo","max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[[-106.15419,35.77479],[-106.15411,35.84007],[-106.25208,35.8401],[-106.25209,35.77482],[-106.15419,35.77479]]],[[[-106.18972,35.86185],[-106.18967,35.92712],[-106.40369,35.92704],[-106.40355,35.86176],[-106.18972,35.86185]]]],"type":"MultiPolygon"}}, -{"properties":{"name":"Northern New Mexico NAIP 2022 (Infrared)","id":"Los_Alamos_NAIP_CIR_2022","url":"https://gis.losalamosnm.us/securegis/rest/services/imagery/Orthoimagery_pictometry_3in_2022/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Los Alamos County GIS Services","url":"https://www.losalamosnm.us/government/departments/administrative_services/information_management/geographic_information_system_services"},"type":"wms","category":"photo","max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-107.1974,35.21937],[-106.24479,35.21541],[-106.23782,34.9969],[-105.23502,34.99479],[-105.23502,35.17266],[-103.61977,35.18421],[-103.62228,35.42252],[-103.72319,35.4226],[-103.97823,35.80326],[-104.30773,35.80202],[-104.43902,36.26927],[-105.29487,36.30523],[-105.22021,36.99515],[-107.42123,36.99995],[-107.61101,36.80074],[-107.62588,36.00055],[-107.30997,35.99851],[-107.30654,35.30224],[-107.23819,35.30346],[-107.1974,35.21937]]],"type":"Polygon"}}, +{"properties":{"name":"Los Alamos County Orthoimagery 2018 (3in)","id":"Los_Alamos_3in_2018","url":"https://gis.losalamosnm.us/securegis/rest/services/imagery/Orthoimagery_pictometry_3in_2018/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Los Alamos County GIS Services","url":"https://www.losalamosnm.us/Services/Property-and-Taxes/GIS-and-Maps/Geographic-Information-System-Services"},"type":"wms","category":"historicphoto","max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[[-106.15419,35.77479],[-106.15411,35.84007],[-106.25208,35.8401],[-106.25209,35.77482],[-106.15419,35.77479]]],[[[-106.18972,35.86185],[-106.18967,35.92712],[-106.40369,35.92704],[-106.40355,35.86176],[-106.18972,35.86185]]]],"type":"MultiPolygon"}}, +{"properties":{"name":"Los Alamos County Orthoimagery 2022 (3in)","id":"Los_Alamos_3in_2022","url":"https://gis.losalamosnm.us/securegis/rest/services/imagery/Orthoimagery_pictometry_3in_2022/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Los Alamos County GIS Services","url":"https://www.losalamosnm.us/Services/Property-and-Taxes/GIS-and-Maps/Geographic-Information-System-Services"},"type":"wms","category":"photo","max_zoom":20,"best":true},"type":"Feature","geometry":{"coordinates":[[[[-106.15419,35.77479],[-106.15411,35.84007],[-106.25208,35.8401],[-106.25209,35.77482],[-106.15419,35.77479]]],[[[-106.18972,35.86185],[-106.18967,35.92712],[-106.40369,35.92704],[-106.40355,35.86176],[-106.18972,35.86185]]]],"type":"MultiPolygon"}}, +{"properties":{"name":"Northern New Mexico NAIP 2022 (Infrared)","id":"Los_Alamos_NAIP_CIR_2022","url":"https://gis.losalamosnm.us/securegis/rest/services/imagery/Orthoimagery_pictometry_3in_2022/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Los Alamos County GIS Services","url":"https://www.losalamosnm.us/Services/Property-and-Taxes/GIS-and-Maps/Geographic-Information-System-Services"},"type":"wms","category":"photo","max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-107.1974,35.21937],[-106.24479,35.21541],[-106.23782,34.9969],[-105.23502,34.99479],[-105.23502,35.17266],[-103.61977,35.18421],[-103.62228,35.42252],[-103.72319,35.4226],[-103.97823,35.80326],[-104.30773,35.80202],[-104.43902,36.26927],[-105.29487,36.30523],[-105.22021,36.99515],[-107.42123,36.99995],[-107.61101,36.80074],[-107.62588,36.00055],[-107.30997,35.99851],[-107.30654,35.30224],[-107.23819,35.30346],[-107.1974,35.21937]]],"type":"Polygon"}}, {"properties":{"name":"MRCOG Orthoimagery (2020)","id":"MRCOG_Ortho_2020","url":"https://gstore.unm.edu/apps/rgis/datasets/a2f27db4-ed08-4ec9-b5b3-5b12e6f1bb89/services/ogc/wms?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=MRCOG_2020_ECW&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"Mid-Region Council of Governments, Bohannan Huston, Inc.","url":"https://www.mrcog-nm.gov/198/Orthophotography"},"type":"wms","category":"photo","min_zoom":3,"max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-106.80955,33.85591],[-106.80874,34.20158],[-106.79157,34.20186],[-106.79123,34.36129],[-106.75587,34.36016],[-106.75621,34.38935],[-106.73836,34.38963],[-106.73801,34.48024],[-106.65665,34.47769],[-106.51382,34.43382],[-106.41701,34.43325],[-106.41735,34.52127],[-106.47125,34.52155],[-106.48087,34.8107],[-106.34251,34.8107],[-106.34216,34.87044],[-106.12312,34.86931],[-106.12312,34.97488],[-106.24363,34.97488],[-106.245,35.34033],[-106.22269,35.34033],[-106.22406,35.70331],[-106.54987,35.70359],[-106.5485,35.55932],[-106.69098,35.55932],[-106.68961,35.42151],[-106.95602,35.42067],[-106.9562,35.21898],[-107.20274,35.21968],[-107.20459,34.60902],[-107.21086,34.60893],[-107.21044,34.57862],[-106.91332,34.58033],[-106.91391,34.30346],[-106.9227,34.30341],[-106.92268,34.29619],[-106.93147,34.29615],[-106.93141,34.28896],[-106.94022,34.28891],[-106.94012,34.28171],[-106.94895,34.28166],[-106.94881,33.96223],[-106.9313,33.96226],[-106.93165,33.93318],[-106.8965,33.93307],[-106.89659,33.85584],[-106.80955,33.85591]]],"type":"Polygon"}}, {"properties":{"name":"Cattaraugus County Orthoimagery (2020)","id":"Cattaraugus_NY_2020","url":"https://maps2.cattco.org/arcgiswebadaptor/rest/services/AerialPhotos/MapServer/export?f=image&format=jpg&layers=show:12&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":"historicphoto","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":"Cattaraugus County Orthoimagery (2021)","id":"Cattaraugus_NY_2021","url":"https://maps2.cattco.org/arcgiswebadaptor/rest/services/AerialPhotos/MapServer/export?f=image&format=jpg&layers=show:8&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":"historicphoto","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"}}, @@ -674,7 +681,8 @@ {"properties":{"name":"Snohomish County Orthoimagery (2020)","id":"Snohomish_WA_2020","url":"https://maps.snoco.org/gisimagery/rest/services/imagery/2020_orthophotos/ImageServer/exportImage?f=image&format=jpg&bbox={bbox}&imageSR={wkid}&bboxSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Snohomish County GIS","url":"https://snohomishcountywa.gov/1402/Maps-GIS"},"type":"wms","category":"historicphoto","min_zoom":8,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-121.48447,48.31322],[-122.43728,48.30382],[-122.43701,48.26053],[-122.42631,48.26061],[-122.42601,48.25338],[-122.41509,48.25353],[-122.41501,48.24632],[-122.40418,48.24643],[-122.4009,48.12332],[-122.31338,47.97124],[-122.44255,47.76787],[-121.44448,47.77831],[-121.4463,47.86478],[-121.31674,47.86594],[-121.31874,47.90844],[-121.44602,47.90855],[-121.44775,48.00961],[-121.4154,48.00951],[-121.41603,48.0531],[-121.40508,48.05316],[-121.40529,48.06754],[-121.39447,48.0676],[-121.3945,48.0748],[-121.38371,48.0749],[-121.3842,48.11104],[-121.39488,48.11099],[-121.39504,48.12558],[-121.40607,48.12534],[-121.40658,48.14705],[-121.41707,48.147],[-121.41719,48.16882],[-121.42803,48.16869],[-121.42821,48.17596],[-121.44972,48.17583],[-121.45007,48.20465],[-121.48269,48.20434],[-121.48447,48.31322]],[[-121.78481,48.13713],[-121.78575,48.18802],[-121.8178,48.18757],[-121.81822,48.20261],[-121.63391,48.20377],[-121.63373,48.17472],[-121.59044,48.1751],[-121.59016,48.16074],[-121.46012,48.16143],[-121.45994,48.14684],[-121.44917,48.1469],[-121.44887,48.13249],[-121.42747,48.1326],[-121.4269,48.1181],[-121.41668,48.11824],[-121.41606,48.11113],[-121.40584,48.11118],[-121.40489,48.07426],[-121.41591,48.0742],[-121.41495,48.05997],[-121.4484,48.05989],[-121.44871,48.07466],[-121.47021,48.07427],[-121.47026,48.08913],[-121.49204,48.08856],[-121.49232,48.11054],[-121.58848,48.11013],[-121.58836,48.1022],[-121.68679,48.10151],[-121.68901,48.13825],[-121.78481,48.13713]]],"type":"Polygon"}}, {"properties":{"name":"Snohomish County Orthoimagery (2022)","id":"Snohomish_WA_2022","url":"https://maps.snoco.org/gisimagery/rest/services/imagery/2022_orthophotos/ImageServer/exportImage?f=image&format=jpg&bbox={bbox}&imageSR={wkid}&bboxSR={wkid}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Snohomish County GIS","url":"https://snohomishcountywa.gov/1402/Maps-GIS"},"type":"wms","category":"photo","min_zoom":8,"max_zoom":20},"type":"Feature","geometry":{"coordinates":[[[-121.48447,48.31322],[-122.43728,48.30382],[-122.43701,48.26053],[-122.42631,48.26061],[-122.42601,48.25338],[-122.41509,48.25353],[-122.41501,48.24632],[-122.40418,48.24643],[-122.4009,48.12332],[-122.31338,47.97124],[-122.44255,47.76787],[-121.44448,47.77831],[-121.4463,47.86478],[-121.31674,47.86594],[-121.31874,47.90844],[-121.44602,47.90855],[-121.44775,48.00961],[-121.4154,48.00951],[-121.41603,48.0531],[-121.40508,48.05316],[-121.40529,48.06754],[-121.39447,48.0676],[-121.3945,48.0748],[-121.38371,48.0749],[-121.3842,48.11104],[-121.39488,48.11099],[-121.39504,48.12558],[-121.40607,48.12534],[-121.40658,48.14705],[-121.41707,48.147],[-121.41719,48.16882],[-121.42803,48.16869],[-121.42821,48.17596],[-121.44972,48.17583],[-121.45007,48.20465],[-121.48269,48.20434],[-121.48447,48.31322]],[[-121.78481,48.13713],[-121.78575,48.18802],[-121.8178,48.18757],[-121.81822,48.20261],[-121.63391,48.20377],[-121.63373,48.17472],[-121.59044,48.1751],[-121.59016,48.16074],[-121.46012,48.16143],[-121.45994,48.14684],[-121.44917,48.1469],[-121.44887,48.13249],[-121.42747,48.1326],[-121.4269,48.1181],[-121.41668,48.11824],[-121.41606,48.11113],[-121.40584,48.11118],[-121.40489,48.07426],[-121.41591,48.0742],[-121.41495,48.05997],[-121.4484,48.05989],[-121.44871,48.07466],[-121.47021,48.07427],[-121.47026,48.08913],[-121.49204,48.08856],[-121.49232,48.11054],[-121.58848,48.11013],[-121.58836,48.1022],[-121.68679,48.10151],[-121.68901,48.13825],[-121.78481,48.13713]]],"type":"Polygon"}}, {"properties":{"name":"Wisconsin Leaf-Off Orthophotography (DNR)","id":"WISC_DNR_Ortho_Composite","url":"https://dnrmaps.wi.gov/arcgis_image/rest/services/DW_Imagery/EN_Image_Basemap_Latest_Leaf_Off/ImageServer/exportImage?f=image&format=jpg&imageSR={wkid}&bboxSR={wkid}&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":false,"text":"Wisconsin Regional Orthoimagery Consortium, Southeastern Wisconsin Regional Planning Commission, Wisconsin Department of Natural Resources","url":"https://dnr.wisconsin.gov/"},"type":"wms","category":"photo","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-87.80099,42.49185],[-86.80092,45.42641],[-86.92108,45.43123],[-87.5885,45.09437],[-87.65734,45.10951],[-87.67811,45.14076],[-87.73407,45.17913],[-87.73853,45.19958],[-87.72686,45.20865],[-87.70489,45.26244],[-87.65339,45.33188],[-87.65253,45.35588],[-87.67039,45.39145],[-87.70077,45.39134],[-87.75398,45.35287],[-87.85552,45.35117],[-87.85509,45.43809],[-87.80994,45.46651],[-87.79381,45.49913],[-87.80291,45.54778],[-87.814,45.54815],[-87.8149,45.56074],[-87.78689,45.56095],[-87.78495,45.58048],[-87.77499,45.58059],[-87.77666,45.61925],[-87.79372,45.61932],[-87.81321,45.64282],[-87.81333,45.66373],[-87.77853,45.67044],[-87.77853,45.68343],[-87.85509,45.73962],[-87.89886,45.76094],[-87.95637,45.75968],[-87.97761,45.77049],[-87.98161,45.79745],[-88.04546,45.78417],[-88.09267,45.78704],[-88.12031,45.80846],[-88.11679,45.83305],[-88.06829,45.87854],[-88.09731,45.88272],[-88.09645,45.92369],[-88.24167,45.96499],[-88.32467,45.96517],[-88.37128,45.99303],[-88.38278,45.99303],[-88.39445,45.98253],[-88.42346,45.9839],[-88.465,46.00263],[-88.49427,45.99613],[-88.50397,46.0214],[-88.53848,46.02248],[-88.60783,46.01926],[-88.62203,45.99007],[-88.661,45.99031],[-88.67306,46.01187],[-88.72456,46.02593],[-88.77653,46.02739],[-88.77666,46.03395],[-88.80279,46.03511],[-88.80262,46.02608],[-88.81652,46.0254],[-89.0799,46.1394],[-90.11398,46.33793],[-90.15402,46.41505],[-90.15424,46.46018],[-90.17797,46.46022],[-90.17811,46.50046],[-90.24152,46.51173],[-90.31311,46.5562],[-90.55206,46.59568],[-90.76973,46.72951],[-90.51292,46.85972],[-90.96405,47.03082],[-91.52058,46.75962],[-92.18091,46.749],[-92.18047,46.73815],[-92.21688,46.73746],[-92.21665,46.73194],[-92.25247,46.73125],[-92.25072,46.68918],[-92.31583,46.68788],[-92.2958,46.15986],[-92.29649,46.08561],[-92.33631,46.06704],[-92.35103,46.02706],[-92.4327,46.02778],[-92.46858,45.98348],[-92.52634,45.98372],[-92.72718,45.90303],[-92.79362,45.7601],[-92.86803,45.71942],[-92.89095,45.64552],[-92.88239,45.5639],[-92.76538,45.56142],[-92.69088,45.4741],[-92.6529,45.4452],[-92.65213,45.40683],[-92.7047,45.35987],[-92.7095,45.3256],[-92.76225,45.28832],[-92.76512,45.18059],[-92.74075,45.114],[-92.80392,45.06237],[-92.73972,44.93661],[-92.80632,44.74771],[-92.55295,44.58753],[-92.31812,44.54693],[-92.29752,44.48622],[-91.98097,44.37982],[-91.8924,44.24126],[-91.72623,44.1083],[-91.34445,43.94611],[-91.26892,43.79737],[-91.26377,43.4579],[-91.12164,43.34166],[-91.06087,43.24995],[-91.13262,43.18365],[-91.17004,43.0882],[-91.14704,42.93179],[-91.08387,42.87118],[-91.07872,42.8017],[-91.06773,42.75911],[-90.98225,42.70212],[-90.71137,42.64431],[-90.64476,42.5453],[-90.63618,42.51792],[-90.64285,42.50648],[-87.80099,42.49185]]],"type":"Polygon"}}, -{"properties":{"name":"Monongalia County 2022 Aerial Imagery","id":"Monongalia_WV_2022","url":"https://gis.morgantownwv.gov/image/services/Imagery/Monongalia_County_2022/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=Monongalia_County_2022:None&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"Monongalia Morgantown Area Geospatial Information Consortium","url":"https://gis.morgantownwv.gov/portal/home/item.html?id=f2830b58cd894fa0a0712e2cc9537bba"},"type":"wms","category":"photo","max_zoom":19,"best":true},"type":"Feature","geometry":{"coordinates":[[[-80.42454,39.73301],[-80.42545,39.73286],[-80.42754,39.73233],[-80.42926,39.73168],[-80.43025,39.73122],[-80.43179,39.73031],[-80.43265,39.72971],[-80.43362,39.72887],[-80.43451,39.72794],[-80.43547,39.72672],[-80.43623,39.72559],[-80.43689,39.72436],[-80.43747,39.72293],[-80.43775,39.72195],[-80.43796,39.72069],[-80.43798,39.71988],[-80.43786,39.71843],[-80.43747,39.71694],[-80.43629,39.71445],[-80.43627,39.71343],[-80.43617,39.71265],[-80.43582,39.711],[-80.43532,39.70953],[-80.43456,39.70812],[-80.43359,39.7068],[-80.43224,39.70543],[-80.4303,39.70391],[-80.42863,39.70289],[-80.42688,39.70211],[-80.42497,39.70147],[-80.4225,39.70103],[-80.42252,39.69984],[-80.42243,39.69866],[-80.42222,39.69768],[-80.42171,39.69614],[-80.42175,39.69486],[-80.42153,39.69325],[-80.42104,39.69127],[-80.42007,39.68913],[-80.41934,39.68776],[-80.41757,39.68553],[-80.416,39.684],[-80.41355,39.6822],[-80.41466,39.68081],[-80.41541,39.67966],[-80.41609,39.67819],[-80.4165,39.67663],[-80.4167,39.67503],[-80.41665,39.67337],[-80.41746,39.67203],[-80.41801,39.6708],[-80.41849,39.669],[-80.41867,39.66781],[-80.4187,39.66634],[-80.4186,39.66538],[-80.41823,39.66389],[-80.4176,39.66246],[-80.41694,39.66138],[-80.41635,39.65972],[-80.41691,39.65802],[-80.41718,39.65643],[-80.4172,39.65494],[-80.41698,39.65346],[-80.41645,39.65186],[-80.41596,39.65089],[-80.41515,39.64962],[-80.41405,39.64836],[-80.41292,39.64737],[-80.40905,39.64465],[-80.40969,39.64381],[-80.41048,39.64238],[-80.41091,39.64108],[-80.41126,39.63983],[-80.41155,39.63829],[-80.41156,39.63679],[-80.41131,39.63528],[-80.4108,39.63373],[-80.41006,39.63233],[-80.40902,39.63087],[-80.40791,39.62978],[-80.40675,39.62883],[-80.40265,39.62629],[-80.4005,39.62445],[-80.39889,39.6235],[-80.3971,39.62269],[-80.39508,39.62206],[-80.39316,39.62166],[-80.3905,39.62142],[-80.38862,39.62104],[-80.38691,39.62086],[-80.38459,39.62083],[-80.38304,39.62099],[-80.38085,39.62035],[-80.37851,39.61989],[-80.37615,39.6197],[-80.37599,39.61884],[-80.37574,39.61799],[-80.37513,39.61659],[-80.37426,39.61519],[-80.37318,39.61389],[-80.3719,39.61266],[-80.37033,39.61152],[-80.36795,39.61027],[-80.365,39.60829],[-80.36383,39.60682],[-80.36234,39.60546],[-80.36045,39.60424],[-80.3588,39.60344],[-80.35705,39.60225],[-80.35559,39.6015],[-80.35374,39.60079],[-80.35184,39.60029],[-80.34981,39.59996],[-80.34801,39.59989],[-80.34657,39.59991],[-80.34463,39.60012],[-80.34161,39.59953],[-80.33961,39.59944],[-80.33807,39.59948],[-80.33634,39.59965],[-80.33384,39.60023],[-80.33193,39.60039],[-80.32925,39.60003],[-80.32709,39.59943],[-80.32543,39.59911],[-80.32378,39.59898],[-80.32194,39.59899],[-80.32029,39.59911],[-80.31778,39.59937],[-80.31584,39.59983],[-80.3132,39.59994],[-80.30981,39.59976],[-80.27055,39.59946],[-80.26807,39.59961],[-80.26612,39.59957],[-80.25061,39.59933],[-80.16508,39.59868],[-80.15889,39.59539],[-80.15645,39.59126],[-80.15509,39.58941],[-80.15313,39.58772],[-80.15066,39.58626],[-80.15002,39.584],[-80.14903,39.58211],[-80.14713,39.57997],[-80.14529,39.57846],[-80.14422,39.57692],[-80.14226,39.57504],[-80.1398,39.57342],[-80.13737,39.57108],[-80.13526,39.56982],[-80.13322,39.56887],[-80.13052,39.56809],[-80.12786,39.56776],[-80.12506,39.56653],[-80.12346,39.56456],[-80.12162,39.56298],[-80.11934,39.56165],[-80.11697,39.56062],[-80.11559,39.55916],[-80.11335,39.55755],[-80.10895,39.55521],[-80.10388,39.55172],[-80.09385,39.54408],[-80.06118,39.51973],[-80.06216,39.5173],[-80.0625,39.51477],[-80.06227,39.51212],[-80.06141,39.50974],[-80.05997,39.50772],[-80.0581,39.50583],[-80.05061,39.49892],[-80.04701,39.49669],[-80.04195,39.49472],[-80.03767,39.49371],[-80.03304,39.49333],[-80.0322,39.49031],[-80.03083,39.48816],[-80.0289,39.48629],[-80.02684,39.485],[-80.02623,39.48334],[-80.02494,39.48147],[-80.02327,39.47979],[-80.02116,39.47827],[-80.01877,39.4771],[-80.01636,39.47627],[-80.01314,39.47564],[-80.00952,39.47448],[-80.00695,39.47407],[-80.00468,39.47393],[-80.00328,39.47208],[-80.0015,39.47057],[-79.99894,39.4691],[-79.99627,39.46795],[-79.99302,39.46709],[-79.99159,39.46607],[-79.99106,39.4643],[-79.99018,39.46271],[-79.98902,39.46126],[-79.98732,39.45972],[-79.98521,39.45841],[-79.98311,39.45736],[-79.98125,39.45676],[-79.97987,39.45529],[-79.97796,39.45383],[-79.97536,39.45251],[-79.90369,39.42574],[-79.90052,39.42457],[-79.8983,39.42406],[-79.89586,39.4238],[-79.8934,39.42383],[-79.89158,39.42407],[-79.88936,39.42458],[-79.88689,39.42554],[-79.8848,39.42673],[-79.88303,39.42823],[-79.88147,39.43009],[-79.88052,39.43171],[-79.87989,39.43333],[-79.87964,39.43552],[-79.87971,39.43705],[-79.88428,39.47882],[-79.77561,39.61878],[-79.7745,39.62139],[-79.77413,39.6244],[-79.77054,39.65456],[-79.75287,39.68691],[-79.74982,39.69244],[-79.74921,39.69384],[-79.74887,39.69517],[-79.74866,39.69658],[-79.74868,39.72127],[-79.74894,39.72316],[-79.74957,39.72496],[-79.75072,39.72684],[-79.75222,39.72856],[-79.75471,39.73037],[-79.75751,39.73168],[-79.75986,39.73234],[-79.76237,39.73274],[-79.76424,39.73279],[-80.42158,39.73322],[-80.42202,39.7332],[-80.42358,39.73313],[-80.42454,39.73301]]],"type":"Polygon"}}, +{"properties":{"name":"Monongalia County 2022 Aerial Imagery","id":"Monongalia_WV_2022","url":"https://gis.morgantownwv.gov/image/services/Imagery/Monongalia_County_2022/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=Monongalia_County_2022:None&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"Monongalia Morgantown Area Geospatial Information Consortium","url":"https://mmagic-monco.hub.arcgis.com/"},"type":"wms","category":"historicphoto","max_zoom":19},"type":"Feature","geometry":{"coordinates":[[[-80.42454,39.73301],[-80.42545,39.73286],[-80.42754,39.73233],[-80.42926,39.73168],[-80.43025,39.73122],[-80.43179,39.73031],[-80.43265,39.72971],[-80.43362,39.72887],[-80.43451,39.72794],[-80.43547,39.72672],[-80.43623,39.72559],[-80.43689,39.72436],[-80.43747,39.72293],[-80.43775,39.72195],[-80.43796,39.72069],[-80.43798,39.71988],[-80.43786,39.71843],[-80.43747,39.71694],[-80.43629,39.71445],[-80.43627,39.71343],[-80.43617,39.71265],[-80.43582,39.711],[-80.43532,39.70953],[-80.43456,39.70812],[-80.43359,39.7068],[-80.43224,39.70543],[-80.4303,39.70391],[-80.42863,39.70289],[-80.42688,39.70211],[-80.42497,39.70147],[-80.4225,39.70103],[-80.42252,39.69984],[-80.42243,39.69866],[-80.42222,39.69768],[-80.42171,39.69614],[-80.42175,39.69486],[-80.42153,39.69325],[-80.42104,39.69127],[-80.42007,39.68913],[-80.41934,39.68776],[-80.41757,39.68553],[-80.416,39.684],[-80.41355,39.6822],[-80.41466,39.68081],[-80.41541,39.67966],[-80.41609,39.67819],[-80.4165,39.67663],[-80.4167,39.67503],[-80.41665,39.67337],[-80.41746,39.67203],[-80.41801,39.6708],[-80.41849,39.669],[-80.41867,39.66781],[-80.4187,39.66634],[-80.4186,39.66538],[-80.41823,39.66389],[-80.4176,39.66246],[-80.41694,39.66138],[-80.41635,39.65972],[-80.41691,39.65802],[-80.41718,39.65643],[-80.4172,39.65494],[-80.41698,39.65346],[-80.41645,39.65186],[-80.41596,39.65089],[-80.41515,39.64962],[-80.41405,39.64836],[-80.41292,39.64737],[-80.40905,39.64465],[-80.40969,39.64381],[-80.41048,39.64238],[-80.41091,39.64108],[-80.41126,39.63983],[-80.41155,39.63829],[-80.41156,39.63679],[-80.41131,39.63528],[-80.4108,39.63373],[-80.41006,39.63233],[-80.40902,39.63087],[-80.40791,39.62978],[-80.40675,39.62883],[-80.40265,39.62629],[-80.4005,39.62445],[-80.39889,39.6235],[-80.3971,39.62269],[-80.39508,39.62206],[-80.39316,39.62166],[-80.3905,39.62142],[-80.38862,39.62104],[-80.38691,39.62086],[-80.38459,39.62083],[-80.38304,39.62099],[-80.38085,39.62035],[-80.37851,39.61989],[-80.37615,39.6197],[-80.37599,39.61884],[-80.37574,39.61799],[-80.37513,39.61659],[-80.37426,39.61519],[-80.37318,39.61389],[-80.3719,39.61266],[-80.37033,39.61152],[-80.36795,39.61027],[-80.365,39.60829],[-80.36383,39.60682],[-80.36234,39.60546],[-80.36045,39.60424],[-80.3588,39.60344],[-80.35705,39.60225],[-80.35559,39.6015],[-80.35374,39.60079],[-80.35184,39.60029],[-80.34981,39.59996],[-80.34801,39.59989],[-80.34657,39.59991],[-80.34463,39.60012],[-80.34161,39.59953],[-80.33961,39.59944],[-80.33807,39.59948],[-80.33634,39.59965],[-80.33384,39.60023],[-80.33193,39.60039],[-80.32925,39.60003],[-80.32709,39.59943],[-80.32543,39.59911],[-80.32378,39.59898],[-80.32194,39.59899],[-80.32029,39.59911],[-80.31778,39.59937],[-80.31584,39.59983],[-80.3132,39.59994],[-80.30981,39.59976],[-80.27055,39.59946],[-80.26807,39.59961],[-80.26612,39.59957],[-80.25061,39.59933],[-80.16508,39.59868],[-80.15889,39.59539],[-80.15645,39.59126],[-80.15509,39.58941],[-80.15313,39.58772],[-80.15066,39.58626],[-80.15002,39.584],[-80.14903,39.58211],[-80.14713,39.57997],[-80.14529,39.57846],[-80.14422,39.57692],[-80.14226,39.57504],[-80.1398,39.57342],[-80.13737,39.57108],[-80.13526,39.56982],[-80.13322,39.56887],[-80.13052,39.56809],[-80.12786,39.56776],[-80.12506,39.56653],[-80.12346,39.56456],[-80.12162,39.56298],[-80.11934,39.56165],[-80.11697,39.56062],[-80.11559,39.55916],[-80.11335,39.55755],[-80.10895,39.55521],[-80.10388,39.55172],[-80.09385,39.54408],[-80.06118,39.51973],[-80.06216,39.5173],[-80.0625,39.51477],[-80.06227,39.51212],[-80.06141,39.50974],[-80.05997,39.50772],[-80.0581,39.50583],[-80.05061,39.49892],[-80.04701,39.49669],[-80.04195,39.49472],[-80.03767,39.49371],[-80.03304,39.49333],[-80.0322,39.49031],[-80.03083,39.48816],[-80.0289,39.48629],[-80.02684,39.485],[-80.02623,39.48334],[-80.02494,39.48147],[-80.02327,39.47979],[-80.02116,39.47827],[-80.01877,39.4771],[-80.01636,39.47627],[-80.01314,39.47564],[-80.00952,39.47448],[-80.00695,39.47407],[-80.00468,39.47393],[-80.00328,39.47208],[-80.0015,39.47057],[-79.99894,39.4691],[-79.99627,39.46795],[-79.99302,39.46709],[-79.99159,39.46607],[-79.99106,39.4643],[-79.99018,39.46271],[-79.98902,39.46126],[-79.98732,39.45972],[-79.98521,39.45841],[-79.98311,39.45736],[-79.98125,39.45676],[-79.97987,39.45529],[-79.97796,39.45383],[-79.97536,39.45251],[-79.90369,39.42574],[-79.90052,39.42457],[-79.8983,39.42406],[-79.89586,39.4238],[-79.8934,39.42383],[-79.89158,39.42407],[-79.88936,39.42458],[-79.88689,39.42554],[-79.8848,39.42673],[-79.88303,39.42823],[-79.88147,39.43009],[-79.88052,39.43171],[-79.87989,39.43333],[-79.87964,39.43552],[-79.87971,39.43705],[-79.88428,39.47882],[-79.77561,39.61878],[-79.7745,39.62139],[-79.77413,39.6244],[-79.77054,39.65456],[-79.75287,39.68691],[-79.74982,39.69244],[-79.74921,39.69384],[-79.74887,39.69517],[-79.74866,39.69658],[-79.74868,39.72127],[-79.74894,39.72316],[-79.74957,39.72496],[-79.75072,39.72684],[-79.75222,39.72856],[-79.75471,39.73037],[-79.75751,39.73168],[-79.75986,39.73234],[-79.76237,39.73274],[-79.76424,39.73279],[-80.42158,39.73322],[-80.42202,39.7332],[-80.42358,39.73313],[-80.42454,39.73301]]],"type":"Polygon"}}, +{"properties":{"name":"Monongalia County 2023 Aerial Imagery","id":"Monongalia_WV_2023","url":"https://gis.morgantownwv.gov/image/services/Imagery/Monongalia_County_2023/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=Monongalia_County_2023:None&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","attribution":{"required":false,"text":"Monongalia Morgantown Area Geospatial Information Consortium","url":"https://mmagic-monco.hub.arcgis.com/"},"type":"wms","category":"photo","max_zoom":19,"best":true},"type":"Feature","geometry":{"coordinates":[[[-80.42454,39.73301],[-80.42545,39.73286],[-80.42754,39.73233],[-80.42926,39.73168],[-80.43025,39.73122],[-80.43179,39.73031],[-80.43265,39.72971],[-80.43362,39.72887],[-80.43451,39.72794],[-80.43547,39.72672],[-80.43623,39.72559],[-80.43689,39.72436],[-80.43747,39.72293],[-80.43775,39.72195],[-80.43796,39.72069],[-80.43798,39.71988],[-80.43786,39.71843],[-80.43747,39.71694],[-80.43629,39.71445],[-80.43627,39.71343],[-80.43617,39.71265],[-80.43582,39.711],[-80.43532,39.70953],[-80.43456,39.70812],[-80.43359,39.7068],[-80.43224,39.70543],[-80.4303,39.70391],[-80.42863,39.70289],[-80.42688,39.70211],[-80.42497,39.70147],[-80.4225,39.70103],[-80.42252,39.69984],[-80.42243,39.69866],[-80.42222,39.69768],[-80.42171,39.69614],[-80.42175,39.69486],[-80.42153,39.69325],[-80.42104,39.69127],[-80.42007,39.68913],[-80.41934,39.68776],[-80.41757,39.68553],[-80.416,39.684],[-80.41355,39.6822],[-80.41466,39.68081],[-80.41541,39.67966],[-80.41609,39.67819],[-80.4165,39.67663],[-80.4167,39.67503],[-80.41665,39.67337],[-80.41746,39.67203],[-80.41801,39.6708],[-80.41849,39.669],[-80.41867,39.66781],[-80.4187,39.66634],[-80.4186,39.66538],[-80.41823,39.66389],[-80.4176,39.66246],[-80.41694,39.66138],[-80.41635,39.65972],[-80.41691,39.65802],[-80.41718,39.65643],[-80.4172,39.65494],[-80.41698,39.65346],[-80.41645,39.65186],[-80.41596,39.65089],[-80.41515,39.64962],[-80.41405,39.64836],[-80.41292,39.64737],[-80.40905,39.64465],[-80.40969,39.64381],[-80.41048,39.64238],[-80.41091,39.64108],[-80.41126,39.63983],[-80.41155,39.63829],[-80.41156,39.63679],[-80.41131,39.63528],[-80.4108,39.63373],[-80.41006,39.63233],[-80.40902,39.63087],[-80.40791,39.62978],[-80.40675,39.62883],[-80.40265,39.62629],[-80.4005,39.62445],[-80.39889,39.6235],[-80.3971,39.62269],[-80.39508,39.62206],[-80.39316,39.62166],[-80.3905,39.62142],[-80.38862,39.62104],[-80.38691,39.62086],[-80.38459,39.62083],[-80.38304,39.62099],[-80.38085,39.62035],[-80.37851,39.61989],[-80.37615,39.6197],[-80.37599,39.61884],[-80.37574,39.61799],[-80.37513,39.61659],[-80.37426,39.61519],[-80.37318,39.61389],[-80.3719,39.61266],[-80.37033,39.61152],[-80.36795,39.61027],[-80.365,39.60829],[-80.36383,39.60682],[-80.36234,39.60546],[-80.36045,39.60424],[-80.3588,39.60344],[-80.35705,39.60225],[-80.35559,39.6015],[-80.35374,39.60079],[-80.35184,39.60029],[-80.34981,39.59996],[-80.34801,39.59989],[-80.34657,39.59991],[-80.34463,39.60012],[-80.34161,39.59953],[-80.33961,39.59944],[-80.33807,39.59948],[-80.33634,39.59965],[-80.33384,39.60023],[-80.33193,39.60039],[-80.32925,39.60003],[-80.32709,39.59943],[-80.32543,39.59911],[-80.32378,39.59898],[-80.32194,39.59899],[-80.32029,39.59911],[-80.31778,39.59937],[-80.31584,39.59983],[-80.3132,39.59994],[-80.30981,39.59976],[-80.27055,39.59946],[-80.26807,39.59961],[-80.26612,39.59957],[-80.25061,39.59933],[-80.16508,39.59868],[-80.15889,39.59539],[-80.15645,39.59126],[-80.15509,39.58941],[-80.15313,39.58772],[-80.15066,39.58626],[-80.15002,39.584],[-80.14903,39.58211],[-80.14713,39.57997],[-80.14529,39.57846],[-80.14422,39.57692],[-80.14226,39.57504],[-80.1398,39.57342],[-80.13737,39.57108],[-80.13526,39.56982],[-80.13322,39.56887],[-80.13052,39.56809],[-80.12786,39.56776],[-80.12506,39.56653],[-80.12346,39.56456],[-80.12162,39.56298],[-80.11934,39.56165],[-80.11697,39.56062],[-80.11559,39.55916],[-80.11335,39.55755],[-80.10895,39.55521],[-80.10388,39.55172],[-80.09385,39.54408],[-80.06118,39.51973],[-80.06216,39.5173],[-80.0625,39.51477],[-80.06227,39.51212],[-80.06141,39.50974],[-80.05997,39.50772],[-80.0581,39.50583],[-80.05061,39.49892],[-80.04701,39.49669],[-80.04195,39.49472],[-80.03767,39.49371],[-80.03304,39.49333],[-80.0322,39.49031],[-80.03083,39.48816],[-80.0289,39.48629],[-80.02684,39.485],[-80.02623,39.48334],[-80.02494,39.48147],[-80.02327,39.47979],[-80.02116,39.47827],[-80.01877,39.4771],[-80.01636,39.47627],[-80.01314,39.47564],[-80.00952,39.47448],[-80.00695,39.47407],[-80.00468,39.47393],[-80.00328,39.47208],[-80.0015,39.47057],[-79.99894,39.4691],[-79.99627,39.46795],[-79.99302,39.46709],[-79.99159,39.46607],[-79.99106,39.4643],[-79.99018,39.46271],[-79.98902,39.46126],[-79.98732,39.45972],[-79.98521,39.45841],[-79.98311,39.45736],[-79.98125,39.45676],[-79.97987,39.45529],[-79.97796,39.45383],[-79.97536,39.45251],[-79.90369,39.42574],[-79.90052,39.42457],[-79.8983,39.42406],[-79.89586,39.4238],[-79.8934,39.42383],[-79.89158,39.42407],[-79.88936,39.42458],[-79.88689,39.42554],[-79.8848,39.42673],[-79.88303,39.42823],[-79.88147,39.43009],[-79.88052,39.43171],[-79.87989,39.43333],[-79.87964,39.43552],[-79.87971,39.43705],[-79.88428,39.47882],[-79.77561,39.61878],[-79.7745,39.62139],[-79.77413,39.6244],[-79.77054,39.65456],[-79.75287,39.68691],[-79.74982,39.69244],[-79.74921,39.69384],[-79.74887,39.69517],[-79.74866,39.69658],[-79.74868,39.72127],[-79.74894,39.72316],[-79.74957,39.72496],[-79.75072,39.72684],[-79.75222,39.72856],[-79.75471,39.73037],[-79.75751,39.73168],[-79.75986,39.73234],[-79.76237,39.73274],[-79.76424,39.73279],[-80.42158,39.73322],[-80.42202,39.7332],[-80.42358,39.73313],[-80.42454,39.73301]]],"type":"Polygon"}}, {"properties":{"name":"ACTmapi Imagery 2017","id":"ACT2017","url":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2017mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":true,"text":"© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory","url":"https://actmapi-actgov.opendata.arcgis.com/datasets/884456bde6fd46d68e0c05479f55d548"},"type":"wms","category":"historicphoto","min_zoom":5,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[149.085,-35.1171],[149.0857,-35.1348],[149.0635,-35.1355],[149.0637,-35.1532],[149.0204,-35.154],[149.0206,-35.172],[148.9986,-35.1724],[148.999,-35.1904],[148.9329,-35.1919],[148.9341,-35.228],[148.9123,-35.2282],[148.9128,-35.246],[148.8687,-35.2466],[148.8689,-35.2643],[148.8469,-35.2652],[148.8474,-35.2832],[148.8033,-35.2836],[148.8041,-35.302],[148.7822,-35.3022],[148.7839,-35.3921],[148.7617,-35.3924],[148.7688,-35.7167],[148.7911,-35.7167],[148.7909,-35.7347],[148.8131,-35.7343],[148.8138,-35.7524],[148.8359,-35.7521],[148.8361,-35.7698],[148.8805,-35.7695],[148.8826,-35.859],[148.9042,-35.8586],[148.9053,-35.8768],[148.9272,-35.8768],[148.9277,-35.8949],[148.9499,-35.8946],[148.9506,-35.9125],[149.0172,-35.9113],[149.0175,-35.9294],[149.1727,-35.9271],[149.1624,-35.5487],[149.3385,-35.5451],[149.3341,-35.3648],[149.3772,-35.3641],[149.3777,-35.3457],[149.3988,-35.3452],[149.3974,-35.2917],[149.3536,-35.2921],[149.3531,-35.2742],[149.309,-35.2751],[149.3085,-35.2571],[149.2644,-35.2575],[149.2632,-35.2222],[149.2419,-35.2223],[149.241,-35.2043],[149.2192,-35.2048],[149.2177,-35.1683],[149.1962,-35.1689],[149.1957,-35.1512],[149.1739,-35.1512],[149.1736,-35.1335],[149.1509,-35.1335],[149.1509,-35.1157],[149.085,-35.1171]]],"type":"Polygon"}}, {"properties":{"name":"ACTmapi Imagery 2018","id":"ACT2018","url":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2018mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":true,"text":"© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory"},"type":"wms","category":"historicphoto","min_zoom":5,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[149.2695,-35.4381],[149.2669,-35.348],[149.3329,-35.3468],[149.3334,-35.3648],[149.3774,-35.364],[149.3769,-35.3459],[149.3989,-35.3455],[149.3984,-35.3275],[149.4094,-35.3273],[149.4088,-35.3092],[149.3978,-35.3095],[149.3973,-35.2914],[149.3533,-35.2923],[149.3528,-35.2743],[149.3089,-35.2751],[149.3084,-35.2571],[149.2644,-35.2579],[149.2634,-35.2219],[149.2415,-35.2223],[149.241,-35.2043],[149.219,-35.2047],[149.218,-35.1687],[149.1961,-35.1691],[149.1956,-35.151],[149.1737,-35.1514],[149.1732,-35.1334],[149.1512,-35.1338],[149.1508,-35.1158],[149.085,-35.1169],[149.0854,-35.135],[149.0635,-35.1353],[149.0639,-35.1534],[149.0201,-35.1541],[149.0205,-35.1721],[148.9985,-35.1725],[148.999,-35.1905],[148.9331,-35.1916],[148.934,-35.2276],[148.912,-35.228],[148.9124,-35.246],[148.8685,-35.2467],[148.8689,-35.2647],[148.8469,-35.265],[148.8473,-35.2831],[148.8034,-35.2837],[148.8038,-35.3018],[148.7818,-35.3021],[148.7838,-35.3922],[148.8058,-35.3919],[148.8086,-35.5181],[148.7976,-35.5182],[148.7994,-35.5993],[148.8766,-35.5982],[148.8747,-35.517],[148.8527,-35.5174],[148.8508,-35.4363],[148.8398,-35.4364],[148.8388,-35.3914],[149.0039,-35.3888],[149.0048,-35.4248],[149.0268,-35.4244],[149.0277,-35.4605],[149.0497,-35.4601],[149.0511,-35.5142],[149.1613,-35.5122],[149.1594,-35.4402],[149.2695,-35.4381]]],"type":"Polygon"}}, {"properties":{"name":"ACTmapi Imagery Feb 2019","id":"ACT2019","url":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2019mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","attribution":{"required":true,"text":"Aerial Imagery from ACTMapi ©ACT Government","url":"http://actmapi.act.gov.au/terms.html"},"type":"wms","category":"historicphoto","min_zoom":6,"max_zoom":21},"type":"Feature","geometry":{"coordinates":[[[149.04053,-35.09056],[149.04156,-35.12665],[148.99796,-35.12721],[148.99864,-35.16342],[148.95435,-35.16399],[148.95641,-35.26286],[149.0007,-35.26272],[149.00396,-35.37981],[148.99315,-35.37995],[148.99504,-35.4794],[149.03984,-35.47829],[149.03984,-35.51448],[149.16121,-35.51197],[149.15932,-35.44039],[149.29201,-35.4376],[149.28995,-35.37449],[149.30094,-35.37435],[149.30042,-35.36512],[149.3224,-35.36498],[149.3224,-35.37435],[149.42179,-35.37239],[149.42127,-35.36316],[149.43226,-35.36288],[149.42986,-35.27253],[149.34196,-35.27435],[149.34111,-35.23847],[149.29716,-35.23861],[149.29596,-35.19429],[149.2515,-35.19499],[149.24944,-35.12314],[149.20618,-35.1237],[149.20498,-35.08747],[149.04053,-35.09056]]],"type":"Polygon"}},