{"version":3,"sources":["node_modules/@arcgis/core/layers/support/fromPortalItem.js","node_modules/@arcgis/core/layers/Layer.js"],"sourcesContent":["/*\nAll material copyright ESRI, All Rights Reserved, unless otherwise specified.\nSee https://js.arcgis.com/4.31/esri/copyright.txt for details.\n*/\nimport r from \"../../config.js\";\nimport t from \"../../core/Logger.js\";\nasync function o(o) {\n const a = \"portalItem\" in o ? o : {\n portalItem: o\n },\n {\n fromItem: e\n } = await import(\"../../portal/support/portalLayers.js\");\n try {\n return await e(a);\n } catch (p) {\n const o = a?.portalItem,\n e = o?.id || \"unset\",\n l = o?.portal?.url || r.portalUrl;\n throw t.getLogger(\"esri.layers.support.fromPortalItem\").error(\"#fromPortalItem()\", \"Failed to create layer from portal item (portal: '\" + l + \"', id: '\" + e + \"')\", p), p;\n }\n}\nexport { o as fromPortalItem };","/*\nAll material copyright ESRI, All Rights Reserved, unless otherwise specified.\nSee https://js.arcgis.com/4.31/esri/copyright.txt for details.\n*/\nimport { _ as t } from \"../chunks/tslib.es6.js\";\nimport \"../geometry.js\";\nimport e from \"../request.js\";\nimport r from \"../core/Error.js\";\nimport o from \"../core/Evented.js\";\nimport { IdentifiableMixin as i } from \"../core/Identifiable.js\";\nimport s from \"../core/Loadable.js\";\nimport a from \"../core/Logger.js\";\nimport { isAbortError as l } from \"../core/promiseUtils.js\";\nimport { urlToObject as n } from \"../core/urlUtils.js\";\nimport { property as p } from \"../core/accessorSupport/decorators/property.js\";\nimport \"../core/has.js\";\nimport \"../core/RandomLCG.js\";\nimport { subclass as y } from \"../core/accessorSupport/decorators/subclass.js\";\nimport { fromPortalItem as d } from \"./support/fromPortalItem.js\";\nimport c from \"../time/TimeExtent.js\";\nimport u from \"../geometry/Extent.js\";\nimport m from \"../geometry/SpatialReference.js\";\nlet b = 0,\n h = class extends o.EventedMixin(i(s)) {\n constructor() {\n super(...arguments), this.attributionDataUrl = null, this.fullExtent = new u(-180, -90, 180, 90, m.WGS84), this.id = Date.now().toString(16) + \"-layer-\" + b++, this.legendEnabled = !0, this.listMode = \"show\", this.opacity = 1, this.parent = null, this.persistenceEnabled = !1, this.popupEnabled = !0, this.attributionVisible = !0, this.spatialReference = m.WGS84, this.title = null, this.type = null, this.url = null, this.visibilityTimeExtent = null, this.visible = !0;\n }\n static async fromArcGISServerUrl(t) {\n const e = \"string\" == typeof t ? {\n url: t\n } : t;\n return (await import(\"./support/arcgisLayers.js\")).fromUrl(e);\n }\n static fromPortalItem(t) {\n return d(t);\n }\n initialize() {\n this.when().catch(t => {\n l(t) || a.getLogger(this).error(\"#load()\", `Failed to load layer (title: '${this.title ?? \"no title\"}', id: '${this.id ?? \"no id\"}')`, {\n error: t\n });\n });\n }\n destroy() {\n const t = this.parent;\n if (t) {\n const e = this;\n \"layers\" in t && t.layers.includes(e) ? t.layers.remove(e) : \"tables\" in t && t.tables.includes(e) ? t.tables.remove(e) : \"baseLayers\" in t && t.baseLayers.includes(e) ? t.baseLayers.remove(e) : \"referenceLayers\" in t && t.referenceLayers.includes(e) && t.referenceLayers.remove(e), this._set(\"parent\", null);\n }\n }\n get effectiveVisible() {\n let t = this.visible;\n const e = this.parent;\n return t && e && \"effectiveVisible\" in e && (t &&= e.effectiveVisible), t;\n }\n get hasAttributionData() {\n return null != this.attributionDataUrl;\n }\n get parsedUrl() {\n return n(this.url);\n }\n async fetchAttributionData() {\n const t = this.attributionDataUrl;\n if (this.hasAttributionData && t) {\n return (await e(t, {\n query: {\n f: \"json\"\n },\n responseType: \"json\"\n })).data;\n }\n throw new r(\"layer:no-attribution-data\", \"Layer does not have attribution data\");\n }\n };\nt([p({\n type: String\n})], h.prototype, \"attributionDataUrl\", void 0), t([p({\n readOnly: !0\n})], h.prototype, \"effectiveVisible\", null), t([p({\n type: u\n})], h.prototype, \"fullExtent\", void 0), t([p({\n readOnly: !0\n})], h.prototype, \"hasAttributionData\", null), t([p({\n type: String,\n clonable: !1\n})], h.prototype, \"id\", void 0), t([p({\n type: Boolean,\n nonNullable: !0\n})], h.prototype, \"legendEnabled\", void 0), t([p({\n type: [\"show\", \"hide\", \"hide-children\"]\n})], h.prototype, \"listMode\", void 0), t([p({\n type: Number,\n range: {\n min: 0,\n max: 1\n },\n nonNullable: !0\n})], h.prototype, \"opacity\", void 0), t([p({\n clonable: !1\n})], h.prototype, \"parent\", void 0), t([p({\n readOnly: !0\n})], h.prototype, \"parsedUrl\", null), t([p({\n type: Boolean,\n readOnly: !0\n})], h.prototype, \"persistenceEnabled\", void 0), t([p({\n type: Boolean\n})], h.prototype, \"popupEnabled\", void 0), t([p({\n type: Boolean\n})], h.prototype, \"attributionVisible\", void 0), t([p({\n type: m\n})], h.prototype, \"spatialReference\", void 0), t([p({\n type: String\n})], h.prototype, \"title\", void 0), t([p({\n readOnly: !0,\n json: {\n read: !1\n }\n})], h.prototype, \"type\", void 0), t([p()], h.prototype, \"url\", void 0), t([p({\n type: c\n})], h.prototype, \"visibilityTimeExtent\", void 0), t([p({\n type: Boolean,\n nonNullable: !0\n})], h.prototype, \"visible\", void 0), h = t([y(\"esri.layers.Layer\")], h);\nconst f = h;\nexport { f as default };"],"mappings":"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","names":["o","__async","a","e","l","s","n","b","h","o","s","m","w","g","__async","e","n","I","U","p","a","f"],"x_google_ignoreList":[0,1]}