@itwin/ecschema-rpcinterface-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 +874 -625
- 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 +15 -15
- 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
|
@@ -27061,28 +27061,36 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27061
27061
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
27062
27062
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
27063
27063
|
*--------------------------------------------------------------------------------------------*/
|
|
27064
|
-
/** @
|
|
27064
|
+
/** @packageDocumentation
|
|
27065
|
+
* @module Utils
|
|
27066
|
+
*/
|
|
27065
27067
|
const defaultYieldManagerOptions = {
|
|
27066
27068
|
iterationsBeforeYield: 1000,
|
|
27067
27069
|
};
|
|
27068
|
-
/**
|
|
27069
|
-
*
|
|
27070
|
-
*
|
|
27071
|
-
*
|
|
27072
|
-
*
|
|
27073
|
-
*
|
|
27070
|
+
/** Provides a mechanism by which a loop can be made to periodically yield control back to the browser/node environment.
|
|
27071
|
+
* This can alleviate [performance and memory consumption issues](https://github.com/nodejs/node-addon-api/issues/1140).
|
|
27072
|
+
* It maintains a count of the number of iterations that have occurred since the last yield.
|
|
27073
|
+
* The constructor specifies how many iterations of the loop are permitted before yielding.
|
|
27074
|
+
* The loop should `await` [[allowYield]] on each iteration.
|
|
27075
|
+
* [[allowYield]] will yield (and reset the iteration counter) if the counter exceeds the specified maximum.
|
|
27076
|
+
* @public
|
|
27074
27077
|
*/
|
|
27075
27078
|
class YieldManager {
|
|
27079
|
+
/** Constructor.
|
|
27080
|
+
* @param options Options customizing the yield behavior. Omitted properties are assigned their default values.
|
|
27081
|
+
*/
|
|
27076
27082
|
constructor(options = {}) {
|
|
27077
27083
|
this._counter = 0;
|
|
27078
27084
|
this.options = { ...defaultYieldManagerOptions, ...options };
|
|
27079
27085
|
}
|
|
27086
|
+
/** Increment the iteration counter, yielding control and resetting the counter if [[options.iterationsBeforeYield]] is exceeded. */
|
|
27080
27087
|
async allowYield() {
|
|
27081
27088
|
this._counter = (this._counter + 1) % this.options.iterationsBeforeYield;
|
|
27082
27089
|
if (this._counter === 0) {
|
|
27083
27090
|
await this.actualYield();
|
|
27084
27091
|
}
|
|
27085
27092
|
}
|
|
27093
|
+
/** @internal */
|
|
27086
27094
|
async actualYield() {
|
|
27087
27095
|
await new Promise((r) => setTimeout(r, 0));
|
|
27088
27096
|
}
|
|
@@ -31929,15 +31937,15 @@ class ECSqlReader {
|
|
|
31929
31937
|
return resp.data;
|
|
31930
31938
|
}
|
|
31931
31939
|
/**
|
|
31932
|
-
*
|
|
31940
|
+
* @internal
|
|
31933
31941
|
*/
|
|
31934
31942
|
async runWithRetry(request) {
|
|
31935
|
-
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);
|
|
31943
|
+
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);
|
|
31936
31944
|
const updateStats = (rs) => {
|
|
31937
31945
|
this._stats.backendCpuTime += rs.stats.cpuTime;
|
|
31938
31946
|
this._stats.backendTotalTime += rs.stats.totalTime;
|
|
31939
31947
|
this._stats.backendMemUsed += rs.stats.memUsed;
|
|
31940
|
-
this._stats.backendRowsReturned += rs.data.length;
|
|
31948
|
+
this._stats.backendRowsReturned += (rs.data === undefined) ? 0 : rs.data.length;
|
|
31941
31949
|
};
|
|
31942
31950
|
const execQuery = async (req) => {
|
|
31943
31951
|
const startTime = Date.now();
|
|
@@ -32810,49 +32818,89 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32810
32818
|
* @module Rendering
|
|
32811
32819
|
*/
|
|
32812
32820
|
|
|
32813
|
-
/**
|
|
32821
|
+
/** As part of a [[ColorIndex]], describes per-vertex colors for a [MeshArgs]($frontend) or [PolylineArgs]($frontend).
|
|
32822
|
+
* The [[colors]] array holds the set of unique colors. The [[indices]] array describes the color of each vertex as an index into [[colors]].
|
|
32823
|
+
* @note A `NonUniformColor` table cannot contain a mix of opaque and translucent colors. If any color in [[colors]] has a transparency greater
|
|
32824
|
+
* than zero, all of them must have a transparency greater than zero.
|
|
32825
|
+
* @public
|
|
32826
|
+
*/
|
|
32814
32827
|
class NonUniformColor {
|
|
32828
|
+
/** Constructor.
|
|
32829
|
+
* @param colors See [[colors]].
|
|
32830
|
+
* @param indices See [[indices]]
|
|
32831
|
+
* @param hasAlpha `true` if all `colors` have a transparency greater than zero, or `false` if they all have a transparency of zero.
|
|
32832
|
+
*/
|
|
32815
32833
|
constructor(colors, indices, hasAlpha) {
|
|
32816
32834
|
this.colors = new Uint32Array(colors.buffer);
|
|
32817
32835
|
this.indices = Uint16Array.from(indices);
|
|
32818
32836
|
this.isOpaque = !hasAlpha;
|
|
32819
32837
|
}
|
|
32820
32838
|
}
|
|
32821
|
-
/**
|
|
32839
|
+
/** Describes the color(s) of the vertices of a [MeshArgs]($frontend) or [PolylineArgs]($frontend).
|
|
32840
|
+
* This may be a uniform color to be applied to every vertex, or a table specifying individual per-vertex colors.
|
|
32841
|
+
* @public
|
|
32842
|
+
*/
|
|
32822
32843
|
class ColorIndex {
|
|
32844
|
+
/** Whether the color(s) in this index have transparency. */
|
|
32823
32845
|
get hasAlpha() { return !this._color.isOpaque; }
|
|
32846
|
+
/** Whether this index specifies a single uniform color for the entire mesh or polyline. */
|
|
32824
32847
|
get isUniform() { return this._color instanceof _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef; }
|
|
32848
|
+
/** The number of colors in this index. */
|
|
32825
32849
|
get numColors() { return this.isUniform ? 1 : this.nonUniform.colors.length; }
|
|
32850
|
+
/** Construct a default index specifying a uniform white color. */
|
|
32826
32851
|
constructor() { this._color = _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef.white; }
|
|
32852
|
+
/** Reset this index to specify a uniform white color. */
|
|
32827
32853
|
reset() { this._color = _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef.white; }
|
|
32854
|
+
/** Returns the single color to be applied to all vertices, if [[isUniform]] is `true`; or `undefined` otherwise. */
|
|
32828
32855
|
get uniform() {
|
|
32829
32856
|
return this.isUniform ? this._color : undefined;
|
|
32830
32857
|
}
|
|
32858
|
+
/** Set the specified color to be applied to all vertices. */
|
|
32831
32859
|
initUniform(color) {
|
|
32832
32860
|
this._color = typeof color === "number" ? _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef.fromJSON(color) : color;
|
|
32833
32861
|
}
|
|
32862
|
+
/** Returns the per-vertex colors, if [[isUniform]] is `false`; or `undefined` otherwise. */
|
|
32834
32863
|
get nonUniform() {
|
|
32835
32864
|
return !this.isUniform ? this._color : undefined;
|
|
32836
32865
|
}
|
|
32866
|
+
/** Set the per-vertex colors.
|
|
32867
|
+
* @param colors See [[NonUniformColor.colors]].
|
|
32868
|
+
* @param indices See [[NonUniformColor.indices]].
|
|
32869
|
+
* @param hasAlpha `true` if all `colors` have a transparency greater than zero, or `false` if they all have a transparency of zero.
|
|
32870
|
+
*/
|
|
32837
32871
|
initNonUniform(colors, indices, hasAlpha) {
|
|
32838
32872
|
this._color = new NonUniformColor(colors, indices, hasAlpha);
|
|
32839
32873
|
}
|
|
32840
32874
|
}
|
|
32841
|
-
/**
|
|
32875
|
+
/** Describes the type of a [[FeatureIndex]].
|
|
32876
|
+
* @public
|
|
32877
|
+
*/
|
|
32842
32878
|
var FeatureIndexType;
|
|
32843
32879
|
(function (FeatureIndexType) {
|
|
32880
|
+
/** Indicates that the index contains no features. */
|
|
32844
32881
|
FeatureIndexType[FeatureIndexType["Empty"] = 0] = "Empty";
|
|
32882
|
+
/** Indicates that the index contains exactly one feature. */
|
|
32845
32883
|
FeatureIndexType[FeatureIndexType["Uniform"] = 1] = "Uniform";
|
|
32884
|
+
/** Indicates that the index contains more than one feature. */
|
|
32846
32885
|
FeatureIndexType[FeatureIndexType["NonUniform"] = 2] = "NonUniform";
|
|
32847
32886
|
})(FeatureIndexType || (FeatureIndexType = {}));
|
|
32848
|
-
/**
|
|
32887
|
+
/** Describes the set of [[Feature]]s associated with a [MeshArgs]($frontend) or [PolylineArgs]($frontend).
|
|
32888
|
+
* The mesh or polyline may have zero or one features; or, individual vertices may be associated with different features.
|
|
32889
|
+
* The features are expressed as unsigned 32-bit integer Ids of [[Feature]]s within a [[FeatureTable]].
|
|
32890
|
+
* @public
|
|
32891
|
+
*/
|
|
32849
32892
|
class FeatureIndex {
|
|
32850
32893
|
constructor() {
|
|
32894
|
+
/** Describes the quantity (zero, one, or more than one) of features in this index. */
|
|
32851
32895
|
this.type = FeatureIndexType.Empty;
|
|
32896
|
+
/** If [[type]] is [[FeatureIndexType.Uniform]], the Id of the single feature. */
|
|
32852
32897
|
this.featureID = 0;
|
|
32853
32898
|
}
|
|
32899
|
+
/** True if [[type]] is [[FeatureIndexType.Uniform]]. */
|
|
32854
32900
|
get isUniform() { return FeatureIndexType.Uniform === this.type; }
|
|
32901
|
+
/** True if [[type]] is [[FeatureIndexType.Empty]]. */
|
|
32855
32902
|
get isEmpty() { return FeatureIndexType.Empty === this.type; }
|
|
32903
|
+
/** Reset to an empty index. */
|
|
32856
32904
|
reset() {
|
|
32857
32905
|
this.type = FeatureIndexType.Empty;
|
|
32858
32906
|
this.featureID = 0;
|
|
@@ -33564,9 +33612,12 @@ class Feature {
|
|
|
33564
33612
|
return cmp;
|
|
33565
33613
|
}
|
|
33566
33614
|
}
|
|
33567
|
-
/** @
|
|
33615
|
+
/** @public */
|
|
33568
33616
|
var ModelFeature;
|
|
33569
33617
|
(function (ModelFeature) {
|
|
33618
|
+
/** Create a ModelFeature of [[GeometryClass.Primary]] with all invalid Ids.
|
|
33619
|
+
* This is primarily useful for creating a `result` argument for [[RenderFeatureTable.findFeature]] and [[RenderFeatureTable.getFeature]].
|
|
33620
|
+
*/
|
|
33570
33621
|
function create() {
|
|
33571
33622
|
return {
|
|
33572
33623
|
modelId: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.invalid,
|
|
@@ -33576,10 +33627,12 @@ var ModelFeature;
|
|
|
33576
33627
|
};
|
|
33577
33628
|
}
|
|
33578
33629
|
ModelFeature.create = create;
|
|
33630
|
+
/** Returns `true` if any of `feature`'s properties differ from the defaults (invalid Ids and [[GeometryClass.Primary]]). */
|
|
33579
33631
|
function isDefined(feature) {
|
|
33580
33632
|
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;
|
|
33581
33633
|
}
|
|
33582
33634
|
ModelFeature.isDefined = isDefined;
|
|
33635
|
+
/** @alpha */
|
|
33583
33636
|
function unpack(packed, result, unpackedModelId) {
|
|
33584
33637
|
result.modelId = unpackedModelId ?? _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.fromUint32PairObject(packed.modelId);
|
|
33585
33638
|
result.elementId = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.fromUint32PairObject(packed.elementId);
|
|
@@ -33589,9 +33642,12 @@ var ModelFeature;
|
|
|
33589
33642
|
}
|
|
33590
33643
|
ModelFeature.unpack = unpack;
|
|
33591
33644
|
})(ModelFeature || (ModelFeature = {}));
|
|
33592
|
-
/** @
|
|
33645
|
+
/** @public */
|
|
33593
33646
|
var PackedFeature;
|
|
33594
33647
|
(function (PackedFeature) {
|
|
33648
|
+
/** Create a PackedFeature of [[GeometryClass.Primary]] with all invalid Ids.
|
|
33649
|
+
* This is primarily useful for creating a `result` argument for [[RenderFeatureTable.getPackedFeature]].
|
|
33650
|
+
*/
|
|
33595
33651
|
function create() {
|
|
33596
33652
|
const pair = { upper: 0, lower: 0 };
|
|
33597
33653
|
return {
|
|
@@ -33603,6 +33659,9 @@ var PackedFeature;
|
|
|
33603
33659
|
};
|
|
33604
33660
|
}
|
|
33605
33661
|
PackedFeature.create = create;
|
|
33662
|
+
/** Create a PackedFeatureWithIndex of [[GeometryClass.Primary]] with all invalid Ids and an index of zero.
|
|
33663
|
+
* This is primarily useful for creating a reusable `output` argument for [[RenderFeatureTable.iterable]].
|
|
33664
|
+
*/
|
|
33606
33665
|
function createWithIndex() {
|
|
33607
33666
|
const result = create();
|
|
33608
33667
|
result.index = 0;
|
|
@@ -33677,6 +33736,10 @@ class FeatureTable extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Inde
|
|
|
33677
33736
|
}
|
|
33678
33737
|
/** @internal */
|
|
33679
33738
|
getArray() { return this._array; }
|
|
33739
|
+
/** Convert this feature table to a representation that can be supplied to [RenderSystem.createBatch]($frontend). */
|
|
33740
|
+
pack() {
|
|
33741
|
+
return PackedFeatureTable.pack(this);
|
|
33742
|
+
}
|
|
33680
33743
|
}
|
|
33681
33744
|
const scratchPackedFeature = PackedFeature.create();
|
|
33682
33745
|
function populateAnimationNodeIds(table, computeNodeId, maxNodeId) {
|
|
@@ -35960,7 +36023,7 @@ class IModel {
|
|
|
35960
36023
|
...this._getRpcProps(),
|
|
35961
36024
|
};
|
|
35962
36025
|
}
|
|
35963
|
-
/**
|
|
36026
|
+
/** Convert this iModel to a JSON representation. */
|
|
35964
36027
|
toJSON() {
|
|
35965
36028
|
return this.getConnectionProps();
|
|
35966
36029
|
}
|
|
@@ -38677,7 +38740,7 @@ var QPoint3dBuffer;
|
|
|
38677
38740
|
QPoint3dBuffer.getQPoint = getQPoint;
|
|
38678
38741
|
/** Extracts and unquantizes the point at the specified index from a buffer.
|
|
38679
38742
|
* @param buffer The array of points and the quantization parameters.
|
|
38680
|
-
* @param The index of the point to extract, ranging from zero to one less than the number of points in the buffer.
|
|
38743
|
+
* @param buffer The index of the point to extract, ranging from zero to one less than the number of points in the buffer.
|
|
38681
38744
|
* @param result If supplied, a preallocated [Point3d]($core-geometry) to initialize with the result and return.
|
|
38682
38745
|
* @returns The point at `pointIndex`.
|
|
38683
38746
|
* @throws Error if `pointIndex` is out of bounds.
|
|
@@ -38698,14 +38761,14 @@ class QPoint3dList {
|
|
|
38698
38761
|
return this._list;
|
|
38699
38762
|
}
|
|
38700
38763
|
/** Construct an empty list set up to quantize to the supplied range.
|
|
38701
|
-
* @param The quantization parameters. If omitted, a null range will be used.
|
|
38764
|
+
* @param params The quantization parameters. If omitted, a null range will be used.
|
|
38702
38765
|
*/
|
|
38703
38766
|
constructor(params) {
|
|
38704
38767
|
this._list = [];
|
|
38705
38768
|
this.params = params ? params.clone() : QParams3d.fromRange(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range3d.createNull());
|
|
38706
38769
|
}
|
|
38707
38770
|
/** Construct a QPoint3dList containing all points in the supplied list, quantized to the range of those points.
|
|
38708
|
-
* @param The points to quantize and add to the list.
|
|
38771
|
+
* @param points The points to quantize and add to the list.
|
|
38709
38772
|
* @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.
|
|
38710
38773
|
*/
|
|
38711
38774
|
static fromPoints(points, out) {
|
|
@@ -39114,13 +39177,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
39114
39177
|
/* harmony export */ MeshEdges: () => (/* binding */ MeshEdges),
|
|
39115
39178
|
/* harmony export */ MeshPolyline: () => (/* binding */ MeshPolyline),
|
|
39116
39179
|
/* harmony export */ MeshPolylineList: () => (/* binding */ MeshPolylineList),
|
|
39117
|
-
/* harmony export */ PolylineData: () => (/* binding */ PolylineData),
|
|
39118
39180
|
/* harmony export */ PolylineEdgeArgs: () => (/* binding */ PolylineEdgeArgs),
|
|
39119
|
-
/* harmony export */ PolylineFlags: () => (/* binding */ PolylineFlags),
|
|
39120
39181
|
/* harmony export */ PolylineTypeFlags: () => (/* binding */ PolylineTypeFlags),
|
|
39121
39182
|
/* harmony export */ SilhouetteEdgeArgs: () => (/* binding */ SilhouetteEdgeArgs)
|
|
39122
39183
|
/* harmony export */ });
|
|
39123
|
-
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
39124
39184
|
/*---------------------------------------------------------------------------------------------
|
|
39125
39185
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
39126
39186
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -39128,77 +39188,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
39128
39188
|
/** @packageDocumentation
|
|
39129
39189
|
* @module Rendering
|
|
39130
39190
|
*/
|
|
39131
|
-
|
|
39132
39191
|
// cSpell:ignore vals
|
|
39133
|
-
/**
|
|
39192
|
+
/** Describes the semantics of a [PolylineArgs]($frontend).
|
|
39193
|
+
* @alpha
|
|
39194
|
+
*/
|
|
39134
39195
|
var PolylineTypeFlags;
|
|
39135
39196
|
(function (PolylineTypeFlags) {
|
|
39136
39197
|
PolylineTypeFlags[PolylineTypeFlags["Normal"] = 0] = "Normal";
|
|
39137
39198
|
PolylineTypeFlags[PolylineTypeFlags["Edge"] = 1] = "Edge";
|
|
39138
39199
|
PolylineTypeFlags[PolylineTypeFlags["Outline"] = 2] = "Outline";
|
|
39139
39200
|
})(PolylineTypeFlags || (PolylineTypeFlags = {}));
|
|
39140
|
-
/** Flags describing a polyline. A polyline may represent a continuous line string, or a set of discrete points.
|
|
39141
|
-
* @internal
|
|
39142
|
-
*/
|
|
39143
|
-
class PolylineFlags {
|
|
39144
|
-
constructor(is2d = false, isPlanar = false, isDisjoint = false, type = PolylineTypeFlags.Normal) {
|
|
39145
|
-
this.isDisjoint = isDisjoint;
|
|
39146
|
-
this.isPlanar = isPlanar;
|
|
39147
|
-
this.is2d = is2d;
|
|
39148
|
-
this.type = type;
|
|
39149
|
-
}
|
|
39150
|
-
clone() { return new PolylineFlags(this.is2d, this.isPlanar, this.isDisjoint, this.type); }
|
|
39151
|
-
/** Create a PolylineFlags from a serialized numeric representation. */
|
|
39152
|
-
static unpack(value) {
|
|
39153
|
-
const isDisjoint = 0 !== (value & 1);
|
|
39154
|
-
const isPlanar = 0 !== (value & 2);
|
|
39155
|
-
const is2d = 0 !== (value & 4);
|
|
39156
|
-
const type = (value >> 3);
|
|
39157
|
-
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(type === PolylineTypeFlags.Normal || type === PolylineTypeFlags.Edge || type === PolylineTypeFlags.Outline);
|
|
39158
|
-
return new PolylineFlags(is2d, isPlanar, isDisjoint, type);
|
|
39159
|
-
}
|
|
39160
|
-
initDefaults() {
|
|
39161
|
-
this.isDisjoint = this.isPlanar = this.is2d = false;
|
|
39162
|
-
this.type = PolylineTypeFlags.Normal;
|
|
39163
|
-
}
|
|
39164
|
-
get isOutlineEdge() { return PolylineTypeFlags.Outline === this.type; }
|
|
39165
|
-
get isNormalEdge() { return PolylineTypeFlags.Edge === this.type; }
|
|
39166
|
-
get isAnyEdge() { return PolylineTypeFlags.Normal !== this.type; }
|
|
39167
|
-
setIsNormalEdge() { this.type = PolylineTypeFlags.Edge; }
|
|
39168
|
-
setIsOutlineEdge() { this.type = PolylineTypeFlags.Outline; }
|
|
39169
|
-
/** Convert these flags to a numeric representation for serialization. */
|
|
39170
|
-
pack() {
|
|
39171
|
-
let val = 0;
|
|
39172
|
-
if (this.isDisjoint)
|
|
39173
|
-
val += 1;
|
|
39174
|
-
if (this.isPlanar)
|
|
39175
|
-
val += 1 << 1;
|
|
39176
|
-
if (this.is2d)
|
|
39177
|
-
val += 1 << 2;
|
|
39178
|
-
val += this.type << 3;
|
|
39179
|
-
return val;
|
|
39180
|
-
}
|
|
39181
|
-
equals(other) {
|
|
39182
|
-
return this.type === other.type && this.is2d === other.is2d && this.isPlanar === other.isPlanar && this.isDisjoint === other.isDisjoint;
|
|
39183
|
-
}
|
|
39184
|
-
}
|
|
39185
|
-
/** @internal */
|
|
39186
|
-
class PolylineData {
|
|
39187
|
-
constructor(vertIndices = [], numIndices = 0) {
|
|
39188
|
-
this.vertIndices = vertIndices;
|
|
39189
|
-
this.numIndices = numIndices;
|
|
39190
|
-
}
|
|
39191
|
-
get isValid() { return 0 < this.numIndices; }
|
|
39192
|
-
reset() {
|
|
39193
|
-
this.numIndices = 0;
|
|
39194
|
-
this.vertIndices = [];
|
|
39195
|
-
}
|
|
39196
|
-
init(polyline) {
|
|
39197
|
-
this.numIndices = polyline.indices.length;
|
|
39198
|
-
this.vertIndices = 0 < this.numIndices ? polyline.indices : [];
|
|
39199
|
-
return this.isValid;
|
|
39200
|
-
}
|
|
39201
|
-
}
|
|
39202
39201
|
/** @internal */
|
|
39203
39202
|
class MeshPolyline {
|
|
39204
39203
|
constructor(indices = []) {
|
|
@@ -43753,7 +43752,9 @@ class ViewFlags {
|
|
|
43753
43752
|
edgesRequired() {
|
|
43754
43753
|
return edgesRequired(this.renderMode, this.visibleEdges);
|
|
43755
43754
|
}
|
|
43756
|
-
/** Convert to JSON representation.
|
|
43755
|
+
/** Convert to JSON representation.
|
|
43756
|
+
* Properties are omitted if they match the default values.
|
|
43757
|
+
*/
|
|
43757
43758
|
toJSON() {
|
|
43758
43759
|
const out = {};
|
|
43759
43760
|
if (!this.constructions)
|
|
@@ -43805,9 +43806,7 @@ class ViewFlags {
|
|
|
43805
43806
|
out.renderMode = this.renderMode;
|
|
43806
43807
|
return out;
|
|
43807
43808
|
}
|
|
43808
|
-
/** Like [[toJSON]], but no properties are omitted.
|
|
43809
|
-
* @internal
|
|
43810
|
-
*/
|
|
43809
|
+
/** Like [[toJSON]], but no properties are omitted. */
|
|
43811
43810
|
toFullyDefinedJSON() {
|
|
43812
43811
|
return {
|
|
43813
43812
|
renderMode: this.renderMode,
|
|
@@ -44225,9 +44224,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44225
44224
|
/* harmony export */ PlanarClipMaskSettings: () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__.PlanarClipMaskSettings),
|
|
44226
44225
|
/* harmony export */ PntsHeader: () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_148__.PntsHeader),
|
|
44227
44226
|
/* harmony export */ PointCloudDisplaySettings: () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_88__.PointCloudDisplaySettings),
|
|
44228
|
-
/* harmony export */ PolylineData: () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_89__.PolylineData),
|
|
44229
44227
|
/* harmony export */ PolylineEdgeArgs: () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_89__.PolylineEdgeArgs),
|
|
44230
|
-
/* harmony export */ PolylineFlags: () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_89__.PolylineFlags),
|
|
44231
44228
|
/* harmony export */ PolylineTypeFlags: () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_89__.PolylineTypeFlags),
|
|
44232
44229
|
/* harmony export */ PositionalVectorTransform: () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.PositionalVectorTransform),
|
|
44233
44230
|
/* harmony export */ PrimitiveTypeCode: () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PrimitiveTypeCode),
|
|
@@ -45975,7 +45972,7 @@ var BRepGeometryOperation;
|
|
|
45975
45972
|
BRepGeometryOperation[BRepGeometryOperation["Offset"] = 11] = "Offset";
|
|
45976
45973
|
})(BRepGeometryOperation || (BRepGeometryOperation = {}));
|
|
45977
45974
|
/** Provides utility functions for working with [[ElementGeometryDataEntry]].
|
|
45978
|
-
* @
|
|
45975
|
+
* @beta
|
|
45979
45976
|
*/
|
|
45980
45977
|
var ElementGeometry;
|
|
45981
45978
|
(function (ElementGeometry) {
|
|
@@ -69516,9 +69513,10 @@ class AccuDraw {
|
|
|
69516
69513
|
this._yIsNegative = false; // Last delta.y was negative
|
|
69517
69514
|
this._xIsExplicit = false; // Sign of delta.x established from user input input, don't allow +/- side flip.
|
|
69518
69515
|
this._yIsExplicit = false; // Sign of delta.y established from user input input, don't allow +/- side flip.
|
|
69519
|
-
|
|
69520
|
-
|
|
69521
|
-
|
|
69516
|
+
/** Disable automatic focus change when user is entering input. */
|
|
69517
|
+
this.dontMoveFocus = false;
|
|
69518
|
+
/** Set input field to move focus to (X_Item or Y_Item) for automatic focus change. */
|
|
69519
|
+
this.newFocus = ItemField.X_Item;
|
|
69522
69520
|
this._rMatrix = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d();
|
|
69523
69521
|
// Compass Display Preferences...
|
|
69524
69522
|
/** @internal */
|
|
@@ -69565,8 +69563,6 @@ class AccuDraw {
|
|
|
69565
69563
|
get isEnabled() { return (this.currentState > CurrentState.NotEnabled); }
|
|
69566
69564
|
get isInactive() { return (CurrentState.Inactive === this.currentState); }
|
|
69567
69565
|
get isDeactivated() { return (CurrentState.Deactivated === this.currentState); }
|
|
69568
|
-
/** @internal */
|
|
69569
|
-
setNewFocus(index) { this.newFocus = index; }
|
|
69570
69566
|
/** Get the current lock state for the supplied input field */
|
|
69571
69567
|
getFieldLock(index) { return this._fieldLocked[index]; }
|
|
69572
69568
|
/** @internal */
|
|
@@ -70605,7 +70601,7 @@ class AccuDraw {
|
|
|
70605
70601
|
this.published.flags = 0;
|
|
70606
70602
|
this.flags.rotationNeedsUpdate = true;
|
|
70607
70603
|
this.flags.fixedOrg = false;
|
|
70608
|
-
this.
|
|
70604
|
+
this.newFocus = ItemField.X_Item;
|
|
70609
70605
|
this.unlockAllFields();
|
|
70610
70606
|
if (this.rotationMode !== this.flags.baseRotation)
|
|
70611
70607
|
this.setRotationMode(this.flags.baseRotation);
|
|
@@ -72394,7 +72390,7 @@ class AccuSnap {
|
|
|
72394
72390
|
setIsFlashed(view) { this.areFlashed.add(view); }
|
|
72395
72391
|
clearIsFlashed(view) { this.areFlashed.delete(view); }
|
|
72396
72392
|
static toSnapDetail(hit) { return (hit && hit instanceof _HitDetail__WEBPACK_IMPORTED_MODULE_3__.SnapDetail) ? hit : undefined; }
|
|
72397
|
-
/**
|
|
72393
|
+
/** Currently active snap */
|
|
72398
72394
|
getCurrSnapDetail() { return AccuSnap.toSnapDetail(this.currHit); }
|
|
72399
72395
|
/** Determine whether there is a current hit that is *hot*. */
|
|
72400
72396
|
get isHot() {
|
|
@@ -72905,6 +72901,19 @@ class AccuSnap {
|
|
|
72905
72901
|
hitList.setCurrentHit(thisHit);
|
|
72906
72902
|
return thisSnap;
|
|
72907
72903
|
}
|
|
72904
|
+
/** Request a snap from the backend for the supplied HitDetail.
|
|
72905
|
+
* @param hit The HitDetail to snap to.
|
|
72906
|
+
* @param snapMode Optional SnapMode, uses active snap modes if not specified.
|
|
72907
|
+
* @return A Promise for the SnapDetail or undefined if no snap could be created.
|
|
72908
|
+
*/
|
|
72909
|
+
async doSnapRequest(hit, snapMode) {
|
|
72910
|
+
let snapModes;
|
|
72911
|
+
if (undefined === snapMode)
|
|
72912
|
+
snapModes = this.getActiveSnapModes();
|
|
72913
|
+
else
|
|
72914
|
+
snapModes = [snapMode];
|
|
72915
|
+
return AccuSnap.requestSnap(hit, snapModes, this._hotDistanceInches, this.keypointDivisor);
|
|
72916
|
+
}
|
|
72908
72917
|
findHits(ev, force = false) {
|
|
72909
72918
|
// When using AccuSnap to locate elements, we have to start with the datapoint adjusted
|
|
72910
72919
|
// for locks and not the raw point. Otherwise, when grid/unit lock are on, we locate elements by
|
|
@@ -74341,7 +74350,7 @@ class ModelChangeMonitor {
|
|
|
74341
74350
|
* Specialized tools are free to ignore these settings.
|
|
74342
74351
|
* @see [[BriefcaseConnection.editorToolSettings]] to query or modify the current settings for a briefcase.
|
|
74343
74352
|
* @see [CreateElementTool]($editor-frontend) for an example of a tool that uses these settings.
|
|
74344
|
-
* @
|
|
74353
|
+
* @beta
|
|
74345
74354
|
*/
|
|
74346
74355
|
class BriefcaseEditorToolSettings {
|
|
74347
74356
|
constructor() {
|
|
@@ -74368,7 +74377,7 @@ class BriefcaseEditorToolSettings {
|
|
|
74368
74377
|
/** The [Model]($backend) into which new elements should be inserted by default.
|
|
74369
74378
|
* Specialized tools are free to ignore this setting and instead use their own logic to select an appropriate model.
|
|
74370
74379
|
* @see [[onModelChanged]] to be notified when this property is modified.
|
|
74371
|
-
* @see [CreateElementTool.
|
|
74380
|
+
* @see [CreateElementTool.targetModelId]($editor-frontend) for an example of a tool that uses this setting.
|
|
74372
74381
|
*/
|
|
74373
74382
|
get model() {
|
|
74374
74383
|
return this._model;
|
|
@@ -74395,7 +74404,7 @@ class BriefcaseConnection extends _IModelConnection__WEBPACK_IMPORTED_MODULE_5__
|
|
|
74395
74404
|
constructor(props, openMode) {
|
|
74396
74405
|
super(props);
|
|
74397
74406
|
/** Default settings that can be used to control the behavior of [[Tool]]s that modify this briefcase.
|
|
74398
|
-
* @
|
|
74407
|
+
* @beta
|
|
74399
74408
|
*/
|
|
74400
74409
|
this.editorToolSettings = new BriefcaseEditorToolSettings();
|
|
74401
74410
|
/** Strictly for tests - dispatched from ModelChangeMonitor.processBuffered.
|
|
@@ -74906,21 +74915,33 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
74906
74915
|
*/
|
|
74907
74916
|
/** Bit masks describing which aspects of a [[Viewport]] have changed as part of a [[ChangeFlags]].
|
|
74908
74917
|
* @see [[Viewport.onViewportChanged]].
|
|
74909
|
-
* @
|
|
74918
|
+
* @public
|
|
74910
74919
|
*/
|
|
74911
74920
|
var ChangeFlag;
|
|
74912
74921
|
(function (ChangeFlag) {
|
|
74922
|
+
/** No changes. */
|
|
74913
74923
|
ChangeFlag[ChangeFlag["None"] = 0] = "None";
|
|
74924
|
+
/** See [[ChangeFlags.alwaysDrawn]]. */
|
|
74914
74925
|
ChangeFlag[ChangeFlag["AlwaysDrawn"] = 1] = "AlwaysDrawn";
|
|
74926
|
+
/** See [[ChangeFlags.neverDrawn]]. */
|
|
74915
74927
|
ChangeFlag[ChangeFlag["NeverDrawn"] = 2] = "NeverDrawn";
|
|
74928
|
+
/** See [[ChangeFlags.viewedCategories]]. */
|
|
74916
74929
|
ChangeFlag[ChangeFlag["ViewedCategories"] = 4] = "ViewedCategories";
|
|
74930
|
+
/** See [[ChangeFlags.viewedModels]]. */
|
|
74917
74931
|
ChangeFlag[ChangeFlag["ViewedModels"] = 8] = "ViewedModels";
|
|
74932
|
+
/** See [[ChangeFlags.displayStyle]]. */
|
|
74918
74933
|
ChangeFlag[ChangeFlag["DisplayStyle"] = 16] = "DisplayStyle";
|
|
74934
|
+
/** See [[ChangeFlags.featureOverrideProvider]]. */
|
|
74919
74935
|
ChangeFlag[ChangeFlag["FeatureOverrideProvider"] = 32] = "FeatureOverrideProvider";
|
|
74936
|
+
/** See [[ChangeFlags.viewedCategoriesPerModel]]. */
|
|
74920
74937
|
ChangeFlag[ChangeFlag["ViewedCategoriesPerModel"] = 64] = "ViewedCategoriesPerModel";
|
|
74938
|
+
/** See [[ChangeFlags.viewState]]. */
|
|
74921
74939
|
ChangeFlag[ChangeFlag["ViewState"] = 128] = "ViewState";
|
|
74940
|
+
/** A bitmask indicating all aspects of the viewport's state have changed. */
|
|
74922
74941
|
ChangeFlag[ChangeFlag["All"] = 268435455] = "All";
|
|
74942
|
+
/** A bitmask indicating all aspects of the viewport's state related to symbology overrides have changed. */
|
|
74923
74943
|
ChangeFlag[ChangeFlag["Overrides"] = 268435319] = "Overrides";
|
|
74944
|
+
/** A bitmask indicating the initial state of a newly-created [[Viewport]]. */
|
|
74924
74945
|
ChangeFlag[ChangeFlag["Initial"] = 28] = "Initial";
|
|
74925
74946
|
})(ChangeFlag || (ChangeFlag = {}));
|
|
74926
74947
|
/** Describes which aspects of a [[Viewport]] have changed. Each time [[Viewport.renderFrame]] is invoked, the aspects of the viewport that have changed since
|
|
@@ -74929,7 +74950,9 @@ var ChangeFlag;
|
|
|
74929
74950
|
* @extensions
|
|
74930
74951
|
*/
|
|
74931
74952
|
class ChangeFlags {
|
|
74932
|
-
/**
|
|
74953
|
+
/** Create a new ChangeFlags.
|
|
74954
|
+
* @param flags The initial flags that should be set.
|
|
74955
|
+
*/
|
|
74933
74956
|
constructor(flags = ChangeFlag.Initial) {
|
|
74934
74957
|
this._flags = flags;
|
|
74935
74958
|
}
|
|
@@ -74957,25 +74980,24 @@ class ChangeFlags {
|
|
|
74957
74980
|
* @beta
|
|
74958
74981
|
*/
|
|
74959
74982
|
get viewedCategoriesPerModel() { return this.isSet(ChangeFlag.ViewedCategoriesPerModel); }
|
|
74960
|
-
/**
|
|
74961
|
-
* @internal
|
|
74962
|
-
*/
|
|
74983
|
+
/** Returns true if any of the specified flags are set. */
|
|
74963
74984
|
isSet(flags) { return 0 !== (this._flags & flags); }
|
|
74964
|
-
/**
|
|
74965
|
-
* @internal
|
|
74966
|
-
*/
|
|
74985
|
+
/** Returns true if all of the specified flags are set. */
|
|
74967
74986
|
areAllSet(flags) { return flags === (this._flags & flags); }
|
|
74968
74987
|
/** Returns true if any aspects affecting [[FeatureSymbology.Overrides]] have changed. */
|
|
74969
74988
|
get areFeatureOverridesDirty() { return this.isSet(ChangeFlag.Overrides); }
|
|
74970
74989
|
/** Returns true if any aspect at all has changed. */
|
|
74971
74990
|
get hasChanges() { return this.isSet(ChangeFlag.All); }
|
|
74972
|
-
/**
|
|
74991
|
+
/** The underlying bitmask indicating the state of each individual flag. */
|
|
74973
74992
|
get value() { return this._flags; }
|
|
74974
74993
|
}
|
|
74975
|
-
/**
|
|
74976
|
-
* @
|
|
74994
|
+
/** A [[ChangeFlags]] that permits modifying the states of individual [[ChangeFlag]]s.
|
|
74995
|
+
* @public
|
|
74977
74996
|
*/
|
|
74978
74997
|
class MutableChangeFlags extends ChangeFlags {
|
|
74998
|
+
/** Create a new MutableChangeFlags.
|
|
74999
|
+
* @param flags The initial flags that should be set.
|
|
75000
|
+
*/
|
|
74979
75001
|
constructor(flags = ChangeFlag.Initial) {
|
|
74980
75002
|
super(flags);
|
|
74981
75003
|
}
|
|
@@ -76515,13 +76537,13 @@ class DrawingViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_14__.ViewStat
|
|
|
76515
76537
|
this._attachmentInfo = SectionAttachmentInfo.fromJSON(sectionDrawing);
|
|
76516
76538
|
}
|
|
76517
76539
|
}
|
|
76518
|
-
/**
|
|
76540
|
+
/** See [[ViewState.attachToViewport]]. */
|
|
76519
76541
|
attachToViewport(args) {
|
|
76520
76542
|
super.attachToViewport(args);
|
|
76521
76543
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined === this._attachment);
|
|
76522
76544
|
this._attachment = this._attachmentInfo.createAttachment(args.drawingToSheetTransform);
|
|
76523
76545
|
}
|
|
76524
|
-
/**
|
|
76546
|
+
/** See [[ViewState.detachFromViewport]]. */
|
|
76525
76547
|
detachFromViewport() {
|
|
76526
76548
|
super.detachFromViewport();
|
|
76527
76549
|
this._attachment = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._attachment);
|
|
@@ -76821,23 +76843,9 @@ class ElementPicker {
|
|
|
76821
76843
|
if (this.hitList)
|
|
76822
76844
|
this.hitList.resetCurrentHit();
|
|
76823
76845
|
}
|
|
76824
|
-
getPixelPriority(pixel) {
|
|
76825
|
-
switch (pixel.type) {
|
|
76826
|
-
case _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.GeometryType.Surface:
|
|
76827
|
-
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;
|
|
76828
|
-
case _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.GeometryType.Linear:
|
|
76829
|
-
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.WireEdge;
|
|
76830
|
-
case _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.GeometryType.Edge:
|
|
76831
|
-
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;
|
|
76832
|
-
case _render_Pixel__WEBPACK_IMPORTED_MODULE_4__.Pixel.GeometryType.Silhouette:
|
|
76833
|
-
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.SilhouetteEdge;
|
|
76834
|
-
default:
|
|
76835
|
-
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.Unknown;
|
|
76836
|
-
}
|
|
76837
|
-
}
|
|
76838
76846
|
comparePixel(pixel1, pixel2, distXY1, distXY2) {
|
|
76839
|
-
const priority1 =
|
|
76840
|
-
const priority2 =
|
|
76847
|
+
const priority1 = pixel1.computeHitPriority();
|
|
76848
|
+
const priority2 = pixel2.computeHitPriority();
|
|
76841
76849
|
if (priority1 < priority2)
|
|
76842
76850
|
return -1;
|
|
76843
76851
|
if (priority1 > priority2)
|
|
@@ -76910,29 +76918,13 @@ class ElementPicker {
|
|
|
76910
76918
|
});
|
|
76911
76919
|
if (!hitPointWorld)
|
|
76912
76920
|
continue;
|
|
76913
|
-
let viewAttachment;
|
|
76914
|
-
if (pixel.viewAttachmentId) {
|
|
76915
|
-
const attachmentViewport = vp.view.getAttachmentViewport(pixel.viewAttachmentId);
|
|
76916
|
-
if (attachmentViewport)
|
|
76917
|
-
viewAttachment = { viewport: attachmentViewport, id: pixel.viewAttachmentId };
|
|
76918
|
-
}
|
|
76919
|
-
const modelId = pixel.modelId;
|
|
76920
76921
|
const hit = new _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitDetail({
|
|
76922
|
+
...pixel.toHitProps(vp),
|
|
76921
76923
|
testPoint: pickPointWorld,
|
|
76922
76924
|
viewport: vp,
|
|
76923
76925
|
hitSource: options.hitSource,
|
|
76924
76926
|
hitPoint: hitPointWorld,
|
|
76925
|
-
sourceId: pixel.elementId,
|
|
76926
|
-
priority: this.getPixelPriority(pixel),
|
|
76927
76927
|
distXY: testPointView.distance(elmPoint),
|
|
76928
|
-
distFraction: pixel.distanceFraction,
|
|
76929
|
-
subCategoryId: pixel.subCategoryId,
|
|
76930
|
-
geometryClass: pixel.geometryClass,
|
|
76931
|
-
modelId,
|
|
76932
|
-
sourceIModel: pixel.iModel,
|
|
76933
|
-
tileId: pixel.tileId,
|
|
76934
|
-
isClassifier: pixel.isClassifier,
|
|
76935
|
-
viewAttachment,
|
|
76936
76928
|
});
|
|
76937
76929
|
this.hitList.addHit(hit);
|
|
76938
76930
|
if (this.hitList.hits.length > options.maxHits)
|
|
@@ -79900,8 +79892,15 @@ class IModelApp {
|
|
|
79900
79892
|
* @beta
|
|
79901
79893
|
*/
|
|
79902
79894
|
static get realityDataAccess() { return this._realityDataAccess; }
|
|
79903
|
-
/**
|
|
79904
|
-
|
|
79895
|
+
/** Whether the [renderSystem[]] has been successfully initialized.
|
|
79896
|
+
* This will always be `false` before calling [[startup]] and after calling [[shutdown]].
|
|
79897
|
+
* In rare circumstances (e.g., while executing in a headless test environment) it may remain `false` due to a failure to
|
|
79898
|
+
* obtain a [WebGL rendering context](https://www.google.com/search?channel=fs&client=ubuntu-sn&q=mdn+webglrenderingcontext).
|
|
79899
|
+
* As long as you have called [[startup]], you can generally assume it to be `true`.
|
|
79900
|
+
*/
|
|
79901
|
+
static get hasRenderSystem() {
|
|
79902
|
+
return this._renderSystem !== undefined && this._renderSystem.isValid;
|
|
79903
|
+
}
|
|
79905
79904
|
/** The [[UiAdmin]] for this session. */
|
|
79906
79905
|
static get uiAdmin() { return this._uiAdmin; }
|
|
79907
79906
|
/** The requested security options for the frontend. */
|
|
@@ -80057,7 +80056,9 @@ class IModelApp {
|
|
|
80057
80056
|
IModelApp.requestIntervalAnimation();
|
|
80058
80057
|
}
|
|
80059
80058
|
}
|
|
80060
|
-
/**
|
|
80059
|
+
/** Request that the event loop execute on the next [animation frame](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame).
|
|
80060
|
+
* There is generally no reason for applications to invoke this method directly.
|
|
80061
|
+
*/
|
|
80061
80062
|
static requestNextAnimation() {
|
|
80062
80063
|
// Only want to call requestAnimationFrame if it is defined. Need to check whether current iModelApp is a NoRenderApp.
|
|
80063
80064
|
if (IModelApp._noRender)
|
|
@@ -80152,9 +80153,7 @@ class IModelApp {
|
|
|
80152
80153
|
return serialized;
|
|
80153
80154
|
};
|
|
80154
80155
|
}
|
|
80155
|
-
/** Shortcut for creating an HTMLElement with optional parent, className, id, innerHTML, innerText
|
|
80156
|
-
* @internal
|
|
80157
|
-
*/
|
|
80156
|
+
/** Shortcut for creating an HTMLElement with optional parent, className, id, innerHTML, innerText. */
|
|
80158
80157
|
static makeHTMLElement(type, opt) {
|
|
80159
80158
|
const el = document.createElement(type);
|
|
80160
80159
|
if (undefined !== opt) {
|
|
@@ -80171,10 +80170,9 @@ class IModelApp {
|
|
|
80171
80170
|
}
|
|
80172
80171
|
return el;
|
|
80173
80172
|
}
|
|
80174
|
-
/**
|
|
80173
|
+
/** Shortcut for making a modal dialog on top of the root of the application. The returned HTMLDivElement will be placed topmost, all other application
|
|
80175
80174
|
* windows will be covered with a semi-transparent background that intercepts all key/mouse/touch events until the modal is dismissed.
|
|
80176
80175
|
* @param options The options that describe how the modal should work.
|
|
80177
|
-
* @internal
|
|
80178
80176
|
*/
|
|
80179
80177
|
static makeModalDiv(options) {
|
|
80180
80178
|
const root = options.rootDiv ? options.rootDiv : document.body;
|
|
@@ -80300,11 +80298,9 @@ IModelApp._initialized = false;
|
|
|
80300
80298
|
IModelApp._wantEventLoop = false;
|
|
80301
80299
|
IModelApp._animationRequested = false;
|
|
80302
80300
|
IModelApp._animationInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_1__.BeDuration.fromSeconds(1);
|
|
80303
|
-
/** Event raised just before the frontend IModelApp is to be
|
|
80301
|
+
/** Event raised just before the frontend IModelApp is to be [[shutdown]]. */
|
|
80304
80302
|
IModelApp.onBeforeShutdown = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_1__.BeEvent();
|
|
80305
|
-
/** Event raised after IModelApp
|
|
80306
|
-
* @internal
|
|
80307
|
-
*/
|
|
80303
|
+
/** Event raised after IModelApp [[startup]] completes. */
|
|
80308
80304
|
IModelApp.onAfterStartup = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_1__.BeEvent();
|
|
80309
80305
|
/** The [[ToolRegistry]] for this session. */
|
|
80310
80306
|
IModelApp.tools = new _tools_Tool__WEBPACK_IMPORTED_MODULE_32__.ToolRegistry();
|
|
@@ -80504,6 +80500,12 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
80504
80500
|
this.subcategories.onIModelConnectionClose();
|
|
80505
80501
|
}
|
|
80506
80502
|
/** Allow to execute query and read results along with meta data. The result are streamed.
|
|
80503
|
+
*
|
|
80504
|
+
* See also:
|
|
80505
|
+
* - [ECSQL Overview]($docs/learning/frontend/ExecutingECSQL)
|
|
80506
|
+
* - [Code Examples]($docs/learning/frontend/ECSQLCodeExamples)
|
|
80507
|
+
* - [ECSQL Row Format]($docs/learning/ECSQLRowFormat)
|
|
80508
|
+
*
|
|
80507
80509
|
* @param params The values to bind to the parameters (if the ECSQL has any).
|
|
80508
80510
|
* @param config Allow to specify certain flags which control how query is executed.
|
|
80509
80511
|
* @returns Returns an [ECSqlReader]($common) which helps iterate over the result set and also give access to metadata.
|
|
@@ -80531,8 +80533,8 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
80531
80533
|
* [ECSQL row]($docs/learning/ECSQLRowFormat).
|
|
80532
80534
|
*
|
|
80533
80535
|
* See also:
|
|
80534
|
-
* - [ECSQL Overview]($docs/learning/
|
|
80535
|
-
* - [Code Examples]($docs/learning/ECSQLCodeExamples)
|
|
80536
|
+
* - [ECSQL Overview]($docs/learning/frontend/ExecutingECSQL)
|
|
80537
|
+
* - [Code Examples]($docs/learning/frontend/ECSQLCodeExamples)
|
|
80536
80538
|
*
|
|
80537
80539
|
* @param ecsql The ECSQL statement to execute
|
|
80538
80540
|
* @param params The values to bind to the parameters (if the ECSQL has any).
|
|
@@ -80551,8 +80553,8 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
80551
80553
|
/** Compute number of rows that would be returned by the ECSQL.
|
|
80552
80554
|
*
|
|
80553
80555
|
* See also:
|
|
80554
|
-
* - [ECSQL Overview]($docs/learning/
|
|
80555
|
-
* - [Code Examples]($docs/learning/ECSQLCodeExamples)
|
|
80556
|
+
* - [ECSQL Overview]($docs/learning/frontend/ExecutingECSQL)
|
|
80557
|
+
* - [Code Examples]($docs/learning/frontend/ECSQLCodeExamples)
|
|
80556
80558
|
*
|
|
80557
80559
|
* @param ecsql The ECSQL statement to execute
|
|
80558
80560
|
* @param params The values to bind to the parameters (if the ECSQL has any).
|
|
@@ -80572,8 +80574,8 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
80572
80574
|
* [ECSQL row]($docs/learning/ECSQLRowFormat).
|
|
80573
80575
|
*
|
|
80574
80576
|
* See also:
|
|
80575
|
-
* - [ECSQL Overview]($docs/learning/
|
|
80576
|
-
* - [Code Examples]($docs/learning/ECSQLCodeExamples)
|
|
80577
|
+
* - [ECSQL Overview]($docs/learning/frontend/ExecutingECSQL)
|
|
80578
|
+
* - [Code Examples]($docs/learning/frontend/ECSQLCodeExamples)
|
|
80577
80579
|
*
|
|
80578
80580
|
* @param ecsql The ECSQL statement to execute
|
|
80579
80581
|
* @param token None empty restart token. The previous query with same token would be cancelled. This would cause
|
|
@@ -85300,13 +85302,13 @@ class SheetViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_13__.ViewState2
|
|
|
85300
85302
|
this._attachmentsInfo = ViewAttachmentsInfo.fromJSON(attachmentIds);
|
|
85301
85303
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined === this._attachments);
|
|
85302
85304
|
}
|
|
85303
|
-
/**
|
|
85305
|
+
/** See [[ViewState.attachToViewport]]. */
|
|
85304
85306
|
attachToViewport(args) {
|
|
85305
85307
|
super.attachToViewport(args);
|
|
85306
85308
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined === this._attachments);
|
|
85307
85309
|
this._attachments = this._attachmentsInfo.createAttachments(this);
|
|
85308
85310
|
}
|
|
85309
|
-
/**
|
|
85311
|
+
/** See [[ViewState.detachFromViewport]]. */
|
|
85310
85312
|
detachFromViewport() {
|
|
85311
85313
|
super.detachFromViewport();
|
|
85312
85314
|
this._attachments = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._attachments);
|
|
@@ -85954,13 +85956,13 @@ class SpatialViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_6__.ViewState
|
|
|
85954
85956
|
context.textureDrapes.forEach((drape) => drape.collectGraphics(context));
|
|
85955
85957
|
context.viewport.target.updateSolarShadows(this.getDisplayStyle3d().wantShadows ? context : undefined);
|
|
85956
85958
|
}
|
|
85957
|
-
/**
|
|
85959
|
+
/** See [[ViewState.attachToViewport]]. */
|
|
85958
85960
|
attachToViewport(args) {
|
|
85959
85961
|
super.attachToViewport(args);
|
|
85960
85962
|
this.registerModelSelectorListeners();
|
|
85961
85963
|
this._treeRefs.attachToViewport(args);
|
|
85962
85964
|
}
|
|
85963
|
-
/**
|
|
85965
|
+
/** See [[ViewState.detachFromViewport]]. */
|
|
85964
85966
|
detachFromViewport() {
|
|
85965
85967
|
super.detachFromViewport();
|
|
85966
85968
|
this._treeRefs.detachFromViewport();
|
|
@@ -87072,11 +87074,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
87072
87074
|
/* harmony export */ });
|
|
87073
87075
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
87074
87076
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
87075
|
-
/* harmony import */ var
|
|
87076
|
-
/* harmony import */ var
|
|
87077
|
-
/* harmony import */ var
|
|
87078
|
-
/* harmony import */ var
|
|
87079
|
-
/* harmony import */ var
|
|
87077
|
+
/* harmony import */ var _DecorationsCache__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DecorationsCache */ "../../core/frontend/lib/esm/DecorationsCache.js");
|
|
87078
|
+
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
87079
|
+
/* harmony import */ var _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./render/GraphicBuilder */ "../../core/frontend/lib/esm/render/GraphicBuilder.js");
|
|
87080
|
+
/* harmony import */ var _render_Scene__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./render/Scene */ "../../core/frontend/lib/esm/render/Scene.js");
|
|
87081
|
+
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
87082
|
+
/* harmony import */ var _Viewport__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Viewport */ "../../core/frontend/lib/esm/Viewport.js");
|
|
87080
87083
|
/*---------------------------------------------------------------------------------------------
|
|
87081
87084
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
87082
87085
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -87091,6 +87094,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
87091
87094
|
|
|
87092
87095
|
|
|
87093
87096
|
|
|
87097
|
+
|
|
87094
87098
|
/** Provides context for producing [[RenderGraphic]]s for drawing within a [[Viewport]].
|
|
87095
87099
|
* @public
|
|
87096
87100
|
* @extensions
|
|
@@ -87125,7 +87129,7 @@ class RenderContext {
|
|
|
87125
87129
|
* @returns A builder for creating a [[GraphicType.Scene]] [[RenderGraphic]] for rendering within this context's [[Viewport]].
|
|
87126
87130
|
*/
|
|
87127
87131
|
createSceneGraphicBuilder(transform) {
|
|
87128
|
-
return this._createGraphicBuilder({ type:
|
|
87132
|
+
return this._createGraphicBuilder({ type: _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.Scene, placement: transform });
|
|
87129
87133
|
}
|
|
87130
87134
|
/** Create a graphic from a [[GraphicBranch]]. */
|
|
87131
87135
|
createGraphicBranch(branch, location, opts) {
|
|
@@ -87184,6 +87188,14 @@ class DecorateContext extends RenderContext {
|
|
|
87184
87188
|
this._decorations = decorations;
|
|
87185
87189
|
this._cache = cache;
|
|
87186
87190
|
}
|
|
87191
|
+
/** Create a new DecorateContext.
|
|
87192
|
+
* @param args Describes the inputs to the context.
|
|
87193
|
+
* @note Typically the [[ScreenViewport]] takes care of creating the context for you.
|
|
87194
|
+
* @public
|
|
87195
|
+
*/
|
|
87196
|
+
static create(args) {
|
|
87197
|
+
return new DecorateContext(args.viewport, args.output, args.cache ?? new _DecorationsCache__WEBPACK_IMPORTED_MODULE_2__.DecorationsCache());
|
|
87198
|
+
}
|
|
87187
87199
|
/** Create a builder for creating a [[RenderGraphic]] of the specified type appropriate for rendering within this context's [[Viewport]].
|
|
87188
87200
|
* @param type The type of builder to create.
|
|
87189
87201
|
* @param transform the local-to-world transform in which the builder's geometry is to be defined.
|
|
@@ -87261,27 +87273,27 @@ class DecorateContext extends RenderContext {
|
|
|
87261
87273
|
decoration = graphicOwner;
|
|
87262
87274
|
}
|
|
87263
87275
|
switch (type) {
|
|
87264
|
-
case
|
|
87276
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.Scene:
|
|
87265
87277
|
if (undefined === this._decorations.normal)
|
|
87266
87278
|
this._decorations.normal = [];
|
|
87267
87279
|
this._decorations.normal.push(decoration);
|
|
87268
87280
|
break;
|
|
87269
|
-
case
|
|
87281
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.WorldDecoration:
|
|
87270
87282
|
if (!this._decorations.world)
|
|
87271
87283
|
this._decorations.world = [];
|
|
87272
87284
|
this._decorations.world.push(decoration);
|
|
87273
87285
|
break;
|
|
87274
|
-
case
|
|
87286
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.WorldOverlay:
|
|
87275
87287
|
if (!this._decorations.worldOverlay)
|
|
87276
87288
|
this._decorations.worldOverlay = [];
|
|
87277
87289
|
this._decorations.worldOverlay.push(decoration);
|
|
87278
87290
|
break;
|
|
87279
|
-
case
|
|
87291
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.ViewOverlay:
|
|
87280
87292
|
if (!this._decorations.viewOverlay)
|
|
87281
87293
|
this._decorations.viewOverlay = [];
|
|
87282
87294
|
this._decorations.viewOverlay.push(decoration);
|
|
87283
87295
|
break;
|
|
87284
|
-
case
|
|
87296
|
+
case _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.ViewBackground:
|
|
87285
87297
|
this.setViewBackground(decoration);
|
|
87286
87298
|
break;
|
|
87287
87299
|
}
|
|
@@ -87303,8 +87315,8 @@ class DecorateContext extends RenderContext {
|
|
|
87303
87315
|
if (this._curCacheableDecorator)
|
|
87304
87316
|
this._appendToCache({ type: "html", htmlElement: decoration });
|
|
87305
87317
|
// an element decoration being added might already be on the decorationDiv, just marked for removal
|
|
87306
|
-
if (decoration[
|
|
87307
|
-
decoration[
|
|
87318
|
+
if (decoration[_Viewport__WEBPACK_IMPORTED_MODULE_7__.ELEMENT_MARKED_FOR_REMOVAL]) {
|
|
87319
|
+
decoration[_Viewport__WEBPACK_IMPORTED_MODULE_7__.ELEMENT_MARKED_FOR_REMOVAL] = false;
|
|
87308
87320
|
}
|
|
87309
87321
|
else if (decoration.parentElement !== this.viewport.decorationDiv) {
|
|
87310
87322
|
this.viewport.decorationDiv.appendChild(decoration);
|
|
@@ -87318,7 +87330,7 @@ class DecorateContext extends RenderContext {
|
|
|
87318
87330
|
const color = vp.getContrastToBackgroundColor();
|
|
87319
87331
|
const planarGrid = this.viewport.target.renderSystem.createPlanarGrid(vp.getFrustum(), { origin: gridOrigin, rMatrix, spacing, gridsPerRef, color });
|
|
87320
87332
|
if (planarGrid) {
|
|
87321
|
-
this.addDecoration(
|
|
87333
|
+
this.addDecoration(_render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_4__.GraphicType.WorldDecoration, planarGrid);
|
|
87322
87334
|
}
|
|
87323
87335
|
}
|
|
87324
87336
|
/** Display skyBox graphic that encompasses entire scene and rotates with camera.
|
|
@@ -87350,10 +87362,10 @@ class SceneContext extends RenderContext {
|
|
|
87350
87362
|
super(vp, frustum);
|
|
87351
87363
|
this._missingChildTiles = false;
|
|
87352
87364
|
/** The graphics comprising the scene. */
|
|
87353
|
-
this.scene = new
|
|
87365
|
+
this.scene = new _render_Scene__WEBPACK_IMPORTED_MODULE_5__.Scene();
|
|
87354
87366
|
/** @internal */
|
|
87355
87367
|
this.missingTiles = new Set();
|
|
87356
|
-
this._graphicType =
|
|
87368
|
+
this._graphicType = _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileGraphicType.Scene;
|
|
87357
87369
|
}
|
|
87358
87370
|
/** The viewed volume containing the scene. */
|
|
87359
87371
|
get viewingSpace() {
|
|
@@ -87364,10 +87376,10 @@ class SceneContext extends RenderContext {
|
|
|
87364
87376
|
/** Add the specified graphic to the scene. */
|
|
87365
87377
|
outputGraphic(graphic) {
|
|
87366
87378
|
switch (this._graphicType) {
|
|
87367
|
-
case
|
|
87379
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileGraphicType.BackgroundMap:
|
|
87368
87380
|
this.backgroundGraphics.push(graphic);
|
|
87369
87381
|
break;
|
|
87370
|
-
case
|
|
87382
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileGraphicType.Overlay:
|
|
87371
87383
|
this.overlayGraphics.push(graphic);
|
|
87372
87384
|
break;
|
|
87373
87385
|
default:
|
|
@@ -87378,16 +87390,16 @@ class SceneContext extends RenderContext {
|
|
|
87378
87390
|
/** 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. */
|
|
87379
87391
|
insertMissingTile(tile) {
|
|
87380
87392
|
switch (tile.loadStatus) {
|
|
87381
|
-
case
|
|
87382
|
-
case
|
|
87383
|
-
case
|
|
87393
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileLoadStatus.NotLoaded:
|
|
87394
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileLoadStatus.Queued:
|
|
87395
|
+
case _tile_internal__WEBPACK_IMPORTED_MODULE_6__.TileLoadStatus.Loading:
|
|
87384
87396
|
this.missingTiles.add(tile);
|
|
87385
87397
|
break;
|
|
87386
87398
|
}
|
|
87387
87399
|
}
|
|
87388
87400
|
/** @internal */
|
|
87389
87401
|
requestMissingTiles() {
|
|
87390
|
-
|
|
87402
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.tileAdmin.requestTiles(this.viewport, this.missingTiles);
|
|
87391
87403
|
}
|
|
87392
87404
|
/** @internal */
|
|
87393
87405
|
addPlanarClassifier(classifiedModelId, classifierTree, planarClipMask) {
|
|
@@ -88362,7 +88374,7 @@ class ViewManager {
|
|
|
88362
88374
|
vp.invalidateDecorations();
|
|
88363
88375
|
}
|
|
88364
88376
|
/** Force each registered [[Viewport]] to regenerate its [[FeatureSymbology.Overrides]] on the next frame.
|
|
88365
|
-
*
|
|
88377
|
+
* This is rarely needed - viewports keep track of their own states to detect when the overrides need to be recreated.
|
|
88366
88378
|
*/
|
|
88367
88379
|
invalidateSymbologyOverridesAllViews() {
|
|
88368
88380
|
for (const vp of this)
|
|
@@ -88384,7 +88396,9 @@ class ViewManager {
|
|
|
88384
88396
|
for (const vp of this)
|
|
88385
88397
|
vp.setValidScene();
|
|
88386
88398
|
}
|
|
88387
|
-
/**
|
|
88399
|
+
/** Requests that [[Viewport.createScene]] be invoked for every viewport on the next frame.
|
|
88400
|
+
* This is rarely useful - viewports keep track of their own states to detect when the scene needs to be recreated.
|
|
88401
|
+
*/
|
|
88388
88402
|
invalidateScenes() {
|
|
88389
88403
|
this._invalidateScenes = true;
|
|
88390
88404
|
_IModelApp__WEBPACK_IMPORTED_MODULE_1__.IModelApp.requestNextAnimation();
|
|
@@ -89679,11 +89693,11 @@ class ViewState extends _EntityState__WEBPACK_IMPORTED_MODULE_5__.ElementState {
|
|
|
89679
89693
|
return transform;
|
|
89680
89694
|
}
|
|
89681
89695
|
/** Invoked when this view becomes the view displayed by the specified [[Viewport]].
|
|
89682
|
-
* A ViewState can be attached to at most **one** Viewport.
|
|
89696
|
+
* A ViewState can be attached to at most **one** Viewport at any given time.
|
|
89697
|
+
* This method is invoked automatically by the viewport - there is generally no reason for applications to invoke it directly.
|
|
89683
89698
|
* @note If you override this method you **must** call `super.attachToViewport`.
|
|
89684
89699
|
* @throws Error if the view is already attached to any Viewport.
|
|
89685
89700
|
* @see [[detachFromViewport]] from the inverse operation.
|
|
89686
|
-
* @internal
|
|
89687
89701
|
*/
|
|
89688
89702
|
attachToViewport(_args) {
|
|
89689
89703
|
if (this.isAttachedToViewport)
|
|
@@ -89698,9 +89712,9 @@ class ViewState extends _EntityState__WEBPACK_IMPORTED_MODULE_5__.ElementState {
|
|
|
89698
89712
|
this._unregisterCategorySelectorListeners.push(cats.onCleared.addListener(event));
|
|
89699
89713
|
}
|
|
89700
89714
|
/** Invoked when this view, previously attached to the specified [[Viewport]] via [[attachToViewport]], is no longer the view displayed by that Viewport.
|
|
89715
|
+
* This method is invoked automatically by the viewport - there is generally no reason for applications to invoke it directly.
|
|
89701
89716
|
* @note If you override this method you **must** call `super.detachFromViewport`.
|
|
89702
89717
|
* @throws Error if the view is not attached to any Viewport.
|
|
89703
|
-
* @internal
|
|
89704
89718
|
*/
|
|
89705
89719
|
detachFromViewport() {
|
|
89706
89720
|
if (!this.isAttachedToViewport)
|
|
@@ -90334,7 +90348,9 @@ class ViewState3d extends ViewState {
|
|
|
90334
90348
|
setFocusDistance(dist) { this.camera.setFocusDistance(dist); }
|
|
90335
90349
|
/** Get the distance from the eyePoint to the focus plane for this view. */
|
|
90336
90350
|
getFocusDistance() { return this.camera.focusDist; }
|
|
90337
|
-
/**
|
|
90351
|
+
/** Obtain an "eye" point for this view. If the camera is on, this simply returns [[Camera.getEyePoint]].
|
|
90352
|
+
* Otherwise, a pseudo-eye-point is computed from the view direction and a lens angle of PI/2.
|
|
90353
|
+
*/
|
|
90338
90354
|
getEyeOrOrthographicViewPoint() {
|
|
90339
90355
|
if (this.isCameraOn)
|
|
90340
90356
|
return this.camera.getEyePoint();
|
|
@@ -90463,7 +90479,7 @@ class ViewState3d extends ViewState {
|
|
|
90463
90479
|
frustum.multiply(transitionTransform);
|
|
90464
90480
|
return this.setupFromFrustum(frustum);
|
|
90465
90481
|
}
|
|
90466
|
-
/**
|
|
90482
|
+
/** See [[ViewState.attachToViewport]]. */
|
|
90467
90483
|
attachToViewport(args) {
|
|
90468
90484
|
super.attachToViewport(args);
|
|
90469
90485
|
const removeListener = this.displayStyle.settings.onEnvironmentChanged.addListener((env) => {
|
|
@@ -90471,6 +90487,7 @@ class ViewState3d extends ViewState {
|
|
|
90471
90487
|
});
|
|
90472
90488
|
this._environmentDecorations = new _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_16__.EnvironmentDecorations(this, () => args.invalidateDecorations(), () => removeListener());
|
|
90473
90489
|
}
|
|
90490
|
+
/** See [[ViewState.detachFromViewport]]. */
|
|
90474
90491
|
detachFromViewport() {
|
|
90475
90492
|
super.detachFromViewport();
|
|
90476
90493
|
this._environmentDecorations = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._environmentDecorations);
|
|
@@ -91242,7 +91259,8 @@ const ELEMENT_MARKED_FOR_REMOVAL = Symbol.for("@bentley/imodeljs/Viewport/__elem
|
|
|
91242
91259
|
*
|
|
91243
91260
|
* The [[Viewport.onDisplayStyleChanged]] event will be invoked exactly once, when the second frame is rendered.
|
|
91244
91261
|
*
|
|
91245
|
-
* @see [[
|
|
91262
|
+
* @see [[ScreenViewport]] for a viewport that can render onto the screen.
|
|
91263
|
+
* @see [[OffScreenViewport]] for a viewport that can render into an off-screen buffer.
|
|
91246
91264
|
* @public
|
|
91247
91265
|
* @extensions
|
|
91248
91266
|
*/
|
|
@@ -91801,7 +91819,7 @@ class Viewport {
|
|
|
91801
91819
|
this.invalidateRenderPlan();
|
|
91802
91820
|
}
|
|
91803
91821
|
}
|
|
91804
|
-
/**
|
|
91822
|
+
/** Obtain a tooltip from the map layer or reality model, if any, identified by the specified [[HitDetail]]. */
|
|
91805
91823
|
async getToolTip(hit) {
|
|
91806
91824
|
const promises = new Array();
|
|
91807
91825
|
if (this.displayStyle) {
|
|
@@ -91838,6 +91856,11 @@ class Viewport {
|
|
|
91838
91856
|
}
|
|
91839
91857
|
return featureInfo;
|
|
91840
91858
|
}
|
|
91859
|
+
/** A function invoked once, after the constructor, to initialize the viewport's state.
|
|
91860
|
+
* Subclasses can use this perform additional initialization, as the viewport's constructor is not directly invokable.
|
|
91861
|
+
*/
|
|
91862
|
+
initialize() {
|
|
91863
|
+
}
|
|
91841
91864
|
/** @internal */
|
|
91842
91865
|
constructor(target) {
|
|
91843
91866
|
/** Event called whenever this viewport is synchronized with its [[ViewState]].
|
|
@@ -91898,7 +91921,9 @@ class Viewport {
|
|
|
91898
91921
|
this._doContinuousRendering = false;
|
|
91899
91922
|
/** @internal */
|
|
91900
91923
|
this._inViewChangedEvent = false;
|
|
91901
|
-
/**
|
|
91924
|
+
/** If false, indicates that [[Decorations]] should be recreated when rendering the next frame.
|
|
91925
|
+
* @note prefer to invoke [[invalidateDecorations]] rather than directly assigning to this property.
|
|
91926
|
+
*/
|
|
91902
91927
|
this._decorationsValid = false;
|
|
91903
91928
|
/** @internal */
|
|
91904
91929
|
this._sceneValid = false;
|
|
@@ -92287,7 +92312,10 @@ class Viewport {
|
|
|
92287
92312
|
this._changeFlags.setFeatureOverrideProvider();
|
|
92288
92313
|
this.maybeInvalidateScene();
|
|
92289
92314
|
}
|
|
92290
|
-
/**
|
|
92315
|
+
/** Notifies this viewport that a change in application state requires its [[FeatureSymbology.Overrides]] to be recomputed.
|
|
92316
|
+
* @note The viewport monitors various events to automatically detect when the overrides should be recomputed. This method
|
|
92317
|
+
* is only needed for changes that are not observable by the viewport itself.
|
|
92318
|
+
*/
|
|
92291
92319
|
invalidateSymbologyOverrides() {
|
|
92292
92320
|
this.setFeatureOverrideProviderChanged();
|
|
92293
92321
|
}
|
|
@@ -92307,7 +92335,7 @@ class Viewport {
|
|
|
92307
92335
|
for (const provider of this._tiledGraphicsProviders)
|
|
92308
92336
|
provider.forEachTileTreeRef(this, (ref) => func(ref));
|
|
92309
92337
|
}
|
|
92310
|
-
/**
|
|
92338
|
+
/** Apply a function to every tile tree reference associated with the map layers displayed by this viewport. */
|
|
92311
92339
|
forEachMapTreeRef(func) {
|
|
92312
92340
|
if (this._mapTiledGraphicsProvider)
|
|
92313
92341
|
this._mapTiledGraphicsProvider.forEachTileTreeRef(this, (ref) => func(ref));
|
|
@@ -93173,7 +93201,9 @@ class Viewport {
|
|
|
93173
93201
|
if (requestNextAnimation || undefined !== this._animator || this.continuousRendering)
|
|
93174
93202
|
_IModelApp__WEBPACK_IMPORTED_MODULE_10__.IModelApp.requestNextAnimation();
|
|
93175
93203
|
}
|
|
93176
|
-
/**
|
|
93204
|
+
/** Populate a set of decoration graphics to be displayed in this viewport.
|
|
93205
|
+
* This base implementation produces no graphics.
|
|
93206
|
+
*/
|
|
93177
93207
|
addDecorations(_decorations) { }
|
|
93178
93208
|
/** Read selected data about each pixel within a rectangular region of this Viewport.
|
|
93179
93209
|
* @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.
|
|
@@ -93444,6 +93474,9 @@ class Viewport {
|
|
|
93444
93474
|
onRequestStateChanged() {
|
|
93445
93475
|
this.invalidateScene();
|
|
93446
93476
|
}
|
|
93477
|
+
/** @internal See [[OffScreenViewport.drawingToSheetTransform */
|
|
93478
|
+
get drawingToSheetTransform() { return undefined; }
|
|
93479
|
+
set drawingToSheetTransform(_) { (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(false, "drawingToSheetTransform is only relevant for OffScreenViewport"); }
|
|
93447
93480
|
}
|
|
93448
93481
|
/** Don't allow entries in the view undo buffer unless they're separated by more than this amount of time. */
|
|
93449
93482
|
Viewport.undoDelay = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(.5);
|
|
@@ -93473,6 +93506,8 @@ Viewport.undoDelay = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration
|
|
|
93473
93506
|
* 5a. If it is currently registered with the ViewManager, it is dropped and disposed of via ViewManager.dropViewport()
|
|
93474
93507
|
* 5b. Otherwise, it is disposed of by invoking its dispose() method directly.
|
|
93475
93508
|
* ```
|
|
93509
|
+
*
|
|
93510
|
+
* @see [[ScreenViewport.create]] to create a ScreenViewport.
|
|
93476
93511
|
* @public
|
|
93477
93512
|
* @extensions
|
|
93478
93513
|
*/
|
|
@@ -93490,6 +93525,7 @@ class ScreenViewport extends Viewport {
|
|
|
93490
93525
|
throw new Error("viewport cannot be created from a div with zero width or height");
|
|
93491
93526
|
const canvas = document.createElement("canvas");
|
|
93492
93527
|
const vp = new this(canvas, parentDiv, _IModelApp__WEBPACK_IMPORTED_MODULE_10__.IModelApp.renderSystem.createTarget(canvas));
|
|
93528
|
+
vp.initialize();
|
|
93493
93529
|
vp.changeView(view);
|
|
93494
93530
|
return vp;
|
|
93495
93531
|
}
|
|
@@ -93546,7 +93582,12 @@ class ScreenViewport extends Viewport {
|
|
|
93546
93582
|
element.style.zIndex = zIndex.toString();
|
|
93547
93583
|
parent.appendChild(element);
|
|
93548
93584
|
}
|
|
93549
|
-
/**
|
|
93585
|
+
/** Add a new `HTMLDivElement` as a child of this viewport's div.
|
|
93586
|
+
* @param className The CSS class name to apply to the div.
|
|
93587
|
+
* @param overflowHidden Whether to set `div.style.overflow` to "hidden" instead of "visible".
|
|
93588
|
+
* @param z The Z index of the div relative to its sibling `HTMLElement`s.
|
|
93589
|
+
* @returns the new div.
|
|
93590
|
+
*/
|
|
93550
93591
|
addNewDiv(className, overflowHidden, z) {
|
|
93551
93592
|
const div = document.createElement("div");
|
|
93552
93593
|
div.className = className;
|
|
@@ -93775,12 +93816,14 @@ class ScreenViewport extends Viewport {
|
|
|
93775
93816
|
pickCanvasDecoration(pt) { return this.target.pickOverlayDecoration(pt); }
|
|
93776
93817
|
/** Get the DOMRect of the canvas for this Viewport. */
|
|
93777
93818
|
getClientRect() { return this.canvas.getBoundingClientRect(); }
|
|
93778
|
-
/** The ViewRect for this ScreenViewport. Left and top will be 0, right will be the width, and bottom will be the height.
|
|
93819
|
+
/** The ViewRect for this ScreenViewport. Left and top will be 0, right will be the width, and bottom will be the height.
|
|
93820
|
+
* @note Do not modify the ViewRect's properties.
|
|
93821
|
+
*/
|
|
93779
93822
|
get viewRect() {
|
|
93780
93823
|
this._viewRange.init(0, 0, this.canvas.clientWidth, this.canvas.clientHeight);
|
|
93781
93824
|
return this._viewRange;
|
|
93782
93825
|
}
|
|
93783
|
-
/**
|
|
93826
|
+
/** Populate a set of decoration graphics to be displayed in this viewport. */
|
|
93784
93827
|
addDecorations(decorations) {
|
|
93785
93828
|
// SEE: decorationDiv doc comment
|
|
93786
93829
|
// eslint-disable-next-line deprecation/deprecation
|
|
@@ -93839,7 +93882,9 @@ class ScreenViewport extends Viewport {
|
|
|
93839
93882
|
if (doAnimate)
|
|
93840
93883
|
this.animateFrustumChange(opts);
|
|
93841
93884
|
}
|
|
93842
|
-
/**
|
|
93885
|
+
/** A point in world coordinates describing an appropriate default point for a [[ViewTool]] when no more specific point is provided by the user.
|
|
93886
|
+
* This point is generally managed and used by [[ViewManip]].
|
|
93887
|
+
*/
|
|
93843
93888
|
get viewCmdTargetCenter() { return this._viewCmdTargetCenter; }
|
|
93844
93889
|
set viewCmdTargetCenter(center) { this._viewCmdTargetCenter = center ? center.clone() : undefined; }
|
|
93845
93890
|
/** True if an undoable viewing operation exists on the stack */
|
|
@@ -94097,15 +94142,23 @@ function _clear2dCanvas(canvas) {
|
|
|
94097
94142
|
* the render loop. Its dimensions are specified directly instead of being derived from an HTMLCanvasElement, and its renderFrame function must be manually invoked.
|
|
94098
94143
|
* Offscreen viewports can be useful for, e.g., producing an image from the contents of a view (see [[Viewport.readImageBuffer]] and [[Viewport.readImageToCanvas]])
|
|
94099
94144
|
* without drawing to the screen.
|
|
94145
|
+
* @see [[OffScreenViewport.create]] to create an off-screen viewport.
|
|
94100
94146
|
* @public
|
|
94101
94147
|
* @extensions
|
|
94102
94148
|
*/
|
|
94103
94149
|
class OffScreenViewport extends Viewport {
|
|
94104
|
-
|
|
94105
|
-
|
|
94150
|
+
/** @internal */
|
|
94151
|
+
constructor(target) {
|
|
94152
|
+
super(target);
|
|
94106
94153
|
this._isAspectRatioLocked = false;
|
|
94107
94154
|
}
|
|
94108
|
-
/**
|
|
94155
|
+
/** A bit of a hack to work around our ill-advised decision to always expect a RenderClipVolume to be defined in world coordinates.
|
|
94156
|
+
* 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
|
|
94157
|
+
* is transformed into drawing space - but when we display it we need to transform it into world (sheet) coordinates.
|
|
94158
|
+
* Fixing the actual problem (clips should always be defined in the coordinate space of the graphic branch containing them) would be quite error-prone
|
|
94159
|
+
* and likely to break existing code -- so instead the SheetViewState specifies this transform to be consumed by DrawingViewState.attachToViewport.
|
|
94160
|
+
* @internal
|
|
94161
|
+
*/
|
|
94109
94162
|
get drawingToSheetTransform() {
|
|
94110
94163
|
return this._drawingToSheetTransform;
|
|
94111
94164
|
}
|
|
@@ -94123,13 +94176,16 @@ class OffScreenViewport extends Viewport {
|
|
|
94123
94176
|
vp._isAspectRatioLocked = lockAspectRatio;
|
|
94124
94177
|
vp.changeView(view);
|
|
94125
94178
|
vp._decorationsValid = true;
|
|
94179
|
+
vp.initialize();
|
|
94126
94180
|
return vp;
|
|
94127
94181
|
}
|
|
94128
94182
|
/** @internal */
|
|
94129
94183
|
get isAspectRatioLocked() {
|
|
94130
94184
|
return this._isAspectRatioLocked;
|
|
94131
94185
|
}
|
|
94132
|
-
/**
|
|
94186
|
+
/** Get the rectangle of this Viewport in [[CoordSystem.View]] coordinates.
|
|
94187
|
+
* @note Do not modify the ViewRect's properties.
|
|
94188
|
+
*/
|
|
94133
94189
|
get viewRect() {
|
|
94134
94190
|
return this.target.viewRect;
|
|
94135
94191
|
}
|
|
@@ -98239,42 +98295,42 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98239
98295
|
/* harmony export */ ACSDisplayOptions: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSDisplayOptions),
|
|
98240
98296
|
/* harmony export */ ACSType: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSType),
|
|
98241
98297
|
/* harmony export */ AccuDraw: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDraw),
|
|
98242
|
-
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */
|
|
98298
|
+
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawChangeModeTool),
|
|
98243
98299
|
/* harmony export */ AccuDrawFlags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawFlags),
|
|
98244
98300
|
/* harmony export */ AccuDrawHintBuilder: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawHintBuilder),
|
|
98245
|
-
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */
|
|
98246
|
-
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */
|
|
98247
|
-
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */
|
|
98248
|
-
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */
|
|
98249
|
-
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */
|
|
98250
|
-
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */
|
|
98251
|
-
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */
|
|
98252
|
-
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */
|
|
98253
|
-
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */
|
|
98254
|
-
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */
|
|
98255
|
-
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */
|
|
98256
|
-
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */
|
|
98257
|
-
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */
|
|
98258
|
-
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */
|
|
98259
|
-
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */
|
|
98301
|
+
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateAxesTool),
|
|
98302
|
+
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateCycleTool),
|
|
98303
|
+
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateElementTool),
|
|
98304
|
+
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateFrontTool),
|
|
98305
|
+
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateSideTool),
|
|
98306
|
+
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateTopTool),
|
|
98307
|
+
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawRotateViewTool),
|
|
98308
|
+
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockAngleTool),
|
|
98309
|
+
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockDistanceTool),
|
|
98310
|
+
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockSmartTool),
|
|
98311
|
+
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockXTool),
|
|
98312
|
+
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockYTool),
|
|
98313
|
+
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetLockZTool),
|
|
98314
|
+
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawSetOriginTool),
|
|
98315
|
+
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.AccuDrawShortcuts),
|
|
98260
98316
|
/* harmony export */ AccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.AccuSnap),
|
|
98261
98317
|
/* harmony export */ AccudrawData: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccudrawData),
|
|
98262
98318
|
/* harmony export */ ActivityMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.ActivityMessageDetails),
|
|
98263
98319
|
/* harmony export */ ActivityMessageEndReason: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.ActivityMessageEndReason),
|
|
98264
98320
|
/* harmony export */ AlternateUnitLabelsRegistry: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.AlternateUnitLabelsRegistry),
|
|
98265
98321
|
/* harmony export */ AngleDescription: () => (/* reexport safe */ _properties_AngleDescription__WEBPACK_IMPORTED_MODULE_90__.AngleDescription),
|
|
98266
|
-
/* harmony export */ AnimatedTreeReference: () => (/* reexport safe */
|
|
98267
|
-
/* harmony export */ AnimationBranchStates: () => (/* reexport safe */
|
|
98322
|
+
/* harmony export */ AnimatedTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.AnimatedTreeReference),
|
|
98323
|
+
/* harmony export */ AnimationBranchStates: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_103__.AnimationBranchStates),
|
|
98268
98324
|
/* harmony export */ AnimationNodeId: () => (/* reexport safe */ _common_render_AnimationNodeId__WEBPACK_IMPORTED_MODULE_17__.AnimationNodeId),
|
|
98269
|
-
/* harmony export */ ArcGISIdentifyRequestUrl: () => (/* reexport safe */
|
|
98270
|
-
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */
|
|
98271
|
-
/* harmony export */ ArcGISMapLayerImageryProvider: () => (/* reexport safe */
|
|
98272
|
-
/* harmony export */ ArcGISTileMap: () => (/* reexport safe */
|
|
98273
|
-
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */
|
|
98274
|
-
/* harmony export */ ArcGisGeometryBaseRenderer: () => (/* reexport safe */
|
|
98275
|
-
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */
|
|
98276
|
-
/* harmony export */ ArcGisGraphicsRenderer: () => (/* reexport safe */
|
|
98277
|
-
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */
|
|
98325
|
+
/* harmony export */ ArcGISIdentifyRequestUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGISIdentifyRequestUrl),
|
|
98326
|
+
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGISImageryProvider),
|
|
98327
|
+
/* harmony export */ ArcGISMapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGISMapLayerImageryProvider),
|
|
98328
|
+
/* harmony export */ ArcGISTileMap: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGISTileMap),
|
|
98329
|
+
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisErrorCode),
|
|
98330
|
+
/* harmony export */ ArcGisGeometryBaseRenderer: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisGeometryBaseRenderer),
|
|
98331
|
+
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisGeometryReaderJSON),
|
|
98332
|
+
/* harmony export */ ArcGisGraphicsRenderer: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisGraphicsRenderer),
|
|
98333
|
+
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ArcGisUtilities),
|
|
98278
98334
|
/* harmony export */ AuxChannel: () => (/* reexport safe */ _common_render_primitives_AuxChannelTable__WEBPACK_IMPORTED_MODULE_19__.AuxChannel),
|
|
98279
98335
|
/* harmony export */ AuxChannelTable: () => (/* reexport safe */ _common_render_primitives_AuxChannelTable__WEBPACK_IMPORTED_MODULE_19__.AuxChannelTable),
|
|
98280
98336
|
/* harmony export */ AuxCoordSystem2dState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem2dState),
|
|
@@ -98283,113 +98339,121 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98283
98339
|
/* harmony export */ AuxCoordSystemState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemState),
|
|
98284
98340
|
/* harmony export */ AuxDisplacementChannel: () => (/* reexport safe */ _common_render_primitives_AuxChannelTable__WEBPACK_IMPORTED_MODULE_19__.AuxDisplacementChannel),
|
|
98285
98341
|
/* harmony export */ AuxParamChannel: () => (/* reexport safe */ _common_render_primitives_AuxChannelTable__WEBPACK_IMPORTED_MODULE_19__.AuxParamChannel),
|
|
98286
|
-
/* harmony export */ AzureMapsLayerImageryProvider: () => (/* reexport safe */
|
|
98287
|
-
/* harmony export */ B3dmReader: () => (/* reexport safe */
|
|
98288
|
-
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */
|
|
98342
|
+
/* harmony export */ AzureMapsLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.AzureMapsLayerImageryProvider),
|
|
98343
|
+
/* harmony export */ B3dmReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.B3dmReader),
|
|
98344
|
+
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_157__.BackgroundMapGeometry),
|
|
98289
98345
|
/* harmony export */ BaseUnitFormattingSettingsProvider: () => (/* reexport safe */ _quantity_formatting_BaseUnitFormattingSettingsProvider__WEBPACK_IMPORTED_MODULE_94__.BaseUnitFormattingSettingsProvider),
|
|
98290
|
-
/* harmony export */ BatchedTileIdMap: () => (/* reexport safe */
|
|
98291
|
-
/* harmony export */ BeButton: () => (/* reexport safe */
|
|
98292
|
-
/* harmony export */ BeButtonEvent: () => (/* reexport safe */
|
|
98293
|
-
/* harmony export */ BeButtonState: () => (/* reexport safe */
|
|
98294
|
-
/* harmony export */ BeModifierKeys: () => (/* reexport safe */
|
|
98295
|
-
/* harmony export */ BeTouchEvent: () => (/* reexport safe */
|
|
98296
|
-
/* harmony export */ BeWheelEvent: () => (/* reexport safe */
|
|
98297
|
-
/* harmony export */ BingElevationProvider: () => (/* reexport safe */
|
|
98346
|
+
/* harmony export */ BatchedTileIdMap: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.BatchedTileIdMap),
|
|
98347
|
+
/* harmony export */ BeButton: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeButton),
|
|
98348
|
+
/* harmony export */ BeButtonEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeButtonEvent),
|
|
98349
|
+
/* harmony export */ BeButtonState: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeButtonState),
|
|
98350
|
+
/* harmony export */ BeModifierKeys: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeModifierKeys),
|
|
98351
|
+
/* harmony export */ BeTouchEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeTouchEvent),
|
|
98352
|
+
/* harmony export */ BeWheelEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.BeWheelEvent),
|
|
98353
|
+
/* harmony export */ BingElevationProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.BingElevationProvider),
|
|
98298
98354
|
/* harmony export */ BingLocationProvider: () => (/* reexport safe */ _BingLocation__WEBPACK_IMPORTED_MODULE_3__.BingLocationProvider),
|
|
98299
|
-
/* harmony export */ BingMapsImageryLayerProvider: () => (/* reexport safe */
|
|
98355
|
+
/* harmony export */ BingMapsImageryLayerProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.BingMapsImageryLayerProvider),
|
|
98300
98356
|
/* harmony export */ BlankConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_54__.BlankConnection),
|
|
98301
98357
|
/* harmony export */ BriefcaseConnection: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseConnection),
|
|
98302
98358
|
/* harmony export */ BriefcaseEditorToolSettings: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseEditorToolSettings),
|
|
98303
98359
|
/* harmony export */ BriefcaseNotificationHandler: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_5__.BriefcaseNotificationHandler),
|
|
98304
98360
|
/* harmony export */ BriefcaseTxns: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_5__.BriefcaseTxns),
|
|
98305
98361
|
/* harmony export */ CategorySelectorState: () => (/* reexport safe */ _CategorySelectorState__WEBPACK_IMPORTED_MODULE_6__.CategorySelectorState),
|
|
98306
|
-
/* harmony export */ CesiumIonAssetProvider: () => (/* reexport safe */
|
|
98362
|
+
/* harmony export */ CesiumIonAssetProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.CesiumIonAssetProvider),
|
|
98307
98363
|
/* harmony export */ ChangeFlag: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_7__.ChangeFlag),
|
|
98308
98364
|
/* harmony export */ ChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_7__.ChangeFlags),
|
|
98309
98365
|
/* harmony export */ CheckpointConnection: () => (/* reexport safe */ _CheckpointConnection__WEBPACK_IMPORTED_MODULE_8__.CheckpointConnection),
|
|
98310
|
-
/* harmony export */ ClipEventType: () => (/* reexport safe */
|
|
98366
|
+
/* harmony export */ ClipEventType: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ClipEventType),
|
|
98311
98367
|
/* harmony export */ Cluster: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_59__.Cluster),
|
|
98368
|
+
/* harmony export */ ColorMap: () => (/* reexport safe */ _render_primitives_ColorMap__WEBPACK_IMPORTED_MODULE_122__.ColorMap),
|
|
98312
98369
|
/* harmony export */ CompassMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CompassMode),
|
|
98313
98370
|
/* harmony export */ ContextMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextMode),
|
|
98314
98371
|
/* harmony export */ ContextRealityModelState: () => (/* reexport safe */ _ContextRealityModelState__WEBPACK_IMPORTED_MODULE_33__.ContextRealityModelState),
|
|
98315
98372
|
/* harmony export */ ContextRotationId: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextRotationId),
|
|
98316
|
-
/* harmony export */ ContextShareProvider: () => (/* reexport safe */
|
|
98317
|
-
/* harmony export */ CoordSource: () => (/* reexport safe */
|
|
98373
|
+
/* harmony export */ ContextShareProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ContextShareProvider),
|
|
98374
|
+
/* harmony export */ CoordSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.CoordSource),
|
|
98318
98375
|
/* harmony export */ CoordSystem: () => (/* reexport safe */ _CoordSystem__WEBPACK_IMPORTED_MODULE_34__.CoordSystem),
|
|
98319
98376
|
/* harmony export */ CoordinateConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_49__.CoordinateConverter),
|
|
98320
|
-
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */
|
|
98321
|
-
/* harmony export */ CoreTools: () => (/* reexport safe */
|
|
98322
|
-
/* harmony export */ CurrentInputState: () => (/* reexport safe */
|
|
98377
|
+
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.CoordinateLockOverrides),
|
|
98378
|
+
/* harmony export */ CoreTools: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.CoreTools),
|
|
98379
|
+
/* harmony export */ CurrentInputState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.CurrentInputState),
|
|
98323
98380
|
/* harmony export */ CurrentState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CurrentState),
|
|
98324
98381
|
/* harmony export */ DebugShaderFile: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.DebugShaderFile),
|
|
98325
98382
|
/* harmony export */ DecorateContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_78__.DecorateContext),
|
|
98326
|
-
/* harmony export */ Decorations: () => (/* reexport safe */
|
|
98383
|
+
/* harmony export */ Decorations: () => (/* reexport safe */ _render_Decorations__WEBPACK_IMPORTED_MODULE_100__.Decorations),
|
|
98327
98384
|
/* harmony export */ DecorationsCache: () => (/* reexport safe */ _DecorationsCache__WEBPACK_IMPORTED_MODULE_35__.DecorationsCache),
|
|
98328
|
-
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */
|
|
98329
|
-
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */
|
|
98330
|
-
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */
|
|
98385
|
+
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.DefaultViewTouchTool),
|
|
98386
|
+
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.DefineACSByElementTool),
|
|
98387
|
+
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__.DefineACSByPointsTool),
|
|
98331
98388
|
/* harmony export */ DepthPointSource: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.DepthPointSource),
|
|
98332
98389
|
/* harmony export */ DevTools: () => (/* reexport safe */ _DevTools__WEBPACK_IMPORTED_MODULE_36__.DevTools),
|
|
98333
|
-
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */
|
|
98390
|
+
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.DisclosedTileTreeSet),
|
|
98334
98391
|
/* harmony export */ DisplayParams: () => (/* reexport safe */ _common_render_primitives_DisplayParams__WEBPACK_IMPORTED_MODULE_20__.DisplayParams),
|
|
98335
98392
|
/* harmony export */ DisplayStyle2dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_37__.DisplayStyle2dState),
|
|
98336
98393
|
/* harmony export */ DisplayStyle3dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_37__.DisplayStyle3dState),
|
|
98337
98394
|
/* harmony export */ DisplayStyleState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_37__.DisplayStyleState),
|
|
98338
98395
|
/* harmony export */ DrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.DrawingModelState),
|
|
98339
98396
|
/* harmony export */ DrawingViewState: () => (/* reexport safe */ _DrawingViewState__WEBPACK_IMPORTED_MODULE_38__.DrawingViewState),
|
|
98340
|
-
/* harmony export */ DynamicIModelTile: () => (/* reexport safe */
|
|
98397
|
+
/* harmony export */ DynamicIModelTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.DynamicIModelTile),
|
|
98341
98398
|
/* harmony export */ DynamicsContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_78__.DynamicsContext),
|
|
98342
98399
|
/* harmony export */ ELEMENT_MARKED_FOR_REMOVAL: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.ELEMENT_MARKED_FOR_REMOVAL),
|
|
98343
|
-
/* harmony export */ EditManipulator: () => (/* reexport safe */
|
|
98344
|
-
/* harmony export */ ElementAgenda: () => (/* reexport safe */
|
|
98400
|
+
/* harmony export */ EditManipulator: () => (/* reexport safe */ _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_145__.EditManipulator),
|
|
98401
|
+
/* harmony export */ ElementAgenda: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_146__.ElementAgenda),
|
|
98345
98402
|
/* harmony export */ ElementLocateManager: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.ElementLocateManager),
|
|
98346
98403
|
/* harmony export */ ElementPicker: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.ElementPicker),
|
|
98347
|
-
/* harmony export */ ElementSetTool: () => (/* reexport safe */
|
|
98404
|
+
/* harmony export */ ElementSetTool: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_146__.ElementSetTool),
|
|
98348
98405
|
/* harmony export */ ElementState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_41__.ElementState),
|
|
98349
|
-
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */
|
|
98406
|
+
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.EllipsoidTerrainProvider),
|
|
98350
98407
|
/* harmony export */ EmphasizeElements: () => (/* reexport safe */ _EmphasizeElements__WEBPACK_IMPORTED_MODULE_40__.EmphasizeElements),
|
|
98351
98408
|
/* harmony export */ EngineeringLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_92__.EngineeringLengthDescription),
|
|
98352
98409
|
/* harmony export */ EntityState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_41__.EntityState),
|
|
98353
98410
|
/* harmony export */ EnvironmentDecorations: () => (/* reexport safe */ _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_42__.EnvironmentDecorations),
|
|
98354
|
-
/* harmony export */ EventController: () => (/* reexport safe */
|
|
98355
|
-
/* harmony export */ EventHandled: () => (/* reexport safe */
|
|
98356
|
-
/* harmony export */ FeatureSymbology: () => (/* reexport safe */
|
|
98357
|
-
/* harmony export */
|
|
98411
|
+
/* harmony export */ EventController: () => (/* reexport safe */ _tools_EventController__WEBPACK_IMPORTED_MODULE_147__.EventController),
|
|
98412
|
+
/* harmony export */ EventHandled: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.EventHandled),
|
|
98413
|
+
/* harmony export */ FeatureSymbology: () => (/* reexport safe */ _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_101__.FeatureSymbology),
|
|
98414
|
+
/* harmony export */ FetchCloudStorage: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.FetchCloudStorage),
|
|
98415
|
+
/* harmony export */ FitViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.FitViewTool),
|
|
98358
98416
|
/* harmony export */ Flags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.Flags),
|
|
98359
98417
|
/* harmony export */ FlashMode: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_44__.FlashMode),
|
|
98360
98418
|
/* harmony export */ FlashSettings: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_44__.FlashSettings),
|
|
98361
|
-
/* harmony export */ FlyViewTool: () => (/* reexport safe */
|
|
98419
|
+
/* harmony export */ FlyViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.FlyViewTool),
|
|
98362
98420
|
/* harmony export */ FormattedQuantityDescription: () => (/* reexport safe */ _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_91__.FormattedQuantityDescription),
|
|
98363
|
-
/* harmony export */ FrameStatsCollector: () => (/* reexport safe */
|
|
98421
|
+
/* harmony export */ FrameStatsCollector: () => (/* reexport safe */ _render_FrameStats__WEBPACK_IMPORTED_MODULE_102__.FrameStatsCollector),
|
|
98364
98422
|
/* harmony export */ FrontendLoggerCategory: () => (/* reexport safe */ _common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_9__.FrontendLoggerCategory),
|
|
98365
98423
|
/* harmony export */ Frustum2d: () => (/* reexport safe */ _Frustum2d__WEBPACK_IMPORTED_MODULE_46__.Frustum2d),
|
|
98366
98424
|
/* harmony export */ FrustumAnimator: () => (/* reexport safe */ _FrustumAnimator__WEBPACK_IMPORTED_MODULE_47__.FrustumAnimator),
|
|
98367
98425
|
/* harmony export */ FuzzySearch: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_48__.FuzzySearch),
|
|
98368
98426
|
/* harmony export */ FuzzySearchResults: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_48__.FuzzySearchResults),
|
|
98427
|
+
/* harmony export */ GenerateEdges: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.GenerateEdges),
|
|
98369
98428
|
/* harmony export */ GeoConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_49__.GeoConverter),
|
|
98370
98429
|
/* harmony export */ GeoServices: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_49__.GeoServices),
|
|
98371
|
-
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */
|
|
98430
|
+
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GeographicTilingScheme),
|
|
98372
98431
|
/* harmony export */ GeometricModel2dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.GeometricModel2dState),
|
|
98373
98432
|
/* harmony export */ GeometricModel3dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.GeometricModel3dState),
|
|
98374
98433
|
/* harmony export */ GeometricModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.GeometricModelState),
|
|
98434
|
+
/* harmony export */ Geometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.Geometry),
|
|
98435
|
+
/* harmony export */ GeometryAccumulator: () => (/* reexport safe */ _render_primitives_geometry_GeometryAccumulator__WEBPACK_IMPORTED_MODULE_132__.GeometryAccumulator),
|
|
98436
|
+
/* harmony export */ GeometryList: () => (/* reexport safe */ _render_primitives_geometry_GeometryList__WEBPACK_IMPORTED_MODULE_133__.GeometryList),
|
|
98437
|
+
/* harmony export */ GeometryListBuilder: () => (/* reexport safe */ _render_primitives_geometry_GeometryListBuilder__WEBPACK_IMPORTED_MODULE_134__.GeometryListBuilder),
|
|
98438
|
+
/* harmony export */ GeometryOptions: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.GeometryOptions),
|
|
98375
98439
|
/* harmony export */ GlobeAnimator: () => (/* reexport safe */ _GlobeAnimator__WEBPACK_IMPORTED_MODULE_50__.GlobeAnimator),
|
|
98376
|
-
/* harmony export */ GltfBufferData: () => (/* reexport safe */
|
|
98440
|
+
/* harmony export */ GltfBufferData: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfBufferData),
|
|
98377
98441
|
/* harmony export */ GltfBufferTarget: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfBufferTarget),
|
|
98378
98442
|
/* harmony export */ GltfDataType: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfDataType),
|
|
98379
|
-
/* harmony export */ GltfGraphicsReader: () => (/* reexport safe */
|
|
98443
|
+
/* harmony export */ GltfGraphicsReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfGraphicsReader),
|
|
98380
98444
|
/* harmony export */ GltfMagFilter: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfMagFilter),
|
|
98381
|
-
/* harmony export */ GltfMeshData: () => (/* reexport safe */
|
|
98445
|
+
/* harmony export */ GltfMeshData: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfMeshData),
|
|
98382
98446
|
/* harmony export */ GltfMeshMode: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfMeshMode),
|
|
98383
98447
|
/* harmony export */ GltfMinFilter: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfMinFilter),
|
|
98384
|
-
/* harmony export */ GltfReader: () => (/* reexport safe */
|
|
98385
|
-
/* harmony export */ GltfReaderProps: () => (/* reexport safe */
|
|
98448
|
+
/* harmony export */ GltfReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfReader),
|
|
98449
|
+
/* harmony export */ GltfReaderProps: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GltfReaderProps),
|
|
98386
98450
|
/* harmony export */ GltfTechniqueState: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfTechniqueState),
|
|
98387
98451
|
/* harmony export */ GltfWrapMode: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.GltfWrapMode),
|
|
98388
|
-
/* harmony export */ GraphicBranch: () => (/* reexport safe */
|
|
98389
|
-
/* harmony export */ GraphicBuilder: () => (/* reexport safe */
|
|
98390
|
-
/* harmony export */ GraphicType: () => (/* reexport safe */
|
|
98452
|
+
/* harmony export */ GraphicBranch: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_103__.GraphicBranch),
|
|
98453
|
+
/* harmony export */ GraphicBuilder: () => (/* reexport safe */ _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_104__.GraphicBuilder),
|
|
98454
|
+
/* harmony export */ GraphicType: () => (/* reexport safe */ _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_104__.GraphicType),
|
|
98391
98455
|
/* harmony export */ GraphicalEditingScope: () => (/* reexport safe */ _GraphicalEditingScope__WEBPACK_IMPORTED_MODULE_51__.GraphicalEditingScope),
|
|
98392
|
-
/* harmony export */ GraphicsCollectorDrawArgs: () => (/* reexport safe */
|
|
98456
|
+
/* harmony export */ GraphicsCollectorDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.GraphicsCollectorDrawArgs),
|
|
98393
98457
|
/* harmony export */ HiliteSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_68__.HiliteSet),
|
|
98394
98458
|
/* harmony export */ HitDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitDetail),
|
|
98395
98459
|
/* harmony export */ HitDetailType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitDetailType),
|
|
@@ -98398,164 +98462,183 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98398
98462
|
/* harmony export */ HitParentGeomType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitParentGeomType),
|
|
98399
98463
|
/* harmony export */ HitPriority: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitPriority),
|
|
98400
98464
|
/* harmony export */ HitSource: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.HitSource),
|
|
98401
|
-
/* harmony export */ I3dmReader: () => (/* reexport safe */
|
|
98465
|
+
/* harmony export */ I3dmReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.I3dmReader),
|
|
98402
98466
|
/* harmony export */ IModelApp: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_53__.IModelApp),
|
|
98403
98467
|
/* harmony export */ IModelConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_54__.IModelConnection),
|
|
98404
|
-
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */
|
|
98468
|
+
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */ _render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_139__.IModelFrameLifecycle),
|
|
98405
98469
|
/* harmony export */ IModelRoutingContext: () => (/* reexport safe */ _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_55__.IModelRoutingContext),
|
|
98406
|
-
/* harmony export */ IModelTile: () => (/* reexport safe */
|
|
98407
|
-
/* harmony export */ IModelTileRequestChannels: () => (/* reexport safe */
|
|
98408
|
-
/* harmony export */ IModelTileTree: () => (/* reexport safe */
|
|
98470
|
+
/* harmony export */ IModelTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.IModelTile),
|
|
98471
|
+
/* harmony export */ IModelTileRequestChannels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.IModelTileRequestChannels),
|
|
98472
|
+
/* harmony export */ IModelTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.IModelTileTree),
|
|
98409
98473
|
/* harmony export */ ITWINJS_CORE_VERSION: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_53__.ITWINJS_CORE_VERSION),
|
|
98410
98474
|
/* harmony export */ IconSprites: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_71__.IconSprites),
|
|
98411
|
-
/* harmony export */ IdleTool: () => (/* reexport safe */
|
|
98412
|
-
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */
|
|
98413
|
-
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */
|
|
98414
|
-
/* harmony export */ ImageryMapTile: () => (/* reexport safe */
|
|
98415
|
-
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */
|
|
98416
|
-
/* harmony export */ ImageryTileTreeState: () => (/* reexport safe */
|
|
98475
|
+
/* harmony export */ IdleTool: () => (/* reexport safe */ _tools_IdleTool__WEBPACK_IMPORTED_MODULE_148__.IdleTool),
|
|
98476
|
+
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryMapLayerFormat),
|
|
98477
|
+
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryMapLayerTreeReference),
|
|
98478
|
+
/* harmony export */ ImageryMapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryMapTile),
|
|
98479
|
+
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryMapTileTree),
|
|
98480
|
+
/* harmony export */ ImageryTileTreeState: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImageryTileTreeState),
|
|
98417
98481
|
/* harmony export */ ImdlEdgeVisibility: () => (/* reexport safe */ _common_imdl_ImdlSchema__WEBPACK_IMPORTED_MODULE_15__.ImdlEdgeVisibility),
|
|
98418
|
-
/* harmony export */ ImdlReader: () => (/* reexport safe */
|
|
98482
|
+
/* harmony export */ ImdlReader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ImdlReader),
|
|
98419
98483
|
/* harmony export */ IndexBuffer: () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.IndexBuffer),
|
|
98420
|
-
/* harmony export */ InputCollector: () => (/* reexport safe */
|
|
98421
|
-
/* harmony export */ InputSource: () => (/* reexport safe */
|
|
98422
|
-
/* harmony export */ InteractiveTool: () => (/* reexport safe */
|
|
98484
|
+
/* harmony export */ InputCollector: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.InputCollector),
|
|
98485
|
+
/* harmony export */ InputSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.InputSource),
|
|
98486
|
+
/* harmony export */ InteractiveTool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.InteractiveTool),
|
|
98423
98487
|
/* harmony export */ IntersectDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.IntersectDetail),
|
|
98424
98488
|
/* harmony export */ IpcApp: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_56__.IpcApp),
|
|
98425
98489
|
/* harmony export */ ItemField: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ItemField),
|
|
98426
|
-
/* harmony export */ KeyinParseError: () => (/* reexport safe */
|
|
98490
|
+
/* harmony export */ KeyinParseError: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.KeyinParseError),
|
|
98427
98491
|
/* harmony export */ KeyinStatus: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.KeyinStatus),
|
|
98428
|
-
/* harmony export */ LRUTileList: () => (/* reexport safe */
|
|
98492
|
+
/* harmony export */ LRUTileList: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.LRUTileList),
|
|
98429
98493
|
/* harmony export */ LengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_92__.LengthDescription),
|
|
98430
98494
|
/* harmony export */ LocalExtensionProvider: () => (/* reexport safe */ _extension_providers_LocalExtensionProvider__WEBPACK_IMPORTED_MODULE_88__.LocalExtensionProvider),
|
|
98431
98495
|
/* harmony export */ LocalUnitFormatProvider: () => (/* reexport safe */ _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_95__.LocalUnitFormatProvider),
|
|
98432
|
-
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */
|
|
98496
|
+
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */ _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_160__.LocalhostIpcApp),
|
|
98433
98497
|
/* harmony export */ LocateAction: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.LocateAction),
|
|
98434
98498
|
/* harmony export */ LocateFilterStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.LocateFilterStatus),
|
|
98435
98499
|
/* harmony export */ LocateOptions: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.LocateOptions),
|
|
98436
98500
|
/* harmony export */ LocateResponse: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.LocateResponse),
|
|
98437
98501
|
/* harmony export */ LockedStates: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.LockedStates),
|
|
98438
|
-
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */
|
|
98439
|
-
/* harmony export */ LookViewTool: () => (/* reexport safe */
|
|
98440
|
-
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */
|
|
98441
|
-
/* harmony export */ MapBoxLayerImageryProvider: () => (/* reexport safe */
|
|
98442
|
-
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */
|
|
98443
|
-
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */
|
|
98444
|
-
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */
|
|
98445
|
-
/* harmony export */ MapLayerFormat: () => (/* reexport safe */
|
|
98446
|
-
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */
|
|
98447
|
-
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */
|
|
98448
|
-
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */
|
|
98449
|
-
/* harmony export */ MapLayerSource: () => (/* reexport safe */
|
|
98450
|
-
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */
|
|
98451
|
-
/* harmony export */ MapLayerSources: () => (/* reexport safe */
|
|
98452
|
-
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */
|
|
98453
|
-
/* harmony export */ MapTile: () => (/* reexport safe */
|
|
98454
|
-
/* harmony export */ MapTileLoader: () => (/* reexport safe */
|
|
98455
|
-
/* harmony export */ MapTileProjection: () => (/* reexport safe */
|
|
98456
|
-
/* harmony export */ MapTileTree: () => (/* reexport safe */
|
|
98457
|
-
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */
|
|
98458
|
-
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */
|
|
98459
|
-
/* harmony export */ MapTiledGraphicsProvider: () => (/* reexport safe */
|
|
98460
|
-
/* harmony export */ MapTilingScheme: () => (/* reexport safe */
|
|
98502
|
+
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.LookAndMoveTool),
|
|
98503
|
+
/* harmony export */ LookViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.LookViewTool),
|
|
98504
|
+
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.ManipulatorToolEvent),
|
|
98505
|
+
/* harmony export */ MapBoxLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapBoxLayerImageryProvider),
|
|
98506
|
+
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapCartoRectangle),
|
|
98507
|
+
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapFeatureInfoRecord),
|
|
98508
|
+
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerFeatureRecord),
|
|
98509
|
+
/* harmony export */ MapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerFormat),
|
|
98510
|
+
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerFormatRegistry),
|
|
98511
|
+
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerImageryProvider),
|
|
98512
|
+
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerImageryProviderStatus),
|
|
98513
|
+
/* harmony export */ MapLayerSource: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerSource),
|
|
98514
|
+
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerSourceStatus),
|
|
98515
|
+
/* harmony export */ MapLayerSources: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerSources),
|
|
98516
|
+
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapLayerTileTreeReference),
|
|
98517
|
+
/* harmony export */ MapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTile),
|
|
98518
|
+
/* harmony export */ MapTileLoader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileLoader),
|
|
98519
|
+
/* harmony export */ MapTileProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileProjection),
|
|
98520
|
+
/* harmony export */ MapTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileTree),
|
|
98521
|
+
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileTreeReference),
|
|
98522
|
+
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTileTreeScaleRangeVisibility),
|
|
98523
|
+
/* harmony export */ MapTiledGraphicsProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTiledGraphicsProvider),
|
|
98524
|
+
/* harmony export */ MapTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.MapTilingScheme),
|
|
98461
98525
|
/* harmony export */ MarginPercent: () => (/* reexport safe */ _MarginPercent__WEBPACK_IMPORTED_MODULE_58__.MarginPercent),
|
|
98462
98526
|
/* harmony export */ Marker: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_59__.Marker),
|
|
98463
98527
|
/* harmony export */ MarkerSet: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_59__.MarkerSet),
|
|
98464
|
-
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */
|
|
98465
|
-
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */
|
|
98466
|
-
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */
|
|
98467
|
-
/* harmony export */ MeasureElementTool: () => (/* reexport safe */
|
|
98468
|
-
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */
|
|
98469
|
-
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */
|
|
98470
|
-
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */
|
|
98528
|
+
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureAreaByPointsTool),
|
|
98529
|
+
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureAreaTool),
|
|
98530
|
+
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureDistanceTool),
|
|
98531
|
+
/* harmony export */ MeasureElementTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureElementTool),
|
|
98532
|
+
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureLengthTool),
|
|
98533
|
+
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureLocationTool),
|
|
98534
|
+
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__.MeasureVolumeTool),
|
|
98535
|
+
/* harmony export */ Mesh: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.Mesh),
|
|
98536
|
+
/* harmony export */ MeshArgs: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.MeshArgs),
|
|
98537
|
+
/* harmony export */ MeshArgsEdges: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.MeshArgsEdges),
|
|
98538
|
+
/* harmony export */ MeshBuilder: () => (/* reexport safe */ _render_primitives_mesh_MeshBuilder__WEBPACK_IMPORTED_MODULE_136__.MeshBuilder),
|
|
98539
|
+
/* harmony export */ MeshBuilderMap: () => (/* reexport safe */ _render_primitives_mesh_MeshBuilderMap__WEBPACK_IMPORTED_MODULE_137__.MeshBuilderMap),
|
|
98540
|
+
/* harmony export */ MeshBuilderPolyface: () => (/* reexport safe */ _render_primitives_mesh_MeshBuilder__WEBPACK_IMPORTED_MODULE_136__.MeshBuilderPolyface),
|
|
98541
|
+
/* harmony export */ MeshEdgeCreationOptions: () => (/* reexport safe */ _render_primitives_mesh_MeshBuilder__WEBPACK_IMPORTED_MODULE_136__.MeshEdgeCreationOptions),
|
|
98542
|
+
/* harmony export */ MeshList: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.MeshList),
|
|
98471
98543
|
/* harmony export */ MeshPrimitiveType: () => (/* reexport safe */ _common_render_primitives_MeshPrimitive__WEBPACK_IMPORTED_MODULE_23__.MeshPrimitiveType),
|
|
98472
98544
|
/* harmony export */ MessageBoxIconType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.MessageBoxIconType),
|
|
98473
98545
|
/* harmony export */ MessageBoxType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.MessageBoxType),
|
|
98474
98546
|
/* harmony export */ MessageBoxValue: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.MessageBoxValue),
|
|
98475
|
-
/* harmony export */ MockRender: () => (/* reexport safe */
|
|
98476
|
-
/* harmony export */ ModelMapLayerTileTreeReference: () => (/* reexport safe */
|
|
98547
|
+
/* harmony export */ MockRender: () => (/* reexport safe */ _render_MockRender__WEBPACK_IMPORTED_MODULE_107__.MockRender),
|
|
98548
|
+
/* harmony export */ ModelMapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ModelMapLayerTileTreeReference),
|
|
98477
98549
|
/* harmony export */ ModelSelectorState: () => (/* reexport safe */ _ModelSelectorState__WEBPACK_IMPORTED_MODULE_60__.ModelSelectorState),
|
|
98478
98550
|
/* harmony export */ ModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.ModelState),
|
|
98479
|
-
/* harmony export */ ModifyElementSource: () => (/* reexport safe */
|
|
98551
|
+
/* harmony export */ ModifyElementSource: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_146__.ModifyElementSource),
|
|
98480
98552
|
/* harmony export */ MutableChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_7__.MutableChangeFlags),
|
|
98481
98553
|
/* harmony export */ NativeApp: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_62__.NativeApp),
|
|
98482
98554
|
/* harmony export */ NativeAppLogger: () => (/* reexport safe */ _NativeAppLogger__WEBPACK_IMPORTED_MODULE_63__.NativeAppLogger),
|
|
98483
98555
|
/* harmony export */ NoRenderApp: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_64__.NoRenderApp),
|
|
98556
|
+
/* harmony export */ NormalMode: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.NormalMode),
|
|
98484
98557
|
/* harmony export */ NotificationHandler: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_56__.NotificationHandler),
|
|
98485
98558
|
/* harmony export */ NotificationManager: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.NotificationManager),
|
|
98486
98559
|
/* harmony export */ NotifyMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.NotifyMessageDetails),
|
|
98487
98560
|
/* harmony export */ NullRenderSystem: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_64__.NullRenderSystem),
|
|
98488
98561
|
/* harmony export */ NullTarget: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_64__.NullTarget),
|
|
98489
|
-
/* harmony export */ OPCFormatInterpreter: () => (/* reexport safe */
|
|
98490
|
-
/* harmony export */ OffScreenTarget: () => (/* reexport safe */
|
|
98562
|
+
/* harmony export */ OPCFormatInterpreter: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.OPCFormatInterpreter),
|
|
98563
|
+
/* harmony export */ OffScreenTarget: () => (/* reexport safe */ _render_webgl_Target__WEBPACK_IMPORTED_MODULE_141__.OffScreenTarget),
|
|
98491
98564
|
/* harmony export */ OffScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.OffScreenViewport),
|
|
98492
|
-
/* harmony export */ OnScreenTarget: () => (/* reexport safe */
|
|
98493
|
-
/* harmony export */ OrbitGtTileTree: () => (/* reexport safe */
|
|
98494
|
-
/* harmony export */ OrbitGtTreeReference: () => (/* reexport safe */
|
|
98565
|
+
/* harmony export */ OnScreenTarget: () => (/* reexport safe */ _render_webgl_Target__WEBPACK_IMPORTED_MODULE_141__.OnScreenTarget),
|
|
98566
|
+
/* harmony export */ OrbitGtTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.OrbitGtTileTree),
|
|
98567
|
+
/* harmony export */ OrbitGtTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.OrbitGtTreeReference),
|
|
98495
98568
|
/* harmony export */ OrthographicViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_70__.OrthographicViewState),
|
|
98496
98569
|
/* harmony export */ OutputMessageAlert: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.OutputMessageAlert),
|
|
98497
98570
|
/* harmony export */ OutputMessagePriority: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.OutputMessagePriority),
|
|
98498
98571
|
/* harmony export */ OutputMessageType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_65__.OutputMessageType),
|
|
98499
|
-
/* harmony export */ PanViewTool: () => (/* reexport safe */
|
|
98500
|
-
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */
|
|
98501
|
-
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */
|
|
98572
|
+
/* harmony export */ PanViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.PanViewTool),
|
|
98573
|
+
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.ParseAndRunResult),
|
|
98574
|
+
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */ _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_108__.ParticleCollectionBuilder),
|
|
98502
98575
|
/* harmony export */ PerModelCategoryVisibility: () => (/* reexport safe */ _PerModelCategoryVisibility__WEBPACK_IMPORTED_MODULE_66__.PerModelCategoryVisibility),
|
|
98503
|
-
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */
|
|
98576
|
+
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */ _render_webgl_PerformanceMetrics__WEBPACK_IMPORTED_MODULE_140__.PerformanceMetrics),
|
|
98504
98577
|
/* harmony export */ PhysicalModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.PhysicalModelState),
|
|
98505
|
-
/* harmony export */ Pixel: () => (/* reexport safe */
|
|
98578
|
+
/* harmony export */ Pixel: () => (/* reexport safe */ _render_Pixel__WEBPACK_IMPORTED_MODULE_109__.Pixel),
|
|
98506
98579
|
/* harmony export */ PlanarClipMaskState: () => (/* reexport safe */ _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_67__.PlanarClipMaskState),
|
|
98507
98580
|
/* harmony export */ PlanarGridTransparency: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.PlanarGridTransparency),
|
|
98508
|
-
/* harmony export */ PlanarTilePatch: () => (/* reexport safe */
|
|
98509
|
-
/* harmony export */
|
|
98510
|
-
/* harmony export */
|
|
98511
|
-
/* harmony export */
|
|
98581
|
+
/* harmony export */ PlanarTilePatch: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.PlanarTilePatch),
|
|
98582
|
+
/* harmony export */ PolyfacePrimitive: () => (/* reexport safe */ _render_primitives_Polyface__WEBPACK_IMPORTED_MODULE_126__.PolyfacePrimitive),
|
|
98583
|
+
/* harmony export */ PolyfacePrimitiveList: () => (/* reexport safe */ _render_primitives_Polyface__WEBPACK_IMPORTED_MODULE_126__.PolyfacePrimitiveList),
|
|
98584
|
+
/* harmony export */ PolylineArgs: () => (/* reexport safe */ _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_138__.PolylineArgs),
|
|
98585
|
+
/* harmony export */ PreserveOrder: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.PreserveOrder),
|
|
98586
|
+
/* harmony export */ PrimitiveBuilder: () => (/* reexport safe */ _render_primitives_geometry_GeometryListBuilder__WEBPACK_IMPORTED_MODULE_134__.PrimitiveBuilder),
|
|
98587
|
+
/* harmony export */ PrimitiveLineStringGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitiveLineStringGeometry),
|
|
98588
|
+
/* harmony export */ PrimitiveLoopGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitiveLoopGeometry),
|
|
98589
|
+
/* harmony export */ PrimitivePathGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitivePathGeometry),
|
|
98590
|
+
/* harmony export */ PrimitivePointStringGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitivePointStringGeometry),
|
|
98591
|
+
/* harmony export */ PrimitivePolyfaceGeometry: () => (/* reexport safe */ _render_primitives_geometry_GeometryPrimitives__WEBPACK_IMPORTED_MODULE_135__.PrimitivePolyfaceGeometry),
|
|
98592
|
+
/* harmony export */ PrimitiveTool: () => (/* reexport safe */ _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_150__.PrimitiveTool),
|
|
98593
|
+
/* harmony export */ PrimitiveVisibility: () => (/* reexport safe */ _render_RenderTarget__WEBPACK_IMPORTED_MODULE_118__.PrimitiveVisibility),
|
|
98594
|
+
/* harmony export */ QuadId: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.QuadId),
|
|
98512
98595
|
/* harmony export */ QuantityFormatter: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.QuantityFormatter),
|
|
98513
98596
|
/* harmony export */ QuantityType: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.QuantityType),
|
|
98514
|
-
/* harmony export */ ReadonlyTileUserSet: () => (/* reexport safe */
|
|
98515
|
-
/* harmony export */ RealityDataError: () => (/* reexport safe */
|
|
98516
|
-
/* harmony export */ RealityDataSource: () => (/* reexport safe */
|
|
98517
|
-
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */
|
|
98518
|
-
/* harmony export */ RealityMeshParams: () => (/* reexport safe */
|
|
98519
|
-
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */
|
|
98520
|
-
/* harmony export */ RealityModelTileTree: () => (/* reexport safe */
|
|
98521
|
-
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */
|
|
98522
|
-
/* harmony export */ RealityTile: () => (/* reexport safe */
|
|
98523
|
-
/* harmony export */ RealityTileDrawArgs: () => (/* reexport safe */
|
|
98524
|
-
/* harmony export */ RealityTileLoader: () => (/* reexport safe */
|
|
98525
|
-
/* harmony export */ RealityTileRegion: () => (/* reexport safe */
|
|
98526
|
-
/* harmony export */ RealityTileTree: () => (/* reexport safe */
|
|
98527
|
-
/* harmony export */ RealityTreeReference: () => (/* reexport safe */
|
|
98597
|
+
/* harmony export */ ReadonlyTileUserSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ReadonlyTileUserSet),
|
|
98598
|
+
/* harmony export */ RealityDataError: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_161__.RealityDataError),
|
|
98599
|
+
/* harmony export */ RealityDataSource: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_161__.RealityDataSource),
|
|
98600
|
+
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_161__.RealityDataSourceProviderRegistry),
|
|
98601
|
+
/* harmony export */ RealityMeshParams: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_111__.RealityMeshParams),
|
|
98602
|
+
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_111__.RealityMeshParamsBuilder),
|
|
98603
|
+
/* harmony export */ RealityModelTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityModelTileTree),
|
|
98604
|
+
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityModelTileUtils),
|
|
98605
|
+
/* harmony export */ RealityTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTile),
|
|
98606
|
+
/* harmony export */ RealityTileDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTileDrawArgs),
|
|
98607
|
+
/* harmony export */ RealityTileLoader: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTileLoader),
|
|
98608
|
+
/* harmony export */ RealityTileRegion: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTileRegion),
|
|
98609
|
+
/* harmony export */ RealityTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTileTree),
|
|
98610
|
+
/* harmony export */ RealityTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityTreeReference),
|
|
98528
98611
|
/* harmony export */ RemoteExtensionProvider: () => (/* reexport safe */ _extension_providers_RemoteExtensionProvider__WEBPACK_IMPORTED_MODULE_89__.RemoteExtensionProvider),
|
|
98529
|
-
/* harmony export */ RenderClipVolume: () => (/* reexport safe */
|
|
98612
|
+
/* harmony export */ RenderClipVolume: () => (/* reexport safe */ _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_112__.RenderClipVolume),
|
|
98530
98613
|
/* harmony export */ RenderContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_78__.RenderContext),
|
|
98531
98614
|
/* harmony export */ RenderDiagnostics: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.RenderDiagnostics),
|
|
98532
|
-
/* harmony export */ RenderGraphic: () => (/* reexport safe */
|
|
98533
|
-
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */
|
|
98534
|
-
/* harmony export */ RenderMemory: () => (/* reexport safe */
|
|
98535
|
-
/* harmony export */ RenderPlanEllipsoid: () => (/* reexport safe */
|
|
98536
|
-
/* harmony export */ RenderPlanarClassifier: () => (/* reexport safe */
|
|
98615
|
+
/* harmony export */ RenderGraphic: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_113__.RenderGraphic),
|
|
98616
|
+
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_113__.RenderGraphicOwner),
|
|
98617
|
+
/* harmony export */ RenderMemory: () => (/* reexport safe */ _render_RenderMemory__WEBPACK_IMPORTED_MODULE_114__.RenderMemory),
|
|
98618
|
+
/* harmony export */ RenderPlanEllipsoid: () => (/* reexport safe */ _render_RenderPlan__WEBPACK_IMPORTED_MODULE_115__.RenderPlanEllipsoid),
|
|
98619
|
+
/* harmony export */ RenderPlanarClassifier: () => (/* reexport safe */ _render_RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_116__.RenderPlanarClassifier),
|
|
98537
98620
|
/* harmony export */ RenderSystem: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.RenderSystem),
|
|
98538
|
-
/* harmony export */ RenderTarget: () => (/* reexport safe */
|
|
98621
|
+
/* harmony export */ RenderTarget: () => (/* reexport safe */ _render_RenderTarget__WEBPACK_IMPORTED_MODULE_118__.RenderTarget),
|
|
98539
98622
|
/* harmony export */ RenderTerrainGeometry: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.RenderTerrainGeometry),
|
|
98540
98623
|
/* harmony export */ RenderTextureDrape: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.RenderTextureDrape),
|
|
98541
|
-
/* harmony export */ RotateViewTool: () => (/* reexport safe */
|
|
98624
|
+
/* harmony export */ RotateViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.RotateViewTool),
|
|
98542
98625
|
/* harmony export */ RotationMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RotationMode),
|
|
98543
98626
|
/* harmony export */ RoundOff: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RoundOff),
|
|
98544
98627
|
/* harmony export */ SavedState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.SavedState),
|
|
98545
98628
|
/* harmony export */ Scene: () => (/* reexport safe */ _render_Scene__WEBPACK_IMPORTED_MODULE_119__.Scene),
|
|
98546
98629
|
/* harmony export */ SceneContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_78__.SceneContext),
|
|
98547
98630
|
/* harmony export */ ScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.ScreenViewport),
|
|
98548
|
-
/* harmony export */ ScrollViewTool: () => (/* reexport safe */
|
|
98631
|
+
/* harmony export */ ScrollViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ScrollViewTool),
|
|
98549
98632
|
/* harmony export */ SectionDrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.SectionDrawingModelState),
|
|
98550
|
-
/* harmony export */ SelectParent: () => (/* reexport safe */
|
|
98551
|
-
/* harmony export */ SelectionMethod: () => (/* reexport safe */
|
|
98552
|
-
/* harmony export */ SelectionMode: () => (/* reexport safe */
|
|
98553
|
-
/* harmony export */ SelectionProcessing: () => (/* reexport safe */
|
|
98633
|
+
/* harmony export */ SelectParent: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.SelectParent),
|
|
98634
|
+
/* harmony export */ SelectionMethod: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__.SelectionMethod),
|
|
98635
|
+
/* harmony export */ SelectionMode: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__.SelectionMode),
|
|
98636
|
+
/* harmony export */ SelectionProcessing: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__.SelectionProcessing),
|
|
98554
98637
|
/* harmony export */ SelectionSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_68__.SelectionSet),
|
|
98555
98638
|
/* harmony export */ SelectionSetEventType: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_68__.SelectionSetEventType),
|
|
98556
|
-
/* harmony export */ SelectionTool: () => (/* reexport safe */
|
|
98557
|
-
/* harmony export */ SetupCameraTool: () => (/* reexport safe */
|
|
98558
|
-
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */
|
|
98639
|
+
/* harmony export */ SelectionTool: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__.SelectionTool),
|
|
98640
|
+
/* harmony export */ SetupCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.SetupCameraTool),
|
|
98641
|
+
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.SetupWalkCameraTool),
|
|
98559
98642
|
/* harmony export */ SheetModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.SheetModelState),
|
|
98560
98643
|
/* harmony export */ SheetViewState: () => (/* reexport safe */ _SheetViewState__WEBPACK_IMPORTED_MODULE_69__.SheetViewState),
|
|
98561
98644
|
/* harmony export */ SnapDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.SnapDetail),
|
|
@@ -98563,136 +98646,149 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98563
98646
|
/* harmony export */ SnapMode: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_52__.SnapMode),
|
|
98564
98647
|
/* harmony export */ SnapStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_39__.SnapStatus),
|
|
98565
98648
|
/* harmony export */ SnapshotConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_54__.SnapshotConnection),
|
|
98566
|
-
/* harmony export */ SpatialClassifierTileTreeReference: () => (/* reexport safe */
|
|
98649
|
+
/* harmony export */ SpatialClassifierTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.SpatialClassifierTileTreeReference),
|
|
98567
98650
|
/* harmony export */ SpatialLocationModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.SpatialLocationModelState),
|
|
98568
98651
|
/* harmony export */ SpatialModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_61__.SpatialModelState),
|
|
98569
|
-
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */
|
|
98652
|
+
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.SpatialTileTreeReferences),
|
|
98570
98653
|
/* harmony export */ SpatialViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_70__.SpatialViewState),
|
|
98571
98654
|
/* harmony export */ Sprite: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_71__.Sprite),
|
|
98572
98655
|
/* harmony export */ SpriteLocation: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_71__.SpriteLocation),
|
|
98573
98656
|
/* harmony export */ StandardView: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_72__.StandardView),
|
|
98574
98657
|
/* harmony export */ StandardViewId: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_72__.StandardViewId),
|
|
98575
|
-
/* harmony export */ StandardViewTool: () => (/* reexport safe */
|
|
98576
|
-
/* harmony export */ StartOrResume: () => (/* reexport safe */
|
|
98658
|
+
/* harmony export */ StandardViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.StandardViewTool),
|
|
98659
|
+
/* harmony export */ StartOrResume: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.StartOrResume),
|
|
98577
98660
|
/* harmony export */ Storage: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_62__.Storage),
|
|
98661
|
+
/* harmony export */ StrokesPrimitive: () => (/* reexport safe */ _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__.StrokesPrimitive),
|
|
98662
|
+
/* harmony export */ StrokesPrimitiveList: () => (/* reexport safe */ _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__.StrokesPrimitiveList),
|
|
98663
|
+
/* harmony export */ StrokesPrimitivePointList: () => (/* reexport safe */ _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__.StrokesPrimitivePointList),
|
|
98664
|
+
/* harmony export */ StrokesPrimitivePointLists: () => (/* reexport safe */ _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__.StrokesPrimitivePointLists),
|
|
98578
98665
|
/* harmony export */ SubCategoriesCache: () => (/* reexport safe */ _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_73__.SubCategoriesCache),
|
|
98579
98666
|
/* harmony export */ SurfaceType: () => (/* reexport safe */ _common_render_primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_26__.SurfaceType),
|
|
98667
|
+
/* harmony export */ SurfacesOnly: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.SurfacesOnly),
|
|
98580
98668
|
/* harmony export */ SurveyLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_92__.SurveyLengthDescription),
|
|
98581
|
-
/* harmony export */ SuspendedToolState: () => (/* reexport safe */
|
|
98582
|
-
/* harmony export */ Target: () => (/* reexport safe */
|
|
98669
|
+
/* harmony export */ SuspendedToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.SuspendedToolState),
|
|
98670
|
+
/* harmony export */ Target: () => (/* reexport safe */ _render_webgl_Target__WEBPACK_IMPORTED_MODULE_141__.Target),
|
|
98583
98671
|
/* harmony export */ TentativeOrAccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TentativeOrAccuSnap),
|
|
98584
98672
|
/* harmony export */ TentativePoint: () => (/* reexport safe */ _TentativePoint__WEBPACK_IMPORTED_MODULE_74__.TentativePoint),
|
|
98585
98673
|
/* harmony export */ TerrainDisplayOverrides: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_37__.TerrainDisplayOverrides),
|
|
98586
|
-
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */
|
|
98587
|
-
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */
|
|
98674
|
+
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TerrainMeshProvider),
|
|
98675
|
+
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TerrainProviderRegistry),
|
|
98588
98676
|
/* harmony export */ TerrainTexture: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__.TerrainTexture),
|
|
98589
98677
|
/* harmony export */ ThreeAxes: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ThreeAxes),
|
|
98590
|
-
/* harmony export */ ThreeDTileFormatInterpreter: () => (/* reexport safe */
|
|
98591
|
-
/* harmony export */ Tile: () => (/* reexport safe */
|
|
98592
|
-
/* harmony export */ TileAdmin: () => (/* reexport safe */
|
|
98593
|
-
/* harmony export */ TileAvailability: () => (/* reexport safe */
|
|
98594
|
-
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */
|
|
98595
|
-
/* harmony export */ TileDrawArgs: () => (/* reexport safe */
|
|
98596
|
-
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */
|
|
98597
|
-
/* harmony export */ TileGraphicType: () => (/* reexport safe */
|
|
98598
|
-
/* harmony export */ TileLoadPriority: () => (/* reexport safe */
|
|
98599
|
-
/* harmony export */ TileLoadStatus: () => (/* reexport safe */
|
|
98600
|
-
/* harmony export */ TileRequest: () => (/* reexport safe */
|
|
98601
|
-
/* harmony export */ TileRequestChannel: () => (/* reexport safe */
|
|
98602
|
-
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */
|
|
98603
|
-
/* harmony export */ TileRequestChannels: () => (/* reexport safe */
|
|
98604
|
-
/* harmony export */ TileStorage: () => (/* reexport safe */
|
|
98605
|
-
/* harmony export */ TileTree: () => (/* reexport safe */
|
|
98606
|
-
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */
|
|
98607
|
-
/* harmony export */ TileTreeReference: () => (/* reexport safe */
|
|
98608
|
-
/* harmony export */ TileUrlImageryProvider: () => (/* reexport safe */
|
|
98609
|
-
/* harmony export */ TileUsageMarker: () => (/* reexport safe */
|
|
98610
|
-
/* harmony export */ TileUser: () => (/* reexport safe */
|
|
98611
|
-
/* harmony export */ TileUserIdSet: () => (/* reexport safe */
|
|
98612
|
-
/* harmony export */ TileUserIdSets: () => (/* reexport safe */
|
|
98613
|
-
/* harmony export */ TileVisibility: () => (/* reexport safe */
|
|
98614
|
-
/* harmony export */ TiledGraphicsProvider: () => (/* reexport safe */
|
|
98678
|
+
/* harmony export */ ThreeDTileFormatInterpreter: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ThreeDTileFormatInterpreter),
|
|
98679
|
+
/* harmony export */ Tile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.Tile),
|
|
98680
|
+
/* harmony export */ TileAdmin: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileAdmin),
|
|
98681
|
+
/* harmony export */ TileAvailability: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileAvailability),
|
|
98682
|
+
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileBoundingBoxes),
|
|
98683
|
+
/* harmony export */ TileDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileDrawArgs),
|
|
98684
|
+
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileGeometryCollector),
|
|
98685
|
+
/* harmony export */ TileGraphicType: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileGraphicType),
|
|
98686
|
+
/* harmony export */ TileLoadPriority: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileLoadPriority),
|
|
98687
|
+
/* harmony export */ TileLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileLoadStatus),
|
|
98688
|
+
/* harmony export */ TileRequest: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileRequest),
|
|
98689
|
+
/* harmony export */ TileRequestChannel: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileRequestChannel),
|
|
98690
|
+
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileRequestChannelStatistics),
|
|
98691
|
+
/* harmony export */ TileRequestChannels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileRequestChannels),
|
|
98692
|
+
/* harmony export */ TileStorage: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileStorage),
|
|
98693
|
+
/* harmony export */ TileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileTree),
|
|
98694
|
+
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileTreeLoadStatus),
|
|
98695
|
+
/* harmony export */ TileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileTreeReference),
|
|
98696
|
+
/* harmony export */ TileUrlImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUrlImageryProvider),
|
|
98697
|
+
/* harmony export */ TileUsageMarker: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUsageMarker),
|
|
98698
|
+
/* harmony export */ TileUser: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUser),
|
|
98699
|
+
/* harmony export */ TileUserIdSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUserIdSet),
|
|
98700
|
+
/* harmony export */ TileUserIdSets: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileUserIdSets),
|
|
98701
|
+
/* harmony export */ TileVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TileVisibility),
|
|
98702
|
+
/* harmony export */ TiledGraphicsProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TiledGraphicsProvider),
|
|
98615
98703
|
/* harmony export */ Tiles: () => (/* reexport safe */ _Tiles__WEBPACK_IMPORTED_MODULE_75__.Tiles),
|
|
98616
|
-
/* harmony export */
|
|
98617
|
-
/* harmony export */
|
|
98618
|
-
/* harmony export */
|
|
98619
|
-
/* harmony export */
|
|
98620
|
-
/* harmony export */
|
|
98621
|
-
/* harmony export */
|
|
98622
|
-
/* harmony export */
|
|
98623
|
-
/* harmony export */
|
|
98624
|
-
/* harmony export */
|
|
98704
|
+
/* harmony export */ ToleranceRatio: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.ToleranceRatio),
|
|
98705
|
+
/* harmony export */ Tool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.Tool),
|
|
98706
|
+
/* harmony export */ ToolAdmin: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.ToolAdmin),
|
|
98707
|
+
/* harmony export */ ToolAssistance: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_155__.ToolAssistance),
|
|
98708
|
+
/* harmony export */ ToolAssistanceImage: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_155__.ToolAssistanceImage),
|
|
98709
|
+
/* harmony export */ ToolAssistanceInputMethod: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_155__.ToolAssistanceInputMethod),
|
|
98710
|
+
/* harmony export */ ToolRegistry: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_152__.ToolRegistry),
|
|
98711
|
+
/* harmony export */ ToolSettings: () => (/* reexport safe */ _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_153__.ToolSettings),
|
|
98712
|
+
/* harmony export */ ToolSettingsState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.ToolSettingsState),
|
|
98713
|
+
/* harmony export */ ToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.ToolState),
|
|
98625
98714
|
/* harmony export */ TouchCursor: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TouchCursor),
|
|
98626
|
-
/* harmony export */ TraversalChildrenDetails: () => (/* reexport safe */
|
|
98627
|
-
/* harmony export */ TraversalDetails: () => (/* reexport safe */
|
|
98628
|
-
/* harmony export */ TraversalSelectionContext: () => (/* reexport safe */
|
|
98715
|
+
/* harmony export */ TraversalChildrenDetails: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TraversalChildrenDetails),
|
|
98716
|
+
/* harmony export */ TraversalDetails: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TraversalDetails),
|
|
98717
|
+
/* harmony export */ TraversalSelectionContext: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.TraversalSelectionContext),
|
|
98718
|
+
/* harmony export */ Triangle: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.Triangle),
|
|
98719
|
+
/* harmony export */ TriangleKey: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.TriangleKey),
|
|
98720
|
+
/* harmony export */ TriangleList: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.TriangleList),
|
|
98721
|
+
/* harmony export */ TriangleSet: () => (/* reexport safe */ _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__.TriangleSet),
|
|
98629
98722
|
/* harmony export */ TwoWayViewportFrustumSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.TwoWayViewportFrustumSync),
|
|
98630
98723
|
/* harmony export */ TwoWayViewportSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.TwoWayViewportSync),
|
|
98631
98724
|
/* harmony export */ UniformType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_120__.UniformType),
|
|
98632
|
-
/* harmony export */ UniqueTileUserSets: () => (/* reexport safe */
|
|
98633
|
-
/* harmony export */ UpsampledMapTile: () => (/* reexport safe */
|
|
98725
|
+
/* harmony export */ UniqueTileUserSets: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.UniqueTileUserSets),
|
|
98726
|
+
/* harmony export */ UpsampledMapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.UpsampledMapTile),
|
|
98634
98727
|
/* harmony export */ VaryingType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_120__.VaryingType),
|
|
98635
98728
|
/* harmony export */ VertexIndices: () => (/* reexport safe */ _common_render_primitives_VertexIndices__WEBPACK_IMPORTED_MODULE_27__.VertexIndices),
|
|
98636
|
-
/* harmony export */
|
|
98637
|
-
/* harmony export */
|
|
98638
|
-
/* harmony export */
|
|
98639
|
-
/* harmony export */
|
|
98640
|
-
/* harmony export */
|
|
98641
|
-
/* harmony export */
|
|
98642
|
-
/* harmony export */
|
|
98643
|
-
/* harmony export */
|
|
98644
|
-
/* harmony export */
|
|
98645
|
-
/* harmony export */
|
|
98646
|
-
/* harmony export */
|
|
98647
|
-
/* harmony export */
|
|
98648
|
-
/* harmony export */
|
|
98649
|
-
/* harmony export */
|
|
98729
|
+
/* harmony export */ VertexKey: () => (/* reexport safe */ _render_primitives_VertexKey__WEBPACK_IMPORTED_MODULE_130__.VertexKey),
|
|
98730
|
+
/* harmony export */ VertexMap: () => (/* reexport safe */ _render_primitives_VertexKey__WEBPACK_IMPORTED_MODULE_130__.VertexMap),
|
|
98731
|
+
/* harmony export */ VertexTableBuilder: () => (/* reexport safe */ _render_primitives_VertexTableBuilder__WEBPACK_IMPORTED_MODULE_131__.VertexTableBuilder),
|
|
98732
|
+
/* harmony export */ ViewClipByElementTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipByElementTool),
|
|
98733
|
+
/* harmony export */ ViewClipByPlaneTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipByPlaneTool),
|
|
98734
|
+
/* harmony export */ ViewClipByRangeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipByRangeTool),
|
|
98735
|
+
/* harmony export */ ViewClipByShapeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipByShapeTool),
|
|
98736
|
+
/* harmony export */ ViewClipClearTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipClearTool),
|
|
98737
|
+
/* harmony export */ ViewClipControlArrow: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipControlArrow),
|
|
98738
|
+
/* harmony export */ ViewClipDecoration: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipDecoration),
|
|
98739
|
+
/* harmony export */ ViewClipDecorationProvider: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipDecorationProvider),
|
|
98740
|
+
/* harmony export */ ViewClipModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipModifyTool),
|
|
98741
|
+
/* harmony export */ ViewClipPlanesModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipPlanesModifyTool),
|
|
98742
|
+
/* harmony export */ ViewClipShapeModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipShapeModifyTool),
|
|
98743
|
+
/* harmony export */ ViewClipTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__.ViewClipTool),
|
|
98744
|
+
/* harmony export */ ViewCreator2d: () => (/* reexport safe */ _ViewCreator2d__WEBPACK_IMPORTED_MODULE_158__.ViewCreator2d),
|
|
98745
|
+
/* harmony export */ ViewCreator3d: () => (/* reexport safe */ _ViewCreator3d__WEBPACK_IMPORTED_MODULE_159__.ViewCreator3d),
|
|
98650
98746
|
/* harmony export */ ViewGlobalLocationConstants: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.ViewGlobalLocationConstants),
|
|
98651
|
-
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */
|
|
98652
|
-
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */
|
|
98653
|
-
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */
|
|
98654
|
-
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */
|
|
98655
|
-
/* harmony export */ ViewHandleArray: () => (/* reexport safe */
|
|
98656
|
-
/* harmony export */ ViewHandleType: () => (/* reexport safe */
|
|
98747
|
+
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewGlobeBirdTool),
|
|
98748
|
+
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewGlobeIModelTool),
|
|
98749
|
+
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewGlobeLocationTool),
|
|
98750
|
+
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewGlobeSatelliteTool),
|
|
98751
|
+
/* harmony export */ ViewHandleArray: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewHandleArray),
|
|
98752
|
+
/* harmony export */ ViewHandleType: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewHandleType),
|
|
98657
98753
|
/* harmony export */ ViewManager: () => (/* reexport safe */ _ViewManager__WEBPACK_IMPORTED_MODULE_81__.ViewManager),
|
|
98658
|
-
/* harmony export */ ViewManip: () => (/* reexport safe */
|
|
98754
|
+
/* harmony export */ ViewManip: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewManip),
|
|
98659
98755
|
/* harmony export */ ViewPose: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_84__.ViewPose),
|
|
98660
98756
|
/* harmony export */ ViewPose2d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_84__.ViewPose2d),
|
|
98661
98757
|
/* harmony export */ ViewPose3d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_84__.ViewPose3d),
|
|
98662
98758
|
/* harmony export */ ViewRect: () => (/* reexport safe */ _common_ViewRect__WEBPACK_IMPORTED_MODULE_31__.ViewRect),
|
|
98663
|
-
/* harmony export */ ViewRedoTool: () => (/* reexport safe */
|
|
98759
|
+
/* harmony export */ ViewRedoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewRedoTool),
|
|
98664
98760
|
/* harmony export */ ViewState: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_85__.ViewState),
|
|
98665
98761
|
/* harmony export */ ViewState2d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_85__.ViewState2d),
|
|
98666
98762
|
/* harmony export */ ViewState3d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_85__.ViewState3d),
|
|
98667
98763
|
/* harmony export */ ViewStatus: () => (/* reexport safe */ _ViewStatus__WEBPACK_IMPORTED_MODULE_86__.ViewStatus),
|
|
98668
|
-
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */
|
|
98669
|
-
/* harmony export */ ViewTool: () => (/* reexport safe */
|
|
98764
|
+
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewToggleCameraTool),
|
|
98765
|
+
/* harmony export */ ViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewTool),
|
|
98670
98766
|
/* harmony export */ ViewUndoEvent: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.ViewUndoEvent),
|
|
98671
|
-
/* harmony export */ ViewUndoTool: () => (/* reexport safe */
|
|
98767
|
+
/* harmony export */ ViewUndoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewUndoTool),
|
|
98672
98768
|
/* harmony export */ ViewingSpace: () => (/* reexport safe */ _ViewingSpace__WEBPACK_IMPORTED_MODULE_80__.ViewingSpace),
|
|
98673
|
-
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */
|
|
98769
|
+
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ViewingToolHandle),
|
|
98674
98770
|
/* harmony export */ Viewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_82__.Viewport),
|
|
98675
|
-
/* harmony export */ WalkViewTool: () => (/* reexport safe */
|
|
98676
|
-
/* harmony export */ WebMercator: () => (/* reexport safe */
|
|
98677
|
-
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */
|
|
98678
|
-
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */
|
|
98679
|
-
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */
|
|
98680
|
-
/* harmony export */ WindowAreaTool: () => (/* reexport safe */
|
|
98681
|
-
/* harmony export */ WmsCapabilities: () => (/* reexport safe */
|
|
98682
|
-
/* harmony export */ WmsCapability: () => (/* reexport safe */
|
|
98683
|
-
/* harmony export */ WmsMapLayerImageryProvider: () => (/* reexport safe */
|
|
98684
|
-
/* harmony export */ WmsUtilities: () => (/* reexport safe */
|
|
98685
|
-
/* harmony export */ WmtsCapabilities: () => (/* reexport safe */
|
|
98686
|
-
/* harmony export */ WmtsCapability: () => (/* reexport safe */
|
|
98687
|
-
/* harmony export */ WmtsConstants: () => (/* reexport safe */
|
|
98688
|
-
/* harmony export */ WmtsMapLayerImageryProvider: () => (/* reexport safe */
|
|
98689
|
-
/* harmony export */ ZoomViewTool: () => (/* reexport safe */
|
|
98690
|
-
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */
|
|
98691
|
-
/* harmony export */ acquireImdlParser: () => (/* reexport safe */
|
|
98692
|
-
/* harmony export */ addRangeGraphic: () => (/* reexport safe */
|
|
98771
|
+
/* harmony export */ WalkViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.WalkViewTool),
|
|
98772
|
+
/* harmony export */ WebMercator: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WebMercator),
|
|
98773
|
+
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WebMercatorProjection),
|
|
98774
|
+
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WebMercatorTilingScheme),
|
|
98775
|
+
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__.WheelEventProcessor),
|
|
98776
|
+
/* harmony export */ WindowAreaTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.WindowAreaTool),
|
|
98777
|
+
/* harmony export */ WmsCapabilities: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmsCapabilities),
|
|
98778
|
+
/* harmony export */ WmsCapability: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmsCapability),
|
|
98779
|
+
/* harmony export */ WmsMapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmsMapLayerImageryProvider),
|
|
98780
|
+
/* harmony export */ WmsUtilities: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmsUtilities),
|
|
98781
|
+
/* harmony export */ WmtsCapabilities: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmtsCapabilities),
|
|
98782
|
+
/* harmony export */ WmtsCapability: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmtsCapability),
|
|
98783
|
+
/* harmony export */ WmtsConstants: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmtsConstants),
|
|
98784
|
+
/* harmony export */ WmtsMapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.WmtsMapLayerImageryProvider),
|
|
98785
|
+
/* harmony export */ ZoomViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__.ZoomViewTool),
|
|
98786
|
+
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.acquireImdlDecoder),
|
|
98787
|
+
/* harmony export */ acquireImdlParser: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.acquireImdlParser),
|
|
98788
|
+
/* harmony export */ addRangeGraphic: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.addRangeGraphic),
|
|
98693
98789
|
/* harmony export */ areaToEyeHeight: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.areaToEyeHeight),
|
|
98694
98790
|
/* harmony export */ areaToEyeHeightFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.areaToEyeHeightFromGcs),
|
|
98695
|
-
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */
|
|
98791
|
+
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_157__.calculateEcefToDbTransformAtLocation),
|
|
98696
98792
|
/* harmony export */ calculateEdgeTableParams: () => (/* reexport safe */ _common_render_primitives_EdgeParams__WEBPACK_IMPORTED_MODULE_21__.calculateEdgeTableParams),
|
|
98697
98793
|
/* harmony export */ canvasToImageBuffer: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.canvasToImageBuffer),
|
|
98698
98794
|
/* harmony export */ canvasToResizedCanvasWithBars: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.canvasToResizedCanvasWithBars),
|
|
@@ -98702,47 +98798,51 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98702
98798
|
/* harmony export */ connectViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.connectViewportViews),
|
|
98703
98799
|
/* harmony export */ connectViewports: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.connectViewports),
|
|
98704
98800
|
/* harmony export */ convertFeatureTable: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.convertFeatureTable),
|
|
98705
|
-
/* harmony export */ createClassifierTileTreeReference: () => (/* reexport safe */
|
|
98706
|
-
/* harmony export */ createDefaultViewFlagOverrides: () => (/* reexport safe */
|
|
98707
|
-
/* harmony export */
|
|
98708
|
-
/* harmony export */
|
|
98709
|
-
/* harmony export */
|
|
98710
|
-
/* harmony export */
|
|
98711
|
-
/* harmony export */
|
|
98712
|
-
/* harmony export */
|
|
98713
|
-
/* harmony export */
|
|
98714
|
-
/* harmony export */
|
|
98801
|
+
/* harmony export */ createClassifierTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createClassifierTileTreeReference),
|
|
98802
|
+
/* harmony export */ createDefaultViewFlagOverrides: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createDefaultViewFlagOverrides),
|
|
98803
|
+
/* harmony export */ createEdgeParams: () => (/* reexport safe */ _render_primitives_EdgeParams__WEBPACK_IMPORTED_MODULE_123__.createEdgeParams),
|
|
98804
|
+
/* harmony export */ createEmptyRenderPlan: () => (/* reexport safe */ _render_RenderPlan__WEBPACK_IMPORTED_MODULE_115__.createEmptyRenderPlan),
|
|
98805
|
+
/* harmony export */ createMapLayerTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createMapLayerTreeReference),
|
|
98806
|
+
/* harmony export */ createMaskTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createMaskTreeReference),
|
|
98807
|
+
/* harmony export */ createMeshParams: () => (/* reexport safe */ _render_primitives_VertexTableBuilder__WEBPACK_IMPORTED_MODULE_131__.createMeshParams),
|
|
98808
|
+
/* harmony export */ createModelMapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createModelMapLayerTileTreeReference),
|
|
98809
|
+
/* harmony export */ createOrbitGtTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createOrbitGtTileTreeReference),
|
|
98810
|
+
/* harmony export */ createPointStringParams: () => (/* reexport safe */ _render_primitives_PointStringParams__WEBPACK_IMPORTED_MODULE_125__.createPointStringParams),
|
|
98811
|
+
/* harmony export */ createPolylineParams: () => (/* reexport safe */ _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__.createPolylineParams),
|
|
98812
|
+
/* harmony export */ createPrimaryTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createPrimaryTileTreeReference),
|
|
98813
|
+
/* harmony export */ createRealityTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.createRealityTileTreeReference),
|
|
98814
|
+
/* harmony export */ createRenderPlanFromViewport: () => (/* reexport safe */ _render_RenderPlan__WEBPACK_IMPORTED_MODULE_115__.createRenderPlanFromViewport),
|
|
98715
98815
|
/* harmony export */ createSurfaceMaterial: () => (/* reexport safe */ _common_render_primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_26__.createSurfaceMaterial),
|
|
98716
98816
|
/* harmony export */ createWorkerProxy: () => (/* reexport safe */ _common_WorkerProxy__WEBPACK_IMPORTED_MODULE_32__.createWorkerProxy),
|
|
98717
|
-
/* harmony export */ decodeImdlGraphics: () => (/* reexport safe */
|
|
98718
|
-
/* harmony export */ disposeTileTreesForGeometricModels: () => (/* reexport safe */
|
|
98817
|
+
/* harmony export */ decodeImdlGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.decodeImdlGraphics),
|
|
98818
|
+
/* harmony export */ disposeTileTreesForGeometricModels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.disposeTileTreesForGeometricModels),
|
|
98719
98819
|
/* harmony export */ edgeParamsFromImdl: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.edgeParamsFromImdl),
|
|
98720
98820
|
/* harmony export */ extractImageSourceDimensions: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.extractImageSourceDimensions),
|
|
98721
98821
|
/* harmony export */ eyeToCartographicOnGlobe: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.eyeToCartographicOnGlobe),
|
|
98722
98822
|
/* harmony export */ eyeToCartographicOnGlobeFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.eyeToCartographicOnGlobeFromGcs),
|
|
98723
|
-
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */
|
|
98823
|
+
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_103__.formatAnimationBranchId),
|
|
98724
98824
|
/* harmony export */ getCenteredViewRect: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getCenteredViewRect),
|
|
98725
|
-
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* reexport safe */
|
|
98726
|
-
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */
|
|
98727
|
-
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* reexport safe */
|
|
98728
|
-
/* harmony export */ getCesiumTerrainProvider: () => (/* reexport safe */
|
|
98825
|
+
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getCesiumAccessTokenAndEndpointUrl),
|
|
98826
|
+
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getCesiumAssetUrl),
|
|
98827
|
+
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getCesiumOSMBuildingsUrl),
|
|
98828
|
+
/* harmony export */ getCesiumTerrainProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getCesiumTerrainProvider),
|
|
98729
98829
|
/* harmony export */ getCompressedJpegFromCanvas: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getCompressedJpegFromCanvas),
|
|
98730
|
-
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */
|
|
98731
|
-
/* harmony export */ getGcsConverterAvailable: () => (/* reexport safe */
|
|
98830
|
+
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_157__.getFrustumPlaneIntersectionDepthRange),
|
|
98831
|
+
/* harmony export */ getGcsConverterAvailable: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.getGcsConverterAvailable),
|
|
98732
98832
|
/* harmony export */ getGltfNodeMeshIds: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.getGltfNodeMeshIds),
|
|
98733
98833
|
/* harmony export */ getImageSourceFormatForMimeType: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getImageSourceFormatForMimeType),
|
|
98734
98834
|
/* harmony export */ getImageSourceMimeType: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getImageSourceMimeType),
|
|
98735
98835
|
/* harmony export */ getQuantityTypeKey: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.getQuantityTypeKey),
|
|
98736
98836
|
/* harmony export */ gltfDictionaryIterator: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.gltfDictionaryIterator),
|
|
98737
|
-
/* harmony export */ iModelTileParamsFromJSON: () => (/* reexport safe */
|
|
98738
|
-
/* harmony export */ iModelTileTreeParamsFromJSON: () => (/* reexport safe */
|
|
98837
|
+
/* harmony export */ iModelTileParamsFromJSON: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.iModelTileParamsFromJSON),
|
|
98838
|
+
/* harmony export */ iModelTileTreeParamsFromJSON: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.iModelTileTreeParamsFromJSON),
|
|
98739
98839
|
/* harmony export */ imageBitmapFromImageSource: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBitmapFromImageSource),
|
|
98740
98840
|
/* harmony export */ imageBufferToBase64EncodedPng: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBufferToBase64EncodedPng),
|
|
98741
98841
|
/* harmony export */ imageBufferToCanvas: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBufferToCanvas),
|
|
98742
98842
|
/* harmony export */ imageBufferToPngDataUrl: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBufferToPngDataUrl),
|
|
98743
98843
|
/* harmony export */ imageElementFromImageSource: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageElementFromImageSource),
|
|
98744
98844
|
/* harmony export */ imageElementFromUrl: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageElementFromUrl),
|
|
98745
|
-
/* harmony export */ internalMapLayerImageryFormats: () => (/* reexport safe */
|
|
98845
|
+
/* harmony export */ internalMapLayerImageryFormats: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.internalMapLayerImageryFormats),
|
|
98746
98846
|
/* harmony export */ isCheckboxFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_96__.isCheckboxFormatPropEditorSpec),
|
|
98747
98847
|
/* harmony export */ isCustomQuantityTypeDefinition: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.isCustomQuantityTypeDefinition),
|
|
98748
98848
|
/* harmony export */ isGltf1Material: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.isGltf1Material),
|
|
@@ -98752,27 +98852,30 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98752
98852
|
/* harmony export */ linePlaneIntersect: () => (/* reexport safe */ _LinePlaneIntersect__WEBPACK_IMPORTED_MODULE_57__.linePlaneIntersect),
|
|
98753
98853
|
/* harmony export */ metersToRange: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.metersToRange),
|
|
98754
98854
|
/* harmony export */ openImageDataUrlInNewWindow: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.openImageDataUrlInNewWindow),
|
|
98755
|
-
/* harmony export */ overrideRequestTileTreeProps: () => (/* reexport safe */
|
|
98855
|
+
/* harmony export */ overrideRequestTileTreeProps: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.overrideRequestTileTreeProps),
|
|
98756
98856
|
/* harmony export */ parseGltf: () => (/* reexport safe */ _common_gltf_GltfParser__WEBPACK_IMPORTED_MODULE_11__.parseGltf),
|
|
98757
98857
|
/* harmony export */ parseImdlDocument: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.parseImdlDocument),
|
|
98758
98858
|
/* harmony export */ queryTerrainElevationOffset: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.queryTerrainElevationOffset),
|
|
98759
98859
|
/* harmony export */ queryVisibleFeatures: () => (/* reexport safe */ _render_VisibleFeature__WEBPACK_IMPORTED_MODULE_121__.queryVisibleFeatures),
|
|
98760
98860
|
/* harmony export */ rangeToCartographicArea: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.rangeToCartographicArea),
|
|
98761
|
-
/* harmony export */ readElementGraphics: () => (/* reexport safe */
|
|
98762
|
-
/* harmony export */ readGltf: () => (/* reexport safe */
|
|
98763
|
-
/* harmony export */ readGltfGraphics: () => (/* reexport safe */
|
|
98764
|
-
/* harmony export */ readImdlContent: () => (/* reexport safe */
|
|
98765
|
-
/* harmony export */ readPointCloudTileContent: () => (/* reexport safe */
|
|
98861
|
+
/* harmony export */ readElementGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readElementGraphics),
|
|
98862
|
+
/* harmony export */ readGltf: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readGltf),
|
|
98863
|
+
/* harmony export */ readGltfGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readGltfGraphics),
|
|
98864
|
+
/* harmony export */ readImdlContent: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readImdlContent),
|
|
98865
|
+
/* harmony export */ readPointCloudTileContent: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readPointCloudTileContent),
|
|
98766
98866
|
/* harmony export */ splitMeshParams: () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitMeshParams),
|
|
98767
98867
|
/* harmony export */ splitPointStringParams: () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitPointStringParams),
|
|
98768
98868
|
/* harmony export */ splitPolylineParams: () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitPolylineParams),
|
|
98769
98869
|
/* harmony export */ synchronizeViewportFrusta: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.synchronizeViewportFrusta),
|
|
98770
98870
|
/* harmony export */ synchronizeViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_83__.synchronizeViewportViews),
|
|
98871
|
+
/* harmony export */ tesselatePolyline: () => (/* reexport safe */ _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__.tesselatePolyline),
|
|
98872
|
+
/* harmony export */ tesselatePolylineFromMesh: () => (/* reexport safe */ _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__.tesselatePolylineFromMesh),
|
|
98771
98873
|
/* harmony export */ toMaterialParams: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.toMaterialParams),
|
|
98772
98874
|
/* harmony export */ toVertexTable: () => (/* reexport safe */ _common_imdl_ParseImdlDocument__WEBPACK_IMPORTED_MODULE_16__.toVertexTable),
|
|
98773
98875
|
/* harmony export */ traverseGltfNodes: () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.traverseGltfNodes),
|
|
98774
98876
|
/* harmony export */ tryImageElementFromUrl: () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.tryImageElementFromUrl),
|
|
98775
|
-
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.viewGlobalLocation)
|
|
98877
|
+
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_79__.viewGlobalLocation),
|
|
98878
|
+
/* harmony export */ wantJointTriangles: () => (/* reexport safe */ _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__.wantJointTriangles)
|
|
98776
98879
|
/* harmony export */ });
|
|
98777
98880
|
/* harmony import */ var _AccuDraw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccuDraw */ "../../core/frontend/lib/esm/AccuDraw.js");
|
|
98778
98881
|
/* harmony import */ var _AccuSnap__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AccuSnap */ "../../core/frontend/lib/esm/AccuSnap.js");
|
|
@@ -98872,54 +98975,71 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
98872
98975
|
/* harmony import */ var _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./quantity-formatting/LocalUnitFormatProvider */ "../../core/frontend/lib/esm/quantity-formatting/LocalUnitFormatProvider.js");
|
|
98873
98976
|
/* harmony import */ var _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./quantity-formatting/QuantityTypesEditorSpecs */ "../../core/frontend/lib/esm/quantity-formatting/QuantityTypesEditorSpecs.js");
|
|
98874
98977
|
/* harmony import */ var _render_CanvasDecoration__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./render/CanvasDecoration */ "../../core/frontend/lib/esm/render/CanvasDecoration.js");
|
|
98875
|
-
/* harmony import */ var
|
|
98876
|
-
/* harmony import */ var
|
|
98877
|
-
/* harmony import */ var
|
|
98878
|
-
/* harmony import */ var
|
|
98879
|
-
/* harmony import */ var
|
|
98880
|
-
/* harmony import */ var
|
|
98881
|
-
/* harmony import */ var
|
|
98882
|
-
/* harmony import */ var
|
|
98883
|
-
/* harmony import */ var
|
|
98884
|
-
/* harmony import */ var
|
|
98885
|
-
/* harmony import */ var
|
|
98886
|
-
/* harmony import */ var
|
|
98887
|
-
/* harmony import */ var
|
|
98888
|
-
/* harmony import */ var
|
|
98889
|
-
/* harmony import */ var
|
|
98890
|
-
/* harmony import */ var
|
|
98891
|
-
/* harmony import */ var
|
|
98892
|
-
/* harmony import */ var
|
|
98893
|
-
/* harmony import */ var
|
|
98978
|
+
/* harmony import */ var _render_CreateRenderMaterialArgs__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./render/CreateRenderMaterialArgs */ "../../core/frontend/lib/esm/render/CreateRenderMaterialArgs.js");
|
|
98979
|
+
/* harmony import */ var _render_CreateTextureArgs__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./render/CreateTextureArgs */ "../../core/frontend/lib/esm/render/CreateTextureArgs.js");
|
|
98980
|
+
/* harmony import */ var _render_Decorations__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./render/Decorations */ "../../core/frontend/lib/esm/render/Decorations.js");
|
|
98981
|
+
/* harmony import */ var _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./render/FeatureSymbology */ "../../core/frontend/lib/esm/render/FeatureSymbology.js");
|
|
98982
|
+
/* harmony import */ var _render_FrameStats__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./render/FrameStats */ "../../core/frontend/lib/esm/render/FrameStats.js");
|
|
98983
|
+
/* harmony import */ var _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./render/GraphicBranch */ "../../core/frontend/lib/esm/render/GraphicBranch.js");
|
|
98984
|
+
/* harmony import */ var _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./render/GraphicBuilder */ "../../core/frontend/lib/esm/render/GraphicBuilder.js");
|
|
98985
|
+
/* harmony import */ var _render_GraphicPrimitive__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./render/GraphicPrimitive */ "../../core/frontend/lib/esm/render/GraphicPrimitive.js");
|
|
98986
|
+
/* harmony import */ var _render_InstancedGraphicParams__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./render/InstancedGraphicParams */ "../../core/frontend/lib/esm/render/InstancedGraphicParams.js");
|
|
98987
|
+
/* harmony import */ var _render_MockRender__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./render/MockRender */ "../../core/frontend/lib/esm/render/MockRender.js");
|
|
98988
|
+
/* harmony import */ var _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./render/ParticleCollectionBuilder */ "../../core/frontend/lib/esm/render/ParticleCollectionBuilder.js");
|
|
98989
|
+
/* harmony import */ var _render_Pixel__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./render/Pixel */ "../../core/frontend/lib/esm/render/Pixel.js");
|
|
98990
|
+
/* harmony import */ var _render_RealityMeshGraphicParams__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./render/RealityMeshGraphicParams */ "../../core/frontend/lib/esm/render/RealityMeshGraphicParams.js");
|
|
98991
|
+
/* harmony import */ var _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./render/RealityMeshParams */ "../../core/frontend/lib/esm/render/RealityMeshParams.js");
|
|
98992
|
+
/* harmony import */ var _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./render/RenderClipVolume */ "../../core/frontend/lib/esm/render/RenderClipVolume.js");
|
|
98993
|
+
/* harmony import */ var _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./render/RenderGraphic */ "../../core/frontend/lib/esm/render/RenderGraphic.js");
|
|
98994
|
+
/* harmony import */ var _render_RenderMemory__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./render/RenderMemory */ "../../core/frontend/lib/esm/render/RenderMemory.js");
|
|
98995
|
+
/* harmony import */ var _render_RenderPlan__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./render/RenderPlan */ "../../core/frontend/lib/esm/render/RenderPlan.js");
|
|
98996
|
+
/* harmony import */ var _render_RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./render/RenderPlanarClassifier */ "../../core/frontend/lib/esm/render/RenderPlanarClassifier.js");
|
|
98894
98997
|
/* harmony import */ var _render_RenderSystem__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./render/RenderSystem */ "../../core/frontend/lib/esm/render/RenderSystem.js");
|
|
98895
|
-
/* harmony import */ var
|
|
98998
|
+
/* harmony import */ var _render_RenderTarget__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./render/RenderTarget */ "../../core/frontend/lib/esm/render/RenderTarget.js");
|
|
98896
98999
|
/* harmony import */ var _render_Scene__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./render/Scene */ "../../core/frontend/lib/esm/render/Scene.js");
|
|
98897
99000
|
/* harmony import */ var _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./render/ScreenSpaceEffectBuilder */ "../../core/frontend/lib/esm/render/ScreenSpaceEffectBuilder.js");
|
|
98898
99001
|
/* harmony import */ var _render_VisibleFeature__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./render/VisibleFeature */ "../../core/frontend/lib/esm/render/VisibleFeature.js");
|
|
98899
|
-
/* harmony import */ var
|
|
98900
|
-
/* harmony import */ var
|
|
98901
|
-
/* harmony import */ var
|
|
98902
|
-
/* harmony import */ var
|
|
98903
|
-
/* harmony import */ var
|
|
98904
|
-
/* harmony import */ var
|
|
98905
|
-
/* harmony import */ var
|
|
98906
|
-
/* harmony import */ var
|
|
98907
|
-
/* harmony import */ var
|
|
98908
|
-
/* harmony import */ var
|
|
98909
|
-
/* harmony import */ var
|
|
98910
|
-
/* harmony import */ var
|
|
98911
|
-
/* harmony import */ var
|
|
98912
|
-
/* harmony import */ var
|
|
98913
|
-
/* harmony import */ var
|
|
98914
|
-
/* harmony import */ var
|
|
98915
|
-
/* harmony import */ var
|
|
98916
|
-
/* harmony import */ var
|
|
98917
|
-
/* harmony import */ var
|
|
98918
|
-
/* harmony import */ var
|
|
98919
|
-
/* harmony import */ var
|
|
98920
|
-
/* harmony import */ var
|
|
98921
|
-
/* harmony import */ var
|
|
98922
|
-
/* harmony import */ var
|
|
99002
|
+
/* harmony import */ var _render_primitives_ColorMap__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./render/primitives/ColorMap */ "../../core/frontend/lib/esm/render/primitives/ColorMap.js");
|
|
99003
|
+
/* harmony import */ var _render_primitives_EdgeParams__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./render/primitives/EdgeParams */ "../../core/frontend/lib/esm/render/primitives/EdgeParams.js");
|
|
99004
|
+
/* harmony import */ var _render_primitives_PointCloudPrimitive__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./render/primitives/PointCloudPrimitive */ "../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js");
|
|
99005
|
+
/* harmony import */ var _render_primitives_PointStringParams__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./render/primitives/PointStringParams */ "../../core/frontend/lib/esm/render/primitives/PointStringParams.js");
|
|
99006
|
+
/* harmony import */ var _render_primitives_Polyface__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./render/primitives/Polyface */ "../../core/frontend/lib/esm/render/primitives/Polyface.js");
|
|
99007
|
+
/* harmony import */ var _render_primitives_PolylineParams__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./render/primitives/PolylineParams */ "../../core/frontend/lib/esm/render/primitives/PolylineParams.js");
|
|
99008
|
+
/* harmony import */ var _render_primitives_Primitives__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./render/primitives/Primitives */ "../../core/frontend/lib/esm/render/primitives/Primitives.js");
|
|
99009
|
+
/* harmony import */ var _render_primitives_Strokes__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./render/primitives/Strokes */ "../../core/frontend/lib/esm/render/primitives/Strokes.js");
|
|
99010
|
+
/* harmony import */ var _render_primitives_VertexKey__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./render/primitives/VertexKey */ "../../core/frontend/lib/esm/render/primitives/VertexKey.js");
|
|
99011
|
+
/* harmony import */ var _render_primitives_VertexTableBuilder__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./render/primitives/VertexTableBuilder */ "../../core/frontend/lib/esm/render/primitives/VertexTableBuilder.js");
|
|
99012
|
+
/* 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");
|
|
99013
|
+
/* 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");
|
|
99014
|
+
/* 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");
|
|
99015
|
+
/* 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");
|
|
99016
|
+
/* 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");
|
|
99017
|
+
/* 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");
|
|
99018
|
+
/* 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");
|
|
99019
|
+
/* harmony import */ var _render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./render/webgl/IModelFrameLifecycle */ "../../core/frontend/lib/esm/render/webgl/IModelFrameLifecycle.js");
|
|
99020
|
+
/* harmony import */ var _render_webgl_PerformanceMetrics__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./render/webgl/PerformanceMetrics */ "../../core/frontend/lib/esm/render/webgl/PerformanceMetrics.js");
|
|
99021
|
+
/* harmony import */ var _render_webgl_Target__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./render/webgl/Target */ "../../core/frontend/lib/esm/render/webgl/Target.js");
|
|
99022
|
+
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
99023
|
+
/* harmony import */ var _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tools/AccuDrawTool */ "../../core/frontend/lib/esm/tools/AccuDrawTool.js");
|
|
99024
|
+
/* harmony import */ var _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tools/ClipViewTool */ "../../core/frontend/lib/esm/tools/ClipViewTool.js");
|
|
99025
|
+
/* harmony import */ var _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tools/EditManipulator */ "../../core/frontend/lib/esm/tools/EditManipulator.js");
|
|
99026
|
+
/* harmony import */ var _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tools/ElementSetTool */ "../../core/frontend/lib/esm/tools/ElementSetTool.js");
|
|
99027
|
+
/* harmony import */ var _tools_EventController__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tools/EventController */ "../../core/frontend/lib/esm/tools/EventController.js");
|
|
99028
|
+
/* harmony import */ var _tools_IdleTool__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tools/IdleTool */ "../../core/frontend/lib/esm/tools/IdleTool.js");
|
|
99029
|
+
/* harmony import */ var _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tools/MeasureTool */ "../../core/frontend/lib/esm/tools/MeasureTool.js");
|
|
99030
|
+
/* harmony import */ var _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tools/PrimitiveTool */ "../../core/frontend/lib/esm/tools/PrimitiveTool.js");
|
|
99031
|
+
/* harmony import */ var _tools_SelectTool__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tools/SelectTool */ "../../core/frontend/lib/esm/tools/SelectTool.js");
|
|
99032
|
+
/* harmony import */ var _tools_Tool__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tools/Tool */ "../../core/frontend/lib/esm/tools/Tool.js");
|
|
99033
|
+
/* harmony import */ var _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tools/ToolSettings */ "../../core/frontend/lib/esm/tools/ToolSettings.js");
|
|
99034
|
+
/* harmony import */ var _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tools/ToolAdmin */ "../../core/frontend/lib/esm/tools/ToolAdmin.js");
|
|
99035
|
+
/* harmony import */ var _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tools/ToolAssistance */ "../../core/frontend/lib/esm/tools/ToolAssistance.js");
|
|
99036
|
+
/* harmony import */ var _tools_ViewTool__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tools/ViewTool */ "../../core/frontend/lib/esm/tools/ViewTool.js");
|
|
99037
|
+
/* harmony import */ var _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./BackgroundMapGeometry */ "../../core/frontend/lib/esm/BackgroundMapGeometry.js");
|
|
99038
|
+
/* harmony import */ var _ViewCreator2d__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./ViewCreator2d */ "../../core/frontend/lib/esm/ViewCreator2d.js");
|
|
99039
|
+
/* harmony import */ var _ViewCreator3d__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./ViewCreator3d */ "../../core/frontend/lib/esm/ViewCreator3d.js");
|
|
99040
|
+
/* harmony import */ var _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./LocalhostIpcApp */ "../../core/frontend/lib/esm/LocalhostIpcApp.js");
|
|
99041
|
+
/* harmony import */ var _RealityDataSource__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./RealityDataSource */ "../../core/frontend/lib/esm/RealityDataSource.js");
|
|
99042
|
+
/* harmony import */ var _extension_ExtensionRuntime__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(/*! ./extension/ExtensionRuntime */ "../../core/frontend/lib/esm/extension/ExtensionRuntime.js");
|
|
98923
99043
|
/*---------------------------------------------------------------------------------------------
|
|
98924
99044
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
98925
99045
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -99051,6 +99171,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
99051
99171
|
|
|
99052
99172
|
|
|
99053
99173
|
|
|
99174
|
+
|
|
99175
|
+
|
|
99176
|
+
|
|
99177
|
+
|
|
99178
|
+
|
|
99179
|
+
|
|
99180
|
+
|
|
99181
|
+
|
|
99182
|
+
|
|
99183
|
+
|
|
99184
|
+
|
|
99185
|
+
|
|
99186
|
+
|
|
99187
|
+
|
|
99188
|
+
|
|
99189
|
+
|
|
99190
|
+
|
|
99054
99191
|
|
|
99055
99192
|
|
|
99056
99193
|
|
|
@@ -102847,7 +102984,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
102847
102984
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
102848
102985
|
/* harmony export */ Pixel: () => (/* binding */ Pixel)
|
|
102849
102986
|
/* harmony export */ });
|
|
102850
|
-
/* harmony import */ var
|
|
102987
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
102988
|
+
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
102989
|
+
/* harmony import */ var _HitDetail__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../HitDetail */ "../../core/frontend/lib/esm/HitDetail.js");
|
|
102851
102990
|
/*---------------------------------------------------------------------------------------------
|
|
102852
102991
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
102853
102992
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -102856,6 +102995,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
102856
102995
|
* @module Rendering
|
|
102857
102996
|
*/
|
|
102858
102997
|
|
|
102998
|
+
|
|
102999
|
+
|
|
102859
103000
|
/** Describes aspects of a pixel as read from a [[Viewport]].
|
|
102860
103001
|
* @see [[Viewport.readPixels]].
|
|
102861
103002
|
* @public
|
|
@@ -102867,12 +103008,12 @@ var Pixel;
|
|
|
102867
103008
|
class Data {
|
|
102868
103009
|
/** @internal */
|
|
102869
103010
|
get isClassifier() {
|
|
102870
|
-
return undefined !== this.batchType &&
|
|
103011
|
+
return undefined !== this.batchType && _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.BatchType.Primary !== this.batchType;
|
|
102871
103012
|
}
|
|
102872
103013
|
/** @internal */
|
|
102873
103014
|
constructor(args) {
|
|
102874
103015
|
if (args?.feature)
|
|
102875
|
-
this.feature = new
|
|
103016
|
+
this.feature = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.Feature(args.feature.elementId, args.feature.subCategoryId, args.feature.geometryClass);
|
|
102876
103017
|
this.modelId = args?.feature?.modelId;
|
|
102877
103018
|
this.distanceFraction = args?.distanceFraction ?? -1;
|
|
102878
103019
|
this.type = args?.type ?? GeometryType.Unknown;
|
|
@@ -102893,6 +103034,44 @@ var Pixel;
|
|
|
102893
103034
|
get geometryClass() {
|
|
102894
103035
|
return this.feature?.geometryClass;
|
|
102895
103036
|
}
|
|
103037
|
+
/** Computes the [[HitPriority]] of this pixel based on its [[type]] and [[planarity]]. */
|
|
103038
|
+
computeHitPriority() {
|
|
103039
|
+
switch (this.type) {
|
|
103040
|
+
case Pixel.GeometryType.Surface:
|
|
103041
|
+
return Pixel.Planarity.Planar === this.planarity ? _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.PlanarSurface : _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.NonPlanarSurface;
|
|
103042
|
+
case Pixel.GeometryType.Linear:
|
|
103043
|
+
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.WireEdge;
|
|
103044
|
+
case Pixel.GeometryType.Edge:
|
|
103045
|
+
return Pixel.Planarity.Planar === this.planarity ? _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.PlanarEdge : _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.NonPlanarEdge;
|
|
103046
|
+
case Pixel.GeometryType.Silhouette:
|
|
103047
|
+
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.SilhouetteEdge;
|
|
103048
|
+
default:
|
|
103049
|
+
return _HitDetail__WEBPACK_IMPORTED_MODULE_2__.HitPriority.Unknown;
|
|
103050
|
+
}
|
|
103051
|
+
}
|
|
103052
|
+
/** Convert this pixel to a [[Pixel.HitProps]] suitable for constructing a [[HitDetail]].
|
|
103053
|
+
* @param viewport The viewport in which the hit originated.
|
|
103054
|
+
*/
|
|
103055
|
+
toHitProps(viewport) {
|
|
103056
|
+
let viewAttachment;
|
|
103057
|
+
if (this.viewAttachmentId) {
|
|
103058
|
+
const attachmentViewport = viewport.view.getAttachmentViewport(this.viewAttachmentId);
|
|
103059
|
+
if (attachmentViewport)
|
|
103060
|
+
viewAttachment = { viewport: attachmentViewport, id: this.viewAttachmentId };
|
|
103061
|
+
}
|
|
103062
|
+
return {
|
|
103063
|
+
sourceId: this.elementId ?? _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Id64.invalid,
|
|
103064
|
+
priority: this.computeHitPriority(),
|
|
103065
|
+
distFraction: this.distanceFraction,
|
|
103066
|
+
subCategoryId: this.subCategoryId,
|
|
103067
|
+
geometryClass: this.geometryClass,
|
|
103068
|
+
modelId: this.modelId,
|
|
103069
|
+
tileId: this.tileId,
|
|
103070
|
+
isClassifier: this.isClassifier,
|
|
103071
|
+
sourceIModel: this.iModel,
|
|
103072
|
+
viewAttachment,
|
|
103073
|
+
};
|
|
103074
|
+
}
|
|
102896
103075
|
}
|
|
102897
103076
|
Pixel.Data = Data;
|
|
102898
103077
|
/** Describes the type of geometry that produced the [[Pixel.Data]]. */
|
|
@@ -103775,7 +103954,7 @@ class RenderSystem {
|
|
|
103775
103954
|
if (undefined !== this.options.disabledExtensions)
|
|
103776
103955
|
Object.freeze(this.options.disabledExtensions);
|
|
103777
103956
|
}
|
|
103778
|
-
/**
|
|
103957
|
+
/** The maximum permitted width or height of a texture supported by this render system. */
|
|
103779
103958
|
get maxTextureSize() { return 0; }
|
|
103780
103959
|
/** @internal */
|
|
103781
103960
|
get supportsCreateImageBitmap() { return false; }
|
|
@@ -103986,7 +104165,6 @@ class RenderSystem {
|
|
|
103986
104165
|
* @returns A Promise resolving to the created RenderTexture or to undefined if the texture could not be created.
|
|
103987
104166
|
* @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]].
|
|
103988
104167
|
* @see [[RenderSystem.loadTextureImage]].
|
|
103989
|
-
* @internal
|
|
103990
104168
|
*/
|
|
103991
104169
|
async loadTexture(id, iModel) {
|
|
103992
104170
|
let texture = this.findTexture(id.toString(), iModel);
|
|
@@ -104757,7 +104935,7 @@ function convertPolylinesAndEdges(polylines, edges) {
|
|
|
104757
104935
|
let numIndices = undefined !== edges ? edges.length : 0;
|
|
104758
104936
|
if (undefined !== polylines)
|
|
104759
104937
|
for (const pd of polylines)
|
|
104760
|
-
numIndices += (pd.
|
|
104938
|
+
numIndices += (pd.length - 1);
|
|
104761
104939
|
if (0 === numIndices)
|
|
104762
104940
|
return undefined;
|
|
104763
104941
|
numIndices *= 6;
|
|
@@ -104774,13 +104952,13 @@ function convertPolylinesAndEdges(polylines, edges) {
|
|
|
104774
104952
|
};
|
|
104775
104953
|
if (undefined !== polylines) {
|
|
104776
104954
|
for (const pd of polylines) {
|
|
104777
|
-
const num = pd.
|
|
104955
|
+
const num = pd.length - 1;
|
|
104778
104956
|
for (let i = 0; i < num; ++i) {
|
|
104779
|
-
let p0 = pd
|
|
104780
|
-
let p1 = pd
|
|
104957
|
+
let p0 = pd[i];
|
|
104958
|
+
let p1 = pd[i + 1];
|
|
104781
104959
|
if (p1 < p0) { // swap so that lower index is first.
|
|
104782
104960
|
p0 = p1;
|
|
104783
|
-
p1 = pd
|
|
104961
|
+
p1 = pd[i];
|
|
104784
104962
|
}
|
|
104785
104963
|
addPoint(p0, p1, 0);
|
|
104786
104964
|
addPoint(p1, p0, 2);
|
|
@@ -104833,7 +105011,7 @@ function buildIndexedEdges(args, doPolylines, maxSize) {
|
|
|
104833
105011
|
const polylines = doPolylines ? args.polylines?.lines : undefined;
|
|
104834
105012
|
const numHardEdges = hardEdges?.length ?? 0;
|
|
104835
105013
|
const numSilhouettes = silhouettes?.edges?.length ?? 0;
|
|
104836
|
-
const numPolylines = polylines ? polylines.reduce((count, pd) => count + Math.max(0, pd.
|
|
105014
|
+
const numPolylines = polylines ? polylines.reduce((count, pd) => count + Math.max(0, pd.length - 1), 0) : 0;
|
|
104837
105015
|
const numSegmentEdges = numHardEdges + numPolylines;
|
|
104838
105016
|
const numTotalEdges = numSegmentEdges + numSilhouettes;
|
|
104839
105017
|
if (numTotalEdges === 0)
|
|
@@ -104861,10 +105039,10 @@ function buildIndexedEdges(args, doPolylines, maxSize) {
|
|
|
104861
105039
|
setEdge(curIndex++, edge.indices[0], edge.indices[1]);
|
|
104862
105040
|
if (polylines) {
|
|
104863
105041
|
for (const pd of polylines) {
|
|
104864
|
-
const num = pd.
|
|
105042
|
+
const num = pd.length - 1;
|
|
104865
105043
|
for (let i = 0; i < num; i++) {
|
|
104866
|
-
const p0 = pd
|
|
104867
|
-
const p1 = pd
|
|
105044
|
+
const p0 = pd[i];
|
|
105045
|
+
const p1 = pd[i + 1];
|
|
104868
105046
|
// Ensure lower index is first.
|
|
104869
105047
|
if (p0 < p1)
|
|
104870
105048
|
setEdge(curIndex++, p0, p1);
|
|
@@ -104930,6 +105108,26 @@ function createEdgeParams(meshArgs, maxWidth) {
|
|
|
104930
105108
|
}
|
|
104931
105109
|
|
|
104932
105110
|
|
|
105111
|
+
/***/ }),
|
|
105112
|
+
|
|
105113
|
+
/***/ "../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js":
|
|
105114
|
+
/*!****************************************************************************!*\
|
|
105115
|
+
!*** ../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js ***!
|
|
105116
|
+
\****************************************************************************/
|
|
105117
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
105118
|
+
|
|
105119
|
+
"use strict";
|
|
105120
|
+
__webpack_require__.r(__webpack_exports__);
|
|
105121
|
+
/*---------------------------------------------------------------------------------------------
|
|
105122
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
105123
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
105124
|
+
*--------------------------------------------------------------------------------------------*/
|
|
105125
|
+
/** @packageDocumentation
|
|
105126
|
+
* @module Rendering
|
|
105127
|
+
*/
|
|
105128
|
+
|
|
105129
|
+
|
|
105130
|
+
|
|
104933
105131
|
/***/ }),
|
|
104934
105132
|
|
|
104935
105133
|
/***/ "../../core/frontend/lib/esm/render/primitives/PointStringParams.js":
|
|
@@ -104958,6 +105156,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
104958
105156
|
|
|
104959
105157
|
|
|
104960
105158
|
|
|
105159
|
+
/** @internal */
|
|
104961
105160
|
function createPointStringParams(args) {
|
|
104962
105161
|
if (!args.flags.isDisjoint)
|
|
104963
105162
|
return undefined;
|
|
@@ -104965,12 +105164,12 @@ function createPointStringParams(args) {
|
|
|
104965
105164
|
if (undefined === vertices)
|
|
104966
105165
|
return undefined;
|
|
104967
105166
|
const polylines = args.polylines;
|
|
104968
|
-
let vertIndices = polylines[0]
|
|
105167
|
+
let vertIndices = polylines[0];
|
|
104969
105168
|
if (1 < polylines.length) {
|
|
104970
105169
|
// We used to assert this wouldn't happen - apparently it does...
|
|
104971
105170
|
vertIndices = [];
|
|
104972
105171
|
for (const polyline of polylines)
|
|
104973
|
-
for (const vertIndex of polyline
|
|
105172
|
+
for (const vertIndex of polyline)
|
|
104974
105173
|
vertIndices.push(vertIndex);
|
|
104975
105174
|
}
|
|
104976
105175
|
const vertexIndices = _common_render_primitives_VertexIndices__WEBPACK_IMPORTED_MODULE_2__.VertexIndices.fromArray(vertIndices);
|
|
@@ -105062,6 +105261,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
105062
105261
|
|
|
105063
105262
|
|
|
105064
105263
|
|
|
105264
|
+
/** @internal */
|
|
105065
105265
|
function tesselatePolylineFromMesh(args) {
|
|
105066
105266
|
const tesselator = PolylineTesselator.fromMesh(args);
|
|
105067
105267
|
return tesselator?.tesselate();
|
|
@@ -105118,7 +105318,7 @@ class PolylineTesselator {
|
|
|
105118
105318
|
this._doJoints = doJointTriangles;
|
|
105119
105319
|
}
|
|
105120
105320
|
static fromPolyline(args) {
|
|
105121
|
-
return new PolylineTesselator(args.polylines, args.points, wantJointTriangles(args.width, args.flags.is2d));
|
|
105321
|
+
return new PolylineTesselator(args.polylines, args.points, wantJointTriangles(args.width, !!args.flags.is2d));
|
|
105122
105322
|
}
|
|
105123
105323
|
static fromMesh(args) {
|
|
105124
105324
|
if (undefined !== args.edges?.polylines.lines && undefined !== args.points)
|
|
@@ -105146,17 +105346,17 @@ class PolylineTesselator {
|
|
|
105146
105346
|
const v0 = new PolylineVertex(), v1 = new PolylineVertex();
|
|
105147
105347
|
const maxJointDot = -0.7;
|
|
105148
105348
|
for (const line of this._polylines) {
|
|
105149
|
-
if (line.
|
|
105349
|
+
if (line.length < 2)
|
|
105150
105350
|
continue;
|
|
105151
|
-
const last = line.
|
|
105152
|
-
const isClosed = line
|
|
105351
|
+
const last = line.length - 1;
|
|
105352
|
+
const isClosed = line[0] === line[last];
|
|
105153
105353
|
for (let i = 0; i < last; ++i) {
|
|
105154
|
-
const idx0 = line
|
|
105155
|
-
const idx1 = line
|
|
105354
|
+
const idx0 = line[i];
|
|
105355
|
+
const idx1 = line[i + 1];
|
|
105156
105356
|
const isStart = (0 === i);
|
|
105157
105357
|
const isEnd = (last - 1 === i);
|
|
105158
|
-
const prevIdx0 = isStart ? (isClosed ? line
|
|
105159
|
-
const nextIdx1 = isEnd ? (isClosed ? line
|
|
105358
|
+
const prevIdx0 = isStart ? (isClosed ? line[last - 1] : idx0) : line[i - 1];
|
|
105359
|
+
const nextIdx1 = isEnd ? (isClosed ? line[1] : idx1) : line[i + 2];
|
|
105160
105360
|
v0.init(true, isStart && !isClosed, idx0, prevIdx0, idx1);
|
|
105161
105361
|
v1.init(false, isEnd && !isClosed, idx1, nextIdx1, idx0);
|
|
105162
105362
|
const jointAt0 = this._doJoints && (isClosed || !isStart) && this._dotProduct(v0) > maxJointDot;
|
|
@@ -105217,6 +105417,7 @@ function tesselatePolyline(polylines, points, doJointTriangles) {
|
|
|
105217
105417
|
const tesselator = new PolylineTesselator(polylines, points, doJointTriangles);
|
|
105218
105418
|
return tesselator.tesselate();
|
|
105219
105419
|
}
|
|
105420
|
+
/** @internal */
|
|
105220
105421
|
function createPolylineParams(args) {
|
|
105221
105422
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(!args.flags.isDisjoint);
|
|
105222
105423
|
const vertices = _VertexTableBuilder__WEBPACK_IMPORTED_MODULE_3__.VertexTableBuilder.buildFromPolylines(args, _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.renderSystem.maxTextureSize);
|
|
@@ -105228,12 +105429,13 @@ function createPolylineParams(args) {
|
|
|
105228
105429
|
return {
|
|
105229
105430
|
vertices,
|
|
105230
105431
|
polyline: tesselator.tesselate(),
|
|
105231
|
-
isPlanar: args.flags.isPlanar,
|
|
105232
|
-
type: args.flags.type,
|
|
105432
|
+
isPlanar: !!args.flags.isPlanar,
|
|
105433
|
+
type: args.flags.type ?? _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PolylineTypeFlags.Normal,
|
|
105233
105434
|
weight: args.width,
|
|
105234
105435
|
linePixels: args.linePixels,
|
|
105235
105436
|
};
|
|
105236
105437
|
}
|
|
105438
|
+
/** @internal */
|
|
105237
105439
|
function wantJointTriangles(weight, is2d) {
|
|
105238
105440
|
// Joints are incredibly expensive. In 3d, only generate them if the line is sufficiently wide for them to be noticeable.
|
|
105239
105441
|
const jointWidthThreshold = 3;
|
|
@@ -105653,6 +105855,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
105653
105855
|
|
|
105654
105856
|
|
|
105655
105857
|
|
|
105858
|
+
/** @internal */
|
|
105656
105859
|
function createMeshParams(args, maxDimension) {
|
|
105657
105860
|
const builder = createMeshBuilder(args);
|
|
105658
105861
|
const vertices = builder.build(args.colors, args.features, maxDimension);
|
|
@@ -105660,7 +105863,7 @@ function createMeshParams(args, maxDimension) {
|
|
|
105660
105863
|
const surface = {
|
|
105661
105864
|
type: builder.type,
|
|
105662
105865
|
indices: surfaceIndices,
|
|
105663
|
-
fillFlags: args.fillFlags,
|
|
105866
|
+
fillFlags: args.fillFlags ?? _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FillFlags.ByView,
|
|
105664
105867
|
hasBakedLighting: true === args.hasBakedLighting,
|
|
105665
105868
|
textureMapping: undefined !== args.textureMapping ? { texture: args.textureMapping.texture, alwaysDisplayed: false } : undefined,
|
|
105666
105869
|
material: (0,_common_render_primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_5__.createSurfaceMaterial)(args.material),
|
|
@@ -105675,7 +105878,9 @@ function createMeshParams(args, maxDimension) {
|
|
|
105675
105878
|
auxChannels: channels,
|
|
105676
105879
|
};
|
|
105677
105880
|
}
|
|
105678
|
-
/** Builds a VertexTable from some data type supplying the vertex data.
|
|
105881
|
+
/** Builds a VertexTable from some data type supplying the vertex data.
|
|
105882
|
+
* @internal
|
|
105883
|
+
*/
|
|
105679
105884
|
class VertexTableBuilder {
|
|
105680
105885
|
constructor() {
|
|
105681
105886
|
this._curIndex = 0;
|
|
@@ -106794,6 +106999,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
106794
106999
|
/** @internal */
|
|
106795
107000
|
class MeshBuilder {
|
|
106796
107001
|
get currentPolyface() { return this._currentPolyface; }
|
|
107002
|
+
get displayParams() { return this.mesh.displayParams; }
|
|
106797
107003
|
set displayParams(params) { this.mesh.displayParams = params; }
|
|
106798
107004
|
/** create reference for triangleSet on demand */
|
|
106799
107005
|
get triangleSet() {
|
|
@@ -107319,28 +107525,30 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
107319
107525
|
|
|
107320
107526
|
|
|
107321
107527
|
|
|
107322
|
-
/** @
|
|
107528
|
+
/** @public */
|
|
107323
107529
|
var PolylineArgs;
|
|
107324
107530
|
(function (PolylineArgs) {
|
|
107531
|
+
/** @internal */
|
|
107325
107532
|
function fromMesh(mesh) {
|
|
107326
107533
|
if (!mesh.polylines || mesh.polylines.length === 0)
|
|
107327
107534
|
return undefined;
|
|
107328
107535
|
const polylines = [];
|
|
107329
|
-
for (const polyline of mesh.polylines)
|
|
107330
|
-
|
|
107331
|
-
|
|
107332
|
-
polylines.push(polylineData);
|
|
107333
|
-
}
|
|
107536
|
+
for (const polyline of mesh.polylines)
|
|
107537
|
+
if (polyline.indices.length > 0)
|
|
107538
|
+
polylines.push(polyline.indices);
|
|
107334
107539
|
if (polylines.length === 0)
|
|
107335
107540
|
return undefined;
|
|
107336
|
-
const flags =
|
|
107337
|
-
|
|
107541
|
+
const flags = {
|
|
107542
|
+
is2d: mesh.is2d,
|
|
107543
|
+
isPlanar: mesh.isPlanar,
|
|
107544
|
+
isDisjoint: mesh.type === _common_render_primitives_MeshPrimitive__WEBPACK_IMPORTED_MODULE_5__.MeshPrimitiveType.Point,
|
|
107545
|
+
};
|
|
107338
107546
|
if (mesh.displayParams.regionEdgeType === _common_render_primitives_DisplayParams__WEBPACK_IMPORTED_MODULE_4__.DisplayParams.RegionEdgeType.Outline) {
|
|
107339
107547
|
// This polyline is behaving as the edges of a region surface.
|
|
107340
107548
|
if (!mesh.displayParams.gradient || mesh.displayParams.gradient.isOutlined)
|
|
107341
|
-
flags.
|
|
107549
|
+
flags.type = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PolylineTypeFlags.Edge;
|
|
107342
107550
|
else
|
|
107343
|
-
flags.
|
|
107551
|
+
flags.type = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PolylineTypeFlags.Outline; // edges only displayed if fill undisplayed
|
|
107344
107552
|
}
|
|
107345
107553
|
const colors = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorIndex();
|
|
107346
107554
|
mesh.colorMap.toColorIndex(colors, mesh.colors);
|
|
@@ -107378,9 +107586,10 @@ class MeshArgsEdges {
|
|
|
107378
107586
|
}
|
|
107379
107587
|
get isValid() { return this.edges.isValid || this.silhouettes.isValid || this.polylines.isValid; }
|
|
107380
107588
|
}
|
|
107381
|
-
/** @
|
|
107589
|
+
/** @public */
|
|
107382
107590
|
var MeshArgs;
|
|
107383
107591
|
(function (MeshArgs) {
|
|
107592
|
+
/** @internal */
|
|
107384
107593
|
function fromMesh(mesh) {
|
|
107385
107594
|
if (!mesh.triangles || mesh.triangles.isEmpty || mesh.points.length === 0)
|
|
107386
107595
|
return undefined;
|
|
@@ -107398,11 +107607,9 @@ var MeshArgs;
|
|
|
107398
107607
|
edges.edges.init(mesh.edges);
|
|
107399
107608
|
edges.silhouettes.init(mesh.edges);
|
|
107400
107609
|
const polylines = [];
|
|
107401
|
-
for (const meshPolyline of mesh.edges.polylines)
|
|
107402
|
-
|
|
107403
|
-
|
|
107404
|
-
polylines.push(polyline);
|
|
107405
|
-
}
|
|
107610
|
+
for (const meshPolyline of mesh.edges.polylines)
|
|
107611
|
+
if (meshPolyline.indices.length > 0)
|
|
107612
|
+
polylines.push(meshPolyline.indices);
|
|
107406
107613
|
edges.polylines.init(polylines);
|
|
107407
107614
|
}
|
|
107408
107615
|
return {
|
|
@@ -118905,6 +119112,7 @@ var PrimitiveDrawState;
|
|
|
118905
119112
|
})(PrimitiveDrawState || (PrimitiveDrawState = {}));
|
|
118906
119113
|
// The actual base class. Specializations are provided based on whether or not multiple render targets are supported.
|
|
118907
119114
|
class Compositor extends SceneCompositor {
|
|
119115
|
+
forceBufferChange() { this._width = this._height = -1; }
|
|
118908
119116
|
get featureIds() { return this.getSamplerTexture(this._readPickDataFromPingPong ? 0 : 1); }
|
|
118909
119117
|
get depthAndOrder() { return this.getSamplerTexture(this._readPickDataFromPingPong ? 1 : 2); }
|
|
118910
119118
|
get _samplerFbo() { return this._readPickDataFromPingPong ? this._fbos.pingPong : this._fbos.opaqueAll; }
|
|
@@ -124668,8 +124876,6 @@ class Target extends _RenderTarget__WEBPACK_IMPORTED_MODULE_8__.RenderTarget {
|
|
|
124668
124876
|
}
|
|
124669
124877
|
class CanvasState {
|
|
124670
124878
|
constructor(canvas) {
|
|
124671
|
-
this._width = 0;
|
|
124672
|
-
this._height = 0;
|
|
124673
124879
|
this.needsClear = false;
|
|
124674
124880
|
this.canvas = canvas;
|
|
124675
124881
|
this._isWebGLCanvas = this.canvas === _System__WEBPACK_IMPORTED_MODULE_24__.System.instance.canvas;
|
|
@@ -124680,12 +124886,13 @@ class CanvasState {
|
|
|
124680
124886
|
const h = Math.floor(this.canvas.clientHeight * pixelRatio);
|
|
124681
124887
|
// Do not update the dimensions if not needed, or if new width or height is 0, which is invalid.
|
|
124682
124888
|
// NB: the 0-dimension check indirectly resolves an issue when a viewport is dropped and immediately re-added
|
|
124683
|
-
// to the view manager. See ViewManager.test.ts for more details.
|
|
124684
|
-
|
|
124889
|
+
// to the view manager. See ViewManager.test.ts for more details. 0 is also the case when vpDiv.removeChild
|
|
124890
|
+
// is done on webGLCanvas, due to client sizes being 0 afterward.
|
|
124891
|
+
if (w === this.canvas.width && h === this.canvas.height || (0 === w || 0 === h))
|
|
124685
124892
|
return false;
|
|
124686
124893
|
// Must ensure internal bitmap grid dimensions of on-screen canvas match its own on-screen appearance.
|
|
124687
|
-
this.canvas.width =
|
|
124688
|
-
this.canvas.height =
|
|
124894
|
+
this.canvas.width = w;
|
|
124895
|
+
this.canvas.height = h;
|
|
124689
124896
|
if (!this._isWebGLCanvas) {
|
|
124690
124897
|
const ctx = this.canvas.getContext("2d");
|
|
124691
124898
|
ctx.scale(pixelRatio, pixelRatio); // apply the pixelRatio as a scale on the 2d context for drawing of decorations, etc.
|
|
@@ -124693,8 +124900,8 @@ class CanvasState {
|
|
|
124693
124900
|
}
|
|
124694
124901
|
return true;
|
|
124695
124902
|
}
|
|
124696
|
-
get width() { return this.
|
|
124697
|
-
get height() { return this.
|
|
124903
|
+
get width() { return this.canvas.width; }
|
|
124904
|
+
get height() { return this.canvas.height; }
|
|
124698
124905
|
}
|
|
124699
124906
|
/** A Target that renders to a canvas on the screen
|
|
124700
124907
|
* @internal
|
|
@@ -124855,6 +125062,9 @@ class OnScreenTarget extends Target {
|
|
|
124855
125062
|
setRenderToScreen(toScreen) {
|
|
124856
125063
|
if (toScreen === this._usingWebGLCanvas)
|
|
124857
125064
|
return;
|
|
125065
|
+
// NB: need to force a buffer change in this case because nothing is changing sizes except the webglCanvas
|
|
125066
|
+
if (toScreen)
|
|
125067
|
+
this.compositor.forceBufferChange();
|
|
124858
125068
|
this._usingWebGLCanvas = toScreen;
|
|
124859
125069
|
return toScreen ? this._webglCanvas.canvas : undefined;
|
|
124860
125070
|
}
|
|
@@ -136929,6 +137139,51 @@ class GraphicsTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.Tile {
|
|
|
136929
137139
|
}
|
|
136930
137140
|
|
|
136931
137141
|
|
|
137142
|
+
/***/ }),
|
|
137143
|
+
|
|
137144
|
+
/***/ "../../core/frontend/lib/esm/tile/FetchCloudStorage.js":
|
|
137145
|
+
/*!*************************************************************!*\
|
|
137146
|
+
!*** ../../core/frontend/lib/esm/tile/FetchCloudStorage.js ***!
|
|
137147
|
+
\*************************************************************/
|
|
137148
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
137149
|
+
|
|
137150
|
+
"use strict";
|
|
137151
|
+
__webpack_require__.r(__webpack_exports__);
|
|
137152
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
137153
|
+
/* harmony export */ FetchCloudStorage: () => (/* binding */ FetchCloudStorage)
|
|
137154
|
+
/* harmony export */ });
|
|
137155
|
+
/** @internal */
|
|
137156
|
+
class FetchCloudStorage {
|
|
137157
|
+
async download(input) {
|
|
137158
|
+
if (input.transferType === "stream")
|
|
137159
|
+
throw new Error("Method not implemented.");
|
|
137160
|
+
if (this.isUrlInput(input)) {
|
|
137161
|
+
return (await fetch(input.url)).arrayBuffer();
|
|
137162
|
+
}
|
|
137163
|
+
if (!("authentication" in input.transferConfig))
|
|
137164
|
+
throw new Error("authentication missing in transferConfig");
|
|
137165
|
+
const url = `${input.transferConfig.baseUrl}/${this.buildObjectKey(input.reference)}?${input.transferConfig.authentication}`;
|
|
137166
|
+
const resp = await fetch(url);
|
|
137167
|
+
if (!resp.ok)
|
|
137168
|
+
throw new Error(resp.statusText);
|
|
137169
|
+
return resp.arrayBuffer();
|
|
137170
|
+
}
|
|
137171
|
+
buildObjectKey(ref) {
|
|
137172
|
+
const relative = ref.relativeDirectory ? `/${ref.relativeDirectory}` : "";
|
|
137173
|
+
return `${ref.baseDirectory}${relative}/${ref.objectName}`;
|
|
137174
|
+
}
|
|
137175
|
+
isUrlInput(input) {
|
|
137176
|
+
return "url" in input;
|
|
137177
|
+
}
|
|
137178
|
+
async upload(_input) {
|
|
137179
|
+
throw new Error("Method not implemented.");
|
|
137180
|
+
}
|
|
137181
|
+
async uploadInMultipleParts(_input) {
|
|
137182
|
+
throw new Error("Method not implemented.");
|
|
137183
|
+
}
|
|
137184
|
+
}
|
|
137185
|
+
|
|
137186
|
+
|
|
136932
137187
|
/***/ }),
|
|
136933
137188
|
|
|
136934
137189
|
/***/ "../../core/frontend/lib/esm/tile/GltfReader.js":
|
|
@@ -142492,7 +142747,10 @@ class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
|
|
|
142492
142747
|
get isPointCloud() { return this.realityRoot.loader.containsPointClouds; }
|
|
142493
142748
|
/** @internal */
|
|
142494
142749
|
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.
|
|
142495
|
-
/**
|
|
142750
|
+
/** A representation of the tile's geometry.
|
|
142751
|
+
* This property is only available when using [[TileGeometryCollector]].
|
|
142752
|
+
* @beta
|
|
142753
|
+
*/
|
|
142496
142754
|
get geometry() { return this._geometry; }
|
|
142497
142755
|
/** @internal */
|
|
142498
142756
|
get isDisplayable() {
|
|
@@ -144544,25 +144802,14 @@ class TileAdmin {
|
|
|
144544
144802
|
async getTileStorage() {
|
|
144545
144803
|
if (this._tileStorage !== undefined)
|
|
144546
144804
|
return this._tileStorage;
|
|
144547
|
-
// if object-storage-azure is already being dynamically loaded, just return the promise.
|
|
144548
|
-
if (this._tileStoragePromise !== undefined)
|
|
144549
|
-
return this._tileStoragePromise;
|
|
144550
144805
|
// if custom implementation is provided, construct a new TileStorage instance and return it.
|
|
144551
144806
|
if (this._cloudStorage !== undefined) {
|
|
144552
144807
|
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(this._cloudStorage);
|
|
144553
144808
|
return this._tileStorage;
|
|
144554
144809
|
}
|
|
144555
|
-
|
|
144556
|
-
this.
|
|
144557
|
-
|
|
144558
|
-
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));
|
|
144559
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
144560
|
-
const { AzureFrontendStorage, FrontendBlockBlobClientWrapperFactory } = objectStorage.default ?? objectStorage;
|
|
144561
|
-
const azureStorage = new AzureFrontendStorage(new FrontendBlockBlobClientWrapperFactory());
|
|
144562
|
-
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(azureStorage);
|
|
144563
|
-
return this._tileStorage;
|
|
144564
|
-
})();
|
|
144565
|
-
return this._tileStoragePromise;
|
|
144810
|
+
const fetchStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.FetchCloudStorage();
|
|
144811
|
+
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(fetchStorage);
|
|
144812
|
+
return this._tileStorage;
|
|
144566
144813
|
}
|
|
144567
144814
|
/** @internal */
|
|
144568
144815
|
get enableInstancing() { return this._enableInstancing; }
|
|
@@ -147149,6 +147396,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
147149
147396
|
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */ _DisclosedTileTreeSet__WEBPACK_IMPORTED_MODULE_3__.DisclosedTileTreeSet),
|
|
147150
147397
|
/* harmony export */ DynamicIModelTile: () => (/* reexport safe */ _DynamicIModelTile__WEBPACK_IMPORTED_MODULE_74__.DynamicIModelTile),
|
|
147151
147398
|
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */ _map_EllipsoidTerrainProvider__WEBPACK_IMPORTED_MODULE_64__.EllipsoidTerrainProvider),
|
|
147399
|
+
/* harmony export */ FetchCloudStorage: () => (/* reexport safe */ _FetchCloudStorage__WEBPACK_IMPORTED_MODULE_86__.FetchCloudStorage),
|
|
147152
147400
|
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */ _map_MapTilingScheme__WEBPACK_IMPORTED_MODULE_69__.GeographicTilingScheme),
|
|
147153
147401
|
/* harmony export */ GltfBufferData: () => (/* reexport safe */ _GltfReader__WEBPACK_IMPORTED_MODULE_30__.GltfBufferData),
|
|
147154
147402
|
/* harmony export */ GltfGraphicsReader: () => (/* reexport safe */ _GltfReader__WEBPACK_IMPORTED_MODULE_30__.GltfGraphicsReader),
|
|
@@ -147362,6 +147610,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
147362
147610
|
/* harmony import */ var _ContextShareProvider__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ContextShareProvider */ "../../core/frontend/lib/esm/tile/ContextShareProvider.js");
|
|
147363
147611
|
/* harmony import */ var _ThreeDTileFormatInterpreter__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./ThreeDTileFormatInterpreter */ "../../core/frontend/lib/esm/tile/ThreeDTileFormatInterpreter.js");
|
|
147364
147612
|
/* harmony import */ var _OPCFormatInterpreter__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./OPCFormatInterpreter */ "../../core/frontend/lib/esm/tile/OPCFormatInterpreter.js");
|
|
147613
|
+
/* harmony import */ var _FetchCloudStorage__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./FetchCloudStorage */ "../../core/frontend/lib/esm/tile/FetchCloudStorage.js");
|
|
147365
147614
|
/*---------------------------------------------------------------------------------------------
|
|
147366
147615
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
147367
147616
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -147464,6 +147713,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
147464
147713
|
|
|
147465
147714
|
|
|
147466
147715
|
|
|
147716
|
+
|
|
147467
147717
|
|
|
147468
147718
|
|
|
147469
147719
|
/***/ }),
|
|
@@ -148848,7 +149098,7 @@ class ArcGISImageryProvider extends _internal__WEBPACK_IMPORTED_MODULE_0__.MapLa
|
|
|
148848
149098
|
tmpUrl.searchParams.append("f", "json");
|
|
148849
149099
|
response = await fetch(tmpUrl.toString(), options);
|
|
148850
149100
|
}
|
|
148851
|
-
errorCode = await _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisUtilities.checkForResponseErrorCode(response
|
|
149101
|
+
errorCode = await _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisUtilities.checkForResponseErrorCode(response);
|
|
148852
149102
|
if (errorCode !== undefined &&
|
|
148853
149103
|
(errorCode === _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisErrorCode.TokenRequired || errorCode === _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisErrorCode.InvalidToken)) {
|
|
148854
149104
|
if (this._settings.userName && this._settings.userName.length > 0 && this._lastAccessToken) {
|
|
@@ -148866,7 +149116,7 @@ class ArcGISImageryProvider extends _internal__WEBPACK_IMPORTED_MODULE_0__.MapLa
|
|
|
148866
149116
|
}
|
|
148867
149117
|
// Make a second attempt with refreshed token
|
|
148868
149118
|
response = await fetch(urlObj2.toString(), options);
|
|
148869
|
-
errorCode = await _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisUtilities.checkForResponseErrorCode(response
|
|
149119
|
+
errorCode = await _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisUtilities.checkForResponseErrorCode(response);
|
|
148870
149120
|
}
|
|
148871
149121
|
if (errorCode === _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisErrorCode.TokenRequired || errorCode === _internal__WEBPACK_IMPORTED_MODULE_0__.ArcGisErrorCode.InvalidToken) {
|
|
148872
149122
|
// Looks like the initially generated token has expired.
|
|
@@ -164377,9 +164627,9 @@ class ToolAdmin {
|
|
|
164377
164627
|
_IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.viewManager.endDynamicsMode();
|
|
164378
164628
|
this.setCursor(_IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.viewManager.crossHairCursor);
|
|
164379
164629
|
}
|
|
164380
|
-
/**
|
|
164381
|
-
fillEventFromCursorLocation(ev) { this.currentInputState.toEvent(ev,
|
|
164382
|
-
/**
|
|
164630
|
+
/** Fill the supplied button event from the current cursor location. */
|
|
164631
|
+
fillEventFromCursorLocation(ev, useSnap = true) { this.currentInputState.toEvent(ev, useSnap); }
|
|
164632
|
+
/** Fill the supplied button event from the last data button location. */
|
|
164383
164633
|
fillEventFromLastDataButton(ev) { this.currentInputState.toEventFromLastDataPoint(ev); }
|
|
164384
164634
|
/** @internal */
|
|
164385
164635
|
setAdjustedDataPoint(ev) { this.currentInputState.adjustLastDataPoint(ev); }
|
|
@@ -274861,9 +275111,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
274861
275111
|
*/
|
|
274862
275112
|
|
|
274863
275113
|
|
|
274864
|
-
/**
|
|
274865
|
-
* @
|
|
274866
|
-
* Represents a particular occurrence of an event that can be tracked through various telemetry services
|
|
275114
|
+
/** Represents a particular occurrence of an event that can be tracked through various telemetry services
|
|
275115
|
+
* @internal
|
|
274867
275116
|
*/
|
|
274868
275117
|
class TelemetryEvent {
|
|
274869
275118
|
constructor(
|
|
@@ -274902,7 +275151,7 @@ class TelemetryEvent {
|
|
|
274902
275151
|
return properties;
|
|
274903
275152
|
}
|
|
274904
275153
|
}
|
|
274905
|
-
/** @
|
|
275154
|
+
/** @internal */
|
|
274906
275155
|
class TelemetryManager {
|
|
274907
275156
|
constructor(...clients) {
|
|
274908
275157
|
this._clients = new Set(clients);
|
|
@@ -274954,7 +275203,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
274954
275203
|
/** Logger categories used by this package
|
|
274955
275204
|
* @note All logger categories in this package start with the `telemetry-client` prefix.
|
|
274956
275205
|
* @see [Logger]($bentley)
|
|
274957
|
-
* @
|
|
275206
|
+
* @internal
|
|
274958
275207
|
*/
|
|
274959
275208
|
var TelemetryClientLoggerCategory;
|
|
274960
275209
|
(function (TelemetryClientLoggerCategory) {
|
|
@@ -286184,7 +286433,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
286184
286433
|
/***/ ((module) => {
|
|
286185
286434
|
|
|
286186
286435
|
"use strict";
|
|
286187
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.1.0-dev.
|
|
286436
|
+
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"}}]}}');
|
|
286188
286437
|
|
|
286189
286438
|
/***/ })
|
|
286190
286439
|
|