123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- import {
- i
- } from "./chunk-5ZZSM3DU.js";
- import {
- w
- } from "./chunk-UILPRJKY.js";
- import {
- v as v2
- } from "./chunk-524XACB7.js";
- import {
- t
- } from "./chunk-QY775BFA.js";
- import {
- L,
- b,
- h,
- m,
- y
- } from "./chunk-X7DBH4KK.js";
- import {
- f as f2,
- v
- } from "./chunk-PSV473TI.js";
- import {
- b as b2
- } from "./chunk-EGZW6HC3.js";
- import {
- B
- } from "./chunk-4NKD334K.js";
- import {
- a
- } from "./chunk-WJ3OEUD3.js";
- import {
- U
- } from "./chunk-VNFRAYHO.js";
- import {
- j
- } from "./chunk-VBRY5KJM.js";
- import {
- M2 as M,
- o
- } from "./chunk-ECW2QABR.js";
- import {
- k2 as k,
- r as r2
- } from "./chunk-MRJEICT6.js";
- import {
- d,
- e,
- n2 as n
- } from "./chunk-Y3WMVFTW.js";
- import {
- E,
- f,
- x
- } from "./chunk-ULGDPLM2.js";
- import {
- s,
- s3 as s2
- } from "./chunk-EMJ4ZSM2.js";
- import {
- r
- } from "./chunk-GZT4BVFP.js";
- // node_modules/@arcgis/core/layers/support/I3SIndexInfo.js
- async function n2(n4, t2, s3, a3, i2, d2) {
- let l = null;
- if (r(s3)) {
- const o2 = `${n4}/nodepages/`, t3 = o2 + Math.floor(s3.rootIndex / s3.nodesPerPage);
- try {
- return { type: "page", rootPage: (await U(t3, { query: { f: "json", token: a3 }, responseType: "json", signal: d2 })).data, rootIndex: s3.rootIndex, pageSize: s3.nodesPerPage, lodMetric: s3.lodSelectionMetricType, urlPrefix: o2 };
- } catch (f3) {
- r(i2) && i2.warn("#fetchIndexInfo()", "Failed to load root node page. Falling back to node documents.", t3, f3), l = f3;
- }
- }
- if (!t2)
- return null;
- const p2 = `${n4}/nodes/`, c = p2 + (t2 && t2.split("/").pop());
- try {
- return { type: "node", rootNode: (await U(c, { query: { f: "json", token: a3 }, responseType: "json", signal: d2 })).data, urlPrefix: p2 };
- } catch (f3) {
- throw new s2("sceneservice:root-node-missing", "Root node missing.", { pageError: l, nodeError: f3, url: c });
- }
- }
- // node_modules/@arcgis/core/webdoc/support/saveUtils.js
- async function a2(r3, a3, u) {
- if (!a3 || !a3.resources)
- return;
- const h2 = a3.portalItem === r3.portalItem ? new Set(r3.paths) : new Set();
- r3.paths.length = 0, r3.portalItem = a3.portalItem;
- const i2 = new Set(a3.resources.toKeep.map((r4) => r4.resource.path)), f3 = new Set(), m2 = [];
- i2.forEach((e2) => {
- h2.delete(e2), r3.paths.push(e2);
- });
- for (const e2 of a3.resources.toUpdate)
- if (h2.delete(e2.resource.path), i2.has(e2.resource.path) || f3.has(e2.resource.path)) {
- const { resource: o2, content: t2, finish: a4, error: p2 } = e2, h3 = w(o2, t());
- r3.paths.push(h3.path), m2.push(n3({ resource: h3, content: t2, finish: a4, error: p2 }, u));
- } else
- r3.paths.push(e2.resource.path), m2.push(p(e2, u)), f3.add(e2.resource.path);
- for (const e2 of a3.resources.toAdd)
- m2.push(n3(e2, u)), r3.paths.push(e2.resource.path);
- if (h2.forEach((r4) => {
- const e2 = a3.portalItem.resourceFromPath(r4);
- m2.push(e2.portalItem.removeResource(e2).catch(() => {
- }));
- }), m2.length === 0)
- return;
- const l = await E(m2);
- f(u);
- const d2 = l.filter((r4) => "error" in r4).map((r4) => r4.error);
- if (d2.length > 0)
- throw new s2("save:resources", "Failed to save one or more resources", { errors: d2 });
- }
- async function n3(e2, o2) {
- const t2 = await a(e2.resource.portalItem.addResource(e2.resource, e2.content, o2));
- if (t2.ok !== true)
- throw e2.error && e2.error(t2.error), t2.error;
- e2.finish && e2.finish(e2.resource);
- }
- async function p(e2, o2) {
- const t2 = await a(e2.resource.update(e2.content, o2));
- if (t2.ok !== true)
- throw e2.error(t2.error), t2.error;
- e2.finish(e2.resource);
- }
- // node_modules/@arcgis/core/layers/mixins/SceneService.js
- var R = s.getLogger("esri.layers.mixins.SceneService");
- var A = (i2) => {
- let A2 = class extends i2 {
- constructor() {
- super(...arguments), this.spatialReference = null, this.fullExtent = null, this.heightModelInfo = null, this.minScale = 0, this.maxScale = 0, this.version = { major: Number.NaN, minor: Number.NaN, versionString: "" }, this.copyright = null, this.sublayerTitleMode = "item-title", this.title = null, this.layerId = null, this.indexInfo = null, this._debouncedSaveOperations = x(async (e2, t2, r3) => {
- switch (e2) {
- case K.SAVE:
- return this._save(t2);
- case K.SAVE_AS:
- return this._saveAs(r3, t2);
- }
- });
- }
- readSpatialReference(e2, t2) {
- return this._readSpatialReference(t2);
- }
- _readSpatialReference(e2) {
- if (e2.spatialReference != null)
- return k.fromJSON(e2.spatialReference);
- {
- const t2 = e2.store, r3 = t2.indexCRS || t2.geographicCRS, i3 = r3 && parseInt(r3.substring(r3.lastIndexOf("/") + 1, r3.length), 10);
- return i3 != null ? new k(i3) : null;
- }
- }
- readFullExtent(e2, t2, r3) {
- if (e2 != null && typeof e2 == "object") {
- const i4 = e2.spatialReference == null ? { ...e2, spatialReference: this._readSpatialReference(t2) } : e2;
- return M.fromJSON(i4, r3);
- }
- const i3 = t2.store, o2 = this._readSpatialReference(t2);
- return o2 == null || i3 == null || i3.extent == null || !Array.isArray(i3.extent) || i3.extent.some((e3) => e3 < N) ? null : new M({ xmin: i3.extent[0], ymin: i3.extent[1], xmax: i3.extent[2], ymax: i3.extent[3], spatialReference: o2 });
- }
- parseVersionString(e2) {
- const t2 = { major: Number.NaN, minor: Number.NaN, versionString: e2 }, r3 = e2.split(".");
- return r3.length >= 2 && (t2.major = parseInt(r3[0], 10), t2.minor = parseInt(r3[1], 10)), t2;
- }
- readVersion(e2, t2) {
- const r3 = t2.store, i3 = r3.version != null ? r3.version.toString() : "";
- return this.parseVersionString(i3);
- }
- readTitlePortalItem(e2) {
- return this.sublayerTitleMode !== "item-title" ? void 0 : e2;
- }
- readTitleService(e2, t2) {
- const r3 = this.portalItem && this.portalItem.title;
- if (this.sublayerTitleMode === "item-title")
- return y(this.url, t2.name);
- let i3 = t2.name;
- if (!i3 && this.url) {
- const e3 = m(this.url);
- r(e3) && (i3 = e3.title);
- }
- return this.sublayerTitleMode === "item-title-and-service-name" && r3 && (i3 = r3 + " - " + i3), h(i3);
- }
- set url(e2) {
- const t2 = L({ layer: this, url: e2, nonStandardUrlAllowed: false, logger: R });
- this._set("url", t2.url), t2.layerId != null && this._set("layerId", t2.layerId);
- }
- writeUrl(e2, t2, r3, i3) {
- b(this, e2, "layers", t2, i3);
- }
- get parsedUrl() {
- const e2 = this._get("url");
- if (!e2)
- return null;
- const t2 = j(e2);
- return this.layerId != null && (t2.path = `${t2.path}/layers/${this.layerId}`), t2;
- }
- async _fetchIndexAndUpdateExtent(e2, t2) {
- this.indexInfo = n2(this.parsedUrl.path, this.rootNode, e2, this.apiKey, R, t2), this.fullExtent == null || this.fullExtent.hasZ || this._updateExtent(await this.indexInfo);
- }
- _updateExtent(e2) {
- if (e2?.type === "page") {
- const t2 = e2.rootIndex % e2.pageSize, i3 = e2.rootPage?.nodes?.[t2];
- if (i3 == null || i3.obb == null || i3.obb.center == null || i3.obb.halfSize == null)
- throw new s2("sceneservice:invalid-node-page", "Invalid node page.");
- if (i3.obb.center[0] < N || this.fullExtent == null || this.fullExtent.hasZ)
- return;
- const o2 = i3.obb.halfSize, s3 = i3.obb.center[2], a3 = Math.sqrt(o2[0] * o2[0] + o2[1] * o2[1] + o2[2] * o2[2]);
- this.fullExtent.zmin = s3 - a3, this.fullExtent.zmax = s3 + a3;
- } else if (e2?.type === "node") {
- const t2 = e2.rootNode?.mbs;
- if (!Array.isArray(t2) || t2.length !== 4 || t2[0] < N)
- return;
- const r3 = t2[2], i3 = t2[3];
- this.fullExtent.zmin = r3 - i3, this.fullExtent.zmax = r3 + i3;
- }
- }
- async _fetchService(e2) {
- if (this.url == null)
- throw new s2("sceneservice:url-not-set", "Scene service can not be loaded without valid portal item or url");
- if (this.layerId == null && /SceneServer\/*$/i.test(this.url)) {
- const t2 = await this._fetchFirstLayerId(e2);
- t2 != null && (this.layerId = t2);
- }
- return this._fetchServiceLayer(e2);
- }
- async _fetchFirstLayerId(e2) {
- const r3 = await U(this.url, { query: { f: "json", token: this.apiKey }, responseType: "json", signal: e2 });
- if (r3.data && Array.isArray(r3.data.layers) && r3.data.layers.length > 0)
- return r3.data.layers[0].id;
- }
- async _fetchServiceLayer(e2) {
- const r3 = await U(this.parsedUrl.path, { query: { f: "json", token: this.apiKey }, responseType: "json", signal: e2 });
- r3.ssl && (this.url = this.url.replace(/^http:/i, "https:"));
- let i3 = false;
- if (r3.data.layerType && r3.data.layerType === "Voxel" && (i3 = true), i3)
- return this._fetchVoxelServiceLayer();
- const o2 = r3.data;
- this.read(o2, { origin: "service", url: this.parsedUrl }), this.validateLayer(o2);
- }
- async _fetchVoxelServiceLayer(e2) {
- const r3 = (await U(this.parsedUrl.path + "/layer", { query: { f: "json", token: this.apiKey }, responseType: "json", signal: e2 })).data;
- this.read(r3, { origin: "service", url: this.parsedUrl }), this.validateLayer(r3);
- }
- async _ensureLoadBeforeSave() {
- await this.load(), "beforeSave" in this && typeof this.beforeSave == "function" && await this.beforeSave();
- }
- validateLayer(e2) {
- }
- _updateTypeKeywords(e2, t2, r3) {
- e2.typeKeywords || (e2.typeKeywords = []);
- const i3 = t2.getTypeKeywords();
- for (const o2 of i3)
- e2.typeKeywords.push(o2);
- e2.typeKeywords && (e2.typeKeywords = e2.typeKeywords.filter((e3, t3, r4) => r4.indexOf(e3) === t3), r3 === U2.newItem && (e2.typeKeywords = e2.typeKeywords.filter((e3) => e3 !== "Hosted Service")));
- }
- async _saveAs(e2, t2) {
- const i3 = { ...O, ...t2 };
- let o2 = b2.from(e2);
- o2 || (R.error("_saveAs(): requires a portal item parameter"), await Promise.reject(new s2("sceneservice:portal-item-required", "_saveAs() requires a portal item to save to"))), o2.id && (o2 = o2.clone(), o2.id = null);
- const s3 = o2.portal || B.getDefault();
- await this._ensureLoadBeforeSave(), o2.type = T, o2.portal = s3;
- const a3 = { origin: "portal-item", url: null, messages: [], portal: s3, portalItem: o2, writtenProperties: [], blockedRelativeUrls: [], resources: { toAdd: [], toUpdate: [], toKeep: [], pendingOperations: [] } }, n4 = { layers: [this.write({}, a3)] };
- return await Promise.all(a3.resources.pendingOperations), await this._validateAgainstJSONSchema(n4, a3, i3), o2.url = this.url, o2.title || (o2.title = this.title), this._updateTypeKeywords(o2, i3, U2.newItem), await s3._signIn(), await s3.user.addItem({ item: o2, folder: i3 && i3.folder, data: n4 }), await a2(this.resourceReferences, a3, null), this.portalItem = o2, i(a3), a3.portalItem = o2, o2;
- }
- async _save(e2) {
- const t2 = { ...O, ...e2 };
- this.portalItem || (R.error("_save(): requires the .portalItem property to be set"), await Promise.reject(new s2("sceneservice:portal-item-not-set", "Portal item to save to has not been set on this SceneService"))), this.portalItem.type !== T && (R.error("_save(): Non-matching portal item type. Got " + this.portalItem.type + ", expected " + T), await Promise.reject(new s2("sceneservice:portal-item-wrong-type", `Portal item needs to have type "${T}"`))), await this._ensureLoadBeforeSave();
- const i3 = { origin: "portal-item", url: this.portalItem.itemUrl && j(this.portalItem.itemUrl), messages: [], portal: this.portalItem.portal || B.getDefault(), portalItem: this.portalItem, writtenProperties: [], blockedRelativeUrls: [], resources: { toAdd: [], toUpdate: [], toKeep: [], pendingOperations: [] } }, o2 = { layers: [this.write({}, i3)] };
- return await Promise.all(i3.resources.pendingOperations), await this._validateAgainstJSONSchema(o2, i3, t2), this.portalItem.url = this.url, this.portalItem.title || (this.portalItem.title = this.title), this._updateTypeKeywords(this.portalItem, t2, U2.existingItem), await this.portalItem.update({ data: o2 }), await a2(this.resourceReferences, i3, null), i(i3), this.portalItem;
- }
- async _validateAgainstJSONSchema(e2, t2, i3) {
- let o2 = t2.messages.filter((e3) => e3.type === "error").map((e3) => new s2(e3.name, e3.message, e3.details));
- if (i3 && i3.validationOptions.ignoreUnsupported && (o2 = o2.filter((e3) => e3.name !== "layer:unsupported" && e3.name !== "symbol:unsupported" && e3.name !== "symbol-layer:unsupported" && e3.name !== "property:unsupported" && e3.name !== "url:unsupported" && e3.name !== "scenemodification:unsupported")), i3.validationOptions.enabled || E2) {
- const t3 = (await import("./schemaValidator-K3QIB4AY.js")).validate(e2, i3.portalItemLayerType);
- if (t3.length > 0) {
- const e3 = `Layer item did not validate:
- ${t3.join("\n")}`;
- if (R.error(`_validateAgainstJSONSchema(): ${e3}`), i3.validationOptions.failPolicy === "throw") {
- const e4 = t3.map((e5) => new s2("sceneservice:schema-validation", e5)).concat(o2);
- throw new s2("sceneservice-validate:error", "Failed to save layer item due to schema validation, see `details.errors`.", { combined: e4 });
- }
- }
- }
- if (o2.length > 0)
- throw new s2("sceneservice:save", "Failed to save SceneService due to unsupported or invalid content. See 'details.errors' for more detailed information", { errors: o2 });
- }
- };
- return e([d(v)], A2.prototype, "id", void 0), e([d({ type: k })], A2.prototype, "spatialReference", void 0), e([o("spatialReference", ["spatialReference", "store.indexCRS", "store.geographicCRS"])], A2.prototype, "readSpatialReference", null), e([d({ type: M })], A2.prototype, "fullExtent", void 0), e([o("fullExtent", ["fullExtent", "store.extent", "spatialReference", "store.indexCRS", "store.geographicCRS"])], A2.prototype, "readFullExtent", null), e([d({ readOnly: true, type: v2 })], A2.prototype, "heightModelInfo", void 0), e([d({ type: Number, json: { name: "layerDefinition.minScale", write: true, origins: { service: { read: { source: "minScale" }, write: false } } } })], A2.prototype, "minScale", void 0), e([d({ type: Number, json: { name: "layerDefinition.maxScale", write: true, origins: { service: { read: { source: "maxScale" }, write: false } } } })], A2.prototype, "maxScale", void 0), e([d({ readOnly: true })], A2.prototype, "version", void 0), e([o("version", ["store.version"])], A2.prototype, "readVersion", null), e([d({ type: String, json: { read: { source: "copyrightText" } } })], A2.prototype, "copyright", void 0), e([d({ type: String, json: { read: false } })], A2.prototype, "sublayerTitleMode", void 0), e([d({ type: String })], A2.prototype, "title", void 0), e([o("portal-item", "title")], A2.prototype, "readTitlePortalItem", null), e([o("service", "title", ["name"])], A2.prototype, "readTitleService", null), e([d({ type: Number, json: { origins: { service: { read: { source: "id" } }, "portal-item": { write: { target: "id", isRequired: true, ignoreOrigin: true }, read: false } } } })], A2.prototype, "layerId", void 0), e([d(f2)], A2.prototype, "url", null), e([r2("url")], A2.prototype, "writeUrl", null), e([d()], A2.prototype, "parsedUrl", null), e([d({ readOnly: true })], A2.prototype, "store", void 0), e([d({ type: String, readOnly: true, json: { read: { source: "store.rootNode" } } })], A2.prototype, "rootNode", void 0), A2 = e([n("esri.layers.mixins.SceneService")], A2), A2;
- };
- var N = -1e38;
- var E2 = false;
- var U2;
- !function(e2) {
- e2[e2.existingItem = 0] = "existingItem", e2[e2.newItem = 1] = "newItem";
- }(U2 || (U2 = {}));
- var T = "Scene Service";
- var O = { getTypeKeywords: () => [], portalItemLayerType: "unknown", validationOptions: { enabled: true, ignoreUnsupported: false, failPolicy: "throw" } };
- var K;
- !function(e2) {
- e2[e2.SAVE = 0] = "SAVE", e2[e2.SAVE_AS = 1] = "SAVE_AS";
- }(K || (K = {}));
- export {
- n2 as n,
- A,
- K
- };
- //# sourceMappingURL=chunk-C62PEMUB.js.map
|