@itwin/rpcinterface-full-stack-tests 4.1.0-dev.56 → 4.1.0-dev.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/_05e2.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +882 -633
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_4_4_node_modules_loaders_gl_draco_di-6aa0d4.bundled-tests.js.map +1 -1
- package/package.json +14 -14
- package/lib/dist/object-storage-azure.bundled-tests.js +0 -14
- package/lib/dist/object-storage-azure.bundled-tests.js.map +0 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_2_0_0_scz6qrwecfbbxg4vskopkl-749c19.bundled-tests.js +0 -43254
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_2_0_0_scz6qrwecfbbxg4vskopkl-749c19.bundled-tests.js.map +0 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3.bundled-tests.js +0 -1145
- package/lib/dist/vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3.bundled-tests.js.map +0 -1
|
@@ -29806,28 +29806,36 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29806
29806
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
29807
29807
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
29808
29808
|
*--------------------------------------------------------------------------------------------*/
|
|
29809
|
-
/** @
|
|
29809
|
+
/** @packageDocumentation
|
|
29810
|
+
* @module Utils
|
|
29811
|
+
*/
|
|
29810
29812
|
const defaultYieldManagerOptions = {
|
|
29811
29813
|
iterationsBeforeYield: 1000,
|
|
29812
29814
|
};
|
|
29813
|
-
/**
|
|
29814
|
-
*
|
|
29815
|
-
*
|
|
29816
|
-
*
|
|
29817
|
-
*
|
|
29818
|
-
*
|
|
29815
|
+
/** Provides a mechanism by which a loop can be made to periodically yield control back to the browser/node environment.
|
|
29816
|
+
* This can alleviate [performance and memory consumption issues](https://github.com/nodejs/node-addon-api/issues/1140).
|
|
29817
|
+
* It maintains a count of the number of iterations that have occurred since the last yield.
|
|
29818
|
+
* The constructor specifies how many iterations of the loop are permitted before yielding.
|
|
29819
|
+
* The loop should `await` [[allowYield]] on each iteration.
|
|
29820
|
+
* [[allowYield]] will yield (and reset the iteration counter) if the counter exceeds the specified maximum.
|
|
29821
|
+
* @public
|
|
29819
29822
|
*/
|
|
29820
29823
|
class YieldManager {
|
|
29824
|
+
/** Constructor.
|
|
29825
|
+
* @param options Options customizing the yield behavior. Omitted properties are assigned their default values.
|
|
29826
|
+
*/
|
|
29821
29827
|
constructor(options = {}) {
|
|
29822
29828
|
this._counter = 0;
|
|
29823
29829
|
this.options = { ...defaultYieldManagerOptions, ...options };
|
|
29824
29830
|
}
|
|
29831
|
+
/** Increment the iteration counter, yielding control and resetting the counter if [[options.iterationsBeforeYield]] is exceeded. */
|
|
29825
29832
|
async allowYield() {
|
|
29826
29833
|
this._counter = (this._counter + 1) % this.options.iterationsBeforeYield;
|
|
29827
29834
|
if (this._counter === 0) {
|
|
29828
29835
|
await this.actualYield();
|
|
29829
29836
|
}
|
|
29830
29837
|
}
|
|
29838
|
+
/** @internal */
|
|
29831
29839
|
async actualYield() {
|
|
29832
29840
|
await new Promise((r) => setTimeout(r, 0));
|
|
29833
29841
|
}
|
|
@@ -34674,15 +34682,15 @@ class ECSqlReader {
|
|
|
34674
34682
|
return resp.data;
|
|
34675
34683
|
}
|
|
34676
34684
|
/**
|
|
34677
|
-
*
|
|
34685
|
+
* @internal
|
|
34678
34686
|
*/
|
|
34679
34687
|
async runWithRetry(request) {
|
|
34680
|
-
const needRetry = (rs) => (rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.DbResponseStatus.Partial || rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.DbResponseStatus.QueueFull || rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.DbResponseStatus.Timeout) && (rs.data.length === 0);
|
|
34688
|
+
const needRetry = (rs) => (rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.DbResponseStatus.Partial || rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.DbResponseStatus.QueueFull || rs.status === _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_1__.DbResponseStatus.Timeout) && (rs.data === undefined || rs.data.length === 0);
|
|
34681
34689
|
const updateStats = (rs) => {
|
|
34682
34690
|
this._stats.backendCpuTime += rs.stats.cpuTime;
|
|
34683
34691
|
this._stats.backendTotalTime += rs.stats.totalTime;
|
|
34684
34692
|
this._stats.backendMemUsed += rs.stats.memUsed;
|
|
34685
|
-
this._stats.backendRowsReturned += rs.data.length;
|
|
34693
|
+
this._stats.backendRowsReturned += (rs.data === undefined) ? 0 : rs.data.length;
|
|
34686
34694
|
};
|
|
34687
34695
|
const execQuery = async (req) => {
|
|
34688
34696
|
const startTime = Date.now();
|
|
@@ -35555,49 +35563,89 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
35555
35563
|
* @module Rendering
|
|
35556
35564
|
*/
|
|
35557
35565
|
|
|
35558
|
-
/**
|
|
35566
|
+
/** As part of a [[ColorIndex]], describes per-vertex colors for a [MeshArgs]($frontend) or [PolylineArgs]($frontend).
|
|
35567
|
+
* The [[colors]] array holds the set of unique colors. The [[indices]] array describes the color of each vertex as an index into [[colors]].
|
|
35568
|
+
* @note A `NonUniformColor` table cannot contain a mix of opaque and translucent colors. If any color in [[colors]] has a transparency greater
|
|
35569
|
+
* than zero, all of them must have a transparency greater than zero.
|
|
35570
|
+
* @public
|
|
35571
|
+
*/
|
|
35559
35572
|
class NonUniformColor {
|
|
35573
|
+
/** Constructor.
|
|
35574
|
+
* @param colors See [[colors]].
|
|
35575
|
+
* @param indices See [[indices]]
|
|
35576
|
+
* @param hasAlpha `true` if all `colors` have a transparency greater than zero, or `false` if they all have a transparency of zero.
|
|
35577
|
+
*/
|
|
35560
35578
|
constructor(colors, indices, hasAlpha) {
|
|
35561
35579
|
this.colors = new Uint32Array(colors.buffer);
|
|
35562
35580
|
this.indices = Uint16Array.from(indices);
|
|
35563
35581
|
this.isOpaque = !hasAlpha;
|
|
35564
35582
|
}
|
|
35565
35583
|
}
|
|
35566
|
-
/**
|
|
35584
|
+
/** Describes the color(s) of the vertices of a [MeshArgs]($frontend) or [PolylineArgs]($frontend).
|
|
35585
|
+
* This may be a uniform color to be applied to every vertex, or a table specifying individual per-vertex colors.
|
|
35586
|
+
* @public
|
|
35587
|
+
*/
|
|
35567
35588
|
class ColorIndex {
|
|
35589
|
+
/** Whether the color(s) in this index have transparency. */
|
|
35568
35590
|
get hasAlpha() { return !this._color.isOpaque; }
|
|
35591
|
+
/** Whether this index specifies a single uniform color for the entire mesh or polyline. */
|
|
35569
35592
|
get isUniform() { return this._color instanceof _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef; }
|
|
35593
|
+
/** The number of colors in this index. */
|
|
35570
35594
|
get numColors() { return this.isUniform ? 1 : this.nonUniform.colors.length; }
|
|
35595
|
+
/** Construct a default index specifying a uniform white color. */
|
|
35571
35596
|
constructor() { this._color = _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef.white; }
|
|
35597
|
+
/** Reset this index to specify a uniform white color. */
|
|
35572
35598
|
reset() { this._color = _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef.white; }
|
|
35599
|
+
/** Returns the single color to be applied to all vertices, if [[isUniform]] is `true`; or `undefined` otherwise. */
|
|
35573
35600
|
get uniform() {
|
|
35574
35601
|
return this.isUniform ? this._color : undefined;
|
|
35575
35602
|
}
|
|
35603
|
+
/** Set the specified color to be applied to all vertices. */
|
|
35576
35604
|
initUniform(color) {
|
|
35577
35605
|
this._color = typeof color === "number" ? _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef.fromJSON(color) : color;
|
|
35578
35606
|
}
|
|
35607
|
+
/** Returns the per-vertex colors, if [[isUniform]] is `false`; or `undefined` otherwise. */
|
|
35579
35608
|
get nonUniform() {
|
|
35580
35609
|
return !this.isUniform ? this._color : undefined;
|
|
35581
35610
|
}
|
|
35611
|
+
/** Set the per-vertex colors.
|
|
35612
|
+
* @param colors See [[NonUniformColor.colors]].
|
|
35613
|
+
* @param indices See [[NonUniformColor.indices]].
|
|
35614
|
+
* @param hasAlpha `true` if all `colors` have a transparency greater than zero, or `false` if they all have a transparency of zero.
|
|
35615
|
+
*/
|
|
35582
35616
|
initNonUniform(colors, indices, hasAlpha) {
|
|
35583
35617
|
this._color = new NonUniformColor(colors, indices, hasAlpha);
|
|
35584
35618
|
}
|
|
35585
35619
|
}
|
|
35586
|
-
/**
|
|
35620
|
+
/** Describes the type of a [[FeatureIndex]].
|
|
35621
|
+
* @public
|
|
35622
|
+
*/
|
|
35587
35623
|
var FeatureIndexType;
|
|
35588
35624
|
(function (FeatureIndexType) {
|
|
35625
|
+
/** Indicates that the index contains no features. */
|
|
35589
35626
|
FeatureIndexType[FeatureIndexType["Empty"] = 0] = "Empty";
|
|
35627
|
+
/** Indicates that the index contains exactly one feature. */
|
|
35590
35628
|
FeatureIndexType[FeatureIndexType["Uniform"] = 1] = "Uniform";
|
|
35629
|
+
/** Indicates that the index contains more than one feature. */
|
|
35591
35630
|
FeatureIndexType[FeatureIndexType["NonUniform"] = 2] = "NonUniform";
|
|
35592
35631
|
})(FeatureIndexType || (FeatureIndexType = {}));
|
|
35593
|
-
/**
|
|
35632
|
+
/** Describes the set of [[Feature]]s associated with a [MeshArgs]($frontend) or [PolylineArgs]($frontend).
|
|
35633
|
+
* The mesh or polyline may have zero or one features; or, individual vertices may be associated with different features.
|
|
35634
|
+
* The features are expressed as unsigned 32-bit integer Ids of [[Feature]]s within a [[FeatureTable]].
|
|
35635
|
+
* @public
|
|
35636
|
+
*/
|
|
35594
35637
|
class FeatureIndex {
|
|
35595
35638
|
constructor() {
|
|
35639
|
+
/** Describes the quantity (zero, one, or more than one) of features in this index. */
|
|
35596
35640
|
this.type = FeatureIndexType.Empty;
|
|
35641
|
+
/** If [[type]] is [[FeatureIndexType.Uniform]], the Id of the single feature. */
|
|
35597
35642
|
this.featureID = 0;
|
|
35598
35643
|
}
|
|
35644
|
+
/** True if [[type]] is [[FeatureIndexType.Uniform]]. */
|
|
35599
35645
|
get isUniform() { return FeatureIndexType.Uniform === this.type; }
|
|
35646
|
+
/** True if [[type]] is [[FeatureIndexType.Empty]]. */
|
|
35600
35647
|
get isEmpty() { return FeatureIndexType.Empty === this.type; }
|
|
35648
|
+
/** Reset to an empty index. */
|
|
35601
35649
|
reset() {
|
|
35602
35650
|
this.type = FeatureIndexType.Empty;
|
|
35603
35651
|
this.featureID = 0;
|
|
@@ -36309,9 +36357,12 @@ class Feature {
|
|
|
36309
36357
|
return cmp;
|
|
36310
36358
|
}
|
|
36311
36359
|
}
|
|
36312
|
-
/** @
|
|
36360
|
+
/** @public */
|
|
36313
36361
|
var ModelFeature;
|
|
36314
36362
|
(function (ModelFeature) {
|
|
36363
|
+
/** Create a ModelFeature of [[GeometryClass.Primary]] with all invalid Ids.
|
|
36364
|
+
* This is primarily useful for creating a `result` argument for [[RenderFeatureTable.findFeature]] and [[RenderFeatureTable.getFeature]].
|
|
36365
|
+
*/
|
|
36315
36366
|
function create() {
|
|
36316
36367
|
return {
|
|
36317
36368
|
modelId: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.invalid,
|
|
@@ -36321,10 +36372,12 @@ var ModelFeature;
|
|
|
36321
36372
|
};
|
|
36322
36373
|
}
|
|
36323
36374
|
ModelFeature.create = create;
|
|
36375
|
+
/** Returns `true` if any of `feature`'s properties differ from the defaults (invalid Ids and [[GeometryClass.Primary]]). */
|
|
36324
36376
|
function isDefined(feature) {
|
|
36325
36377
|
return !_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.isInvalid(feature.modelId) || !_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.isInvalid(feature.elementId) || !_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.isInvalid(feature.subCategoryId) || feature.geometryClass !== _GeometryParams__WEBPACK_IMPORTED_MODULE_1__.GeometryClass.Primary;
|
|
36326
36378
|
}
|
|
36327
36379
|
ModelFeature.isDefined = isDefined;
|
|
36380
|
+
/** @alpha */
|
|
36328
36381
|
function unpack(packed, result, unpackedModelId) {
|
|
36329
36382
|
result.modelId = unpackedModelId ?? _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.fromUint32PairObject(packed.modelId);
|
|
36330
36383
|
result.elementId = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.fromUint32PairObject(packed.elementId);
|
|
@@ -36334,9 +36387,12 @@ var ModelFeature;
|
|
|
36334
36387
|
}
|
|
36335
36388
|
ModelFeature.unpack = unpack;
|
|
36336
36389
|
})(ModelFeature || (ModelFeature = {}));
|
|
36337
|
-
/** @
|
|
36390
|
+
/** @public */
|
|
36338
36391
|
var PackedFeature;
|
|
36339
36392
|
(function (PackedFeature) {
|
|
36393
|
+
/** Create a PackedFeature of [[GeometryClass.Primary]] with all invalid Ids.
|
|
36394
|
+
* This is primarily useful for creating a `result` argument for [[RenderFeatureTable.getPackedFeature]].
|
|
36395
|
+
*/
|
|
36340
36396
|
function create() {
|
|
36341
36397
|
const pair = { upper: 0, lower: 0 };
|
|
36342
36398
|
return {
|
|
@@ -36348,6 +36404,9 @@ var PackedFeature;
|
|
|
36348
36404
|
};
|
|
36349
36405
|
}
|
|
36350
36406
|
PackedFeature.create = create;
|
|
36407
|
+
/** Create a PackedFeatureWithIndex of [[GeometryClass.Primary]] with all invalid Ids and an index of zero.
|
|
36408
|
+
* This is primarily useful for creating a reusable `output` argument for [[RenderFeatureTable.iterable]].
|
|
36409
|
+
*/
|
|
36351
36410
|
function createWithIndex() {
|
|
36352
36411
|
const result = create();
|
|
36353
36412
|
result.index = 0;
|
|
@@ -36422,6 +36481,10 @@ class FeatureTable extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Inde
|
|
|
36422
36481
|
}
|
|
36423
36482
|
/** @internal */
|
|
36424
36483
|
getArray() { return this._array; }
|
|
36484
|
+
/** Convert this feature table to a representation that can be supplied to [RenderSystem.createBatch]($frontend). */
|
|
36485
|
+
pack() {
|
|
36486
|
+
return PackedFeatureTable.pack(this);
|
|
36487
|
+
}
|
|
36425
36488
|
}
|
|
36426
36489
|
const scratchPackedFeature = PackedFeature.create();
|
|
36427
36490
|
function populateAnimationNodeIds(table, computeNodeId, maxNodeId) {
|
|
@@ -38705,7 +38768,7 @@ class IModel {
|
|
|
38705
38768
|
...this._getRpcProps(),
|
|
38706
38769
|
};
|
|
38707
38770
|
}
|
|
38708
|
-
/**
|
|
38771
|
+
/** Convert this iModel to a JSON representation. */
|
|
38709
38772
|
toJSON() {
|
|
38710
38773
|
return this.getConnectionProps();
|
|
38711
38774
|
}
|
|
@@ -41422,7 +41485,7 @@ var QPoint3dBuffer;
|
|
|
41422
41485
|
QPoint3dBuffer.getQPoint = getQPoint;
|
|
41423
41486
|
/** Extracts and unquantizes the point at the specified index from a buffer.
|
|
41424
41487
|
* @param buffer The array of points and the quantization parameters.
|
|
41425
|
-
* @param The index of the point to extract, ranging from zero to one less than the number of points in the buffer.
|
|
41488
|
+
* @param buffer The index of the point to extract, ranging from zero to one less than the number of points in the buffer.
|
|
41426
41489
|
* @param result If supplied, a preallocated [Point3d]($core-geometry) to initialize with the result and return.
|
|
41427
41490
|
* @returns The point at `pointIndex`.
|
|
41428
41491
|
* @throws Error if `pointIndex` is out of bounds.
|
|
@@ -41443,14 +41506,14 @@ class QPoint3dList {
|
|
|
41443
41506
|
return this._list;
|
|
41444
41507
|
}
|
|
41445
41508
|
/** Construct an empty list set up to quantize to the supplied range.
|
|
41446
|
-
* @param The quantization parameters. If omitted, a null range will be used.
|
|
41509
|
+
* @param params The quantization parameters. If omitted, a null range will be used.
|
|
41447
41510
|
*/
|
|
41448
41511
|
constructor(params) {
|
|
41449
41512
|
this._list = [];
|
|
41450
41513
|
this.params = params ? params.clone() : QParams3d.fromRange(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range3d.createNull());
|
|
41451
41514
|
}
|
|
41452
41515
|
/** Construct a QPoint3dList containing all points in the supplied list, quantized to the range of those points.
|
|
41453
|
-
* @param The points to quantize and add to the list.
|
|
41516
|
+
* @param points The points to quantize and add to the list.
|
|
41454
41517
|
* @param out If supplied, it will be cleared, its parameters recomputed, and the points will be added to it; otherwise, a new QPoint3dList will be created and returned.
|
|
41455
41518
|
*/
|
|
41456
41519
|
static fromPoints(points, out) {
|
|
@@ -41859,13 +41922,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
41859
41922
|
/* harmony export */ MeshEdges: () => (/* binding */ MeshEdges),
|
|
41860
41923
|
/* harmony export */ MeshPolyline: () => (/* binding */ MeshPolyline),
|
|
41861
41924
|
/* harmony export */ MeshPolylineList: () => (/* binding */ MeshPolylineList),
|
|
41862
|
-
/* harmony export */ PolylineData: () => (/* binding */ PolylineData),
|
|
41863
41925
|
/* harmony export */ PolylineEdgeArgs: () => (/* binding */ PolylineEdgeArgs),
|
|
41864
|
-
/* harmony export */ PolylineFlags: () => (/* binding */ PolylineFlags),
|
|
41865
41926
|
/* harmony export */ PolylineTypeFlags: () => (/* binding */ PolylineTypeFlags),
|
|
41866
41927
|
/* harmony export */ SilhouetteEdgeArgs: () => (/* binding */ SilhouetteEdgeArgs)
|
|
41867
41928
|
/* harmony export */ });
|
|
41868
|
-
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
41869
41929
|
/*---------------------------------------------------------------------------------------------
|
|
41870
41930
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
41871
41931
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -41873,77 +41933,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
41873
41933
|
/** @packageDocumentation
|
|
41874
41934
|
* @module Rendering
|
|
41875
41935
|
*/
|
|
41876
|
-
|
|
41877
41936
|
// cSpell:ignore vals
|
|
41878
|
-
/**
|
|
41937
|
+
/** Describes the semantics of a [PolylineArgs]($frontend).
|
|
41938
|
+
* @alpha
|
|
41939
|
+
*/
|
|
41879
41940
|
var PolylineTypeFlags;
|
|
41880
41941
|
(function (PolylineTypeFlags) {
|
|
41881
41942
|
PolylineTypeFlags[PolylineTypeFlags["Normal"] = 0] = "Normal";
|
|
41882
41943
|
PolylineTypeFlags[PolylineTypeFlags["Edge"] = 1] = "Edge";
|
|
41883
41944
|
PolylineTypeFlags[PolylineTypeFlags["Outline"] = 2] = "Outline";
|
|
41884
41945
|
})(PolylineTypeFlags || (PolylineTypeFlags = {}));
|
|
41885
|
-
/** Flags describing a polyline. A polyline may represent a continuous line string, or a set of discrete points.
|
|
41886
|
-
* @internal
|
|
41887
|
-
*/
|
|
41888
|
-
class PolylineFlags {
|
|
41889
|
-
constructor(is2d = false, isPlanar = false, isDisjoint = false, type = PolylineTypeFlags.Normal) {
|
|
41890
|
-
this.isDisjoint = isDisjoint;
|
|
41891
|
-
this.isPlanar = isPlanar;
|
|
41892
|
-
this.is2d = is2d;
|
|
41893
|
-
this.type = type;
|
|
41894
|
-
}
|
|
41895
|
-
clone() { return new PolylineFlags(this.is2d, this.isPlanar, this.isDisjoint, this.type); }
|
|
41896
|
-
/** Create a PolylineFlags from a serialized numeric representation. */
|
|
41897
|
-
static unpack(value) {
|
|
41898
|
-
const isDisjoint = 0 !== (value & 1);
|
|
41899
|
-
const isPlanar = 0 !== (value & 2);
|
|
41900
|
-
const is2d = 0 !== (value & 4);
|
|
41901
|
-
const type = (value >> 3);
|
|
41902
|
-
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(type === PolylineTypeFlags.Normal || type === PolylineTypeFlags.Edge || type === PolylineTypeFlags.Outline);
|
|
41903
|
-
return new PolylineFlags(is2d, isPlanar, isDisjoint, type);
|
|
41904
|
-
}
|
|
41905
|
-
initDefaults() {
|
|
41906
|
-
this.isDisjoint = this.isPlanar = this.is2d = false;
|
|
41907
|
-
this.type = PolylineTypeFlags.Normal;
|
|
41908
|
-
}
|
|
41909
|
-
get isOutlineEdge() { return PolylineTypeFlags.Outline === this.type; }
|
|
41910
|
-
get isNormalEdge() { return PolylineTypeFlags.Edge === this.type; }
|
|
41911
|
-
get isAnyEdge() { return PolylineTypeFlags.Normal !== this.type; }
|
|
41912
|
-
setIsNormalEdge() { this.type = PolylineTypeFlags.Edge; }
|
|
41913
|
-
setIsOutlineEdge() { this.type = PolylineTypeFlags.Outline; }
|
|
41914
|
-
/** Convert these flags to a numeric representation for serialization. */
|
|
41915
|
-
pack() {
|
|
41916
|
-
let val = 0;
|
|
41917
|
-
if (this.isDisjoint)
|
|
41918
|
-
val += 1;
|
|
41919
|
-
if (this.isPlanar)
|
|
41920
|
-
val += 1 << 1;
|
|
41921
|
-
if (this.is2d)
|
|
41922
|
-
val += 1 << 2;
|
|
41923
|
-
val += this.type << 3;
|
|
41924
|
-
return val;
|
|
41925
|
-
}
|
|
41926
|
-
equals(other) {
|
|
41927
|
-
return this.type === other.type && this.is2d === other.is2d && this.isPlanar === other.isPlanar && this.isDisjoint === other.isDisjoint;
|
|
41928
|
-
}
|
|
41929
|
-
}
|
|
41930
|
-
/** @internal */
|
|
41931
|
-
class PolylineData {
|
|
41932
|
-
constructor(vertIndices = [], numIndices = 0) {
|
|
41933
|
-
this.vertIndices = vertIndices;
|
|
41934
|
-
this.numIndices = numIndices;
|
|
41935
|
-
}
|
|
41936
|
-
get isValid() { return 0 < this.numIndices; }
|
|
41937
|
-
reset() {
|
|
41938
|
-
this.numIndices = 0;
|
|
41939
|
-
this.vertIndices = [];
|
|
41940
|
-
}
|
|
41941
|
-
init(polyline) {
|
|
41942
|
-
this.numIndices = polyline.indices.length;
|
|
41943
|
-
this.vertIndices = 0 < this.numIndices ? polyline.indices : [];
|
|
41944
|
-
return this.isValid;
|
|
41945
|
-
}
|
|
41946
|
-
}
|
|
41947
41946
|
/** @internal */
|
|
41948
41947
|
class MeshPolyline {
|
|
41949
41948
|
constructor(indices = []) {
|
|
@@ -46498,7 +46497,9 @@ class ViewFlags {
|
|
|
46498
46497
|
edgesRequired() {
|
|
46499
46498
|
return edgesRequired(this.renderMode, this.visibleEdges);
|
|
46500
46499
|
}
|
|
46501
|
-
/** Convert to JSON representation.
|
|
46500
|
+
/** Convert to JSON representation.
|
|
46501
|
+
* Properties are omitted if they match the default values.
|
|
46502
|
+
*/
|
|
46502
46503
|
toJSON() {
|
|
46503
46504
|
const out = {};
|
|
46504
46505
|
if (!this.constructions)
|
|
@@ -46550,9 +46551,7 @@ class ViewFlags {
|
|
|
46550
46551
|
out.renderMode = this.renderMode;
|
|
46551
46552
|
return out;
|
|
46552
46553
|
}
|
|
46553
|
-
/** Like [[toJSON]], but no properties are omitted.
|
|
46554
|
-
* @internal
|
|
46555
|
-
*/
|
|
46554
|
+
/** Like [[toJSON]], but no properties are omitted. */
|
|
46556
46555
|
toFullyDefinedJSON() {
|
|
46557
46556
|
return {
|
|
46558
46557
|
renderMode: this.renderMode,
|
|
@@ -46970,9 +46969,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
46970
46969
|
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__.PlanarClipMaskSettings),
|
|
46971
46970
|
/* harmony export */ PntsHeader: () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_148__.PntsHeader),
|
|
46972
46971
|
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_88__.PointCloudDisplaySettings),
|
|
46973
|
-
/* harmony export */ PolylineData: () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_89__.PolylineData),
|
|
46974
46972
|
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_89__.PolylineEdgeArgs),
|
|
46975
|
-
/* harmony export */ PolylineFlags: () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_89__.PolylineFlags),
|
|
46976
46973
|
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_89__.PolylineTypeFlags),
|
|
46977
46974
|
/* harmony export */ PositionalVectorTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.PositionalVectorTransform),
|
|
46978
46975
|
/* harmony export */ PrimitiveTypeCode: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PrimitiveTypeCode),
|
|
@@ -48720,7 +48717,7 @@ var BRepGeometryOperation;
|
|
|
48720
48717
|
BRepGeometryOperation[BRepGeometryOperation["Offset"] = 11] = "Offset";
|
|
48721
48718
|
})(BRepGeometryOperation || (BRepGeometryOperation = {}));
|
|
48722
48719
|
/** Provides utility functions for working with [[ElementGeometryDataEntry]].
|
|
48723
|
-
* @
|
|
48720
|
+
* @beta
|
|
48724
48721
|
*/
|
|
48725
48722
|
var ElementGeometry;
|
|
48726
48723
|
(function (ElementGeometry) {
|
|
@@ -72092,9 +72089,10 @@ class AccuDraw {
|
|
|
72092
72089
|
this._yIsNegative = false; // Last delta.y was negative
|
|
72093
72090
|
this._xIsExplicit = false; // Sign of delta.x established from user input input, don't allow +/- side flip.
|
|
72094
72091
|
this._yIsExplicit = false; // Sign of delta.y established from user input input, don't allow +/- side flip.
|
|
72095
|
-
|
|
72096
|
-
|
|
72097
|
-
|
|
72092
|
+
/** Disable automatic focus change when user is entering input. */
|
|
72093
|
+
this.dontMoveFocus = false;
|
|
72094
|
+
/** Set input field to move focus to (X_Item or Y_Item) for automatic focus change. */
|
|
72095
|
+
this.newFocus = ItemField.X_Item;
|
|
72098
72096
|
this._rMatrix = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d();
|
|
72099
72097
|
// Compass Display Preferences...
|
|
72100
72098
|
/** @internal */
|
|
@@ -72141,8 +72139,6 @@ class AccuDraw {
|
|
|
72141
72139
|
get isEnabled() { return (this.currentState > CurrentState.NotEnabled); }
|
|
72142
72140
|
get isInactive() { return (CurrentState.Inactive === this.currentState); }
|
|
72143
72141
|
get isDeactivated() { return (CurrentState.Deactivated === this.currentState); }
|
|
72144
|
-
/** @internal */
|
|
72145
|
-
setNewFocus(index) { this.newFocus = index; }
|
|
72146
72142
|
/** Get the current lock state for the supplied input field */
|
|
72147
72143
|
getFieldLock(index) { return this._fieldLocked[index]; }
|
|
72148
72144
|
/** @internal */
|
|
@@ -73181,7 +73177,7 @@ class AccuDraw {
|
|
|
73181
73177
|
this.published.flags = 0;
|
|
73182
73178
|
this.flags.rotationNeedsUpdate = true;
|
|
73183
73179
|
this.flags.fixedOrg = false;
|
|
73184
|
-
this.
|
|
73180
|
+
this.newFocus = ItemField.X_Item;
|
|
73185
73181
|
this.unlockAllFields();
|
|
73186
73182
|
if (this.rotationMode !== this.flags.baseRotation)
|
|
73187
73183
|
this.setRotationMode(this.flags.baseRotation);
|
|
@@ -74970,7 +74966,7 @@ class AccuSnap {
|
|
|
74970
74966
|
setIsFlashed(view) { this.areFlashed.add(view); }
|
|
74971
74967
|
clearIsFlashed(view) { this.areFlashed.delete(view); }
|
|
74972
74968
|
static toSnapDetail(hit) { return (hit && hit instanceof _HitDetail__WEBPACK_IMPORTED_MODULE_3__.SnapDetail) ? hit : undefined; }
|
|
74973
|
-
/**
|
|
74969
|
+
/** Currently active snap */
|
|
74974
74970
|
getCurrSnapDetail() { return AccuSnap.toSnapDetail(this.currHit); }
|
|
74975
74971
|
/** Determine whether there is a current hit that is *hot*. */
|
|
74976
74972
|
get isHot() {
|
|
@@ -75481,6 +75477,19 @@ class AccuSnap {
|
|
|
75481
75477
|
hitList.setCurrentHit(thisHit);
|
|
75482
75478
|
return thisSnap;
|
|
75483
75479
|
}
|
|
75480
|
+
/** Request a snap from the backend for the supplied HitDetail.
|
|
75481
|
+
* @param hit The HitDetail to snap to.
|
|
75482
|
+
* @param snapMode Optional SnapMode, uses active snap modes if not specified.
|
|
75483
|
+
* @return A Promise for the SnapDetail or undefined if no snap could be created.
|
|
75484
|
+
*/
|
|
75485
|
+
async doSnapRequest(hit, snapMode) {
|
|
75486
|
+
let snapModes;
|
|
75487
|
+
if (undefined === snapMode)
|
|
75488
|
+
snapModes = this.getActiveSnapModes();
|
|
75489
|
+
else
|
|
75490
|
+
snapModes = [snapMode];
|
|
75491
|
+
return AccuSnap.requestSnap(hit, snapModes, this._hotDistanceInches, this.keypointDivisor);
|
|
75492
|
+
}
|
|
75484
75493
|
findHits(ev, force = false) {
|
|
75485
75494
|
// When using AccuSnap to locate elements, we have to start with the datapoint adjusted
|
|
75486
75495
|
// for locks and not the raw point. Otherwise, when grid/unit lock are on, we locate elements by
|
|
@@ -76917,7 +76926,7 @@ class ModelChangeMonitor {
|
|
|
76917
76926
|
* Specialized tools are free to ignore these settings.
|
|
76918
76927
|
* @see [[BriefcaseConnection.editorToolSettings]] to query or modify the current settings for a briefcase.
|
|
76919
76928
|
* @see [CreateElementTool]($editor-frontend) for an example of a tool that uses these settings.
|
|
76920
|
-
* @
|
|
76929
|
+
* @beta
|
|
76921
76930
|
*/
|
|
76922
76931
|
class BriefcaseEditorToolSettings {
|
|
76923
76932
|
constructor() {
|
|
@@ -76944,7 +76953,7 @@ class BriefcaseEditorToolSettings {
|
|
|
76944
76953
|
/** The [Model]($backend) into which new elements should be inserted by default.
|
|
76945
76954
|
* Specialized tools are free to ignore this setting and instead use their own logic to select an appropriate model.
|
|
76946
76955
|
* @see [[onModelChanged]] to be notified when this property is modified.
|
|
76947
|
-
* @see [CreateElementTool.
|
|
76956
|
+
* @see [CreateElementTool.targetModelId]($editor-frontend) for an example of a tool that uses this setting.
|
|
76948
76957
|
*/
|
|
76949
76958
|
get model() {
|
|
76950
76959
|
return this._model;
|
|
@@ -76971,7 +76980,7 @@ class BriefcaseConnection extends _IModelConnection__WEBPACK_IMPORTED_MODULE_5__
|
|
|
76971
76980
|
constructor(props, openMode) {
|
|
76972
76981
|
super(props);
|
|
76973
76982
|
/** Default settings that can be used to control the behavior of [[Tool]]s that modify this briefcase.
|
|
76974
|
-
* @
|
|
76983
|
+
* @beta
|
|
76975
76984
|
*/
|
|
76976
76985
|
this.editorToolSettings = new BriefcaseEditorToolSettings();
|
|
76977
76986
|
/** Strictly for tests - dispatched from ModelChangeMonitor.processBuffered.
|
|
@@ -77482,21 +77491,33 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
77482
77491
|
*/
|
|
77483
77492
|
/** Bit masks describing which aspects of a [[Viewport]] have changed as part of a [[ChangeFlags]].
|
|
77484
77493
|
* @see [[Viewport.onViewportChanged]].
|
|
77485
|
-
* @
|
|
77494
|
+
* @public
|
|
77486
77495
|
*/
|
|
77487
77496
|
var ChangeFlag;
|
|
77488
77497
|
(function (ChangeFlag) {
|
|
77498
|
+
/** No changes. */
|
|
77489
77499
|
ChangeFlag[ChangeFlag["None"] = 0] = "None";
|
|
77500
|
+
/** See [[ChangeFlags.alwaysDrawn]]. */
|
|
77490
77501
|
ChangeFlag[ChangeFlag["AlwaysDrawn"] = 1] = "AlwaysDrawn";
|
|
77502
|
+
/** See [[ChangeFlags.neverDrawn]]. */
|
|
77491
77503
|
ChangeFlag[ChangeFlag["NeverDrawn"] = 2] = "NeverDrawn";
|
|
77504
|
+
/** See [[ChangeFlags.viewedCategories]]. */
|
|
77492
77505
|
ChangeFlag[ChangeFlag["ViewedCategories"] = 4] = "ViewedCategories";
|
|
77506
|
+
/** See [[ChangeFlags.viewedModels]]. */
|
|
77493
77507
|
ChangeFlag[ChangeFlag["ViewedModels"] = 8] = "ViewedModels";
|
|
77508
|
+
/** See [[ChangeFlags.displayStyle]]. */
|
|
77494
77509
|
ChangeFlag[ChangeFlag["DisplayStyle"] = 16] = "DisplayStyle";
|
|
77510
|
+
/** See [[ChangeFlags.featureOverrideProvider]]. */
|
|
77495
77511
|
ChangeFlag[ChangeFlag["FeatureOverrideProvider"] = 32] = "FeatureOverrideProvider";
|
|
77512
|
+
/** See [[ChangeFlags.viewedCategoriesPerModel]]. */
|
|
77496
77513
|
ChangeFlag[ChangeFlag["ViewedCategoriesPerModel"] = 64] = "ViewedCategoriesPerModel";
|
|
77514
|
+
/** See [[ChangeFlags.viewState]]. */
|
|
77497
77515
|
ChangeFlag[ChangeFlag["ViewState"] = 128] = "ViewState";
|
|
77516
|
+
/** A bitmask indicating all aspects of the viewport's state have changed. */
|
|
77498
77517
|
ChangeFlag[ChangeFlag["All"] = 268435455] = "All";
|
|
77518
|
+
/** A bitmask indicating all aspects of the viewport's state related to symbology overrides have changed. */
|
|
77499
77519
|
ChangeFlag[ChangeFlag["Overrides"] = 268435319] = "Overrides";
|
|
77520
|
+
/** A bitmask indicating the initial state of a newly-created [[Viewport]]. */
|
|
77500
77521
|
ChangeFlag[ChangeFlag["Initial"] = 28] = "Initial";
|
|
77501
77522
|
})(ChangeFlag || (ChangeFlag = {}));
|
|
77502
77523
|
/** Describes which aspects of a [[Viewport]] have changed. Each time [[Viewport.renderFrame]] is invoked, the aspects of the viewport that have changed since
|
|
@@ -77505,7 +77526,9 @@ var ChangeFlag;
|
|
|
77505
77526
|
* @extensions
|
|
77506
77527
|
*/
|
|
77507
77528
|
class ChangeFlags {
|
|
77508
|
-
/**
|
|
77529
|
+
/** Create a new ChangeFlags.
|
|
77530
|
+
* @param flags The initial flags that should be set.
|
|
77531
|
+
*/
|
|
77509
77532
|
constructor(flags = ChangeFlag.Initial) {
|
|
77510
77533
|
this._flags = flags;
|
|
77511
77534
|
}
|
|
@@ -77533,25 +77556,24 @@ class ChangeFlags {
|
|
|
77533
77556
|
* @beta
|
|
77534
77557
|
*/
|
|
77535
77558
|
get viewedCategoriesPerModel() { return this.isSet(ChangeFlag.ViewedCategoriesPerModel); }
|
|
77536
|
-
/**
|
|
77537
|
-
* @internal
|
|
77538
|
-
*/
|
|
77559
|
+
/** Returns true if any of the specified flags are set. */
|
|
77539
77560
|
isSet(flags) { return 0 !== (this._flags & flags); }
|
|
77540
|
-
/**
|
|
77541
|
-
* @internal
|
|
77542
|
-
*/
|
|
77561
|
+
/** Returns true if all of the specified flags are set. */
|
|
77543
77562
|
areAllSet(flags) { return flags === (this._flags & flags); }
|
|
77544
77563
|
/** Returns true if any aspects affecting [[FeatureSymbology.Overrides]] have changed. */
|
|
77545
77564
|
get areFeatureOverridesDirty() { return this.isSet(ChangeFlag.Overrides); }
|
|
77546
77565
|
/** Returns true if any aspect at all has changed. */
|
|
77547
77566
|
get hasChanges() { return this.isSet(ChangeFlag.All); }
|
|
77548
|
-
/**
|
|
77567
|
+
/** The underlying bitmask indicating the state of each individual flag. */
|
|
77549
77568
|
get value() { return this._flags; }
|
|
77550
77569
|
}
|
|
77551
|
-
/**
|
|
77552
|
-
* @
|
|
77570
|
+
/** A [[ChangeFlags]] that permits modifying the states of individual [[ChangeFlag]]s.
|
|
77571
|
+
* @public
|
|
77553
77572
|
*/
|
|
77554
77573
|
class MutableChangeFlags extends ChangeFlags {
|
|
77574
|
+
/** Create a new MutableChangeFlags.
|
|
77575
|
+
* @param flags The initial flags that should be set.
|
|
77576
|
+
*/
|
|
77555
77577
|
constructor(flags = ChangeFlag.Initial) {
|
|
77556
77578
|
super(flags);
|
|
77557
77579
|
}
|
|
@@ -79091,13 +79113,13 @@ class DrawingViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_14__.ViewStat
|
|
|
79091
79113
|
this._attachmentInfo = SectionAttachmentInfo.fromJSON(sectionDrawing);
|
|
79092
79114
|
}
|
|
79093
79115
|
}
|
|
79094
|
-
/**
|
|
79116
|
+
/** See [[ViewState.attachToViewport]]. */
|
|
79095
79117
|
attachToViewport(args) {
|
|
79096
79118
|
super.attachToViewport(args);
|
|
79097
79119
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined === this._attachment);
|
|
79098
79120
|
this._attachment = this._attachmentInfo.createAttachment(args.drawingToSheetTransform);
|
|
79099
79121
|
}
|
|
79100
|
-
/**
|
|
79122
|
+
/** See [[ViewState.detachFromViewport]]. */
|
|
79101
79123
|
detachFromViewport() {
|
|
79102
79124
|
super.detachFromViewport();
|
|
79103
79125
|
this._attachment = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._attachment);
|
|
@@ -79397,23 +79419,9 @@ class ElementPicker {
|
|
|
79397
79419
|
if (this.hitList)
|
|
79398
79420
|
this.hitList.resetCurrentHit();
|
|
79399
79421
|
}
|
|
79400
|
-
getPixelPriority(pixel) {
|
|
79401
|
-
switch (pixel.type) {
|
|
79402
|
-
case _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.GeometryType.Surface:
|
|
79403
|
-
return _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.Planarity.Planar === pixel.planarity ? _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.PlanarSurface : _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.NonPlanarSurface;
|
|
79404
|
-
case _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.GeometryType.Linear:
|
|
79405
|
-
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.WireEdge;
|
|
79406
|
-
case _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.GeometryType.Edge:
|
|
79407
|
-
return _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.Planarity.Planar === pixel.planarity ? _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.PlanarEdge : _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.NonPlanarEdge;
|
|
79408
|
-
case _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.GeometryType.Silhouette:
|
|
79409
|
-
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.SilhouetteEdge;
|
|
79410
|
-
default:
|
|
79411
|
-
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.Unknown;
|
|
79412
|
-
}
|
|
79413
|
-
}
|
|
79414
79422
|
comparePixel(pixel1, pixel2, distXY1, distXY2) {
|
|
79415
|
-
const priority1 =
|
|
79416
|
-
const priority2 =
|
|
79423
|
+
const priority1 = pixel1.computeHitPriority();
|
|
79424
|
+
const priority2 = pixel2.computeHitPriority();
|
|
79417
79425
|
if (priority1 < priority2)
|
|
79418
79426
|
return -1;
|
|
79419
79427
|
if (priority1 > priority2)
|
|
@@ -79486,29 +79494,13 @@ class ElementPicker {
|
|
|
79486
79494
|
});
|
|
79487
79495
|
if (!hitPointWorld)
|
|
79488
79496
|
continue;
|
|
79489
|
-
let viewAttachment;
|
|
79490
|
-
if (pixel.viewAttachmentId) {
|
|
79491
|
-
const attachmentViewport = vp.view.getAttachmentViewport(pixel.viewAttachmentId);
|
|
79492
|
-
if (attachmentViewport)
|
|
79493
|
-
viewAttachment = { viewport: attachmentViewport, id: pixel.viewAttachmentId };
|
|
79494
|
-
}
|
|
79495
|
-
const modelId = pixel.modelId;
|
|
79496
79497
|
const hit = new _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitDetail({
|
|
79498
|
+
...pixel.toHitProps(vp),
|
|
79497
79499
|
testPoint: pickPointWorld,
|
|
79498
79500
|
viewport: vp,
|
|
79499
79501
|
hitSource: options.hitSource,
|
|
79500
79502
|
hitPoint: hitPointWorld,
|
|
79501
|
-
sourceId: pixel.elementId,
|
|
79502
|
-
priority: this.getPixelPriority(pixel),
|
|
79503
79503
|
distXY: testPointView.distance(elmPoint),
|
|
79504
|
-
distFraction: pixel.distanceFraction,
|
|
79505
|
-
subCategoryId: pixel.subCategoryId,
|
|
79506
|
-
geometryClass: pixel.geometryClass,
|
|
79507
|
-
modelId,
|
|
79508
|
-
sourceIModel: pixel.iModel,
|
|
79509
|
-
tileId: pixel.tileId,
|
|
79510
|
-
isClassifier: pixel.isClassifier,
|
|
79511
|
-
viewAttachment,
|
|
79512
79504
|
});
|
|
79513
79505
|
this.hitList.addHit(hit);
|
|
79514
79506
|
if (this.hitList.hits.length > options.maxHits)
|
|
@@ -82476,8 +82468,15 @@ class IModelApp {
|
|
|
82476
82468
|
* @beta
|
|
82477
82469
|
*/
|
|
82478
82470
|
static get realityDataAccess() { return this._realityDataAccess; }
|
|
82479
|
-
/**
|
|
82480
|
-
|
|
82471
|
+
/** Whether the [renderSystem[]] has been successfully initialized.
|
|
82472
|
+
* This will always be `false` before calling [[startup]] and after calling [[shutdown]].
|
|
82473
|
+
* In rare circumstances (e.g., while executing in a headless test environment) it may remain `false` due to a failure to
|
|
82474
|
+
* obtain a [WebGL rendering context](https://www.google.com/search?channel=fs&client=ubuntu-sn&q=mdn+webglrenderingcontext).
|
|
82475
|
+
* As long as you have called [[startup]], you can generally assume it to be `true`.
|
|
82476
|
+
*/
|
|
82477
|
+
static get hasRenderSystem() {
|
|
82478
|
+
return this._renderSystem !== undefined && this._renderSystem.isValid;
|
|
82479
|
+
}
|
|
82481
82480
|
/** The [[UiAdmin]] for this session. */
|
|
82482
82481
|
static get uiAdmin() { return this._uiAdmin; }
|
|
82483
82482
|
/** The requested security options for the frontend. */
|
|
@@ -82633,7 +82632,9 @@ class IModelApp {
|
|
|
82633
82632
|
IModelApp.requestIntervalAnimation();
|
|
82634
82633
|
}
|
|
82635
82634
|
}
|
|
82636
|
-
/**
|
|
82635
|
+
/** Request that the event loop execute on the next [animation frame](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame).
|
|
82636
|
+
* There is generally no reason for applications to invoke this method directly.
|
|
82637
|
+
*/
|
|
82637
82638
|
static requestNextAnimation() {
|
|
82638
82639
|
// Only want to call requestAnimationFrame if it is defined. Need to check whether current iModelApp is a NoRenderApp.
|
|
82639
82640
|
if (IModelApp._noRender)
|
|
@@ -82728,9 +82729,7 @@ class IModelApp {
|
|
|
82728
82729
|
return serialized;
|
|
82729
82730
|
};
|
|
82730
82731
|
}
|
|
82731
|
-
/** Shortcut for creating an HTMLElement with optional parent, className, id, innerHTML, innerText
|
|
82732
|
-
* @internal
|
|
82733
|
-
*/
|
|
82732
|
+
/** Shortcut for creating an HTMLElement with optional parent, className, id, innerHTML, innerText. */
|
|
82734
82733
|
static makeHTMLElement(type, opt) {
|
|
82735
82734
|
const el = document.createElement(type);
|
|
82736
82735
|
if (undefined !== opt) {
|
|
@@ -82747,10 +82746,9 @@ class IModelApp {
|
|
|
82747
82746
|
}
|
|
82748
82747
|
return el;
|
|
82749
82748
|
}
|
|
82750
|
-
/**
|
|
82749
|
+
/** Shortcut for making a modal dialog on top of the root of the application. The returned HTMLDivElement will be placed topmost, all other application
|
|
82751
82750
|
* windows will be covered with a semi-transparent background that intercepts all key/mouse/touch events until the modal is dismissed.
|
|
82752
82751
|
* @param options The options that describe how the modal should work.
|
|
82753
|
-
* @internal
|
|
82754
82752
|
*/
|
|
82755
82753
|
static makeModalDiv(options) {
|
|
82756
82754
|
const root = options.rootDiv ? options.rootDiv : document.body;
|
|
@@ -82876,11 +82874,9 @@ IModelApp._initialized = false;
|
|
|
82876
82874
|
IModelApp._wantEventLoop = false;
|
|
82877
82875
|
IModelApp._animationRequested = false;
|
|
82878
82876
|
IModelApp._animationInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_1__.BeDuration.fromSeconds(1);
|
|
82879
|
-
/** Event raised just before the frontend IModelApp is to be
|
|
82877
|
+
/** Event raised just before the frontend IModelApp is to be [[shutdown]]. */
|
|
82880
82878
|
IModelApp.onBeforeShutdown = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_1__.BeEvent();
|
|
82881
|
-
/** Event raised after IModelApp
|
|
82882
|
-
* @internal
|
|
82883
|
-
*/
|
|
82879
|
+
/** Event raised after IModelApp [[startup]] completes. */
|
|
82884
82880
|
IModelApp.onAfterStartup = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_1__.BeEvent();
|
|
82885
82881
|
/** The [[ToolRegistry]] for this session. */
|
|
82886
82882
|
IModelApp.tools = new _tools_Tool__WEBPACK_IMPORTED_MODULE_32__.ToolRegistry();
|
|
@@ -83080,6 +83076,12 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
83080
83076
|
this.subcategories.onIModelConnectionClose();
|
|
83081
83077
|
}
|
|
83082
83078
|
/** Allow to execute query and read results along with meta data. The result are streamed.
|
|
83079
|
+
*
|
|
83080
|
+
* See also:
|
|
83081
|
+
* - [ECSQL Overview]($docs/learning/frontend/ExecutingECSQL)
|
|
83082
|
+
* - [Code Examples]($docs/learning/frontend/ECSQLCodeExamples)
|
|
83083
|
+
* - [ECSQL Row Format]($docs/learning/ECSQLRowFormat)
|
|
83084
|
+
*
|
|
83083
83085
|
* @param params The values to bind to the parameters (if the ECSQL has any).
|
|
83084
83086
|
* @param config Allow to specify certain flags which control how query is executed.
|
|
83085
83087
|
* @returns Returns an [ECSqlReader]($common) which helps iterate over the result set and also give access to metadata.
|
|
@@ -83107,8 +83109,8 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
83107
83109
|
* [ECSQL row]($docs/learning/ECSQLRowFormat).
|
|
83108
83110
|
*
|
|
83109
83111
|
* See also:
|
|
83110
|
-
* - [ECSQL Overview]($docs/learning/
|
|
83111
|
-
* - [Code Examples]($docs/learning/ECSQLCodeExamples)
|
|
83112
|
+
* - [ECSQL Overview]($docs/learning/frontend/ExecutingECSQL)
|
|
83113
|
+
* - [Code Examples]($docs/learning/frontend/ECSQLCodeExamples)
|
|
83112
83114
|
*
|
|
83113
83115
|
* @param ecsql The ECSQL statement to execute
|
|
83114
83116
|
* @param params The values to bind to the parameters (if the ECSQL has any).
|
|
@@ -83127,8 +83129,8 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
83127
83129
|
/** Compute number of rows that would be returned by the ECSQL.
|
|
83128
83130
|
*
|
|
83129
83131
|
* See also:
|
|
83130
|
-
* - [ECSQL Overview]($docs/learning/
|
|
83131
|
-
* - [Code Examples]($docs/learning/ECSQLCodeExamples)
|
|
83132
|
+
* - [ECSQL Overview]($docs/learning/frontend/ExecutingECSQL)
|
|
83133
|
+
* - [Code Examples]($docs/learning/frontend/ECSQLCodeExamples)
|
|
83132
83134
|
*
|
|
83133
83135
|
* @param ecsql The ECSQL statement to execute
|
|
83134
83136
|
* @param params The values to bind to the parameters (if the ECSQL has any).
|
|
@@ -83148,8 +83150,8 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
83148
83150
|
* [ECSQL row]($docs/learning/ECSQLRowFormat).
|
|
83149
83151
|
*
|
|
83150
83152
|
* See also:
|
|
83151
|
-
* - [ECSQL Overview]($docs/learning/
|
|
83152
|
-
* - [Code Examples]($docs/learning/ECSQLCodeExamples)
|
|
83153
|
+
* - [ECSQL Overview]($docs/learning/frontend/ExecutingECSQL)
|
|
83154
|
+
* - [Code Examples]($docs/learning/frontend/ECSQLCodeExamples)
|
|
83153
83155
|
*
|
|
83154
83156
|
* @param ecsql The ECSQL statement to execute
|
|
83155
83157
|
* @param token None empty restart token. The previous query with same token would be cancelled. This would cause
|
|
@@ -87876,13 +87878,13 @@ class SheetViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_13__.ViewState2
|
|
|
87876
87878
|
this._attachmentsInfo = ViewAttachmentsInfo.fromJSON(attachmentIds);
|
|
87877
87879
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined === this._attachments);
|
|
87878
87880
|
}
|
|
87879
|
-
/**
|
|
87881
|
+
/** See [[ViewState.attachToViewport]]. */
|
|
87880
87882
|
attachToViewport(args) {
|
|
87881
87883
|
super.attachToViewport(args);
|
|
87882
87884
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined === this._attachments);
|
|
87883
87885
|
this._attachments = this._attachmentsInfo.createAttachments(this);
|
|
87884
87886
|
}
|
|
87885
|
-
/**
|
|
87887
|
+
/** See [[ViewState.detachFromViewport]]. */
|
|
87886
87888
|
detachFromViewport() {
|
|
87887
87889
|
super.detachFromViewport();
|
|
87888
87890
|
this._attachments = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._attachments);
|
|
@@ -88530,13 +88532,13 @@ class SpatialViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_6__.ViewState
|
|
|
88530
88532
|
context.textureDrapes.forEach((drape) => drape.collectGraphics(context));
|
|
88531
88533
|
context.viewport.target.updateSolarShadows(this.getDisplayStyle3d().wantShadows ? context : undefined);
|
|
88532
88534
|
}
|
|
88533
|
-
/**
|
|
88535
|
+
/** See [[ViewState.attachToViewport]]. */
|
|
88534
88536
|
attachToViewport(args) {
|
|
88535
88537
|
super.attachToViewport(args);
|
|
88536
88538
|
this.registerModelSelectorListeners();
|
|
88537
88539
|
this._treeRefs.attachToViewport(args);
|
|
88538
88540
|
}
|
|
88539
|
-
/**
|
|
88541
|
+
/** See [[ViewState.detachFromViewport]]. */
|
|
88540
88542
|
detachFromViewport() {
|
|
88541
88543
|
super.detachFromViewport();
|
|
88542
88544
|
this._treeRefs.detachFromViewport();
|
|
@@ -89648,11 +89650,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
89648
89650
|
/* harmony export */ });
|
|
89649
89651
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
89650
89652
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
89651
|
-
/* harmony import */ var
|
|
89652
|
-
/* harmony import */ var
|
|
89653
|
-
/* harmony import */ var
|
|
89654
|
-
/* harmony import */ var
|
|
89655
|
-
/* harmony import */ var
|
|
89653
|
+
/* harmony import */ var _DecorationsCache__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DecorationsCache */ "../../core/frontend/lib/esm/DecorationsCache.js");
|
|
89654
|
+
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
89655
|
+
/* harmony import */ var _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./render/GraphicBuilder */ "../../core/frontend/lib/esm/render/GraphicBuilder.js");
|
|
89656
|
+
/* harmony import */ var _render_Scene__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./render/Scene */ "../../core/frontend/lib/esm/render/Scene.js");
|
|
89657
|
+
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
89658
|
+
/* harmony import */ var _Viewport__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Viewport */ "../../core/frontend/lib/esm/Viewport.js");
|
|
89656
89659
|
/*---------------------------------------------------------------------------------------------
|
|
89657
89660
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
89658
89661
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -89667,6 +89670,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
89667
89670
|
|
|
89668
89671
|
|
|
89669
89672
|
|
|
89673
|
+
|
|
89670
89674
|
/** Provides context for producing [[RenderGraphic]]s for drawing within a [[Viewport]].
|
|
89671
89675
|
* @public
|
|
89672
89676
|
* @extensions
|
|
@@ -89701,7 +89705,7 @@ class RenderContext {
|
|
|
89701
89705
|
* @returns A builder for creating a [[GraphicType.Scene]] [[RenderGraphic]] for rendering within this context's [[Viewport]].
|
|
89702
89706
|
*/
|
|
89703
89707
|
createSceneGraphicBuilder(transform) {
|
|
89704
|
-
return this._createGraphicBuilder({ type:
|
|
89708
|
+
return this._createGraphicBuilder({ type: _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.Scene, placement: transform });
|
|
89705
89709
|
}
|
|
89706
89710
|
/** Create a graphic from a [[GraphicBranch]]. */
|
|
89707
89711
|
createGraphicBranch(branch, location, opts) {
|
|
@@ -89760,6 +89764,14 @@ class DecorateContext extends RenderContext {
|
|
|
89760
89764
|
this._decorations = decorations;
|
|
89761
89765
|
this._cache = cache;
|
|
89762
89766
|
}
|
|
89767
|
+
/** Create a new DecorateContext.
|
|
89768
|
+
* @param args Describes the inputs to the context.
|
|
89769
|
+
* @note Typically the [[ScreenViewport]] takes care of creating the context for you.
|
|
89770
|
+
* @public
|
|
89771
|
+
*/
|
|
89772
|
+
static create(args) {
|
|
89773
|
+
return new DecorateContext(args.viewport, args.output, args.cache ?? new _DecorationsCache__WEBPACK_IMPORTED_MODULE_2__.DecorationsCache());
|
|
89774
|
+
}
|
|
89763
89775
|
/** Create a builder for creating a [[RenderGraphic]] of the specified type appropriate for rendering within this context's [[Viewport]].
|
|
89764
89776
|
* @param type The type of builder to create.
|
|
89765
89777
|
* @param transform the local-to-world transform in which the builder's geometry is to be defined.
|
|
@@ -89837,27 +89849,27 @@ class DecorateContext extends RenderContext {
|
|
|
89837
89849
|
decoration = graphicOwner;
|
|
89838
89850
|
}
|
|
89839
89851
|
switch (type) {
|
|
89840
|
-
case
|
|
89852
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.Scene:
|
|
89841
89853
|
if (undefined === this._decorations.normal)
|
|
89842
89854
|
this._decorations.normal = [];
|
|
89843
89855
|
this._decorations.normal.push(decoration);
|
|
89844
89856
|
break;
|
|
89845
|
-
case
|
|
89857
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.WorldDecoration:
|
|
89846
89858
|
if (!this._decorations.world)
|
|
89847
89859
|
this._decorations.world = [];
|
|
89848
89860
|
this._decorations.world.push(decoration);
|
|
89849
89861
|
break;
|
|
89850
|
-
case
|
|
89862
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.WorldOverlay:
|
|
89851
89863
|
if (!this._decorations.worldOverlay)
|
|
89852
89864
|
this._decorations.worldOverlay = [];
|
|
89853
89865
|
this._decorations.worldOverlay.push(decoration);
|
|
89854
89866
|
break;
|
|
89855
|
-
case
|
|
89867
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.ViewOverlay:
|
|
89856
89868
|
if (!this._decorations.viewOverlay)
|
|
89857
89869
|
this._decorations.viewOverlay = [];
|
|
89858
89870
|
this._decorations.viewOverlay.push(decoration);
|
|
89859
89871
|
break;
|
|
89860
|
-
case
|
|
89872
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.ViewBackground:
|
|
89861
89873
|
this.setViewBackground(decoration);
|
|
89862
89874
|
break;
|
|
89863
89875
|
}
|
|
@@ -89879,8 +89891,8 @@ class DecorateContext extends RenderContext {
|
|
|
89879
89891
|
if (this._curCacheableDecorator)
|
|
89880
89892
|
this._appendToCache({ type: "html", htmlElement: decoration });
|
|
89881
89893
|
// an element decoration being added might already be on the decorationDiv, just marked for removal
|
|
89882
|
-
if (decoration[
|
|
89883
|
-
decoration[
|
|
89894
|
+
if (decoration[_Viewport__WEBPACK_IMPORTED_MODULE_7__.ELEMENT_MARKED_FOR_REMOVAL]) {
|
|
89895
|
+
decoration[_Viewport__WEBPACK_IMPORTED_MODULE_7__.ELEMENT_MARKED_FOR_REMOVAL] = false;
|
|
89884
89896
|
}
|
|
89885
89897
|
else if (decoration.parentElement !== this.viewport.decorationDiv) {
|
|
89886
89898
|
this.viewport.decorationDiv.appendChild(decoration);
|
|
@@ -89894,7 +89906,7 @@ class DecorateContext extends RenderContext {
|
|
|
89894
89906
|
const color = vp.getContrastToBackgroundColor();
|
|
89895
89907
|
const planarGrid = this.viewport.target.renderSystem.createPlanarGrid(vp.getFrustum(), { origin: gridOrigin, rMatrix, spacing, gridsPerRef, color });
|
|
89896
89908
|
if (planarGrid) {
|
|
89897
|
-
this.addDecoration(
|
|
89909
|
+
this.addDecoration(_render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.WorldDecoration, planarGrid);
|
|
89898
89910
|
}
|
|
89899
89911
|
}
|
|
89900
89912
|
/** Display skyBox graphic that encompasses entire scene and rotates with camera.
|
|
@@ -89926,10 +89938,10 @@ class SceneContext extends RenderContext {
|
|
|
89926
89938
|
super(vp, frustum);
|
|
89927
89939
|
this._missingChildTiles = false;
|
|
89928
89940
|
/** The graphics comprising the scene. */
|
|
89929
|
-
this.scene = new
|
|
89941
|
+
this.scene = new _render_Scene__WEBPACK_IMPORTED_MODULE_5__.Scene();
|
|
89930
89942
|
/** @internal */
|
|
89931
89943
|
this.missingTiles = new Set();
|
|
89932
|
-
this._graphicType =
|
|
89944
|
+
this._graphicType = _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileGraphicType.Scene;
|
|
89933
89945
|
}
|
|
89934
89946
|
/** The viewed volume containing the scene. */
|
|
89935
89947
|
get viewingSpace() {
|
|
@@ -89940,10 +89952,10 @@ class SceneContext extends RenderContext {
|
|
|
89940
89952
|
/** Add the specified graphic to the scene. */
|
|
89941
89953
|
outputGraphic(graphic) {
|
|
89942
89954
|
switch (this._graphicType) {
|
|
89943
|
-
case
|
|
89955
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileGraphicType.BackgroundMap:
|
|
89944
89956
|
this.backgroundGraphics.push(graphic);
|
|
89945
89957
|
break;
|
|
89946
|
-
case
|
|
89958
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileGraphicType.Overlay:
|
|
89947
89959
|
this.overlayGraphics.push(graphic);
|
|
89948
89960
|
break;
|
|
89949
89961
|
default:
|
|
@@ -89954,16 +89966,16 @@ class SceneContext extends RenderContext {
|
|
|
89954
89966
|
/** Indicate that the specified tile is desired for the scene but is not yet ready. A request to load its contents will later be enqueued. */
|
|
89955
89967
|
insertMissingTile(tile) {
|
|
89956
89968
|
switch (tile.loadStatus) {
|
|
89957
|
-
case
|
|
89958
|
-
case
|
|
89959
|
-
case
|
|
89969
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileLoadStatus.NotLoaded:
|
|
89970
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileLoadStatus.Queued:
|
|
89971
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileLoadStatus.Loading:
|
|
89960
89972
|
this.missingTiles.add(tile);
|
|
89961
89973
|
break;
|
|
89962
89974
|
}
|
|
89963
89975
|
}
|
|
89964
89976
|
/** @internal */
|
|
89965
89977
|
requestMissingTiles() {
|
|
89966
|
-
|
|
89978
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.tileAdmin.requestTiles(this.viewport, this.missingTiles);
|
|
89967
89979
|
}
|
|
89968
89980
|
/** @internal */
|
|
89969
89981
|
addPlanarClassifier(classifiedModelId, classifierTree, planarClipMask) {
|
|
@@ -90938,7 +90950,7 @@ class ViewManager {
|
|
|
90938
90950
|
vp.invalidateDecorations();
|
|
90939
90951
|
}
|
|
90940
90952
|
/** Force each registered [[Viewport]] to regenerate its [[FeatureSymbology.Overrides]] on the next frame.
|
|
90941
|
-
*
|
|
90953
|
+
* This is rarely needed - viewports keep track of their own states to detect when the overrides need to be recreated.
|
|
90942
90954
|
*/
|
|
90943
90955
|
invalidateSymbologyOverridesAllViews() {
|
|
90944
90956
|
for (const vp of this)
|
|
@@ -90960,7 +90972,9 @@ class ViewManager {
|
|
|
90960
90972
|
for (const vp of this)
|
|
90961
90973
|
vp.setValidScene();
|
|
90962
90974
|
}
|
|
90963
|
-
/**
|
|
90975
|
+
/** Requests that [[Viewport.createScene]] be invoked for every viewport on the next frame.
|
|
90976
|
+
* This is rarely useful - viewports keep track of their own states to detect when the scene needs to be recreated.
|
|
90977
|
+
*/
|
|
90964
90978
|
invalidateScenes() {
|
|
90965
90979
|
this._invalidateScenes = true;
|
|
90966
90980
|
_IModelApp__WEBPACK_IMPORTED_MODULE_1__.IModelApp.requestNextAnimation();
|
|
@@ -92255,11 +92269,11 @@ class ViewState extends _EntityState__WEBPACK_IMPORTED_MODULE_5__.ElementState {
|
|
|
92255
92269
|
return transform;
|
|
92256
92270
|
}
|
|
92257
92271
|
/** Invoked when this view becomes the view displayed by the specified [[Viewport]].
|
|
92258
|
-
* A ViewState can be attached to at most **one** Viewport.
|
|
92272
|
+
* A ViewState can be attached to at most **one** Viewport at any given time.
|
|
92273
|
+
* This method is invoked automatically by the viewport - there is generally no reason for applications to invoke it directly.
|
|
92259
92274
|
* @note If you override this method you **must** call `super.attachToViewport`.
|
|
92260
92275
|
* @throws Error if the view is already attached to any Viewport.
|
|
92261
92276
|
* @see [[detachFromViewport]] from the inverse operation.
|
|
92262
|
-
* @internal
|
|
92263
92277
|
*/
|
|
92264
92278
|
attachToViewport(_args) {
|
|
92265
92279
|
if (this.isAttachedToViewport)
|
|
@@ -92274,9 +92288,9 @@ class ViewState extends _EntityState__WEBPACK_IMPORTED_MODULE_5__.ElementState {
|
|
|
92274
92288
|
this._unregisterCategorySelectorListeners.push(cats.onCleared.addListener(event));
|
|
92275
92289
|
}
|
|
92276
92290
|
/** Invoked when this view, previously attached to the specified [[Viewport]] via [[attachToViewport]], is no longer the view displayed by that Viewport.
|
|
92291
|
+
* This method is invoked automatically by the viewport - there is generally no reason for applications to invoke it directly.
|
|
92277
92292
|
* @note If you override this method you **must** call `super.detachFromViewport`.
|
|
92278
92293
|
* @throws Error if the view is not attached to any Viewport.
|
|
92279
|
-
* @internal
|
|
92280
92294
|
*/
|
|
92281
92295
|
detachFromViewport() {
|
|
92282
92296
|
if (!this.isAttachedToViewport)
|
|
@@ -92910,7 +92924,9 @@ class ViewState3d extends ViewState {
|
|
|
92910
92924
|
setFocusDistance(dist) { this.camera.setFocusDistance(dist); }
|
|
92911
92925
|
/** Get the distance from the eyePoint to the focus plane for this view. */
|
|
92912
92926
|
getFocusDistance() { return this.camera.focusDist; }
|
|
92913
|
-
/**
|
|
92927
|
+
/** Obtain an "eye" point for this view. If the camera is on, this simply returns [[Camera.getEyePoint]].
|
|
92928
|
+
* Otherwise, a pseudo-eye-point is computed from the view direction and a lens angle of PI/2.
|
|
92929
|
+
*/
|
|
92914
92930
|
getEyeOrOrthographicViewPoint() {
|
|
92915
92931
|
if (this.isCameraOn)
|
|
92916
92932
|
return this.camera.getEyePoint();
|
|
@@ -93039,7 +93055,7 @@ class ViewState3d extends ViewState {
|
|
|
93039
93055
|
frustum.multiply(transitionTransform);
|
|
93040
93056
|
return this.setupFromFrustum(frustum);
|
|
93041
93057
|
}
|
|
93042
|
-
/**
|
|
93058
|
+
/** See [[ViewState.attachToViewport]]. */
|
|
93043
93059
|
attachToViewport(args) {
|
|
93044
93060
|
super.attachToViewport(args);
|
|
93045
93061
|
const removeListener = this.displayStyle.settings.onEnvironmentChanged.addListener((env) => {
|
|
@@ -93047,6 +93063,7 @@ class ViewState3d extends ViewState {
|
|
|
93047
93063
|
});
|
|
93048
93064
|
this._environmentDecorations = new _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_16__.EnvironmentDecorations(this, () => args.invalidateDecorations(), () => removeListener());
|
|
93049
93065
|
}
|
|
93066
|
+
/** See [[ViewState.detachFromViewport]]. */
|
|
93050
93067
|
detachFromViewport() {
|
|
93051
93068
|
super.detachFromViewport();
|
|
93052
93069
|
this._environmentDecorations = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._environmentDecorations);
|
|
@@ -93818,7 +93835,8 @@ const ELEMENT_MARKED_FOR_REMOVAL = Symbol.for("@bentley/imodeljs/Viewport/__elem
|
|
|
93818
93835
|
*
|
|
93819
93836
|
* The [[Viewport.onDisplayStyleChanged]] event will be invoked exactly once, when the second frame is rendered.
|
|
93820
93837
|
*
|
|
93821
|
-
* @see [[
|
|
93838
|
+
* @see [[ScreenViewport]] for a viewport that can render onto the screen.
|
|
93839
|
+
* @see [[OffScreenViewport]] for a viewport that can render into an off-screen buffer.
|
|
93822
93840
|
* @public
|
|
93823
93841
|
* @extensions
|
|
93824
93842
|
*/
|
|
@@ -94377,7 +94395,7 @@ class Viewport {
|
|
|
94377
94395
|
this.invalidateRenderPlan();
|
|
94378
94396
|
}
|
|
94379
94397
|
}
|
|
94380
|
-
/**
|
|
94398
|
+
/** Obtain a tooltip from the map layer or reality model, if any, identified by the specified [[HitDetail]]. */
|
|
94381
94399
|
async getToolTip(hit) {
|
|
94382
94400
|
const promises = new Array();
|
|
94383
94401
|
if (this.displayStyle) {
|
|
@@ -94414,6 +94432,11 @@ class Viewport {
|
|
|
94414
94432
|
}
|
|
94415
94433
|
return featureInfo;
|
|
94416
94434
|
}
|
|
94435
|
+
/** A function invoked once, after the constructor, to initialize the viewport's state.
|
|
94436
|
+
* Subclasses can use this perform additional initialization, as the viewport's constructor is not directly invokable.
|
|
94437
|
+
*/
|
|
94438
|
+
initialize() {
|
|
94439
|
+
}
|
|
94417
94440
|
/** @internal */
|
|
94418
94441
|
constructor(target) {
|
|
94419
94442
|
/** Event called whenever this viewport is synchronized with its [[ViewState]].
|
|
@@ -94474,7 +94497,9 @@ class Viewport {
|
|
|
94474
94497
|
this._doContinuousRendering = false;
|
|
94475
94498
|
/** @internal */
|
|
94476
94499
|
this._inViewChangedEvent = false;
|
|
94477
|
-
/**
|
|
94500
|
+
/** If false, indicates that [[Decorations]] should be recreated when rendering the next frame.
|
|
94501
|
+
* @note prefer to invoke [[invalidateDecorations]] rather than directly assigning to this property.
|
|
94502
|
+
*/
|
|
94478
94503
|
this._decorationsValid = false;
|
|
94479
94504
|
/** @internal */
|
|
94480
94505
|
this._sceneValid = false;
|
|
@@ -94863,7 +94888,10 @@ class Viewport {
|
|
|
94863
94888
|
this._changeFlags.setFeatureOverrideProvider();
|
|
94864
94889
|
this.maybeInvalidateScene();
|
|
94865
94890
|
}
|
|
94866
|
-
/**
|
|
94891
|
+
/** Notifies this viewport that a change in application state requires its [[FeatureSymbology.Overrides]] to be recomputed.
|
|
94892
|
+
* @note The viewport monitors various events to automatically detect when the overrides should be recomputed. This method
|
|
94893
|
+
* is only needed for changes that are not observable by the viewport itself.
|
|
94894
|
+
*/
|
|
94867
94895
|
invalidateSymbologyOverrides() {
|
|
94868
94896
|
this.setFeatureOverrideProviderChanged();
|
|
94869
94897
|
}
|
|
@@ -94883,7 +94911,7 @@ class Viewport {
|
|
|
94883
94911
|
for (const provider of this._tiledGraphicsProviders)
|
|
94884
94912
|
provider.forEachTileTreeRef(this, (ref) => func(ref));
|
|
94885
94913
|
}
|
|
94886
|
-
/**
|
|
94914
|
+
/** Apply a function to every tile tree reference associated with the map layers displayed by this viewport. */
|
|
94887
94915
|
forEachMapTreeRef(func) {
|
|
94888
94916
|
if (this._mapTiledGraphicsProvider)
|
|
94889
94917
|
this._mapTiledGraphicsProvider.forEachTileTreeRef(this, (ref) => func(ref));
|
|
@@ -95749,7 +95777,9 @@ class Viewport {
|
|
|
95749
95777
|
if (requestNextAnimation || undefined !== this._animator || this.continuousRendering)
|
|
95750
95778
|
_IModelApp__WEBPACK_IMPORTED_MODULE_10__.IModelApp.requestNextAnimation();
|
|
95751
95779
|
}
|
|
95752
|
-
/**
|
|
95780
|
+
/** Populate a set of decoration graphics to be displayed in this viewport.
|
|
95781
|
+
* This base implementation produces no graphics.
|
|
95782
|
+
*/
|
|
95753
95783
|
addDecorations(_decorations) { }
|
|
95754
95784
|
/** Read selected data about each pixel within a rectangular region of this Viewport.
|
|
95755
95785
|
* @param rect The area of the viewport's contents to read. The origin specifies the upper-left corner. Must lie entirely within the viewport's dimensions. This input viewport is specified using CSS pixels not device pixels.
|
|
@@ -96020,6 +96050,9 @@ class Viewport {
|
|
|
96020
96050
|
onRequestStateChanged() {
|
|
96021
96051
|
this.invalidateScene();
|
|
96022
96052
|
}
|
|
96053
|
+
/** @internal See [[OffScreenViewport.drawingToSheetTransform */
|
|
96054
|
+
get drawingToSheetTransform() { return undefined; }
|
|
96055
|
+
set drawingToSheetTransform(_) { (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(false, "drawingToSheetTransform is only relevant for OffScreenViewport"); }
|
|
96023
96056
|
}
|
|
96024
96057
|
/** Don't allow entries in the view undo buffer unless they're separated by more than this amount of time. */
|
|
96025
96058
|
Viewport.undoDelay = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(.5);
|
|
@@ -96049,6 +96082,8 @@ Viewport.undoDelay = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration
|
|
|
96049
96082
|
* 5a. If it is currently registered with the ViewManager, it is dropped and disposed of via ViewManager.dropViewport()
|
|
96050
96083
|
* 5b. Otherwise, it is disposed of by invoking its dispose() method directly.
|
|
96051
96084
|
* ```
|
|
96085
|
+
*
|
|
96086
|
+
* @see [[ScreenViewport.create]] to create a ScreenViewport.
|
|
96052
96087
|
* @public
|
|
96053
96088
|
* @extensions
|
|
96054
96089
|
*/
|
|
@@ -96066,6 +96101,7 @@ class ScreenViewport extends Viewport {
|
|
|
96066
96101
|
throw new Error("viewport cannot be created from a div with zero width or height");
|
|
96067
96102
|
const canvas = document.createElement("canvas");
|
|
96068
96103
|
const vp = new this(canvas, parentDiv, _IModelApp__WEBPACK_IMPORTED_MODULE_10__.IModelApp.renderSystem.createTarget(canvas));
|
|
96104
|
+
vp.initialize();
|
|
96069
96105
|
vp.changeView(view);
|
|
96070
96106
|
return vp;
|
|
96071
96107
|
}
|
|
@@ -96122,7 +96158,12 @@ class ScreenViewport extends Viewport {
|
|
|
96122
96158
|
element.style.zIndex = zIndex.toString();
|
|
96123
96159
|
parent.appendChild(element);
|
|
96124
96160
|
}
|
|
96125
|
-
/**
|
|
96161
|
+
/** Add a new `HTMLDivElement` as a child of this viewport's div.
|
|
96162
|
+
* @param className The CSS class name to apply to the div.
|
|
96163
|
+
* @param overflowHidden Whether to set `div.style.overflow` to "hidden" instead of "visible".
|
|
96164
|
+
* @param z The Z index of the div relative to its sibling `HTMLElement`s.
|
|
96165
|
+
* @returns the new div.
|
|
96166
|
+
*/
|
|
96126
96167
|
addNewDiv(className, overflowHidden, z) {
|
|
96127
96168
|
const div = document.createElement("div");
|
|
96128
96169
|
div.className = className;
|
|
@@ -96351,12 +96392,14 @@ class ScreenViewport extends Viewport {
|
|
|
96351
96392
|
pickCanvasDecoration(pt) { return this.target.pickOverlayDecoration(pt); }
|
|
96352
96393
|
/** Get the DOMRect of the canvas for this Viewport. */
|
|
96353
96394
|
getClientRect() { return this.canvas.getBoundingClientRect(); }
|
|
96354
|
-
/** The ViewRect for this ScreenViewport. Left and top will be 0, right will be the width, and bottom will be the height.
|
|
96395
|
+
/** The ViewRect for this ScreenViewport. Left and top will be 0, right will be the width, and bottom will be the height.
|
|
96396
|
+
* @note Do not modify the ViewRect's properties.
|
|
96397
|
+
*/
|
|
96355
96398
|
get viewRect() {
|
|
96356
96399
|
this._viewRange.init(0, 0, this.canvas.clientWidth, this.canvas.clientHeight);
|
|
96357
96400
|
return this._viewRange;
|
|
96358
96401
|
}
|
|
96359
|
-
/**
|
|
96402
|
+
/** Populate a set of decoration graphics to be displayed in this viewport. */
|
|
96360
96403
|
addDecorations(decorations) {
|
|
96361
96404
|
// SEE: decorationDiv doc comment
|
|
96362
96405
|
// eslint-disable-next-line deprecation/deprecation
|
|
@@ -96415,7 +96458,9 @@ class ScreenViewport extends Viewport {
|
|
|
96415
96458
|
if (doAnimate)
|
|
96416
96459
|
this.animateFrustumChange(opts);
|
|
96417
96460
|
}
|
|
96418
|
-
/**
|
|
96461
|
+
/** A point in world coordinates describing an appropriate default point for a [[ViewTool]] when no more specific point is provided by the user.
|
|
96462
|
+
* This point is generally managed and used by [[ViewManip]].
|
|
96463
|
+
*/
|
|
96419
96464
|
get viewCmdTargetCenter() { return this._viewCmdTargetCenter; }
|
|
96420
96465
|
set viewCmdTargetCenter(center) { this._viewCmdTargetCenter = center ? center.clone() : undefined; }
|
|
96421
96466
|
/** True if an undoable viewing operation exists on the stack */
|
|
@@ -96673,15 +96718,23 @@ function _clear2dCanvas(canvas) {
|
|
|
96673
96718
|
* the render loop. Its dimensions are specified directly instead of being derived from an HTMLCanvasElement, and its renderFrame function must be manually invoked.
|
|
96674
96719
|
* Offscreen viewports can be useful for, e.g., producing an image from the contents of a view (see [[Viewport.readImageBuffer]] and [[Viewport.readImageToCanvas]])
|
|
96675
96720
|
* without drawing to the screen.
|
|
96721
|
+
* @see [[OffScreenViewport.create]] to create an off-screen viewport.
|
|
96676
96722
|
* @public
|
|
96677
96723
|
* @extensions
|
|
96678
96724
|
*/
|
|
96679
96725
|
class OffScreenViewport extends Viewport {
|
|
96680
|
-
|
|
96681
|
-
|
|
96726
|
+
/** @internal */
|
|
96727
|
+
constructor(target) {
|
|
96728
|
+
super(target);
|
|
96682
96729
|
this._isAspectRatioLocked = false;
|
|
96683
96730
|
}
|
|
96684
|
-
/**
|
|
96731
|
+
/** A bit of a hack to work around our ill-advised decision to always expect a RenderClipVolume to be defined in world coordinates.
|
|
96732
|
+
* When we attach a section drawing to a sheet view, and the section drawing has a spatial view attached to *it*, the spatial view's clip
|
|
96733
|
+
* is transformed into drawing space - but when we display it we need to transform it into world (sheet) coordinates.
|
|
96734
|
+
* Fixing the actual problem (clips should always be defined in the coordinate space of the graphic branch containing them) would be quite error-prone
|
|
96735
|
+
* and likely to break existing code -- so instead the SheetViewState specifies this transform to be consumed by DrawingViewState.attachToViewport.
|
|
96736
|
+
* @internal
|
|
96737
|
+
*/
|
|
96685
96738
|
get drawingToSheetTransform() {
|
|
96686
96739
|
return this._drawingToSheetTransform;
|
|
96687
96740
|
}
|
|
@@ -96699,13 +96752,16 @@ class OffScreenViewport extends Viewport {
|
|
|
96699
96752
|
vp._isAspectRatioLocked = lockAspectRatio;
|
|
96700
96753
|
vp.changeView(view);
|
|
96701
96754
|
vp._decorationsValid = true;
|
|
96755
|
+
vp.initialize();
|
|
96702
96756
|
return vp;
|
|
96703
96757
|
}
|
|
96704
96758
|
/** @internal */
|
|
96705
96759
|
get isAspectRatioLocked() {
|
|
96706
96760
|
return this._isAspectRatioLocked;
|
|
96707
96761
|
}
|
|
96708
|
-
/**
|
|
96762
|
+
/** Get the rectangle of this Viewport in [[CoordSystem.View]] coordinates.
|
|
96763
|
+
* @note Do not modify the ViewRect's properties.
|
|
96764
|
+
*/
|
|
96709
96765
|
get viewRect() {
|
|
96710
96766
|
return this.target.viewRect;
|
|
96711
96767
|
}
|
|
@@ -100815,42 +100871,42 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100815
100871
|
/* harmony export */ ACSDisplayOptions: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSDisplayOptions),
|
|
100816
100872
|
/* harmony export */ ACSType: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSType),
|
|
100817
100873
|
/* harmony export */ AccuDraw: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDraw),
|
|
100818
|
-
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */
|
|
100874
|
+
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawChangeModeTool),
|
|
100819
100875
|
/* harmony export */ AccuDrawFlags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawFlags),
|
|
100820
100876
|
/* harmony export */ AccuDrawHintBuilder: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawHintBuilder),
|
|
100821
|
-
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */
|
|
100822
|
-
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */
|
|
100823
|
-
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */
|
|
100824
|
-
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */
|
|
100825
|
-
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */
|
|
100826
|
-
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */
|
|
100827
|
-
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */
|
|
100828
|
-
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */
|
|
100829
|
-
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */
|
|
100830
|
-
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */
|
|
100831
|
-
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */
|
|
100832
|
-
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */
|
|
100833
|
-
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */
|
|
100834
|
-
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */
|
|
100835
|
-
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */
|
|
100877
|
+
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateAxesTool),
|
|
100878
|
+
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateCycleTool),
|
|
100879
|
+
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateElementTool),
|
|
100880
|
+
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateFrontTool),
|
|
100881
|
+
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateSideTool),
|
|
100882
|
+
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateTopTool),
|
|
100883
|
+
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateViewTool),
|
|
100884
|
+
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockAngleTool),
|
|
100885
|
+
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockDistanceTool),
|
|
100886
|
+
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockSmartTool),
|
|
100887
|
+
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockXTool),
|
|
100888
|
+
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockYTool),
|
|
100889
|
+
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockZTool),
|
|
100890
|
+
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetOriginTool),
|
|
100891
|
+
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawShortcuts),
|
|
100836
100892
|
/* harmony export */ AccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.AccuSnap),
|
|
100837
100893
|
/* harmony export */ AccudrawData: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccudrawData),
|
|
100838
100894
|
/* harmony export */ ActivityMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.ActivityMessageDetails),
|
|
100839
100895
|
/* harmony export */ ActivityMessageEndReason: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.ActivityMessageEndReason),
|
|
100840
100896
|
/* harmony export */ AlternateUnitLabelsRegistry: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.AlternateUnitLabelsRegistry),
|
|
100841
100897
|
/* harmony export */ AngleDescription: () => (/* reexport safe */ _properties_AngleDescription__WEBPACK_IMPORTED_MODULE_90__.AngleDescription),
|
|
100842
|
-
/* harmony export */ AnimatedTreeReference: () => (/* reexport safe */
|
|
100843
|
-
/* harmony export */ AnimationBranchStates: () => (/* reexport safe */
|
|
100898
|
+
/* harmony export */ AnimatedTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.AnimatedTreeReference),
|
|
100899
|
+
/* harmony export */ AnimationBranchStates: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_103__.AnimationBranchStates),
|
|
100844
100900
|
/* harmony export */ AnimationNodeId: () => (/* reexport safe */ _common_render_AnimationNodeId__WEBPACK_IMPORTED_MODULE_17__.AnimationNodeId),
|
|
100845
|
-
/* harmony export */ ArcGISIdentifyRequestUrl: () => (/* reexport safe */
|
|
100846
|
-
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */
|
|
100847
|
-
/* harmony export */ ArcGISMapLayerImageryProvider: () => (/* reexport safe */
|
|
100848
|
-
/* harmony export */ ArcGISTileMap: () => (/* reexport safe */
|
|
100849
|
-
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */
|
|
100850
|
-
/* harmony export */ ArcGisGeometryBaseRenderer: () => (/* reexport safe */
|
|
100851
|
-
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */
|
|
100852
|
-
/* harmony export */ ArcGisGraphicsRenderer: () => (/* reexport safe */
|
|
100853
|
-
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */
|
|
100901
|
+
/* harmony export */ ArcGISIdentifyRequestUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGISIdentifyRequestUrl),
|
|
100902
|
+
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGISImageryProvider),
|
|
100903
|
+
/* harmony export */ ArcGISMapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGISMapLayerImageryProvider),
|
|
100904
|
+
/* harmony export */ ArcGISTileMap: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGISTileMap),
|
|
100905
|
+
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisErrorCode),
|
|
100906
|
+
/* harmony export */ ArcGisGeometryBaseRenderer: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisGeometryBaseRenderer),
|
|
100907
|
+
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisGeometryReaderJSON),
|
|
100908
|
+
/* harmony export */ ArcGisGraphicsRenderer: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisGraphicsRenderer),
|
|
100909
|
+
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisUtilities),
|
|
100854
100910
|
/* harmony export */ AuxChannel: () => (/* reexport safe */ _common_render_primitives_AuxChannelTable__WEBPACK_IMPORTED_MODULE_19__.AuxChannel),
|
|
100855
100911
|
/* harmony export */ AuxChannelTable: () => (/* reexport safe */ _common_render_primitives_AuxChannelTable__WEBPACK_IMPORTED_MODULE_19__.AuxChannelTable),
|
|
100856
100912
|
/* harmony export */ AuxCoordSystem2dState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem2dState),
|
|
@@ -100859,113 +100915,121 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100859
100915
|
/* harmony export */ AuxCoordSystemState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemState),
|
|
100860
100916
|
/* harmony export */ AuxDisplacementChannel: () => (/* reexport safe */ _common_render_primitives_AuxChannelTable__WEBPACK_IMPORTED_MODULE_19__.AuxDisplacementChannel),
|
|
100861
100917
|
/* harmony export */ AuxParamChannel: () => (/* reexport safe */ _common_render_primitives_AuxChannelTable__WEBPACK_IMPORTED_MODULE_19__.AuxParamChannel),
|
|
100862
|
-
/* harmony export */ AzureMapsLayerImageryProvider: () => (/* reexport safe */
|
|
100863
|
-
/* harmony export */ B3dmReader: () => (/* reexport safe */
|
|
100864
|
-
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */
|
|
100918
|
+
/* harmony export */ AzureMapsLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.AzureMapsLayerImageryProvider),
|
|
100919
|
+
/* harmony export */ B3dmReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.B3dmReader),
|
|
100920
|
+
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_157__.BackgroundMapGeometry),
|
|
100865
100921
|
/* harmony export */ BaseUnitFormattingSettingsProvider: () => (/* reexport safe */ _quantity_formatting_BaseUnitFormattingSettingsProvider__WEBPACK_IMPORTED_MODULE_94__.BaseUnitFormattingSettingsProvider),
|
|
100866
|
-
/* harmony export */ BatchedTileIdMap: () => (/* reexport safe */
|
|
100867
|
-
/* harmony export */ BeButton: () => (/* reexport safe */
|
|
100868
|
-
/* harmony export */ BeButtonEvent: () => (/* reexport safe */
|
|
100869
|
-
/* harmony export */ BeButtonState: () => (/* reexport safe */
|
|
100870
|
-
/* harmony export */ BeModifierKeys: () => (/* reexport safe */
|
|
100871
|
-
/* harmony export */ BeTouchEvent: () => (/* reexport safe */
|
|
100872
|
-
/* harmony export */ BeWheelEvent: () => (/* reexport safe */
|
|
100873
|
-
/* harmony export */ BingElevationProvider: () => (/* reexport safe */
|
|
100922
|
+
/* harmony export */ BatchedTileIdMap: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.BatchedTileIdMap),
|
|
100923
|
+
/* harmony export */ BeButton: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeButton),
|
|
100924
|
+
/* harmony export */ BeButtonEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeButtonEvent),
|
|
100925
|
+
/* harmony export */ BeButtonState: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeButtonState),
|
|
100926
|
+
/* harmony export */ BeModifierKeys: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeModifierKeys),
|
|
100927
|
+
/* harmony export */ BeTouchEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeTouchEvent),
|
|
100928
|
+
/* harmony export */ BeWheelEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeWheelEvent),
|
|
100929
|
+
/* harmony export */ BingElevationProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.BingElevationProvider),
|
|
100874
100930
|
/* harmony export */ BingLocationProvider: () => (/* reexport safe */ _BingLocation__WEBPACK_IMPORTED_MODULE_3__.BingLocationProvider),
|
|
100875
|
-
/* harmony export */ BingMapsImageryLayerProvider: () => (/* reexport safe */
|
|
100931
|
+
/* harmony export */ BingMapsImageryLayerProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.BingMapsImageryLayerProvider),
|
|
100876
100932
|
/* harmony export */ BlankConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_54__.BlankConnection),
|
|
100877
100933
|
/* harmony export */ BriefcaseConnection: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseConnection),
|
|
100878
100934
|
/* harmony export */ BriefcaseEditorToolSettings: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseEditorToolSettings),
|
|
100879
100935
|
/* harmony export */ BriefcaseNotificationHandler: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_5__.BriefcaseNotificationHandler),
|
|
100880
100936
|
/* harmony export */ BriefcaseTxns: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_5__.BriefcaseTxns),
|
|
100881
100937
|
/* harmony export */ CategorySelectorState: () => (/* reexport safe */ _CategorySelectorState__WEBPACK_IMPORTED_MODULE_6__.CategorySelectorState),
|
|
100882
|
-
/* harmony export */ CesiumIonAssetProvider: () => (/* reexport safe */
|
|
100938
|
+
/* harmony export */ CesiumIonAssetProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.CesiumIonAssetProvider),
|
|
100883
100939
|
/* harmony export */ ChangeFlag: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_7__.ChangeFlag),
|
|
100884
100940
|
/* harmony export */ ChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_7__.ChangeFlags),
|
|
100885
100941
|
/* harmony export */ CheckpointConnection: () => (/* reexport safe */ _CheckpointConnection__WEBPACK_IMPORTED_MODULE_8__.CheckpointConnection),
|
|
100886
|
-
/* harmony export */ ClipEventType: () => (/* reexport safe */
|
|
100942
|
+
/* harmony export */ ClipEventType: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ClipEventType),
|
|
100887
100943
|
/* harmony export */ Cluster: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_59__.Cluster),
|
|
100944
|
+
/* harmony export */ ColorMap: () => (/* reexport safe */ _render_primitives_ColorMap__WEBPACK_IMPORTED_MODULE_122__.ColorMap),
|
|
100888
100945
|
/* harmony export */ CompassMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CompassMode),
|
|
100889
100946
|
/* harmony export */ ContextMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextMode),
|
|
100890
100947
|
/* harmony export */ ContextRealityModelState: () => (/* reexport safe */ _ContextRealityModelState__WEBPACK_IMPORTED_MODULE_33__.ContextRealityModelState),
|
|
100891
100948
|
/* harmony export */ ContextRotationId: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextRotationId),
|
|
100892
|
-
/* harmony export */ ContextShareProvider: () => (/* reexport safe */
|
|
100893
|
-
/* harmony export */ CoordSource: () => (/* reexport safe */
|
|
100949
|
+
/* harmony export */ ContextShareProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ContextShareProvider),
|
|
100950
|
+
/* harmony export */ CoordSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.CoordSource),
|
|
100894
100951
|
/* harmony export */ CoordSystem: () => (/* reexport safe */ _CoordSystem__WEBPACK_IMPORTED_MODULE_34__.CoordSystem),
|
|
100895
100952
|
/* harmony export */ CoordinateConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_49__.CoordinateConverter),
|
|
100896
|
-
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */
|
|
100897
|
-
/* harmony export */ CoreTools: () => (/* reexport safe */
|
|
100898
|
-
/* harmony export */ CurrentInputState: () => (/* reexport safe */
|
|
100953
|
+
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.CoordinateLockOverrides),
|
|
100954
|
+
/* harmony export */ CoreTools: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.CoreTools),
|
|
100955
|
+
/* harmony export */ CurrentInputState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.CurrentInputState),
|
|
100899
100956
|
/* harmony export */ CurrentState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CurrentState),
|
|
100900
100957
|
/* harmony export */ DebugShaderFile: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.DebugShaderFile),
|
|
100901
100958
|
/* harmony export */ DecorateContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_78__.DecorateContext),
|
|
100902
|
-
/* harmony export */ Decorations: () => (/* reexport safe */
|
|
100959
|
+
/* harmony export */ Decorations: () => (/* reexport safe */ _render_Decorations__WEBPACK_IMPORTED_MODULE_100__.Decorations),
|
|
100903
100960
|
/* harmony export */ DecorationsCache: () => (/* reexport safe */ _DecorationsCache__WEBPACK_IMPORTED_MODULE_35__.DecorationsCache),
|
|
100904
|
-
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */
|
|
100905
|
-
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */
|
|
100906
|
-
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */
|
|
100961
|
+
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.DefaultViewTouchTool),
|
|
100962
|
+
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.DefineACSByElementTool),
|
|
100963
|
+
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.DefineACSByPointsTool),
|
|
100907
100964
|
/* harmony export */ DepthPointSource: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.DepthPointSource),
|
|
100908
100965
|
/* harmony export */ DevTools: () => (/* reexport safe */ _DevTools__WEBPACK_IMPORTED_MODULE_36__.DevTools),
|
|
100909
|
-
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */
|
|
100966
|
+
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.DisclosedTileTreeSet),
|
|
100910
100967
|
/* harmony export */ DisplayParams: () => (/* reexport safe */ _common_render_primitives_DisplayParams__WEBPACK_IMPORTED_MODULE_20__.DisplayParams),
|
|
100911
100968
|
/* harmony export */ DisplayStyle2dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_37__.DisplayStyle2dState),
|
|
100912
100969
|
/* harmony export */ DisplayStyle3dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_37__.DisplayStyle3dState),
|
|
100913
100970
|
/* harmony export */ DisplayStyleState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_37__.DisplayStyleState),
|
|
100914
100971
|
/* harmony export */ DrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.DrawingModelState),
|
|
100915
100972
|
/* harmony export */ DrawingViewState: () => (/* reexport safe */ _DrawingViewState__WEBPACK_IMPORTED_MODULE_38__.DrawingViewState),
|
|
100916
|
-
/* harmony export */ DynamicIModelTile: () => (/* reexport safe */
|
|
100973
|
+
/* harmony export */ DynamicIModelTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.DynamicIModelTile),
|
|
100917
100974
|
/* harmony export */ DynamicsContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_78__.DynamicsContext),
|
|
100918
100975
|
/* harmony export */ ELEMENT_MARKED_FOR_REMOVAL: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.ELEMENT_MARKED_FOR_REMOVAL),
|
|
100919
|
-
/* harmony export */ EditManipulator: () => (/* reexport safe */
|
|
100920
|
-
/* harmony export */ ElementAgenda: () => (/* reexport safe */
|
|
100976
|
+
/* harmony export */ EditManipulator: () => (/* reexport safe */ _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_145__.EditManipulator),
|
|
100977
|
+
/* harmony export */ ElementAgenda: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_146__.ElementAgenda),
|
|
100921
100978
|
/* harmony export */ ElementLocateManager: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.ElementLocateManager),
|
|
100922
100979
|
/* harmony export */ ElementPicker: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.ElementPicker),
|
|
100923
|
-
/* harmony export */ ElementSetTool: () => (/* reexport safe */
|
|
100980
|
+
/* harmony export */ ElementSetTool: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_146__.ElementSetTool),
|
|
100924
100981
|
/* harmony export */ ElementState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_41__.ElementState),
|
|
100925
|
-
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */
|
|
100982
|
+
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.EllipsoidTerrainProvider),
|
|
100926
100983
|
/* harmony export */ EmphasizeElements: () => (/* reexport safe */ _EmphasizeElements__WEBPACK_IMPORTED_MODULE_40__.EmphasizeElements),
|
|
100927
100984
|
/* harmony export */ EngineeringLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_92__.EngineeringLengthDescription),
|
|
100928
100985
|
/* harmony export */ EntityState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_41__.EntityState),
|
|
100929
100986
|
/* harmony export */ EnvironmentDecorations: () => (/* reexport safe */ _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_42__.EnvironmentDecorations),
|
|
100930
|
-
/* harmony export */ EventController: () => (/* reexport safe */
|
|
100931
|
-
/* harmony export */ EventHandled: () => (/* reexport safe */
|
|
100932
|
-
/* harmony export */ FeatureSymbology: () => (/* reexport safe */
|
|
100933
|
-
/* harmony export */
|
|
100987
|
+
/* harmony export */ EventController: () => (/* reexport safe */ _tools_EventController__WEBPACK_IMPORTED_MODULE_147__.EventController),
|
|
100988
|
+
/* harmony export */ EventHandled: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.EventHandled),
|
|
100989
|
+
/* harmony export */ FeatureSymbology: () => (/* reexport safe */ _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_101__.FeatureSymbology),
|
|
100990
|
+
/* harmony export */ FetchCloudStorage: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.FetchCloudStorage),
|
|
100991
|
+
/* harmony export */ FitViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.FitViewTool),
|
|
100934
100992
|
/* harmony export */ Flags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.Flags),
|
|
100935
100993
|
/* harmony export */ FlashMode: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_44__.FlashMode),
|
|
100936
100994
|
/* harmony export */ FlashSettings: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_44__.FlashSettings),
|
|
100937
|
-
/* harmony export */ FlyViewTool: () => (/* reexport safe */
|
|
100995
|
+
/* harmony export */ FlyViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.FlyViewTool),
|
|
100938
100996
|
/* harmony export */ FormattedQuantityDescription: () => (/* reexport safe */ _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_91__.FormattedQuantityDescription),
|
|
100939
|
-
/* harmony export */ FrameStatsCollector: () => (/* reexport safe */
|
|
100997
|
+
/* harmony export */ FrameStatsCollector: () => (/* reexport safe */ _render_FrameStats__WEBPACK_IMPORTED_MODULE_102__.FrameStatsCollector),
|
|
100940
100998
|
/* harmony export */ FrontendLoggerCategory: () => (/* reexport safe */ _common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_9__.FrontendLoggerCategory),
|
|
100941
100999
|
/* harmony export */ Frustum2d: () => (/* reexport safe */ _Frustum2d__WEBPACK_IMPORTED_MODULE_46__.Frustum2d),
|
|
100942
101000
|
/* harmony export */ FrustumAnimator: () => (/* reexport safe */ _FrustumAnimator__WEBPACK_IMPORTED_MODULE_47__.FrustumAnimator),
|
|
100943
101001
|
/* harmony export */ FuzzySearch: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_48__.FuzzySearch),
|
|
100944
101002
|
/* harmony export */ FuzzySearchResults: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_48__.FuzzySearchResults),
|
|
101003
|
+
/* harmony export */ GenerateEdges: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.GenerateEdges),
|
|
100945
101004
|
/* harmony export */ GeoConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_49__.GeoConverter),
|
|
100946
101005
|
/* harmony export */ GeoServices: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_49__.GeoServices),
|
|
100947
|
-
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */
|
|
101006
|
+
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GeographicTilingScheme),
|
|
100948
101007
|
/* harmony export */ GeometricModel2dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.GeometricModel2dState),
|
|
100949
101008
|
/* harmony export */ GeometricModel3dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.GeometricModel3dState),
|
|
100950
101009
|
/* harmony export */ GeometricModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.GeometricModelState),
|
|
101010
|
+
/* harmony export */ Geometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.Geometry),
|
|
101011
|
+
/* harmony export */ GeometryAccumulator: () => (/* reexport safe */ _render_primitives_geometry_GeometryAccumulator__WEBPACK_IMPORTED_MODULE_132__.GeometryAccumulator),
|
|
101012
|
+
/* harmony export */ GeometryList: () => (/* reexport safe */ _render_primitives_geometry_GeometryList__WEBPACK_IMPORTED_MODULE_133__.GeometryList),
|
|
101013
|
+
/* harmony export */ GeometryListBuilder: () => (/* reexport safe */ _render_primitives_geometry_GeometryListBuilder__WEBPACK_IMPORTED_MODULE_134__.GeometryListBuilder),
|
|
101014
|
+
/* harmony export */ GeometryOptions: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.GeometryOptions),
|
|
100951
101015
|
/* harmony export */ GlobeAnimator: () => (/* reexport safe */ _GlobeAnimator__WEBPACK_IMPORTED_MODULE_50__.GlobeAnimator),
|
|
100952
|
-
/* harmony export */ GltfBufferData: () => (/* reexport safe */
|
|
101016
|
+
/* harmony export */ GltfBufferData: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfBufferData),
|
|
100953
101017
|
/* harmony export */ GltfBufferTarget: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfBufferTarget),
|
|
100954
101018
|
/* harmony export */ GltfDataType: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfDataType),
|
|
100955
|
-
/* harmony export */ GltfGraphicsReader: () => (/* reexport safe */
|
|
101019
|
+
/* harmony export */ GltfGraphicsReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfGraphicsReader),
|
|
100956
101020
|
/* harmony export */ GltfMagFilter: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfMagFilter),
|
|
100957
|
-
/* harmony export */ GltfMeshData: () => (/* reexport safe */
|
|
101021
|
+
/* harmony export */ GltfMeshData: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfMeshData),
|
|
100958
101022
|
/* harmony export */ GltfMeshMode: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfMeshMode),
|
|
100959
101023
|
/* harmony export */ GltfMinFilter: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfMinFilter),
|
|
100960
|
-
/* harmony export */ GltfReader: () => (/* reexport safe */
|
|
100961
|
-
/* harmony export */ GltfReaderProps: () => (/* reexport safe */
|
|
101024
|
+
/* harmony export */ GltfReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfReader),
|
|
101025
|
+
/* harmony export */ GltfReaderProps: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfReaderProps),
|
|
100962
101026
|
/* harmony export */ GltfTechniqueState: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfTechniqueState),
|
|
100963
101027
|
/* harmony export */ GltfWrapMode: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfWrapMode),
|
|
100964
|
-
/* harmony export */ GraphicBranch: () => (/* reexport safe */
|
|
100965
|
-
/* harmony export */ GraphicBuilder: () => (/* reexport safe */
|
|
100966
|
-
/* harmony export */ GraphicType: () => (/* reexport safe */
|
|
101028
|
+
/* harmony export */ GraphicBranch: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_103__.GraphicBranch),
|
|
101029
|
+
/* harmony export */ GraphicBuilder: () => (/* reexport safe */ _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_104__.GraphicBuilder),
|
|
101030
|
+
/* harmony export */ GraphicType: () => (/* reexport safe */ _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_104__.GraphicType),
|
|
100967
101031
|
/* harmony export */ GraphicalEditingScope: () => (/* reexport safe */ _GraphicalEditingScope__WEBPACK_IMPORTED_MODULE_51__.GraphicalEditingScope),
|
|
100968
|
-
/* harmony export */ GraphicsCollectorDrawArgs: () => (/* reexport safe */
|
|
101032
|
+
/* harmony export */ GraphicsCollectorDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GraphicsCollectorDrawArgs),
|
|
100969
101033
|
/* harmony export */ HiliteSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_68__.HiliteSet),
|
|
100970
101034
|
/* harmony export */ HitDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitDetail),
|
|
100971
101035
|
/* harmony export */ HitDetailType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitDetailType),
|
|
@@ -100974,164 +101038,183 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100974
101038
|
/* harmony export */ HitParentGeomType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitParentGeomType),
|
|
100975
101039
|
/* harmony export */ HitPriority: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitPriority),
|
|
100976
101040
|
/* harmony export */ HitSource: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitSource),
|
|
100977
|
-
/* harmony export */ I3dmReader: () => (/* reexport safe */
|
|
101041
|
+
/* harmony export */ I3dmReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.I3dmReader),
|
|
100978
101042
|
/* harmony export */ IModelApp: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_53__.IModelApp),
|
|
100979
101043
|
/* harmony export */ IModelConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_54__.IModelConnection),
|
|
100980
|
-
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */
|
|
101044
|
+
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */ _render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_139__.IModelFrameLifecycle),
|
|
100981
101045
|
/* harmony export */ IModelRoutingContext: () => (/* reexport safe */ _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_55__.IModelRoutingContext),
|
|
100982
|
-
/* harmony export */ IModelTile: () => (/* reexport safe */
|
|
100983
|
-
/* harmony export */ IModelTileRequestChannels: () => (/* reexport safe */
|
|
100984
|
-
/* harmony export */ IModelTileTree: () => (/* reexport safe */
|
|
101046
|
+
/* harmony export */ IModelTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.IModelTile),
|
|
101047
|
+
/* harmony export */ IModelTileRequestChannels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.IModelTileRequestChannels),
|
|
101048
|
+
/* harmony export */ IModelTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.IModelTileTree),
|
|
100985
101049
|
/* harmony export */ ITWINJS_CORE_VERSION: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_53__.ITWINJS_CORE_VERSION),
|
|
100986
101050
|
/* harmony export */ IconSprites: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_71__.IconSprites),
|
|
100987
|
-
/* harmony export */ IdleTool: () => (/* reexport safe */
|
|
100988
|
-
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */
|
|
100989
|
-
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */
|
|
100990
|
-
/* harmony export */ ImageryMapTile: () => (/* reexport safe */
|
|
100991
|
-
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */
|
|
100992
|
-
/* harmony export */ ImageryTileTreeState: () => (/* reexport safe */
|
|
101051
|
+
/* harmony export */ IdleTool: () => (/* reexport safe */ _tools_IdleTool__WEBPACK_IMPORTED_MODULE_148__.IdleTool),
|
|
101052
|
+
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryMapLayerFormat),
|
|
101053
|
+
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryMapLayerTreeReference),
|
|
101054
|
+
/* harmony export */ ImageryMapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryMapTile),
|
|
101055
|
+
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryMapTileTree),
|
|
101056
|
+
/* harmony export */ ImageryTileTreeState: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryTileTreeState),
|
|
100993
101057
|
/* harmony export */ ImdlEdgeVisibility: () => (/* reexport safe */ _common_imdl_ImdlSchema__WEBPACK_IMPORTED_MODULE_15__.ImdlEdgeVisibility),
|
|
100994
|
-
/* harmony export */ ImdlReader: () => (/* reexport safe */
|
|
101058
|
+
/* harmony export */ ImdlReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImdlReader),
|
|
100995
101059
|
/* harmony export */ IndexBuffer: () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.IndexBuffer),
|
|
100996
|
-
/* harmony export */ InputCollector: () => (/* reexport safe */
|
|
100997
|
-
/* harmony export */ InputSource: () => (/* reexport safe */
|
|
100998
|
-
/* harmony export */ InteractiveTool: () => (/* reexport safe */
|
|
101060
|
+
/* harmony export */ InputCollector: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.InputCollector),
|
|
101061
|
+
/* harmony export */ InputSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.InputSource),
|
|
101062
|
+
/* harmony export */ InteractiveTool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.InteractiveTool),
|
|
100999
101063
|
/* harmony export */ IntersectDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.IntersectDetail),
|
|
101000
101064
|
/* harmony export */ IpcApp: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_56__.IpcApp),
|
|
101001
101065
|
/* harmony export */ ItemField: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ItemField),
|
|
101002
|
-
/* harmony export */ KeyinParseError: () => (/* reexport safe */
|
|
101066
|
+
/* harmony export */ KeyinParseError: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.KeyinParseError),
|
|
101003
101067
|
/* harmony export */ KeyinStatus: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.KeyinStatus),
|
|
101004
|
-
/* harmony export */ LRUTileList: () => (/* reexport safe */
|
|
101068
|
+
/* harmony export */ LRUTileList: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.LRUTileList),
|
|
101005
101069
|
/* harmony export */ LengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_92__.LengthDescription),
|
|
101006
101070
|
/* harmony export */ LocalExtensionProvider: () => (/* reexport safe */ _extension_providers_LocalExtensionProvider__WEBPACK_IMPORTED_MODULE_88__.LocalExtensionProvider),
|
|
101007
101071
|
/* harmony export */ LocalUnitFormatProvider: () => (/* reexport safe */ _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_95__.LocalUnitFormatProvider),
|
|
101008
|
-
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */
|
|
101072
|
+
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */ _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_160__.LocalhostIpcApp),
|
|
101009
101073
|
/* harmony export */ LocateAction: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.LocateAction),
|
|
101010
101074
|
/* harmony export */ LocateFilterStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.LocateFilterStatus),
|
|
101011
101075
|
/* harmony export */ LocateOptions: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.LocateOptions),
|
|
101012
101076
|
/* harmony export */ LocateResponse: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.LocateResponse),
|
|
101013
101077
|
/* harmony export */ LockedStates: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.LockedStates),
|
|
101014
|
-
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */
|
|
101015
|
-
/* harmony export */ LookViewTool: () => (/* reexport safe */
|
|
101016
|
-
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */
|
|
101017
|
-
/* harmony export */ MapBoxLayerImageryProvider: () => (/* reexport safe */
|
|
101018
|
-
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */
|
|
101019
|
-
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */
|
|
101020
|
-
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */
|
|
101021
|
-
/* harmony export */ MapLayerFormat: () => (/* reexport safe */
|
|
101022
|
-
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */
|
|
101023
|
-
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */
|
|
101024
|
-
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */
|
|
101025
|
-
/* harmony export */ MapLayerSource: () => (/* reexport safe */
|
|
101026
|
-
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */
|
|
101027
|
-
/* harmony export */ MapLayerSources: () => (/* reexport safe */
|
|
101028
|
-
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */
|
|
101029
|
-
/* harmony export */ MapTile: () => (/* reexport safe */
|
|
101030
|
-
/* harmony export */ MapTileLoader: () => (/* reexport safe */
|
|
101031
|
-
/* harmony export */ MapTileProjection: () => (/* reexport safe */
|
|
101032
|
-
/* harmony export */ MapTileTree: () => (/* reexport safe */
|
|
101033
|
-
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */
|
|
101034
|
-
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */
|
|
101035
|
-
/* harmony export */ MapTiledGraphicsProvider: () => (/* reexport safe */
|
|
101036
|
-
/* harmony export */ MapTilingScheme: () => (/* reexport safe */
|
|
101078
|
+
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.LookAndMoveTool),
|
|
101079
|
+
/* harmony export */ LookViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.LookViewTool),
|
|
101080
|
+
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.ManipulatorToolEvent),
|
|
101081
|
+
/* harmony export */ MapBoxLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapBoxLayerImageryProvider),
|
|
101082
|
+
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapCartoRectangle),
|
|
101083
|
+
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapFeatureInfoRecord),
|
|
101084
|
+
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerFeatureRecord),
|
|
101085
|
+
/* harmony export */ MapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerFormat),
|
|
101086
|
+
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerFormatRegistry),
|
|
101087
|
+
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerImageryProvider),
|
|
101088
|
+
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerImageryProviderStatus),
|
|
101089
|
+
/* harmony export */ MapLayerSource: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerSource),
|
|
101090
|
+
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerSourceStatus),
|
|
101091
|
+
/* harmony export */ MapLayerSources: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerSources),
|
|
101092
|
+
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerTileTreeReference),
|
|
101093
|
+
/* harmony export */ MapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTile),
|
|
101094
|
+
/* harmony export */ MapTileLoader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileLoader),
|
|
101095
|
+
/* harmony export */ MapTileProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileProjection),
|
|
101096
|
+
/* harmony export */ MapTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileTree),
|
|
101097
|
+
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileTreeReference),
|
|
101098
|
+
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileTreeScaleRangeVisibility),
|
|
101099
|
+
/* harmony export */ MapTiledGraphicsProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTiledGraphicsProvider),
|
|
101100
|
+
/* harmony export */ MapTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTilingScheme),
|
|
101037
101101
|
/* harmony export */ MarginPercent: () => (/* reexport safe */ _MarginPercent__WEBPACK_IMPORTED_MODULE_58__.MarginPercent),
|
|
101038
101102
|
/* harmony export */ Marker: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_59__.Marker),
|
|
101039
101103
|
/* harmony export */ MarkerSet: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_59__.MarkerSet),
|
|
101040
|
-
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */
|
|
101041
|
-
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */
|
|
101042
|
-
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */
|
|
101043
|
-
/* harmony export */ MeasureElementTool: () => (/* reexport safe */
|
|
101044
|
-
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */
|
|
101045
|
-
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */
|
|
101046
|
-
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */
|
|
101104
|
+
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureAreaByPointsTool),
|
|
101105
|
+
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureAreaTool),
|
|
101106
|
+
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureDistanceTool),
|
|
101107
|
+
/* harmony export */ MeasureElementTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureElementTool),
|
|
101108
|
+
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureLengthTool),
|
|
101109
|
+
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureLocationTool),
|
|
101110
|
+
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureVolumeTool),
|
|
101111
|
+
/* harmony export */ Mesh: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.Mesh),
|
|
101112
|
+
/* harmony export */ MeshArgs: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.MeshArgs),
|
|
101113
|
+
/* harmony export */ MeshArgsEdges: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.MeshArgsEdges),
|
|
101114
|
+
/* harmony export */ MeshBuilder: () => (/* reexport safe */ _render_primitives_mesh_MeshBuilder__WEBPACK_IMPORTED_MODULE_136__.MeshBuilder),
|
|
101115
|
+
/* harmony export */ MeshBuilderMap: () => (/* reexport safe */ _render_primitives_mesh_MeshBuilderMap__WEBPACK_IMPORTED_MODULE_137__.MeshBuilderMap),
|
|
101116
|
+
/* harmony export */ MeshBuilderPolyface: () => (/* reexport safe */ _render_primitives_mesh_MeshBuilder__WEBPACK_IMPORTED_MODULE_136__.MeshBuilderPolyface),
|
|
101117
|
+
/* harmony export */ MeshEdgeCreationOptions: () => (/* reexport safe */ _render_primitives_mesh_MeshBuilder__WEBPACK_IMPORTED_MODULE_136__.MeshEdgeCreationOptions),
|
|
101118
|
+
/* harmony export */ MeshList: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.MeshList),
|
|
101047
101119
|
/* harmony export */ MeshPrimitiveType: () => (/* reexport safe */ _common_render_primitives_MeshPrimitive__WEBPACK_IMPORTED_MODULE_23__.MeshPrimitiveType),
|
|
101048
101120
|
/* harmony export */ MessageBoxIconType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.MessageBoxIconType),
|
|
101049
101121
|
/* harmony export */ MessageBoxType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.MessageBoxType),
|
|
101050
101122
|
/* harmony export */ MessageBoxValue: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.MessageBoxValue),
|
|
101051
|
-
/* harmony export */ MockRender: () => (/* reexport safe */
|
|
101052
|
-
/* harmony export */ ModelMapLayerTileTreeReference: () => (/* reexport safe */
|
|
101123
|
+
/* harmony export */ MockRender: () => (/* reexport safe */ _render_MockRender__WEBPACK_IMPORTED_MODULE_107__.MockRender),
|
|
101124
|
+
/* harmony export */ ModelMapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ModelMapLayerTileTreeReference),
|
|
101053
101125
|
/* harmony export */ ModelSelectorState: () => (/* reexport safe */ _ModelSelectorState__WEBPACK_IMPORTED_MODULE_60__.ModelSelectorState),
|
|
101054
101126
|
/* harmony export */ ModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.ModelState),
|
|
101055
|
-
/* harmony export */ ModifyElementSource: () => (/* reexport safe */
|
|
101127
|
+
/* harmony export */ ModifyElementSource: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_146__.ModifyElementSource),
|
|
101056
101128
|
/* harmony export */ MutableChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_7__.MutableChangeFlags),
|
|
101057
101129
|
/* harmony export */ NativeApp: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_62__.NativeApp),
|
|
101058
101130
|
/* harmony export */ NativeAppLogger: () => (/* reexport safe */ _NativeAppLogger__WEBPACK_IMPORTED_MODULE_63__.NativeAppLogger),
|
|
101059
101131
|
/* harmony export */ NoRenderApp: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_64__.NoRenderApp),
|
|
101132
|
+
/* harmony export */ NormalMode: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.NormalMode),
|
|
101060
101133
|
/* harmony export */ NotificationHandler: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_56__.NotificationHandler),
|
|
101061
101134
|
/* harmony export */ NotificationManager: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.NotificationManager),
|
|
101062
101135
|
/* harmony export */ NotifyMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.NotifyMessageDetails),
|
|
101063
101136
|
/* harmony export */ NullRenderSystem: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_64__.NullRenderSystem),
|
|
101064
101137
|
/* harmony export */ NullTarget: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_64__.NullTarget),
|
|
101065
|
-
/* harmony export */ OPCFormatInterpreter: () => (/* reexport safe */
|
|
101066
|
-
/* harmony export */ OffScreenTarget: () => (/* reexport safe */
|
|
101138
|
+
/* harmony export */ OPCFormatInterpreter: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.OPCFormatInterpreter),
|
|
101139
|
+
/* harmony export */ OffScreenTarget: () => (/* reexport safe */ _render_webgl_Target__WEBPACK_IMPORTED_MODULE_141__.OffScreenTarget),
|
|
101067
101140
|
/* harmony export */ OffScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.OffScreenViewport),
|
|
101068
|
-
/* harmony export */ OnScreenTarget: () => (/* reexport safe */
|
|
101069
|
-
/* harmony export */ OrbitGtTileTree: () => (/* reexport safe */
|
|
101070
|
-
/* harmony export */ OrbitGtTreeReference: () => (/* reexport safe */
|
|
101141
|
+
/* harmony export */ OnScreenTarget: () => (/* reexport safe */ _render_webgl_Target__WEBPACK_IMPORTED_MODULE_141__.OnScreenTarget),
|
|
101142
|
+
/* harmony export */ OrbitGtTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.OrbitGtTileTree),
|
|
101143
|
+
/* harmony export */ OrbitGtTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.OrbitGtTreeReference),
|
|
101071
101144
|
/* harmony export */ OrthographicViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_70__.OrthographicViewState),
|
|
101072
101145
|
/* harmony export */ OutputMessageAlert: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.OutputMessageAlert),
|
|
101073
101146
|
/* harmony export */ OutputMessagePriority: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.OutputMessagePriority),
|
|
101074
101147
|
/* harmony export */ OutputMessageType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.OutputMessageType),
|
|
101075
|
-
/* harmony export */ PanViewTool: () => (/* reexport safe */
|
|
101076
|
-
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */
|
|
101077
|
-
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */
|
|
101148
|
+
/* harmony export */ PanViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.PanViewTool),
|
|
101149
|
+
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.ParseAndRunResult),
|
|
101150
|
+
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */ _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_108__.ParticleCollectionBuilder),
|
|
101078
101151
|
/* harmony export */ PerModelCategoryVisibility: () => (/* reexport safe */ _PerModelCategoryVisibility__WEBPACK_IMPORTED_MODULE_66__.PerModelCategoryVisibility),
|
|
101079
|
-
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */
|
|
101152
|
+
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */ _render_webgl_PerformanceMetrics__WEBPACK_IMPORTED_MODULE_140__.PerformanceMetrics),
|
|
101080
101153
|
/* harmony export */ PhysicalModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.PhysicalModelState),
|
|
101081
|
-
/* harmony export */ Pixel: () => (/* reexport safe */
|
|
101154
|
+
/* harmony export */ Pixel: () => (/* reexport safe */ _render_Pixel__WEBPACK_IMPORTED_MODULE_109__.Pixel),
|
|
101082
101155
|
/* harmony export */ PlanarClipMaskState: () => (/* reexport safe */ _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_67__.PlanarClipMaskState),
|
|
101083
101156
|
/* harmony export */ PlanarGridTransparency: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.PlanarGridTransparency),
|
|
101084
|
-
/* harmony export */ PlanarTilePatch: () => (/* reexport safe */
|
|
101085
|
-
/* harmony export */
|
|
101086
|
-
/* harmony export */
|
|
101087
|
-
/* harmony export */
|
|
101157
|
+
/* harmony export */ PlanarTilePatch: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.PlanarTilePatch),
|
|
101158
|
+
/* harmony export */ PolyfacePrimitive: () => (/* reexport safe */ _render_primitives_Polyface__WEBPACK_IMPORTED_MODULE_126__.PolyfacePrimitive),
|
|
101159
|
+
/* harmony export */ PolyfacePrimitiveList: () => (/* reexport safe */ _render_primitives_Polyface__WEBPACK_IMPORTED_MODULE_126__.PolyfacePrimitiveList),
|
|
101160
|
+
/* harmony export */ PolylineArgs: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.PolylineArgs),
|
|
101161
|
+
/* harmony export */ PreserveOrder: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.PreserveOrder),
|
|
101162
|
+
/* harmony export */ PrimitiveBuilder: () => (/* reexport safe */ _render_primitives_geometry_GeometryListBuilder__WEBPACK_IMPORTED_MODULE_134__.PrimitiveBuilder),
|
|
101163
|
+
/* harmony export */ PrimitiveLineStringGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitiveLineStringGeometry),
|
|
101164
|
+
/* harmony export */ PrimitiveLoopGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitiveLoopGeometry),
|
|
101165
|
+
/* harmony export */ PrimitivePathGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitivePathGeometry),
|
|
101166
|
+
/* harmony export */ PrimitivePointStringGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitivePointStringGeometry),
|
|
101167
|
+
/* harmony export */ PrimitivePolyfaceGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitivePolyfaceGeometry),
|
|
101168
|
+
/* harmony export */ PrimitiveTool: () => (/* reexport safe */ _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_150__.PrimitiveTool),
|
|
101169
|
+
/* harmony export */ PrimitiveVisibility: () => (/* reexport safe */ _render_RenderTarget__WEBPACK_IMPORTED_MODULE_118__.PrimitiveVisibility),
|
|
101170
|
+
/* harmony export */ QuadId: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.QuadId),
|
|
101088
101171
|
/* harmony export */ QuantityFormatter: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.QuantityFormatter),
|
|
101089
101172
|
/* harmony export */ QuantityType: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.QuantityType),
|
|
101090
|
-
/* harmony export */ ReadonlyTileUserSet: () => (/* reexport safe */
|
|
101091
|
-
/* harmony export */ RealityDataError: () => (/* reexport safe */
|
|
101092
|
-
/* harmony export */ RealityDataSource: () => (/* reexport safe */
|
|
101093
|
-
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */
|
|
101094
|
-
/* harmony export */ RealityMeshParams: () => (/* reexport safe */
|
|
101095
|
-
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */
|
|
101096
|
-
/* harmony export */ RealityModelTileTree: () => (/* reexport safe */
|
|
101097
|
-
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */
|
|
101098
|
-
/* harmony export */ RealityTile: () => (/* reexport safe */
|
|
101099
|
-
/* harmony export */ RealityTileDrawArgs: () => (/* reexport safe */
|
|
101100
|
-
/* harmony export */ RealityTileLoader: () => (/* reexport safe */
|
|
101101
|
-
/* harmony export */ RealityTileRegion: () => (/* reexport safe */
|
|
101102
|
-
/* harmony export */ RealityTileTree: () => (/* reexport safe */
|
|
101103
|
-
/* harmony export */ RealityTreeReference: () => (/* reexport safe */
|
|
101173
|
+
/* harmony export */ ReadonlyTileUserSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ReadonlyTileUserSet),
|
|
101174
|
+
/* harmony export */ RealityDataError: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_161__.RealityDataError),
|
|
101175
|
+
/* harmony export */ RealityDataSource: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_161__.RealityDataSource),
|
|
101176
|
+
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_161__.RealityDataSourceProviderRegistry),
|
|
101177
|
+
/* harmony export */ RealityMeshParams: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_111__.RealityMeshParams),
|
|
101178
|
+
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_111__.RealityMeshParamsBuilder),
|
|
101179
|
+
/* harmony export */ RealityModelTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityModelTileTree),
|
|
101180
|
+
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityModelTileUtils),
|
|
101181
|
+
/* harmony export */ RealityTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTile),
|
|
101182
|
+
/* harmony export */ RealityTileDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTileDrawArgs),
|
|
101183
|
+
/* harmony export */ RealityTileLoader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTileLoader),
|
|
101184
|
+
/* harmony export */ RealityTileRegion: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTileRegion),
|
|
101185
|
+
/* harmony export */ RealityTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTileTree),
|
|
101186
|
+
/* harmony export */ RealityTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTreeReference),
|
|
101104
101187
|
/* harmony export */ RemoteExtensionProvider: () => (/* reexport safe */ _extension_providers_RemoteExtensionProvider__WEBPACK_IMPORTED_MODULE_89__.RemoteExtensionProvider),
|
|
101105
|
-
/* harmony export */ RenderClipVolume: () => (/* reexport safe */
|
|
101188
|
+
/* harmony export */ RenderClipVolume: () => (/* reexport safe */ _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_112__.RenderClipVolume),
|
|
101106
101189
|
/* harmony export */ RenderContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_78__.RenderContext),
|
|
101107
101190
|
/* harmony export */ RenderDiagnostics: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.RenderDiagnostics),
|
|
101108
|
-
/* harmony export */ RenderGraphic: () => (/* reexport safe */
|
|
101109
|
-
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */
|
|
101110
|
-
/* harmony export */ RenderMemory: () => (/* reexport safe */
|
|
101111
|
-
/* harmony export */ RenderPlanEllipsoid: () => (/* reexport safe */
|
|
101112
|
-
/* harmony export */ RenderPlanarClassifier: () => (/* reexport safe */
|
|
101191
|
+
/* harmony export */ RenderGraphic: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_113__.RenderGraphic),
|
|
101192
|
+
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_113__.RenderGraphicOwner),
|
|
101193
|
+
/* harmony export */ RenderMemory: () => (/* reexport safe */ _render_RenderMemory__WEBPACK_IMPORTED_MODULE_114__.RenderMemory),
|
|
101194
|
+
/* harmony export */ RenderPlanEllipsoid: () => (/* reexport safe */ _render_RenderPlan__WEBPACK_IMPORTED_MODULE_115__.RenderPlanEllipsoid),
|
|
101195
|
+
/* harmony export */ RenderPlanarClassifier: () => (/* reexport safe */ _render_RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_116__.RenderPlanarClassifier),
|
|
101113
101196
|
/* harmony export */ RenderSystem: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.RenderSystem),
|
|
101114
|
-
/* harmony export */ RenderTarget: () => (/* reexport safe */
|
|
101197
|
+
/* harmony export */ RenderTarget: () => (/* reexport safe */ _render_RenderTarget__WEBPACK_IMPORTED_MODULE_118__.RenderTarget),
|
|
101115
101198
|
/* harmony export */ RenderTerrainGeometry: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.RenderTerrainGeometry),
|
|
101116
101199
|
/* harmony export */ RenderTextureDrape: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.RenderTextureDrape),
|
|
101117
|
-
/* harmony export */ RotateViewTool: () => (/* reexport safe */
|
|
101200
|
+
/* harmony export */ RotateViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.RotateViewTool),
|
|
101118
101201
|
/* harmony export */ RotationMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RotationMode),
|
|
101119
101202
|
/* harmony export */ RoundOff: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RoundOff),
|
|
101120
101203
|
/* harmony export */ SavedState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.SavedState),
|
|
101121
101204
|
/* harmony export */ Scene: () => (/* reexport safe */ _render_Scene__WEBPACK_IMPORTED_MODULE_119__.Scene),
|
|
101122
101205
|
/* harmony export */ SceneContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_78__.SceneContext),
|
|
101123
101206
|
/* harmony export */ ScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.ScreenViewport),
|
|
101124
|
-
/* harmony export */ ScrollViewTool: () => (/* reexport safe */
|
|
101207
|
+
/* harmony export */ ScrollViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ScrollViewTool),
|
|
101125
101208
|
/* harmony export */ SectionDrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.SectionDrawingModelState),
|
|
101126
|
-
/* harmony export */ SelectParent: () => (/* reexport safe */
|
|
101127
|
-
/* harmony export */ SelectionMethod: () => (/* reexport safe */
|
|
101128
|
-
/* harmony export */ SelectionMode: () => (/* reexport safe */
|
|
101129
|
-
/* harmony export */ SelectionProcessing: () => (/* reexport safe */
|
|
101209
|
+
/* harmony export */ SelectParent: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.SelectParent),
|
|
101210
|
+
/* harmony export */ SelectionMethod: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__.SelectionMethod),
|
|
101211
|
+
/* harmony export */ SelectionMode: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__.SelectionMode),
|
|
101212
|
+
/* harmony export */ SelectionProcessing: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__.SelectionProcessing),
|
|
101130
101213
|
/* harmony export */ SelectionSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_68__.SelectionSet),
|
|
101131
101214
|
/* harmony export */ SelectionSetEventType: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_68__.SelectionSetEventType),
|
|
101132
|
-
/* harmony export */ SelectionTool: () => (/* reexport safe */
|
|
101133
|
-
/* harmony export */ SetupCameraTool: () => (/* reexport safe */
|
|
101134
|
-
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */
|
|
101215
|
+
/* harmony export */ SelectionTool: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__.SelectionTool),
|
|
101216
|
+
/* harmony export */ SetupCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.SetupCameraTool),
|
|
101217
|
+
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.SetupWalkCameraTool),
|
|
101135
101218
|
/* harmony export */ SheetModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.SheetModelState),
|
|
101136
101219
|
/* harmony export */ SheetViewState: () => (/* reexport safe */ _SheetViewState__WEBPACK_IMPORTED_MODULE_69__.SheetViewState),
|
|
101137
101220
|
/* harmony export */ SnapDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.SnapDetail),
|
|
@@ -101139,136 +101222,149 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
101139
101222
|
/* harmony export */ SnapMode: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.SnapMode),
|
|
101140
101223
|
/* harmony export */ SnapStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.SnapStatus),
|
|
101141
101224
|
/* harmony export */ SnapshotConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_54__.SnapshotConnection),
|
|
101142
|
-
/* harmony export */ SpatialClassifierTileTreeReference: () => (/* reexport safe */
|
|
101225
|
+
/* harmony export */ SpatialClassifierTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.SpatialClassifierTileTreeReference),
|
|
101143
101226
|
/* harmony export */ SpatialLocationModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.SpatialLocationModelState),
|
|
101144
101227
|
/* harmony export */ SpatialModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.SpatialModelState),
|
|
101145
|
-
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */
|
|
101228
|
+
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.SpatialTileTreeReferences),
|
|
101146
101229
|
/* harmony export */ SpatialViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_70__.SpatialViewState),
|
|
101147
101230
|
/* harmony export */ Sprite: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_71__.Sprite),
|
|
101148
101231
|
/* harmony export */ SpriteLocation: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_71__.SpriteLocation),
|
|
101149
101232
|
/* harmony export */ StandardView: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_72__.StandardView),
|
|
101150
101233
|
/* harmony export */ StandardViewId: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_72__.StandardViewId),
|
|
101151
|
-
/* harmony export */ StandardViewTool: () => (/* reexport safe */
|
|
101152
|
-
/* harmony export */ StartOrResume: () => (/* reexport safe */
|
|
101234
|
+
/* harmony export */ StandardViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.StandardViewTool),
|
|
101235
|
+
/* harmony export */ StartOrResume: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.StartOrResume),
|
|
101153
101236
|
/* harmony export */ Storage: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_62__.Storage),
|
|
101237
|
+
/* harmony export */ StrokesPrimitive: () => (/* reexport safe */ _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__.StrokesPrimitive),
|
|
101238
|
+
/* harmony export */ StrokesPrimitiveList: () => (/* reexport safe */ _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__.StrokesPrimitiveList),
|
|
101239
|
+
/* harmony export */ StrokesPrimitivePointList: () => (/* reexport safe */ _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__.StrokesPrimitivePointList),
|
|
101240
|
+
/* harmony export */ StrokesPrimitivePointLists: () => (/* reexport safe */ _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__.StrokesPrimitivePointLists),
|
|
101154
101241
|
/* harmony export */ SubCategoriesCache: () => (/* reexport safe */ _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_73__.SubCategoriesCache),
|
|
101155
101242
|
/* harmony export */ SurfaceType: () => (/* reexport safe */ _common_render_primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_26__.SurfaceType),
|
|
101243
|
+
/* harmony export */ SurfacesOnly: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.SurfacesOnly),
|
|
101156
101244
|
/* harmony export */ SurveyLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_92__.SurveyLengthDescription),
|
|
101157
|
-
/* harmony export */ SuspendedToolState: () => (/* reexport safe */
|
|
101158
|
-
/* harmony export */ Target: () => (/* reexport safe */
|
|
101245
|
+
/* harmony export */ SuspendedToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.SuspendedToolState),
|
|
101246
|
+
/* harmony export */ Target: () => (/* reexport safe */ _render_webgl_Target__WEBPACK_IMPORTED_MODULE_141__.Target),
|
|
101159
101247
|
/* harmony export */ TentativeOrAccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TentativeOrAccuSnap),
|
|
101160
101248
|
/* harmony export */ TentativePoint: () => (/* reexport safe */ _TentativePoint__WEBPACK_IMPORTED_MODULE_74__.TentativePoint),
|
|
101161
101249
|
/* harmony export */ TerrainDisplayOverrides: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_37__.TerrainDisplayOverrides),
|
|
101162
|
-
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */
|
|
101163
|
-
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */
|
|
101250
|
+
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TerrainMeshProvider),
|
|
101251
|
+
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TerrainProviderRegistry),
|
|
101164
101252
|
/* harmony export */ TerrainTexture: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.TerrainTexture),
|
|
101165
101253
|
/* harmony export */ ThreeAxes: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ThreeAxes),
|
|
101166
|
-
/* harmony export */ ThreeDTileFormatInterpreter: () => (/* reexport safe */
|
|
101167
|
-
/* harmony export */ Tile: () => (/* reexport safe */
|
|
101168
|
-
/* harmony export */ TileAdmin: () => (/* reexport safe */
|
|
101169
|
-
/* harmony export */ TileAvailability: () => (/* reexport safe */
|
|
101170
|
-
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */
|
|
101171
|
-
/* harmony export */ TileDrawArgs: () => (/* reexport safe */
|
|
101172
|
-
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */
|
|
101173
|
-
/* harmony export */ TileGraphicType: () => (/* reexport safe */
|
|
101174
|
-
/* harmony export */ TileLoadPriority: () => (/* reexport safe */
|
|
101175
|
-
/* harmony export */ TileLoadStatus: () => (/* reexport safe */
|
|
101176
|
-
/* harmony export */ TileRequest: () => (/* reexport safe */
|
|
101177
|
-
/* harmony export */ TileRequestChannel: () => (/* reexport safe */
|
|
101178
|
-
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */
|
|
101179
|
-
/* harmony export */ TileRequestChannels: () => (/* reexport safe */
|
|
101180
|
-
/* harmony export */ TileStorage: () => (/* reexport safe */
|
|
101181
|
-
/* harmony export */ TileTree: () => (/* reexport safe */
|
|
101182
|
-
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */
|
|
101183
|
-
/* harmony export */ TileTreeReference: () => (/* reexport safe */
|
|
101184
|
-
/* harmony export */ TileUrlImageryProvider: () => (/* reexport safe */
|
|
101185
|
-
/* harmony export */ TileUsageMarker: () => (/* reexport safe */
|
|
101186
|
-
/* harmony export */ TileUser: () => (/* reexport safe */
|
|
101187
|
-
/* harmony export */ TileUserIdSet: () => (/* reexport safe */
|
|
101188
|
-
/* harmony export */ TileUserIdSets: () => (/* reexport safe */
|
|
101189
|
-
/* harmony export */ TileVisibility: () => (/* reexport safe */
|
|
101190
|
-
/* harmony export */ TiledGraphicsProvider: () => (/* reexport safe */
|
|
101254
|
+
/* harmony export */ ThreeDTileFormatInterpreter: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ThreeDTileFormatInterpreter),
|
|
101255
|
+
/* harmony export */ Tile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.Tile),
|
|
101256
|
+
/* harmony export */ TileAdmin: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileAdmin),
|
|
101257
|
+
/* harmony export */ TileAvailability: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileAvailability),
|
|
101258
|
+
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileBoundingBoxes),
|
|
101259
|
+
/* harmony export */ TileDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileDrawArgs),
|
|
101260
|
+
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileGeometryCollector),
|
|
101261
|
+
/* harmony export */ TileGraphicType: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileGraphicType),
|
|
101262
|
+
/* harmony export */ TileLoadPriority: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileLoadPriority),
|
|
101263
|
+
/* harmony export */ TileLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileLoadStatus),
|
|
101264
|
+
/* harmony export */ TileRequest: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileRequest),
|
|
101265
|
+
/* harmony export */ TileRequestChannel: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileRequestChannel),
|
|
101266
|
+
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileRequestChannelStatistics),
|
|
101267
|
+
/* harmony export */ TileRequestChannels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileRequestChannels),
|
|
101268
|
+
/* harmony export */ TileStorage: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileStorage),
|
|
101269
|
+
/* harmony export */ TileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileTree),
|
|
101270
|
+
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileTreeLoadStatus),
|
|
101271
|
+
/* harmony export */ TileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileTreeReference),
|
|
101272
|
+
/* harmony export */ TileUrlImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUrlImageryProvider),
|
|
101273
|
+
/* harmony export */ TileUsageMarker: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUsageMarker),
|
|
101274
|
+
/* harmony export */ TileUser: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUser),
|
|
101275
|
+
/* harmony export */ TileUserIdSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUserIdSet),
|
|
101276
|
+
/* harmony export */ TileUserIdSets: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUserIdSets),
|
|
101277
|
+
/* harmony export */ TileVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileVisibility),
|
|
101278
|
+
/* harmony export */ TiledGraphicsProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TiledGraphicsProvider),
|
|
101191
101279
|
/* harmony export */ Tiles: () => (/* reexport safe */ _Tiles__WEBPACK_IMPORTED_MODULE_75__.Tiles),
|
|
101192
|
-
/* harmony export */
|
|
101193
|
-
/* harmony export */
|
|
101194
|
-
/* harmony export */
|
|
101195
|
-
/* harmony export */
|
|
101196
|
-
/* harmony export */
|
|
101197
|
-
/* harmony export */
|
|
101198
|
-
/* harmony export */
|
|
101199
|
-
/* harmony export */
|
|
101200
|
-
/* harmony export */
|
|
101280
|
+
/* harmony export */ ToleranceRatio: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.ToleranceRatio),
|
|
101281
|
+
/* harmony export */ Tool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.Tool),
|
|
101282
|
+
/* harmony export */ ToolAdmin: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.ToolAdmin),
|
|
101283
|
+
/* harmony export */ ToolAssistance: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_155__.ToolAssistance),
|
|
101284
|
+
/* harmony export */ ToolAssistanceImage: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_155__.ToolAssistanceImage),
|
|
101285
|
+
/* harmony export */ ToolAssistanceInputMethod: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_155__.ToolAssistanceInputMethod),
|
|
101286
|
+
/* harmony export */ ToolRegistry: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.ToolRegistry),
|
|
101287
|
+
/* harmony export */ ToolSettings: () => (/* reexport safe */ _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_153__.ToolSettings),
|
|
101288
|
+
/* harmony export */ ToolSettingsState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.ToolSettingsState),
|
|
101289
|
+
/* harmony export */ ToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.ToolState),
|
|
101201
101290
|
/* harmony export */ TouchCursor: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TouchCursor),
|
|
101202
|
-
/* harmony export */ TraversalChildrenDetails: () => (/* reexport safe */
|
|
101203
|
-
/* harmony export */ TraversalDetails: () => (/* reexport safe */
|
|
101204
|
-
/* harmony export */ TraversalSelectionContext: () => (/* reexport safe */
|
|
101291
|
+
/* harmony export */ TraversalChildrenDetails: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TraversalChildrenDetails),
|
|
101292
|
+
/* harmony export */ TraversalDetails: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TraversalDetails),
|
|
101293
|
+
/* harmony export */ TraversalSelectionContext: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TraversalSelectionContext),
|
|
101294
|
+
/* harmony export */ Triangle: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.Triangle),
|
|
101295
|
+
/* harmony export */ TriangleKey: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.TriangleKey),
|
|
101296
|
+
/* harmony export */ TriangleList: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.TriangleList),
|
|
101297
|
+
/* harmony export */ TriangleSet: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.TriangleSet),
|
|
101205
101298
|
/* harmony export */ TwoWayViewportFrustumSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.TwoWayViewportFrustumSync),
|
|
101206
101299
|
/* harmony export */ TwoWayViewportSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.TwoWayViewportSync),
|
|
101207
101300
|
/* harmony export */ UniformType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_120__.UniformType),
|
|
101208
|
-
/* harmony export */ UniqueTileUserSets: () => (/* reexport safe */
|
|
101209
|
-
/* harmony export */ UpsampledMapTile: () => (/* reexport safe */
|
|
101301
|
+
/* harmony export */ UniqueTileUserSets: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.UniqueTileUserSets),
|
|
101302
|
+
/* harmony export */ UpsampledMapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.UpsampledMapTile),
|
|
101210
101303
|
/* harmony export */ VaryingType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_120__.VaryingType),
|
|
101211
101304
|
/* harmony export */ VertexIndices: () => (/* reexport safe */ _common_render_primitives_VertexIndices__WEBPACK_IMPORTED_MODULE_27__.VertexIndices),
|
|
101212
|
-
/* harmony export */
|
|
101213
|
-
/* harmony export */
|
|
101214
|
-
/* harmony export */
|
|
101215
|
-
/* harmony export */
|
|
101216
|
-
/* harmony export */
|
|
101217
|
-
/* harmony export */
|
|
101218
|
-
/* harmony export */
|
|
101219
|
-
/* harmony export */
|
|
101220
|
-
/* harmony export */
|
|
101221
|
-
/* harmony export */
|
|
101222
|
-
/* harmony export */
|
|
101223
|
-
/* harmony export */
|
|
101224
|
-
/* harmony export */
|
|
101225
|
-
/* harmony export */
|
|
101305
|
+
/* harmony export */ VertexKey: () => (/* reexport safe */ _render_primitives_VertexKey__WEBPACK_IMPORTED_MODULE_130__.VertexKey),
|
|
101306
|
+
/* harmony export */ VertexMap: () => (/* reexport safe */ _render_primitives_VertexKey__WEBPACK_IMPORTED_MODULE_130__.VertexMap),
|
|
101307
|
+
/* harmony export */ VertexTableBuilder: () => (/* reexport safe */ _render_primitives_VertexTableBuilder__WEBPACK_IMPORTED_MODULE_131__.VertexTableBuilder),
|
|
101308
|
+
/* harmony export */ ViewClipByElementTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipByElementTool),
|
|
101309
|
+
/* harmony export */ ViewClipByPlaneTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipByPlaneTool),
|
|
101310
|
+
/* harmony export */ ViewClipByRangeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipByRangeTool),
|
|
101311
|
+
/* harmony export */ ViewClipByShapeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipByShapeTool),
|
|
101312
|
+
/* harmony export */ ViewClipClearTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipClearTool),
|
|
101313
|
+
/* harmony export */ ViewClipControlArrow: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipControlArrow),
|
|
101314
|
+
/* harmony export */ ViewClipDecoration: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipDecoration),
|
|
101315
|
+
/* harmony export */ ViewClipDecorationProvider: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipDecorationProvider),
|
|
101316
|
+
/* harmony export */ ViewClipModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipModifyTool),
|
|
101317
|
+
/* harmony export */ ViewClipPlanesModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipPlanesModifyTool),
|
|
101318
|
+
/* harmony export */ ViewClipShapeModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipShapeModifyTool),
|
|
101319
|
+
/* harmony export */ ViewClipTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipTool),
|
|
101320
|
+
/* harmony export */ ViewCreator2d: () => (/* reexport safe */ _ViewCreator2d__WEBPACK_IMPORTED_MODULE_158__.ViewCreator2d),
|
|
101321
|
+
/* harmony export */ ViewCreator3d: () => (/* reexport safe */ _ViewCreator3d__WEBPACK_IMPORTED_MODULE_159__.ViewCreator3d),
|
|
101226
101322
|
/* harmony export */ ViewGlobalLocationConstants: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.ViewGlobalLocationConstants),
|
|
101227
|
-
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */
|
|
101228
|
-
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */
|
|
101229
|
-
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */
|
|
101230
|
-
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */
|
|
101231
|
-
/* harmony export */ ViewHandleArray: () => (/* reexport safe */
|
|
101232
|
-
/* harmony export */ ViewHandleType: () => (/* reexport safe */
|
|
101323
|
+
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewGlobeBirdTool),
|
|
101324
|
+
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewGlobeIModelTool),
|
|
101325
|
+
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewGlobeLocationTool),
|
|
101326
|
+
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewGlobeSatelliteTool),
|
|
101327
|
+
/* harmony export */ ViewHandleArray: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewHandleArray),
|
|
101328
|
+
/* harmony export */ ViewHandleType: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewHandleType),
|
|
101233
101329
|
/* harmony export */ ViewManager: () => (/* reexport safe */ _ViewManager__WEBPACK_IMPORTED_MODULE_81__.ViewManager),
|
|
101234
|
-
/* harmony export */ ViewManip: () => (/* reexport safe */
|
|
101330
|
+
/* harmony export */ ViewManip: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewManip),
|
|
101235
101331
|
/* harmony export */ ViewPose: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_84__.ViewPose),
|
|
101236
101332
|
/* harmony export */ ViewPose2d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_84__.ViewPose2d),
|
|
101237
101333
|
/* harmony export */ ViewPose3d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_84__.ViewPose3d),
|
|
101238
101334
|
/* harmony export */ ViewRect: () => (/* reexport safe */ _common_ViewRect__WEBPACK_IMPORTED_MODULE_31__.ViewRect),
|
|
101239
|
-
/* harmony export */ ViewRedoTool: () => (/* reexport safe */
|
|
101335
|
+
/* harmony export */ ViewRedoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewRedoTool),
|
|
101240
101336
|
/* harmony export */ ViewState: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_85__.ViewState),
|
|
101241
101337
|
/* harmony export */ ViewState2d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_85__.ViewState2d),
|
|
101242
101338
|
/* harmony export */ ViewState3d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_85__.ViewState3d),
|
|
101243
101339
|
/* harmony export */ ViewStatus: () => (/* reexport safe */ _ViewStatus__WEBPACK_IMPORTED_MODULE_86__.ViewStatus),
|
|
101244
|
-
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */
|
|
101245
|
-
/* harmony export */ ViewTool: () => (/* reexport safe */
|
|
101340
|
+
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewToggleCameraTool),
|
|
101341
|
+
/* harmony export */ ViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewTool),
|
|
101246
101342
|
/* harmony export */ ViewUndoEvent: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.ViewUndoEvent),
|
|
101247
|
-
/* harmony export */ ViewUndoTool: () => (/* reexport safe */
|
|
101343
|
+
/* harmony export */ ViewUndoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewUndoTool),
|
|
101248
101344
|
/* harmony export */ ViewingSpace: () => (/* reexport safe */ _ViewingSpace__WEBPACK_IMPORTED_MODULE_80__.ViewingSpace),
|
|
101249
|
-
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */
|
|
101345
|
+
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewingToolHandle),
|
|
101250
101346
|
/* harmony export */ Viewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.Viewport),
|
|
101251
|
-
/* harmony export */ WalkViewTool: () => (/* reexport safe */
|
|
101252
|
-
/* harmony export */ WebMercator: () => (/* reexport safe */
|
|
101253
|
-
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */
|
|
101254
|
-
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */
|
|
101255
|
-
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */
|
|
101256
|
-
/* harmony export */ WindowAreaTool: () => (/* reexport safe */
|
|
101257
|
-
/* harmony export */ WmsCapabilities: () => (/* reexport safe */
|
|
101258
|
-
/* harmony export */ WmsCapability: () => (/* reexport safe */
|
|
101259
|
-
/* harmony export */ WmsMapLayerImageryProvider: () => (/* reexport safe */
|
|
101260
|
-
/* harmony export */ WmsUtilities: () => (/* reexport safe */
|
|
101261
|
-
/* harmony export */ WmtsCapabilities: () => (/* reexport safe */
|
|
101262
|
-
/* harmony export */ WmtsCapability: () => (/* reexport safe */
|
|
101263
|
-
/* harmony export */ WmtsConstants: () => (/* reexport safe */
|
|
101264
|
-
/* harmony export */ WmtsMapLayerImageryProvider: () => (/* reexport safe */
|
|
101265
|
-
/* harmony export */ ZoomViewTool: () => (/* reexport safe */
|
|
101266
|
-
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */
|
|
101267
|
-
/* harmony export */ acquireImdlParser: () => (/* reexport safe */
|
|
101268
|
-
/* harmony export */ addRangeGraphic: () => (/* reexport safe */
|
|
101347
|
+
/* harmony export */ WalkViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.WalkViewTool),
|
|
101348
|
+
/* harmony export */ WebMercator: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WebMercator),
|
|
101349
|
+
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WebMercatorProjection),
|
|
101350
|
+
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WebMercatorTilingScheme),
|
|
101351
|
+
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.WheelEventProcessor),
|
|
101352
|
+
/* harmony export */ WindowAreaTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.WindowAreaTool),
|
|
101353
|
+
/* harmony export */ WmsCapabilities: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmsCapabilities),
|
|
101354
|
+
/* harmony export */ WmsCapability: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmsCapability),
|
|
101355
|
+
/* harmony export */ WmsMapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmsMapLayerImageryProvider),
|
|
101356
|
+
/* harmony export */ WmsUtilities: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmsUtilities),
|
|
101357
|
+
/* harmony export */ WmtsCapabilities: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmtsCapabilities),
|
|
101358
|
+
/* harmony export */ WmtsCapability: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmtsCapability),
|
|
101359
|
+
/* harmony export */ WmtsConstants: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmtsConstants),
|
|
101360
|
+
/* harmony export */ WmtsMapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmtsMapLayerImageryProvider),
|
|
101361
|
+
/* harmony export */ ZoomViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ZoomViewTool),
|
|
101362
|
+
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.acquireImdlDecoder),
|
|
101363
|
+
/* harmony export */ acquireImdlParser: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.acquireImdlParser),
|
|
101364
|
+
/* harmony export */ addRangeGraphic: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.addRangeGraphic),
|
|
101269
101365
|
/* harmony export */ areaToEyeHeight: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.areaToEyeHeight),
|
|
101270
101366
|
/* harmony export */ areaToEyeHeightFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.areaToEyeHeightFromGcs),
|
|
101271
|
-
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */
|
|
101367
|
+
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_157__.calculateEcefToDbTransformAtLocation),
|
|
101272
101368
|
/* harmony export */ calculateEdgeTableParams: () => (/* reexport safe */ _common_render_primitives_EdgeParams__WEBPACK_IMPORTED_MODULE_21__.calculateEdgeTableParams),
|
|
101273
101369
|
/* harmony export */ canvasToImageBuffer: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.canvasToImageBuffer),
|
|
101274
101370
|
/* harmony export */ canvasToResizedCanvasWithBars: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.canvasToResizedCanvasWithBars),
|
|
@@ -101278,47 +101374,51 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
101278
101374
|
/* harmony export */ connectViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.connectViewportViews),
|
|
101279
101375
|
/* harmony export */ connectViewports: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.connectViewports),
|
|
101280
101376
|
/* harmony export */ convertFeatureTable: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.convertFeatureTable),
|
|
101281
|
-
/* harmony export */ createClassifierTileTreeReference: () => (/* reexport safe */
|
|
101282
|
-
/* harmony export */ createDefaultViewFlagOverrides: () => (/* reexport safe */
|
|
101283
|
-
/* harmony export */
|
|
101284
|
-
/* harmony export */
|
|
101285
|
-
/* harmony export */
|
|
101286
|
-
/* harmony export */
|
|
101287
|
-
/* harmony export */
|
|
101288
|
-
/* harmony export */
|
|
101289
|
-
/* harmony export */
|
|
101290
|
-
/* harmony export */
|
|
101377
|
+
/* harmony export */ createClassifierTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createClassifierTileTreeReference),
|
|
101378
|
+
/* harmony export */ createDefaultViewFlagOverrides: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createDefaultViewFlagOverrides),
|
|
101379
|
+
/* harmony export */ createEdgeParams: () => (/* reexport safe */ _render_primitives_EdgeParams__WEBPACK_IMPORTED_MODULE_123__.createEdgeParams),
|
|
101380
|
+
/* harmony export */ createEmptyRenderPlan: () => (/* reexport safe */ _render_RenderPlan__WEBPACK_IMPORTED_MODULE_115__.createEmptyRenderPlan),
|
|
101381
|
+
/* harmony export */ createMapLayerTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createMapLayerTreeReference),
|
|
101382
|
+
/* harmony export */ createMaskTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createMaskTreeReference),
|
|
101383
|
+
/* harmony export */ createMeshParams: () => (/* reexport safe */ _render_primitives_VertexTableBuilder__WEBPACK_IMPORTED_MODULE_131__.createMeshParams),
|
|
101384
|
+
/* harmony export */ createModelMapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createModelMapLayerTileTreeReference),
|
|
101385
|
+
/* harmony export */ createOrbitGtTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createOrbitGtTileTreeReference),
|
|
101386
|
+
/* harmony export */ createPointStringParams: () => (/* reexport safe */ _render_primitives_PointStringParams__WEBPACK_IMPORTED_MODULE_125__.createPointStringParams),
|
|
101387
|
+
/* harmony export */ createPolylineParams: () => (/* reexport safe */ _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__.createPolylineParams),
|
|
101388
|
+
/* harmony export */ createPrimaryTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createPrimaryTileTreeReference),
|
|
101389
|
+
/* harmony export */ createRealityTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createRealityTileTreeReference),
|
|
101390
|
+
/* harmony export */ createRenderPlanFromViewport: () => (/* reexport safe */ _render_RenderPlan__WEBPACK_IMPORTED_MODULE_115__.createRenderPlanFromViewport),
|
|
101291
101391
|
/* harmony export */ createSurfaceMaterial: () => (/* reexport safe */ _common_render_primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_26__.createSurfaceMaterial),
|
|
101292
101392
|
/* harmony export */ createWorkerProxy: () => (/* reexport safe */ _common_WorkerProxy__WEBPACK_IMPORTED_MODULE_32__.createWorkerProxy),
|
|
101293
|
-
/* harmony export */ decodeImdlGraphics: () => (/* reexport safe */
|
|
101294
|
-
/* harmony export */ disposeTileTreesForGeometricModels: () => (/* reexport safe */
|
|
101393
|
+
/* harmony export */ decodeImdlGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.decodeImdlGraphics),
|
|
101394
|
+
/* harmony export */ disposeTileTreesForGeometricModels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.disposeTileTreesForGeometricModels),
|
|
101295
101395
|
/* harmony export */ edgeParamsFromImdl: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.edgeParamsFromImdl),
|
|
101296
101396
|
/* harmony export */ extractImageSourceDimensions: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.extractImageSourceDimensions),
|
|
101297
101397
|
/* harmony export */ eyeToCartographicOnGlobe: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.eyeToCartographicOnGlobe),
|
|
101298
101398
|
/* harmony export */ eyeToCartographicOnGlobeFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.eyeToCartographicOnGlobeFromGcs),
|
|
101299
|
-
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */
|
|
101399
|
+
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_103__.formatAnimationBranchId),
|
|
101300
101400
|
/* harmony export */ getCenteredViewRect: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getCenteredViewRect),
|
|
101301
|
-
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* reexport safe */
|
|
101302
|
-
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */
|
|
101303
|
-
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* reexport safe */
|
|
101304
|
-
/* harmony export */ getCesiumTerrainProvider: () => (/* reexport safe */
|
|
101401
|
+
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getCesiumAccessTokenAndEndpointUrl),
|
|
101402
|
+
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getCesiumAssetUrl),
|
|
101403
|
+
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getCesiumOSMBuildingsUrl),
|
|
101404
|
+
/* harmony export */ getCesiumTerrainProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getCesiumTerrainProvider),
|
|
101305
101405
|
/* harmony export */ getCompressedJpegFromCanvas: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getCompressedJpegFromCanvas),
|
|
101306
|
-
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */
|
|
101307
|
-
/* harmony export */ getGcsConverterAvailable: () => (/* reexport safe */
|
|
101406
|
+
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_157__.getFrustumPlaneIntersectionDepthRange),
|
|
101407
|
+
/* harmony export */ getGcsConverterAvailable: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getGcsConverterAvailable),
|
|
101308
101408
|
/* harmony export */ getGltfNodeMeshIds: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.getGltfNodeMeshIds),
|
|
101309
101409
|
/* harmony export */ getImageSourceFormatForMimeType: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getImageSourceFormatForMimeType),
|
|
101310
101410
|
/* harmony export */ getImageSourceMimeType: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getImageSourceMimeType),
|
|
101311
101411
|
/* harmony export */ getQuantityTypeKey: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.getQuantityTypeKey),
|
|
101312
101412
|
/* harmony export */ gltfDictionaryIterator: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.gltfDictionaryIterator),
|
|
101313
|
-
/* harmony export */ iModelTileParamsFromJSON: () => (/* reexport safe */
|
|
101314
|
-
/* harmony export */ iModelTileTreeParamsFromJSON: () => (/* reexport safe */
|
|
101413
|
+
/* harmony export */ iModelTileParamsFromJSON: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.iModelTileParamsFromJSON),
|
|
101414
|
+
/* harmony export */ iModelTileTreeParamsFromJSON: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.iModelTileTreeParamsFromJSON),
|
|
101315
101415
|
/* harmony export */ imageBitmapFromImageSource: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBitmapFromImageSource),
|
|
101316
101416
|
/* harmony export */ imageBufferToBase64EncodedPng: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBufferToBase64EncodedPng),
|
|
101317
101417
|
/* harmony export */ imageBufferToCanvas: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBufferToCanvas),
|
|
101318
101418
|
/* harmony export */ imageBufferToPngDataUrl: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBufferToPngDataUrl),
|
|
101319
101419
|
/* harmony export */ imageElementFromImageSource: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageElementFromImageSource),
|
|
101320
101420
|
/* harmony export */ imageElementFromUrl: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageElementFromUrl),
|
|
101321
|
-
/* harmony export */ internalMapLayerImageryFormats: () => (/* reexport safe */
|
|
101421
|
+
/* harmony export */ internalMapLayerImageryFormats: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.internalMapLayerImageryFormats),
|
|
101322
101422
|
/* harmony export */ isCheckboxFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_96__.isCheckboxFormatPropEditorSpec),
|
|
101323
101423
|
/* harmony export */ isCustomQuantityTypeDefinition: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.isCustomQuantityTypeDefinition),
|
|
101324
101424
|
/* harmony export */ isGltf1Material: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.isGltf1Material),
|
|
@@ -101328,27 +101428,30 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
101328
101428
|
/* harmony export */ linePlaneIntersect: () => (/* reexport safe */ _LinePlaneIntersect__WEBPACK_IMPORTED_MODULE_57__.linePlaneIntersect),
|
|
101329
101429
|
/* harmony export */ metersToRange: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.metersToRange),
|
|
101330
101430
|
/* harmony export */ openImageDataUrlInNewWindow: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.openImageDataUrlInNewWindow),
|
|
101331
|
-
/* harmony export */ overrideRequestTileTreeProps: () => (/* reexport safe */
|
|
101431
|
+
/* harmony export */ overrideRequestTileTreeProps: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.overrideRequestTileTreeProps),
|
|
101332
101432
|
/* harmony export */ parseGltf: () => (/* reexport safe */ _common_gltf_GltfParser__WEBPACK_IMPORTED_MODULE_11__.parseGltf),
|
|
101333
101433
|
/* harmony export */ parseImdlDocument: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.parseImdlDocument),
|
|
101334
101434
|
/* harmony export */ queryTerrainElevationOffset: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.queryTerrainElevationOffset),
|
|
101335
101435
|
/* harmony export */ queryVisibleFeatures: () => (/* reexport safe */ _render_VisibleFeature__WEBPACK_IMPORTED_MODULE_121__.queryVisibleFeatures),
|
|
101336
101436
|
/* harmony export */ rangeToCartographicArea: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.rangeToCartographicArea),
|
|
101337
|
-
/* harmony export */ readElementGraphics: () => (/* reexport safe */
|
|
101338
|
-
/* harmony export */ readGltf: () => (/* reexport safe */
|
|
101339
|
-
/* harmony export */ readGltfGraphics: () => (/* reexport safe */
|
|
101340
|
-
/* harmony export */ readImdlContent: () => (/* reexport safe */
|
|
101341
|
-
/* harmony export */ readPointCloudTileContent: () => (/* reexport safe */
|
|
101437
|
+
/* harmony export */ readElementGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readElementGraphics),
|
|
101438
|
+
/* harmony export */ readGltf: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readGltf),
|
|
101439
|
+
/* harmony export */ readGltfGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readGltfGraphics),
|
|
101440
|
+
/* harmony export */ readImdlContent: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readImdlContent),
|
|
101441
|
+
/* harmony export */ readPointCloudTileContent: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readPointCloudTileContent),
|
|
101342
101442
|
/* harmony export */ splitMeshParams: () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitMeshParams),
|
|
101343
101443
|
/* harmony export */ splitPointStringParams: () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitPointStringParams),
|
|
101344
101444
|
/* harmony export */ splitPolylineParams: () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitPolylineParams),
|
|
101345
101445
|
/* harmony export */ synchronizeViewportFrusta: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.synchronizeViewportFrusta),
|
|
101346
101446
|
/* harmony export */ synchronizeViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.synchronizeViewportViews),
|
|
101447
|
+
/* harmony export */ tesselatePolyline: () => (/* reexport safe */ _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__.tesselatePolyline),
|
|
101448
|
+
/* harmony export */ tesselatePolylineFromMesh: () => (/* reexport safe */ _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__.tesselatePolylineFromMesh),
|
|
101347
101449
|
/* harmony export */ toMaterialParams: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.toMaterialParams),
|
|
101348
101450
|
/* harmony export */ toVertexTable: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.toVertexTable),
|
|
101349
101451
|
/* harmony export */ traverseGltfNodes: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.traverseGltfNodes),
|
|
101350
101452
|
/* harmony export */ tryImageElementFromUrl: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.tryImageElementFromUrl),
|
|
101351
|
-
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.viewGlobalLocation)
|
|
101453
|
+
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.viewGlobalLocation),
|
|
101454
|
+
/* harmony export */ wantJointTriangles: () => (/* reexport safe */ _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__.wantJointTriangles)
|
|
101352
101455
|
/* harmony export */ });
|
|
101353
101456
|
/* harmony import */ var _AccuDraw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccuDraw */ "../../core/frontend/lib/esm/AccuDraw.js");
|
|
101354
101457
|
/* harmony import */ var _AccuSnap__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AccuSnap */ "../../core/frontend/lib/esm/AccuSnap.js");
|
|
@@ -101448,54 +101551,71 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
101448
101551
|
/* harmony import */ var _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./quantity-formatting/LocalUnitFormatProvider */ "../../core/frontend/lib/esm/quantity-formatting/LocalUnitFormatProvider.js");
|
|
101449
101552
|
/* harmony import */ var _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./quantity-formatting/QuantityTypesEditorSpecs */ "../../core/frontend/lib/esm/quantity-formatting/QuantityTypesEditorSpecs.js");
|
|
101450
101553
|
/* harmony import */ var _render_CanvasDecoration__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./render/CanvasDecoration */ "../../core/frontend/lib/esm/render/CanvasDecoration.js");
|
|
101451
|
-
/* harmony import */ var
|
|
101452
|
-
/* harmony import */ var
|
|
101453
|
-
/* harmony import */ var
|
|
101454
|
-
/* harmony import */ var
|
|
101455
|
-
/* harmony import */ var
|
|
101456
|
-
/* harmony import */ var
|
|
101457
|
-
/* harmony import */ var
|
|
101458
|
-
/* harmony import */ var
|
|
101459
|
-
/* harmony import */ var
|
|
101460
|
-
/* harmony import */ var
|
|
101461
|
-
/* harmony import */ var
|
|
101462
|
-
/* harmony import */ var
|
|
101463
|
-
/* harmony import */ var
|
|
101464
|
-
/* harmony import */ var
|
|
101465
|
-
/* harmony import */ var
|
|
101466
|
-
/* harmony import */ var
|
|
101467
|
-
/* harmony import */ var
|
|
101468
|
-
/* harmony import */ var
|
|
101469
|
-
/* harmony import */ var
|
|
101554
|
+
/* harmony import */ var _render_CreateRenderMaterialArgs__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./render/CreateRenderMaterialArgs */ "../../core/frontend/lib/esm/render/CreateRenderMaterialArgs.js");
|
|
101555
|
+
/* harmony import */ var _render_CreateTextureArgs__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./render/CreateTextureArgs */ "../../core/frontend/lib/esm/render/CreateTextureArgs.js");
|
|
101556
|
+
/* harmony import */ var _render_Decorations__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./render/Decorations */ "../../core/frontend/lib/esm/render/Decorations.js");
|
|
101557
|
+
/* harmony import */ var _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./render/FeatureSymbology */ "../../core/frontend/lib/esm/render/FeatureSymbology.js");
|
|
101558
|
+
/* harmony import */ var _render_FrameStats__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./render/FrameStats */ "../../core/frontend/lib/esm/render/FrameStats.js");
|
|
101559
|
+
/* harmony import */ var _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./render/GraphicBranch */ "../../core/frontend/lib/esm/render/GraphicBranch.js");
|
|
101560
|
+
/* harmony import */ var _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./render/GraphicBuilder */ "../../core/frontend/lib/esm/render/GraphicBuilder.js");
|
|
101561
|
+
/* harmony import */ var _render_GraphicPrimitive__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./render/GraphicPrimitive */ "../../core/frontend/lib/esm/render/GraphicPrimitive.js");
|
|
101562
|
+
/* harmony import */ var _render_InstancedGraphicParams__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./render/InstancedGraphicParams */ "../../core/frontend/lib/esm/render/InstancedGraphicParams.js");
|
|
101563
|
+
/* harmony import */ var _render_MockRender__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./render/MockRender */ "../../core/frontend/lib/esm/render/MockRender.js");
|
|
101564
|
+
/* harmony import */ var _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./render/ParticleCollectionBuilder */ "../../core/frontend/lib/esm/render/ParticleCollectionBuilder.js");
|
|
101565
|
+
/* harmony import */ var _render_Pixel__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./render/Pixel */ "../../core/frontend/lib/esm/render/Pixel.js");
|
|
101566
|
+
/* harmony import */ var _render_RealityMeshGraphicParams__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./render/RealityMeshGraphicParams */ "../../core/frontend/lib/esm/render/RealityMeshGraphicParams.js");
|
|
101567
|
+
/* harmony import */ var _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./render/RealityMeshParams */ "../../core/frontend/lib/esm/render/RealityMeshParams.js");
|
|
101568
|
+
/* harmony import */ var _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./render/RenderClipVolume */ "../../core/frontend/lib/esm/render/RenderClipVolume.js");
|
|
101569
|
+
/* harmony import */ var _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./render/RenderGraphic */ "../../core/frontend/lib/esm/render/RenderGraphic.js");
|
|
101570
|
+
/* harmony import */ var _render_RenderMemory__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./render/RenderMemory */ "../../core/frontend/lib/esm/render/RenderMemory.js");
|
|
101571
|
+
/* harmony import */ var _render_RenderPlan__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./render/RenderPlan */ "../../core/frontend/lib/esm/render/RenderPlan.js");
|
|
101572
|
+
/* harmony import */ var _render_RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./render/RenderPlanarClassifier */ "../../core/frontend/lib/esm/render/RenderPlanarClassifier.js");
|
|
101470
101573
|
/* harmony import */ var _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./render/RenderSystem */ "../../core/frontend/lib/esm/render/RenderSystem.js");
|
|
101471
|
-
/* harmony import */ var
|
|
101574
|
+
/* harmony import */ var _render_RenderTarget__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./render/RenderTarget */ "../../core/frontend/lib/esm/render/RenderTarget.js");
|
|
101472
101575
|
/* harmony import */ var _render_Scene__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./render/Scene */ "../../core/frontend/lib/esm/render/Scene.js");
|
|
101473
101576
|
/* harmony import */ var _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./render/ScreenSpaceEffectBuilder */ "../../core/frontend/lib/esm/render/ScreenSpaceEffectBuilder.js");
|
|
101474
101577
|
/* harmony import */ var _render_VisibleFeature__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./render/VisibleFeature */ "../../core/frontend/lib/esm/render/VisibleFeature.js");
|
|
101475
|
-
/* harmony import */ var
|
|
101476
|
-
/* harmony import */ var
|
|
101477
|
-
/* harmony import */ var
|
|
101478
|
-
/* harmony import */ var
|
|
101479
|
-
/* harmony import */ var
|
|
101480
|
-
/* harmony import */ var
|
|
101481
|
-
/* harmony import */ var
|
|
101482
|
-
/* harmony import */ var
|
|
101483
|
-
/* harmony import */ var
|
|
101484
|
-
/* harmony import */ var
|
|
101485
|
-
/* harmony import */ var
|
|
101486
|
-
/* harmony import */ var
|
|
101487
|
-
/* harmony import */ var
|
|
101488
|
-
/* harmony import */ var
|
|
101489
|
-
/* harmony import */ var
|
|
101490
|
-
/* harmony import */ var
|
|
101491
|
-
/* harmony import */ var
|
|
101492
|
-
/* harmony import */ var
|
|
101493
|
-
/* harmony import */ var
|
|
101494
|
-
/* harmony import */ var
|
|
101495
|
-
/* harmony import */ var
|
|
101496
|
-
/* harmony import */ var
|
|
101497
|
-
/* harmony import */ var
|
|
101498
|
-
/* harmony import */ var
|
|
101578
|
+
/* harmony import */ var _render_primitives_ColorMap__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./render/primitives/ColorMap */ "../../core/frontend/lib/esm/render/primitives/ColorMap.js");
|
|
101579
|
+
/* harmony import */ var _render_primitives_EdgeParams__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./render/primitives/EdgeParams */ "../../core/frontend/lib/esm/render/primitives/EdgeParams.js");
|
|
101580
|
+
/* harmony import */ var _render_primitives_PointCloudPrimitive__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./render/primitives/PointCloudPrimitive */ "../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js");
|
|
101581
|
+
/* harmony import */ var _render_primitives_PointStringParams__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./render/primitives/PointStringParams */ "../../core/frontend/lib/esm/render/primitives/PointStringParams.js");
|
|
101582
|
+
/* harmony import */ var _render_primitives_Polyface__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./render/primitives/Polyface */ "../../core/frontend/lib/esm/render/primitives/Polyface.js");
|
|
101583
|
+
/* harmony import */ var _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./render/primitives/PolylineParams */ "../../core/frontend/lib/esm/render/primitives/PolylineParams.js");
|
|
101584
|
+
/* harmony import */ var _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./render/primitives/Primitives */ "../../core/frontend/lib/esm/render/primitives/Primitives.js");
|
|
101585
|
+
/* harmony import */ var _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./render/primitives/Strokes */ "../../core/frontend/lib/esm/render/primitives/Strokes.js");
|
|
101586
|
+
/* harmony import */ var _render_primitives_VertexKey__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./render/primitives/VertexKey */ "../../core/frontend/lib/esm/render/primitives/VertexKey.js");
|
|
101587
|
+
/* harmony import */ var _render_primitives_VertexTableBuilder__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./render/primitives/VertexTableBuilder */ "../../core/frontend/lib/esm/render/primitives/VertexTableBuilder.js");
|
|
101588
|
+
/* harmony import */ var _render_primitives_geometry_GeometryAccumulator__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./render/primitives/geometry/GeometryAccumulator */ "../../core/frontend/lib/esm/render/primitives/geometry/GeometryAccumulator.js");
|
|
101589
|
+
/* harmony import */ var _render_primitives_geometry_GeometryList__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./render/primitives/geometry/GeometryList */ "../../core/frontend/lib/esm/render/primitives/geometry/GeometryList.js");
|
|
101590
|
+
/* harmony import */ var _render_primitives_geometry_GeometryListBuilder__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./render/primitives/geometry/GeometryListBuilder */ "../../core/frontend/lib/esm/render/primitives/geometry/GeometryListBuilder.js");
|
|
101591
|
+
/* harmony import */ var _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./render/primitives/geometry/GeometryPrimitives */ "../../core/frontend/lib/esm/render/primitives/geometry/GeometryPrimitives.js");
|
|
101592
|
+
/* harmony import */ var _render_primitives_mesh_MeshBuilder__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./render/primitives/mesh/MeshBuilder */ "../../core/frontend/lib/esm/render/primitives/mesh/MeshBuilder.js");
|
|
101593
|
+
/* harmony import */ var _render_primitives_mesh_MeshBuilderMap__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./render/primitives/mesh/MeshBuilderMap */ "../../core/frontend/lib/esm/render/primitives/mesh/MeshBuilderMap.js");
|
|
101594
|
+
/* harmony import */ var _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./render/primitives/mesh/MeshPrimitives */ "../../core/frontend/lib/esm/render/primitives/mesh/MeshPrimitives.js");
|
|
101595
|
+
/* harmony import */ var _render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./render/webgl/IModelFrameLifecycle */ "../../core/frontend/lib/esm/render/webgl/IModelFrameLifecycle.js");
|
|
101596
|
+
/* harmony import */ var _render_webgl_PerformanceMetrics__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./render/webgl/PerformanceMetrics */ "../../core/frontend/lib/esm/render/webgl/PerformanceMetrics.js");
|
|
101597
|
+
/* harmony import */ var _render_webgl_Target__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./render/webgl/Target */ "../../core/frontend/lib/esm/render/webgl/Target.js");
|
|
101598
|
+
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
101599
|
+
/* harmony import */ var _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tools/AccuDrawTool */ "../../core/frontend/lib/esm/tools/AccuDrawTool.js");
|
|
101600
|
+
/* harmony import */ var _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tools/ClipViewTool */ "../../core/frontend/lib/esm/tools/ClipViewTool.js");
|
|
101601
|
+
/* harmony import */ var _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tools/EditManipulator */ "../../core/frontend/lib/esm/tools/EditManipulator.js");
|
|
101602
|
+
/* harmony import */ var _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tools/ElementSetTool */ "../../core/frontend/lib/esm/tools/ElementSetTool.js");
|
|
101603
|
+
/* harmony import */ var _tools_EventController__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tools/EventController */ "../../core/frontend/lib/esm/tools/EventController.js");
|
|
101604
|
+
/* harmony import */ var _tools_IdleTool__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tools/IdleTool */ "../../core/frontend/lib/esm/tools/IdleTool.js");
|
|
101605
|
+
/* harmony import */ var _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tools/MeasureTool */ "../../core/frontend/lib/esm/tools/MeasureTool.js");
|
|
101606
|
+
/* harmony import */ var _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tools/PrimitiveTool */ "../../core/frontend/lib/esm/tools/PrimitiveTool.js");
|
|
101607
|
+
/* harmony import */ var _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tools/SelectTool */ "../../core/frontend/lib/esm/tools/SelectTool.js");
|
|
101608
|
+
/* harmony import */ var _tools_Tool__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tools/Tool */ "../../core/frontend/lib/esm/tools/Tool.js");
|
|
101609
|
+
/* harmony import */ var _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tools/ToolSettings */ "../../core/frontend/lib/esm/tools/ToolSettings.js");
|
|
101610
|
+
/* harmony import */ var _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tools/ToolAdmin */ "../../core/frontend/lib/esm/tools/ToolAdmin.js");
|
|
101611
|
+
/* harmony import */ var _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tools/ToolAssistance */ "../../core/frontend/lib/esm/tools/ToolAssistance.js");
|
|
101612
|
+
/* harmony import */ var _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tools/ViewTool */ "../../core/frontend/lib/esm/tools/ViewTool.js");
|
|
101613
|
+
/* harmony import */ var _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./BackgroundMapGeometry */ "../../core/frontend/lib/esm/BackgroundMapGeometry.js");
|
|
101614
|
+
/* harmony import */ var _ViewCreator2d__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./ViewCreator2d */ "../../core/frontend/lib/esm/ViewCreator2d.js");
|
|
101615
|
+
/* harmony import */ var _ViewCreator3d__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./ViewCreator3d */ "../../core/frontend/lib/esm/ViewCreator3d.js");
|
|
101616
|
+
/* harmony import */ var _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./LocalhostIpcApp */ "../../core/frontend/lib/esm/LocalhostIpcApp.js");
|
|
101617
|
+
/* harmony import */ var _RealityDataSource__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./RealityDataSource */ "../../core/frontend/lib/esm/RealityDataSource.js");
|
|
101618
|
+
/* harmony import */ var _extension_ExtensionRuntime__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(/*! ./extension/ExtensionRuntime */ "../../core/frontend/lib/esm/extension/ExtensionRuntime.js");
|
|
101499
101619
|
/*---------------------------------------------------------------------------------------------
|
|
101500
101620
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
101501
101621
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -101627,6 +101747,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
101627
101747
|
|
|
101628
101748
|
|
|
101629
101749
|
|
|
101750
|
+
|
|
101751
|
+
|
|
101752
|
+
|
|
101753
|
+
|
|
101754
|
+
|
|
101755
|
+
|
|
101756
|
+
|
|
101757
|
+
|
|
101758
|
+
|
|
101759
|
+
|
|
101760
|
+
|
|
101761
|
+
|
|
101762
|
+
|
|
101763
|
+
|
|
101764
|
+
|
|
101765
|
+
|
|
101766
|
+
|
|
101630
101767
|
|
|
101631
101768
|
|
|
101632
101769
|
|
|
@@ -105423,7 +105560,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
105423
105560
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
105424
105561
|
/* harmony export */ Pixel: () => (/* binding */ Pixel)
|
|
105425
105562
|
/* harmony export */ });
|
|
105426
|
-
/* harmony import */ var
|
|
105563
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
105564
|
+
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
105565
|
+
/* harmony import */ var _HitDetail__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../HitDetail */ "../../core/frontend/lib/esm/HitDetail.js");
|
|
105427
105566
|
/*---------------------------------------------------------------------------------------------
|
|
105428
105567
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
105429
105568
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -105432,6 +105571,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
105432
105571
|
* @module Rendering
|
|
105433
105572
|
*/
|
|
105434
105573
|
|
|
105574
|
+
|
|
105575
|
+
|
|
105435
105576
|
/** Describes aspects of a pixel as read from a [[Viewport]].
|
|
105436
105577
|
* @see [[Viewport.readPixels]].
|
|
105437
105578
|
* @public
|
|
@@ -105443,12 +105584,12 @@ var Pixel;
|
|
|
105443
105584
|
class Data {
|
|
105444
105585
|
/** @internal */
|
|
105445
105586
|
get isClassifier() {
|
|
105446
|
-
return undefined !== this.batchType &&
|
|
105587
|
+
return undefined !== this.batchType && _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.BatchType.Primary !== this.batchType;
|
|
105447
105588
|
}
|
|
105448
105589
|
/** @internal */
|
|
105449
105590
|
constructor(args) {
|
|
105450
105591
|
if (args?.feature)
|
|
105451
|
-
this.feature = new
|
|
105592
|
+
this.feature = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.Feature(args.feature.elementId, args.feature.subCategoryId, args.feature.geometryClass);
|
|
105452
105593
|
this.modelId = args?.feature?.modelId;
|
|
105453
105594
|
this.distanceFraction = args?.distanceFraction ?? -1;
|
|
105454
105595
|
this.type = args?.type ?? GeometryType.Unknown;
|
|
@@ -105469,6 +105610,44 @@ var Pixel;
|
|
|
105469
105610
|
get geometryClass() {
|
|
105470
105611
|
return this.feature?.geometryClass;
|
|
105471
105612
|
}
|
|
105613
|
+
/** Computes the [[HitPriority]] of this pixel based on its [[type]] and [[planarity]]. */
|
|
105614
|
+
computeHitPriority() {
|
|
105615
|
+
switch (this.type) {
|
|
105616
|
+
case Pixel.GeometryType.Surface:
|
|
105617
|
+
return Pixel.Planarity.Planar === this.planarity ? _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.PlanarSurface : _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.NonPlanarSurface;
|
|
105618
|
+
case Pixel.GeometryType.Linear:
|
|
105619
|
+
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.WireEdge;
|
|
105620
|
+
case Pixel.GeometryType.Edge:
|
|
105621
|
+
return Pixel.Planarity.Planar === this.planarity ? _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.PlanarEdge : _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.NonPlanarEdge;
|
|
105622
|
+
case Pixel.GeometryType.Silhouette:
|
|
105623
|
+
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.SilhouetteEdge;
|
|
105624
|
+
default:
|
|
105625
|
+
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.Unknown;
|
|
105626
|
+
}
|
|
105627
|
+
}
|
|
105628
|
+
/** Convert this pixel to a [[Pixel.HitProps]] suitable for constructing a [[HitDetail]].
|
|
105629
|
+
* @param viewport The viewport in which the hit originated.
|
|
105630
|
+
*/
|
|
105631
|
+
toHitProps(viewport) {
|
|
105632
|
+
let viewAttachment;
|
|
105633
|
+
if (this.viewAttachmentId) {
|
|
105634
|
+
const attachmentViewport = viewport.view.getAttachmentViewport(this.viewAttachmentId);
|
|
105635
|
+
if (attachmentViewport)
|
|
105636
|
+
viewAttachment = { viewport: attachmentViewport, id: this.viewAttachmentId };
|
|
105637
|
+
}
|
|
105638
|
+
return {
|
|
105639
|
+
sourceId: this.elementId ?? _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.invalid,
|
|
105640
|
+
priority: this.computeHitPriority(),
|
|
105641
|
+
distFraction: this.distanceFraction,
|
|
105642
|
+
subCategoryId: this.subCategoryId,
|
|
105643
|
+
geometryClass: this.geometryClass,
|
|
105644
|
+
modelId: this.modelId,
|
|
105645
|
+
tileId: this.tileId,
|
|
105646
|
+
isClassifier: this.isClassifier,
|
|
105647
|
+
sourceIModel: this.iModel,
|
|
105648
|
+
viewAttachment,
|
|
105649
|
+
};
|
|
105650
|
+
}
|
|
105472
105651
|
}
|
|
105473
105652
|
Pixel.Data = Data;
|
|
105474
105653
|
/** Describes the type of geometry that produced the [[Pixel.Data]]. */
|
|
@@ -106351,7 +106530,7 @@ class RenderSystem {
|
|
|
106351
106530
|
if (undefined !== this.options.disabledExtensions)
|
|
106352
106531
|
Object.freeze(this.options.disabledExtensions);
|
|
106353
106532
|
}
|
|
106354
|
-
/**
|
|
106533
|
+
/** The maximum permitted width or height of a texture supported by this render system. */
|
|
106355
106534
|
get maxTextureSize() { return 0; }
|
|
106356
106535
|
/** @internal */
|
|
106357
106536
|
get supportsCreateImageBitmap() { return false; }
|
|
@@ -106562,7 +106741,6 @@ class RenderSystem {
|
|
|
106562
106741
|
* @returns A Promise resolving to the created RenderTexture or to undefined if the texture could not be created.
|
|
106563
106742
|
* @note If the texture is successfully created, it will be cached on the IModelConnection such that it can later be retrieved by its ID using [[RenderSystem.findTexture]].
|
|
106564
106743
|
* @see [[RenderSystem.loadTextureImage]].
|
|
106565
|
-
* @internal
|
|
106566
106744
|
*/
|
|
106567
106745
|
async loadTexture(id, iModel) {
|
|
106568
106746
|
let texture = this.findTexture(id.toString(), iModel);
|
|
@@ -107333,7 +107511,7 @@ function convertPolylinesAndEdges(polylines, edges) {
|
|
|
107333
107511
|
let numIndices = undefined !== edges ? edges.length : 0;
|
|
107334
107512
|
if (undefined !== polylines)
|
|
107335
107513
|
for (const pd of polylines)
|
|
107336
|
-
numIndices += (pd.
|
|
107514
|
+
numIndices += (pd.length - 1);
|
|
107337
107515
|
if (0 === numIndices)
|
|
107338
107516
|
return undefined;
|
|
107339
107517
|
numIndices *= 6;
|
|
@@ -107350,13 +107528,13 @@ function convertPolylinesAndEdges(polylines, edges) {
|
|
|
107350
107528
|
};
|
|
107351
107529
|
if (undefined !== polylines) {
|
|
107352
107530
|
for (const pd of polylines) {
|
|
107353
|
-
const num = pd.
|
|
107531
|
+
const num = pd.length - 1;
|
|
107354
107532
|
for (let i = 0; i < num; ++i) {
|
|
107355
|
-
let p0 = pd
|
|
107356
|
-
let p1 = pd
|
|
107533
|
+
let p0 = pd[i];
|
|
107534
|
+
let p1 = pd[i + 1];
|
|
107357
107535
|
if (p1 < p0) { // swap so that lower index is first.
|
|
107358
107536
|
p0 = p1;
|
|
107359
|
-
p1 = pd
|
|
107537
|
+
p1 = pd[i];
|
|
107360
107538
|
}
|
|
107361
107539
|
addPoint(p0, p1, 0);
|
|
107362
107540
|
addPoint(p1, p0, 2);
|
|
@@ -107409,7 +107587,7 @@ function buildIndexedEdges(args, doPolylines, maxSize) {
|
|
|
107409
107587
|
const polylines = doPolylines ? args.polylines?.lines : undefined;
|
|
107410
107588
|
const numHardEdges = hardEdges?.length ?? 0;
|
|
107411
107589
|
const numSilhouettes = silhouettes?.edges?.length ?? 0;
|
|
107412
|
-
const numPolylines = polylines ? polylines.reduce((count, pd) => count + Math.max(0, pd.
|
|
107590
|
+
const numPolylines = polylines ? polylines.reduce((count, pd) => count + Math.max(0, pd.length - 1), 0) : 0;
|
|
107413
107591
|
const numSegmentEdges = numHardEdges + numPolylines;
|
|
107414
107592
|
const numTotalEdges = numSegmentEdges + numSilhouettes;
|
|
107415
107593
|
if (numTotalEdges === 0)
|
|
@@ -107437,10 +107615,10 @@ function buildIndexedEdges(args, doPolylines, maxSize) {
|
|
|
107437
107615
|
setEdge(curIndex++, edge.indices[0], edge.indices[1]);
|
|
107438
107616
|
if (polylines) {
|
|
107439
107617
|
for (const pd of polylines) {
|
|
107440
|
-
const num = pd.
|
|
107618
|
+
const num = pd.length - 1;
|
|
107441
107619
|
for (let i = 0; i < num; i++) {
|
|
107442
|
-
const p0 = pd
|
|
107443
|
-
const p1 = pd
|
|
107620
|
+
const p0 = pd[i];
|
|
107621
|
+
const p1 = pd[i + 1];
|
|
107444
107622
|
// Ensure lower index is first.
|
|
107445
107623
|
if (p0 < p1)
|
|
107446
107624
|
setEdge(curIndex++, p0, p1);
|
|
@@ -107506,6 +107684,26 @@ function createEdgeParams(meshArgs, maxWidth) {
|
|
|
107506
107684
|
}
|
|
107507
107685
|
|
|
107508
107686
|
|
|
107687
|
+
/***/ }),
|
|
107688
|
+
|
|
107689
|
+
/***/ "../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js":
|
|
107690
|
+
/*!****************************************************************************!*\
|
|
107691
|
+
!*** ../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js ***!
|
|
107692
|
+
\****************************************************************************/
|
|
107693
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
107694
|
+
|
|
107695
|
+
"use strict";
|
|
107696
|
+
__webpack_require__.r(__webpack_exports__);
|
|
107697
|
+
/*---------------------------------------------------------------------------------------------
|
|
107698
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
107699
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
107700
|
+
*--------------------------------------------------------------------------------------------*/
|
|
107701
|
+
/** @packageDocumentation
|
|
107702
|
+
* @module Rendering
|
|
107703
|
+
*/
|
|
107704
|
+
|
|
107705
|
+
|
|
107706
|
+
|
|
107509
107707
|
/***/ }),
|
|
107510
107708
|
|
|
107511
107709
|
/***/ "../../core/frontend/lib/esm/render/primitives/PointStringParams.js":
|
|
@@ -107534,6 +107732,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
107534
107732
|
|
|
107535
107733
|
|
|
107536
107734
|
|
|
107735
|
+
/** @internal */
|
|
107537
107736
|
function createPointStringParams(args) {
|
|
107538
107737
|
if (!args.flags.isDisjoint)
|
|
107539
107738
|
return undefined;
|
|
@@ -107541,12 +107740,12 @@ function createPointStringParams(args) {
|
|
|
107541
107740
|
if (undefined === vertices)
|
|
107542
107741
|
return undefined;
|
|
107543
107742
|
const polylines = args.polylines;
|
|
107544
|
-
let vertIndices = polylines[0]
|
|
107743
|
+
let vertIndices = polylines[0];
|
|
107545
107744
|
if (1 < polylines.length) {
|
|
107546
107745
|
// We used to assert this wouldn't happen - apparently it does...
|
|
107547
107746
|
vertIndices = [];
|
|
107548
107747
|
for (const polyline of polylines)
|
|
107549
|
-
for (const vertIndex of polyline
|
|
107748
|
+
for (const vertIndex of polyline)
|
|
107550
107749
|
vertIndices.push(vertIndex);
|
|
107551
107750
|
}
|
|
107552
107751
|
const vertexIndices = _common_render_primitives_VertexIndices__WEBPACK_IMPORTED_MODULE_2__.VertexIndices.fromArray(vertIndices);
|
|
@@ -107638,6 +107837,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
107638
107837
|
|
|
107639
107838
|
|
|
107640
107839
|
|
|
107840
|
+
/** @internal */
|
|
107641
107841
|
function tesselatePolylineFromMesh(args) {
|
|
107642
107842
|
const tesselator = PolylineTesselator.fromMesh(args);
|
|
107643
107843
|
return tesselator?.tesselate();
|
|
@@ -107694,7 +107894,7 @@ class PolylineTesselator {
|
|
|
107694
107894
|
this._doJoints = doJointTriangles;
|
|
107695
107895
|
}
|
|
107696
107896
|
static fromPolyline(args) {
|
|
107697
|
-
return new PolylineTesselator(args.polylines, args.points, wantJointTriangles(args.width, args.flags.is2d));
|
|
107897
|
+
return new PolylineTesselator(args.polylines, args.points, wantJointTriangles(args.width, !!args.flags.is2d));
|
|
107698
107898
|
}
|
|
107699
107899
|
static fromMesh(args) {
|
|
107700
107900
|
if (undefined !== args.edges?.polylines.lines && undefined !== args.points)
|
|
@@ -107722,17 +107922,17 @@ class PolylineTesselator {
|
|
|
107722
107922
|
const v0 = new PolylineVertex(), v1 = new PolylineVertex();
|
|
107723
107923
|
const maxJointDot = -0.7;
|
|
107724
107924
|
for (const line of this._polylines) {
|
|
107725
|
-
if (line.
|
|
107925
|
+
if (line.length < 2)
|
|
107726
107926
|
continue;
|
|
107727
|
-
const last = line.
|
|
107728
|
-
const isClosed = line
|
|
107927
|
+
const last = line.length - 1;
|
|
107928
|
+
const isClosed = line[0] === line[last];
|
|
107729
107929
|
for (let i = 0; i < last; ++i) {
|
|
107730
|
-
const idx0 = line
|
|
107731
|
-
const idx1 = line
|
|
107930
|
+
const idx0 = line[i];
|
|
107931
|
+
const idx1 = line[i + 1];
|
|
107732
107932
|
const isStart = (0 === i);
|
|
107733
107933
|
const isEnd = (last - 1 === i);
|
|
107734
|
-
const prevIdx0 = isStart ? (isClosed ? line
|
|
107735
|
-
const nextIdx1 = isEnd ? (isClosed ? line
|
|
107934
|
+
const prevIdx0 = isStart ? (isClosed ? line[last - 1] : idx0) : line[i - 1];
|
|
107935
|
+
const nextIdx1 = isEnd ? (isClosed ? line[1] : idx1) : line[i + 2];
|
|
107736
107936
|
v0.init(true, isStart && !isClosed, idx0, prevIdx0, idx1);
|
|
107737
107937
|
v1.init(false, isEnd && !isClosed, idx1, nextIdx1, idx0);
|
|
107738
107938
|
const jointAt0 = this._doJoints && (isClosed || !isStart) && this._dotProduct(v0) > maxJointDot;
|
|
@@ -107793,6 +107993,7 @@ function tesselatePolyline(polylines, points, doJointTriangles) {
|
|
|
107793
107993
|
const tesselator = new PolylineTesselator(polylines, points, doJointTriangles);
|
|
107794
107994
|
return tesselator.tesselate();
|
|
107795
107995
|
}
|
|
107996
|
+
/** @internal */
|
|
107796
107997
|
function createPolylineParams(args) {
|
|
107797
107998
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(!args.flags.isDisjoint);
|
|
107798
107999
|
const vertices = _VertexTableBuilder__WEBPACK_IMPORTED_MODULE_3__.VertexTableBuilder.buildFromPolylines(args, _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.renderSystem.maxTextureSize);
|
|
@@ -107804,12 +108005,13 @@ function createPolylineParams(args) {
|
|
|
107804
108005
|
return {
|
|
107805
108006
|
vertices,
|
|
107806
108007
|
polyline: tesselator.tesselate(),
|
|
107807
|
-
isPlanar: args.flags.isPlanar,
|
|
107808
|
-
type: args.flags.type,
|
|
108008
|
+
isPlanar: !!args.flags.isPlanar,
|
|
108009
|
+
type: args.flags.type ?? _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PolylineTypeFlags.Normal,
|
|
107809
108010
|
weight: args.width,
|
|
107810
108011
|
linePixels: args.linePixels,
|
|
107811
108012
|
};
|
|
107812
108013
|
}
|
|
108014
|
+
/** @internal */
|
|
107813
108015
|
function wantJointTriangles(weight, is2d) {
|
|
107814
108016
|
// Joints are incredibly expensive. In 3d, only generate them if the line is sufficiently wide for them to be noticeable.
|
|
107815
108017
|
const jointWidthThreshold = 3;
|
|
@@ -108229,6 +108431,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
108229
108431
|
|
|
108230
108432
|
|
|
108231
108433
|
|
|
108434
|
+
/** @internal */
|
|
108232
108435
|
function createMeshParams(args, maxDimension) {
|
|
108233
108436
|
const builder = createMeshBuilder(args);
|
|
108234
108437
|
const vertices = builder.build(args.colors, args.features, maxDimension);
|
|
@@ -108236,7 +108439,7 @@ function createMeshParams(args, maxDimension) {
|
|
|
108236
108439
|
const surface = {
|
|
108237
108440
|
type: builder.type,
|
|
108238
108441
|
indices: surfaceIndices,
|
|
108239
|
-
fillFlags: args.fillFlags,
|
|
108442
|
+
fillFlags: args.fillFlags ?? _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FillFlags.ByView,
|
|
108240
108443
|
hasBakedLighting: true === args.hasBakedLighting,
|
|
108241
108444
|
textureMapping: undefined !== args.textureMapping ? { texture: args.textureMapping.texture, alwaysDisplayed: false } : undefined,
|
|
108242
108445
|
material: (0,_common_render_primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_5__.createSurfaceMaterial)(args.material),
|
|
@@ -108251,7 +108454,9 @@ function createMeshParams(args, maxDimension) {
|
|
|
108251
108454
|
auxChannels: channels,
|
|
108252
108455
|
};
|
|
108253
108456
|
}
|
|
108254
|
-
/** Builds a VertexTable from some data type supplying the vertex data.
|
|
108457
|
+
/** Builds a VertexTable from some data type supplying the vertex data.
|
|
108458
|
+
* @internal
|
|
108459
|
+
*/
|
|
108255
108460
|
class VertexTableBuilder {
|
|
108256
108461
|
constructor() {
|
|
108257
108462
|
this._curIndex = 0;
|
|
@@ -109370,6 +109575,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
109370
109575
|
/** @internal */
|
|
109371
109576
|
class MeshBuilder {
|
|
109372
109577
|
get currentPolyface() { return this._currentPolyface; }
|
|
109578
|
+
get displayParams() { return this.mesh.displayParams; }
|
|
109373
109579
|
set displayParams(params) { this.mesh.displayParams = params; }
|
|
109374
109580
|
/** create reference for triangleSet on demand */
|
|
109375
109581
|
get triangleSet() {
|
|
@@ -109895,28 +110101,30 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
109895
110101
|
|
|
109896
110102
|
|
|
109897
110103
|
|
|
109898
|
-
/** @
|
|
110104
|
+
/** @public */
|
|
109899
110105
|
var PolylineArgs;
|
|
109900
110106
|
(function (PolylineArgs) {
|
|
110107
|
+
/** @internal */
|
|
109901
110108
|
function fromMesh(mesh) {
|
|
109902
110109
|
if (!mesh.polylines || mesh.polylines.length === 0)
|
|
109903
110110
|
return undefined;
|
|
109904
110111
|
const polylines = [];
|
|
109905
|
-
for (const polyline of mesh.polylines)
|
|
109906
|
-
|
|
109907
|
-
|
|
109908
|
-
polylines.push(polylineData);
|
|
109909
|
-
}
|
|
110112
|
+
for (const polyline of mesh.polylines)
|
|
110113
|
+
if (polyline.indices.length > 0)
|
|
110114
|
+
polylines.push(polyline.indices);
|
|
109910
110115
|
if (polylines.length === 0)
|
|
109911
110116
|
return undefined;
|
|
109912
|
-
const flags =
|
|
109913
|
-
|
|
110117
|
+
const flags = {
|
|
110118
|
+
is2d: mesh.is2d,
|
|
110119
|
+
isPlanar: mesh.isPlanar,
|
|
110120
|
+
isDisjoint: mesh.type === _common_render_primitives_MeshPrimitive__WEBPACK_IMPORTED_MODULE_5__.MeshPrimitiveType.Point,
|
|
110121
|
+
};
|
|
109914
110122
|
if (mesh.displayParams.regionEdgeType === _common_render_primitives_DisplayParams__WEBPACK_IMPORTED_MODULE_4__.DisplayParams.RegionEdgeType.Outline) {
|
|
109915
110123
|
// This polyline is behaving as the edges of a region surface.
|
|
109916
110124
|
if (!mesh.displayParams.gradient || mesh.displayParams.gradient.isOutlined)
|
|
109917
|
-
flags.
|
|
110125
|
+
flags.type = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PolylineTypeFlags.Edge;
|
|
109918
110126
|
else
|
|
109919
|
-
flags.
|
|
110127
|
+
flags.type = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PolylineTypeFlags.Outline; // edges only displayed if fill undisplayed
|
|
109920
110128
|
}
|
|
109921
110129
|
const colors = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorIndex();
|
|
109922
110130
|
mesh.colorMap.toColorIndex(colors, mesh.colors);
|
|
@@ -109954,9 +110162,10 @@ class MeshArgsEdges {
|
|
|
109954
110162
|
}
|
|
109955
110163
|
get isValid() { return this.edges.isValid || this.silhouettes.isValid || this.polylines.isValid; }
|
|
109956
110164
|
}
|
|
109957
|
-
/** @
|
|
110165
|
+
/** @public */
|
|
109958
110166
|
var MeshArgs;
|
|
109959
110167
|
(function (MeshArgs) {
|
|
110168
|
+
/** @internal */
|
|
109960
110169
|
function fromMesh(mesh) {
|
|
109961
110170
|
if (!mesh.triangles || mesh.triangles.isEmpty || mesh.points.length === 0)
|
|
109962
110171
|
return undefined;
|
|
@@ -109974,11 +110183,9 @@ var MeshArgs;
|
|
|
109974
110183
|
edges.edges.init(mesh.edges);
|
|
109975
110184
|
edges.silhouettes.init(mesh.edges);
|
|
109976
110185
|
const polylines = [];
|
|
109977
|
-
for (const meshPolyline of mesh.edges.polylines)
|
|
109978
|
-
|
|
109979
|
-
|
|
109980
|
-
polylines.push(polyline);
|
|
109981
|
-
}
|
|
110186
|
+
for (const meshPolyline of mesh.edges.polylines)
|
|
110187
|
+
if (meshPolyline.indices.length > 0)
|
|
110188
|
+
polylines.push(meshPolyline.indices);
|
|
109982
110189
|
edges.polylines.init(polylines);
|
|
109983
110190
|
}
|
|
109984
110191
|
return {
|
|
@@ -121481,6 +121688,7 @@ var PrimitiveDrawState;
|
|
|
121481
121688
|
})(PrimitiveDrawState || (PrimitiveDrawState = {}));
|
|
121482
121689
|
// The actual base class. Specializations are provided based on whether or not multiple render targets are supported.
|
|
121483
121690
|
class Compositor extends SceneCompositor {
|
|
121691
|
+
forceBufferChange() { this._width = this._height = -1; }
|
|
121484
121692
|
get featureIds() { return this.getSamplerTexture(this._readPickDataFromPingPong ? 0 : 1); }
|
|
121485
121693
|
get depthAndOrder() { return this.getSamplerTexture(this._readPickDataFromPingPong ? 1 : 2); }
|
|
121486
121694
|
get _samplerFbo() { return this._readPickDataFromPingPong ? this._fbos.pingPong : this._fbos.opaqueAll; }
|
|
@@ -127244,8 +127452,6 @@ class Target extends _RenderTarget__WEBPACK_IMPORTED_MODULE_8__.RenderTarget {
|
|
|
127244
127452
|
}
|
|
127245
127453
|
class CanvasState {
|
|
127246
127454
|
constructor(canvas) {
|
|
127247
|
-
this._width = 0;
|
|
127248
|
-
this._height = 0;
|
|
127249
127455
|
this.needsClear = false;
|
|
127250
127456
|
this.canvas = canvas;
|
|
127251
127457
|
this._isWebGLCanvas = this.canvas === _System__WEBPACK_IMPORTED_MODULE_24__.System.instance.canvas;
|
|
@@ -127256,12 +127462,13 @@ class CanvasState {
|
|
|
127256
127462
|
const h = Math.floor(this.canvas.clientHeight * pixelRatio);
|
|
127257
127463
|
// Do not update the dimensions if not needed, or if new width or height is 0, which is invalid.
|
|
127258
127464
|
// NB: the 0-dimension check indirectly resolves an issue when a viewport is dropped and immediately re-added
|
|
127259
|
-
// to the view manager. See ViewManager.test.ts for more details.
|
|
127260
|
-
|
|
127465
|
+
// to the view manager. See ViewManager.test.ts for more details. 0 is also the case when vpDiv.removeChild
|
|
127466
|
+
// is done on webGLCanvas, due to client sizes being 0 afterward.
|
|
127467
|
+
if (w === this.canvas.width && h === this.canvas.height || (0 === w || 0 === h))
|
|
127261
127468
|
return false;
|
|
127262
127469
|
// Must ensure internal bitmap grid dimensions of on-screen canvas match its own on-screen appearance.
|
|
127263
|
-
this.canvas.width =
|
|
127264
|
-
this.canvas.height =
|
|
127470
|
+
this.canvas.width = w;
|
|
127471
|
+
this.canvas.height = h;
|
|
127265
127472
|
if (!this._isWebGLCanvas) {
|
|
127266
127473
|
const ctx = this.canvas.getContext("2d");
|
|
127267
127474
|
ctx.scale(pixelRatio, pixelRatio); // apply the pixelRatio as a scale on the 2d context for drawing of decorations, etc.
|
|
@@ -127269,8 +127476,8 @@ class CanvasState {
|
|
|
127269
127476
|
}
|
|
127270
127477
|
return true;
|
|
127271
127478
|
}
|
|
127272
|
-
get width() { return this.
|
|
127273
|
-
get height() { return this.
|
|
127479
|
+
get width() { return this.canvas.width; }
|
|
127480
|
+
get height() { return this.canvas.height; }
|
|
127274
127481
|
}
|
|
127275
127482
|
/** A Target that renders to a canvas on the screen
|
|
127276
127483
|
* @internal
|
|
@@ -127431,6 +127638,9 @@ class OnScreenTarget extends Target {
|
|
|
127431
127638
|
setRenderToScreen(toScreen) {
|
|
127432
127639
|
if (toScreen === this._usingWebGLCanvas)
|
|
127433
127640
|
return;
|
|
127641
|
+
// NB: need to force a buffer change in this case because nothing is changing sizes except the webglCanvas
|
|
127642
|
+
if (toScreen)
|
|
127643
|
+
this.compositor.forceBufferChange();
|
|
127434
127644
|
this._usingWebGLCanvas = toScreen;
|
|
127435
127645
|
return toScreen ? this._webglCanvas.canvas : undefined;
|
|
127436
127646
|
}
|
|
@@ -139505,6 +139715,51 @@ class GraphicsTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.Tile {
|
|
|
139505
139715
|
}
|
|
139506
139716
|
|
|
139507
139717
|
|
|
139718
|
+
/***/ }),
|
|
139719
|
+
|
|
139720
|
+
/***/ "../../core/frontend/lib/esm/tile/FetchCloudStorage.js":
|
|
139721
|
+
/*!*************************************************************!*\
|
|
139722
|
+
!*** ../../core/frontend/lib/esm/tile/FetchCloudStorage.js ***!
|
|
139723
|
+
\*************************************************************/
|
|
139724
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
139725
|
+
|
|
139726
|
+
"use strict";
|
|
139727
|
+
__webpack_require__.r(__webpack_exports__);
|
|
139728
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
139729
|
+
/* harmony export */ FetchCloudStorage: () => (/* binding */ FetchCloudStorage)
|
|
139730
|
+
/* harmony export */ });
|
|
139731
|
+
/** @internal */
|
|
139732
|
+
class FetchCloudStorage {
|
|
139733
|
+
async download(input) {
|
|
139734
|
+
if (input.transferType === "stream")
|
|
139735
|
+
throw new Error("Method not implemented.");
|
|
139736
|
+
if (this.isUrlInput(input)) {
|
|
139737
|
+
return (await fetch(input.url)).arrayBuffer();
|
|
139738
|
+
}
|
|
139739
|
+
if (!("authentication" in input.transferConfig))
|
|
139740
|
+
throw new Error("authentication missing in transferConfig");
|
|
139741
|
+
const url = `${input.transferConfig.baseUrl}/${this.buildObjectKey(input.reference)}?${input.transferConfig.authentication}`;
|
|
139742
|
+
const resp = await fetch(url);
|
|
139743
|
+
if (!resp.ok)
|
|
139744
|
+
throw new Error(resp.statusText);
|
|
139745
|
+
return resp.arrayBuffer();
|
|
139746
|
+
}
|
|
139747
|
+
buildObjectKey(ref) {
|
|
139748
|
+
const relative = ref.relativeDirectory ? `/${ref.relativeDirectory}` : "";
|
|
139749
|
+
return `${ref.baseDirectory}${relative}/${ref.objectName}`;
|
|
139750
|
+
}
|
|
139751
|
+
isUrlInput(input) {
|
|
139752
|
+
return "url" in input;
|
|
139753
|
+
}
|
|
139754
|
+
async upload(_input) {
|
|
139755
|
+
throw new Error("Method not implemented.");
|
|
139756
|
+
}
|
|
139757
|
+
async uploadInMultipleParts(_input) {
|
|
139758
|
+
throw new Error("Method not implemented.");
|
|
139759
|
+
}
|
|
139760
|
+
}
|
|
139761
|
+
|
|
139762
|
+
|
|
139508
139763
|
/***/ }),
|
|
139509
139764
|
|
|
139510
139765
|
/***/ "../../core/frontend/lib/esm/tile/GltfReader.js":
|
|
@@ -145068,7 +145323,10 @@ class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
|
|
|
145068
145323
|
get isPointCloud() { return this.realityRoot.loader.containsPointClouds; }
|
|
145069
145324
|
/** @internal */
|
|
145070
145325
|
get isLoaded() { return this.loadStatus === _internal__WEBPACK_IMPORTED_MODULE_5__.TileLoadStatus.Ready; } // Reality tiles may depend on secondary tiles (maps) so can ge loaded but not ready.
|
|
145071
|
-
/**
|
|
145326
|
+
/** A representation of the tile's geometry.
|
|
145327
|
+
* This property is only available when using [[TileGeometryCollector]].
|
|
145328
|
+
* @beta
|
|
145329
|
+
*/
|
|
145072
145330
|
get geometry() { return this._geometry; }
|
|
145073
145331
|
/** @internal */
|
|
145074
145332
|
get isDisplayable() {
|
|
@@ -147120,25 +147378,14 @@ class TileAdmin {
|
|
|
147120
147378
|
async getTileStorage() {
|
|
147121
147379
|
if (this._tileStorage !== undefined)
|
|
147122
147380
|
return this._tileStorage;
|
|
147123
|
-
// if object-storage-azure is already being dynamically loaded, just return the promise.
|
|
147124
|
-
if (this._tileStoragePromise !== undefined)
|
|
147125
|
-
return this._tileStoragePromise;
|
|
147126
147381
|
// if custom implementation is provided, construct a new TileStorage instance and return it.
|
|
147127
147382
|
if (this._cloudStorage !== undefined) {
|
|
147128
147383
|
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(this._cloudStorage);
|
|
147129
147384
|
return this._tileStorage;
|
|
147130
147385
|
}
|
|
147131
|
-
|
|
147132
|
-
this.
|
|
147133
|
-
|
|
147134
|
-
const objectStorage = await Promise.all(/*! import() | object-storage-azure */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_2_0_0_scz6qrwecfbbxg4vskopkl-749c19"), __webpack_require__.e("object-storage-azure")]).then(__webpack_require__.t.bind(__webpack_require__, /*! @itwin/object-storage-azure/lib/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+object-storage-azure@2.0.0_scz6qrwecfbbxg4vskopkl3a7u/node_modules/@itwin/object-storage-azure/lib/frontend/index.js", 23));
|
|
147135
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
147136
|
-
const { AzureFrontendStorage, FrontendBlockBlobClientWrapperFactory } = objectStorage.default ?? objectStorage;
|
|
147137
|
-
const azureStorage = new AzureFrontendStorage(new FrontendBlockBlobClientWrapperFactory());
|
|
147138
|
-
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(azureStorage);
|
|
147139
|
-
return this._tileStorage;
|
|
147140
|
-
})();
|
|
147141
|
-
return this._tileStoragePromise;
|
|
147386
|
+
const fetchStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.FetchCloudStorage();
|
|
147387
|
+
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(fetchStorage);
|
|
147388
|
+
return this._tileStorage;
|
|
147142
147389
|
}
|
|
147143
147390
|
/** @internal */
|
|
147144
147391
|
get enableInstancing() { return this._enableInstancing; }
|
|
@@ -149725,6 +149972,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
149725
149972
|
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */ _DisclosedTileTreeSet__WEBPACK_IMPORTED_MODULE_3__.DisclosedTileTreeSet),
|
|
149726
149973
|
/* harmony export */ DynamicIModelTile: () => (/* reexport safe */ _DynamicIModelTile__WEBPACK_IMPORTED_MODULE_74__.DynamicIModelTile),
|
|
149727
149974
|
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */ _map_EllipsoidTerrainProvider__WEBPACK_IMPORTED_MODULE_64__.EllipsoidTerrainProvider),
|
|
149975
|
+
/* harmony export */ FetchCloudStorage: () => (/* reexport safe */ _FetchCloudStorage__WEBPACK_IMPORTED_MODULE_86__.FetchCloudStorage),
|
|
149728
149976
|
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */ _map_MapTilingScheme__WEBPACK_IMPORTED_MODULE_69__.GeographicTilingScheme),
|
|
149729
149977
|
/* harmony export */ GltfBufferData: () => (/* reexport safe */ _GltfReader__WEBPACK_IMPORTED_MODULE_30__.GltfBufferData),
|
|
149730
149978
|
/* harmony export */ GltfGraphicsReader: () => (/* reexport safe */ _GltfReader__WEBPACK_IMPORTED_MODULE_30__.GltfGraphicsReader),
|
|
@@ -149938,6 +150186,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
149938
150186
|
/* harmony import */ var _ContextShareProvider__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ContextShareProvider */ "../../core/frontend/lib/esm/tile/ContextShareProvider.js");
|
|
149939
150187
|
/* harmony import */ var _ThreeDTileFormatInterpreter__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./ThreeDTileFormatInterpreter */ "../../core/frontend/lib/esm/tile/ThreeDTileFormatInterpreter.js");
|
|
149940
150188
|
/* harmony import */ var _OPCFormatInterpreter__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./OPCFormatInterpreter */ "../../core/frontend/lib/esm/tile/OPCFormatInterpreter.js");
|
|
150189
|
+
/* harmony import */ var _FetchCloudStorage__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./FetchCloudStorage */ "../../core/frontend/lib/esm/tile/FetchCloudStorage.js");
|
|
149941
150190
|
/*---------------------------------------------------------------------------------------------
|
|
149942
150191
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
149943
150192
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -150040,6 +150289,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
150040
150289
|
|
|
150041
150290
|
|
|
150042
150291
|
|
|
150292
|
+
|
|
150043
150293
|
|
|
150044
150294
|
|
|
150045
150295
|
/***/ }),
|
|
@@ -151424,7 +151674,7 @@ class ArcGISImageryProvider extends _internal__WEBPACK_IMPORTED_MODULE_0__.MapLa
|
|
|
151424
151674
|
tmpUrl.searchParams.append("f", "json");
|
|
151425
151675
|
response = await fetch(tmpUrl.toString(), options);
|
|
151426
151676
|
}
|
|
151427
|
-
errorCode = await _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisUtilities.checkForResponseErrorCode(response
|
|
151677
|
+
errorCode = await _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisUtilities.checkForResponseErrorCode(response);
|
|
151428
151678
|
if (errorCode !== undefined &&
|
|
151429
151679
|
(errorCode === _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisErrorCode.TokenRequired || errorCode === _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisErrorCode.InvalidToken)) {
|
|
151430
151680
|
if (this._settings.userName && this._settings.userName.length > 0 && this._lastAccessToken) {
|
|
@@ -151442,7 +151692,7 @@ class ArcGISImageryProvider extends _internal__WEBPACK_IMPORTED_MODULE_0__.MapLa
|
|
|
151442
151692
|
}
|
|
151443
151693
|
// Make a second attempt with refreshed token
|
|
151444
151694
|
response = await fetch(urlObj2.toString(), options);
|
|
151445
|
-
errorCode = await _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisUtilities.checkForResponseErrorCode(response
|
|
151695
|
+
errorCode = await _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisUtilities.checkForResponseErrorCode(response);
|
|
151446
151696
|
}
|
|
151447
151697
|
if (errorCode === _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisErrorCode.TokenRequired || errorCode === _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisErrorCode.InvalidToken) {
|
|
151448
151698
|
// Looks like the initially generated token has expired.
|
|
@@ -166953,9 +167203,9 @@ class ToolAdmin {
|
|
|
166953
167203
|
_IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.viewManager.endDynamicsMode();
|
|
166954
167204
|
this.setCursor(_IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.viewManager.crossHairCursor);
|
|
166955
167205
|
}
|
|
166956
|
-
/**
|
|
166957
|
-
fillEventFromCursorLocation(ev) { this.currentInputState.toEvent(ev,
|
|
166958
|
-
/**
|
|
167206
|
+
/** Fill the supplied button event from the current cursor location. */
|
|
167207
|
+
fillEventFromCursorLocation(ev, useSnap = true) { this.currentInputState.toEvent(ev, useSnap); }
|
|
167208
|
+
/** Fill the supplied button event from the last data button location. */
|
|
166959
167209
|
fillEventFromLastDataButton(ev) { this.currentInputState.toEventFromLastDataPoint(ev); }
|
|
166960
167210
|
/** @internal */
|
|
166961
167211
|
setAdjustedDataPoint(ev) { this.currentInputState.adjustLastDataPoint(ev); }
|
|
@@ -277437,9 +277687,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
277437
277687
|
*/
|
|
277438
277688
|
|
|
277439
277689
|
|
|
277440
|
-
/**
|
|
277441
|
-
* @
|
|
277442
|
-
* Represents a particular occurrence of an event that can be tracked through various telemetry services
|
|
277690
|
+
/** Represents a particular occurrence of an event that can be tracked through various telemetry services
|
|
277691
|
+
* @internal
|
|
277443
277692
|
*/
|
|
277444
277693
|
class TelemetryEvent {
|
|
277445
277694
|
constructor(
|
|
@@ -277478,7 +277727,7 @@ class TelemetryEvent {
|
|
|
277478
277727
|
return properties;
|
|
277479
277728
|
}
|
|
277480
277729
|
}
|
|
277481
|
-
/** @
|
|
277730
|
+
/** @internal */
|
|
277482
277731
|
class TelemetryManager {
|
|
277483
277732
|
constructor(...clients) {
|
|
277484
277733
|
this._clients = new Set(clients);
|
|
@@ -277530,7 +277779,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
277530
277779
|
/** Logger categories used by this package
|
|
277531
277780
|
* @note All logger categories in this package start with the `telemetry-client` prefix.
|
|
277532
277781
|
* @see [Logger]($bentley)
|
|
277533
|
-
* @
|
|
277782
|
+
* @internal
|
|
277534
277783
|
*/
|
|
277535
277784
|
var TelemetryClientLoggerCategory;
|
|
277536
277785
|
(function (TelemetryClientLoggerCategory) {
|
|
@@ -278452,7 +278701,7 @@ class TestContext {
|
|
|
278452
278701
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
278453
278702
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
278454
278703
|
await core_frontend_1.NoRenderApp.startup({
|
|
278455
|
-
applicationVersion: "4.1.0-dev.
|
|
278704
|
+
applicationVersion: "4.1.0-dev.62",
|
|
278456
278705
|
applicationId: this.settings.gprid,
|
|
278457
278706
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
278458
278707
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -285862,13 +286111,13 @@ class FavoritePropertiesManager {
|
|
|
285862
286111
|
});
|
|
285863
286112
|
if (missingClasses.size === 0)
|
|
285864
286113
|
return baseClasses;
|
|
285865
|
-
const query = `
|
|
285866
|
-
SELECT (derivedSchema.Name || ':' || derivedClass.Name) AS "ClassFullName", (baseSchema.Name || ':' || baseClass.Name) AS "BaseClassFullName"
|
|
285867
|
-
FROM ECDbMeta.ClassHasAllBaseClasses baseClassRels
|
|
285868
|
-
INNER JOIN ECDbMeta.ECClassDef derivedClass ON derivedClass.ECInstanceId = baseClassRels.SourceECInstanceId
|
|
285869
|
-
INNER JOIN ECDbMeta.ECSchemaDef derivedSchema ON derivedSchema.ECInstanceId = derivedClass.Schema.Id
|
|
285870
|
-
INNER JOIN ECDbMeta.ECClassDef baseClass ON baseClass.ECInstanceId = baseClassRels.TargetECInstanceId
|
|
285871
|
-
INNER JOIN ECDbMeta.ECSchemaDef baseSchema ON baseSchema.ECInstanceId = baseClass.Schema.Id
|
|
286114
|
+
const query = `
|
|
286115
|
+
SELECT (derivedSchema.Name || ':' || derivedClass.Name) AS "ClassFullName", (baseSchema.Name || ':' || baseClass.Name) AS "BaseClassFullName"
|
|
286116
|
+
FROM ECDbMeta.ClassHasAllBaseClasses baseClassRels
|
|
286117
|
+
INNER JOIN ECDbMeta.ECClassDef derivedClass ON derivedClass.ECInstanceId = baseClassRels.SourceECInstanceId
|
|
286118
|
+
INNER JOIN ECDbMeta.ECSchemaDef derivedSchema ON derivedSchema.ECInstanceId = derivedClass.Schema.Id
|
|
286119
|
+
INNER JOIN ECDbMeta.ECClassDef baseClass ON baseClass.ECInstanceId = baseClassRels.TargetECInstanceId
|
|
286120
|
+
INNER JOIN ECDbMeta.ECSchemaDef baseSchema ON baseSchema.ECInstanceId = baseClass.Schema.Id
|
|
285872
286121
|
WHERE (derivedSchema.Name || ':' || derivedClass.Name) IN (${[...missingClasses].map((className) => `'${className}'`).join(",")})`;
|
|
285873
286122
|
const reader = imodel.createQueryReader(query, undefined, { rowFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.QueryRowFormat.UseJsPropertyNames });
|
|
285874
286123
|
while (await reader.step()) {
|
|
@@ -297826,7 +298075,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
297826
298075
|
/***/ ((module) => {
|
|
297827
298076
|
|
|
297828
298077
|
"use strict";
|
|
297829
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.1.0-dev.
|
|
298078
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.1.0-dev.62","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"./node_modules/@itwin/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.1.0-dev.62","@itwin/core-bentley":"workspace:^4.1.0-dev.62","@itwin/core-common":"workspace:^4.1.0-dev.62","@itwin/core-geometry":"workspace:^4.1.0-dev.62","@itwin/core-orbitgt":"workspace:^4.1.0-dev.62","@itwin/core-quantity":"workspace:^4.1.0-dev.62"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"4.0.0-dev.36","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^8.2.2","@types/node":"18.16.1","@types/sinon":"^10.0.15","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^8.36.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^15.0.4","source-map-loader":"^4.0.0","typescript":"~5.0.2","webpack":"^5.76.0"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/cloud-agnostic-core":"^2.0.0","@itwin/object-storage-core":"^2.0.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
297830
298079
|
|
|
297831
298080
|
/***/ }),
|
|
297832
298081
|
|